{
  "id": "4c42f722971d5ff71154949ea8cc9c70",
  "_format": "hh-sol-build-info-1",
  "solcVersion": "0.8.6",
  "solcLongVersion": "0.8.6+commit.11564f7e",
  "input": {
    "language": "Solidity",
    "sources": {
      "contracts/ControlledToken.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\";\n\nimport \"./interfaces/IControlledToken.sol\";\n\n/**\n * @title  PoolTogether V4 Controlled ERC20 Token\n * @author PoolTogether Inc Team\n * @notice  ERC20 Tokens with a controller for minting & burning\n */\ncontract ControlledToken is ERC20Permit, IControlledToken {\n    /* ============ Global Variables ============ */\n\n    /// @notice Interface to the contract responsible for controlling mint/burn\n    address public override immutable controller;\n\n    /// @notice ERC20 controlled token decimals.\n    uint8 private immutable _decimals;\n\n    /* ============ Events ============ */\n\n    /// @dev Emitted when contract is deployed\n    event Deployed(string name, string symbol, uint8 decimals, address indexed controller);\n\n    /* ============ Modifiers ============ */\n\n    /// @dev Function modifier to ensure that the caller is the controller contract\n    modifier onlyController() {\n        require(msg.sender == address(controller), \"ControlledToken/only-controller\");\n        _;\n    }\n\n    /* ============ Constructor ============ */\n\n    /// @notice Deploy the Controlled Token with Token Details and the Controller\n    /// @param _name The name of the Token\n    /// @param _symbol The symbol for the Token\n    /// @param decimals_ The number of decimals for the Token\n    /// @param _controller Address of the Controller contract for minting & burning\n    constructor(\n        string memory _name,\n        string memory _symbol,\n        uint8 decimals_,\n        address _controller\n    ) ERC20Permit(\"PoolTogether ControlledToken\") ERC20(_name, _symbol) {\n        require(address(_controller) != address(0), \"ControlledToken/controller-not-zero-address\");\n        controller = _controller;\n\n        require(decimals_ > 0, \"ControlledToken/decimals-gt-zero\");\n        _decimals = decimals_;\n\n        emit Deployed(_name, _symbol, decimals_, _controller);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @notice Allows the controller to mint tokens for a user account\n    /// @dev May be overridden to provide more granular control over minting\n    /// @param _user Address of the receiver of the minted tokens\n    /// @param _amount Amount of tokens to mint\n    function controllerMint(address _user, uint256 _amount)\n        external\n        virtual\n        override\n        onlyController\n    {\n        _mint(_user, _amount);\n    }\n\n    /// @notice Allows the controller to burn tokens from a user account\n    /// @dev May be overridden to provide more granular control over burning\n    /// @param _user Address of the holder account to burn tokens from\n    /// @param _amount Amount of tokens to burn\n    function controllerBurn(address _user, uint256 _amount)\n        external\n        virtual\n        override\n        onlyController\n    {\n        _burn(_user, _amount);\n    }\n\n    /// @notice Allows an operator via the controller to burn tokens on behalf of a user account\n    /// @dev May be overridden to provide more granular control over operator-burning\n    /// @param _operator Address of the operator performing the burn action via the controller contract\n    /// @param _user Address of the holder account to burn tokens from\n    /// @param _amount Amount of tokens to burn\n    function controllerBurnFrom(\n        address _operator,\n        address _user,\n        uint256 _amount\n    ) external virtual override onlyController {\n        if (_operator != _user) {\n            _approve(_user, _operator, allowance(_user, _operator) - _amount);\n        }\n\n        _burn(_user, _amount);\n    }\n\n    /// @notice Returns the ERC20 controlled token decimals.\n    /// @dev This value should be equal to the decimals of the token used to deposit into the pool.\n    /// @return uint8 decimals.\n    function decimals() public view virtual override returns (uint8) {\n        return _decimals;\n    }\n}\n"
      },
      "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport \"./draft-IERC20Permit.sol\";\nimport \"../ERC20.sol\";\nimport \"../../../utils/cryptography/draft-EIP712.sol\";\nimport \"../../../utils/cryptography/ECDSA.sol\";\nimport \"../../../utils/Counters.sol\";\n\n/**\n * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n *\n * _Available since v3.4._\n */\nabstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {\n    using Counters for Counters.Counter;\n\n    mapping(address => Counters.Counter) private _nonces;\n\n    // solhint-disable-next-line var-name-mixedcase\n    bytes32 private immutable _PERMIT_TYPEHASH =\n        keccak256(\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\");\n\n    /**\n     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`.\n     *\n     * It's a good idea to use the same `name` that is defined as the ERC20 token name.\n     */\n    constructor(string memory name) EIP712(name, \"1\") {}\n\n    /**\n     * @dev See {IERC20Permit-permit}.\n     */\n    function permit(\n        address owner,\n        address spender,\n        uint256 value,\n        uint256 deadline,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) public virtual override {\n        require(block.timestamp <= deadline, \"ERC20Permit: expired deadline\");\n\n        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));\n\n        bytes32 hash = _hashTypedDataV4(structHash);\n\n        address signer = ECDSA.recover(hash, v, r, s);\n        require(signer == owner, \"ERC20Permit: invalid signature\");\n\n        _approve(owner, spender, value);\n    }\n\n    /**\n     * @dev See {IERC20Permit-nonces}.\n     */\n    function nonces(address owner) public view virtual override returns (uint256) {\n        return _nonces[owner].current();\n    }\n\n    /**\n     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.\n     */\n    // solhint-disable-next-line func-name-mixedcase\n    function DOMAIN_SEPARATOR() external view override returns (bytes32) {\n        return _domainSeparatorV4();\n    }\n\n    /**\n     * @dev \"Consume a nonce\": return the current value and increment.\n     *\n     * _Available since v4.1._\n     */\n    function _useNonce(address owner) internal virtual returns (uint256 current) {\n        Counters.Counter storage nonce = _nonces[owner];\n        current = nonce.current();\n        nonce.increment();\n    }\n}\n"
      },
      "contracts/interfaces/IControlledToken.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\n\n/** @title IControlledToken\n  * @author PoolTogether Inc Team\n  * @notice ERC20 Tokens with a controller for minting & burning.\n*/\ninterface IControlledToken is IERC20 {\n\n    /** \n        @notice Interface to the contract responsible for controlling mint/burn\n    */\n    function controller() external view returns (address);\n\n    /** \n      * @notice Allows the controller to mint tokens for a user account\n      * @dev May be overridden to provide more granular control over minting\n      * @param user Address of the receiver of the minted tokens\n      * @param amount Amount of tokens to mint\n    */\n    function controllerMint(address user, uint256 amount) external;\n\n    /** \n      * @notice Allows the controller to burn tokens from a user account\n      * @dev May be overridden to provide more granular control over burning\n      * @param user Address of the holder account to burn tokens from\n      * @param amount Amount of tokens to burn\n    */\n    function controllerBurn(address user, uint256 amount) external;\n\n    /** \n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\n      * @dev May be overridden to provide more granular control over operator-burning\n      * @param operator Address of the operator performing the burn action via the controller contract\n      * @param user Address of the holder account to burn tokens from\n      * @param amount Amount of tokens to burn\n    */\n    function controllerBurnFrom(\n        address operator,\n        address user,\n        uint256 amount\n    ) external;\n}\n"
      },
      "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n */\ninterface IERC20Permit {\n    /**\n     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n     * given ``owner``'s signed approval.\n     *\n     * IMPORTANT: The same issues {IERC20-approve} has related to transaction\n     * ordering also apply here.\n     *\n     * Emits an {Approval} event.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     * - `deadline` must be a timestamp in the future.\n     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n     * over the EIP712-formatted function arguments.\n     * - the signature must use ``owner``'s current nonce (see {nonces}).\n     *\n     * For more information on the signature format, see the\n     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n     * section].\n     */\n    function permit(\n        address owner,\n        address spender,\n        uint256 value,\n        uint256 deadline,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) external;\n\n    /**\n     * @dev Returns the current nonce for `owner`. This value must be\n     * included whenever a signature is generated for {permit}.\n     *\n     * Every successful call to {permit} increases ``owner``'s nonce by one. This\n     * prevents a signature from being used multiple times.\n     */\n    function nonces(address owner) external view returns (uint256);\n\n    /**\n     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\n     */\n    // solhint-disable-next-line func-name-mixedcase\n    function DOMAIN_SEPARATOR() external view returns (bytes32);\n}\n"
      },
      "@openzeppelin/contracts/token/ERC20/ERC20.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport \"./IERC20.sol\";\nimport \"./extensions/IERC20Metadata.sol\";\nimport \"../../utils/Context.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC20\n * applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20 is Context, IERC20, IERC20Metadata {\n    mapping(address => uint256) private _balances;\n\n    mapping(address => mapping(address => uint256)) private _allowances;\n\n    uint256 private _totalSupply;\n\n    string private _name;\n    string private _symbol;\n\n    /**\n     * @dev Sets the values for {name} and {symbol}.\n     *\n     * The default value of {decimals} is 18. To select a different value for\n     * {decimals} you should overload it.\n     *\n     * All two of these values are immutable: they can only be set once during\n     * construction.\n     */\n    constructor(string memory name_, string memory symbol_) {\n        _name = name_;\n        _symbol = symbol_;\n    }\n\n    /**\n     * @dev Returns the name of the token.\n     */\n    function name() public view virtual override returns (string memory) {\n        return _name;\n    }\n\n    /**\n     * @dev Returns the symbol of the token, usually a shorter version of the\n     * name.\n     */\n    function symbol() public view virtual override returns (string memory) {\n        return _symbol;\n    }\n\n    /**\n     * @dev Returns the number of decimals used to get its user representation.\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n     *\n     * Tokens usually opt for a value of 18, imitating the relationship between\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\n     * overridden;\n     *\n     * NOTE: This information is only used for _display_ purposes: it in\n     * no way affects any of the arithmetic of the contract, including\n     * {IERC20-balanceOf} and {IERC20-transfer}.\n     */\n    function decimals() public view virtual override returns (uint8) {\n        return 18;\n    }\n\n    /**\n     * @dev See {IERC20-totalSupply}.\n     */\n    function totalSupply() public view virtual override returns (uint256) {\n        return _totalSupply;\n    }\n\n    /**\n     * @dev See {IERC20-balanceOf}.\n     */\n    function balanceOf(address account) public view virtual override returns (uint256) {\n        return _balances[account];\n    }\n\n    /**\n     * @dev See {IERC20-transfer}.\n     *\n     * Requirements:\n     *\n     * - `recipient` cannot be the zero address.\n     * - the caller must have a balance of at least `amount`.\n     */\n    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\n        _transfer(_msgSender(), recipient, amount);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-allowance}.\n     */\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\n        return _allowances[owner][spender];\n    }\n\n    /**\n     * @dev See {IERC20-approve}.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     */\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\n        _approve(_msgSender(), spender, amount);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-transferFrom}.\n     *\n     * Emits an {Approval} event indicating the updated allowance. This is not\n     * required by the EIP. See the note at the beginning of {ERC20}.\n     *\n     * Requirements:\n     *\n     * - `sender` and `recipient` cannot be the zero address.\n     * - `sender` must have a balance of at least `amount`.\n     * - the caller must have allowance for ``sender``'s tokens of at least\n     * `amount`.\n     */\n    function transferFrom(\n        address sender,\n        address recipient,\n        uint256 amount\n    ) public virtual override returns (bool) {\n        _transfer(sender, recipient, amount);\n\n        uint256 currentAllowance = _allowances[sender][_msgSender()];\n        require(currentAllowance >= amount, \"ERC20: transfer amount exceeds allowance\");\n        unchecked {\n            _approve(sender, _msgSender(), currentAllowance - amount);\n        }\n\n        return true;\n    }\n\n    /**\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\n     *\n     * This is an alternative to {approve} that can be used as a mitigation for\n     * problems described in {IERC20-approve}.\n     *\n     * Emits an {Approval} event indicating the updated allowance.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     */\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\n        return true;\n    }\n\n    /**\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\n     *\n     * This is an alternative to {approve} that can be used as a mitigation for\n     * problems described in {IERC20-approve}.\n     *\n     * Emits an {Approval} event indicating the updated allowance.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     * - `spender` must have allowance for the caller of at least\n     * `subtractedValue`.\n     */\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\n        uint256 currentAllowance = _allowances[_msgSender()][spender];\n        require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n        unchecked {\n            _approve(_msgSender(), spender, currentAllowance - subtractedValue);\n        }\n\n        return true;\n    }\n\n    /**\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\n     *\n     * This internal function is equivalent to {transfer}, and can be used to\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\n     *\n     * Emits a {Transfer} event.\n     *\n     * Requirements:\n     *\n     * - `sender` cannot be the zero address.\n     * - `recipient` cannot be the zero address.\n     * - `sender` must have a balance of at least `amount`.\n     */\n    function _transfer(\n        address sender,\n        address recipient,\n        uint256 amount\n    ) internal virtual {\n        require(sender != address(0), \"ERC20: transfer from the zero address\");\n        require(recipient != address(0), \"ERC20: transfer to the zero address\");\n\n        _beforeTokenTransfer(sender, recipient, amount);\n\n        uint256 senderBalance = _balances[sender];\n        require(senderBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n        unchecked {\n            _balances[sender] = senderBalance - amount;\n        }\n        _balances[recipient] += amount;\n\n        emit Transfer(sender, recipient, amount);\n\n        _afterTokenTransfer(sender, recipient, amount);\n    }\n\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n     * the total supply.\n     *\n     * Emits a {Transfer} event with `from` set to the zero address.\n     *\n     * Requirements:\n     *\n     * - `account` cannot be the zero address.\n     */\n    function _mint(address account, uint256 amount) internal virtual {\n        require(account != address(0), \"ERC20: mint to the zero address\");\n\n        _beforeTokenTransfer(address(0), account, amount);\n\n        _totalSupply += amount;\n        _balances[account] += amount;\n        emit Transfer(address(0), account, amount);\n\n        _afterTokenTransfer(address(0), account, amount);\n    }\n\n    /**\n     * @dev Destroys `amount` tokens from `account`, reducing the\n     * total supply.\n     *\n     * Emits a {Transfer} event with `to` set to the zero address.\n     *\n     * Requirements:\n     *\n     * - `account` cannot be the zero address.\n     * - `account` must have at least `amount` tokens.\n     */\n    function _burn(address account, uint256 amount) internal virtual {\n        require(account != address(0), \"ERC20: burn from the zero address\");\n\n        _beforeTokenTransfer(account, address(0), amount);\n\n        uint256 accountBalance = _balances[account];\n        require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n        unchecked {\n            _balances[account] = accountBalance - amount;\n        }\n        _totalSupply -= amount;\n\n        emit Transfer(account, address(0), amount);\n\n        _afterTokenTransfer(account, address(0), amount);\n    }\n\n    /**\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n     *\n     * This internal function is equivalent to `approve`, and can be used to\n     * e.g. set automatic allowances for certain subsystems, etc.\n     *\n     * Emits an {Approval} event.\n     *\n     * Requirements:\n     *\n     * - `owner` cannot be the zero address.\n     * - `spender` cannot be the zero address.\n     */\n    function _approve(\n        address owner,\n        address spender,\n        uint256 amount\n    ) internal virtual {\n        require(owner != address(0), \"ERC20: approve from the zero address\");\n        require(spender != address(0), \"ERC20: approve to the zero address\");\n\n        _allowances[owner][spender] = amount;\n        emit Approval(owner, spender, amount);\n    }\n\n    /**\n     * @dev Hook that is called before any transfer of tokens. This includes\n     * minting and burning.\n     *\n     * Calling conditions:\n     *\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n     * will be transferred to `to`.\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n     * - `from` and `to` are never both zero.\n     *\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n     */\n    function _beforeTokenTransfer(\n        address from,\n        address to,\n        uint256 amount\n    ) internal virtual {}\n\n    /**\n     * @dev Hook that is called after any transfer of tokens. This includes\n     * minting and burning.\n     *\n     * Calling conditions:\n     *\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n     * has been transferred to `to`.\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n     * - `from` and `to` are never both zero.\n     *\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n     */\n    function _afterTokenTransfer(\n        address from,\n        address to,\n        uint256 amount\n    ) internal virtual {}\n}\n"
      },
      "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport \"./ECDSA.sol\";\n\n/**\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.\n *\n * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\n * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\n * they need in their contracts using a combination of `abi.encode` and `keccak256`.\n *\n * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\n * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\n * ({_hashTypedDataV4}).\n *\n * The implementation of the domain separator was designed to be as efficient as possible while still properly updating\n * the chain id to protect against replay attacks on an eventual fork of the chain.\n *\n * NOTE: This contract implements the version of the encoding known as \"v4\", as implemented by the JSON RPC method\n * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\n *\n * _Available since v3.4._\n */\nabstract contract EIP712 {\n    /* solhint-disable var-name-mixedcase */\n    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to\n    // invalidate the cached domain separator if the chain id changes.\n    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;\n    uint256 private immutable _CACHED_CHAIN_ID;\n\n    bytes32 private immutable _HASHED_NAME;\n    bytes32 private immutable _HASHED_VERSION;\n    bytes32 private immutable _TYPE_HASH;\n\n    /* solhint-enable var-name-mixedcase */\n\n    /**\n     * @dev Initializes the domain separator and parameter caches.\n     *\n     * The meaning of `name` and `version` is specified in\n     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:\n     *\n     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\n     * - `version`: the current major version of the signing domain.\n     *\n     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\n     * contract upgrade].\n     */\n    constructor(string memory name, string memory version) {\n        bytes32 hashedName = keccak256(bytes(name));\n        bytes32 hashedVersion = keccak256(bytes(version));\n        bytes32 typeHash = keccak256(\n            \"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\"\n        );\n        _HASHED_NAME = hashedName;\n        _HASHED_VERSION = hashedVersion;\n        _CACHED_CHAIN_ID = block.chainid;\n        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);\n        _TYPE_HASH = typeHash;\n    }\n\n    /**\n     * @dev Returns the domain separator for the current chain.\n     */\n    function _domainSeparatorV4() internal view returns (bytes32) {\n        if (block.chainid == _CACHED_CHAIN_ID) {\n            return _CACHED_DOMAIN_SEPARATOR;\n        } else {\n            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);\n        }\n    }\n\n    function _buildDomainSeparator(\n        bytes32 typeHash,\n        bytes32 nameHash,\n        bytes32 versionHash\n    ) private view returns (bytes32) {\n        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));\n    }\n\n    /**\n     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\n     * function returns the hash of the fully encoded EIP712 message for this domain.\n     *\n     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\n     *\n     * ```solidity\n     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\n     *     keccak256(\"Mail(address to,string contents)\"),\n     *     mailTo,\n     *     keccak256(bytes(mailContents))\n     * )));\n     * address signer = ECDSA.recover(digest, signature);\n     * ```\n     */\n    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {\n        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);\n    }\n}\n"
      },
      "@openzeppelin/contracts/utils/cryptography/ECDSA.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n *\n * These functions can be used to verify that a message was signed by the holder\n * of the private keys of a given address.\n */\nlibrary ECDSA {\n    enum RecoverError {\n        NoError,\n        InvalidSignature,\n        InvalidSignatureLength,\n        InvalidSignatureS,\n        InvalidSignatureV\n    }\n\n    function _throwError(RecoverError error) private pure {\n        if (error == RecoverError.NoError) {\n            return; // no error: do nothing\n        } else if (error == RecoverError.InvalidSignature) {\n            revert(\"ECDSA: invalid signature\");\n        } else if (error == RecoverError.InvalidSignatureLength) {\n            revert(\"ECDSA: invalid signature length\");\n        } else if (error == RecoverError.InvalidSignatureS) {\n            revert(\"ECDSA: invalid signature 's' value\");\n        } else if (error == RecoverError.InvalidSignatureV) {\n            revert(\"ECDSA: invalid signature 'v' value\");\n        }\n    }\n\n    /**\n     * @dev Returns the address that signed a hashed message (`hash`) with\n     * `signature` or error string. This address can then be used for verification purposes.\n     *\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n     * this function rejects them by requiring the `s` value to be in the lower\n     * half order, and the `v` value to be either 27 or 28.\n     *\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n     * verification to be secure: it is possible to craft signatures that\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n     * this is by receiving a hash of the original message (which may otherwise\n     * be too long), and then calling {toEthSignedMessageHash} on it.\n     *\n     * Documentation for signature generation:\n     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\n     *\n     * _Available since v4.3._\n     */\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\n        // Check the signature length\n        // - case 65: r,s,v signature (standard)\n        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._\n        if (signature.length == 65) {\n            bytes32 r;\n            bytes32 s;\n            uint8 v;\n            // ecrecover takes the signature parameters, and the only way to get them\n            // currently is to use assembly.\n            assembly {\n                r := mload(add(signature, 0x20))\n                s := mload(add(signature, 0x40))\n                v := byte(0, mload(add(signature, 0x60)))\n            }\n            return tryRecover(hash, v, r, s);\n        } else if (signature.length == 64) {\n            bytes32 r;\n            bytes32 vs;\n            // ecrecover takes the signature parameters, and the only way to get them\n            // currently is to use assembly.\n            assembly {\n                r := mload(add(signature, 0x20))\n                vs := mload(add(signature, 0x40))\n            }\n            return tryRecover(hash, r, vs);\n        } else {\n            return (address(0), RecoverError.InvalidSignatureLength);\n        }\n    }\n\n    /**\n     * @dev Returns the address that signed a hashed message (`hash`) with\n     * `signature`. This address can then be used for verification purposes.\n     *\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n     * this function rejects them by requiring the `s` value to be in the lower\n     * half order, and the `v` value to be either 27 or 28.\n     *\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n     * verification to be secure: it is possible to craft signatures that\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n     * this is by receiving a hash of the original message (which may otherwise\n     * be too long), and then calling {toEthSignedMessageHash} on it.\n     */\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\n        (address recovered, RecoverError error) = tryRecover(hash, signature);\n        _throwError(error);\n        return recovered;\n    }\n\n    /**\n     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n     *\n     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\n     *\n     * _Available since v4.3._\n     */\n    function tryRecover(\n        bytes32 hash,\n        bytes32 r,\n        bytes32 vs\n    ) internal pure returns (address, RecoverError) {\n        bytes32 s;\n        uint8 v;\n        assembly {\n            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n            v := add(shr(255, vs), 27)\n        }\n        return tryRecover(hash, v, r, s);\n    }\n\n    /**\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n     *\n     * _Available since v4.2._\n     */\n    function recover(\n        bytes32 hash,\n        bytes32 r,\n        bytes32 vs\n    ) internal pure returns (address) {\n        (address recovered, RecoverError error) = tryRecover(hash, r, vs);\n        _throwError(error);\n        return recovered;\n    }\n\n    /**\n     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n     * `r` and `s` signature fields separately.\n     *\n     * _Available since v4.3._\n     */\n    function tryRecover(\n        bytes32 hash,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) internal pure returns (address, RecoverError) {\n        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\n        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\n        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most\n        // signatures from current libraries generate a unique signature with an s-value in the lower half order.\n        //\n        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\n        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\n        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\n        // these malleable signatures as well.\n        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\n            return (address(0), RecoverError.InvalidSignatureS);\n        }\n        if (v != 27 && v != 28) {\n            return (address(0), RecoverError.InvalidSignatureV);\n        }\n\n        // If the signature is valid (and not malleable), return the signer address\n        address signer = ecrecover(hash, v, r, s);\n        if (signer == address(0)) {\n            return (address(0), RecoverError.InvalidSignature);\n        }\n\n        return (signer, RecoverError.NoError);\n    }\n\n    /**\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\n     * `r` and `s` signature fields separately.\n     */\n    function recover(\n        bytes32 hash,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) internal pure returns (address) {\n        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\n        _throwError(error);\n        return recovered;\n    }\n\n    /**\n     * @dev Returns an Ethereum Signed Message, created from a `hash`. This\n     * produces hash corresponding to the one signed with the\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n     * JSON-RPC method as part of EIP-191.\n     *\n     * See {recover}.\n     */\n    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {\n        // 32 is the length in bytes of hash,\n        // enforced by the type signature above\n        return keccak256(abi.encodePacked(\"\\x19Ethereum Signed Message:\\n32\", hash));\n    }\n\n    /**\n     * @dev Returns an Ethereum Signed Typed Data, created from a\n     * `domainSeparator` and a `structHash`. This produces hash corresponding\n     * to the one signed with the\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\n     * JSON-RPC method as part of EIP-712.\n     *\n     * See {recover}.\n     */\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {\n        return keccak256(abi.encodePacked(\"\\x19\\x01\", domainSeparator, structHash));\n    }\n}\n"
      },
      "@openzeppelin/contracts/utils/Counters.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/**\n * @title Counters\n * @author Matt Condon (@shrugs)\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\n *\n * Include with `using Counters for Counters.Counter;`\n */\nlibrary Counters {\n    struct Counter {\n        // This variable should never be directly accessed by users of the library: interactions must be restricted to\n        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\n        // this feature: see https://github.com/ethereum/solidity/issues/4637\n        uint256 _value; // default: 0\n    }\n\n    function current(Counter storage counter) internal view returns (uint256) {\n        return counter._value;\n    }\n\n    function increment(Counter storage counter) internal {\n        unchecked {\n            counter._value += 1;\n        }\n    }\n\n    function decrement(Counter storage counter) internal {\n        uint256 value = counter._value;\n        require(value > 0, \"Counter: decrement overflow\");\n        unchecked {\n            counter._value = value - 1;\n        }\n    }\n\n    function reset(Counter storage counter) internal {\n        counter._value = 0;\n    }\n}\n"
      },
      "@openzeppelin/contracts/token/ERC20/IERC20.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n    /**\n     * @dev Returns the amount of tokens in existence.\n     */\n    function totalSupply() external view returns (uint256);\n\n    /**\n     * @dev Returns the amount of tokens owned by `account`.\n     */\n    function balanceOf(address account) external view returns (uint256);\n\n    /**\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transfer(address recipient, uint256 amount) external returns (bool);\n\n    /**\n     * @dev Returns the remaining number of tokens that `spender` will be\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\n     * zero by default.\n     *\n     * This value changes when {approve} or {transferFrom} are called.\n     */\n    function allowance(address owner, address spender) external view returns (uint256);\n\n    /**\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\n     * that someone may use both the old and the new allowance by unfortunate\n     * transaction ordering. One possible solution to mitigate this race\n     * condition is to first reduce the spender's allowance to 0 and set the\n     * desired value afterwards:\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n     *\n     * Emits an {Approval} event.\n     */\n    function approve(address spender, uint256 amount) external returns (bool);\n\n    /**\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\n     * allowance mechanism. `amount` is then deducted from the caller's\n     * allowance.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transferFrom(\n        address sender,\n        address recipient,\n        uint256 amount\n    ) external returns (bool);\n\n    /**\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\n     * another (`to`).\n     *\n     * Note that `value` may be zero.\n     */\n    event Transfer(address indexed from, address indexed to, uint256 value);\n\n    /**\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n     * a call to {approve}. `value` is the new allowance.\n     */\n    event Approval(address indexed owner, address indexed spender, uint256 value);\n}\n"
      },
      "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n *\n * _Available since v4.1._\n */\ninterface IERC20Metadata is IERC20 {\n    /**\n     * @dev Returns the name of the token.\n     */\n    function name() external view returns (string memory);\n\n    /**\n     * @dev Returns the symbol of the token.\n     */\n    function symbol() external view returns (string memory);\n\n    /**\n     * @dev Returns the decimals places of the token.\n     */\n    function decimals() external view returns (uint8);\n}\n"
      },
      "@openzeppelin/contracts/utils/Context.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n    function _msgSender() internal view virtual returns (address) {\n        return msg.sender;\n    }\n\n    function _msgData() internal view virtual returns (bytes calldata) {\n        return msg.data;\n    }\n}\n"
      },
      "contracts/Ticket.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\n\nimport \"./libraries/ExtendedSafeCastLib.sol\";\nimport \"./libraries/TwabLib.sol\";\nimport \"./interfaces/ITicket.sol\";\nimport \"./ControlledToken.sol\";\n\n/**\n  * @title  PoolTogether V4 Ticket\n  * @author PoolTogether Inc Team\n  * @notice The Ticket extends the standard ERC20 and ControlledToken interfaces with time-weighted average balance functionality.\n            The average balance held by a user between two timestamps can be calculated, as well as the historic balance.  The\n            historic total supply is available as well as the average total supply between two timestamps.\n\n            A user may \"delegate\" their balance; increasing another user's historic balance while retaining their tokens.\n*/\ncontract Ticket is ControlledToken, ITicket {\n    using SafeERC20 for IERC20;\n    using ExtendedSafeCastLib for uint256;\n\n    // solhint-disable-next-line var-name-mixedcase\n    bytes32 private immutable _DELEGATE_TYPEHASH =\n        keccak256(\"Delegate(address user,address delegate,uint256 nonce,uint256 deadline)\");\n\n    /// @notice Record of token holders TWABs for each account.\n    mapping(address => TwabLib.Account) internal userTwabs;\n\n    /// @notice Record of tickets total supply and ring buff parameters used for observation.\n    TwabLib.Account internal totalSupplyTwab;\n\n    /// @notice Mapping of delegates.  Each address can delegate their ticket power to another.\n    mapping(address => address) internal delegates;\n\n    /* ============ Constructor ============ */\n\n    /**\n     * @notice Constructs Ticket with passed parameters.\n     * @param _name ERC20 ticket token name.\n     * @param _symbol ERC20 ticket token symbol.\n     * @param decimals_ ERC20 ticket token decimals.\n     * @param _controller ERC20 ticket controller address (ie: Prize Pool address).\n     */\n    constructor(\n        string memory _name,\n        string memory _symbol,\n        uint8 decimals_,\n        address _controller\n    ) ControlledToken(_name, _symbol, decimals_, _controller) {}\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc ITicket\n    function getAccountDetails(address _user)\n        external\n        view\n        override\n        returns (TwabLib.AccountDetails memory)\n    {\n        return userTwabs[_user].details;\n    }\n\n    /// @inheritdoc ITicket\n    function getTwab(address _user, uint16 _index)\n        external\n        view\n        override\n        returns (ObservationLib.Observation memory)\n    {\n        return userTwabs[_user].twabs[_index];\n    }\n\n    /// @inheritdoc ITicket\n    function getBalanceAt(address _user, uint64 _target) external view override returns (uint256) {\n        TwabLib.Account storage account = userTwabs[_user];\n\n        return\n            TwabLib.getBalanceAt(\n                account.twabs,\n                account.details,\n                uint32(_target),\n                uint32(block.timestamp)\n            );\n    }\n\n    /// @inheritdoc ITicket\n    function getAverageBalancesBetween(\n        address _user,\n        uint64[] calldata _startTimes,\n        uint64[] calldata _endTimes\n    ) external view override returns (uint256[] memory) {\n        return _getAverageBalancesBetween(userTwabs[_user], _startTimes, _endTimes);\n    }\n\n    /// @inheritdoc ITicket\n    function getAverageTotalSuppliesBetween(\n        uint64[] calldata _startTimes,\n        uint64[] calldata _endTimes\n    ) external view override returns (uint256[] memory) {\n        return _getAverageBalancesBetween(totalSupplyTwab, _startTimes, _endTimes);\n    }\n\n    /// @inheritdoc ITicket\n    function getAverageBalanceBetween(\n        address _user,\n        uint64 _startTime,\n        uint64 _endTime\n    ) external view override returns (uint256) {\n        TwabLib.Account storage account = userTwabs[_user];\n\n        return\n            TwabLib.getAverageBalanceBetween(\n                account.twabs,\n                account.details,\n                uint32(_startTime),\n                uint32(_endTime),\n                uint32(block.timestamp)\n            );\n    }\n\n    /// @inheritdoc ITicket\n    function getBalancesAt(address _user, uint64[] calldata _targets)\n        external\n        view\n        override\n        returns (uint256[] memory)\n    {\n        uint256 length = _targets.length;\n        uint256[] memory _balances = new uint256[](length);\n\n        TwabLib.Account storage twabContext = userTwabs[_user];\n        TwabLib.AccountDetails memory details = twabContext.details;\n\n        for (uint256 i = 0; i < length; i++) {\n            _balances[i] = TwabLib.getBalanceAt(\n                twabContext.twabs,\n                details,\n                uint32(_targets[i]),\n                uint32(block.timestamp)\n            );\n        }\n\n        return _balances;\n    }\n\n    /// @inheritdoc ITicket\n    function getTotalSupplyAt(uint64 _target) external view override returns (uint256) {\n        return\n            TwabLib.getBalanceAt(\n                totalSupplyTwab.twabs,\n                totalSupplyTwab.details,\n                uint32(_target),\n                uint32(block.timestamp)\n            );\n    }\n\n    /// @inheritdoc ITicket\n    function getTotalSuppliesAt(uint64[] calldata _targets)\n        external\n        view\n        override\n        returns (uint256[] memory)\n    {\n        uint256 length = _targets.length;\n        uint256[] memory totalSupplies = new uint256[](length);\n\n        TwabLib.AccountDetails memory details = totalSupplyTwab.details;\n\n        for (uint256 i = 0; i < length; i++) {\n            totalSupplies[i] = TwabLib.getBalanceAt(\n                totalSupplyTwab.twabs,\n                details,\n                uint32(_targets[i]),\n                uint32(block.timestamp)\n            );\n        }\n\n        return totalSupplies;\n    }\n\n    /// @inheritdoc ITicket\n    function delegateOf(address _user) external view override returns (address) {\n        return delegates[_user];\n    }\n\n    /// @inheritdoc ITicket\n    function controllerDelegateFor(address _user, address _to) external override onlyController {\n        _delegate(_user, _to);\n    }\n\n    /// @inheritdoc ITicket\n    function delegateWithSignature(\n        address _user,\n        address _newDelegate,\n        uint256 _deadline,\n        uint8 _v,\n        bytes32 _r,\n        bytes32 _s\n    ) external virtual override {\n        require(block.timestamp <= _deadline, \"Ticket/delegate-expired-deadline\");\n\n        bytes32 structHash = keccak256(abi.encode(_DELEGATE_TYPEHASH, _user, _newDelegate, _useNonce(_user), _deadline));\n\n        bytes32 hash = _hashTypedDataV4(structHash);\n\n        address signer = ECDSA.recover(hash, _v, _r, _s);\n        require(signer == _user, \"Ticket/delegate-invalid-signature\");\n\n        _delegate(_user, _newDelegate);\n    }\n\n    /// @inheritdoc ITicket\n    function delegate(address _to) external virtual override {\n        _delegate(msg.sender, _to);\n    }\n\n    /// @notice Delegates a users chance to another\n    /// @param _user The user whose balance should be delegated\n    /// @param _to The delegate\n    function _delegate(address _user, address _to) internal {\n        uint256 balance = balanceOf(_user);\n        address currentDelegate = delegates[_user];\n\n        if (currentDelegate == _to) {\n            return;\n        }\n\n        delegates[_user] = _to;\n\n        _transferTwab(currentDelegate, _to, balance);\n\n        emit Delegated(_user, _to);\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Retrieves the average balances held by a user for a given time frame.\n     * @param _account The user whose balance is checked.\n     * @param _startTimes The start time of the time frame.\n     * @param _endTimes The end time of the time frame.\n     * @return The average balance that the user held during the time frame.\n     */\n    function _getAverageBalancesBetween(\n        TwabLib.Account storage _account,\n        uint64[] calldata _startTimes,\n        uint64[] calldata _endTimes\n    ) internal view returns (uint256[] memory) {\n        uint256 startTimesLength = _startTimes.length;\n        require(startTimesLength == _endTimes.length, \"Ticket/start-end-times-length-match\");\n\n        TwabLib.AccountDetails memory accountDetails = _account.details;\n\n        uint256[] memory averageBalances = new uint256[](startTimesLength);\n        uint32 currentTimestamp = uint32(block.timestamp);\n\n        for (uint256 i = 0; i < startTimesLength; i++) {\n            averageBalances[i] = TwabLib.getAverageBalanceBetween(\n                _account.twabs,\n                accountDetails,\n                uint32(_startTimes[i]),\n                uint32(_endTimes[i]),\n                currentTimestamp\n            );\n        }\n\n        return averageBalances;\n    }\n\n    // @inheritdoc ERC20\n    function _beforeTokenTransfer(address _from, address _to, uint256 _amount) internal override {\n        if (_from == _to) {\n            return;\n        }\n\n        address _fromDelegate;\n        if (_from != address(0)) {\n            _fromDelegate = delegates[_from];\n        }\n\n        address _toDelegate;\n        if (_to != address(0)) {\n            _toDelegate = delegates[_to];\n        }\n\n        _transferTwab(_fromDelegate, _toDelegate, _amount);\n    }\n\n    /// @notice Transfers the given TWAB balance from one user to another\n    /// @param _from The user to transfer the balance from.  May be zero in the event of a mint.\n    /// @param _to The user to transfer the balance to.  May be zero in the event of a burn.\n    /// @param _amount The balance that is being transferred.\n    function _transferTwab(address _from, address _to, uint256 _amount) internal {\n        // If we are transferring tokens from a delegated account to an undelegated account\n        if (_from != address(0)) {\n            _decreaseUserTwab(_from, _amount);\n\n            if (_to == address(0)) {\n                _decreaseTotalSupplyTwab(_amount);\n            }\n        }\n\n        // If we are transferring tokens from an undelegated account to a delegated account\n        if (_to != address(0)) {\n            _increaseUserTwab(_to, _amount);\n\n            if (_from == address(0)) {\n                _increaseTotalSupplyTwab(_amount);\n            }\n        }\n    }\n\n    /**\n     * @notice Increase `_to` TWAB balance.\n     * @param _to Address of the delegate.\n     * @param _amount Amount of tokens to be added to `_to` TWAB balance.\n     */\n    function _increaseUserTwab(\n        address _to,\n        uint256 _amount\n    ) internal {\n        if (_amount == 0) {\n            return;\n        }\n\n        TwabLib.Account storage _account = userTwabs[_to];\n\n        (\n            TwabLib.AccountDetails memory accountDetails,\n            ObservationLib.Observation memory twab,\n            bool isNew\n        ) = TwabLib.increaseBalance(_account, _amount.toUint208(), uint32(block.timestamp));\n\n        _account.details = accountDetails;\n\n        if (isNew) {\n            emit NewUserTwab(_to, twab);\n        }\n    }\n\n    /**\n     * @notice Decrease `_to` TWAB balance.\n     * @param _to Address of the delegate.\n     * @param _amount Amount of tokens to be added to `_to` TWAB balance.\n     */\n    function _decreaseUserTwab(\n        address _to,\n        uint256 _amount\n    ) internal {\n        if (_amount == 0) {\n            return;\n        }\n\n        TwabLib.Account storage _account = userTwabs[_to];\n\n        (\n            TwabLib.AccountDetails memory accountDetails,\n            ObservationLib.Observation memory twab,\n            bool isNew\n        ) = TwabLib.decreaseBalance(\n                _account,\n                _amount.toUint208(),\n                \"Ticket/twab-burn-lt-balance\",\n                uint32(block.timestamp)\n            );\n\n        _account.details = accountDetails;\n\n        if (isNew) {\n            emit NewUserTwab(_to, twab);\n        }\n    }\n\n    /// @notice Decreases the total supply twab.  Should be called anytime a balance moves from delegated to undelegated\n    /// @param _amount The amount to decrease the total by\n    function _decreaseTotalSupplyTwab(uint256 _amount) internal {\n        if (_amount == 0) {\n            return;\n        }\n\n        (\n            TwabLib.AccountDetails memory accountDetails,\n            ObservationLib.Observation memory tsTwab,\n            bool tsIsNew\n        ) = TwabLib.decreaseBalance(\n                totalSupplyTwab,\n                _amount.toUint208(),\n                \"Ticket/burn-amount-exceeds-total-supply-twab\",\n                uint32(block.timestamp)\n            );\n\n        totalSupplyTwab.details = accountDetails;\n\n        if (tsIsNew) {\n            emit NewTotalSupplyTwab(tsTwab);\n        }\n    }\n\n    /// @notice Increases the total supply twab.  Should be called anytime a balance moves from undelegated to delegated\n    /// @param _amount The amount to increase the total by\n    function _increaseTotalSupplyTwab(uint256 _amount) internal {\n        if (_amount == 0) {\n            return;\n        }\n\n        (\n            TwabLib.AccountDetails memory accountDetails,\n            ObservationLib.Observation memory _totalSupply,\n            bool tsIsNew\n        ) = TwabLib.increaseBalance(totalSupplyTwab, _amount.toUint208(), uint32(block.timestamp));\n\n        totalSupplyTwab.details = accountDetails;\n\n        if (tsIsNew) {\n            emit NewTotalSupplyTwab(_totalSupply);\n        }\n    }\n}\n"
      },
      "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\nimport \"../../../utils/Address.sol\";\n\n/**\n * @title SafeERC20\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\n * contract returns false). Tokens that return no value (and instead revert or\n * throw on failure) are also supported, non-reverting calls are assumed to be\n * successful.\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\n */\nlibrary SafeERC20 {\n    using Address for address;\n\n    function safeTransfer(\n        IERC20 token,\n        address to,\n        uint256 value\n    ) internal {\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\n    }\n\n    function safeTransferFrom(\n        IERC20 token,\n        address from,\n        address to,\n        uint256 value\n    ) internal {\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\n    }\n\n    /**\n     * @dev Deprecated. This function has issues similar to the ones found in\n     * {IERC20-approve}, and its usage is discouraged.\n     *\n     * Whenever possible, use {safeIncreaseAllowance} and\n     * {safeDecreaseAllowance} instead.\n     */\n    function safeApprove(\n        IERC20 token,\n        address spender,\n        uint256 value\n    ) internal {\n        // safeApprove should only be called when setting an initial allowance,\n        // or when resetting it to zero. To increase and decrease it, use\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\n        require(\n            (value == 0) || (token.allowance(address(this), spender) == 0),\n            \"SafeERC20: approve from non-zero to non-zero allowance\"\n        );\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\n    }\n\n    function safeIncreaseAllowance(\n        IERC20 token,\n        address spender,\n        uint256 value\n    ) internal {\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\n    }\n\n    function safeDecreaseAllowance(\n        IERC20 token,\n        address spender,\n        uint256 value\n    ) internal {\n        unchecked {\n            uint256 oldAllowance = token.allowance(address(this), spender);\n            require(oldAllowance >= value, \"SafeERC20: decreased allowance below zero\");\n            uint256 newAllowance = oldAllowance - value;\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\n        }\n    }\n\n    /**\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\n     * @param token The token targeted by the call.\n     * @param data The call data (encoded using abi.encode or one of its variants).\n     */\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\n        // the target address contains contract code and also asserts for success in the low-level call.\n\n        bytes memory returndata = address(token).functionCall(data, \"SafeERC20: low-level call failed\");\n        if (returndata.length > 0) {\n            // Return data is optional\n            require(abi.decode(returndata, (bool)), \"SafeERC20: ERC20 operation did not succeed\");\n        }\n    }\n}\n"
      },
      "contracts/libraries/ExtendedSafeCastLib.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\n/**\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\n * checks.\n *\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n * easily result in undesired exploitation or bugs, since developers usually\n * assume that overflows raise errors. `SafeCast` restores this intuition by\n * reverting the transaction when such an operation overflows.\n *\n * Using this library instead of the unchecked operations eliminates an entire\n * class of bugs, so it's recommended to use it always.\n *\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\n * all math on `uint256` and `int256` and then downcasting.\n */\nlibrary ExtendedSafeCastLib {\n\n    /**\n     * @dev Returns the downcasted uint104 from uint256, reverting on\n     * overflow (when the input is greater than largest uint104).\n     *\n     * Counterpart to Solidity's `uint104` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 104 bits\n     */\n    function toUint104(uint256 _value) internal pure returns (uint104) {\n        require(_value <= type(uint104).max, \"SafeCast: value doesn't fit in 104 bits\");\n        return uint104(_value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint208 from uint256, reverting on\n     * overflow (when the input is greater than largest uint208).\n     *\n     * Counterpart to Solidity's `uint208` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 208 bits\n     */\n    function toUint208(uint256 _value) internal pure returns (uint208) {\n        require(_value <= type(uint208).max, \"SafeCast: value doesn't fit in 208 bits\");\n        return uint208(_value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint224 from uint256, reverting on\n     * overflow (when the input is greater than largest uint224).\n     *\n     * Counterpart to Solidity's `uint224` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 224 bits\n     */\n    function toUint224(uint256 _value) internal pure returns (uint224) {\n        require(_value <= type(uint224).max, \"SafeCast: value doesn't fit in 224 bits\");\n        return uint224(_value);\n    }\n}\n"
      },
      "contracts/libraries/TwabLib.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"./ExtendedSafeCastLib.sol\";\nimport \"./OverflowSafeComparatorLib.sol\";\nimport \"./RingBufferLib.sol\";\nimport \"./ObservationLib.sol\";\n\n/**\n  * @title  PoolTogether V4 TwabLib (Library)\n  * @author PoolTogether Inc Team\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\n            guarantees minimum 7.4 years of search history.\n */\nlibrary TwabLib {\n    using OverflowSafeComparatorLib for uint32;\n    using ExtendedSafeCastLib for uint256;\n\n    /**\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\n                As users transfer/mint/burn tickets new Observation checkpoints are\n                recorded. The current max cardinality guarantees a seven year minimum,\n                of accurate historical lookups with current estimates of 1 new block\n                every 15 seconds - assuming each block contains a transfer to trigger an\n                observation write to storage.\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\n                the max cardinality variable. Preventing \"corrupted\" ring buffer lookup\n                pointers and new observation checkpoints.\n\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\n                If 14 = block time in seconds\n                (2**24) * 14 = 234881024 seconds of history\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\n    */\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\n\n    /** @notice Struct ring buffer parameters for single user Account\n      * @param balance       Current balance for an Account\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\n      * @param cardinality   Current total \"initialized\" ring buffer checkpoints for single user AccountDetails.\n                             Used to set initial boundary conditions for an efficient binary search.\n    */\n    struct AccountDetails {\n        uint208 balance;\n        uint24 nextTwabIndex;\n        uint24 cardinality;\n    }\n\n    /// @notice Combines account details with their twab history\n    /// @param details The account details\n    /// @param twabs The history of twabs for this account\n    struct Account {\n        AccountDetails details;\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\n    }\n\n    /// @notice Increases an account's balance and records a new twab.\n    /// @param _account The account whose balance will be increased\n    /// @param _amount The amount to increase the balance by\n    /// @param _currentTime The current time\n    /// @return accountDetails The new AccountDetails\n    /// @return twab The user's latest TWAB\n    /// @return isNew Whether the TWAB is new\n    function increaseBalance(\n        Account storage _account,\n        uint208 _amount,\n        uint32 _currentTime\n    )\n        internal\n        returns (\n            AccountDetails memory accountDetails,\n            ObservationLib.Observation memory twab,\n            bool isNew\n        )\n    {\n        AccountDetails memory _accountDetails = _account.details;\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\n        accountDetails.balance = _accountDetails.balance + _amount;\n    }\n\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\n     * @param _account        Account whose balance will be decreased\n     * @param _amount         Amount to decrease the balance by\n     * @param _revertMessage  Revert message for insufficient balance\n     * @return accountDetails Updated Account.details struct\n     * @return twab           TWAB observation (with decreasing average)\n     * @return isNew          Whether TWAB is new or calling twice in the same block\n     */\n    function decreaseBalance(\n        Account storage _account,\n        uint208 _amount,\n        string memory _revertMessage,\n        uint32 _currentTime\n    )\n        internal\n        returns (\n            AccountDetails memory accountDetails,\n            ObservationLib.Observation memory twab,\n            bool isNew\n        )\n    {\n        AccountDetails memory _accountDetails = _account.details;\n\n        require(_accountDetails.balance >= _amount, _revertMessage);\n\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\n        unchecked {\n            accountDetails.balance -= _amount;\n        }\n    }\n\n    /** @notice Calculates the average balance held by a user for a given time frame.\n      * @dev    Finds the average balance between start and end timestamp epochs.\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\n      * @param _accountDetails User AccountDetails struct loaded in memory\n      * @param _startTime      Start of timestamp range as an epoch\n      * @param _endTime        End of timestamp range as an epoch\n      * @param _currentTime    Block.timestamp\n      * @return Average balance of user held between epoch timestamps start and end\n    */\n    function getAverageBalanceBetween(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails,\n        uint32 _startTime,\n        uint32 _endTime,\n        uint32 _currentTime\n    ) internal view returns (uint256) {\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\n\n        return\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\n    }\n\n    /// @notice Retrieves the oldest TWAB\n    /// @param _twabs The storage array of twabs\n    /// @param _accountDetails The TWAB account details\n    /// @return index The index of the oldest TWAB in the twabs array\n    /// @return twab The oldest TWAB\n    function oldestTwab(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\n        index = _accountDetails.nextTwabIndex;\n        twab = _twabs[index];\n\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\n        if (twab.timestamp == 0) {\n            index = 0;\n            twab = _twabs[0];\n        }\n    }\n\n    /// @notice Retrieves the newest TWAB\n    /// @param _twabs The storage array of twabs\n    /// @param _accountDetails The TWAB account details\n    /// @return index The index of the newest TWAB in the twabs array\n    /// @return twab The newest TWAB\n    function newestTwab(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\n        twab = _twabs[index];\n    }\n\n    /// @notice Retrieves amount at `_targetTime` timestamp\n    /// @param _twabs List of TWABs to search through.\n    /// @param _accountDetails Accounts details\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\n    /// @return uint256 TWAB amount at `_targetTime`.\n    function getBalanceAt(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails,\n        uint32 _targetTime,\n        uint32 _currentTime\n    ) internal view returns (uint256) {\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\n    }\n\n    /// @notice Calculates the average balance held by a user for a given time frame.\n    /// @param _startTime The start time of the time frame.\n    /// @param _endTime The end time of the time frame.\n    /// @return The average balance that the user held during the time frame.\n    function _getAverageBalanceBetween(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails,\n        uint32 _startTime,\n        uint32 _endTime,\n        uint32 _currentTime\n    ) private view returns (uint256) {\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\n            _twabs,\n            _accountDetails\n        );\n\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\n            _twabs,\n            _accountDetails\n        );\n\n        ObservationLib.Observation memory startTwab = _calculateTwab(\n            _twabs,\n            _accountDetails,\n            newTwab,\n            oldTwab,\n            newestTwabIndex,\n            oldestTwabIndex,\n            _startTime,\n            _currentTime\n        );\n\n        ObservationLib.Observation memory endTwab = _calculateTwab(\n            _twabs,\n            _accountDetails,\n            newTwab,\n            oldTwab,\n            newestTwabIndex,\n            oldestTwabIndex,\n            _endTime,\n            _currentTime\n        );\n\n        // Difference in amount / time\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\n    }\n\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\n                between the Observations closes to the supplied targetTime.\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\n      * @param _accountDetails User AccountDetails struct loaded in memory\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\n      * @param _currentTime    Block.timestamp\n      * @return uint256 Time-weighted average amount between two closest observations.\n    */\n    function _getBalanceAt(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails,\n        uint32 _targetTime,\n        uint32 _currentTime\n    ) private view returns (uint256) {\n        uint24 newestTwabIndex;\n        ObservationLib.Observation memory afterOrAt;\n        ObservationLib.Observation memory beforeOrAt;\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\n\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\n            return _accountDetails.balance;\n        }\n\n        uint24 oldestTwabIndex;\n        // Now, set before to the oldest TWAB\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\n\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\n            return 0;\n        }\n\n        // Otherwise, we perform the `binarySearch`\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\n            _twabs,\n            newestTwabIndex,\n            oldestTwabIndex,\n            _targetTime,\n            _accountDetails.cardinality,\n            _currentTime\n        );\n\n        // Sum the difference in amounts and divide by the difference in timestamps.\n        // The time-weighted average balance uses time measured between two epoch timestamps as\n        // a constaint on the measurement when calculating the time weighted average balance.\n        return\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\n    }\n\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\n                The balance is linearly interpolated: amount differences / timestamp differences\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\n                IF a search is before or after the range we \"extrapolate\" a Observation from the expected state.\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\n      * @param _accountDetails  User AccountDetails struct loaded in memory\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\n      * @param _time            Block.timestamp\n      * @return accountDetails Updated Account.details struct\n    */\n    function _calculateTwab(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails,\n        ObservationLib.Observation memory _newestTwab,\n        ObservationLib.Observation memory _oldestTwab,\n        uint24 _newestTwabIndex,\n        uint24 _oldestTwabIndex,\n        uint32 _targetTimestamp,\n        uint32 _time\n    ) private view returns (ObservationLib.Observation memory) {\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\n        }\n\n        if (_newestTwab.timestamp == _targetTimestamp) {\n            return _newestTwab;\n        }\n\n        if (_oldestTwab.timestamp == _targetTimestamp) {\n            return _oldestTwab;\n        }\n\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\n        }\n\n        // Otherwise, both timestamps must be surrounded by twabs.\n        (\n            ObservationLib.Observation memory beforeOrAtStart,\n            ObservationLib.Observation memory afterOrAtStart\n        ) = ObservationLib.binarySearch(\n                _twabs,\n                _newestTwabIndex,\n                _oldestTwabIndex,\n                _targetTimestamp,\n                _accountDetails.cardinality,\n                _time\n            );\n\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\n\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\n    }\n\n    /**\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\n     * @param _currentTwab    Newest Observation in the Account.twabs list\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\n     * @param _time           Current block.timestamp\n     * @return TWAB Observation\n     */\n    function _computeNextTwab(\n        ObservationLib.Observation memory _currentTwab,\n        uint224 _currentBalance,\n        uint32 _time\n    ) private pure returns (ObservationLib.Observation memory) {\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\n        return\n            ObservationLib.Observation({\n                amount: _currentTwab.amount +\n                    _currentBalance *\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\n                timestamp: _time\n            });\n    }\n\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\n    /// @param _twabs The twabs array to insert into\n    /// @param _accountDetails The current account details\n    /// @param _currentTime The current time\n    /// @return accountDetails The new account details\n    /// @return twab The newest twab (may or may not be brand-new)\n    /// @return isNew Whether the newest twab was created by this call\n    function _nextTwab(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails,\n        uint32 _currentTime\n    )\n        private\n        returns (\n            AccountDetails memory accountDetails,\n            ObservationLib.Observation memory twab,\n            bool isNew\n        )\n    {\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\n\n        // if we're in the same block, return\n        if (_newestTwab.timestamp == _currentTime) {\n            return (_accountDetails, _newestTwab, false);\n        }\n\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\n            _newestTwab,\n            _accountDetails.balance,\n            _currentTime\n        );\n\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\n\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\n\n        return (nextAccountDetails, newTwab, true);\n    }\n\n    /// @notice \"Pushes\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\n    /// @return The new AccountDetails\n    function push(AccountDetails memory _accountDetails)\n        internal\n        pure\n        returns (AccountDetails memory)\n    {\n        _accountDetails.nextTwabIndex = uint24(\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\n        );\n\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\n        // exceeds the max cardinality, new observations would be incorrectly set or the\n        // observation would be out of \"bounds\" of the ring buffer. Once reached the\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\n            _accountDetails.cardinality += 1;\n        }\n\n        return _accountDetails;\n    }\n}\n"
      },
      "contracts/interfaces/ITicket.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../libraries/TwabLib.sol\";\nimport \"./IControlledToken.sol\";\n\ninterface ITicket is IControlledToken {\n    /**\n     * @notice A struct containing details for an Account.\n     * @param balance The current balance for an Account.\n     * @param nextTwabIndex The next available index to store a new twab.\n     * @param cardinality The number of recorded twabs (plus one!).\n     */\n    struct AccountDetails {\n        uint224 balance;\n        uint16 nextTwabIndex;\n        uint16 cardinality;\n    }\n\n    /**\n     * @notice Combines account details with their twab history.\n     * @param details The account details.\n     * @param twabs The history of twabs for this account.\n     */\n    struct Account {\n        AccountDetails details;\n        ObservationLib.Observation[65535] twabs;\n    }\n\n    /**\n     * @notice Emitted when TWAB balance has been delegated to another user.\n     * @param delegator Address of the delegator.\n     * @param delegate Address of the delegate.\n     */\n    event Delegated(address indexed delegator, address indexed delegate);\n\n    /**\n     * @notice Emitted when ticket is initialized.\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\n     * @param symbol Ticket symbol (eg: PcDAI).\n     * @param decimals Ticket decimals.\n     * @param controller Token controller address.\n     */\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\n\n    /**\n     * @notice Emitted when a new TWAB has been recorded.\n     * @param delegate The recipient of the ticket power (may be the same as the user).\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\n     */\n    event NewUserTwab(\n        address indexed delegate,\n        ObservationLib.Observation newTwab\n    );\n\n    /**\n     * @notice Emitted when a new total supply TWAB has been recorded.\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\n     */\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\n\n    /**\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\n     * @param user Address of the delegator.\n     * @return Address of the delegate.\n     */\n    function delegateOf(address user) external view returns (address);\n\n    /**\n    * @notice Delegate time-weighted average balances to an alternative address.\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\n              targetted sender and/or recipient address(s).\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\n    * @dev Current delegate address should be different from the new delegate address `to`.\n    * @param  to Recipient of delegated TWAB.\n    */\n    function delegate(address to) external;\n\n    /**\n     * @notice Allows the controller to delegate on a users behalf.\n     * @param user The user for whom to delegate\n     * @param delegate The new delegate\n     */\n    function controllerDelegateFor(address user, address delegate) external;\n\n    /**\n     * @notice Allows a user to delegate via signature\n     * @param user The user who is delegating\n     * @param delegate The new delegate\n     * @param deadline The timestamp by which this must be submitted\n     * @param v The v portion of the ECDSA sig\n     * @param r The r portion of the ECDSA sig\n     * @param s The s portion of the ECDSA sig\n     */\n    function delegateWithSignature(\n        address user,\n        address delegate,\n        uint256 deadline,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) external;\n\n    /**\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\n     * @param user The user for whom to fetch the TWAB context.\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\n     */\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\n\n    /**\n     * @notice Gets the TWAB at a specific index for a user.\n     * @param user The user for whom to fetch the TWAB.\n     * @param index The index of the TWAB to fetch.\n     * @return The TWAB, which includes the twab amount and the timestamp.\n     */\n    function getTwab(address user, uint16 index)\n        external\n        view\n        returns (ObservationLib.Observation memory);\n\n    /**\n     * @notice Retrieves `user` TWAB balance.\n     * @param user Address of the user whose TWAB is being fetched.\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\n     * @return The TWAB balance at the given timestamp.\n     */\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\n\n    /**\n     * @notice Retrieves `user` TWAB balances.\n     * @param user Address of the user whose TWABs are being fetched.\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\n     * @return `user` TWAB balances.\n     */\n    function getBalancesAt(address user, uint64[] calldata timestamps)\n        external\n        view\n        returns (uint256[] memory);\n\n    /**\n     * @notice Retrieves the average balance held by a user for a given time frame.\n     * @param user The user whose balance is checked.\n     * @param startTime The start time of the time frame.\n     * @param endTime The end time of the time frame.\n     * @return The average balance that the user held during the time frame.\n     */\n    function getAverageBalanceBetween(\n        address user,\n        uint64 startTime,\n        uint64 endTime\n    ) external view returns (uint256);\n\n    /**\n     * @notice Retrieves the average balances held by a user for a given time frame.\n     * @param user The user whose balance is checked.\n     * @param startTimes The start time of the time frame.\n     * @param endTimes The end time of the time frame.\n     * @return The average balance that the user held during the time frame.\n     */\n    function getAverageBalancesBetween(\n        address user,\n        uint64[] calldata startTimes,\n        uint64[] calldata endTimes\n    ) external view returns (uint256[] memory);\n\n    /**\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\n     * @return The total supply TWAB balance at the given timestamp.\n     */\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\n\n    /**\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\n     * @return Total supply TWAB balances.\n     */\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\n        external\n        view\n        returns (uint256[] memory);\n\n    /**\n     * @notice Retrieves the average total supply balance for a set of given time frames.\n     * @param startTimes Array of start times.\n     * @param endTimes Array of end times.\n     * @return The average total supplies held during the time frame.\n     */\n    function getAverageTotalSuppliesBetween(\n        uint64[] calldata startTimes,\n        uint64[] calldata endTimes\n    ) external view returns (uint256[] memory);\n}\n"
      },
      "@openzeppelin/contracts/utils/Address.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n    /**\n     * @dev Returns true if `account` is a contract.\n     *\n     * [IMPORTANT]\n     * ====\n     * It is unsafe to assume that an address for which this function returns\n     * false is an externally-owned account (EOA) and not a contract.\n     *\n     * Among others, `isContract` will return false for the following\n     * types of addresses:\n     *\n     *  - an externally-owned account\n     *  - a contract in construction\n     *  - an address where a contract will be created\n     *  - an address where a contract lived, but was destroyed\n     * ====\n     */\n    function isContract(address account) internal view returns (bool) {\n        // This method relies on extcodesize, which returns 0 for contracts in\n        // construction, since the code is only stored at the end of the\n        // constructor execution.\n\n        uint256 size;\n        assembly {\n            size := extcodesize(account)\n        }\n        return size > 0;\n    }\n\n    /**\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n     * `recipient`, forwarding all available gas and reverting on errors.\n     *\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\n     * imposed by `transfer`, making them unable to receive funds via\n     * `transfer`. {sendValue} removes this limitation.\n     *\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n     *\n     * IMPORTANT: because control is transferred to `recipient`, care must be\n     * taken to not create reentrancy vulnerabilities. Consider using\n     * {ReentrancyGuard} or the\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n     */\n    function sendValue(address payable recipient, uint256 amount) internal {\n        require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n        (bool success, ) = recipient.call{value: amount}(\"\");\n        require(success, \"Address: unable to send value, recipient may have reverted\");\n    }\n\n    /**\n     * @dev Performs a Solidity function call using a low level `call`. A\n     * plain `call` is an unsafe replacement for a function call: use this\n     * function instead.\n     *\n     * If `target` reverts with a revert reason, it is bubbled up by this\n     * function (like regular Solidity function calls).\n     *\n     * Returns the raw returned data. To convert to the expected return value,\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n     *\n     * Requirements:\n     *\n     * - `target` must be a contract.\n     * - calling `target` with `data` must not revert.\n     *\n     * _Available since v3.1._\n     */\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n        return functionCall(target, data, \"Address: low-level call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n     * `errorMessage` as a fallback revert reason when `target` reverts.\n     *\n     * _Available since v3.1._\n     */\n    function functionCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, 0, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but also transferring `value` wei to `target`.\n     *\n     * Requirements:\n     *\n     * - the calling contract must have an ETH balance of at least `value`.\n     * - the called Solidity function must be `payable`.\n     *\n     * _Available since v3.1._\n     */\n    function functionCallWithValue(\n        address target,\n        bytes memory data,\n        uint256 value\n    ) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\n     *\n     * _Available since v3.1._\n     */\n    function functionCallWithValue(\n        address target,\n        bytes memory data,\n        uint256 value,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        require(address(this).balance >= value, \"Address: insufficient balance for call\");\n        require(isContract(target), \"Address: call to non-contract\");\n\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\n        return verifyCallResult(success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a static call.\n     *\n     * _Available since v3.3._\n     */\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n        return functionStaticCall(target, data, \"Address: low-level static call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n     * but performing a static call.\n     *\n     * _Available since v3.3._\n     */\n    function functionStaticCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal view returns (bytes memory) {\n        require(isContract(target), \"Address: static call to non-contract\");\n\n        (bool success, bytes memory returndata) = target.staticcall(data);\n        return verifyCallResult(success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a delegate call.\n     *\n     * _Available since v3.4._\n     */\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n        return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n     * but performing a delegate call.\n     *\n     * _Available since v3.4._\n     */\n    function functionDelegateCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        require(isContract(target), \"Address: delegate call to non-contract\");\n\n        (bool success, bytes memory returndata) = target.delegatecall(data);\n        return verifyCallResult(success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\n     * revert reason using the provided one.\n     *\n     * _Available since v4.3._\n     */\n    function verifyCallResult(\n        bool success,\n        bytes memory returndata,\n        string memory errorMessage\n    ) internal pure returns (bytes memory) {\n        if (success) {\n            return returndata;\n        } else {\n            // Look for revert reason and bubble it up if present\n            if (returndata.length > 0) {\n                // The easiest way to bubble the revert reason is using memory via assembly\n\n                assembly {\n                    let returndata_size := mload(returndata)\n                    revert(add(32, returndata), returndata_size)\n                }\n            } else {\n                revert(errorMessage);\n            }\n        }\n    }\n}\n"
      },
      "contracts/libraries/OverflowSafeComparatorLib.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\n/// @author PoolTogether Inc.\nlibrary OverflowSafeComparatorLib {\n    /// @notice 32-bit timestamps comparator.\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\n    /// @param _b Timestamp to compare against `_a`.\n    /// @param _timestamp A timestamp truncated to 32 bits.\n    /// @return bool Whether `_a` is chronologically < `_b`.\n    function lt(\n        uint32 _a,\n        uint32 _b,\n        uint32 _timestamp\n    ) internal pure returns (bool) {\n        // No need to adjust if there hasn't been an overflow\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\n\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\n\n        return aAdjusted < bAdjusted;\n    }\n\n    /// @notice 32-bit timestamps comparator.\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\n    /// @param _b Timestamp to compare against `_a`.\n    /// @param _timestamp A timestamp truncated to 32 bits.\n    /// @return bool Whether `_a` is chronologically <= `_b`.\n    function lte(\n        uint32 _a,\n        uint32 _b,\n        uint32 _timestamp\n    ) internal pure returns (bool) {\n\n        // No need to adjust if there hasn't been an overflow\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\n\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\n\n        return aAdjusted <= bAdjusted;\n    }\n\n    /// @notice 32-bit timestamp subtractor\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\n    /// @param _a The subtraction left operand\n    /// @param _b The subtraction right operand\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\n    /// @return The difference between a and b, adjusted for overflow\n    function checkedSub(\n        uint32 _a,\n        uint32 _b,\n        uint32 _timestamp\n    ) internal pure returns (uint32) {\n        // No need to adjust if there hasn't been an overflow\n\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\n\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\n\n        return uint32(aAdjusted - bAdjusted);\n    }\n}\n"
      },
      "contracts/libraries/RingBufferLib.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nlibrary RingBufferLib {\n    /**\n    * @notice Returns wrapped TWAB index.\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\n    *       it will return 0 and will point to the first element of the array.\n    * @param _index Index used to navigate through the TWAB circular buffer.\n    * @param _cardinality TWAB buffer cardinality.\n    * @return TWAB index.\n    */\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\n        return _index % _cardinality;\n    }\n\n    /**\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\n    * @param _index The index from which to offset\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\n    * @param _cardinality The number of elements in the ring buffer\n    * @return Offsetted index.\n     */\n    function offset(\n        uint256 _index,\n        uint256 _amount,\n        uint256 _cardinality\n    ) internal pure returns (uint256) {\n        return wrap(_index + _cardinality - _amount, _cardinality);\n    }\n\n    /// @notice Returns the index of the last recorded TWAB\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\n    /// @param _cardinality The cardinality of the TWAB history.\n    /// @return The index of the last recorded TWAB\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\n        internal\n        pure\n        returns (uint256)\n    {\n        if (_cardinality == 0) {\n            return 0;\n        }\n\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\n    }\n\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\n    /// @param _index The index to increment\n    /// @param _cardinality The number of elements in the Ring Buffer\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\n    function nextIndex(uint256 _index, uint256 _cardinality)\n        internal\n        pure\n        returns (uint256)\n    {\n        return wrap(_index + 1, _cardinality);\n    }\n}\n"
      },
      "contracts/libraries/ObservationLib.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\n\nimport \"./OverflowSafeComparatorLib.sol\";\nimport \"./RingBufferLib.sol\";\n\n/**\n* @title Observation Library\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\n* @author PoolTogether Inc.\n*/\nlibrary ObservationLib {\n    using OverflowSafeComparatorLib for uint32;\n    using SafeCast for uint256;\n\n    /// @notice The maximum number of observations\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\n\n    /**\n    * @notice Observation, which includes an amount and timestamp.\n    * @param amount `amount` at `timestamp`.\n    * @param timestamp Recorded `timestamp`.\n    */\n    struct Observation {\n        uint224 amount;\n        uint32 timestamp;\n    }\n\n    /**\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\n    * The result may be the same Observation, or adjacent Observations.\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\n    * @param _observations List of Observations to search through.\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\n    * @param _target Timestamp at which we are searching the Observation.\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\n    * @param _time Timestamp at which we perform the binary search.\n    * @return beforeOrAt Observation recorded before, or at, the target.\n    * @return atOrAfter Observation recorded at, or after, the target.\n    */\n    function binarySearch(\n        Observation[MAX_CARDINALITY] storage _observations,\n        uint24 _newestObservationIndex,\n        uint24 _oldestObservationIndex,\n        uint32 _target,\n        uint24 _cardinality,\n        uint32 _time\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\n        uint256 leftSide = _oldestObservationIndex;\n        uint256 rightSide = _newestObservationIndex < leftSide\n            ? leftSide + _cardinality - 1\n            : _newestObservationIndex;\n        uint256 currentIndex;\n\n        while (true) {\n            // We start our search in the middle of the `leftSide` and `rightSide`.\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\n            currentIndex = (leftSide + rightSide) / 2;\n\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\n\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\n            if (beforeOrAtTimestamp == 0) {\n                leftSide = currentIndex + 1;\n                continue;\n            }\n\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\n\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\n\n            // Check if we've found the corresponding Observation.\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\n                break;\n            }\n\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\n            if (!targetAtOrAfter) {\n                rightSide = currentIndex - 1;\n            } else {\n                // Otherwise, we keep searching higher. To the left of the current index.\n                leftSide = currentIndex + 1;\n            }\n        }\n    }\n}\n"
      },
      "@openzeppelin/contracts/utils/math/SafeCast.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\n * checks.\n *\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n * easily result in undesired exploitation or bugs, since developers usually\n * assume that overflows raise errors. `SafeCast` restores this intuition by\n * reverting the transaction when such an operation overflows.\n *\n * Using this library instead of the unchecked operations eliminates an entire\n * class of bugs, so it's recommended to use it always.\n *\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\n * all math on `uint256` and `int256` and then downcasting.\n */\nlibrary SafeCast {\n    /**\n     * @dev Returns the downcasted uint224 from uint256, reverting on\n     * overflow (when the input is greater than largest uint224).\n     *\n     * Counterpart to Solidity's `uint224` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 224 bits\n     */\n    function toUint224(uint256 value) internal pure returns (uint224) {\n        require(value <= type(uint224).max, \"SafeCast: value doesn't fit in 224 bits\");\n        return uint224(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint128 from uint256, reverting on\n     * overflow (when the input is greater than largest uint128).\n     *\n     * Counterpart to Solidity's `uint128` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 128 bits\n     */\n    function toUint128(uint256 value) internal pure returns (uint128) {\n        require(value <= type(uint128).max, \"SafeCast: value doesn't fit in 128 bits\");\n        return uint128(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint96 from uint256, reverting on\n     * overflow (when the input is greater than largest uint96).\n     *\n     * Counterpart to Solidity's `uint96` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 96 bits\n     */\n    function toUint96(uint256 value) internal pure returns (uint96) {\n        require(value <= type(uint96).max, \"SafeCast: value doesn't fit in 96 bits\");\n        return uint96(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint64 from uint256, reverting on\n     * overflow (when the input is greater than largest uint64).\n     *\n     * Counterpart to Solidity's `uint64` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 64 bits\n     */\n    function toUint64(uint256 value) internal pure returns (uint64) {\n        require(value <= type(uint64).max, \"SafeCast: value doesn't fit in 64 bits\");\n        return uint64(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint32 from uint256, reverting on\n     * overflow (when the input is greater than largest uint32).\n     *\n     * Counterpart to Solidity's `uint32` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 32 bits\n     */\n    function toUint32(uint256 value) internal pure returns (uint32) {\n        require(value <= type(uint32).max, \"SafeCast: value doesn't fit in 32 bits\");\n        return uint32(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint16 from uint256, reverting on\n     * overflow (when the input is greater than largest uint16).\n     *\n     * Counterpart to Solidity's `uint16` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 16 bits\n     */\n    function toUint16(uint256 value) internal pure returns (uint16) {\n        require(value <= type(uint16).max, \"SafeCast: value doesn't fit in 16 bits\");\n        return uint16(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint8 from uint256, reverting on\n     * overflow (when the input is greater than largest uint8).\n     *\n     * Counterpart to Solidity's `uint8` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 8 bits.\n     */\n    function toUint8(uint256 value) internal pure returns (uint8) {\n        require(value <= type(uint8).max, \"SafeCast: value doesn't fit in 8 bits\");\n        return uint8(value);\n    }\n\n    /**\n     * @dev Converts a signed int256 into an unsigned uint256.\n     *\n     * Requirements:\n     *\n     * - input must be greater than or equal to 0.\n     */\n    function toUint256(int256 value) internal pure returns (uint256) {\n        require(value >= 0, \"SafeCast: value must be positive\");\n        return uint256(value);\n    }\n\n    /**\n     * @dev Returns the downcasted int128 from int256, reverting on\n     * overflow (when the input is less than smallest int128 or\n     * greater than largest int128).\n     *\n     * Counterpart to Solidity's `int128` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 128 bits\n     *\n     * _Available since v3.1._\n     */\n    function toInt128(int256 value) internal pure returns (int128) {\n        require(value >= type(int128).min && value <= type(int128).max, \"SafeCast: value doesn't fit in 128 bits\");\n        return int128(value);\n    }\n\n    /**\n     * @dev Returns the downcasted int64 from int256, reverting on\n     * overflow (when the input is less than smallest int64 or\n     * greater than largest int64).\n     *\n     * Counterpart to Solidity's `int64` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 64 bits\n     *\n     * _Available since v3.1._\n     */\n    function toInt64(int256 value) internal pure returns (int64) {\n        require(value >= type(int64).min && value <= type(int64).max, \"SafeCast: value doesn't fit in 64 bits\");\n        return int64(value);\n    }\n\n    /**\n     * @dev Returns the downcasted int32 from int256, reverting on\n     * overflow (when the input is less than smallest int32 or\n     * greater than largest int32).\n     *\n     * Counterpart to Solidity's `int32` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 32 bits\n     *\n     * _Available since v3.1._\n     */\n    function toInt32(int256 value) internal pure returns (int32) {\n        require(value >= type(int32).min && value <= type(int32).max, \"SafeCast: value doesn't fit in 32 bits\");\n        return int32(value);\n    }\n\n    /**\n     * @dev Returns the downcasted int16 from int256, reverting on\n     * overflow (when the input is less than smallest int16 or\n     * greater than largest int16).\n     *\n     * Counterpart to Solidity's `int16` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 16 bits\n     *\n     * _Available since v3.1._\n     */\n    function toInt16(int256 value) internal pure returns (int16) {\n        require(value >= type(int16).min && value <= type(int16).max, \"SafeCast: value doesn't fit in 16 bits\");\n        return int16(value);\n    }\n\n    /**\n     * @dev Returns the downcasted int8 from int256, reverting on\n     * overflow (when the input is less than smallest int8 or\n     * greater than largest int8).\n     *\n     * Counterpart to Solidity's `int8` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 8 bits.\n     *\n     * _Available since v3.1._\n     */\n    function toInt8(int256 value) internal pure returns (int8) {\n        require(value >= type(int8).min && value <= type(int8).max, \"SafeCast: value doesn't fit in 8 bits\");\n        return int8(value);\n    }\n\n    /**\n     * @dev Converts an unsigned uint256 into a signed int256.\n     *\n     * Requirements:\n     *\n     * - input must be less than or equal to maxInt256.\n     */\n    function toInt256(uint256 value) internal pure returns (int256) {\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\n        require(value <= uint256(type(int256).max), \"SafeCast: value doesn't fit in an int256\");\n        return int256(value);\n    }\n}\n"
      },
      "contracts/prize-pool/PrizePool.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport \"@openzeppelin/contracts/security/ReentrancyGuard.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/IERC721.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\";\nimport \"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport \"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\";\n\nimport \"../external/compound/ICompLike.sol\";\nimport \"../interfaces/IPrizePool.sol\";\nimport \"../interfaces/ITicket.sol\";\n\n/**\n  * @title  PoolTogether V4 PrizePool\n  * @author PoolTogether Inc Team\n  * @notice Escrows assets and deposits them into a yield source.  Exposes interest to Prize Strategy.\n            Users deposit and withdraw from this contract to participate in Prize Pool.\n            Accounting is managed using Controlled Tokens, whose mint and burn functions can only be called by this contract.\n            Must be inherited to provide specific yield-bearing asset control, such as Compound cTokens\n*/\nabstract contract PrizePool is IPrizePool, Ownable, ReentrancyGuard, IERC721Receiver {\n    using SafeCast for uint256;\n    using SafeERC20 for IERC20;\n    using ERC165Checker for address;\n\n    /// @notice Semver Version\n    string public constant VERSION = \"4.0.0\";\n\n    /// @notice Prize Pool ticket. Can only be set once by calling `setTicket()`.\n    ITicket internal ticket;\n\n    /// @notice The Prize Strategy that this Prize Pool is bound to.\n    address internal prizeStrategy;\n\n    /// @notice The total amount of tickets a user can hold.\n    uint256 internal balanceCap;\n\n    /// @notice The total amount of funds that the prize pool can hold.\n    uint256 internal liquidityCap;\n\n    /// @notice the The awardable balance\n    uint256 internal _currentAwardBalance;\n\n    /* ============ Modifiers ============ */\n\n    /// @dev Function modifier to ensure caller is the prize-strategy\n    modifier onlyPrizeStrategy() {\n        require(msg.sender == prizeStrategy, \"PrizePool/only-prizeStrategy\");\n        _;\n    }\n\n    /// @dev Function modifier to ensure the deposit amount does not exceed the liquidity cap (if set)\n    modifier canAddLiquidity(uint256 _amount) {\n        require(_canAddLiquidity(_amount), \"PrizePool/exceeds-liquidity-cap\");\n        _;\n    }\n\n    /* ============ Constructor ============ */\n\n    /// @notice Deploy the Prize Pool\n    /// @param _owner Address of the Prize Pool owner\n    constructor(address _owner) Ownable(_owner) ReentrancyGuard() {\n        _setLiquidityCap(type(uint256).max);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IPrizePool\n    function balance() external override returns (uint256) {\n        return _balance();\n    }\n\n    /// @inheritdoc IPrizePool\n    function awardBalance() external view override returns (uint256) {\n        return _currentAwardBalance;\n    }\n\n    /// @inheritdoc IPrizePool\n    function canAwardExternal(address _externalToken) external view override returns (bool) {\n        return _canAwardExternal(_externalToken);\n    }\n\n    /// @inheritdoc IPrizePool\n    function isControlled(ITicket _controlledToken) external view override returns (bool) {\n        return _isControlled(_controlledToken);\n    }\n\n    /// @inheritdoc IPrizePool\n    function getAccountedBalance() external view override returns (uint256) {\n        return _ticketTotalSupply();\n    }\n\n    /// @inheritdoc IPrizePool\n    function getBalanceCap() external view override returns (uint256) {\n        return balanceCap;\n    }\n\n    /// @inheritdoc IPrizePool\n    function getLiquidityCap() external view override returns (uint256) {\n        return liquidityCap;\n    }\n\n    /// @inheritdoc IPrizePool\n    function getTicket() external view override returns (ITicket) {\n        return ticket;\n    }\n\n    /// @inheritdoc IPrizePool\n    function getPrizeStrategy() external view override returns (address) {\n        return prizeStrategy;\n    }\n\n    /// @inheritdoc IPrizePool\n    function getToken() external view override returns (address) {\n        return address(_token());\n    }\n\n    /// @inheritdoc IPrizePool\n    function captureAwardBalance() external override nonReentrant returns (uint256) {\n        uint256 ticketTotalSupply = _ticketTotalSupply();\n        uint256 currentAwardBalance = _currentAwardBalance;\n\n        // it's possible for the balance to be slightly less due to rounding errors in the underlying yield source\n        uint256 currentBalance = _balance();\n        uint256 totalInterest = (currentBalance > ticketTotalSupply)\n            ? currentBalance - ticketTotalSupply\n            : 0;\n\n        uint256 unaccountedPrizeBalance = (totalInterest > currentAwardBalance)\n            ? totalInterest - currentAwardBalance\n            : 0;\n\n        if (unaccountedPrizeBalance > 0) {\n            currentAwardBalance = totalInterest;\n            _currentAwardBalance = currentAwardBalance;\n\n            emit AwardCaptured(unaccountedPrizeBalance);\n        }\n\n        return currentAwardBalance;\n    }\n\n    /// @inheritdoc IPrizePool\n    function depositTo(address _to, uint256 _amount)\n        external\n        override\n        nonReentrant\n        canAddLiquidity(_amount)\n    {\n        _depositTo(msg.sender, _to, _amount);\n    }\n\n    /// @inheritdoc IPrizePool\n    function depositToAndDelegate(address _to, uint256 _amount, address _delegate)\n        external\n        override\n        nonReentrant\n        canAddLiquidity(_amount)\n    {\n        _depositTo(msg.sender, _to, _amount);\n        ticket.controllerDelegateFor(msg.sender, _delegate);\n    }\n\n    /// @notice Transfers tokens in from one user and mints tickets to another\n    /// @notice _operator The user to transfer tokens from\n    /// @notice _to The user to mint tickets to\n    /// @notice _amount The amount to transfer and mint\n    function _depositTo(address _operator, address _to, uint256 _amount) internal\n    {\n        require(_canDeposit(_to, _amount), \"PrizePool/exceeds-balance-cap\");\n\n        ITicket _ticket = ticket;\n\n        _token().safeTransferFrom(_operator, address(this), _amount);\n\n        _mint(_to, _amount, _ticket);\n        _supply(_amount);\n\n        emit Deposited(_operator, _to, _ticket, _amount);\n    }\n\n    /// @inheritdoc IPrizePool\n    function withdrawFrom(address _from, uint256 _amount)\n        external\n        override\n        nonReentrant\n        returns (uint256)\n    {\n        ITicket _ticket = ticket;\n\n        // burn the tickets\n        _ticket.controllerBurnFrom(msg.sender, _from, _amount);\n\n        // redeem the tickets\n        uint256 _redeemed = _redeem(_amount);\n\n        _token().safeTransfer(_from, _redeemed);\n\n        emit Withdrawal(msg.sender, _from, _ticket, _amount, _redeemed);\n\n        return _redeemed;\n    }\n\n    /// @inheritdoc IPrizePool\n    function award(address _to, uint256 _amount) external override onlyPrizeStrategy {\n        if (_amount == 0) {\n            return;\n        }\n\n        uint256 currentAwardBalance = _currentAwardBalance;\n\n        require(_amount <= currentAwardBalance, \"PrizePool/award-exceeds-avail\");\n\n        unchecked {\n            _currentAwardBalance = currentAwardBalance - _amount;\n        }\n\n        ITicket _ticket = ticket;\n\n        _mint(_to, _amount, _ticket);\n\n        emit Awarded(_to, _ticket, _amount);\n    }\n\n    /// @inheritdoc IPrizePool\n    function transferExternalERC20(\n        address _to,\n        address _externalToken,\n        uint256 _amount\n    ) external override onlyPrizeStrategy {\n        if (_transferOut(_to, _externalToken, _amount)) {\n            emit TransferredExternalERC20(_to, _externalToken, _amount);\n        }\n    }\n\n    /// @inheritdoc IPrizePool\n    function awardExternalERC20(\n        address _to,\n        address _externalToken,\n        uint256 _amount\n    ) external override onlyPrizeStrategy {\n        if (_transferOut(_to, _externalToken, _amount)) {\n            emit AwardedExternalERC20(_to, _externalToken, _amount);\n        }\n    }\n\n    /// @inheritdoc IPrizePool\n    function awardExternalERC721(\n        address _to,\n        address _externalToken,\n        uint256[] calldata _tokenIds\n    ) external override onlyPrizeStrategy {\n        require(_canAwardExternal(_externalToken), \"PrizePool/invalid-external-token\");\n\n        if (_tokenIds.length == 0) {\n            return;\n        }\n\n        uint256[] memory _awardedTokenIds = new uint256[](_tokenIds.length); \n        bool hasAwardedTokenIds;\n\n        for (uint256 i = 0; i < _tokenIds.length; i++) {\n            try IERC721(_externalToken).safeTransferFrom(address(this), _to, _tokenIds[i]) {\n                hasAwardedTokenIds = true;\n                _awardedTokenIds[i] = _tokenIds[i];\n            } catch (\n                bytes memory error\n            ) {\n                emit ErrorAwardingExternalERC721(error);\n            }\n        }\n        if (hasAwardedTokenIds) { \n            emit AwardedExternalERC721(_to, _externalToken, _awardedTokenIds);\n        }\n    }\n\n    /// @inheritdoc IPrizePool\n    function setBalanceCap(uint256 _balanceCap) external override onlyOwner returns (bool) {\n        _setBalanceCap(_balanceCap);\n        return true;\n    }\n\n    /// @inheritdoc IPrizePool\n    function setLiquidityCap(uint256 _liquidityCap) external override onlyOwner {\n        _setLiquidityCap(_liquidityCap);\n    }\n\n    /// @inheritdoc IPrizePool\n    function setTicket(ITicket _ticket) external override onlyOwner returns (bool) {\n        require(address(_ticket) != address(0), \"PrizePool/ticket-not-zero-address\");\n        require(address(ticket) == address(0), \"PrizePool/ticket-already-set\");\n\n        ticket = _ticket;\n\n        emit TicketSet(_ticket);\n\n        _setBalanceCap(type(uint256).max);\n\n        return true;\n    }\n\n    /// @inheritdoc IPrizePool\n    function setPrizeStrategy(address _prizeStrategy) external override onlyOwner {\n        _setPrizeStrategy(_prizeStrategy);\n    }\n\n    /// @inheritdoc IPrizePool\n    function compLikeDelegate(ICompLike _compLike, address _to) external override onlyOwner {\n        if (_compLike.balanceOf(address(this)) > 0) {\n            _compLike.delegate(_to);\n        }\n    }\n\n    /// @inheritdoc IERC721Receiver\n    function onERC721Received(\n        address,\n        address,\n        uint256,\n        bytes calldata\n    ) external pure override returns (bytes4) {\n        return IERC721Receiver.onERC721Received.selector;\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /// @notice Transfer out `amount` of `externalToken` to recipient `to`\n    /// @dev Only awardable `externalToken` can be transferred out\n    /// @param _to Recipient address\n    /// @param _externalToken Address of the external asset token being transferred\n    /// @param _amount Amount of external assets to be transferred\n    /// @return True if transfer is successful\n    function _transferOut(\n        address _to,\n        address _externalToken,\n        uint256 _amount\n    ) internal returns (bool) {\n        require(_canAwardExternal(_externalToken), \"PrizePool/invalid-external-token\");\n\n        if (_amount == 0) {\n            return false;\n        }\n\n        IERC20(_externalToken).safeTransfer(_to, _amount);\n\n        return true;\n    }\n\n    /// @notice Called to mint controlled tokens.  Ensures that token listener callbacks are fired.\n    /// @param _to The user who is receiving the tokens\n    /// @param _amount The amount of tokens they are receiving\n    /// @param _controlledToken The token that is going to be minted\n    function _mint(\n        address _to,\n        uint256 _amount,\n        ITicket _controlledToken\n    ) internal {\n        _controlledToken.controllerMint(_to, _amount);\n    }\n\n    /// @dev Checks if `user` can deposit in the Prize Pool based on the current balance cap.\n    /// @param _user Address of the user depositing.\n    /// @param _amount The amount of tokens to be deposited into the Prize Pool.\n    /// @return True if the Prize Pool can receive the specified `amount` of tokens.\n    function _canDeposit(address _user, uint256 _amount) internal view returns (bool) {\n        uint256 _balanceCap = balanceCap;\n\n        if (_balanceCap == type(uint256).max) return true;\n\n        return (ticket.balanceOf(_user) + _amount <= _balanceCap);\n    }\n\n    /// @dev Checks if the Prize Pool can receive liquidity based on the current cap\n    /// @param _amount The amount of liquidity to be added to the Prize Pool\n    /// @return True if the Prize Pool can receive the specified amount of liquidity\n    function _canAddLiquidity(uint256 _amount) internal view returns (bool) {\n        uint256 _liquidityCap = liquidityCap;\n        if (_liquidityCap == type(uint256).max) return true;\n        return (_ticketTotalSupply() + _amount <= _liquidityCap);\n    }\n\n    /// @dev Checks if a specific token is controlled by the Prize Pool\n    /// @param _controlledToken The address of the token to check\n    /// @return True if the token is a controlled token, false otherwise\n    function _isControlled(ITicket _controlledToken) internal view returns (bool) {\n        return (ticket == _controlledToken);\n    }\n\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\n    /// @param _balanceCap New balance cap.\n    function _setBalanceCap(uint256 _balanceCap) internal {\n        balanceCap = _balanceCap;\n        emit BalanceCapSet(_balanceCap);\n    }\n\n    /// @notice Allows the owner to set a liquidity cap for the pool\n    /// @param _liquidityCap New liquidity cap\n    function _setLiquidityCap(uint256 _liquidityCap) internal {\n        liquidityCap = _liquidityCap;\n        emit LiquidityCapSet(_liquidityCap);\n    }\n\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\n    /// @param _prizeStrategy The new prize strategy\n    function _setPrizeStrategy(address _prizeStrategy) internal {\n        require(_prizeStrategy != address(0), \"PrizePool/prizeStrategy-not-zero\");\n\n        prizeStrategy = _prizeStrategy;\n\n        emit PrizeStrategySet(_prizeStrategy);\n    }\n\n    /// @notice The current total of tickets.\n    /// @return Ticket total supply.\n    function _ticketTotalSupply() internal view returns (uint256) {\n        return ticket.totalSupply();\n    }\n\n    /// @dev Gets the current time as represented by the current block\n    /// @return The timestamp of the current block\n    function _currentTime() internal view virtual returns (uint256) {\n        return block.timestamp;\n    }\n\n    /* ============ Abstract Contract Implementatiton ============ */\n\n    /// @notice Determines whether the passed token can be transferred out as an external award.\n    /// @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\n    /// prize strategy should not be allowed to move those tokens.\n    /// @param _externalToken The address of the token to check\n    /// @return True if the token may be awarded, false otherwise\n    function _canAwardExternal(address _externalToken) internal view virtual returns (bool);\n\n    /// @notice Returns the ERC20 asset token used for deposits.\n    /// @return The ERC20 asset token\n    function _token() internal view virtual returns (IERC20);\n\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n    /// @return The underlying balance of asset tokens\n    function _balance() internal virtual returns (uint256);\n\n    /// @notice Supplies asset tokens to the yield source.\n    /// @param _mintAmount The amount of asset tokens to be supplied\n    function _supply(uint256 _mintAmount) internal virtual;\n\n    /// @notice Redeems asset tokens from the yield source.\n    /// @param _redeemAmount The amount of yield-bearing tokens to be redeemed\n    /// @return The actual amount of tokens that were redeemed.\n    function _redeem(uint256 _redeemAmount) internal virtual returns (uint256);\n}\n"
      },
      "@openzeppelin/contracts/security/ReentrancyGuard.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n */\nabstract contract ReentrancyGuard {\n    // Booleans are more expensive than uint256 or any type that takes up a full\n    // word because each write operation emits an extra SLOAD to first read the\n    // slot's contents, replace the bits taken up by the boolean, and then write\n    // back. This is the compiler's defense against contract upgrades and\n    // pointer aliasing, and it cannot be disabled.\n\n    // The values being non-zero value makes deployment a bit more expensive,\n    // but in exchange the refund on every call to nonReentrant will be lower in\n    // amount. Since refunds are capped to a percentage of the total\n    // transaction's gas, it is best to keep them low in cases like this one, to\n    // increase the likelihood of the full refund coming into effect.\n    uint256 private constant _NOT_ENTERED = 1;\n    uint256 private constant _ENTERED = 2;\n\n    uint256 private _status;\n\n    constructor() {\n        _status = _NOT_ENTERED;\n    }\n\n    /**\n     * @dev Prevents a contract from calling itself, directly or indirectly.\n     * Calling a `nonReentrant` function from another `nonReentrant`\n     * function is not supported. It is possible to prevent this from happening\n     * by making the `nonReentrant` function external, and make it call a\n     * `private` function that does the actual work.\n     */\n    modifier nonReentrant() {\n        // On the first call to nonReentrant, _notEntered will be true\n        require(_status != _ENTERED, \"ReentrancyGuard: reentrant call\");\n\n        // Any calls to nonReentrant after this point will fail\n        _status = _ENTERED;\n\n        _;\n\n        // By storing the original value once again, a refund is triggered (see\n        // https://eips.ethereum.org/EIPS/eip-2200)\n        _status = _NOT_ENTERED;\n    }\n}\n"
      },
      "@openzeppelin/contracts/token/ERC721/IERC721.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n    /**\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n     */\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n    /**\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n     */\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n    /**\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n     */\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n    /**\n     * @dev Returns the number of tokens in ``owner``'s account.\n     */\n    function balanceOf(address owner) external view returns (uint256 balance);\n\n    /**\n     * @dev Returns the owner of the `tokenId` token.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     */\n    function ownerOf(uint256 tokenId) external view returns (address owner);\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must exist and be owned by `from`.\n     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function safeTransferFrom(\n        address from,\n        address to,\n        uint256 tokenId\n    ) external;\n\n    /**\n     * @dev Transfers `tokenId` token from `from` to `to`.\n     *\n     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must be owned by `from`.\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transferFrom(\n        address from,\n        address to,\n        uint256 tokenId\n    ) external;\n\n    /**\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n     * The approval is cleared when the token is transferred.\n     *\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n     *\n     * Requirements:\n     *\n     * - The caller must own the token or be an approved operator.\n     * - `tokenId` must exist.\n     *\n     * Emits an {Approval} event.\n     */\n    function approve(address to, uint256 tokenId) external;\n\n    /**\n     * @dev Returns the account approved for `tokenId` token.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     */\n    function getApproved(uint256 tokenId) external view returns (address operator);\n\n    /**\n     * @dev Approve or remove `operator` as an operator for the caller.\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n     *\n     * Requirements:\n     *\n     * - The `operator` cannot be the caller.\n     *\n     * Emits an {ApprovalForAll} event.\n     */\n    function setApprovalForAll(address operator, bool _approved) external;\n\n    /**\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n     *\n     * See {setApprovalForAll}\n     */\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must exist and be owned by `from`.\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function safeTransferFrom(\n        address from,\n        address to,\n        uint256 tokenId,\n        bytes calldata data\n    ) external;\n}\n"
      },
      "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/**\n * @title ERC721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC721 asset contracts.\n */\ninterface IERC721Receiver {\n    /**\n     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n     * by `operator` from `from`, this function is called.\n     *\n     * It must return its Solidity selector to confirm the token transfer.\n     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\n     *\n     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\n     */\n    function onERC721Received(\n        address operator,\n        address from,\n        uint256 tokenId,\n        bytes calldata data\n    ) external returns (bytes4);\n}\n"
      },
      "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport \"./IERC165.sol\";\n\n/**\n * @dev Library used to query support of an interface declared via {IERC165}.\n *\n * Note that these functions return the actual result of the query: they do not\n * `revert` if an interface is not supported. It is up to the caller to decide\n * what to do in these cases.\n */\nlibrary ERC165Checker {\n    // As per the EIP-165 spec, no interface should ever match 0xffffffff\n    bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;\n\n    /**\n     * @dev Returns true if `account` supports the {IERC165} interface,\n     */\n    function supportsERC165(address account) internal view returns (bool) {\n        // Any contract that implements ERC165 must explicitly indicate support of\n        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid\n        return\n            _supportsERC165Interface(account, type(IERC165).interfaceId) &&\n            !_supportsERC165Interface(account, _INTERFACE_ID_INVALID);\n    }\n\n    /**\n     * @dev Returns true if `account` supports the interface defined by\n     * `interfaceId`. Support for {IERC165} itself is queried automatically.\n     *\n     * See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {\n        // query support of both ERC165 as per the spec and support of _interfaceId\n        return supportsERC165(account) && _supportsERC165Interface(account, interfaceId);\n    }\n\n    /**\n     * @dev Returns a boolean array where each value corresponds to the\n     * interfaces passed in and whether they're supported or not. This allows\n     * you to batch check interfaces for a contract where your expectation\n     * is that some interfaces may not be supported.\n     *\n     * See {IERC165-supportsInterface}.\n     *\n     * _Available since v3.4._\n     */\n    function getSupportedInterfaces(address account, bytes4[] memory interfaceIds)\n        internal\n        view\n        returns (bool[] memory)\n    {\n        // an array of booleans corresponding to interfaceIds and whether they're supported or not\n        bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);\n\n        // query support of ERC165 itself\n        if (supportsERC165(account)) {\n            // query support of each interface in interfaceIds\n            for (uint256 i = 0; i < interfaceIds.length; i++) {\n                interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]);\n            }\n        }\n\n        return interfaceIdsSupported;\n    }\n\n    /**\n     * @dev Returns true if `account` supports all the interfaces defined in\n     * `interfaceIds`. Support for {IERC165} itself is queried automatically.\n     *\n     * Batch-querying can lead to gas savings by skipping repeated checks for\n     * {IERC165} support.\n     *\n     * See {IERC165-supportsInterface}.\n     */\n    function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {\n        // query support of ERC165 itself\n        if (!supportsERC165(account)) {\n            return false;\n        }\n\n        // query support of each interface in _interfaceIds\n        for (uint256 i = 0; i < interfaceIds.length; i++) {\n            if (!_supportsERC165Interface(account, interfaceIds[i])) {\n                return false;\n            }\n        }\n\n        // all interfaces supported\n        return true;\n    }\n\n    /**\n     * @notice Query if a contract implements an interface, does not check ERC165 support\n     * @param account The address of the contract to query for support of an interface\n     * @param interfaceId The interface identifier, as specified in ERC-165\n     * @return true if the contract at account indicates support of the interface with\n     * identifier interfaceId, false otherwise\n     * @dev Assumes that account contains a contract that supports ERC165, otherwise\n     * the behavior of this method is undefined. This precondition can be checked\n     * with {supportsERC165}.\n     * Interface identification is specified in ERC-165.\n     */\n    function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {\n        bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId);\n        (bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams);\n        if (result.length < 32) return false;\n        return success && abi.decode(result, (bool));\n    }\n}\n"
      },
      "@pooltogether/owner-manager-contracts/contracts/Ownable.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity ^0.8.0;\n\n/**\n * @title Abstract ownable contract that can be inherited by other contracts\n * @notice Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * By default, the owner is the deployer of the contract.\n *\n * The owner account is set through a two steps process.\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\n *\n * The manager account needs to be set using {setManager}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable {\n    address private _owner;\n    address private _pendingOwner;\n\n    /**\n     * @dev Emitted when `_pendingOwner` has been changed.\n     * @param pendingOwner new `_pendingOwner` address.\n     */\n    event OwnershipOffered(address indexed pendingOwner);\n\n    /**\n     * @dev Emitted when `_owner` has been changed.\n     * @param previousOwner previous `_owner` address.\n     * @param newOwner new `_owner` address.\n     */\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n    /* ============ Deploy ============ */\n\n    /**\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\n     * @param _initialOwner Initial owner of the contract.\n     */\n    constructor(address _initialOwner) {\n        _setOwner(_initialOwner);\n    }\n\n    /* ============ External Functions ============ */\n\n    /**\n     * @notice Returns the address of the current owner.\n     */\n    function owner() public view virtual returns (address) {\n        return _owner;\n    }\n\n    /**\n     * @notice Gets current `_pendingOwner`.\n     * @return Current `_pendingOwner` address.\n     */\n    function pendingOwner() external view virtual returns (address) {\n        return _pendingOwner;\n    }\n\n    /**\n     * @notice Renounce ownership of the contract.\n     * @dev Leaves the contract without owner. It will not be possible to call\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\n     *\n     * NOTE: Renouncing ownership will leave the contract without an owner,\n     * thereby removing any functionality that is only available to the owner.\n     */\n    function renounceOwnership() external virtual onlyOwner {\n        _setOwner(address(0));\n    }\n\n    /**\n    * @notice Allows current owner to set the `_pendingOwner` address.\n    * @param _newOwner Address to transfer ownership to.\n    */\n    function transferOwnership(address _newOwner) external onlyOwner {\n        require(_newOwner != address(0), \"Ownable/pendingOwner-not-zero-address\");\n\n        _pendingOwner = _newOwner;\n\n        emit OwnershipOffered(_newOwner);\n    }\n\n    /**\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\n    * @dev This function is only callable by the `_pendingOwner`.\n    */\n    function claimOwnership() external onlyPendingOwner {\n        _setOwner(_pendingOwner);\n        _pendingOwner = address(0);\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Internal function to set the `_owner` of the contract.\n     * @param _newOwner New `_owner` address.\n     */\n    function _setOwner(address _newOwner) private {\n        address _oldOwner = _owner;\n        _owner = _newOwner;\n        emit OwnershipTransferred(_oldOwner, _newOwner);\n    }\n\n    /* ============ Modifier Functions ============ */\n\n    /**\n     * @dev Throws if called by any account other than the owner.\n     */\n    modifier onlyOwner() {\n        require(owner() == msg.sender, \"Ownable/caller-not-owner\");\n        _;\n    }\n\n    /**\n    * @dev Throws if called by any account other than the `pendingOwner`.\n    */\n    modifier onlyPendingOwner() {\n        require(msg.sender == _pendingOwner, \"Ownable/caller-not-pendingOwner\");\n        _;\n    }\n}\n"
      },
      "contracts/external/compound/ICompLike.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\n\ninterface ICompLike is IERC20 {\n    function getCurrentVotes(address account) external view returns (uint96);\n\n    function delegate(address delegate) external;\n}\n"
      },
      "contracts/interfaces/IPrizePool.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../external/compound/ICompLike.sol\";\nimport \"../interfaces/ITicket.sol\";\n\ninterface IPrizePool {\n    /// @dev Event emitted when controlled token is added\n    event ControlledTokenAdded(ITicket indexed token);\n\n    event AwardCaptured(uint256 amount);\n\n    /// @dev Event emitted when assets are deposited\n    event Deposited(\n        address indexed operator,\n        address indexed to,\n        ITicket indexed token,\n        uint256 amount\n    );\n\n    /// @dev Event emitted when interest is awarded to a winner\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\n\n    /// @dev Event emitted when external ERC20s are awarded to a winner\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\n\n    /// @dev Event emitted when external ERC20s are transferred out\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\n\n    /// @dev Event emitted when external ERC721s are awarded to a winner\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\n\n    /// @dev Event emitted when assets are withdrawn\n    event Withdrawal(\n        address indexed operator,\n        address indexed from,\n        ITicket indexed token,\n        uint256 amount,\n        uint256 redeemed\n    );\n\n    /// @dev Event emitted when the Balance Cap is set\n    event BalanceCapSet(uint256 balanceCap);\n\n    /// @dev Event emitted when the Liquidity Cap is set\n    event LiquidityCapSet(uint256 liquidityCap);\n\n    /// @dev Event emitted when the Prize Strategy is set\n    event PrizeStrategySet(address indexed prizeStrategy);\n\n    /// @dev Event emitted when the Ticket is set\n    event TicketSet(ITicket indexed ticket);\n\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\n    event ErrorAwardingExternalERC721(bytes error);\n\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\n    /// @param to The address receiving the newly minted tokens\n    /// @param amount The amount of assets to deposit\n    function depositTo(address to, uint256 amount) external;\n\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\n    /// then sets the delegate on behalf of the caller.\n    /// @param to The address receiving the newly minted tokens\n    /// @param amount The amount of assets to deposit\n    /// @param delegate The address to delegate to for the caller\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\n\n    /// @notice Withdraw assets from the Prize Pool instantly.\n    /// @param from The address to redeem tokens from.\n    /// @param amount The amount of tokens to redeem for assets.\n    /// @return The actual amount withdrawn\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\n\n    /// @notice Called by the prize strategy to award prizes.\n    /// @dev The amount awarded must be less than the awardBalance()\n    /// @param to The address of the winner that receives the award\n    /// @param amount The amount of assets to be awarded\n    function award(address to, uint256 amount) external;\n\n    /// @notice Returns the balance that is available to award.\n    /// @dev captureAwardBalance() should be called first\n    /// @return The total amount of assets to be awarded for the current prize\n    function awardBalance() external view returns (uint256);\n\n    /// @notice Captures any available interest as award balance.\n    /// @dev This function also captures the reserve fees.\n    /// @return The total amount of assets to be awarded for the current prize\n    function captureAwardBalance() external returns (uint256);\n\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\n    /// @param externalToken The address of the token to check\n    /// @return True if the token may be awarded, false otherwise\n    function canAwardExternal(address externalToken) external view returns (bool);\n\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\n    /// @return The underlying balance of assets\n    function balance() external returns (uint256);\n\n    /**\n     * @notice Read internal Ticket accounted balance.\n     * @return uint256 accountBalance\n     */\n    function getAccountedBalance() external view returns (uint256);\n\n    /**\n     * @notice Read internal balanceCap variable\n     */\n    function getBalanceCap() external view returns (uint256);\n\n    /**\n     * @notice Read internal liquidityCap variable\n     */\n    function getLiquidityCap() external view returns (uint256);\n\n    /**\n     * @notice Read ticket variable\n     */\n    function getTicket() external view returns (ITicket);\n\n    /**\n     * @notice Read token variable\n     */\n    function getToken() external view returns (address);\n\n    /**\n     * @notice Read prizeStrategy variable\n     */\n    function getPrizeStrategy() external view returns (address);\n\n    /// @dev Checks if a specific token is controlled by the Prize Pool\n    /// @param controlledToken The address of the token to check\n    /// @return True if the token is a controlled token, false otherwise\n    function isControlled(ITicket controlledToken) external view returns (bool);\n\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\n    /// @param to The address of the winner that receives the award\n    /// @param externalToken The address of the external asset token being awarded\n    /// @param amount The amount of external assets to be awarded\n    function transferExternalERC20(\n        address to,\n        address externalToken,\n        uint256 amount\n    ) external;\n\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\n    /// @param to The address of the winner that receives the award\n    /// @param amount The amount of external assets to be awarded\n    /// @param externalToken The address of the external asset token being awarded\n    function awardExternalERC20(\n        address to,\n        address externalToken,\n        uint256 amount\n    ) external;\n\n    /// @notice Called by the prize strategy to award external ERC721 prizes\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\n    /// @param to The address of the winner that receives the award\n    /// @param externalToken The address of the external NFT token being awarded\n    /// @param tokenIds An array of NFT Token IDs to be transferred\n    function awardExternalERC721(\n        address to,\n        address externalToken,\n        uint256[] calldata tokenIds\n    ) external;\n\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\n    /// @param balanceCap New balance cap.\n    /// @return True if new balance cap has been successfully set.\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\n\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\n    /// @param liquidityCap The new liquidity cap for the prize pool\n    function setLiquidityCap(uint256 liquidityCap) external;\n\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\n    /// @param _prizeStrategy The new prize strategy.\n    function setPrizeStrategy(address _prizeStrategy) external;\n\n    /// @notice Set prize pool ticket.\n    /// @param ticket Address of the ticket to set.\n    /// @return True if ticket has been successfully set.\n    function setTicket(ITicket ticket) external returns (bool);\n\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\n    /// @param to The address to delegate to\n    function compLikeDelegate(ICompLike compLike, address to) external;\n}\n"
      },
      "@openzeppelin/contracts/utils/introspection/IERC165.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n    /**\n     * @dev Returns true if this contract implements the interface defined by\n     * `interfaceId`. See the corresponding\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n     * to learn more about how these ids are created.\n     *\n     * This function call must use less than 30 000 gas.\n     */\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"
      },
      "contracts/test/PrizePoolHarness.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../prize-pool/PrizePool.sol\";\nimport \"./YieldSourceStub.sol\";\n\ncontract PrizePoolHarness is PrizePool {\n    uint256 public currentTime;\n\n    YieldSourceStub public stubYieldSource;\n\n    constructor(address _owner, YieldSourceStub _stubYieldSource) PrizePool(_owner) {\n        stubYieldSource = _stubYieldSource;\n    }\n\n    function mint(\n        address _to,\n        uint256 _amount,\n        ITicket _controlledToken\n    ) external {\n        _mint(_to, _amount, _controlledToken);\n    }\n\n    function supply(uint256 mintAmount) external {\n        _supply(mintAmount);\n    }\n\n    function redeem(uint256 redeemAmount) external {\n        _redeem(redeemAmount);\n    }\n\n    function setCurrentTime(uint256 _nowTime) external {\n        currentTime = _nowTime;\n    }\n\n    function _currentTime() internal view override returns (uint256) {\n        return currentTime;\n    }\n\n    function internalCurrentTime() external view returns (uint256) {\n        return super._currentTime();\n    }\n\n    function _canAwardExternal(address _externalToken) internal view override returns (bool) {\n        return stubYieldSource.canAwardExternal(_externalToken);\n    }\n\n    function _token() internal view override returns (IERC20) {\n        return IERC20(stubYieldSource.depositToken());\n    }\n\n    function _balance() internal override returns (uint256) {\n        return stubYieldSource.balanceOfToken(address(this));\n    }\n\n    function _supply(uint256 mintAmount) internal override {\n        stubYieldSource.supplyTokenTo(mintAmount, address(this));\n    }\n\n    function _redeem(uint256 redeemAmount) internal override returns (uint256) {\n        return stubYieldSource.redeemToken(redeemAmount);\n    }\n\n    function setCurrentAwardBalance(uint256 amount) external {\n        _currentAwardBalance = amount;\n    }\n}\n"
      },
      "contracts/test/YieldSourceStub.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\";\n\ninterface YieldSourceStub is IYieldSource {\n    function canAwardExternal(address _externalToken) external view returns (bool);\n}\n"
      },
      "@pooltogether/yield-source-interface/contracts/IYieldSource.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.6.0;\n\n/// @title Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.\n/// @notice Prize Pools subclasses need to implement this interface so that yield can be generated.\ninterface IYieldSource {\n    /// @notice Returns the ERC20 asset token used for deposits.\n    /// @return The ERC20 asset token address.\n    function depositToken() external view returns (address);\n\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n    /// @return The underlying balance of asset tokens.\n    function balanceOfToken(address addr) external returns (uint256);\n\n    /// @notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\n    /// @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\n    /// @param to The user whose balance will receive the tokens\n    function supplyTokenTo(uint256 amount, address to) external;\n\n    /// @notice Redeems tokens from the yield source.\n    /// @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\n    /// @return The actual amount of interst bearing tokens that were redeemed.\n    function redeemToken(uint256 amount) external returns (uint256);\n}\n"
      },
      "contracts/prize-pool/YieldSourcePrizePool.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport \"@openzeppelin/contracts/utils/Address.sol\";\nimport \"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\";\n\nimport \"./PrizePool.sol\";\n\n/**\n * @title  PoolTogether V4 YieldSourcePrizePool\n * @author PoolTogether Inc Team\n * @notice The Yield Source Prize Pool uses a yield source contract to generate prizes.\n *         Funds that are deposited into the prize pool are then deposited into a yield source. (i.e. Aave, Compound, etc...)\n */\ncontract YieldSourcePrizePool is PrizePool {\n    using SafeERC20 for IERC20;\n    using Address for address;\n\n    /// @notice Address of the yield source.\n    IYieldSource public immutable yieldSource;\n\n    /// @dev Emitted when yield source prize pool is deployed.\n    /// @param yieldSource Address of the yield source.\n    event Deployed(address indexed yieldSource);\n\n    /// @notice Emitted when stray deposit token balance in this contract is swept\n    /// @param amount The amount that was swept\n    event Swept(uint256 amount);\n\n    /// @notice Deploy the Prize Pool and Yield Service with the required contract connections\n    /// @param _owner Address of the Yield Source Prize Pool owner\n    /// @param _yieldSource Address of the yield source\n    constructor(address _owner, IYieldSource _yieldSource) PrizePool(_owner) {\n        require(\n            address(_yieldSource) != address(0),\n            \"YieldSourcePrizePool/yield-source-not-zero-address\"\n        );\n\n        yieldSource = _yieldSource;\n\n        // A hack to determine whether it's an actual yield source\n        (bool succeeded, bytes memory data) = address(_yieldSource).staticcall(\n            abi.encodePacked(_yieldSource.depositToken.selector)\n        );\n        address resultingAddress;\n        if (data.length > 0) {\n            resultingAddress = abi.decode(data, (address));\n        }\n        require(succeeded && resultingAddress != address(0), \"YieldSourcePrizePool/invalid-yield-source\");\n\n        emit Deployed(address(_yieldSource));\n    }\n\n    /// @notice Sweeps any stray balance of deposit tokens into the yield source.\n    /// @dev This becomes prize money\n    function sweep() external nonReentrant onlyOwner {\n        uint256 balance = _token().balanceOf(address(this));\n        _supply(balance);\n\n        emit Swept(balance);\n    }\n\n    /// @notice Determines whether the passed token can be transferred out as an external award.\n    /// @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\n    /// prize strategy should not be allowed to move those tokens.\n    /// @param _externalToken The address of the token to check\n    /// @return True if the token may be awarded, false otherwise\n    function _canAwardExternal(address _externalToken) internal view override returns (bool) {\n        IYieldSource _yieldSource = yieldSource;\n        return (\n            _externalToken != address(_yieldSource) &&\n            _externalToken != _yieldSource.depositToken()\n        );\n    }\n\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n    /// @return The underlying balance of asset tokens\n    function _balance() internal override returns (uint256) {\n        return yieldSource.balanceOfToken(address(this));\n    }\n\n    /// @notice Returns the address of the ERC20 asset token used for deposits.\n    /// @return Address of the ERC20 asset token.\n    function _token() internal view override returns (IERC20) {\n        return IERC20(yieldSource.depositToken());\n    }\n\n    /// @notice Supplies asset tokens to the yield source.\n    /// @param _mintAmount The amount of asset tokens to be supplied\n    function _supply(uint256 _mintAmount) internal override {\n        _token().safeIncreaseAllowance(address(yieldSource), _mintAmount);\n        yieldSource.supplyTokenTo(_mintAmount, address(this));\n    }\n\n    /// @notice Redeems asset tokens from the yield source.\n    /// @param _redeemAmount The amount of yield-bearing tokens to be redeemed\n    /// @return The actual amount of tokens that were redeemed.\n    function _redeem(uint256 _redeemAmount) internal override returns (uint256) {\n        return yieldSource.redeemToken(_redeemAmount);\n    }\n}\n"
      },
      "@openzeppelin/contracts/token/ERC721/ERC721.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport \"./IERC721.sol\";\nimport \"./IERC721Receiver.sol\";\nimport \"./extensions/IERC721Metadata.sol\";\nimport \"../../utils/Address.sol\";\nimport \"../../utils/Context.sol\";\nimport \"../../utils/Strings.sol\";\nimport \"../../utils/introspection/ERC165.sol\";\n\n/**\n * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including\n * the Metadata extension, but not including the Enumerable extension, which is available separately as\n * {ERC721Enumerable}.\n */\ncontract ERC721 is Context, ERC165, IERC721, IERC721Metadata {\n    using Address for address;\n    using Strings for uint256;\n\n    // Token name\n    string private _name;\n\n    // Token symbol\n    string private _symbol;\n\n    // Mapping from token ID to owner address\n    mapping(uint256 => address) private _owners;\n\n    // Mapping owner address to token count\n    mapping(address => uint256) private _balances;\n\n    // Mapping from token ID to approved address\n    mapping(uint256 => address) private _tokenApprovals;\n\n    // Mapping from owner to operator approvals\n    mapping(address => mapping(address => bool)) private _operatorApprovals;\n\n    /**\n     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.\n     */\n    constructor(string memory name_, string memory symbol_) {\n        _name = name_;\n        _symbol = symbol_;\n    }\n\n    /**\n     * @dev See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\n        return\n            interfaceId == type(IERC721).interfaceId ||\n            interfaceId == type(IERC721Metadata).interfaceId ||\n            super.supportsInterface(interfaceId);\n    }\n\n    /**\n     * @dev See {IERC721-balanceOf}.\n     */\n    function balanceOf(address owner) public view virtual override returns (uint256) {\n        require(owner != address(0), \"ERC721: balance query for the zero address\");\n        return _balances[owner];\n    }\n\n    /**\n     * @dev See {IERC721-ownerOf}.\n     */\n    function ownerOf(uint256 tokenId) public view virtual override returns (address) {\n        address owner = _owners[tokenId];\n        require(owner != address(0), \"ERC721: owner query for nonexistent token\");\n        return owner;\n    }\n\n    /**\n     * @dev See {IERC721Metadata-name}.\n     */\n    function name() public view virtual override returns (string memory) {\n        return _name;\n    }\n\n    /**\n     * @dev See {IERC721Metadata-symbol}.\n     */\n    function symbol() public view virtual override returns (string memory) {\n        return _symbol;\n    }\n\n    /**\n     * @dev See {IERC721Metadata-tokenURI}.\n     */\n    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\n        require(_exists(tokenId), \"ERC721Metadata: URI query for nonexistent token\");\n\n        string memory baseURI = _baseURI();\n        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\";\n    }\n\n    /**\n     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\n     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n     * by default, can be overriden in child contracts.\n     */\n    function _baseURI() internal view virtual returns (string memory) {\n        return \"\";\n    }\n\n    /**\n     * @dev See {IERC721-approve}.\n     */\n    function approve(address to, uint256 tokenId) public virtual override {\n        address owner = ERC721.ownerOf(tokenId);\n        require(to != owner, \"ERC721: approval to current owner\");\n\n        require(\n            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),\n            \"ERC721: approve caller is not owner nor approved for all\"\n        );\n\n        _approve(to, tokenId);\n    }\n\n    /**\n     * @dev See {IERC721-getApproved}.\n     */\n    function getApproved(uint256 tokenId) public view virtual override returns (address) {\n        require(_exists(tokenId), \"ERC721: approved query for nonexistent token\");\n\n        return _tokenApprovals[tokenId];\n    }\n\n    /**\n     * @dev See {IERC721-setApprovalForAll}.\n     */\n    function setApprovalForAll(address operator, bool approved) public virtual override {\n        require(operator != _msgSender(), \"ERC721: approve to caller\");\n\n        _operatorApprovals[_msgSender()][operator] = approved;\n        emit ApprovalForAll(_msgSender(), operator, approved);\n    }\n\n    /**\n     * @dev See {IERC721-isApprovedForAll}.\n     */\n    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {\n        return _operatorApprovals[owner][operator];\n    }\n\n    /**\n     * @dev See {IERC721-transferFrom}.\n     */\n    function transferFrom(\n        address from,\n        address to,\n        uint256 tokenId\n    ) public virtual override {\n        //solhint-disable-next-line max-line-length\n        require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: transfer caller is not owner nor approved\");\n\n        _transfer(from, to, tokenId);\n    }\n\n    /**\n     * @dev See {IERC721-safeTransferFrom}.\n     */\n    function safeTransferFrom(\n        address from,\n        address to,\n        uint256 tokenId\n    ) public virtual override {\n        safeTransferFrom(from, to, tokenId, \"\");\n    }\n\n    /**\n     * @dev See {IERC721-safeTransferFrom}.\n     */\n    function safeTransferFrom(\n        address from,\n        address to,\n        uint256 tokenId,\n        bytes memory _data\n    ) public virtual override {\n        require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: transfer caller is not owner nor approved\");\n        _safeTransfer(from, to, tokenId, _data);\n    }\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n     *\n     * `_data` is additional data, it has no specified format and it is sent in call to `to`.\n     *\n     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.\n     * implement alternative mechanisms to perform token transfer, such as signature-based.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must exist and be owned by `from`.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _safeTransfer(\n        address from,\n        address to,\n        uint256 tokenId,\n        bytes memory _data\n    ) internal virtual {\n        _transfer(from, to, tokenId);\n        require(_checkOnERC721Received(from, to, tokenId, _data), \"ERC721: transfer to non ERC721Receiver implementer\");\n    }\n\n    /**\n     * @dev Returns whether `tokenId` exists.\n     *\n     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.\n     *\n     * Tokens start existing when they are minted (`_mint`),\n     * and stop existing when they are burned (`_burn`).\n     */\n    function _exists(uint256 tokenId) internal view virtual returns (bool) {\n        return _owners[tokenId] != address(0);\n    }\n\n    /**\n     * @dev Returns whether `spender` is allowed to manage `tokenId`.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     */\n    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {\n        require(_exists(tokenId), \"ERC721: operator query for nonexistent token\");\n        address owner = ERC721.ownerOf(tokenId);\n        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));\n    }\n\n    /**\n     * @dev Safely mints `tokenId` and transfers it to `to`.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must not exist.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _safeMint(address to, uint256 tokenId) internal virtual {\n        _safeMint(to, tokenId, \"\");\n    }\n\n    /**\n     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is\n     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.\n     */\n    function _safeMint(\n        address to,\n        uint256 tokenId,\n        bytes memory _data\n    ) internal virtual {\n        _mint(to, tokenId);\n        require(\n            _checkOnERC721Received(address(0), to, tokenId, _data),\n            \"ERC721: transfer to non ERC721Receiver implementer\"\n        );\n    }\n\n    /**\n     * @dev Mints `tokenId` and transfers it to `to`.\n     *\n     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible\n     *\n     * Requirements:\n     *\n     * - `tokenId` must not exist.\n     * - `to` cannot be the zero address.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _mint(address to, uint256 tokenId) internal virtual {\n        require(to != address(0), \"ERC721: mint to the zero address\");\n        require(!_exists(tokenId), \"ERC721: token already minted\");\n\n        _beforeTokenTransfer(address(0), to, tokenId);\n\n        _balances[to] += 1;\n        _owners[tokenId] = to;\n\n        emit Transfer(address(0), to, tokenId);\n    }\n\n    /**\n     * @dev Destroys `tokenId`.\n     * The approval is cleared when the token is burned.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _burn(uint256 tokenId) internal virtual {\n        address owner = ERC721.ownerOf(tokenId);\n\n        _beforeTokenTransfer(owner, address(0), tokenId);\n\n        // Clear approvals\n        _approve(address(0), tokenId);\n\n        _balances[owner] -= 1;\n        delete _owners[tokenId];\n\n        emit Transfer(owner, address(0), tokenId);\n    }\n\n    /**\n     * @dev Transfers `tokenId` from `from` to `to`.\n     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.\n     *\n     * Requirements:\n     *\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must be owned by `from`.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _transfer(\n        address from,\n        address to,\n        uint256 tokenId\n    ) internal virtual {\n        require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer of token that is not own\");\n        require(to != address(0), \"ERC721: transfer to the zero address\");\n\n        _beforeTokenTransfer(from, to, tokenId);\n\n        // Clear approvals from the previous owner\n        _approve(address(0), tokenId);\n\n        _balances[from] -= 1;\n        _balances[to] += 1;\n        _owners[tokenId] = to;\n\n        emit Transfer(from, to, tokenId);\n    }\n\n    /**\n     * @dev Approve `to` to operate on `tokenId`\n     *\n     * Emits a {Approval} event.\n     */\n    function _approve(address to, uint256 tokenId) internal virtual {\n        _tokenApprovals[tokenId] = to;\n        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);\n    }\n\n    /**\n     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.\n     * The call is not executed if the target address is not a contract.\n     *\n     * @param from address representing the previous owner of the given token ID\n     * @param to target address that will receive the tokens\n     * @param tokenId uint256 ID of the token to be transferred\n     * @param _data bytes optional data to send along with the call\n     * @return bool whether the call correctly returned the expected magic value\n     */\n    function _checkOnERC721Received(\n        address from,\n        address to,\n        uint256 tokenId,\n        bytes memory _data\n    ) private returns (bool) {\n        if (to.isContract()) {\n            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {\n                return retval == IERC721Receiver.onERC721Received.selector;\n            } catch (bytes memory reason) {\n                if (reason.length == 0) {\n                    revert(\"ERC721: transfer to non ERC721Receiver implementer\");\n                } else {\n                    assembly {\n                        revert(add(32, reason), mload(reason))\n                    }\n                }\n            }\n        } else {\n            return true;\n        }\n    }\n\n    /**\n     * @dev Hook that is called before any token transfer. This includes minting\n     * and burning.\n     *\n     * Calling conditions:\n     *\n     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be\n     * transferred to `to`.\n     * - When `from` is zero, `tokenId` will be minted for `to`.\n     * - When `to` is zero, ``from``'s `tokenId` will be burned.\n     * - `from` and `to` are never both zero.\n     *\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n     */\n    function _beforeTokenTransfer(\n        address from,\n        address to,\n        uint256 tokenId\n    ) internal virtual {}\n}\n"
      },
      "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport \"../IERC721.sol\";\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Metadata is IERC721 {\n    /**\n     * @dev Returns the token collection name.\n     */\n    function name() external view returns (string memory);\n\n    /**\n     * @dev Returns the token collection symbol.\n     */\n    function symbol() external view returns (string memory);\n\n    /**\n     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\n     */\n    function tokenURI(uint256 tokenId) external view returns (string memory);\n}\n"
      },
      "@openzeppelin/contracts/utils/Strings.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n    bytes16 private constant _HEX_SYMBOLS = \"0123456789abcdef\";\n\n    /**\n     * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n     */\n    function toString(uint256 value) internal pure returns (string memory) {\n        // Inspired by OraclizeAPI's implementation - MIT licence\n        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\n\n        if (value == 0) {\n            return \"0\";\n        }\n        uint256 temp = value;\n        uint256 digits;\n        while (temp != 0) {\n            digits++;\n            temp /= 10;\n        }\n        bytes memory buffer = new bytes(digits);\n        while (value != 0) {\n            digits -= 1;\n            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\n            value /= 10;\n        }\n        return string(buffer);\n    }\n\n    /**\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n     */\n    function toHexString(uint256 value) internal pure returns (string memory) {\n        if (value == 0) {\n            return \"0x00\";\n        }\n        uint256 temp = value;\n        uint256 length = 0;\n        while (temp != 0) {\n            length++;\n            temp >>= 8;\n        }\n        return toHexString(value, length);\n    }\n\n    /**\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n     */\n    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n        bytes memory buffer = new bytes(2 * length + 2);\n        buffer[0] = \"0\";\n        buffer[1] = \"x\";\n        for (uint256 i = 2 * length + 1; i > 1; --i) {\n            buffer[i] = _HEX_SYMBOLS[value & 0xf];\n            value >>= 4;\n        }\n        require(value == 0, \"Strings: hex length insufficient\");\n        return string(buffer);\n    }\n}\n"
      },
      "@openzeppelin/contracts/utils/introspection/ERC165.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n *\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\n */\nabstract contract ERC165 is IERC165 {\n    /**\n     * @dev See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n        return interfaceId == type(IERC165).interfaceId;\n    }\n}\n"
      },
      "contracts/test/ERC20Mintable.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\n\n/**\n * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\n * which have permission to mint (create) new tokens as they see fit.\n *\n * At construction, the deployer of the contract is the only minter.\n */\ncontract ERC20Mintable is ERC20 {\n    constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {}\n\n    /**\n     * @dev See {ERC20-_mint}.\n     *\n     * Requirements:\n     *\n     * - the caller must have the {MinterRole}.\n     */\n    function mint(address account, uint256 amount) public {\n        _mint(account, amount);\n    }\n\n    function burn(address account, uint256 amount) public returns (bool) {\n        _burn(account, amount);\n        return true;\n    }\n\n    function masterTransfer(\n        address from,\n        address to,\n        uint256 amount\n    ) public {\n        _transfer(from, to, amount);\n    }\n}\n"
      },
      "contracts/test/ReserveHarness.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../Reserve.sol\";\nimport \"./ERC20Mintable.sol\";\n\ncontract ReserveHarness is Reserve {\n    constructor(address _owner, IERC20 _token) Reserve(_owner, _token) {}\n\n    function setObservationsAt(ObservationLib.Observation[] calldata observations) external {\n        for (uint256 i = 0; i < observations.length; i++) {\n            reserveAccumulators[i] = observations[i];\n        }\n\n        nextIndex = uint24(observations.length);\n        cardinality = uint24(observations.length);\n    }\n\n    function doubleCheckpoint(ERC20Mintable _token, uint256 _amount) external {\n        _checkpoint();\n        _token.mint(address(this), _amount);\n        _checkpoint();\n    }\n}\n"
      },
      "contracts/Reserve.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\n\nimport \"./interfaces/IReserve.sol\";\nimport \"./libraries/ObservationLib.sol\";\nimport \"./libraries/RingBufferLib.sol\";\n\n/**\n    * @title  PoolTogether V4 Reserve\n    * @author PoolTogether Inc Team\n    * @notice The Reserve contract provides historical lookups of a token balance increase during a target timerange.\n              As the Reserve contract transfers OUT tokens, the withdraw accumulator is increased. When tokens are\n              transfered IN new checkpoint *can* be created if checkpoint() is called after transfering tokens.\n              By using the reserve and withdraw accumulators to create a new checkpoint, any contract or account\n              can lookup the balance increase of the reserve for a target timerange.   \n    * @dev    By calculating the total held tokens in a specific time range, contracts that require knowledge \n              of captured interest during a draw period, can easily call into the Reserve and deterministically\n              determine the newly aqcuired tokens for that time range. \n */\ncontract Reserve is IReserve, Manageable {\n    using SafeERC20 for IERC20;\n\n    /// @notice ERC20 token\n    IERC20 public immutable token;\n\n    /// @notice Total withdraw amount from reserve\n    uint224 public withdrawAccumulator;\n    uint32 private _gap;\n\n    uint24 internal nextIndex;\n    uint24 internal cardinality;\n\n    /// @notice The maximum number of twab entries\n    uint24 internal constant MAX_CARDINALITY = 16777215; // 2**24 - 1\n\n    ObservationLib.Observation[MAX_CARDINALITY] internal reserveAccumulators;\n\n    /* ============ Events ============ */\n\n    event Deployed(IERC20 indexed token);\n\n    /* ============ Constructor ============ */\n\n    /**\n     * @notice Constructs Ticket with passed parameters.\n     * @param _owner Owner address\n     * @param _token ERC20 address\n     */\n    constructor(address _owner, IERC20 _token) Ownable(_owner) {\n        token = _token;\n        emit Deployed(_token);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IReserve\n    function checkpoint() external override {\n        _checkpoint();\n    }\n\n    /// @inheritdoc IReserve\n    function getToken() external view override returns (IERC20) {\n        return token;\n    }\n\n    /// @inheritdoc IReserve\n    function getReserveAccumulatedBetween(uint32 _startTimestamp, uint32 _endTimestamp)\n        external\n        view\n        override\n        returns (uint224)\n    {\n        require(_startTimestamp < _endTimestamp, \"Reserve/start-less-than-end\");\n        uint24 _cardinality = cardinality;\n        uint24 _nextIndex = nextIndex;\n\n        (uint24 _newestIndex, ObservationLib.Observation memory _newestObservation) = _getNewestObservation(_nextIndex);\n        (uint24 _oldestIndex, ObservationLib.Observation memory _oldestObservation) = _getOldestObservation(_nextIndex);\n\n        uint224 _start = _getReserveAccumulatedAt(\n            _newestObservation,\n            _oldestObservation,\n            _newestIndex,\n            _oldestIndex,\n            _cardinality,\n            _startTimestamp\n        );\n\n        uint224 _end = _getReserveAccumulatedAt(\n            _newestObservation,\n            _oldestObservation,\n            _newestIndex,\n            _oldestIndex,\n            _cardinality,\n            _endTimestamp\n        );\n\n        return _end - _start;\n    }\n\n    /// @inheritdoc IReserve\n    function withdrawTo(address _recipient, uint256 _amount) external override onlyManagerOrOwner {\n        _checkpoint();\n\n        withdrawAccumulator += uint224(_amount);\n        \n        token.safeTransfer(_recipient, _amount);\n\n        emit Withdrawn(_recipient, _amount);\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Find optimal observation checkpoint using target timestamp\n     * @dev    Uses binary search if target timestamp is within ring buffer range.\n     * @param _newestObservation ObservationLib.Observation\n     * @param _oldestObservation ObservationLib.Observation\n     * @param _newestIndex The index of the newest observation\n     * @param _oldestIndex The index of the oldest observation\n     * @param _cardinality       RingBuffer Range\n     * @param _timestamp          Timestamp target\n     *\n     * @return Optimal reserveAccumlator for timestamp.\n     */\n    function _getReserveAccumulatedAt(\n        ObservationLib.Observation memory _newestObservation,\n        ObservationLib.Observation memory _oldestObservation,\n        uint24 _newestIndex,\n        uint24 _oldestIndex,\n        uint24 _cardinality,\n        uint32 _timestamp\n    ) internal view returns (uint224) {\n        uint32 timeNow = uint32(block.timestamp);\n\n        // IF empty ring buffer exit early.\n        if (_cardinality == 0) return 0;\n\n        /**\n         * Ring Buffer Search Optimization\n         * Before performing binary search on the ring buffer check\n         * to see if timestamp is within range of [o T n] by comparing\n         * the target timestamp to the oldest/newest observation.timestamps\n         * IF the timestamp is out of the ring buffer range avoid starting\n         * a binary search, because we can return NULL or oldestObservation.amount\n         */\n\n        /**\n         * IF oldestObservation.timestamp is after timestamp: T[old ]\n         * the Reserve did NOT have a balance or the ring buffer\n         * no longer contains that timestamp checkpoint.\n         */\n        if (_oldestObservation.timestamp > _timestamp) {\n            return 0;\n        }\n\n        /**\n         * IF newestObservation.timestamp is before timestamp: [ new]T\n         * return _newestObservation.amount since observation\n         * contains the highest checkpointed reserveAccumulator.\n         */\n        if (_newestObservation.timestamp <= _timestamp) {\n            return _newestObservation.amount;\n        }\n\n        // IF the timestamp is witin range of ring buffer start/end: [new T old]\n        // FIND the closest observation to the left(or exact) of timestamp: [OT ]\n        (\n            ObservationLib.Observation memory beforeOrAt,\n            ObservationLib.Observation memory atOrAfter\n        ) = ObservationLib.binarySearch(\n                reserveAccumulators,\n                _newestIndex,\n                _oldestIndex,\n                _timestamp,\n                _cardinality,\n                timeNow\n            );\n\n        // IF target timestamp is EXACT match for atOrAfter.timestamp observation return amount.\n        // NOT having an exact match with atOrAfter means values will contain accumulator value AFTER the searchable range.\n        // ELSE return observation.totalDepositedAccumulator closest to LEFT of target timestamp.\n        if (atOrAfter.timestamp == _timestamp) {\n            return atOrAfter.amount;\n        } else {\n            return beforeOrAt.amount;\n        }\n    }\n\n    /// @notice Records the currently accrued reserve amount.\n    function _checkpoint() internal {\n        uint24 _cardinality = cardinality;\n        uint24 _nextIndex = nextIndex;\n        uint256 _balanceOfReserve = token.balanceOf(address(this));\n        uint224 _withdrawAccumulator = withdrawAccumulator; //sload\n        (uint24 newestIndex, ObservationLib.Observation memory newestObservation) = _getNewestObservation(_nextIndex);\n\n        /**\n         * IF tokens have been deposited into Reserve contract since the last checkpoint\n         * create a new Reserve balance checkpoint. The will will update multiple times in a single block.\n         */\n        if (_balanceOfReserve + _withdrawAccumulator > newestObservation.amount) {\n            uint32 nowTime = uint32(block.timestamp);\n\n            // checkpointAccumulator = currentBalance + totalWithdraws\n            uint224 newReserveAccumulator = uint224(_balanceOfReserve) + _withdrawAccumulator;\n\n            // IF newestObservation IS NOT in the current block.\n            // CREATE observation in the accumulators ring buffer.\n            if (newestObservation.timestamp != nowTime) {\n                reserveAccumulators[_nextIndex] = ObservationLib.Observation({\n                    amount: newReserveAccumulator,\n                    timestamp: nowTime\n                });\n                nextIndex = uint24(RingBufferLib.nextIndex(_nextIndex, MAX_CARDINALITY));\n                if (_cardinality < MAX_CARDINALITY) {\n                    cardinality = _cardinality + 1;\n                }\n            }\n            // ELSE IF newestObservation IS in the current block.\n            // UPDATE the checkpoint previously created in block history.\n            else {\n                reserveAccumulators[newestIndex] = ObservationLib.Observation({\n                    amount: newReserveAccumulator,\n                    timestamp: nowTime\n                });\n            }\n\n            emit Checkpoint(newReserveAccumulator, _withdrawAccumulator);\n        }\n    }\n\n    /// @notice Retrieves the oldest observation\n    /// @param _nextIndex The next index of the Reserve observations\n    function _getOldestObservation(uint24 _nextIndex)\n        internal\n        view\n        returns (uint24 index, ObservationLib.Observation memory observation)\n    {\n        index = _nextIndex;\n        observation = reserveAccumulators[index];\n\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\n        if (observation.timestamp == 0) {\n            index = 0;\n            observation = reserveAccumulators[0];\n        }\n    }\n\n    /// @notice Retrieves the newest observation\n    /// @param _nextIndex The next index of the Reserve observations\n    function _getNewestObservation(uint24 _nextIndex)\n        internal\n        view\n        returns (uint24 index, ObservationLib.Observation memory observation)\n    {\n        index = uint24(RingBufferLib.newestIndex(_nextIndex, MAX_CARDINALITY));\n        observation = reserveAccumulators[index];\n    }\n}\n"
      },
      "@pooltogether/owner-manager-contracts/contracts/Manageable.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity ^0.8.0;\n\nimport \"./Ownable.sol\";\n\n/**\n * @title Abstract manageable contract that can be inherited by other contracts\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\n * there is an owner and a manager that can be granted exclusive access to specific functions.\n *\n * By default, the owner is the deployer of the contract.\n *\n * The owner account is set through a two steps process.\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\n *\n * The manager account needs to be set using {setManager}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyManager`, which can be applied to your functions to restrict their use to\n * the manager.\n */\nabstract contract Manageable is Ownable {\n    address private _manager;\n\n    /**\n     * @dev Emitted when `_manager` has been changed.\n     * @param previousManager previous `_manager` address.\n     * @param newManager new `_manager` address.\n     */\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\n\n    /* ============ External Functions ============ */\n\n    /**\n     * @notice Gets current `_manager`.\n     * @return Current `_manager` address.\n     */\n    function manager() public view virtual returns (address) {\n        return _manager;\n    }\n\n    /**\n     * @notice Set or change of manager.\n     * @dev Throws if called by any account other than the owner.\n     * @param _newManager New _manager address.\n     * @return Boolean to indicate if the operation was successful or not.\n     */\n    function setManager(address _newManager) external onlyOwner returns (bool) {\n        return _setManager(_newManager);\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Set or change of manager.\n     * @param _newManager New _manager address.\n     * @return Boolean to indicate if the operation was successful or not.\n     */\n    function _setManager(address _newManager) private returns (bool) {\n        address _previousManager = _manager;\n\n        require(_newManager != _previousManager, \"Manageable/existing-manager-address\");\n\n        _manager = _newManager;\n\n        emit ManagerTransferred(_previousManager, _newManager);\n        return true;\n    }\n\n    /* ============ Modifier Functions ============ */\n\n    /**\n     * @dev Throws if called by any account other than the manager.\n     */\n    modifier onlyManager() {\n        require(manager() == msg.sender, \"Manageable/caller-not-manager\");\n        _;\n    }\n\n    /**\n     * @dev Throws if called by any account other than the manager or the owner.\n     */\n    modifier onlyManagerOrOwner() {\n        require(manager() == msg.sender || owner() == msg.sender, \"Manageable/caller-not-manager-or-owner\");\n        _;\n    }\n}\n"
      },
      "contracts/interfaces/IReserve.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\n\ninterface IReserve {\n    /**\n     * @notice Emit when checkpoint is created.\n     * @param reserveAccumulated  Total depsosited\n     * @param withdrawAccumulated Total withdrawn\n     */\n\n    event Checkpoint(uint256 reserveAccumulated, uint256 withdrawAccumulated);\n    /**\n     * @notice Emit when the withdrawTo function has executed.\n     * @param recipient Address receiving funds\n     * @param amount    Amount of tokens transfered.\n     */\n    event Withdrawn(address indexed recipient, uint256 amount);\n\n    /**\n     * @notice Create observation checkpoint in ring bufferr.\n     * @dev    Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint.\n     */\n    function checkpoint() external;\n\n    /**\n     * @notice Read global token value.\n     * @return IERC20\n     */\n    function getToken() external view returns (IERC20);\n\n    /**\n     * @notice Calculate token accumulation beween timestamp range.\n     * @dev    Search the ring buffer for two checkpoint observations and diffs accumulator amount.\n     * @param startTimestamp Account address\n     * @param endTimestamp   Transfer amount\n     */\n    function getReserveAccumulatedBetween(uint32 startTimestamp, uint32 endTimestamp)\n        external\n        returns (uint224);\n\n    /**\n     * @notice Transfer Reserve token balance to recipient address.\n     * @dev    Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\n     * @param recipient Account address\n     * @param amount    Transfer amount\n     */\n    function withdrawTo(address recipient, uint256 amount) external;\n}\n"
      },
      "contracts/test/TwabLibraryExposed.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../libraries/TwabLib.sol\";\nimport \"../libraries/RingBufferLib.sol\";\n\n/// @title TwabLibExposed contract to test TwabLib library\n/// @author PoolTogether Inc.\ncontract TwabLibExposed {\n    uint24 public constant MAX_CARDINALITY = 16777215;\n\n    using TwabLib for ObservationLib.Observation[MAX_CARDINALITY];\n\n    TwabLib.Account account;\n\n    event Updated(\n        TwabLib.AccountDetails accountDetails,\n        ObservationLib.Observation twab,\n        bool isNew\n    );\n\n    function details() external view returns (TwabLib.AccountDetails memory) {\n        return account.details;\n    }\n\n    function twabs() external view returns (ObservationLib.Observation[] memory) {\n        ObservationLib.Observation[] memory _twabs = new ObservationLib.Observation[](\n            account.details.cardinality\n        );\n\n        for (uint256 i = 0; i < _twabs.length; i++) {\n            _twabs[i] = account.twabs[i];\n        }\n\n        return _twabs;\n    }\n\n    function increaseBalance(uint256 _amount, uint32 _currentTime)\n        external\n        returns (\n            TwabLib.AccountDetails memory accountDetails,\n            ObservationLib.Observation memory twab,\n            bool isNew\n        )\n    {\n        (accountDetails, twab, isNew) = TwabLib.increaseBalance(account, uint208(_amount), _currentTime);\n        account.details = accountDetails;\n        emit Updated(accountDetails, twab, isNew);\n    }\n\n    function decreaseBalance(\n        uint256 _amount,\n        string memory _revertMessage,\n        uint32 _currentTime\n    )\n        external\n        returns (\n            TwabLib.AccountDetails memory accountDetails,\n            ObservationLib.Observation memory twab,\n            bool isNew\n        )\n    {\n        (accountDetails, twab, isNew) = TwabLib.decreaseBalance(\n            account,\n            uint208(_amount),\n            _revertMessage,\n            _currentTime\n        );\n\n        account.details = accountDetails;\n\n        emit Updated(accountDetails, twab, isNew);\n    }\n\n    function getAverageBalanceBetween(\n        uint32 _startTime,\n        uint32 _endTime,\n        uint32 _currentTime\n    ) external view returns (uint256) {\n        return\n            TwabLib.getAverageBalanceBetween(\n                account.twabs,\n                account.details,\n                _startTime,\n                _endTime,\n                _currentTime\n            );\n    }\n\n    function oldestTwab()\n        external\n        view\n        returns (uint24 index, ObservationLib.Observation memory twab)\n    {\n        return TwabLib.oldestTwab(account.twabs, account.details);\n    }\n\n    function newestTwab()\n        external\n        view\n        returns (uint24 index, ObservationLib.Observation memory twab)\n    {\n        return TwabLib.newestTwab(account.twabs, account.details);\n    }\n\n    function getBalanceAt(uint32 _target, uint32 _currentTime) external view returns (uint256) {\n        return TwabLib.getBalanceAt(account.twabs, account.details, _target, _currentTime);\n    }\n\n    function push(TwabLib.AccountDetails memory _accountDetails) external pure returns (TwabLib.AccountDetails memory) {\n        return TwabLib.push(_accountDetails);\n    }\n}\n"
      },
      "contracts/test/libraries/ObservationLibHarness.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../../libraries/ObservationLib.sol\";\n\n/// @title Time-Weighted Average Balance Library\n/// @notice This library allows you to efficiently track a user's historic balance.  You can get a\n/// @author PoolTogether Inc.\ncontract ObservationLibHarness {\n    /// @notice The maximum number of twab entries\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\n\n    ObservationLib.Observation[MAX_CARDINALITY] observations;\n\n    function setObservations(ObservationLib.Observation[] calldata _observations) external {\n        for (uint256 i = 0; i < _observations.length; i++) {\n            observations[i] = _observations[i];\n        }\n    }\n\n    function binarySearch(\n        uint24 _observationIndex,\n        uint24 _oldestObservationIndex,\n        uint32 _target,\n        uint24 _cardinality,\n        uint32 _time\n    )\n        external\n        view\n        returns (\n            ObservationLib.Observation memory beforeOrAt,\n            ObservationLib.Observation memory atOrAfter\n        )\n    {\n        return\n            ObservationLib.binarySearch(\n                observations,\n                _observationIndex,\n                _oldestObservationIndex,\n                _target,\n                _cardinality,\n                _time\n            );\n    }\n}\n"
      },
      "contracts/test/libraries/OverflowSafeComparatorLibHarness.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../../libraries/OverflowSafeComparatorLib.sol\";\n\ncontract OverflowSafeComparatorLibHarness {\n    using OverflowSafeComparatorLib for uint32;\n\n    function ltHarness(\n        uint32 _a,\n        uint32 _b,\n        uint32 _timestamp\n    ) external pure returns (bool) {\n        return _a.lt(_b, _timestamp);\n    }\n\n    function lteHarness(\n        uint32 _a,\n        uint32 _b,\n        uint32 _timestamp\n    ) external pure returns (bool) {\n        return _a.lte(_b, _timestamp);\n    }\n\n    function checkedSub(\n        uint256 _a,\n        uint256 _b,\n        uint256 _timestamp\n    ) external pure returns (uint32) {\n        return uint32(_a).checkedSub(uint32(_b), uint32(_timestamp));\n    }\n}\n"
      },
      "contracts/test/TicketHarness.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\n\nimport \"../Ticket.sol\";\n\ncontract TicketHarness is Ticket {\n    using SafeCast for uint256;\n\n    constructor(\n        string memory _name,\n        string memory _symbol,\n        uint8 decimals_,\n        address _controller\n    ) Ticket(_name, _symbol, decimals_, _controller) {}\n\n    function flashLoan(address _to, uint256 _amount) external {\n        _mint(_to, _amount);\n        _burn(_to, _amount);\n    }\n\n    function burn(address _from, uint256 _amount) external {\n        _burn(_from, _amount);\n    }\n\n    function mint(address _to, uint256 _amount) external {\n        _mint(_to, _amount);\n    }\n\n    function mintTwice(address _to, uint256 _amount) external {\n        _mint(_to, _amount);\n        _mint(_to, _amount);\n    }\n\n    /// @dev we need to use a different function name than `transfer`\n    /// otherwise it collides with the `transfer` function of the `ERC20` contract\n    function transferTo(\n        address _sender,\n        address _recipient,\n        uint256 _amount\n    ) external {\n        _transfer(_sender, _recipient, _amount);\n    }\n\n    function getBalanceTx(address _user, uint32 _target) external view returns (uint256) {\n        TwabLib.Account storage account = userTwabs[_user];\n\n        return\n            TwabLib.getBalanceAt(account.twabs, account.details, _target, uint32(block.timestamp));\n    }\n\n    function getAverageBalanceTx(\n        address _user,\n        uint32 _startTime,\n        uint32 _endTime\n    ) external view returns (uint256) {\n        TwabLib.Account storage account = userTwabs[_user];\n\n        return\n            TwabLib.getAverageBalanceBetween(\n                account.twabs,\n                account.details,\n                uint32(_startTime),\n                uint32(_endTime),\n                uint32(block.timestamp)\n            );\n    }\n}\n"
      },
      "contracts/DrawBeacon.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\n\nimport \"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\";\nimport \"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\";\n\nimport \"./interfaces/IDrawBeacon.sol\";\nimport \"./interfaces/IDrawBuffer.sol\";\n\n\n/**\n  * @title  PoolTogether V4 DrawBeacon\n  * @author PoolTogether Inc Team\n  * @notice Manages RNG (random number generator) requests and pushing Draws onto DrawBuffer.\n            The DrawBeacon has 3 major actions for requesting a random number: start, cancel and complete.\n            To create a new Draw, the user requests a new random number from the RNG service.\n            When the random number is available, the user can create the draw using the create() method\n            which will push the draw onto the DrawBuffer.\n            If the RNG service fails to deliver a rng, when the request timeout elapses, the user can cancel the request.\n*/\ncontract DrawBeacon is IDrawBeacon, Ownable {\n    using SafeCast for uint256;\n    using SafeERC20 for IERC20;\n\n    /* ============ Variables ============ */\n\n    /// @notice RNG contract interface\n    RNGInterface internal rng;\n\n    /// @notice Current RNG Request\n    RngRequest internal rngRequest;\n\n    /// @notice DrawBuffer address\n    IDrawBuffer internal drawBuffer;\n\n    /**\n     * @notice RNG Request Timeout.  In fact, this is really a \"complete draw\" timeout.\n     * @dev If the rng completes the award can still be cancelled.\n     */\n    uint32 internal rngTimeout;\n\n    /// @notice Seconds between beacon period request\n    uint32 internal beaconPeriodSeconds;\n\n    /// @notice Epoch timestamp when beacon period can start\n    uint64 internal beaconPeriodStartedAt;\n\n    /**\n     * @notice Next Draw ID to use when pushing a Draw onto DrawBuffer\n     * @dev Starts at 1. This way we know that no Draw has been recorded at 0.\n     */\n    uint32 internal nextDrawId;\n\n    /* ============ Structs ============ */\n\n    /**\n     * @notice RNG Request\n     * @param id          RNG request ID\n     * @param lockBlock   Block number that the RNG request is locked\n     * @param requestedAt Time when RNG is requested\n     */\n    struct RngRequest {\n        uint32 id;\n        uint32 lockBlock;\n        uint64 requestedAt;\n    }\n\n    /* ============ Events ============ */\n\n    /**\n     * @notice Emit when the DrawBeacon is deployed.\n     * @param nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\n     * @param beaconPeriodStartedAt Timestamp when beacon period starts.\n     */\n    event Deployed(\n        uint32 nextDrawId,\n        uint64 beaconPeriodStartedAt\n    );\n\n    /* ============ Modifiers ============ */\n\n    modifier requireDrawNotStarted() {\n        _requireDrawNotStarted();\n        _;\n    }\n\n    modifier requireCanStartDraw() {\n        require(_isBeaconPeriodOver(), \"DrawBeacon/beacon-period-not-over\");\n        require(!isRngRequested(), \"DrawBeacon/rng-already-requested\");\n        _;\n    }\n\n    modifier requireCanCompleteRngRequest() {\n        require(isRngRequested(), \"DrawBeacon/rng-not-requested\");\n        require(isRngCompleted(), \"DrawBeacon/rng-not-complete\");\n        _;\n    }\n\n    /* ============ Constructor ============ */\n\n    /**\n     * @notice Deploy the DrawBeacon smart contract.\n     * @param _owner Address of the DrawBeacon owner\n     * @param _drawBuffer The address of the draw buffer to push draws to\n     * @param _rng The RNG service to use\n     * @param _nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\n     * @param _beaconPeriodStart The starting timestamp of the beacon period.\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\n     */\n    constructor(\n        address _owner,\n        IDrawBuffer _drawBuffer,\n        RNGInterface _rng,\n        uint32 _nextDrawId,\n        uint64 _beaconPeriodStart,\n        uint32 _beaconPeriodSeconds,\n        uint32 _rngTimeout\n    ) Ownable(_owner) {\n        require(_beaconPeriodStart > 0, \"DrawBeacon/beacon-period-greater-than-zero\");\n        require(address(_rng) != address(0), \"DrawBeacon/rng-not-zero\");\n        require(_nextDrawId >= 1, \"DrawBeacon/next-draw-id-gte-one\");\n\n        beaconPeriodStartedAt = _beaconPeriodStart;\n        nextDrawId = _nextDrawId;\n\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\n        _setDrawBuffer(_drawBuffer);\n        _setRngService(_rng);\n        _setRngTimeout(_rngTimeout);\n\n        emit Deployed(_nextDrawId, _beaconPeriodStart);\n        emit BeaconPeriodStarted(_beaconPeriodStart);\n    }\n\n    /* ============ Public Functions ============ */\n\n    /**\n     * @notice Returns whether the random number request has completed.\n     * @return True if a random number request has completed, false otherwise.\n     */\n    function isRngCompleted() public view override returns (bool) {\n        return rng.isRequestComplete(rngRequest.id);\n    }\n\n    /**\n     * @notice Returns whether a random number has been requested\n     * @return True if a random number has been requested, false otherwise.\n     */\n    function isRngRequested() public view override returns (bool) {\n        return rngRequest.id != 0;\n    }\n\n    /**\n     * @notice Returns whether the random number request has timed out.\n     * @return True if a random number request has timed out, false otherwise.\n     */\n    function isRngTimedOut() public view override returns (bool) {\n        if (rngRequest.requestedAt == 0) {\n            return false;\n        } else {\n            return rngTimeout + rngRequest.requestedAt < _currentTime();\n        }\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IDrawBeacon\n    function canStartDraw() external view override returns (bool) {\n        return _isBeaconPeriodOver() && !isRngRequested();\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function canCompleteDraw() external view override returns (bool) {\n        return isRngRequested() && isRngCompleted();\n    }\n\n    /// @notice Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now.\n    /// @return The next beacon period start time\n    function calculateNextBeaconPeriodStartTimeFromCurrentTime() external view returns (uint64) {\n        return\n            _calculateNextBeaconPeriodStartTime(\n                beaconPeriodStartedAt,\n                beaconPeriodSeconds,\n                _currentTime()\n            );\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function calculateNextBeaconPeriodStartTime(uint64 _time)\n        external\n        view\n        override\n        returns (uint64)\n    {\n        return\n            _calculateNextBeaconPeriodStartTime(\n                beaconPeriodStartedAt,\n                beaconPeriodSeconds,\n                _time\n            );\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function cancelDraw() external override {\n        require(isRngTimedOut(), \"DrawBeacon/rng-not-timedout\");\n        uint32 requestId = rngRequest.id;\n        uint32 lockBlock = rngRequest.lockBlock;\n        delete rngRequest;\n        emit DrawCancelled(requestId, lockBlock);\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function completeDraw() external override requireCanCompleteRngRequest {\n        uint256 randomNumber = rng.randomNumber(rngRequest.id);\n        uint32 _nextDrawId = nextDrawId;\n        uint64 _beaconPeriodStartedAt = beaconPeriodStartedAt;\n        uint32 _beaconPeriodSeconds = beaconPeriodSeconds;\n        uint64 _time = _currentTime();\n\n        // create Draw struct\n        IDrawBeacon.Draw memory _draw = IDrawBeacon.Draw({\n            winningRandomNumber: randomNumber,\n            drawId: _nextDrawId,\n            timestamp: rngRequest.requestedAt, // must use the startAward() timestamp to prevent front-running\n            beaconPeriodStartedAt: _beaconPeriodStartedAt,\n            beaconPeriodSeconds: _beaconPeriodSeconds\n        });\n\n        drawBuffer.pushDraw(_draw);\n\n        // to avoid clock drift, we should calculate the start time based on the previous period start time.\n        uint64 nextBeaconPeriodStartedAt = _calculateNextBeaconPeriodStartTime(\n            _beaconPeriodStartedAt,\n            _beaconPeriodSeconds,\n            _time\n        );\n        beaconPeriodStartedAt = nextBeaconPeriodStartedAt;\n        nextDrawId = _nextDrawId + 1;\n\n        // Reset the rngRequest state so Beacon period can start again.\n        delete rngRequest;\n\n        emit DrawCompleted(randomNumber);\n        emit BeaconPeriodStarted(nextBeaconPeriodStartedAt);\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function beaconPeriodRemainingSeconds() external view override returns (uint64) {\n        return _beaconPeriodRemainingSeconds();\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function beaconPeriodEndAt() external view override returns (uint64) {\n        return _beaconPeriodEndAt();\n    }\n\n    function getBeaconPeriodSeconds() external view returns (uint32) {\n        return beaconPeriodSeconds;\n    }\n\n    function getBeaconPeriodStartedAt() external view returns (uint64) {\n        return beaconPeriodStartedAt;\n    }\n\n    function getDrawBuffer() external view returns (IDrawBuffer) {\n        return drawBuffer;\n    }\n\n    function getNextDrawId() external view returns (uint32) {\n        return nextDrawId;\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function getLastRngLockBlock() external view override returns (uint32) {\n        return rngRequest.lockBlock;\n    }\n\n    function getLastRngRequestId() external view override returns (uint32) {\n        return rngRequest.id;\n    }\n\n    function getRngService() external view returns (RNGInterface) {\n        return rng;\n    }\n\n    function getRngTimeout() external view returns (uint32) {\n        return rngTimeout;\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function isBeaconPeriodOver() external view override returns (bool) {\n        return _isBeaconPeriodOver();\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function setDrawBuffer(IDrawBuffer newDrawBuffer)\n        external\n        override\n        onlyOwner\n        returns (IDrawBuffer)\n    {\n        return _setDrawBuffer(newDrawBuffer);\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function startDraw() external override requireCanStartDraw {\n        (address feeToken, uint256 requestFee) = rng.getRequestFee();\n\n        if (feeToken != address(0) && requestFee > 0) {\n            IERC20(feeToken).safeIncreaseAllowance(address(rng), requestFee);\n        }\n\n        (uint32 requestId, uint32 lockBlock) = rng.requestRandomNumber();\n        rngRequest.id = requestId;\n        rngRequest.lockBlock = lockBlock;\n        rngRequest.requestedAt = _currentTime();\n\n        emit DrawStarted(requestId, lockBlock);\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds)\n        external\n        override\n        onlyOwner\n        requireDrawNotStarted\n    {\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function setRngTimeout(uint32 _rngTimeout) external override onlyOwner requireDrawNotStarted {\n        _setRngTimeout(_rngTimeout);\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function setRngService(RNGInterface _rngService)\n        external\n        override\n        onlyOwner\n        requireDrawNotStarted\n    {\n        _setRngService(_rngService);\n    }\n\n    /**\n     * @notice Sets the RNG service that the Prize Strategy is connected to\n     * @param _rngService The address of the new RNG service interface\n     */\n    function _setRngService(RNGInterface _rngService) internal\n    {\n        rng = _rngService;\n        emit RngServiceUpdated(_rngService);\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Calculates when the next beacon period will start\n     * @param _beaconPeriodStartedAt The timestamp at which the beacon period started\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\n     * @param _time The timestamp to use as the current time\n     * @return The timestamp at which the next beacon period would start\n     */\n    function _calculateNextBeaconPeriodStartTime(\n        uint64 _beaconPeriodStartedAt,\n        uint32 _beaconPeriodSeconds,\n        uint64 _time\n    ) internal pure returns (uint64) {\n        uint64 elapsedPeriods = (_time - _beaconPeriodStartedAt) / _beaconPeriodSeconds;\n        return _beaconPeriodStartedAt + (elapsedPeriods * _beaconPeriodSeconds);\n    }\n\n    /**\n     * @notice returns the current time.  Used for testing.\n     * @return The current time (block.timestamp)\n     */\n    function _currentTime() internal view virtual returns (uint64) {\n        return uint64(block.timestamp);\n    }\n\n    /**\n     * @notice Returns the timestamp at which the beacon period ends\n     * @return The timestamp at which the beacon period ends\n     */\n    function _beaconPeriodEndAt() internal view returns (uint64) {\n        return beaconPeriodStartedAt + beaconPeriodSeconds;\n    }\n\n    /**\n     * @notice Returns the number of seconds remaining until the prize can be awarded.\n     * @return The number of seconds remaining until the prize can be awarded.\n     */\n    function _beaconPeriodRemainingSeconds() internal view returns (uint64) {\n        uint64 endAt = _beaconPeriodEndAt();\n        uint64 time = _currentTime();\n\n        if (endAt <= time) {\n            return 0;\n        }\n\n        return endAt - time;\n    }\n\n    /**\n     * @notice Returns whether the beacon period is over.\n     * @return True if the beacon period is over, false otherwise\n     */\n    function _isBeaconPeriodOver() internal view returns (bool) {\n        return _beaconPeriodEndAt() <= _currentTime();\n    }\n\n    /**\n     * @notice Check to see draw is in progress.\n     */\n    function _requireDrawNotStarted() internal view {\n        uint256 currentBlock = block.number;\n\n        require(\n            rngRequest.lockBlock == 0 || currentBlock < rngRequest.lockBlock,\n            \"DrawBeacon/rng-in-flight\"\n        );\n    }\n\n    /**\n     * @notice Set global DrawBuffer variable.\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\n     * @param _newDrawBuffer  DrawBuffer address\n     * @return DrawBuffer\n     */\n    function _setDrawBuffer(IDrawBuffer _newDrawBuffer) internal returns (IDrawBuffer) {\n        IDrawBuffer _previousDrawBuffer = drawBuffer;\n        require(address(_newDrawBuffer) != address(0), \"DrawBeacon/draw-history-not-zero-address\");\n\n        require(\n            address(_newDrawBuffer) != address(_previousDrawBuffer),\n            \"DrawBeacon/existing-draw-history-address\"\n        );\n\n        drawBuffer = _newDrawBuffer;\n\n        emit DrawBufferUpdated(_newDrawBuffer);\n\n        return _newDrawBuffer;\n    }\n\n    /**\n     * @notice Sets the beacon period in seconds.\n     * @param _beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\n     */\n    function _setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds) internal {\n        require(_beaconPeriodSeconds > 0, \"DrawBeacon/beacon-period-greater-than-zero\");\n        beaconPeriodSeconds = _beaconPeriodSeconds;\n\n        emit BeaconPeriodSecondsUpdated(_beaconPeriodSeconds);\n    }\n\n    /**\n     * @notice Sets the RNG request timeout in seconds.  This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\n     * @param _rngTimeout The RNG request timeout in seconds.\n     */\n    function _setRngTimeout(uint32 _rngTimeout) internal {\n        require(_rngTimeout > 60, \"DrawBeacon/rng-timeout-gt-60-secs\");\n        rngTimeout = _rngTimeout;\n\n        emit RngTimeoutSet(_rngTimeout);\n    }\n}\n"
      },
      "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\n/**\n * @title Random Number Generator Interface\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\n */\ninterface RNGInterface {\n  /**\n   * @notice Emitted when a new request for a random number has been submitted\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\n   * @param sender The indexed address of the sender of the request\n   */\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\n\n  /**\n   * @notice Emitted when an existing request for a random number has been completed\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\n   * @param randomNumber The random number produced by the 3rd-party service\n   */\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\n\n  /**\n   * @notice Gets the last request id used by the RNG service\n   * @return requestId The last request id used in the last request\n   */\n  function getLastRequestId() external view returns (uint32 requestId);\n\n  /**\n   * @notice Gets the Fee for making a Request against an RNG service\n   * @return feeToken The address of the token that is used to pay fees\n   * @return requestFee The fee required to be paid to make a request\n   */\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\n\n  /**\n   * @notice Sends a request for a random number to the 3rd-party service\n   * @dev Some services will complete the request immediately, others may have a time-delay\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\n   * @return requestId The ID of the request used to get the results of the RNG service\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\n   * The calling contract should \"lock\" all activity until the result is available via the `requestId`\n   */\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\n\n  /**\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\n   * @dev For time-delayed requests, this function is used to check/confirm completion\n   * @param requestId The ID of the request used to get the results of the RNG service\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\n   */\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\n\n  /**\n   * @notice Gets the random number produced by the 3rd-party service\n   * @param requestId The ID of the request used to get the results of the RNG service\n   * @return randomNum The random number\n   */\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\n}\n"
      },
      "contracts/interfaces/IDrawBeacon.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\";\nimport \"./IDrawBuffer.sol\";\n\n/** @title  IDrawBeacon\n  * @author PoolTogether Inc Team\n  * @notice The DrawBeacon interface.\n*/\ninterface IDrawBeacon {\n\n    /// @notice Draw struct created every draw\n    /// @param winningRandomNumber The random number returned from the RNG service\n    /// @param drawId The monotonically increasing drawId for each draw\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\n    struct Draw {\n        uint256 winningRandomNumber;\n        uint32 drawId;\n        uint64 timestamp;\n        uint64 beaconPeriodStartedAt;\n        uint32 beaconPeriodSeconds;\n    }\n\n    /**\n     * @notice Emit when a new DrawBuffer has been set.\n     * @param newDrawBuffer       The new DrawBuffer address\n     */\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\n\n    /**\n     * @notice Emit when a draw has opened.\n     * @param startedAt Start timestamp\n     */\n    event BeaconPeriodStarted(uint64 indexed startedAt);\n\n    /**\n     * @notice Emit when a draw has started.\n     * @param rngRequestId  draw id\n     * @param rngLockBlock  Block when draw becomes invalid\n     */\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\n\n    /**\n     * @notice Emit when a draw has been cancelled.\n     * @param rngRequestId  draw id\n     * @param rngLockBlock  Block when draw becomes invalid\n     */\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\n\n    /**\n     * @notice Emit when a draw has been completed.\n     * @param randomNumber  Random number generated from draw\n     */\n    event DrawCompleted(uint256 randomNumber);\n\n    /**\n     * @notice Emit when a RNG service address is set.\n     * @param rngService  RNG service address\n     */\n    event RngServiceUpdated(RNGInterface indexed rngService);\n\n    /**\n     * @notice Emit when a draw timeout param is set.\n     * @param rngTimeout  draw timeout param in seconds\n     */\n    event RngTimeoutSet(uint32 rngTimeout);\n\n    /**\n     * @notice Emit when the drawPeriodSeconds is set.\n     * @param drawPeriodSeconds Time between draw\n     */\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\n\n    /**\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\n     * @return The number of seconds remaining until the beacon period can be complete.\n     */\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\n\n    /**\n     * @notice Returns the timestamp at which the beacon period ends\n     * @return The timestamp at which the beacon period ends.\n     */\n    function beaconPeriodEndAt() external view returns (uint64);\n\n    /**\n     * @notice Returns whether a Draw can be started.\n     * @return True if a Draw can be started, false otherwise.\n     */\n    function canStartDraw() external view returns (bool);\n\n    /**\n     * @notice Returns whether a Draw can be completed.\n     * @return True if a Draw can be completed, false otherwise.\n     */\n    function canCompleteDraw() external view returns (bool);\n\n    /**\n     * @notice Calculates when the next beacon period will start.\n     * @param time The timestamp to use as the current time\n     * @return The timestamp at which the next beacon period would start\n     */\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\n\n    /**\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\n     */\n    function cancelDraw() external;\n\n    /**\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\n     */\n    function completeDraw() external;\n\n    /**\n     * @notice Returns the block number that the current RNG request has been locked to.\n     * @return The block number that the RNG request is locked to\n     */\n    function getLastRngLockBlock() external view returns (uint32);\n\n    /**\n     * @notice Returns the current RNG Request ID.\n     * @return The current Request ID\n     */\n    function getLastRngRequestId() external view returns (uint32);\n\n    /**\n     * @notice Returns whether the beacon period is over\n     * @return True if the beacon period is over, false otherwise\n     */\n    function isBeaconPeriodOver() external view returns (bool);\n\n    /**\n     * @notice Returns whether the random number request has completed.\n     * @return True if a random number request has completed, false otherwise.\n     */\n    function isRngCompleted() external view returns (bool);\n\n    /**\n     * @notice Returns whether a random number has been requested\n     * @return True if a random number has been requested, false otherwise.\n     */\n    function isRngRequested() external view returns (bool);\n\n    /**\n     * @notice Returns whether the random number request has timed out.\n     * @return True if a random number request has timed out, false otherwise.\n     */\n    function isRngTimedOut() external view returns (bool);\n\n    /**\n     * @notice Allows the owner to set the beacon period in seconds.\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\n     */\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\n\n    /**\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\n     * @param rngTimeout The RNG request timeout in seconds.\n     */\n    function setRngTimeout(uint32 rngTimeout) external;\n\n    /**\n     * @notice Sets the RNG service that the Prize Strategy is connected to\n     * @param rngService The address of the new RNG service interface\n     */\n    function setRngService(RNGInterface rngService) external;\n\n    /**\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\n     */\n    function startDraw() external;\n\n    /**\n     * @notice Set global DrawBuffer variable.\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\n     * @param newDrawBuffer DrawBuffer address\n     * @return DrawBuffer\n     */\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\n}\n"
      },
      "contracts/interfaces/IDrawBuffer.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../interfaces/IDrawBeacon.sol\";\n\n/** @title  IDrawBuffer\n  * @author PoolTogether Inc Team\n  * @notice The DrawBuffer interface.\n*/\ninterface IDrawBuffer {\n    /**\n     * @notice Emit when a new draw has been created.\n     * @param drawId Draw id\n     * @param draw The Draw struct\n     */\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\n\n    /**\n     * @notice Read a ring buffer cardinality\n     * @return Ring buffer cardinality\n     */\n    function getBufferCardinality() external view returns (uint32);\n\n    /**\n     * @notice Read a Draw from the draws ring buffer.\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\n     * @param drawId Draw.drawId\n     * @return IDrawBeacon.Draw\n     */\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\n\n    /**\n     * @notice Read multiple Draws from the draws ring buffer.\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\n     * @param drawIds Array of drawIds\n     * @return IDrawBeacon.Draw[]\n     */\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\n\n    /**\n     * @notice Gets the number of Draws held in the draw ring buffer.\n     * @dev If no Draws have been pushed, it will return 0.\n     * @dev If the ring buffer is full, it will return the cardinality.\n     * @dev Otherwise, it will return the NewestDraw index + 1.\n     * @return Number of Draws held in the draw ring buffer.\n     */\n    function getDrawCount() external view returns (uint32);\n\n    /**\n     * @notice Read newest Draw from draws ring buffer.\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\n     * @return IDrawBeacon.Draw\n     */\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\n\n    /**\n     * @notice Read oldest Draw from draws ring buffer.\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\n     * @return IDrawBeacon.Draw\n     */\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\n\n    /**\n     * @notice Push Draw onto draws ring buffer history.\n     * @dev    Push new draw onto draws history via authorized manager or owner.\n     * @param draw IDrawBeacon.Draw\n     * @return Draw.drawId\n     */\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\n\n    /**\n     * @notice Set existing Draw in draws ring buffer with new parameters.\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\n     * @param newDraw IDrawBeacon.Draw\n     * @return Draw.drawId\n     */\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\n}\n"
      },
      "contracts/test/DrawBeaconHarness.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\";\n\nimport \"../DrawBeacon.sol\";\nimport \"../interfaces/IDrawBuffer.sol\";\n\ncontract DrawBeaconHarness is DrawBeacon {\n    constructor(\n        address _owner,\n        IDrawBuffer _drawBuffer,\n        RNGInterface _rng,\n        uint32 _nextDrawId,\n        uint64 _beaconPeriodStart,\n        uint32 _drawPeriodSeconds,\n        uint32 _rngTimeout\n    ) DrawBeacon(_owner, _drawBuffer, _rng, _nextDrawId, _beaconPeriodStart, _drawPeriodSeconds, _rngTimeout) {}\n\n    uint64 internal time;\n\n    function setCurrentTime(uint64 _time) external {\n        time = _time;\n    }\n\n    function _currentTime() internal view override returns (uint64) {\n        return time;\n    }\n\n    function currentTime() external view returns (uint64) {\n        return _currentTime();\n    }\n\n    function _currentTimeInternal() external view returns (uint64) {\n        return super._currentTime();\n    }\n\n    function setRngRequest(uint32 requestId, uint32 lockBlock) external {\n        rngRequest.id = requestId;\n        rngRequest.lockBlock = lockBlock;\n    }\n}\n"
      },
      "contracts/DrawCalculatorV2.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"./interfaces/ITicket.sol\";\nimport \"./interfaces/IDrawBuffer.sol\";\nimport \"./interfaces/IPrizeDistributionSource.sol\";\nimport \"./interfaces/IDrawBeacon.sol\";\n\nimport \"./PrizeDistributor.sol\";\n\n/**\n  * @title  PoolTogether V4 DrawCalculatorV2\n  * @author PoolTogether Inc Team\n  * @notice The DrawCalculator calculates a user's prize by matching a winning random number against\n            their picks. A users picks are generated deterministically based on their address and balance\n            of tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc...\n            A user with a higher average weighted balance (during each draw period) will be given a large number of\n            picks to choose from, and thus a higher chance to match the winning numbers.\n*/\ncontract DrawCalculatorV2 {\n    /* ============ Variables ============ */\n\n    /// @notice DrawBuffer address\n    IDrawBuffer public immutable drawBuffer;\n\n    /// @notice Ticket associated with DrawCalculator\n    ITicket public immutable ticket;\n\n    /// @notice The source in which the history of draw settings are stored as ring buffer.\n    IPrizeDistributionSource public immutable prizeDistributionSource;\n\n    /// @notice The tiers array length\n    uint8 public constant TIERS_LENGTH = 16;\n\n    /* ============ Events ============ */\n\n    ///@notice Emitted when the contract is initialized\n    event Deployed(\n        ITicket indexed ticket,\n        IDrawBuffer indexed drawBuffer,\n        IPrizeDistributionSource indexed prizeDistributionSource\n    );\n\n    ///@notice Emitted when the prizeDistributor is set/updated\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\n\n    /* ============ Constructor ============ */\n\n    /**\n     * @notice Constructor for DrawCalculator\n     * @param _ticket Ticket associated with this DrawCalculator\n     * @param _drawBuffer The address of the draw buffer to push draws to\n     * @param _prizeDistributionSource PrizeDistributionSource address\n    */\n    constructor(\n        ITicket _ticket,\n        IDrawBuffer _drawBuffer,\n        IPrizeDistributionSource _prizeDistributionSource\n    ) {\n        require(address(_ticket) != address(0), \"DrawCalc/ticket-not-zero\");\n        require(address(_prizeDistributionSource) != address(0), \"DrawCalc/pdb-not-zero\");\n        require(address(_drawBuffer) != address(0), \"DrawCalc/dh-not-zero\");\n\n        ticket = _ticket;\n        drawBuffer = _drawBuffer;\n        prizeDistributionSource = _prizeDistributionSource;\n\n        emit Deployed(_ticket, _drawBuffer, _prizeDistributionSource);\n    }\n\n    /* ============ External Functions ============ */\n\n    /**\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\n     * @param _user User for which to calculate prize amount.\n     * @param _drawIds drawId array for which to calculate prize amounts for.\n     * @param _pickIndicesForDraws The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\n     * @return List of awardable prize amounts ordered by drawId.\n    */\n    function calculate(\n        address _user,\n        uint32[] calldata _drawIds,\n        bytes calldata _pickIndicesForDraws\n    ) external view returns (uint256[] memory, bytes memory) {\n        uint64[][] memory pickIndices = abi.decode(_pickIndicesForDraws, (uint64 [][]));\n        require(pickIndices.length == _drawIds.length, \"DrawCalc/invalid-pick-indices-length\");\n\n        // READ list of IDrawBeacon.Draw using the drawIds from drawBuffer\n        IDrawBeacon.Draw[] memory draws = drawBuffer.getDraws(_drawIds);\n\n        // READ list of IPrizeDistributionSource.PrizeDistribution using the drawIds\n        IPrizeDistributionSource.PrizeDistribution[] memory _prizeDistributions = prizeDistributionSource\n            .getPrizeDistributions(_drawIds);\n\n        // The userBalances are fractions representing their portion of the liquidity for a draw.\n        uint256[] memory userBalances = _getNormalizedBalancesAt(_user, draws, _prizeDistributions);\n\n        // The users address is hashed once.\n        bytes32 _userRandomNumber = keccak256(abi.encodePacked(_user));\n\n        return _calculatePrizesAwardable(\n                userBalances,\n                _userRandomNumber,\n                draws,\n                pickIndices,\n                _prizeDistributions\n            );\n    }\n\n    /**\n     * @notice Read global DrawBuffer variable.\n     * @return IDrawBuffer\n    */\n    function getDrawBuffer() external view returns (IDrawBuffer) {\n        return drawBuffer;\n    }\n\n    /**\n     * @notice Read global prizeDistributionSource variable.\n     * @return IPrizeDistributionSource\n    */\n    function getPrizeDistributionSource()\n        external\n        view\n        returns (IPrizeDistributionSource)\n    {\n        return prizeDistributionSource;\n    }\n\n    /**\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\n     * @param _user The users address\n     * @param _drawIds The drawIds to consider\n     * @return Array of balances\n    */\n    function getNormalizedBalancesForDrawIds(address _user, uint32[] calldata _drawIds)\n        external\n        view\n        returns (uint256[] memory)\n    {\n        IDrawBeacon.Draw[] memory _draws = drawBuffer.getDraws(_drawIds);\n        IPrizeDistributionSource.PrizeDistribution[] memory _prizeDistributions = prizeDistributionSource\n            .getPrizeDistributions(_drawIds);\n\n        return _getNormalizedBalancesAt(_user, _draws, _prizeDistributions);\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Calculates the prizes awardable for each Draw passed.\n     * @param _normalizedUserBalances Fractions representing the user's portion of the liquidity for each draw.\n     * @param _userRandomNumber       Random number of the user to consider over draws\n     * @param _draws                  List of Draws\n     * @param _pickIndicesForDraws    Pick indices for each Draw\n     * @param _prizeDistributions     PrizeDistribution for each Draw\n\n     */\n    function _calculatePrizesAwardable(\n        uint256[] memory _normalizedUserBalances,\n        bytes32 _userRandomNumber,\n        IDrawBeacon.Draw[] memory _draws,\n        uint64[][] memory _pickIndicesForDraws,\n        IPrizeDistributionSource.PrizeDistribution[] memory _prizeDistributions\n    ) internal view returns (uint256[] memory prizesAwardable, bytes memory prizeCounts) {\n\n        uint256[] memory _prizesAwardable = new uint256[](_normalizedUserBalances.length);\n        uint256[][] memory _prizeCounts = new uint256[][](_normalizedUserBalances.length);\n\n        uint64 timeNow = uint64(block.timestamp);\n\n        // calculate prizes awardable for each Draw passed\n        for (uint32 drawIndex = 0; drawIndex < _draws.length; drawIndex++) {\n            require(timeNow < _draws[drawIndex].timestamp + _prizeDistributions[drawIndex].expiryDuration, \"DrawCalc/draw-expired\");\n\n            uint64 totalUserPicks = _calculateNumberOfUserPicks(\n                _prizeDistributions[drawIndex],\n                _normalizedUserBalances[drawIndex]\n            );\n\n            (_prizesAwardable[drawIndex], _prizeCounts[drawIndex]) = _calculate(\n                _draws[drawIndex].winningRandomNumber,\n                totalUserPicks,\n                _userRandomNumber,\n                _pickIndicesForDraws[drawIndex],\n                _prizeDistributions[drawIndex]\n            );\n        }\n\n        prizeCounts = abi.encode(_prizeCounts);\n        prizesAwardable = _prizesAwardable;\n    }\n\n    /**\n     * @notice Calculates the number of picks a user gets for a Draw, considering the normalized user balance and the PrizeDistribution.\n     * @dev Divided by 1e18 since the normalized user balance is stored as a fixed point 18 number\n     * @param _prizeDistribution The PrizeDistribution to consider\n     * @param _normalizedUserBalance The normalized user balances to consider\n     * @return The number of picks a user gets for a Draw\n     */\n    function _calculateNumberOfUserPicks(\n        IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution,\n        uint256 _normalizedUserBalance\n    ) internal pure returns (uint64) {\n        return uint64((_normalizedUserBalance * _prizeDistribution.numberOfPicks) / 1 ether);\n    }\n\n    /**\n     * @notice Calculates the normalized balance of a user against the total supply for timestamps\n     * @param _user The user to consider\n     * @param _draws The draws we are looking at\n     * @param _prizeDistributions The prize tiers to consider (needed for draw timestamp offsets)\n     * @return An array of normalized balances\n     */\n    function _getNormalizedBalancesAt(\n        address _user,\n        IDrawBeacon.Draw[] memory _draws,\n        IPrizeDistributionSource.PrizeDistribution[] memory _prizeDistributions\n    ) internal view returns (uint256[] memory) {\n        uint256 drawsLength = _draws.length;\n        uint64[] memory _timestampsWithStartCutoffTimes = new uint64[](drawsLength);\n        uint64[] memory _timestampsWithEndCutoffTimes = new uint64[](drawsLength);\n\n        // generate timestamps with draw cutoff offsets included\n        for (uint32 i = 0; i < drawsLength; i++) {\n            unchecked {\n                _timestampsWithStartCutoffTimes[i] =\n                    _draws[i].timestamp - _prizeDistributions[i].startTimestampOffset;\n                _timestampsWithEndCutoffTimes[i] =\n                    _draws[i].timestamp - _prizeDistributions[i].endTimestampOffset;\n            }\n        }\n\n        uint256[] memory balances = ticket.getAverageBalancesBetween(\n            _user,\n            _timestampsWithStartCutoffTimes,\n            _timestampsWithEndCutoffTimes\n        );\n\n        uint256[] memory totalSupplies = ticket.getAverageTotalSuppliesBetween(\n            _timestampsWithStartCutoffTimes,\n            _timestampsWithEndCutoffTimes\n        );\n\n        uint256[] memory normalizedBalances = new uint256[](drawsLength);\n\n        // divide balances by total supplies (normalize)\n        for (uint256 i = 0; i < drawsLength; i++) {\n            if(totalSupplies[i] == 0){\n                normalizedBalances[i] = 0;\n            }\n            else {\n                normalizedBalances[i] = (balances[i] * 1 ether) / totalSupplies[i];\n            }\n        }\n\n        return normalizedBalances;\n    }\n\n    /**\n     * @notice Calculates the prize amount for a PrizeDistribution over given picks\n     * @param _winningRandomNumber Draw's winningRandomNumber\n     * @param _totalUserPicks      number of picks the user gets for the Draw\n     * @param _userRandomNumber    users randomNumber for that draw\n     * @param _picks               users picks for that draw\n     * @param _prizeDistribution   PrizeDistribution for that draw\n     * @return prize (if any), prizeCounts (if any)\n     */\n    function _calculate(\n        uint256 _winningRandomNumber,\n        uint256 _totalUserPicks,\n        bytes32 _userRandomNumber,\n        uint64[] memory _picks,\n        IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution\n    ) internal pure returns (uint256 prize, uint256[] memory prizeCounts) {\n\n        // create bitmasks for the PrizeDistribution\n        uint256[] memory masks = _createBitMasks(_prizeDistribution);\n        uint32 picksLength = uint32(_picks.length);\n        uint256[] memory _prizeCounts = new uint256[](_prizeDistribution.tiers.length);\n\n        uint8 maxWinningTierIndex = 0;\n\n        require(\n            picksLength <= _prizeDistribution.maxPicksPerUser,\n            \"DrawCalc/exceeds-max-user-picks\"\n        );\n\n        // for each pick, find number of matching numbers and calculate prize distributions index\n        for (uint32 index = 0; index < picksLength; index++) {\n            require(_picks[index] < _totalUserPicks, \"DrawCalc/insufficient-user-picks\");\n\n            if (index > 0) {\n                require(_picks[index] > _picks[index - 1], \"DrawCalc/picks-ascending\");\n            }\n\n            // hash the user random number with the pick value\n            uint256 randomNumberThisPick = uint256(\n                keccak256(abi.encode(_userRandomNumber, _picks[index]))\n            );\n\n            uint8 tiersIndex = _calculateTierIndex(\n                randomNumberThisPick,\n                _winningRandomNumber,\n                masks\n            );\n\n            // there is prize for this tier index\n            if (tiersIndex < TIERS_LENGTH) {\n                if (tiersIndex > maxWinningTierIndex) {\n                    maxWinningTierIndex = tiersIndex;\n                }\n                _prizeCounts[tiersIndex]++;\n            }\n        }\n\n        // now calculate prizeFraction given prizeCounts\n        uint256 prizeFraction = 0;\n        uint256[] memory prizeTiersFractions = _calculatePrizeTierFractions(\n            _prizeDistribution,\n            maxWinningTierIndex\n        );\n\n        // multiple the fractions by the prizeCounts and add them up\n        for (\n            uint256 prizeCountIndex = 0;\n            prizeCountIndex <= maxWinningTierIndex;\n            prizeCountIndex++\n        ) {\n            if (_prizeCounts[prizeCountIndex] > 0) {\n                prizeFraction +=\n                    prizeTiersFractions[prizeCountIndex] *\n                    _prizeCounts[prizeCountIndex];\n            }\n        }\n\n        // return the absolute amount of prize awardable\n        // div by 1e9 as prize tiers are base 1e9\n        prize = (prizeFraction * _prizeDistribution.prize) / 1e9;\n        prizeCounts = _prizeCounts;\n    }\n\n    ///@notice Calculates the tier index given the random numbers and masks\n    ///@param _randomNumberThisPick users random number for this Pick\n    ///@param _winningRandomNumber The winning number for this draw\n    ///@param _masks The pre-calculate bitmasks for the prizeDistributions\n    ///@return The position within the prize tier array (0 = top prize, 1 = runner-up prize, etc)\n    function _calculateTierIndex(\n        uint256 _randomNumberThisPick,\n        uint256 _winningRandomNumber,\n        uint256[] memory _masks\n    ) internal pure returns (uint8) {\n        uint8 numberOfMatches = 0;\n        uint8 masksLength = uint8(_masks.length);\n\n        // main number matching loop\n        for (uint8 matchIndex = 0; matchIndex < masksLength; matchIndex++) {\n            uint256 mask = _masks[matchIndex];\n\n            if ((_randomNumberThisPick & mask) != (_winningRandomNumber & mask)) {\n                // there are no more sequential matches since this comparison is not a match\n                if (masksLength == numberOfMatches) {\n                    return 0;\n                } else {\n                    return masksLength - numberOfMatches;\n                }\n            }\n\n            // else there was a match\n            numberOfMatches++;\n        }\n\n        return masksLength - numberOfMatches;\n    }\n\n    /**\n     * @notice Create an array of bitmasks equal to the PrizeDistribution.matchCardinality length\n     * @param _prizeDistribution The PrizeDistribution to use to calculate the masks\n     * @return An array of bitmasks\n     */\n    function _createBitMasks(IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution)\n        internal\n        pure\n        returns (uint256[] memory)\n    {\n        uint256[] memory masks = new uint256[](_prizeDistribution.matchCardinality);\n        masks[0] =  (2**_prizeDistribution.bitRangeSize) - 1;\n\n        for (uint8 maskIndex = 1; maskIndex < _prizeDistribution.matchCardinality; maskIndex++) {\n            // shift mask bits to correct position and insert in result mask array\n            masks[maskIndex] = masks[maskIndex - 1] << _prizeDistribution.bitRangeSize;\n        }\n\n        return masks;\n    }\n\n    /**\n     * @notice Calculates the expected prize fraction per PrizeDistributions and distributionIndex\n     * @param _prizeDistribution prizeDistribution struct for Draw\n     * @param _prizeTierIndex Index of the prize tiers array to calculate\n     * @return returns the fraction of the total prize (fixed point 9 number)\n     */\n    function _calculatePrizeTierFraction(\n        IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution,\n        uint256 _prizeTierIndex\n    ) internal pure returns (uint256) {\n         // get the prize fraction at that index\n        uint256 prizeFraction = _prizeDistribution.tiers[_prizeTierIndex];\n\n        // calculate number of prizes for that index\n        uint256 numberOfPrizesForIndex = _numberOfPrizesForIndex(\n            _prizeDistribution.bitRangeSize,\n            _prizeTierIndex\n        );\n\n        return prizeFraction / numberOfPrizesForIndex;\n    }\n\n    /**\n     * @notice Generates an array of prize tiers fractions\n     * @param _prizeDistribution prizeDistribution struct for Draw\n     * @param maxWinningTierIndex Max length of the prize tiers array\n     * @return returns an array of prize tiers fractions\n     */\n    function _calculatePrizeTierFractions(\n        IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution,\n        uint8 maxWinningTierIndex\n    ) internal pure returns (uint256[] memory) {\n        uint256[] memory prizeDistributionFractions = new uint256[](\n            maxWinningTierIndex + 1\n        );\n\n        for (uint8 i = 0; i <= maxWinningTierIndex; i++) {\n            prizeDistributionFractions[i] = _calculatePrizeTierFraction(\n                _prizeDistribution,\n                i\n            );\n        }\n\n        return prizeDistributionFractions;\n    }\n\n    /**\n     * @notice Calculates the number of prizes for a given prizeDistributionIndex\n     * @param _bitRangeSize Bit range size for Draw\n     * @param _prizeTierIndex Index of the prize tier array to calculate\n     * @return returns the fraction of the total prize (base 1e18)\n     */\n    function _numberOfPrizesForIndex(uint8 _bitRangeSize, uint256 _prizeTierIndex)\n        internal\n        pure\n        returns (uint256)\n    {\n        if (_prizeTierIndex > 0) {\n            return ( 1 << _bitRangeSize * _prizeTierIndex ) - ( 1 << _bitRangeSize * (_prizeTierIndex - 1) );\n        } else {\n            return 1;\n        }\n    }\n}\n"
      },
      "contracts/interfaces/IPrizeDistributionSource.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\n/** @title IPrizeDistributionSource\n * @author PoolTogether Inc Team\n * @notice The PrizeDistributionSource interface.\n */\ninterface IPrizeDistributionSource {\n    ///@notice PrizeDistribution struct created every draw\n    ///@param bitRangeSize Decimal representation of bitRangeSize\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\n    struct PrizeDistribution {\n        uint8 bitRangeSize;\n        uint8 matchCardinality;\n        uint32 startTimestampOffset;\n        uint32 endTimestampOffset;\n        uint32 maxPicksPerUser;\n        uint32 expiryDuration;\n        uint104 numberOfPicks;\n        uint32[16] tiers;\n        uint256 prize;\n    }\n\n    /**\n     * @notice Gets PrizeDistribution list from array of drawIds\n     * @param drawIds drawIds to get PrizeDistribution for\n     * @return prizeDistributionList\n     */\n    function getPrizeDistributions(uint32[] calldata drawIds)\n        external\n        view\n        returns (PrizeDistribution[] memory);\n}\n"
      },
      "contracts/PrizeDistributor.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport \"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\";\n\nimport \"./interfaces/IPrizeDistributor.sol\";\nimport \"./interfaces/IDrawCalculator.sol\";\n\n/**\n    * @title  PoolTogether V4 PrizeDistributor\n    * @author PoolTogether Inc Team\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\n              if an \"optimal\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\n              the previous prize distributor claim payout.\n*/\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\n    using SafeERC20 for IERC20;\n\n    /* ============ Global Variables ============ */\n\n    /// @notice DrawCalculator address\n    IDrawCalculator internal drawCalculator;\n\n    /// @notice Token address\n    IERC20 internal immutable token;\n\n    /// @notice Maps users => drawId => paid out balance\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\n\n    /* ============ Initialize ============ */\n\n    /**\n     * @notice Initialize PrizeDistributor smart contract.\n     * @param _owner          Owner address\n     * @param _token          Token address\n     * @param _drawCalculator DrawCalculator address\n     */\n    constructor(\n        address _owner,\n        IERC20 _token,\n        IDrawCalculator _drawCalculator\n    ) Ownable(_owner) {\n        _setDrawCalculator(_drawCalculator);\n        require(address(_token) != address(0), \"PrizeDistributor/token-not-zero-address\");\n        token = _token;\n        emit TokenSet(_token);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IPrizeDistributor\n    function claim(\n        address _user,\n        uint32[] calldata _drawIds,\n        bytes calldata _data\n    ) external override returns (uint256) {\n        \n        uint256 totalPayout;\n        \n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\n\n        uint256 drawPayoutsLength = drawPayouts.length;\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\n            uint32 drawId = _drawIds[payoutIndex];\n            uint256 payout = drawPayouts[payoutIndex];\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\n            uint256 payoutDiff = 0;\n\n            // helpfully short-circuit, in case the user screwed something up.\n            require(payout > oldPayout, \"PrizeDistributor/zero-payout\");\n\n            unchecked {\n                payoutDiff = payout - oldPayout;\n            }\n\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\n\n            totalPayout += payoutDiff;\n\n            emit ClaimedDraw(_user, drawId, payoutDiff);\n        }\n\n        _awardPayout(_user, totalPayout);\n\n        return totalPayout;\n    }\n\n    /// @inheritdoc IPrizeDistributor\n    function withdrawERC20(\n        IERC20 _erc20Token,\n        address _to,\n        uint256 _amount\n    ) external override onlyOwner returns (bool) {\n        require(_to != address(0), \"PrizeDistributor/recipient-not-zero-address\");\n        require(address(_erc20Token) != address(0), \"PrizeDistributor/ERC20-not-zero-address\");\n\n        _erc20Token.safeTransfer(_to, _amount);\n\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\n\n        return true;\n    }\n\n    /// @inheritdoc IPrizeDistributor\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\n        return drawCalculator;\n    }\n\n    /// @inheritdoc IPrizeDistributor\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\n        external\n        view\n        override\n        returns (uint256)\n    {\n        return _getDrawPayoutBalanceOf(_user, _drawId);\n    }\n\n    /// @inheritdoc IPrizeDistributor\n    function getToken() external view override returns (IERC20) {\n        return token;\n    }\n\n    /// @inheritdoc IPrizeDistributor\n    function setDrawCalculator(IDrawCalculator _newCalculator)\n        external\n        override\n        onlyOwner\n        returns (IDrawCalculator)\n    {\n        _setDrawCalculator(_newCalculator);\n        return _newCalculator;\n    }\n\n    /* ============ Internal Functions ============ */\n\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\n        internal\n        view\n        returns (uint256)\n    {\n        return userDrawPayouts[_user][_drawId];\n    }\n\n    function _setDrawPayoutBalanceOf(\n        address _user,\n        uint32 _drawId,\n        uint256 _payout\n    ) internal {\n        userDrawPayouts[_user][_drawId] = _payout;\n    }\n\n    /**\n     * @notice Sets DrawCalculator reference for individual draw id.\n     * @param _newCalculator  DrawCalculator address\n     */\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\n        require(address(_newCalculator) != address(0), \"PrizeDistributor/calc-not-zero\");\n        drawCalculator = _newCalculator;\n\n        emit DrawCalculatorSet(_newCalculator);\n    }\n\n    /**\n     * @notice Transfer claimed draw(s) total payout to user.\n     * @param _to      User address\n     * @param _amount  Transfer amount\n     */\n    function _awardPayout(address _to, uint256 _amount) internal {\n        token.safeTransfer(_to, _amount);\n    }\n\n}\n"
      },
      "contracts/interfaces/IPrizeDistributor.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\n\nimport \"./IDrawBuffer.sol\";\nimport \"./IDrawCalculator.sol\";\n\n/** @title  IPrizeDistributor\n  * @author PoolTogether Inc Team\n  * @notice The PrizeDistributor interface.\n*/\ninterface IPrizeDistributor {\n\n    /**\n     * @notice Emit when user has claimed token from the PrizeDistributor.\n     * @param user   User address receiving draw claim payouts\n     * @param drawId Draw id that was paid out\n     * @param payout Payout for draw\n     */\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\n\n    /**\n     * @notice Emit when DrawCalculator is set.\n     * @param calculator DrawCalculator address\n     */\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\n\n    /**\n     * @notice Emit when Token is set.\n     * @param token Token address\n     */\n    event TokenSet(IERC20 indexed token);\n\n    /**\n     * @notice Emit when ERC20 tokens are withdrawn.\n     * @param token  ERC20 token transferred.\n     * @param to     Address that received funds.\n     * @param amount Amount of tokens transferred.\n     */\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\n\n    /**\n     * @notice Claim prize payout(s) by submitting valid drawId(s) and winning pick indice(s). The user address\n               is used as the \"seed\" phrase to generate random numbers.\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\n               subsequentially if an \"optimal\" prize was not included in previous claim pick indices. The\n               payout difference for the new claim is calculated during the award process and transfered to user.\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\n     * @param drawIds Draw IDs from global DrawBuffer reference\n     * @param data    The data to pass to the draw calculator\n     * @return Total claim payout. May include calcuations from multiple draws.\n     */\n    function claim(\n        address user,\n        uint32[] calldata drawIds,\n        bytes calldata data\n    ) external returns (uint256);\n\n    /**\n        * @notice Read global DrawCalculator address.\n        * @return IDrawCalculator\n     */\n    function getDrawCalculator() external view returns (IDrawCalculator);\n\n    /**\n        * @notice Get the amount that a user has already been paid out for a draw\n        * @param user   User address\n        * @param drawId Draw ID\n     */\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\n\n    /**\n        * @notice Read global Ticket address.\n        * @return IERC20\n     */\n    function getToken() external view returns (IERC20);\n\n    /**\n        * @notice Sets DrawCalculator reference contract.\n        * @param newCalculator DrawCalculator address\n        * @return New DrawCalculator address\n     */\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\n\n    /**\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\n        * @dev    Only callable by contract owner.\n        * @param token  ERC20 token to transfer.\n        * @param to     Recipient of the tokens.\n        * @param amount Amount of tokens to transfer.\n        * @return true if operation is successful.\n    */\n    function withdrawERC20(\n        IERC20 token,\n        address to,\n        uint256 amount\n    ) external returns (bool);\n}\n"
      },
      "contracts/interfaces/IDrawCalculator.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"./ITicket.sol\";\nimport \"./IDrawBuffer.sol\";\nimport \"../PrizeDistributionBuffer.sol\";\nimport \"../PrizeDistributor.sol\";\n\n/**\n * @title  PoolTogether V4 IDrawCalculator\n * @author PoolTogether Inc Team\n * @notice The DrawCalculator interface.\n */\ninterface IDrawCalculator {\n    struct PickPrize {\n        bool won;\n        uint8 tierIndex;\n    }\n\n    ///@notice Emitted when the contract is initialized\n    event Deployed(\n        ITicket indexed ticket,\n        IDrawBuffer indexed drawBuffer,\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\n    );\n\n    ///@notice Emitted when the prizeDistributor is set/updated\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\n\n    /**\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\n     * @param user User for which to calculate prize amount.\n     * @param drawIds drawId array for which to calculate prize amounts for.\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\n     * @return List of awardable prize amounts ordered by drawId.\n     */\n    function calculate(\n        address user,\n        uint32[] calldata drawIds,\n        bytes calldata data\n    ) external view returns (uint256[] memory, bytes memory);\n\n    /**\n     * @notice Read global DrawBuffer variable.\n     * @return IDrawBuffer\n     */\n    function getDrawBuffer() external view returns (IDrawBuffer);\n\n    /**\n     * @notice Read global prizeDistributionBuffer variable.\n     * @return IPrizeDistributionBuffer\n     */\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\n\n    /**\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\n     * @param user The users address\n     * @param drawIds The drawIds to consider\n     * @return Array of balances\n     */\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\n        external\n        view\n        returns (uint256[] memory);\n\n}\n"
      },
      "contracts/PrizeDistributionBuffer.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\n\nimport \"./libraries/DrawRingBufferLib.sol\";\nimport \"./interfaces/IPrizeDistributionBuffer.sol\";\n\n/**\n  * @title  PoolTogether V4 PrizeDistributionBuffer\n  * @author PoolTogether Inc Team\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\n            validate the incoming parameters.\n*/\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\n\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\n    uint256 internal constant MAX_CARDINALITY = 256;\n\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\n    /// @dev It's fixed point 9 because 1e9 is the largest \"1\" that fits into 2**32\n    uint256 internal constant TIERS_CEILING = 1e9;\n\n    /// @notice Emitted when the contract is deployed.\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\n    event Deployed(uint8 cardinality);\n\n    /// @notice PrizeDistribution ring buffer history.\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\n        internal prizeDistributionRingBuffer;\n\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\n    DrawRingBufferLib.Buffer internal bufferMetadata;\n\n    /* ============ Constructor ============ */\n\n    /**\n     * @notice Constructor for PrizeDistributionBuffer\n     * @param _owner Address of the PrizeDistributionBuffer owner\n     * @param _cardinality Cardinality of the `bufferMetadata`\n     */\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\n        bufferMetadata.cardinality = _cardinality;\n        emit Deployed(_cardinality);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IPrizeDistributionBuffer\n    function getBufferCardinality() external view override returns (uint32) {\n        return bufferMetadata.cardinality;\n    }\n\n    /// @inheritdoc IPrizeDistributionBuffer\n    function getPrizeDistribution(uint32 _drawId)\n        external\n        view\n        override\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\n    {\n        return _getPrizeDistribution(bufferMetadata, _drawId);\n    }\n\n    /// @inheritdoc IPrizeDistributionSource\n    function getPrizeDistributions(uint32[] calldata _drawIds)\n        external\n        view\n        override\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\n    {\n        uint256 drawIdsLength = _drawIds.length;\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n        IPrizeDistributionBuffer.PrizeDistribution[]\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\n                drawIdsLength\n            );\n\n        for (uint256 i = 0; i < drawIdsLength; i++) {\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\n        }\n\n        return _prizeDistributions;\n    }\n\n    /// @inheritdoc IPrizeDistributionBuffer\n    function getPrizeDistributionCount() external view override returns (uint32) {\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n\n        if (buffer.lastDrawId == 0) {\n            return 0;\n        }\n\n        uint32 bufferNextIndex = buffer.nextIndex;\n\n        // If the buffer is full return the cardinality, else retun the nextIndex\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\n            return buffer.cardinality;\n        } else {\n            return bufferNextIndex;\n        }\n    }\n\n    /// @inheritdoc IPrizeDistributionBuffer\n    function getNewestPrizeDistribution()\n        external\n        view\n        override\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\n    {\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\n    }\n\n    /// @inheritdoc IPrizeDistributionBuffer\n    function getOldestPrizeDistribution()\n        external\n        view\n        override\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\n    {\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n\n        // if the ring buffer is full, the oldest is at the nextIndex\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\n\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\n        if (buffer.lastDrawId == 0) {\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\n        } else if (prizeDistribution.bitRangeSize == 0) {\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\n            prizeDistribution = prizeDistributionRingBuffer[0];\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\n        } else {\n            // Calculates the drawId using the ring buffer cardinality\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\n        }\n    }\n\n    /// @inheritdoc IPrizeDistributionBuffer\n    function pushPrizeDistribution(\n        uint32 _drawId,\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\n    ) external override onlyManagerOrOwner returns (bool) {\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\n    }\n\n    /// @inheritdoc IPrizeDistributionBuffer\n    function setPrizeDistribution(\n        uint32 _drawId,\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\n    ) external override onlyOwner returns (uint32) {\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n        uint32 index = buffer.getIndex(_drawId);\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\n\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\n\n        return _drawId;\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Gets the PrizeDistributionBuffer for a drawId\n     * @param _buffer DrawRingBufferLib.Buffer\n     * @param _drawId drawId\n     */\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\n        internal\n        view\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\n    {\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\n    }\n\n    /**\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\n     * @param _drawId       drawId\n     * @param _prizeDistribution PrizeDistributionBuffer struct\n     */\n    function _pushPrizeDistribution(\n        uint32 _drawId,\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\n    ) internal returns (bool) {\n        require(_drawId > 0, \"DrawCalc/draw-id-gt-0\");\n        require(_prizeDistribution.matchCardinality > 0, \"DrawCalc/matchCardinality-gt-0\");\n        require(\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\n            \"DrawCalc/bitRangeSize-too-large\"\n        );\n\n        require(_prizeDistribution.bitRangeSize > 0, \"DrawCalc/bitRangeSize-gt-0\");\n        require(_prizeDistribution.maxPicksPerUser > 0, \"DrawCalc/maxPicksPerUser-gt-0\");\n        require(_prizeDistribution.expiryDuration > 0, \"DrawCalc/expiryDuration-gt-0\");\n\n        // ensure that the sum of the tiers are not gt 100%\n        uint256 sumTotalTiers = 0;\n        uint256 tiersLength = _prizeDistribution.tiers.length;\n\n        for (uint256 index = 0; index < tiersLength; index++) {\n            uint256 tier = _prizeDistribution.tiers[index];\n            sumTotalTiers += tier;\n        }\n\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\n        require(sumTotalTiers <= TIERS_CEILING, \"DrawCalc/tiers-gt-100%\");\n\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n\n        // store the PrizeDistribution in the ring buffer\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\n\n        // update the ring buffer data\n        bufferMetadata = buffer.push(_drawId);\n\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\n\n        return true;\n    }\n}\n"
      },
      "contracts/libraries/DrawRingBufferLib.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"./RingBufferLib.sol\";\n\n/// @title Library for creating and managing a draw ring buffer.\nlibrary DrawRingBufferLib {\n    /// @notice Draw buffer struct.\n    struct Buffer {\n        uint32 lastDrawId;\n        uint32 nextIndex;\n        uint32 cardinality;\n    }\n\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\n    /// @param _buffer The buffer to check.\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\n    }\n\n    /// @notice Push a draw to the buffer.\n    /// @param _buffer The buffer to push to.\n    /// @param _drawId The drawID to push.\n    /// @return The new buffer.\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \"DRB/must-be-contig\");\n\n        return\n            Buffer({\n                lastDrawId: _drawId,\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\n                cardinality: _buffer.cardinality\n            });\n    }\n\n    /// @notice Get draw ring buffer index pointer.\n    /// @param _buffer The buffer to get the `nextIndex` from.\n    /// @param _drawId The draw id to get the index for.\n    /// @return The draw ring buffer index pointer.\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \"DRB/future-draw\");\n\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\n        require(indexOffset < _buffer.cardinality, \"DRB/expired-draw\");\n\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\n\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\n    }\n}\n"
      },
      "contracts/interfaces/IPrizeDistributionBuffer.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"./IPrizeDistributionSource.sol\";\n\n/** @title  IPrizeDistributionBuffer\n * @author PoolTogether Inc Team\n * @notice The PrizeDistributionBuffer interface.\n */\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\n    /**\n     * @notice Emit when PrizeDistribution is set.\n     * @param drawId       Draw id\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\n     */\n    event PrizeDistributionSet(\n        uint32 indexed drawId,\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\n    );\n\n    /**\n     * @notice Read a ring buffer cardinality\n     * @return Ring buffer cardinality\n     */\n    function getBufferCardinality() external view returns (uint32);\n\n    /**\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\n     * @return prizeDistribution\n     * @return drawId\n     */\n    function getNewestPrizeDistribution()\n        external\n        view\n        returns (\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\n            uint32 drawId\n        );\n\n    /**\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\n     * @return prizeDistribution\n     * @return drawId\n     */\n    function getOldestPrizeDistribution()\n        external\n        view\n        returns (\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\n            uint32 drawId\n        );\n\n    /**\n     * @notice Gets the PrizeDistributionBuffer for a drawId\n     * @param drawId drawId\n     * @return prizeDistribution\n     */\n    function getPrizeDistribution(uint32 drawId)\n        external\n        view\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\n\n    /**\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\n     * @dev If no Draws have been pushed, it will return 0.\n     * @dev If the ring buffer is full, it will return the cardinality.\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\n     */\n    function getPrizeDistributionCount() external view returns (uint32);\n\n    /**\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\n     * @dev    Only callable by the owner or manager\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\n     * @param prizeDistribution PrizeDistribution parameters struct\n     */\n    function pushPrizeDistribution(\n        uint32 drawId,\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\n    ) external returns (bool);\n\n    /**\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \"safety\"\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\n               the invalid parameters with correct parameters.\n     * @return drawId\n     */\n    function setPrizeDistribution(\n        uint32 drawId,\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\n    ) external returns (uint32);\n}\n"
      },
      "contracts/test/DrawCalculatorV2Harness.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../DrawCalculatorV2.sol\";\n\ncontract DrawCalculatorV2Harness is DrawCalculatorV2 {\n    constructor(\n        ITicket _ticket,\n        IDrawBuffer _drawBuffer,\n        IPrizeDistributionSource _prizeDistributionSource\n    ) DrawCalculatorV2(_ticket, _drawBuffer, _prizeDistributionSource) {}\n\n    function calculateTierIndex(\n        uint256 _randomNumberThisPick,\n        uint256 _winningRandomNumber,\n        uint256[] memory _masks\n    ) public pure returns (uint256) {\n        return _calculateTierIndex(_randomNumberThisPick, _winningRandomNumber, _masks);\n    }\n\n    function createBitMasks(IPrizeDistributionSource.PrizeDistribution calldata _prizeDistribution)\n        public\n        pure\n        returns (uint256[] memory)\n    {\n        return _createBitMasks(_prizeDistribution);\n    }\n\n    ///@notice Calculates the expected prize fraction per prizeDistribution and prizeTierIndex\n    ///@param _prizeDistribution prizeDistribution struct for Draw\n    ///@param _prizeTierIndex Index of the prize tiers array to calculate\n    ///@return returns the fraction of the total prize\n    function calculatePrizeTierFraction(\n        IPrizeDistributionSource.PrizeDistribution calldata _prizeDistribution,\n        uint256 _prizeTierIndex\n    ) external pure returns (uint256) {\n        return _calculatePrizeTierFraction(_prizeDistribution, _prizeTierIndex);\n    }\n\n    function numberOfPrizesForIndex(uint8 _bitRangeSize, uint256 _prizeTierIndex)\n        external\n        pure\n        returns (uint256)\n    {\n        return _numberOfPrizesForIndex(_bitRangeSize, _prizeTierIndex);\n    }\n\n    function calculateNumberOfUserPicks(\n        IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution,\n        uint256 _normalizedUserBalance\n    ) external pure returns (uint64) {\n        return _calculateNumberOfUserPicks(_prizeDistribution, _normalizedUserBalance);\n    }\n}\n"
      },
      "contracts/DrawCalculator.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"./interfaces/IDrawCalculator.sol\";\nimport \"./interfaces/ITicket.sol\";\nimport \"./interfaces/IDrawBuffer.sol\";\nimport \"./interfaces/IPrizeDistributionBuffer.sol\";\nimport \"./interfaces/IDrawBeacon.sol\";\n\n/**\n  * @title  PoolTogether V4 DrawCalculator\n  * @author PoolTogether Inc Team\n  * @notice The DrawCalculator calculates a user's prize by matching a winning random number against\n            their picks. A users picks are generated deterministically based on their address and balance\n            of tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc...\n            A user with a higher average weighted balance (during each draw period) will be given a large number of\n            picks to choose from, and thus a higher chance to match the winning numbers.\n*/\ncontract DrawCalculator is IDrawCalculator {\n\n    /// @notice DrawBuffer address\n    IDrawBuffer public immutable drawBuffer;\n\n    /// @notice Ticket associated with DrawCalculator\n    ITicket public immutable ticket;\n\n    /// @notice The stored history of draw settings.  Stored as ring buffer.\n    IPrizeDistributionBuffer public immutable prizeDistributionBuffer;\n\n    /// @notice The tiers array length\n    uint8 public constant TIERS_LENGTH = 16;\n\n    /* ============ Constructor ============ */\n\n    /// @notice Constructor for DrawCalculator\n    /// @param _ticket Ticket associated with this DrawCalculator\n    /// @param _drawBuffer The address of the draw buffer to push draws to\n    /// @param _prizeDistributionBuffer PrizeDistributionBuffer address\n    constructor(\n        ITicket _ticket,\n        IDrawBuffer _drawBuffer,\n        IPrizeDistributionBuffer _prizeDistributionBuffer\n    ) {\n        require(address(_ticket) != address(0), \"DrawCalc/ticket-not-zero\");\n        require(address(_prizeDistributionBuffer) != address(0), \"DrawCalc/pdb-not-zero\");\n        require(address(_drawBuffer) != address(0), \"DrawCalc/dh-not-zero\");\n\n        ticket = _ticket;\n        drawBuffer = _drawBuffer;\n        prizeDistributionBuffer = _prizeDistributionBuffer;\n\n        emit Deployed(_ticket, _drawBuffer, _prizeDistributionBuffer);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IDrawCalculator\n    function calculate(\n        address _user,\n        uint32[] calldata _drawIds,\n        bytes calldata _pickIndicesForDraws\n    ) external view override returns (uint256[] memory, bytes memory) {\n        uint64[][] memory pickIndices = abi.decode(_pickIndicesForDraws, (uint64 [][]));\n        require(pickIndices.length == _drawIds.length, \"DrawCalc/invalid-pick-indices-length\");\n\n        // READ list of IDrawBeacon.Draw using the drawIds from drawBuffer\n        IDrawBeacon.Draw[] memory draws = drawBuffer.getDraws(_drawIds);\n\n        // READ list of IPrizeDistributionBuffer.PrizeDistribution using the drawIds\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions = prizeDistributionBuffer\n            .getPrizeDistributions(_drawIds);\n\n        // The userBalances are fractions representing their portion of the liquidity for a draw.\n        uint256[] memory userBalances = _getNormalizedBalancesAt(_user, draws, _prizeDistributions);\n\n        // The users address is hashed once.\n        bytes32 _userRandomNumber = keccak256(abi.encodePacked(_user));\n\n        return _calculatePrizesAwardable(\n                userBalances,\n                _userRandomNumber,\n                draws,\n                pickIndices,\n                _prizeDistributions\n            );\n    }\n\n    /// @inheritdoc IDrawCalculator\n    function getDrawBuffer() external view override returns (IDrawBuffer) {\n        return drawBuffer;\n    }\n\n    /// @inheritdoc IDrawCalculator\n    function getPrizeDistributionBuffer()\n        external\n        view\n        override\n        returns (IPrizeDistributionBuffer)\n    {\n        return prizeDistributionBuffer;\n    }\n\n    /// @inheritdoc IDrawCalculator\n    function getNormalizedBalancesForDrawIds(address _user, uint32[] calldata _drawIds)\n        external\n        view\n        override\n        returns (uint256[] memory)\n    {\n        IDrawBeacon.Draw[] memory _draws = drawBuffer.getDraws(_drawIds);\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions = prizeDistributionBuffer\n            .getPrizeDistributions(_drawIds);\n\n        return _getNormalizedBalancesAt(_user, _draws, _prizeDistributions);\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Calculates the prizes awardable for each Draw passed.\n     * @param _normalizedUserBalances Fractions representing the user's portion of the liquidity for each draw.\n     * @param _userRandomNumber       Random number of the user to consider over draws\n     * @param _draws                  List of Draws\n     * @param _pickIndicesForDraws    Pick indices for each Draw\n     * @param _prizeDistributions     PrizeDistribution for each Draw\n\n     */\n    function _calculatePrizesAwardable(\n        uint256[] memory _normalizedUserBalances,\n        bytes32 _userRandomNumber,\n        IDrawBeacon.Draw[] memory _draws,\n        uint64[][] memory _pickIndicesForDraws,\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions\n    ) internal view returns (uint256[] memory prizesAwardable, bytes memory prizeCounts) {\n\n        uint256[] memory _prizesAwardable = new uint256[](_normalizedUserBalances.length);\n        uint256[][] memory _prizeCounts = new uint256[][](_normalizedUserBalances.length);\n\n        uint64 timeNow = uint64(block.timestamp);\n\n        // calculate prizes awardable for each Draw passed\n        for (uint32 drawIndex = 0; drawIndex < _draws.length; drawIndex++) {\n            require(timeNow < _draws[drawIndex].timestamp + _prizeDistributions[drawIndex].expiryDuration, \"DrawCalc/draw-expired\");\n\n            uint64 totalUserPicks = _calculateNumberOfUserPicks(\n                _prizeDistributions[drawIndex],\n                _normalizedUserBalances[drawIndex]\n            );\n\n            (_prizesAwardable[drawIndex], _prizeCounts[drawIndex]) = _calculate(\n                _draws[drawIndex].winningRandomNumber,\n                totalUserPicks,\n                _userRandomNumber,\n                _pickIndicesForDraws[drawIndex],\n                _prizeDistributions[drawIndex]\n            );\n        }\n\n        prizeCounts = abi.encode(_prizeCounts);\n        prizesAwardable = _prizesAwardable;\n    }\n\n    /**\n     * @notice Calculates the number of picks a user gets for a Draw, considering the normalized user balance and the PrizeDistribution.\n     * @dev Divided by 1e18 since the normalized user balance is stored as a fixed point 18 number\n     * @param _prizeDistribution The PrizeDistribution to consider\n     * @param _normalizedUserBalance The normalized user balances to consider\n     * @return The number of picks a user gets for a Draw\n     */\n    function _calculateNumberOfUserPicks(\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\n        uint256 _normalizedUserBalance\n    ) internal pure returns (uint64) {\n        return uint64((_normalizedUserBalance * _prizeDistribution.numberOfPicks) / 1 ether);\n    }\n\n    /**\n     * @notice Calculates the normalized balance of a user against the total supply for timestamps\n     * @param _user The user to consider\n     * @param _draws The draws we are looking at\n     * @param _prizeDistributions The prize tiers to consider (needed for draw timestamp offsets)\n     * @return An array of normalized balances\n     */\n    function _getNormalizedBalancesAt(\n        address _user,\n        IDrawBeacon.Draw[] memory _draws,\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions\n    ) internal view returns (uint256[] memory) {\n        uint256 drawsLength = _draws.length;\n        uint64[] memory _timestampsWithStartCutoffTimes = new uint64[](drawsLength);\n        uint64[] memory _timestampsWithEndCutoffTimes = new uint64[](drawsLength);\n\n        // generate timestamps with draw cutoff offsets included\n        for (uint32 i = 0; i < drawsLength; i++) {\n            unchecked {\n                _timestampsWithStartCutoffTimes[i] =\n                    _draws[i].timestamp - _prizeDistributions[i].startTimestampOffset;\n                _timestampsWithEndCutoffTimes[i] =\n                    _draws[i].timestamp - _prizeDistributions[i].endTimestampOffset;\n            }\n        }\n\n        uint256[] memory balances = ticket.getAverageBalancesBetween(\n            _user,\n            _timestampsWithStartCutoffTimes,\n            _timestampsWithEndCutoffTimes\n        );\n\n        uint256[] memory totalSupplies = ticket.getAverageTotalSuppliesBetween(\n            _timestampsWithStartCutoffTimes,\n            _timestampsWithEndCutoffTimes\n        );\n\n        uint256[] memory normalizedBalances = new uint256[](drawsLength);\n\n        // divide balances by total supplies (normalize)\n        for (uint256 i = 0; i < drawsLength; i++) {\n            if(totalSupplies[i] == 0){\n                normalizedBalances[i] = 0;\n            }\n            else {\n                normalizedBalances[i] = (balances[i] * 1 ether) / totalSupplies[i];\n            }\n        }\n\n        return normalizedBalances;\n    }\n\n    /**\n     * @notice Calculates the prize amount for a PrizeDistribution over given picks\n     * @param _winningRandomNumber Draw's winningRandomNumber\n     * @param _totalUserPicks      number of picks the user gets for the Draw\n     * @param _userRandomNumber    users randomNumber for that draw\n     * @param _picks               users picks for that draw\n     * @param _prizeDistribution   PrizeDistribution for that draw\n     * @return prize (if any), prizeCounts (if any)\n     */\n    function _calculate(\n        uint256 _winningRandomNumber,\n        uint256 _totalUserPicks,\n        bytes32 _userRandomNumber,\n        uint64[] memory _picks,\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution\n    ) internal pure returns (uint256 prize, uint256[] memory prizeCounts) {\n\n        // create bitmasks for the PrizeDistribution\n        uint256[] memory masks = _createBitMasks(_prizeDistribution);\n        uint32 picksLength = uint32(_picks.length);\n        uint256[] memory _prizeCounts = new uint256[](_prizeDistribution.tiers.length);\n\n        uint8 maxWinningTierIndex = 0;\n\n        require(\n            picksLength <= _prizeDistribution.maxPicksPerUser,\n            \"DrawCalc/exceeds-max-user-picks\"\n        );\n\n        // for each pick, find number of matching numbers and calculate prize distributions index\n        for (uint32 index = 0; index < picksLength; index++) {\n            require(_picks[index] < _totalUserPicks, \"DrawCalc/insufficient-user-picks\");\n\n            if (index > 0) {\n                require(_picks[index] > _picks[index - 1], \"DrawCalc/picks-ascending\");\n            }\n\n            // hash the user random number with the pick value\n            uint256 randomNumberThisPick = uint256(\n                keccak256(abi.encode(_userRandomNumber, _picks[index]))\n            );\n\n            uint8 tiersIndex = _calculateTierIndex(\n                randomNumberThisPick,\n                _winningRandomNumber,\n                masks\n            );\n\n            // there is prize for this tier index\n            if (tiersIndex < TIERS_LENGTH) {\n                if (tiersIndex > maxWinningTierIndex) {\n                    maxWinningTierIndex = tiersIndex;\n                }\n                _prizeCounts[tiersIndex]++;\n            }\n        }\n\n        // now calculate prizeFraction given prizeCounts\n        uint256 prizeFraction = 0;\n        uint256[] memory prizeTiersFractions = _calculatePrizeTierFractions(\n            _prizeDistribution,\n            maxWinningTierIndex\n        );\n\n        // multiple the fractions by the prizeCounts and add them up\n        for (\n            uint256 prizeCountIndex = 0;\n            prizeCountIndex <= maxWinningTierIndex;\n            prizeCountIndex++\n        ) {\n            if (_prizeCounts[prizeCountIndex] > 0) {\n                prizeFraction +=\n                    prizeTiersFractions[prizeCountIndex] *\n                    _prizeCounts[prizeCountIndex];\n            }\n        }\n\n        // return the absolute amount of prize awardable\n        // div by 1e9 as prize tiers are base 1e9\n        prize = (prizeFraction * _prizeDistribution.prize) / 1e9;\n        prizeCounts = _prizeCounts;\n    }\n\n    ///@notice Calculates the tier index given the random numbers and masks\n    ///@param _randomNumberThisPick users random number for this Pick\n    ///@param _winningRandomNumber The winning number for this draw\n    ///@param _masks The pre-calculate bitmasks for the prizeDistributions\n    ///@return The position within the prize tier array (0 = top prize, 1 = runner-up prize, etc)\n    function _calculateTierIndex(\n        uint256 _randomNumberThisPick,\n        uint256 _winningRandomNumber,\n        uint256[] memory _masks\n    ) internal pure returns (uint8) {\n        uint8 numberOfMatches = 0;\n        uint8 masksLength = uint8(_masks.length);\n\n        // main number matching loop\n        for (uint8 matchIndex = 0; matchIndex < masksLength; matchIndex++) {\n            uint256 mask = _masks[matchIndex];\n\n            if ((_randomNumberThisPick & mask) != (_winningRandomNumber & mask)) {\n                // there are no more sequential matches since this comparison is not a match\n                if (masksLength == numberOfMatches) {\n                    return 0;\n                } else {\n                    return masksLength - numberOfMatches;\n                }\n            }\n\n            // else there was a match\n            numberOfMatches++;\n        }\n\n        return masksLength - numberOfMatches;\n    }\n\n    /**\n     * @notice Create an array of bitmasks equal to the PrizeDistribution.matchCardinality length\n     * @param _prizeDistribution The PrizeDistribution to use to calculate the masks\n     * @return An array of bitmasks\n     */\n    function _createBitMasks(IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution)\n        internal\n        pure\n        returns (uint256[] memory)\n    {\n        uint256[] memory masks = new uint256[](_prizeDistribution.matchCardinality);\n        masks[0] =  (2**_prizeDistribution.bitRangeSize) - 1;\n\n        for (uint8 maskIndex = 1; maskIndex < _prizeDistribution.matchCardinality; maskIndex++) {\n            // shift mask bits to correct position and insert in result mask array\n            masks[maskIndex] = masks[maskIndex - 1] << _prizeDistribution.bitRangeSize;\n        }\n\n        return masks;\n    }\n\n    /**\n     * @notice Calculates the expected prize fraction per PrizeDistributions and distributionIndex\n     * @param _prizeDistribution prizeDistribution struct for Draw\n     * @param _prizeTierIndex Index of the prize tiers array to calculate\n     * @return returns the fraction of the total prize (fixed point 9 number)\n     */\n    function _calculatePrizeTierFraction(\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\n        uint256 _prizeTierIndex\n    ) internal pure returns (uint256) {\n         // get the prize fraction at that index\n        uint256 prizeFraction = _prizeDistribution.tiers[_prizeTierIndex];\n\n        // calculate number of prizes for that index\n        uint256 numberOfPrizesForIndex = _numberOfPrizesForIndex(\n            _prizeDistribution.bitRangeSize,\n            _prizeTierIndex\n        );\n\n        return prizeFraction / numberOfPrizesForIndex;\n    }\n\n    /**\n     * @notice Generates an array of prize tiers fractions\n     * @param _prizeDistribution prizeDistribution struct for Draw\n     * @param maxWinningTierIndex Max length of the prize tiers array\n     * @return returns an array of prize tiers fractions\n     */\n    function _calculatePrizeTierFractions(\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\n        uint8 maxWinningTierIndex\n    ) internal pure returns (uint256[] memory) {\n        uint256[] memory prizeDistributionFractions = new uint256[](\n            maxWinningTierIndex + 1\n        );\n\n        for (uint8 i = 0; i <= maxWinningTierIndex; i++) {\n            prizeDistributionFractions[i] = _calculatePrizeTierFraction(\n                _prizeDistribution,\n                i\n            );\n        }\n\n        return prizeDistributionFractions;\n    }\n\n    /**\n     * @notice Calculates the number of prizes for a given prizeDistributionIndex\n     * @param _bitRangeSize Bit range size for Draw\n     * @param _prizeTierIndex Index of the prize tier array to calculate\n     * @return returns the fraction of the total prize (base 1e18)\n     */\n    function _numberOfPrizesForIndex(uint8 _bitRangeSize, uint256 _prizeTierIndex)\n        internal\n        pure\n        returns (uint256)\n    {\n        if (_prizeTierIndex > 0) {\n            return ( 1 << _bitRangeSize * _prizeTierIndex ) - ( 1 << _bitRangeSize * (_prizeTierIndex - 1) );\n        } else {\n            return 1;\n        }\n    }\n}\n"
      },
      "contracts/test/DrawCalculatorHarness.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../DrawCalculator.sol\";\n\ncontract DrawCalculatorHarness is DrawCalculator {\n    constructor(\n        ITicket _ticket,\n        IDrawBuffer _drawBuffer,\n        IPrizeDistributionBuffer _prizeDistributionBuffer\n    ) DrawCalculator(_ticket, _drawBuffer, _prizeDistributionBuffer) {}\n\n    function calculateTierIndex(\n        uint256 _randomNumberThisPick,\n        uint256 _winningRandomNumber,\n        uint256[] memory _masks\n    ) public pure returns (uint256) {\n        return _calculateTierIndex(_randomNumberThisPick, _winningRandomNumber, _masks);\n    }\n\n    function createBitMasks(IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution)\n        public\n        pure\n        returns (uint256[] memory)\n    {\n        return _createBitMasks(_prizeDistribution);\n    }\n\n    ///@notice Calculates the expected prize fraction per prizeDistribution and prizeTierIndex\n    ///@param _prizeDistribution prizeDistribution struct for Draw\n    ///@param _prizeTierIndex Index of the prize tiers array to calculate\n    ///@return returns the fraction of the total prize\n    function calculatePrizeTierFraction(\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution,\n        uint256 _prizeTierIndex\n    ) external pure returns (uint256) {\n        return _calculatePrizeTierFraction(_prizeDistribution, _prizeTierIndex);\n    }\n\n    function numberOfPrizesForIndex(uint8 _bitRangeSize, uint256 _prizeTierIndex)\n        external\n        pure\n        returns (uint256)\n    {\n        return _numberOfPrizesForIndex(_bitRangeSize, _prizeTierIndex);\n    }\n\n    function calculateNumberOfUserPicks(\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\n        uint256 _normalizedUserBalance\n    ) external pure returns (uint64) {\n        return _calculateNumberOfUserPicks(_prizeDistribution, _normalizedUserBalance);\n    }\n}\n"
      },
      "contracts/test/DrawBufferHarness.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../DrawBuffer.sol\";\nimport \"../interfaces/IDrawBeacon.sol\";\n\ncontract DrawBufferHarness is DrawBuffer {\n    constructor(address owner, uint8 card) DrawBuffer(owner, card) {}\n\n    function addMultipleDraws(\n        uint256 _start,\n        uint256 _numberOfDraws,\n        uint32 _timestamp,\n        uint256 _winningRandomNumber\n    ) external {\n        for (uint256 index = _start; index <= _numberOfDraws; index++) {\n            IDrawBeacon.Draw memory _draw = IDrawBeacon.Draw({\n                winningRandomNumber: _winningRandomNumber,\n                drawId: uint32(index),\n                timestamp: _timestamp,\n                beaconPeriodSeconds: 10,\n                beaconPeriodStartedAt: 20\n            });\n\n            _pushDraw(_draw);\n        }\n    }\n}\n"
      },
      "contracts/DrawBuffer.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\n\nimport \"./interfaces/IDrawBuffer.sol\";\nimport \"./interfaces/IDrawBeacon.sol\";\nimport \"./libraries/DrawRingBufferLib.sol\";\n\n/**\n  * @title  PoolTogether V4 DrawBuffer\n  * @author PoolTogether Inc Team\n  * @notice The DrawBuffer provides historical lookups of Draws via a circular ring buffer.\n            Historical Draws can be accessed on-chain using a drawId to calculate ring buffer storage slot.\n            The Draw settings can be created by manager/owner and existing Draws can only be updated the owner.\n            Once a starting Draw has been added to the ring buffer, all following draws must have a sequential Draw ID.\n    @dev    A DrawBuffer store a limited number of Draws before beginning to overwrite (managed via the cardinality) previous Draws.\n    @dev    All mainnet DrawBuffer(s) are updated directly from a DrawBeacon, but non-mainnet DrawBuffer(s) (Matic, Optimism, Arbitrum, etc...)\n            will receive a cross-chain message, duplicating the mainnet Draw configuration - enabling a prize savings liquidity network.\n*/\ncontract DrawBuffer is IDrawBuffer, Manageable {\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\n\n    /// @notice Draws ring buffer max length.\n    uint16 public constant MAX_CARDINALITY = 256;\n\n    /// @notice Draws ring buffer array.\n    IDrawBeacon.Draw[MAX_CARDINALITY] private drawRingBuffer;\n\n    /// @notice Holds ring buffer information\n    DrawRingBufferLib.Buffer internal bufferMetadata;\n\n    /* ============ Deploy ============ */\n\n    /**\n     * @notice Deploy DrawBuffer smart contract.\n     * @param _owner Address of the owner of the DrawBuffer.\n     * @param _cardinality Draw ring buffer cardinality.\n     */\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\n        bufferMetadata.cardinality = _cardinality;\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IDrawBuffer\n    function getBufferCardinality() external view override returns (uint32) {\n        return bufferMetadata.cardinality;\n    }\n\n    /// @inheritdoc IDrawBuffer\n    function getDraw(uint32 drawId) external view override returns (IDrawBeacon.Draw memory) {\n        return drawRingBuffer[_drawIdToDrawIndex(bufferMetadata, drawId)];\n    }\n\n    /// @inheritdoc IDrawBuffer\n    function getDraws(uint32[] calldata _drawIds)\n        external\n        view\n        override\n        returns (IDrawBeacon.Draw[] memory)\n    {\n        IDrawBeacon.Draw[] memory draws = new IDrawBeacon.Draw[](_drawIds.length);\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n\n        for (uint256 index = 0; index < _drawIds.length; index++) {\n            draws[index] = drawRingBuffer[_drawIdToDrawIndex(buffer, _drawIds[index])];\n        }\n\n        return draws;\n    }\n\n    /// @inheritdoc IDrawBuffer\n    function getDrawCount() external view override returns (uint32) {\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n\n        if (buffer.lastDrawId == 0) {\n            return 0;\n        }\n\n        uint32 bufferNextIndex = buffer.nextIndex;\n\n        if (drawRingBuffer[bufferNextIndex].timestamp != 0) {\n            return buffer.cardinality;\n        } else {\n            return bufferNextIndex;\n        }\n    }\n\n    /// @inheritdoc IDrawBuffer\n    function getNewestDraw() external view override returns (IDrawBeacon.Draw memory) {\n        return _getNewestDraw(bufferMetadata);\n    }\n\n    /// @inheritdoc IDrawBuffer\n    function getOldestDraw() external view override returns (IDrawBeacon.Draw memory) {\n        // oldest draw should be next available index, otherwise it's at 0\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n        IDrawBeacon.Draw memory draw = drawRingBuffer[buffer.nextIndex];\n\n        if (draw.timestamp == 0) {\n            // if draw is not init, then use draw at 0\n            draw = drawRingBuffer[0];\n        }\n\n        return draw;\n    }\n\n    /// @inheritdoc IDrawBuffer\n    function pushDraw(IDrawBeacon.Draw memory _draw)\n        external\n        override\n        onlyManagerOrOwner\n        returns (uint32)\n    {\n        return _pushDraw(_draw);\n    }\n\n    /// @inheritdoc IDrawBuffer\n    function setDraw(IDrawBeacon.Draw memory _newDraw) external override onlyOwner returns (uint32) {\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n        uint32 index = buffer.getIndex(_newDraw.drawId);\n        drawRingBuffer[index] = _newDraw;\n        emit DrawSet(_newDraw.drawId, _newDraw);\n        return _newDraw.drawId;\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Convert a Draw.drawId to a Draws ring buffer index pointer.\n     * @dev    The getNewestDraw.drawId() is used to calculate a Draws ID delta position.\n     * @param _drawId Draw.drawId\n     * @return Draws ring buffer index pointer\n     */\n    function _drawIdToDrawIndex(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\n        internal\n        pure\n        returns (uint32)\n    {\n        return _buffer.getIndex(_drawId);\n    }\n\n    /**\n     * @notice Read newest Draw from the draws ring buffer.\n     * @dev    Uses the lastDrawId to calculate the most recently added Draw.\n     * @param _buffer Draw ring buffer\n     * @return IDrawBeacon.Draw\n     */\n    function _getNewestDraw(DrawRingBufferLib.Buffer memory _buffer)\n        internal\n        view\n        returns (IDrawBeacon.Draw memory)\n    {\n        return drawRingBuffer[_buffer.getIndex(_buffer.lastDrawId)];\n    }\n\n    /**\n     * @notice Push Draw onto draws ring buffer history.\n     * @dev    Push new draw onto draws list via authorized manager or owner.\n     * @param _newDraw IDrawBeacon.Draw\n     * @return Draw.drawId\n     */\n    function _pushDraw(IDrawBeacon.Draw memory _newDraw) internal returns (uint32) {\n        DrawRingBufferLib.Buffer memory _buffer = bufferMetadata;\n        drawRingBuffer[_buffer.nextIndex] = _newDraw;\n        bufferMetadata = _buffer.push(_newDraw.drawId);\n\n        emit DrawSet(_newDraw.drawId, _newDraw);\n\n        return _newDraw.drawId;\n    }\n}\n"
      },
      "contracts/test/libraries/DrawRingBufferLibHarness.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../../libraries/DrawRingBufferLib.sol\";\n\n/**\n * @title  Expose the DrawRingBufferLib for unit tests\n * @author PoolTogether Inc.\n */\ncontract DrawRingBufferLibHarness {\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\n\n    uint16 public constant MAX_CARDINALITY = 256;\n    DrawRingBufferLib.Buffer internal bufferMetadata;\n\n    constructor(uint8 _cardinality) {\n        bufferMetadata.cardinality = _cardinality;\n    }\n\n    function _push(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\n        external\n        pure\n        returns (DrawRingBufferLib.Buffer memory)\n    {\n        return DrawRingBufferLib.push(_buffer, _drawId);\n    }\n\n    function _getIndex(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\n        external\n        pure\n        returns (uint32)\n    {\n        return DrawRingBufferLib.getIndex(_buffer, _drawId);\n    }\n\n    function _isInitialized(DrawRingBufferLib.Buffer memory _buffer) external pure returns (bool) {\n        return DrawRingBufferLib.isInitialized(_buffer);\n    }\n}\n"
      },
      "contracts/test/DrawRingBufferExposed.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../libraries/DrawRingBufferLib.sol\";\n\n/**\n * @title  Expose the DrawRingBufferLibrary for unit tests\n * @author PoolTogether Inc.\n */\ncontract DrawRingBufferLibExposed {\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\n\n    uint16 public constant MAX_CARDINALITY = 256;\n    DrawRingBufferLib.Buffer internal bufferMetadata;\n\n    constructor(uint8 _cardinality) {\n        bufferMetadata.cardinality = _cardinality;\n    }\n\n    function _push(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\n        external\n        pure\n        returns (DrawRingBufferLib.Buffer memory)\n    {\n        return DrawRingBufferLib.push(_buffer, _drawId);\n    }\n\n    function _getIndex(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\n        external\n        pure\n        returns (uint32)\n    {\n        return DrawRingBufferLib.getIndex(_buffer, _drawId);\n    }\n}\n"
      },
      "contracts/prize-strategy/PrizeSplit.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\";\n\nimport \"../interfaces/IPrizeSplit.sol\";\n\n/**\n * @title PrizeSplit Interface\n * @author PoolTogether Inc Team\n */\nabstract contract PrizeSplit is IPrizeSplit, Ownable {\n    /* ============ Global Variables ============ */\n    PrizeSplitConfig[] internal _prizeSplits;\n\n    uint16 public constant ONE_AS_FIXED_POINT_3 = 1000;\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IPrizeSplit\n    function getPrizeSplit(uint256 _prizeSplitIndex)\n        external\n        view\n        override\n        returns (PrizeSplitConfig memory)\n    {\n        return _prizeSplits[_prizeSplitIndex];\n    }\n\n    /// @inheritdoc IPrizeSplit\n    function getPrizeSplits() external view override returns (PrizeSplitConfig[] memory) {\n        return _prizeSplits;\n    }\n\n    /// @inheritdoc IPrizeSplit\n    function setPrizeSplits(PrizeSplitConfig[] calldata _newPrizeSplits)\n        external\n        override\n        onlyOwner\n    {\n        uint256 newPrizeSplitsLength = _newPrizeSplits.length;\n        require(newPrizeSplitsLength <= type(uint8).max, \"PrizeSplit/invalid-prizesplits-length\");\n\n        // Add and/or update prize split configs using _newPrizeSplits PrizeSplitConfig structs array.\n        for (uint256 index = 0; index < newPrizeSplitsLength; index++) {\n            PrizeSplitConfig memory split = _newPrizeSplits[index];\n\n            // REVERT when setting the canonical burn address.\n            require(split.target != address(0), \"PrizeSplit/invalid-prizesplit-target\");\n\n            // IF the CURRENT prizeSplits length is below the NEW prizeSplits\n            // PUSH the PrizeSplit struct to end of the list.\n            if (_prizeSplits.length <= index) {\n                _prizeSplits.push(split);\n            } else {\n                // ELSE update an existing PrizeSplit struct with new parameters\n                PrizeSplitConfig memory currentSplit = _prizeSplits[index];\n\n                // IF new PrizeSplit DOES NOT match the current PrizeSplit\n                // WRITE to STORAGE with the new PrizeSplit\n                if (\n                    split.target != currentSplit.target ||\n                    split.percentage != currentSplit.percentage\n                ) {\n                    _prizeSplits[index] = split;\n                } else {\n                    continue;\n                }\n            }\n\n            // Emit the added/updated prize split config.\n            emit PrizeSplitSet(split.target, split.percentage, index);\n        }\n\n        // Remove old prize splits configs. Match storage _prizesSplits.length with the passed newPrizeSplits.length\n        while (_prizeSplits.length > newPrizeSplitsLength) {\n            uint256 _index;\n            unchecked {\n                _index = _prizeSplits.length - 1;\n            }\n            _prizeSplits.pop();\n            emit PrizeSplitRemoved(_index);\n        }\n\n        // Total prize split do not exceed 100%\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \"PrizeSplit/invalid-prizesplit-percentage-total\");\n    }\n\n    /// @inheritdoc IPrizeSplit\n    function setPrizeSplit(PrizeSplitConfig memory _prizeSplit, uint8 _prizeSplitIndex)\n        external\n        override\n        onlyOwner\n    {\n        require(_prizeSplitIndex < _prizeSplits.length, \"PrizeSplit/nonexistent-prizesplit\");\n        require(_prizeSplit.target != address(0), \"PrizeSplit/invalid-prizesplit-target\");\n\n        // Update the prize split config\n        _prizeSplits[_prizeSplitIndex] = _prizeSplit;\n\n        // Total prize split do not exceed 100%\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \"PrizeSplit/invalid-prizesplit-percentage-total\");\n\n        // Emit updated prize split config\n        emit PrizeSplitSet(\n            _prizeSplit.target,\n            _prizeSplit.percentage,\n            _prizeSplitIndex\n        );\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Calculates total prize split percentage amount.\n     * @dev Calculates total PrizeSplitConfig percentage(s) amount. Used to check the total does not exceed 100% of award distribution.\n     * @return Total prize split(s) percentage amount\n     */\n    function _totalPrizeSplitPercentageAmount() internal view returns (uint256) {\n        uint256 _tempTotalPercentage;\n        uint256 prizeSplitsLength = _prizeSplits.length;\n\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\n            _tempTotalPercentage += _prizeSplits[index].percentage;\n        }\n\n        return _tempTotalPercentage;\n    }\n\n    /**\n     * @notice Distributes prize split(s).\n     * @dev Distributes prize split(s) by awarding ticket or sponsorship tokens.\n     * @param _prize Starting prize award amount\n     * @return The remainder after splits are taken\n     */\n    function _distributePrizeSplits(uint256 _prize) internal returns (uint256) {\n        uint256 _prizeTemp = _prize;\n        uint256 prizeSplitsLength = _prizeSplits.length;\n\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\n            PrizeSplitConfig memory split = _prizeSplits[index];\n            uint256 _splitAmount = (_prize * split.percentage) / 1000;\n\n            // Award the prize split distribution amount.\n            _awardPrizeSplitAmount(split.target, _splitAmount);\n\n            // Update the remaining prize amount after distributing the prize split percentage.\n            _prizeTemp -= _splitAmount;\n        }\n\n        return _prizeTemp;\n    }\n\n    /**\n     * @notice Mints ticket or sponsorship tokens to prize split recipient.\n     * @dev Mints ticket or sponsorship tokens to prize split recipient via the linked PrizePool contract.\n     * @param _target Recipient of minted tokens\n     * @param _amount Amount of minted tokens\n     */\n    function _awardPrizeSplitAmount(address _target, uint256 _amount) internal virtual;\n}\n"
      },
      "contracts/interfaces/IPrizeSplit.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"./IControlledToken.sol\";\nimport \"./IPrizePool.sol\";\n\n/**\n * @title Abstract prize split contract for adding unique award distribution to static addresses.\n * @author PoolTogether Inc Team\n */\ninterface IPrizeSplit {\n    /**\n     * @notice Emit when an individual prize split is awarded.\n     * @param user          User address being awarded\n     * @param prizeAwarded  Awarded prize amount\n     * @param token         Token address\n     */\n    event PrizeSplitAwarded(\n        address indexed user,\n        uint256 prizeAwarded,\n        IControlledToken indexed token\n    );\n\n    /**\n     * @notice The prize split configuration struct.\n     * @dev    The prize split configuration struct used to award prize splits during distribution.\n     * @param target     Address of recipient receiving the prize split distribution\n     * @param percentage Percentage of prize split using a 0-1000 range for single decimal precision i.e. 125 = 12.5%\n     */\n    struct PrizeSplitConfig {\n        address target;\n        uint16 percentage;\n    }\n\n    /**\n     * @notice Emitted when a PrizeSplitConfig config is added or updated.\n     * @dev    Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.\n     * @param target     Address of prize split recipient\n     * @param percentage Percentage of prize split. Must be between 0 and 1000 for single decimal precision\n     * @param index      Index of prize split in the prizeSplts array\n     */\n    event PrizeSplitSet(address indexed target, uint16 percentage, uint256 index);\n\n    /**\n     * @notice Emitted when a PrizeSplitConfig config is removed.\n     * @dev    Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.\n     * @param target Index of a previously active prize split config\n     */\n    event PrizeSplitRemoved(uint256 indexed target);\n\n    /**\n     * @notice Read prize split config from active PrizeSplits.\n     * @dev    Read PrizeSplitConfig struct from prizeSplits array.\n     * @param prizeSplitIndex Index position of PrizeSplitConfig\n     * @return PrizeSplitConfig Single prize split config\n     */\n    function getPrizeSplit(uint256 prizeSplitIndex) external view returns (PrizeSplitConfig memory);\n\n    /**\n     * @notice Read all prize splits configs.\n     * @dev    Read all PrizeSplitConfig structs stored in prizeSplits.\n     * @return Array of PrizeSplitConfig structs\n     */\n    function getPrizeSplits() external view returns (PrizeSplitConfig[] memory);\n\n    /**\n     * @notice Get PrizePool address\n     * @return IPrizePool\n     */\n    function getPrizePool() external view returns (IPrizePool);\n\n    /**\n     * @notice Set and remove prize split(s) configs. Only callable by owner.\n     * @dev Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\n     * @param newPrizeSplits Array of PrizeSplitConfig structs\n     */\n    function setPrizeSplits(PrizeSplitConfig[] calldata newPrizeSplits) external;\n\n    /**\n     * @notice Updates a previously set prize split config.\n     * @dev Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\n     * @param prizeStrategySplit PrizeSplitConfig config struct\n     * @param prizeSplitIndex Index position of PrizeSplitConfig to update\n     */\n    function setPrizeSplit(PrizeSplitConfig memory prizeStrategySplit, uint8 prizeSplitIndex)\n        external;\n}\n"
      },
      "contracts/test/PrizeSplitHarness.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../prize-strategy/PrizeSplit.sol\";\nimport \"../interfaces/IControlledToken.sol\";\n\ncontract PrizeSplitHarness is PrizeSplit {\n    constructor(address _owner) Ownable(_owner) {}\n\n    function _awardPrizeSplitAmount(address target, uint256 amount) internal override {\n        emit PrizeSplitAwarded(target, amount, IControlledToken(address(0)));\n    }\n\n    function awardPrizeSplitAmount(address target, uint256 amount) external {\n        return _awardPrizeSplitAmount(target, amount);\n    }\n\n    function getPrizePool() external pure override returns (IPrizePool) {\n        return IPrizePool(address(0));\n    }\n}\n"
      },
      "contracts/prize-strategy/PrizeSplitStrategy.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"./PrizeSplit.sol\";\nimport \"../interfaces/IStrategy.sol\";\nimport \"../interfaces/IPrizePool.sol\";\n\n/**\n  * @title  PoolTogether V4 PrizeSplitStrategy\n  * @author PoolTogether Inc Team\n  * @notice Captures PrizePool interest for PrizeReserve and additional PrizeSplit recipients.\n            The PrizeSplitStrategy will have at minimum a single PrizeSplit with 100% of the captured\n            interest transfered to the PrizeReserve. Additional PrizeSplits can be added, depending on\n            the deployers requirements (i.e. percentage to charity). In contrast to previous PoolTogether\n            iterations, interest can be captured independent of a new Draw. Ideally (to save gas) interest\n            is only captured when also distributing the captured prize(s) to applicable Prize Distributor(s).\n*/\ncontract PrizeSplitStrategy is PrizeSplit, IStrategy {\n    /**\n     * @notice PrizePool address\n     */\n    IPrizePool internal immutable prizePool;\n\n    /**\n     * @notice Deployed Event\n     * @param owner Contract owner\n     * @param prizePool Linked PrizePool contract\n     */\n    event Deployed(address indexed owner, IPrizePool prizePool);\n\n    /* ============ Constructor ============ */\n\n    /**\n     * @notice Deploy the PrizeSplitStrategy smart contract.\n     * @param _owner     Owner address\n     * @param _prizePool PrizePool address\n     */\n    constructor(address _owner, IPrizePool _prizePool) Ownable(_owner) {\n        require(\n            address(_prizePool) != address(0),\n            \"PrizeSplitStrategy/prize-pool-not-zero-address\"\n        );\n        prizePool = _prizePool;\n        emit Deployed(_owner, _prizePool);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IStrategy\n    function distribute() external override returns (uint256) {\n        uint256 prize = prizePool.captureAwardBalance();\n\n        if (prize == 0) return 0;\n\n        uint256 prizeRemaining = _distributePrizeSplits(prize);\n\n        emit Distributed(prize - prizeRemaining);\n\n        return prize;\n    }\n\n    /// @inheritdoc IPrizeSplit\n    function getPrizePool() external view override returns (IPrizePool) {\n        return prizePool;\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Award ticket tokens to prize split recipient.\n     * @dev Award ticket tokens to prize split recipient via the linked PrizePool contract.\n     * @param _to Recipient of minted tokens.\n     * @param _amount Amount of minted tokens.\n     */\n    function _awardPrizeSplitAmount(address _to, uint256 _amount) internal override {\n        IControlledToken _ticket = prizePool.getTicket();\n        prizePool.award(_to, _amount);\n        emit PrizeSplitAwarded(_to, _amount, _ticket);\n    }\n}\n"
      },
      "contracts/interfaces/IStrategy.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\ninterface IStrategy {\n    /**\n     * @notice Emit when a strategy captures award amount from PrizePool.\n     * @param totalPrizeCaptured  Total prize captured from the PrizePool\n     */\n    event Distributed(uint256 totalPrizeCaptured);\n\n    /**\n     * @notice Capture the award balance and distribute to prize splits.\n     * @dev    Permissionless function to initialize distribution of interst\n     * @return Prize captured from PrizePool\n     */\n    function distribute() external returns (uint256);\n}\n"
      },
      "contracts/test/PrizeSplitStrategyHarness.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../prize-strategy/PrizeSplitStrategy.sol\";\n\ncontract PrizeSplitStrategyHarness is PrizeSplitStrategy {\n    constructor(address _owner, IPrizePool _prizePool) PrizeSplitStrategy(_owner, _prizePool) {}\n\n    function awardPrizeSplitAmount(address target, uint256 amount) external {\n        return _awardPrizeSplitAmount(target, amount);\n    }\n}\n"
      },
      "contracts/permit/EIP2612PermitAndDeposit.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\n\nimport \"../interfaces/IPrizePool.sol\";\nimport \"../interfaces/ITicket.sol\";\n\n/**\n * @notice Secp256k1 signature values.\n * @param deadline Timestamp at which the signature expires\n * @param v `v` portion of the signature\n * @param r `r` portion of the signature\n * @param s `s` portion of the signature\n */\nstruct Signature {\n    uint256 deadline;\n    uint8 v;\n    bytes32 r;\n    bytes32 s;\n}\n\n/**\n * @notice Delegate signature to allow delegation of tickets to delegate.\n * @param delegate Address to delegate the prize pool tickets to\n * @param signature Delegate signature\n */\nstruct DelegateSignature {\n    address delegate;\n    Signature signature;\n}\n\n/// @title Allows users to approve and deposit EIP-2612 compatible tokens into a prize pool in a single transaction.\n/// @custom:experimental This contract has not been fully audited yet.\ncontract EIP2612PermitAndDeposit {\n    using SafeERC20 for IERC20;\n\n    /**\n     * @notice Permits this contract to spend on a user's behalf and deposits into the prize pool.\n     * @dev The `spender` address required by the permit function is the address of this contract.\n     * @param _prizePool Address of the prize pool to deposit into\n     * @param _amount Amount of tokens to deposit into the prize pool\n     * @param _to Address that will receive the tickets\n     * @param _permitSignature Permit signature\n     * @param _delegateSignature Delegate signature\n     */\n    function permitAndDepositToAndDelegate(\n        IPrizePool _prizePool,\n        uint256 _amount,\n        address _to,\n        Signature calldata _permitSignature,\n        DelegateSignature calldata _delegateSignature\n    ) external {\n        ITicket _ticket = _prizePool.getTicket();\n        address _token = _prizePool.getToken();\n\n        IERC20Permit(_token).permit(\n            msg.sender,\n            address(this),\n            _amount,\n            _permitSignature.deadline,\n            _permitSignature.v,\n            _permitSignature.r,\n            _permitSignature.s\n        );\n\n        _depositToAndDelegate(\n            address(_prizePool),\n            _ticket,\n            _token,\n            _amount,\n            _to,\n            _delegateSignature\n        );\n    }\n\n    /**\n     * @notice Deposits user's token into the prize pool and delegate tickets.\n     * @param _prizePool Address of the prize pool to deposit into\n     * @param _amount Amount of tokens to deposit into the prize pool\n     * @param _to Address that will receive the tickets\n     * @param _delegateSignature Delegate signature\n     */\n    function depositToAndDelegate(\n        IPrizePool _prizePool,\n        uint256 _amount,\n        address _to,\n        DelegateSignature calldata _delegateSignature\n    ) external {\n        ITicket _ticket = _prizePool.getTicket();\n        address _token = _prizePool.getToken();\n\n        _depositToAndDelegate(\n            address(_prizePool),\n            _ticket,\n            _token,\n            _amount,\n            _to,\n            _delegateSignature\n        );\n    }\n\n    /**\n     * @notice Deposits user's token into the prize pool and delegate tickets.\n     * @param _prizePool Address of the prize pool to deposit into\n     * @param _ticket Address of the ticket minted by the prize pool\n     * @param _token Address of the token used to deposit into the prize pool\n     * @param _amount Amount of tokens to deposit into the prize pool\n     * @param _to Address that will receive the tickets\n     * @param _delegateSignature Delegate signature\n     */\n    function _depositToAndDelegate(\n        address _prizePool,\n        ITicket _ticket,\n        address _token,\n        uint256 _amount,\n        address _to,\n        DelegateSignature calldata _delegateSignature\n    ) internal {\n        _depositTo(_token, msg.sender, _amount, _prizePool, _to);\n\n        Signature memory signature = _delegateSignature.signature;\n\n        _ticket.delegateWithSignature(\n            _to,\n            _delegateSignature.delegate,\n            signature.deadline,\n            signature.v,\n            signature.r,\n            signature.s\n        );\n    }\n\n    /**\n     * @notice Deposits user's token into the prize pool.\n     * @param _token Address of the EIP-2612 token to approve and deposit\n     * @param _owner Token owner's address (Authorizer)\n     * @param _amount Amount of tokens to deposit\n     * @param _prizePool Address of the prize pool to deposit into\n     * @param _to Address that will receive the tickets\n     */\n    function _depositTo(\n        address _token,\n        address _owner,\n        uint256 _amount,\n        address _prizePool,\n        address _to\n    ) internal {\n        IERC20(_token).safeTransferFrom(_owner, address(this), _amount);\n        IERC20(_token).safeIncreaseAllowance(_prizePool, _amount);\n        IPrizePool(_prizePool).depositTo(_to, _amount);\n    }\n}\n"
      },
      "contracts/prize-pool/StakePrizePool.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\n\nimport \"./PrizePool.sol\";\n\n/**\n * @title  PoolTogether V4 StakePrizePool\n * @author PoolTogether Inc Team\n * @notice The Stake Prize Pool is a prize pool in which users can deposit an ERC20 token.\n *         These tokens are simply held by the Stake Prize Pool and become eligible for prizes.\n *         Prizes are added manually by the Stake Prize Pool owner and are distributed to users at the end of the prize period.\n */\ncontract StakePrizePool is PrizePool {\n    /// @notice Address of the stake token.\n    IERC20 private stakeToken;\n\n    /// @dev Emitted when stake prize pool is deployed.\n    /// @param stakeToken Address of the stake token.\n    event Deployed(IERC20 indexed stakeToken);\n\n    /// @notice Deploy the Stake Prize Pool\n    /// @param _owner Address of the Stake Prize Pool owner\n    /// @param _stakeToken Address of the stake token\n    constructor(address _owner, IERC20 _stakeToken) PrizePool(_owner) {\n        require(address(_stakeToken) != address(0), \"StakePrizePool/stake-token-not-zero-address\");\n        stakeToken = _stakeToken;\n\n        emit Deployed(_stakeToken);\n    }\n\n    /// @notice Determines whether the passed token can be transferred out as an external award.\n    /// @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\n    /// prize strategy should not be allowed to move those tokens.\n    /// @param _externalToken The address of the token to check\n    /// @return True if the token may be awarded, false otherwise\n    function _canAwardExternal(address _externalToken) internal view override returns (bool) {\n        return address(stakeToken) != _externalToken;\n    }\n\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n    /// @return The underlying balance of asset tokens\n    function _balance() internal view override returns (uint256) {\n        return stakeToken.balanceOf(address(this));\n    }\n\n    /// @notice Returns the address of the ERC20 asset token used for deposits.\n    /// @return Address of the ERC20 asset token.\n    function _token() internal view override returns (IERC20) {\n        return stakeToken;\n    }\n\n    /// @notice Supplies asset tokens to the yield source.\n    /// @param _mintAmount The amount of asset tokens to be supplied\n    function _supply(uint256 _mintAmount) internal pure override {\n        // no-op because nothing else needs to be done\n    }\n\n    /// @notice Redeems asset tokens from the yield source.\n    /// @param _redeemAmount The amount of yield-bearing tokens to be redeemed\n    /// @return The actual amount of tokens that were redeemed.\n    function _redeem(uint256 _redeemAmount) internal pure override returns (uint256) {\n        return _redeemAmount;\n    }\n}\n"
      },
      "contracts/external/compound/CTokenInterface.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\n\ninterface CTokenInterface is IERC20 {\n    function decimals() external view returns (uint8);\n\n    function totalSupply() external view override returns (uint256);\n\n    function underlying() external view returns (address);\n\n    function balanceOfUnderlying(address owner) external returns (uint256);\n\n    function supplyRatePerBlock() external returns (uint256);\n\n    function exchangeRateCurrent() external returns (uint256);\n\n    function mint(uint256 mintAmount) external returns (uint256);\n\n    function redeem(uint256 amount) external returns (uint256);\n\n    function balanceOf(address user) external view override returns (uint256);\n\n    function redeemUnderlying(uint256 redeemAmount) external returns (uint256);\n}\n"
      },
      "contracts/test/EIP2612PermitMintable.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\";\n\n/**\n * @dev Extension of {ERC20Permit} that adds a set of accounts with the {MinterRole},\n * which have permission to mint (create) new tokens as they see fit.\n *\n * At construction, the deployer of the contract is the only minter.\n */\ncontract EIP2612PermitMintable is ERC20Permit {\n    constructor(string memory _name, string memory _symbol)\n        ERC20(_name, _symbol)\n        ERC20Permit(_name)\n    {}\n\n    /**\n     * @dev See {ERC20-_mint}.\n     *\n     * Requirements:\n     *\n     * - the caller must have the {MinterRole}.\n     */\n    function mint(address account, uint256 amount) public returns (bool) {\n        _mint(account, amount);\n        return true;\n    }\n\n    function burn(address account, uint256 amount) public returns (bool) {\n        _burn(account, amount);\n        return true;\n    }\n\n    function masterTransfer(\n        address from,\n        address to,\n        uint256 amount\n    ) public {\n        _transfer(from, to, amount);\n    }\n}\n"
      },
      "contracts/test/RNGServiceMock.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\";\n\ncontract RNGServiceMock is RNGInterface {\n    uint256 internal random;\n    address internal feeToken;\n    uint256 internal requestFee;\n\n    function getLastRequestId() external pure override returns (uint32 requestId) {\n        return 1;\n    }\n\n    function setRequestFee(address _feeToken, uint256 _requestFee) external {\n        feeToken = _feeToken;\n        requestFee = _requestFee;\n    }\n\n    /// @return _feeToken\n    /// @return _requestFee\n    function getRequestFee()\n        external\n        view\n        override\n        returns (address _feeToken, uint256 _requestFee)\n    {\n        return (feeToken, requestFee);\n    }\n\n    function setRandomNumber(uint256 _random) external {\n        random = _random;\n    }\n\n    function requestRandomNumber() external pure override returns (uint32, uint32) {\n        return (1, 1);\n    }\n\n    function isRequestComplete(uint32) external pure override returns (bool) {\n        return true;\n    }\n\n    function randomNumber(uint32) external view override returns (uint256) {\n        return random;\n    }\n}\n"
      },
      "contracts/test/libraries/ExtendedSafeCastLibHarness.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../../libraries/ExtendedSafeCastLib.sol\";\n\ncontract ExtendedSafeCastLibHarness {\n    using ExtendedSafeCastLib for uint256;\n\n    function toUint104(uint256 value) external pure returns (uint104) {\n        return value.toUint104();\n    }\n\n    function toUint208(uint256 value) external pure returns (uint208) {\n        return value.toUint208();\n    }\n\n    function toUint224(uint256 value) external pure returns (uint224) {\n        return value.toUint224();\n    }\n}\n"
      },
      "contracts/test/ERC721Mintable.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC721/ERC721.sol\";\n\n/**\n * @dev Extension of {ERC721} for Minting/Burning\n */\ncontract ERC721Mintable is ERC721 {\n    constructor() ERC721(\"ERC 721\", \"NFT\") {}\n\n    /**\n     * @dev See {ERC721-_mint}.\n     */\n    function mint(address to, uint256 tokenId) public {\n        _mint(to, tokenId);\n    }\n\n    /**\n     * @dev See {ERC721-_burn}.\n     */\n    function burn(uint256 tokenId) public {\n        _burn(tokenId);\n    }\n}\n"
      },
      "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.8.0;\n\nimport \"../IYieldSource.sol\";\nimport \"./ERC20Mintable.sol\";\n\n/**\n * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\n * which have permission to mint (create) new tokens as they see fit.\n *\n * At construction, the deployer of the contract is the only minter.\n */\ncontract MockYieldSource is ERC20, IYieldSource {\n    ERC20Mintable public token;\n    uint256 public ratePerSecond;\n    uint256 lastYieldTimestamp;\n\n    constructor(\n        string memory _name,\n        string memory _symbol,\n        uint8 _decimals\n    ) ERC20(\"YIELD\", \"YLD\", 18) {\n        token = new ERC20Mintable(_name, _symbol, _decimals);\n        lastYieldTimestamp = block.timestamp;\n    }\n\n    function setRatePerSecond(uint256 _ratePerSecond) external {\n        _mintRate();\n        lastYieldTimestamp = block.timestamp;\n        ratePerSecond = _ratePerSecond;\n    }\n\n    function yield(uint256 amount) external {\n        token.mint(address(this), amount);\n    }\n\n    function _mintRate() internal {\n        uint256 deltaTime = block.timestamp - lastYieldTimestamp;\n        uint256 rateMultiplier = deltaTime * ratePerSecond;\n        uint256 balance = token.balanceOf(address(this));\n        uint256 mint = (rateMultiplier * balance) / 1 ether;\n        token.mint(address(this), mint);\n        lastYieldTimestamp = block.timestamp;\n    }\n\n    /// @notice Returns the ERC20 asset token used for deposits.\n    /// @return The ERC20 asset token address.\n    function depositToken() external view override returns (address) {\n        return address(token);\n    }\n\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n    /// @return The underlying balance of asset tokens.\n    function balanceOfToken(address addr) external override returns (uint256) {\n        _mintRate();\n        return sharesToTokens(balanceOf(addr));\n    }\n\n    /// @notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\n    /// @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\n    /// @param to The user whose balance will receive the tokens\n    function supplyTokenTo(uint256 amount, address to) external override {\n        _mintRate();\n        uint256 shares = tokensToShares(amount);\n        token.transferFrom(msg.sender, address(this), amount);\n        _mint(to, shares);\n    }\n\n    /// @notice Redeems tokens from the yield source.\n    /// @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\n    /// @return The actual amount of interst bearing tokens that were redeemed.\n    function redeemToken(uint256 amount) external override returns (uint256) {\n        _mintRate();\n        uint256 shares = tokensToShares(amount);\n        _burn(msg.sender, shares);\n        token.transfer(msg.sender, amount);\n\n        return amount;\n    }\n\n    function tokensToShares(uint256 tokens) public view returns (uint256) {\n        uint256 tokenBalance = token.balanceOf(address(this));\n\n        if (tokenBalance == 0) {\n            return tokens;\n        } else {\n            return (tokens * totalSupply()) / tokenBalance;\n        }\n    }\n\n    function sharesToTokens(uint256 shares) public view returns (uint256) {\n        uint256 supply = totalSupply();\n\n        if (supply == 0) {\n            return shares;\n        } else {\n            return (shares * token.balanceOf(address(this))) / supply;\n        }\n    }\n}\n"
      },
      "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.6.0;\n\nimport \"./ERC20.sol\";\n\n/**\n * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\n * which have permission to mint (create) new tokens as they see fit.\n *\n * At construction, the deployer of the contract is the only minter.\n */\ncontract ERC20Mintable is ERC20 {\n    constructor(\n        string memory _name,\n        string memory _symbol,\n        uint8 _decimals\n    ) ERC20(_name, _symbol, _decimals) {}\n\n    /**\n     * @dev See {ERC20-_mint}.\n     *\n     * Requirements:\n     *\n     * - the caller must have the {MinterRole}.\n     */\n    function mint(address account, uint256 amount) public returns (bool) {\n        _mint(account, amount);\n        return true;\n    }\n\n    function burn(address account, uint256 amount) public returns (bool) {\n        _burn(account, amount);\n        return true;\n    }\n\n    function masterTransfer(\n        address from,\n        address to,\n        uint256 amount\n    ) public {\n        _transfer(from, to, amount);\n    }\n}\n"
      },
      "@pooltogether/yield-source-interface/contracts/test/ERC20.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity >=0.6.0;\n\n/**\n * NOTE: Copied from OpenZeppelin\n *\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * We have followed general OpenZeppelin guidelines: functions revert instead\n * of returning `false` on failure. This behavior is nonetheless conventional\n * and does not conflict with the expectations of ERC20 applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20 {\n    mapping(address => uint256) private _balances;\n\n    mapping(address => mapping(address => uint256)) private _allowances;\n\n    uint256 private _totalSupply;\n\n    string private _name;\n    string private _symbol;\n    uint8 private _decimals;\n\n    /**\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\n     * another (`to`).\n     *\n     * Note that `value` may be zero.\n     */\n    event Transfer(address indexed from, address indexed to, uint256 value);\n\n    /**\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n     * a call to {approve}. `value` is the new allowance.\n     */\n    event Approval(address indexed owner, address indexed spender, uint256 value);\n\n    /**\n     * @dev Sets the values for {name} and {symbol}.\n     *\n     * The default value of {decimals} is 18. To select a different value for\n     * {decimals} you should overload it.\n     *\n     * All two of these values are immutable: they can only be set once during\n     * construction.\n     */\n    constructor(\n        string memory name_,\n        string memory symbol_,\n        uint8 decimals_\n    ) {\n        _name = name_;\n        _symbol = symbol_;\n        _decimals = decimals_;\n    }\n\n    /**\n     * @dev Returns the name of the token.\n     */\n    function name() public view virtual returns (string memory) {\n        return _name;\n    }\n\n    /**\n     * @dev Returns the symbol of the token, usually a shorter version of the\n     * name.\n     */\n    function symbol() public view virtual returns (string memory) {\n        return _symbol;\n    }\n\n    /**\n     * @dev Returns the number of decimals used to get its user representation.\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\n     * be displayed to a user as `5,05` (`505 / 10 ** 2`).\n     *\n     * Tokens usually opt for a value of 18, imitating the relationship between\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\n     * overridden;\n     *\n     * NOTE: This information is only used for _display_ purposes: it in\n     * no way affects any of the arithmetic of the contract, including\n     * {IERC20-balanceOf} and {IERC20-transfer}.\n     */\n    function decimals() public view virtual returns (uint8) {\n        return _decimals;\n    }\n\n    /**\n     * @dev See {IERC20-totalSupply}.\n     */\n    function totalSupply() public view virtual returns (uint256) {\n        return _totalSupply;\n    }\n\n    /**\n     * @dev See {IERC20-balanceOf}.\n     */\n    function balanceOf(address account) public view virtual returns (uint256) {\n        return _balances[account];\n    }\n\n    /**\n     * @dev See {IERC20-transfer}.\n     *\n     * Requirements:\n     *\n     * - `recipient` cannot be the zero address.\n     * - the caller must have a balance of at least `amount`.\n     */\n    function transfer(address recipient, uint256 amount) public virtual returns (bool) {\n        _transfer(msg.sender, recipient, amount);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-allowance}.\n     */\n    function allowance(address owner, address spender) public view virtual returns (uint256) {\n        return _allowances[owner][spender];\n    }\n\n    /**\n     * @dev See {IERC20-approve}.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     */\n    function approve(address spender, uint256 amount) public virtual returns (bool) {\n        _approve(msg.sender, spender, amount);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-transferFrom}.\n     *\n     * Emits an {Approval} event indicating the updated allowance. This is not\n     * required by the EIP. See the note at the beginning of {ERC20}.\n     *\n     * Requirements:\n     *\n     * - `sender` and `recipient` cannot be the zero address.\n     * - `sender` must have a balance of at least `amount`.\n     * - the caller must have allowance for ``sender``'s tokens of at least\n     * `amount`.\n     */\n    function transferFrom(\n        address sender,\n        address recipient,\n        uint256 amount\n    ) public virtual returns (bool) {\n        _transfer(sender, recipient, amount);\n\n        uint256 currentAllowance = _allowances[sender][msg.sender];\n        require(currentAllowance >= amount, \"ERC20: transfer amount exceeds allowance\");\n        unchecked {\n            _approve(sender, msg.sender, currentAllowance - amount);\n        }\n\n        return true;\n    }\n\n    /**\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\n     *\n     * This is an alternative to {approve} that can be used as a mitigation for\n     * problems described in {IERC20-approve}.\n     *\n     * Emits an {Approval} event indicating the updated allowance.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     */\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n        _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue);\n        return true;\n    }\n\n    /**\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\n     *\n     * This is an alternative to {approve} that can be used as a mitigation for\n     * problems described in {IERC20-approve}.\n     *\n     * Emits an {Approval} event indicating the updated allowance.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     * - `spender` must have allowance for the caller of at least\n     * `subtractedValue`.\n     */\n    function decreaseAllowance(address spender, uint256 subtractedValue)\n        public\n        virtual\n        returns (bool)\n    {\n        uint256 currentAllowance = _allowances[msg.sender][spender];\n        require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n        unchecked {\n            _approve(msg.sender, spender, currentAllowance - subtractedValue);\n        }\n\n        return true;\n    }\n\n    /**\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\n     *\n     * This internal function is equivalent to {transfer}, and can be used to\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\n     *\n     * Emits a {Transfer} event.\n     *\n     * Requirements:\n     *\n     * - `sender` cannot be the zero address.\n     * - `recipient` cannot be the zero address.\n     * - `sender` must have a balance of at least `amount`.\n     */\n    function _transfer(\n        address sender,\n        address recipient,\n        uint256 amount\n    ) internal virtual {\n        require(sender != address(0), \"ERC20: transfer from the zero address\");\n        require(recipient != address(0), \"ERC20: transfer to the zero address\");\n\n        _beforeTokenTransfer(sender, recipient, amount);\n\n        uint256 senderBalance = _balances[sender];\n        require(senderBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n        unchecked {\n            _balances[sender] = senderBalance - amount;\n        }\n        _balances[recipient] += amount;\n\n        emit Transfer(sender, recipient, amount);\n\n        _afterTokenTransfer(sender, recipient, amount);\n    }\n\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n     * the total supply.\n     *\n     * Emits a {Transfer} event with `from` set to the zero address.\n     *\n     * Requirements:\n     *\n     * - `account` cannot be the zero address.\n     */\n    function _mint(address account, uint256 amount) internal virtual {\n        require(account != address(0), \"ERC20: mint to the zero address\");\n\n        _beforeTokenTransfer(address(0), account, amount);\n\n        _totalSupply += amount;\n        _balances[account] += amount;\n        emit Transfer(address(0), account, amount);\n\n        _afterTokenTransfer(address(0), account, amount);\n    }\n\n    /**\n     * @dev Destroys `amount` tokens from `account`, reducing the\n     * total supply.\n     *\n     * Emits a {Transfer} event with `to` set to the zero address.\n     *\n     * Requirements:\n     *\n     * - `account` cannot be the zero address.\n     * - `account` must have at least `amount` tokens.\n     */\n    function _burn(address account, uint256 amount) internal virtual {\n        require(account != address(0), \"ERC20: burn from the zero address\");\n\n        _beforeTokenTransfer(account, address(0), amount);\n\n        uint256 accountBalance = _balances[account];\n        require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n        unchecked {\n            _balances[account] = accountBalance - amount;\n        }\n        _totalSupply -= amount;\n\n        emit Transfer(account, address(0), amount);\n\n        _afterTokenTransfer(account, address(0), amount);\n    }\n\n    /**\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n     *\n     * This internal function is equivalent to `approve`, and can be used to\n     * e.g. set automatic allowances for certain subsystems, etc.\n     *\n     * Emits an {Approval} event.\n     *\n     * Requirements:\n     *\n     * - `owner` cannot be the zero address.\n     * - `spender` cannot be the zero address.\n     */\n    function _approve(\n        address owner,\n        address spender,\n        uint256 amount\n    ) internal virtual {\n        require(owner != address(0), \"ERC20: approve from the zero address\");\n        require(spender != address(0), \"ERC20: approve to the zero address\");\n\n        _allowances[owner][spender] = amount;\n        emit Approval(owner, spender, amount);\n    }\n\n    /**\n     * @dev Hook that is called before any transfer of tokens. This includes\n     * minting and burning.\n     *\n     * Calling conditions:\n     *\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n     * will be transferred to `to`.\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n     * - `from` and `to` are never both zero.\n     *\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n     */\n    function _beforeTokenTransfer(\n        address from,\n        address to,\n        uint256 amount\n    ) internal virtual {}\n\n    /**\n     * @dev Hook that is called after any transfer of tokens. This includes\n     * minting and burning.\n     *\n     * Calling conditions:\n     *\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n     * has been transferred to `to`.\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n     * - `from` and `to` are never both zero.\n     *\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n     */\n    function _afterTokenTransfer(\n        address from,\n        address to,\n        uint256 amount\n    ) internal virtual {}\n\n    uint256[45] private __gap;\n}\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol';\n"
      }
    },
    "settings": {
      "optimizer": {
        "enabled": true,
        "runs": 2000
      },
      "evmVersion": "berlin",
      "outputSelection": {
        "*": {
          "*": [
            "abi",
            "evm.bytecode",
            "evm.deployedBytecode",
            "evm.methodIdentifiers",
            "metadata",
            "devdoc",
            "userdoc",
            "storageLayout",
            "evm.gasEstimates"
          ],
          "": [
            "ast"
          ]
        }
      },
      "metadata": {
        "useLiteralContent": true
      }
    }
  },
  "output": {
    "contracts": {
      "@openzeppelin/contracts/security/ReentrancyGuard.sol": {
        "ReentrancyGuard": {
          "abi": [],
          "devdoc": {
            "details": "Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":\"ReentrancyGuard\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Contract module that helps prevent reentrant calls to a function.\\n *\\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\\n * available, which can be applied to functions to make sure there are no nested\\n * (reentrant) calls to them.\\n *\\n * Note that because there is a single `nonReentrant` guard, functions marked as\\n * `nonReentrant` may not call one another. This can be worked around by making\\n * those functions `private`, and then adding `external` `nonReentrant` entry\\n * points to them.\\n *\\n * TIP: If you would like to learn more about reentrancy and alternative ways\\n * to protect against it, check out our blog post\\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\\n */\\nabstract contract ReentrancyGuard {\\n    // Booleans are more expensive than uint256 or any type that takes up a full\\n    // word because each write operation emits an extra SLOAD to first read the\\n    // slot's contents, replace the bits taken up by the boolean, and then write\\n    // back. This is the compiler's defense against contract upgrades and\\n    // pointer aliasing, and it cannot be disabled.\\n\\n    // The values being non-zero value makes deployment a bit more expensive,\\n    // but in exchange the refund on every call to nonReentrant will be lower in\\n    // amount. Since refunds are capped to a percentage of the total\\n    // transaction's gas, it is best to keep them low in cases like this one, to\\n    // increase the likelihood of the full refund coming into effect.\\n    uint256 private constant _NOT_ENTERED = 1;\\n    uint256 private constant _ENTERED = 2;\\n\\n    uint256 private _status;\\n\\n    constructor() {\\n        _status = _NOT_ENTERED;\\n    }\\n\\n    /**\\n     * @dev Prevents a contract from calling itself, directly or indirectly.\\n     * Calling a `nonReentrant` function from another `nonReentrant`\\n     * function is not supported. It is possible to prevent this from happening\\n     * by making the `nonReentrant` function external, and make it call a\\n     * `private` function that does the actual work.\\n     */\\n    modifier nonReentrant() {\\n        // On the first call to nonReentrant, _notEntered will be true\\n        require(_status != _ENTERED, \\\"ReentrancyGuard: reentrant call\\\");\\n\\n        // Any calls to nonReentrant after this point will fail\\n        _status = _ENTERED;\\n\\n        _;\\n\\n        // By storing the original value once again, a refund is triggered (see\\n        // https://eips.ethereum.org/EIPS/eip-2200)\\n        _status = _NOT_ENTERED;\\n    }\\n}\\n\",\"keccak256\":\"0x842ccf9a6cd33e17b7acef8372ca42090755217b358fe0c44c98e951ea549d3a\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 10,
                "contract": "@openzeppelin/contracts/security/ReentrancyGuard.sol:ReentrancyGuard",
                "label": "_status",
                "offset": 0,
                "slot": "0",
                "type": "t_uint256"
              }
            ],
            "types": {
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC20/ERC20.sol": {
        "ERC20": {
          "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"
            }
          ],
          "devdoc": {
            "details": "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 Contracts guidelines: functions revert instead 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}.",
            "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}."
              },
              "constructor": {
                "details": "Sets the values for {name} and {symbol}. The default value of {decimals} is 18. To select a different value for {decimals} you should overload it. All two of these values are immutable: they can only be set once during construction."
              },
              "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 this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
              },
              "decreaseAllowance(address,uint256)": {
                "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
              },
              "increaseAllowance(address,uint256)": {
                "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "symbol()": {
                "details": "Returns the symbol of the token, usually a shorter version of the name."
              },
              "totalSupply()": {
                "details": "See {IERC20-totalSupply}."
              },
              "transfer(address,uint256)": {
                "details": "See {IERC20-transfer}. Requirements: - `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
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_84": {
                  "entryPoint": null,
                  "id": 84,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 270,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
                  "entryPoint": 453,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "extract_byte_array_length": {
                  "entryPoint": 559,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 620,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1985:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:821:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:84"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:84"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:84",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:84"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:84",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:84"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:84"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "543:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "553:4:84",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "547:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "603:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "612:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "615:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "605:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "605:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "605:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "580:6:84"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "588:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "576:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "576:15:84"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "593:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "572:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "572:24:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "598:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "569:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "569:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "566:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "628:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "637:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "632:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "693:87:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "722:6:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "730:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "718:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "718:14:84"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "734:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "714:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "714:23:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "offset",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "753:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "761:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "749:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "749:14:84"
                                                },
                                                {
                                                  "name": "_4",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "765:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "745:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "745:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "739:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "739:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "707:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "707:63:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "707:63:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "661:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "655:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "655:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "665:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "667:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "676:1:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "679:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "672:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "672:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "667:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "651:3:84",
                                "statements": []
                              },
                              "src": "647:133:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "810:59:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "839:6:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "847:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "835:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "835:15:84"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "852:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "831:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "831:24:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "857:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:35:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:35:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "795:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "798:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "792:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "792:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "789:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "878:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "887:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "878:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:885:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1022:444:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1068:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1077:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1080:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1070:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1070:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1070:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1043:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1052:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1039:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1039:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1064:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1035:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1035:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1032:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1093:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1113:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1107:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1107:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1097:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1132:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1150:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1154:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1146:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1146:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1158:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1142:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1142:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1136:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1187:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1196:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1199:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1189:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1189:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1189:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1175:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1183:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1169:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1212:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1255:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1266:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1251:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1251:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1275:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1222:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1222:61:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1212:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1292:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1318:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1329:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1314:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1314:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1308:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1308:25:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1296:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1362:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1371:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1374:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1364:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1364:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1364:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1348:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1358:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1345:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1345:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1342:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1387:73:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1430:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1441:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1426:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1426:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1452:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1397:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1397:63:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1387:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "980:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "991:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1003:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1011:6:84",
                            "type": ""
                          }
                        ],
                        "src": "904:562:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1526:325:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1536:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1550:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1553:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "1546:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1546:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1536:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1567:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1597:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1603:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "1593:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1593:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "1571:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1644:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1646:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "1660:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1668:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "1656:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1656:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1646:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1624:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1617:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1617:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1614:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1734:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1755:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1762:3:84",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1767:10:84",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "1758:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1758:20:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1748:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1748:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1748:31:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1799:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1802:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1792:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1792:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1792:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1827:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1830:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1820:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1820:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1820:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1690:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1713:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1721:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1710:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1710:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "1687:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1687:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1684:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "1506:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1515:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1471:380:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1888:95:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1905:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1912:3:84",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1917:10:84",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1908:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1908:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1898:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1898:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1898:31:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1945:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1948:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1938:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1938:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1938:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1969:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1972:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "1962:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1962:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1962:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "1856:127:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        let _4 := 0x20\n        if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _1) { i := add(i, _4) }\n        {\n            mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n        }\n        if gt(i, _1)\n        {\n            mstore(add(add(memPtr, _1), _4), 0)\n        }\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b5060405162000c7038038062000c708339810160408190526200003491620001c5565b81516200004990600390602085019062000068565b5080516200005f90600490602084019062000068565b50505062000282565b82805462000076906200022f565b90600052602060002090601f0160209004810192826200009a5760008555620000e5565b82601f10620000b557805160ff1916838001178555620000e5565b82800160010185558215620000e5579182015b82811115620000e5578251825591602001919060010190620000c8565b50620000f3929150620000f7565b5090565b5b80821115620000f35760008155600101620000f8565b600082601f8301126200012057600080fd5b81516001600160401b03808211156200013d576200013d6200026c565b604051601f8301601f19908116603f011681019082821181831017156200016857620001686200026c565b816040528381526020925086838588010111156200018557600080fd5b600091505b83821015620001a957858201830151818301840152908201906200018a565b83821115620001bb5760008385830101525b9695505050505050565b60008060408385031215620001d957600080fd5b82516001600160401b0380821115620001f157600080fd5b620001ff868387016200010e565b935060208501519150808211156200021657600080fd5b5062000225858286016200010e565b9150509250929050565b600181811c908216806200024457607f821691505b602082108114156200026657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6109de80620002926000396000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d714610187578063a9059cbb1461019a578063dd62ed3e146101ad57600080fd5b8063395093511461014357806370a082311461015657806395d89b411461017f57600080fd5b806318160ddd116100b257806318160ddd1461010f57806323b872dd14610121578063313ce5671461013457600080fd5b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101e6565b6040516100e391906108a2565b60405180910390f35b6100ff6100fa366004610878565b610278565b60405190151581526020016100e3565b6002545b6040519081526020016100e3565b6100ff61012f36600461083c565b61028e565b604051601281526020016100e3565b6100ff610151366004610878565b610352565b6101136101643660046107e7565b6001600160a01b031660009081526020819052604090205490565b6100d661038e565b6100ff610195366004610878565b61039d565b6100ff6101a8366004610878565b61044e565b6101136101bb366004610809565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101f590610954565b80601f016020809104026020016040519081016040528092919081815260200182805461022190610954565b801561026e5780601f106102435761010080835404028352916020019161026e565b820191906000526020600020905b81548152906001019060200180831161025157829003601f168201915b5050505050905090565b600061028533848461045b565b50600192915050565b600061029b8484846105b3565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561033a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610347853385840361045b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610285918590610389908690610915565b61045b565b6060600480546101f590610954565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104375760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610331565b610444338585840361045b565b5060019392505050565b60006102853384846105b3565b6001600160a01b0383166104d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0382166105525760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661062f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0382166106ab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0383166000908152602081905260409020548181101561073a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610771908490610915565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107bd91815260200190565b60405180910390a350505050565b80356001600160a01b03811681146107e257600080fd5b919050565b6000602082840312156107f957600080fd5b610802826107cb565b9392505050565b6000806040838503121561081c57600080fd5b610825836107cb565b9150610833602084016107cb565b90509250929050565b60008060006060848603121561085157600080fd5b61085a846107cb565b9250610868602085016107cb565b9150604084013590509250925092565b6000806040838503121561088b57600080fd5b610894836107cb565b946020939093013593505050565b600060208083528351808285015260005b818110156108cf578581018301518582016040015282016108b3565b818111156108e1576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6000821982111561094f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b600181811c9082168061096857607f821691505b602082108114156109a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b5091905056fea2646970667358221220b9bed953043dc6b9d3cc37df7ba2e368b4df73d5fe0b516d238199fad22702a364736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xC70 CODESIZE SUB DUP1 PUSH3 0xC70 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1C5 JUMP JUMPDEST DUP2 MLOAD PUSH3 0x49 SWAP1 PUSH1 0x3 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x5F SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP POP POP PUSH3 0x282 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x76 SWAP1 PUSH3 0x22F JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x9A JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xB5 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xE5 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xE5 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xC8 JUMP JUMPDEST POP PUSH3 0xF3 SWAP3 SWAP2 POP PUSH3 0xF7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0xF3 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0xF8 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x120 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x13D JUMPI PUSH3 0x13D PUSH3 0x26C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x168 JUMPI PUSH3 0x168 PUSH3 0x26C JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x185 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1A9 JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x18A JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x1BB JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1D9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x1F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x1FF DUP7 DUP4 DUP8 ADD PUSH3 0x10E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x216 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x225 DUP6 DUP3 DUP7 ADD PUSH3 0x10E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x244 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x266 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x9DE DUP1 PUSH3 0x292 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 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x187 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x19A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x39509351 EQ PUSH2 0x143 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x156 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x17F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x10F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x121 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x134 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xEC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD6 PUSH2 0x1E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP2 SWAP1 PUSH2 0x8A2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFF PUSH2 0xFA CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x278 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x12F CALLDATASIZE PUSH1 0x4 PUSH2 0x83C JUMP JUMPDEST PUSH2 0x28E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x151 CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x352 JUMP JUMPDEST PUSH2 0x113 PUSH2 0x164 CALLDATASIZE PUSH1 0x4 PUSH2 0x7E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xD6 PUSH2 0x38E JUMP JUMPDEST PUSH2 0xFF PUSH2 0x195 CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x39D JUMP JUMPDEST PUSH2 0xFF PUSH2 0x1A8 CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x44E JUMP JUMPDEST PUSH2 0x113 PUSH2 0x1BB CALLDATASIZE PUSH1 0x4 PUSH2 0x809 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1F5 SWAP1 PUSH2 0x954 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x221 SWAP1 PUSH2 0x954 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x26E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x243 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x26E 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 0x251 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x285 CALLER DUP5 DUP5 PUSH2 0x45B JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29B DUP5 DUP5 DUP5 PUSH2 0x5B3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x33A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x347 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x45B JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x285 SWAP2 DUP6 SWAP1 PUSH2 0x389 SWAP1 DUP7 SWAP1 PUSH2 0x915 JUMP JUMPDEST PUSH2 0x45B JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1F5 SWAP1 PUSH2 0x954 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x437 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH2 0x444 CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x45B JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x285 CALLER DUP5 DUP5 PUSH2 0x5B3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x4D6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x552 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x62F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x6AB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x73A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x771 SWAP1 DUP5 SWAP1 PUSH2 0x915 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x7BD SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x7E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x7F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x802 DUP3 PUSH2 0x7CB JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x81C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x825 DUP4 PUSH2 0x7CB JUMP JUMPDEST SWAP2 POP PUSH2 0x833 PUSH1 0x20 DUP5 ADD PUSH2 0x7CB JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x851 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x85A DUP5 PUSH2 0x7CB JUMP JUMPDEST SWAP3 POP PUSH2 0x868 PUSH1 0x20 DUP6 ADD PUSH2 0x7CB JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x88B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x894 DUP4 PUSH2 0x7CB JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x8CF JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x8B3 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x8E1 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x94F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x968 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x9A2 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB9 0xBE 0xD9 MSTORE8 DIV RETURNDATASIZE 0xC6 0xB9 0xD3 0xCC CALLDATACOPY 0xDF PUSH28 0xA2E368B4DF73D5FE0B516D238199FAD22702A364736F6C6343000806 STOP CALLER ",
              "sourceMap": "1331:10416:1:-:0;;;1906:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1972:13;;;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;1995:17:1;;;;:7;;:17;;;;;:::i;:::-;;1906:113;;1331:10416;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1331:10416:1;;;-1:-1:-1;1331:10416:1;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:885:84;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;;;;;224:10:84;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:84;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;553:4;543:14;;598:3;593:2;588;580:6;576:15;572:24;569:33;566:2;;;615:1;612;605:12;566:2;637:1;628:10;;647:133;661:2;658:1;655:9;647:133;;;749:14;;;745:23;;739:30;718:14;;;714:23;;707:63;672:10;;;;647:133;;;798:2;795:1;792:9;789:2;;;857:1;852:2;847;839:6;835:15;831:24;824:35;789:2;887:6;78:821;-1:-1:-1;;;;;;78:821:84:o;904:562::-;1003:6;1011;1064:2;1052:9;1043:7;1039:23;1035:32;1032:2;;;1080:1;1077;1070:12;1032:2;1107:16;;-1:-1:-1;;;;;1172:14:84;;;1169:2;;;1199:1;1196;1189:12;1169:2;1222:61;1275:7;1266:6;1255:9;1251:22;1222:61;:::i;:::-;1212:71;;1329:2;1318:9;1314:18;1308:25;1292:41;;1358:2;1348:8;1345:16;1342:2;;;1374:1;1371;1364:12;1342:2;;1397:63;1452:7;1441:8;1430:9;1426:24;1397:63;:::i;:::-;1387:73;;;1022:444;;;;;:::o;1471:380::-;1550:1;1546:12;;;;1593;;;1614:2;;1668:4;1660:6;1656:17;1646:27;;1614:2;1721;1713:6;1710:14;1690:18;1687:38;1684:2;;;1767:10;1762:3;1758:20;1755:1;1748:31;1802:4;1799:1;1792:15;1830:4;1827:1;1820:15;1684:2;;1526:325;;;:::o;1856:127::-;1917:10;1912:3;1908:20;1905:1;1898:31;1948:4;1945:1;1938:15;1972:4;1969:1;1962:15;1888:95;1331:10416:1;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_afterTokenTransfer_584": {
                  "entryPoint": null,
                  "id": 584,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_562": {
                  "entryPoint": 1115,
                  "id": 562,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_573": {
                  "entryPoint": null,
                  "id": 573,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_msgSender_2403": {
                  "entryPoint": null,
                  "id": 2403,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_transfer_389": {
                  "entryPoint": 1459,
                  "id": 389,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@allowance_177": {
                  "entryPoint": null,
                  "id": 177,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_198": {
                  "entryPoint": 632,
                  "id": 198,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_138": {
                  "entryPoint": null,
                  "id": 138,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_114": {
                  "entryPoint": null,
                  "id": 114,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_312": {
                  "entryPoint": 925,
                  "id": 312,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_273": {
                  "entryPoint": 850,
                  "id": 273,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@name_94": {
                  "entryPoint": 486,
                  "id": 94,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@symbol_104": {
                  "entryPoint": 910,
                  "id": 104,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@totalSupply_124": {
                  "entryPoint": null,
                  "id": 124,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_246": {
                  "entryPoint": 654,
                  "id": 246,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_159": {
                  "entryPoint": 1102,
                  "id": 159,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_address": {
                  "entryPoint": 1995,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 2023,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 2057,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 2108,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 2168,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 2210,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 2325,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 2388,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:6053:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:84",
                            "type": ""
                          }
                        ],
                        "src": "215:186:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:84",
                            "type": ""
                          }
                        ],
                        "src": "406:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:84",
                            "type": ""
                          }
                        ],
                        "src": "671:328:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1091:167:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1137:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1146:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1149:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1139:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1139:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1139:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1112:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1121:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1108:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1108:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1133:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1104:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1104:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1101:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1162:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1191:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1162:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1210:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1237:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1248:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1220:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1220:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1210:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1049:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1060:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1072:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1080:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1004:254:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1358:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1368:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1380:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1391:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1376:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1376:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1368:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1410:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "1435:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1428:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1428:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "1421:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1421:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1403:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1403:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1403:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1327:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1338:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1349:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1263:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1576:535:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1586:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1596:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1590:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1614:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1625:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1607:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1607:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1607:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1637:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1657:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1651:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1651:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1641:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1684:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1695:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1680:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1680:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1673:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1673:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1673:34:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1716:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1725:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1720:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1785:90:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1814:9:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1825:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1810:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1810:17:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1829:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1806:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1806:26:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1848:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1856:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "1844:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "1844:14:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1860:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1840:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1840:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "1834:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1834:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1799:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1799:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1799:66:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1746:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1749:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1743:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1743:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1757:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1759:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1768:1:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1771:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1764:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1764:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1759:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1739:3:84",
                                "statements": []
                              },
                              "src": "1735:140:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1909:66:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1938:9:84"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1949:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1934:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1934:22:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1958:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1930:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1930:31:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1963:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1923:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1923:42:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1923:42:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1890:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1893:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1887:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1887:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1884:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1984:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2000:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "2019:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2027:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2015:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2015:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2032:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2011:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2011:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1996:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1996:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2102:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1992:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1992:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1984:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1545:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1556:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1567:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1455:656:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2290:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2307:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2318:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2300:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2300:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2300:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2341:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2352:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2337:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2337:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2357:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2330:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2330:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2330:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2380:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2391:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2376:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2376:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2396:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2369:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2369:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2369:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2451:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2462:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2447:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2447:18:84"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2467:5:84",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2440:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2440:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2440:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2482:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2494:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2505:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2490:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2490:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2482:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2267:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2281:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2116:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2694:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2711:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2722:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2704:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2704:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2704:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2745:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2756:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2741:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2741:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2761:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2734:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2734:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2734:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2784:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2795:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2780:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2780:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2800:34:84",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2773:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2773:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2773:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2855:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2866:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2851:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2851:18:84"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2871:4:84",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2844:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2844:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2844:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2885:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2897:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2908:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2893:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2893:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2885:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2671:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2685:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2520:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3097:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3114:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3125:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3107:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3107:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3107:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3148:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3159:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3144:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3144:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3164:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3137:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3137:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3137:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3187:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3198:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3183:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3183:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3203:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3176:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3176:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3176:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3258:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3269:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3254:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3254:18:84"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3274:8:84",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3247:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3247:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3247:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3292:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3304:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3315:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3300:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3300:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3292:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3074:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3088:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2923:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3504:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3521:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3532:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3514:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3514:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3514:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3555:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3566:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3551:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3551:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3571:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3544:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3544:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3544:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3594:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3605:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3590:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3590:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3610:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3583:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3583:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3583:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3665:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3676:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3661:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3661:18:84"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3681:10:84",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3654:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3654:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3654:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3701:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3713:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3724:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3709:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3709:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3701:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3481:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3495:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3330:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3913:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3930:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3941:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3923:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3923:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3923:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3964:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3975:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3960:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3960:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3980:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3953:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3953:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3953:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4003:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4014:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3999:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3999:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4019:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3992:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3992:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3992:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4074:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4085:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4070:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4070:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4090:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4063:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4063:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4063:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4107:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4119:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4130:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4115:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4115:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4107:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3890:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3904:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3739:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4319:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4336:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4347:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4329:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4329:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4329:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4370:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4381:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4366:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4366:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4386:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4359:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4359:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4359:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4409:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4420:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4405:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4405:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4425:34:84",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4398:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4398:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4398:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4480:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4491:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4476:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4476:18:84"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4496:6:84",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4469:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4469:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4469:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4512:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4524:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4535:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4520:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4520:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4512:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4296:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4310:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4145:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4724:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4741:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4752:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4734:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4734:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4734:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4775:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4786:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4771:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4771:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4791:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4764:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4764:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4764:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4814:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4825:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4810:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4810:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4830:34:84",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4803:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4803:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4803:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4885:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4896:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4881:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4881:18:84"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4901:7:84",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4874:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4874:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4874:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4918:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4930:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4941:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4926:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4926:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4918:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4701:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4715:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4550:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5057:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5067:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5079:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5090:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5075:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5075:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5067:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5109:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5120:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5102:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5102:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5102:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5026:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5037:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5048:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4956:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5235:87:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5245:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5257:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5268:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5253:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5253:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5245:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5287:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5302:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5310:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5298:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5298:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5280:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5280:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5280:36:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5204:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5215:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5226:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5138:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5375:234:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5410:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5431:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5434:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5424:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5424:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5424:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5532:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5535:4:84",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5525:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5525:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5525:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5560:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5563:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5553:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5553:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5553:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "5391:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "5398:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "5394:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5394:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5388:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5388:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5385:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5587:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "5598:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "5601:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5594:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5594:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "5587:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "5358:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "5361:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "5367:3:84",
                            "type": ""
                          }
                        ],
                        "src": "5327:282:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5669:382:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5679:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5693:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "5696:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "5689:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5689:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "5679:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5710:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "5740:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5746:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "5736:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5736:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "5714:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5787:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5789:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "5803:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5811:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "5799:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5799:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "5789:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "5767:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "5760:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5760:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5757:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5877:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5898:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5901:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5891:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5891:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5891:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5999:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6002:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5992:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5992:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5992:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6027:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6030:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6020:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6020:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6020:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "5833:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "5856:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5864:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "5853:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5853:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "5830:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5830:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5827:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "5649:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "5658:6:84",
                            "type": ""
                          }
                        ],
                        "src": "5614:437:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n        sum := add(x, y)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d714610187578063a9059cbb1461019a578063dd62ed3e146101ad57600080fd5b8063395093511461014357806370a082311461015657806395d89b411461017f57600080fd5b806318160ddd116100b257806318160ddd1461010f57806323b872dd14610121578063313ce5671461013457600080fd5b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101e6565b6040516100e391906108a2565b60405180910390f35b6100ff6100fa366004610878565b610278565b60405190151581526020016100e3565b6002545b6040519081526020016100e3565b6100ff61012f36600461083c565b61028e565b604051601281526020016100e3565b6100ff610151366004610878565b610352565b6101136101643660046107e7565b6001600160a01b031660009081526020819052604090205490565b6100d661038e565b6100ff610195366004610878565b61039d565b6100ff6101a8366004610878565b61044e565b6101136101bb366004610809565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101f590610954565b80601f016020809104026020016040519081016040528092919081815260200182805461022190610954565b801561026e5780601f106102435761010080835404028352916020019161026e565b820191906000526020600020905b81548152906001019060200180831161025157829003601f168201915b5050505050905090565b600061028533848461045b565b50600192915050565b600061029b8484846105b3565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561033a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610347853385840361045b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610285918590610389908690610915565b61045b565b6060600480546101f590610954565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104375760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610331565b610444338585840361045b565b5060019392505050565b60006102853384846105b3565b6001600160a01b0383166104d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0382166105525760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661062f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0382166106ab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0383166000908152602081905260409020548181101561073a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610771908490610915565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107bd91815260200190565b60405180910390a350505050565b80356001600160a01b03811681146107e257600080fd5b919050565b6000602082840312156107f957600080fd5b610802826107cb565b9392505050565b6000806040838503121561081c57600080fd5b610825836107cb565b9150610833602084016107cb565b90509250929050565b60008060006060848603121561085157600080fd5b61085a846107cb565b9250610868602085016107cb565b9150604084013590509250925092565b6000806040838503121561088b57600080fd5b610894836107cb565b946020939093013593505050565b600060208083528351808285015260005b818110156108cf578581018301518582016040015282016108b3565b818111156108e1576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6000821982111561094f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b600181811c9082168061096857607f821691505b602082108114156109a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b5091905056fea2646970667358221220b9bed953043dc6b9d3cc37df7ba2e368b4df73d5fe0b516d238199fad22702a364736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x187 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x19A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x39509351 EQ PUSH2 0x143 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x156 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x17F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x10F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x121 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x134 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xEC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD6 PUSH2 0x1E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP2 SWAP1 PUSH2 0x8A2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFF PUSH2 0xFA CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x278 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x12F CALLDATASIZE PUSH1 0x4 PUSH2 0x83C JUMP JUMPDEST PUSH2 0x28E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x151 CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x352 JUMP JUMPDEST PUSH2 0x113 PUSH2 0x164 CALLDATASIZE PUSH1 0x4 PUSH2 0x7E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xD6 PUSH2 0x38E JUMP JUMPDEST PUSH2 0xFF PUSH2 0x195 CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x39D JUMP JUMPDEST PUSH2 0xFF PUSH2 0x1A8 CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x44E JUMP JUMPDEST PUSH2 0x113 PUSH2 0x1BB CALLDATASIZE PUSH1 0x4 PUSH2 0x809 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1F5 SWAP1 PUSH2 0x954 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x221 SWAP1 PUSH2 0x954 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x26E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x243 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x26E 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 0x251 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x285 CALLER DUP5 DUP5 PUSH2 0x45B JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29B DUP5 DUP5 DUP5 PUSH2 0x5B3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x33A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x347 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x45B JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x285 SWAP2 DUP6 SWAP1 PUSH2 0x389 SWAP1 DUP7 SWAP1 PUSH2 0x915 JUMP JUMPDEST PUSH2 0x45B JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1F5 SWAP1 PUSH2 0x954 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x437 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH2 0x444 CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x45B JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x285 CALLER DUP5 DUP5 PUSH2 0x5B3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x4D6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x552 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x62F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x6AB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x73A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x771 SWAP1 DUP5 SWAP1 PUSH2 0x915 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x7BD SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x7E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x7F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x802 DUP3 PUSH2 0x7CB JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x81C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x825 DUP4 PUSH2 0x7CB JUMP JUMPDEST SWAP2 POP PUSH2 0x833 PUSH1 0x20 DUP5 ADD PUSH2 0x7CB JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x851 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x85A DUP5 PUSH2 0x7CB JUMP JUMPDEST SWAP3 POP PUSH2 0x868 PUSH1 0x20 DUP6 ADD PUSH2 0x7CB JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x88B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x894 DUP4 PUSH2 0x7CB JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x8CF JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x8B3 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x8E1 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x94F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x968 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x9A2 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB9 0xBE 0xD9 MSTORE8 DIV RETURNDATASIZE 0xC6 0xB9 0xD3 0xCC CALLDATACOPY 0xDF PUSH28 0xA2E368B4DF73D5FE0B516D238199FAD22702A364736F6C6343000806 STOP CALLER ",
              "sourceMap": "1331:10416:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4181:166;;;;;;:::i;:::-;;:::i;:::-;;;1428:14:84;;1421:22;1403:41;;1391:2;1376:18;4181:166:1;1358:92:84;3172:106:1;3259:12;;3172:106;;;5102:25:84;;;5090:2;5075:18;3172:106:1;5057:76:84;4814:478:1;;;;;;:::i;:::-;;:::i;3021:91::-;;;3103:2;5280:36:84;;5268:2;5253:18;3021:91:1;5235:87:84;5687:212:1;;;;;;:::i;:::-;;:::i;3336:125::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3436:18:1;3410:7;3436:18;;;;;;;;;;;;3336:125;2295:102;;;:::i;6386:405::-;;;;;;:::i;:::-;;:::i;3664:172::-;;;;;;:::i;:::-;;:::i;3894:149::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4009:18:1;;;3983:7;4009:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3894:149;2084:98;2138:13;2170:5;2163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98;:::o;4181:166::-;4264:4;4280:39;666:10:12;4303:7:1;4312:6;4280:8;:39::i;:::-;-1:-1:-1;4336:4:1;4181:166;;;;:::o;4814:478::-;4950:4;4966:36;4976:6;4984:9;4995:6;4966:9;:36::i;:::-;-1:-1:-1;;;;;5040:19:1;;5013:24;5040:19;;;:11;:19;;;;;;;;666:10:12;5040:33:1;;;;;;;;5091:26;;;;5083:79;;;;-1:-1:-1;;;5083:79:1;;3532:2:84;5083:79:1;;;3514:21:84;3571:2;3551:18;;;3544:30;3610:34;3590:18;;;3583:62;3681:10;3661:18;;;3654:38;3709:19;;5083:79:1;;;;;;;;;5196:57;5205:6;666:10:12;5246:6:1;5227:16;:25;5196:8;:57::i;:::-;-1:-1:-1;5281:4:1;;4814:478;-1:-1:-1;;;;4814:478:1:o;5687:212::-;666:10:12;5775:4:1;5823:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5823:34:1;;;;;;;;;;5775:4;;5791:80;;5814:7;;5823:47;;5860:10;;5823:47;:::i;:::-;5791:8;:80::i;2295:102::-;2351:13;2383:7;2376:14;;;;;:::i;6386:405::-;666:10:12;6479:4:1;6522:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6522:34:1;;;;;;;;;;6574:35;;;;6566:85;;;;-1:-1:-1;;;6566:85:1;;4752:2:84;6566:85:1;;;4734:21:84;4791:2;4771:18;;;4764:30;4830:34;4810:18;;;4803:62;4901:7;4881:18;;;4874:35;4926:19;;6566:85:1;4724:227:84;6566:85:1;6685:67;666:10:12;6708:7:1;6736:15;6717:16;:34;6685:8;:67::i;:::-;-1:-1:-1;6780:4:1;;6386:405;-1:-1:-1;;;6386:405:1:o;3664:172::-;3750:4;3766:42;666:10:12;3790:9:1;3801:6;3766:9;:42::i;9962:370::-;-1:-1:-1;;;;;10093:19:1;;10085:68;;;;-1:-1:-1;;;10085:68:1;;4347:2:84;10085:68:1;;;4329:21:84;4386:2;4366:18;;;4359:30;4425:34;4405:18;;;4398:62;4496:6;4476:18;;;4469:34;4520:19;;10085:68:1;4319:226:84;10085:68:1;-1:-1:-1;;;;;10171:21:1;;10163:68;;;;-1:-1:-1;;;10163:68:1;;2722:2:84;10163:68:1;;;2704:21:84;2761:2;2741:18;;;2734:30;2800:34;2780:18;;;2773:62;2871:4;2851:18;;;2844:32;2893:19;;10163:68:1;2694:224:84;10163:68:1;-1:-1:-1;;;;;10242:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10293:32;;5102:25:84;;;10293:32:1;;5075:18:84;10293:32:1;;;;;;;9962:370;;;:::o;7265:713::-;-1:-1:-1;;;;;7400:20:1;;7392:70;;;;-1:-1:-1;;;7392:70:1;;3941:2:84;7392:70:1;;;3923:21:84;3980:2;3960:18;;;3953:30;4019:34;3999:18;;;3992:62;4090:7;4070:18;;;4063:35;4115:19;;7392:70:1;3913:227:84;7392:70:1;-1:-1:-1;;;;;7480:23:1;;7472:71;;;;-1:-1:-1;;;7472:71:1;;2318:2:84;7472:71:1;;;2300:21:84;2357:2;2337:18;;;2330:30;2396:34;2376:18;;;2369:62;2467:5;2447:18;;;2440:33;2490:19;;7472:71:1;2290:225:84;7472:71:1;-1:-1:-1;;;;;7636:17:1;;7612:21;7636:17;;;;;;;;;;;7671:23;;;;7663:74;;;;-1:-1:-1;;;7663:74:1;;3125:2:84;7663:74:1;;;3107:21:84;3164:2;3144:18;;;3137:30;3203:34;3183:18;;;3176:62;3274:8;3254:18;;;3247:36;3300:19;;7663:74:1;3097:228:84;7663:74:1;-1:-1:-1;;;;;7771:17:1;;;:9;:17;;;;;;;;;;;7791:22;;;7771:42;;7833:20;;;;;;;;:30;;7807:6;;7771:9;7833:30;;7807:6;;7833:30;:::i;:::-;;;;;;;;7896:9;-1:-1:-1;;;;;7879:35:1;7888:6;-1:-1:-1;;;;;7879:35:1;;7907:6;7879:35;;;;5102:25:84;;5090:2;5075:18;;5057:76;7879:35:1;;;;;;;;7382:596;7265:713;;;:::o;14:196:84:-;82:20;;-1:-1:-1;;;;;131:54:84;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;:::-;356:39;285:116;-1:-1:-1;;;285:116:84:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:254::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:2;;;1149:1;1146;1139:12;1101:2;1172:29;1191:9;1172:29;:::i;:::-;1162:39;1248:2;1233:18;;;;1220:32;;-1:-1:-1;;;1091:167:84:o;1455:656::-;1567:4;1596:2;1625;1614:9;1607:21;1657:6;1651:13;1700:6;1695:2;1684:9;1680:18;1673:34;1725:1;1735:140;1749:6;1746:1;1743:13;1735:140;;;1844:14;;;1840:23;;1834:30;1810:17;;;1829:2;1806:26;1799:66;1764:10;;1735:140;;;1893:6;1890:1;1887:13;1884:2;;;1963:1;1958:2;1949:6;1938:9;1934:22;1930:31;1923:42;1884:2;-1:-1:-1;2027:2:84;2015:15;2032:66;2011:88;1996:104;;;;2102:2;1992:113;;1576:535;-1:-1:-1;;;1576:535:84:o;5327:282::-;5367:3;5398:1;5394:6;5391:1;5388:13;5385:2;;;5434:77;5431:1;5424:88;5535:4;5532:1;5525:15;5563:4;5560:1;5553:15;5385:2;-1:-1:-1;5594:9:84;;5375:234::o;5614:437::-;5693:1;5689:12;;;;5736;;;5757:2;;5811:4;5803:6;5799:17;5789:27;;5757:2;5864;5856:6;5853:14;5833:18;5830:38;5827:2;;;5901:77;5898:1;5891:88;6002:4;5999:1;5992:15;6030:4;6027:1;6020:15;5827:2;;5669:382;;;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "505200",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24642",
                "balanceOf(address)": "2585",
                "decimals()": "244",
                "decreaseAllowance(address,uint256)": "26910",
                "increaseAllowance(address,uint256)": "26957",
                "name()": "infinite",
                "symbol()": "infinite",
                "totalSupply()": "2304",
                "transfer(address,uint256)": "51209",
                "transferFrom(address,address,uint256)": "infinite"
              },
              "internal": {
                "_afterTokenTransfer(address,address,uint256)": "infinite",
                "_approve(address,address,uint256)": "infinite",
                "_beforeTokenTransfer(address,address,uint256)": "infinite",
                "_burn(address,uint256)": "infinite",
                "_mint(address,uint256)": "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"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"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\"}],\"devdoc\":{\"details\":\"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 Contracts guidelines: functions revert instead 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}.\",\"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}.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. The default value of {decimals} is 18. To select a different value for {decimals} you should overload it. All two of these values are immutable: they can only be set once during construction.\"},\"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 this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `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\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\\n * instead returning `false` on failure. This behavior is nonetheless\\n * conventional and does not conflict with the expectations of ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(string memory name_, string memory symbol_) {\\n        _name = name_;\\n        _symbol = symbol_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual override returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual override returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual override returns (uint8) {\\n        return 18;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual override returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual override returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\\n        _transfer(_msgSender(), recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\\n        _approve(_msgSender(), spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual override returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][_msgSender()];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, _msgSender(), currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n        uint256 currentAllowance = _allowances[_msgSender()][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(_msgSender(), spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n}\\n\",\"keccak256\":\"0xb03df8481a954604ad0c9125680893b2e3f7ff770fe470e38b89ac61b84e8072\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\n */\\ninterface IERC20Metadata is IERC20 {\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the symbol of the token.\\n     */\\n    function symbol() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the decimals places of the token.\\n     */\\n    function decimals() external view returns (uint8);\\n}\\n\",\"keccak256\":\"0x83fe24f5c04a56091e50f4a345ff504c8bff658a76d4c43b16878c8f940c53b2\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n    function _msgSender() internal view virtual returns (address) {\\n        return msg.sender;\\n    }\\n\\n    function _msgData() internal view virtual returns (bytes calldata) {\\n        return msg.data;\\n    }\\n}\\n\",\"keccak256\":\"0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 55,
                "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 61,
                "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 63,
                "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 65,
                "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 67,
                "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC20/IERC20.sol": {
        "IERC20": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Interface of the ERC20 standard as defined in the EIP.",
            "events": {
              "Approval(address,address,uint256)": {
                "details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
              },
              "Transfer(address,address,uint256)": {
                "details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
              }
            },
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "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."
              },
              "approve(address,uint256)": {
                "details": "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."
              },
              "balanceOf(address)": {
                "details": "Returns the amount of tokens owned by `account`."
              },
              "totalSupply()": {
                "details": "Returns the amount of tokens in existence."
              },
              "transfer(address,uint256)": {
                "details": "Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              },
              "transferFrom(address,address,uint256)": {
                "details": "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."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC20 standard as defined in the EIP.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"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.\"},\"approve(address,uint256)\":{\"details\":\"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.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"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.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
        "IERC20Metadata": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "decimals",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "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": "Interface for the optional metadata functions from the ERC20 standard. _Available since v4.1._",
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "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."
              },
              "approve(address,uint256)": {
                "details": "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."
              },
              "balanceOf(address)": {
                "details": "Returns the amount of tokens owned by `account`."
              },
              "decimals()": {
                "details": "Returns the decimals places of the token."
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "symbol()": {
                "details": "Returns the symbol of the token."
              },
              "totalSupply()": {
                "details": "Returns the amount of tokens in existence."
              },
              "transfer(address,uint256)": {
                "details": "Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              },
              "transferFrom(address,address,uint256)": {
                "details": "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."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "decimals()": "313ce567",
              "name()": "06fdde03",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"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\":\"Interface for the optional metadata functions from the ERC20 standard. _Available since v4.1._\",\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"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.\"},\"approve(address,uint256)\":{\"details\":\"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.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"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.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":\"IERC20Metadata\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\n */\\ninterface IERC20Metadata is IERC20 {\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the symbol of the token.\\n     */\\n    function symbol() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the decimals places of the token.\\n     */\\n    function decimals() external view returns (uint8);\\n}\\n\",\"keccak256\":\"0x83fe24f5c04a56091e50f4a345ff504c8bff658a76d4c43b16878c8f940c53b2\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol": {
        "ERC20Permit": {
          "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": [],
              "name": "DOMAIN_SEPARATOR",
              "outputs": [
                {
                  "internalType": "bytes32",
                  "name": "",
                  "type": "bytes32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "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": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "nonces",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "deadline",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "v",
                  "type": "uint8"
                },
                {
                  "internalType": "bytes32",
                  "name": "r",
                  "type": "bytes32"
                },
                {
                  "internalType": "bytes32",
                  "name": "s",
                  "type": "bytes32"
                }
              ],
              "name": "permit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "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": "Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all. _Available since v3.4._",
            "kind": "dev",
            "methods": {
              "DOMAIN_SEPARATOR()": {
                "details": "See {IERC20Permit-DOMAIN_SEPARATOR}."
              },
              "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}."
              },
              "constructor": {
                "details": "Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`. It's a good idea to use the same `name` that is defined as the ERC20 token name."
              },
              "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 this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
              },
              "decreaseAllowance(address,uint256)": {
                "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
              },
              "increaseAllowance(address,uint256)": {
                "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "nonces(address)": {
                "details": "See {IERC20Permit-nonces}."
              },
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": {
                "details": "See {IERC20Permit-permit}."
              },
              "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
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "DOMAIN_SEPARATOR()": "3644e515",
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "increaseAllowance(address,uint256)": "39509351",
              "name()": "06fdde03",
              "nonces(address)": "7ecebe00",
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "d505accf",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"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\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"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\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":\"Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all. _Available since v3.4._\",\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"See {IERC20Permit-DOMAIN_SEPARATOR}.\"},\"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}.\"},\"constructor\":{\"details\":\"Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\\\"1\\\"`. It's a good idea to use the same `name` that is defined as the ERC20 token name.\"},\"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 this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"nonces(address)\":{\"details\":\"See {IERC20Permit-nonces}.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"See {IERC20Permit-permit}.\"},\"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\":{\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\":\"ERC20Permit\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\\n * instead returning `false` on failure. This behavior is nonetheless\\n * conventional and does not conflict with the expectations of ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(string memory name_, string memory symbol_) {\\n        _name = name_;\\n        _symbol = symbol_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual override returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual override returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual override returns (uint8) {\\n        return 18;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual override returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual override returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\\n        _transfer(_msgSender(), recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\\n        _approve(_msgSender(), spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual override returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][_msgSender()];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, _msgSender(), currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n        uint256 currentAllowance = _allowances[_msgSender()][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(_msgSender(), spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n}\\n\",\"keccak256\":\"0xb03df8481a954604ad0c9125680893b2e3f7ff770fe470e38b89ac61b84e8072\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\n */\\ninterface IERC20Metadata is IERC20 {\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the symbol of the token.\\n     */\\n    function symbol() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the decimals places of the token.\\n     */\\n    function decimals() external view returns (uint8);\\n}\\n\",\"keccak256\":\"0x83fe24f5c04a56091e50f4a345ff504c8bff658a76d4c43b16878c8f940c53b2\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./draft-IERC20Permit.sol\\\";\\nimport \\\"../ERC20.sol\\\";\\nimport \\\"../../../utils/cryptography/draft-EIP712.sol\\\";\\nimport \\\"../../../utils/cryptography/ECDSA.sol\\\";\\nimport \\\"../../../utils/Counters.sol\\\";\\n\\n/**\\n * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n *\\n * _Available since v3.4._\\n */\\nabstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {\\n    using Counters for Counters.Counter;\\n\\n    mapping(address => Counters.Counter) private _nonces;\\n\\n    // solhint-disable-next-line var-name-mixedcase\\n    bytes32 private immutable _PERMIT_TYPEHASH =\\n        keccak256(\\\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\\\");\\n\\n    /**\\n     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\\\"1\\\"`.\\n     *\\n     * It's a good idea to use the same `name` that is defined as the ERC20 token name.\\n     */\\n    constructor(string memory name) EIP712(name, \\\"1\\\") {}\\n\\n    /**\\n     * @dev See {IERC20Permit-permit}.\\n     */\\n    function permit(\\n        address owner,\\n        address spender,\\n        uint256 value,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) public virtual override {\\n        require(block.timestamp <= deadline, \\\"ERC20Permit: expired deadline\\\");\\n\\n        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));\\n\\n        bytes32 hash = _hashTypedDataV4(structHash);\\n\\n        address signer = ECDSA.recover(hash, v, r, s);\\n        require(signer == owner, \\\"ERC20Permit: invalid signature\\\");\\n\\n        _approve(owner, spender, value);\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-nonces}.\\n     */\\n    function nonces(address owner) public view virtual override returns (uint256) {\\n        return _nonces[owner].current();\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view override returns (bytes32) {\\n        return _domainSeparatorV4();\\n    }\\n\\n    /**\\n     * @dev \\\"Consume a nonce\\\": return the current value and increment.\\n     *\\n     * _Available since v4.1._\\n     */\\n    function _useNonce(address owner) internal virtual returns (uint256 current) {\\n        Counters.Counter storage nonce = _nonces[owner];\\n        current = nonce.current();\\n        nonce.increment();\\n    }\\n}\\n\",\"keccak256\":\"0x7ce4684ee1fac31ee5671df82b30c10bd2ebf88add2f63524ed00618a8486907\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n */\\ninterface IERC20Permit {\\n    /**\\n     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\\n     * given ``owner``'s signed approval.\\n     *\\n     * IMPORTANT: The same issues {IERC20-approve} has related to transaction\\n     * ordering also apply here.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `deadline` must be a timestamp in the future.\\n     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\\n     * over the EIP712-formatted function arguments.\\n     * - the signature must use ``owner``'s current nonce (see {nonces}).\\n     *\\n     * For more information on the signature format, see the\\n     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\\n     * section].\\n     */\\n    function permit(\\n        address owner,\\n        address spender,\\n        uint256 value,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @dev Returns the current nonce for `owner`. This value must be\\n     * included whenever a signature is generated for {permit}.\\n     *\\n     * Every successful call to {permit} increases ``owner``'s nonce by one. This\\n     * prevents a signature from being used multiple times.\\n     */\\n    function nonces(address owner) external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view returns (bytes32);\\n}\\n\",\"keccak256\":\"0x3aab711a5f9a5a5a394191e928cc8258e8a243e855bb0275e7834f9686383277\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n    function _msgSender() internal view virtual returns (address) {\\n        return msg.sender;\\n    }\\n\\n    function _msgData() internal view virtual returns (bytes calldata) {\\n        return msg.data;\\n    }\\n}\\n\",\"keccak256\":\"0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Counters.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Counters\\n * @author Matt Condon (@shrugs)\\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\\n *\\n * Include with `using Counters for Counters.Counter;`\\n */\\nlibrary Counters {\\n    struct Counter {\\n        // This variable should never be directly accessed by users of the library: interactions must be restricted to\\n        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\\n        // this feature: see https://github.com/ethereum/solidity/issues/4637\\n        uint256 _value; // default: 0\\n    }\\n\\n    function current(Counter storage counter) internal view returns (uint256) {\\n        return counter._value;\\n    }\\n\\n    function increment(Counter storage counter) internal {\\n        unchecked {\\n            counter._value += 1;\\n        }\\n    }\\n\\n    function decrement(Counter storage counter) internal {\\n        uint256 value = counter._value;\\n        require(value > 0, \\\"Counter: decrement overflow\\\");\\n        unchecked {\\n            counter._value = value - 1;\\n        }\\n    }\\n\\n    function reset(Counter storage counter) internal {\\n        counter._value = 0;\\n    }\\n}\\n\",\"keccak256\":\"0x78450f4e3b722cce467b21e285f72ce5eaf361e9ba9dd2241a413926246773cd\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\\n *\\n * These functions can be used to verify that a message was signed by the holder\\n * of the private keys of a given address.\\n */\\nlibrary ECDSA {\\n    enum RecoverError {\\n        NoError,\\n        InvalidSignature,\\n        InvalidSignatureLength,\\n        InvalidSignatureS,\\n        InvalidSignatureV\\n    }\\n\\n    function _throwError(RecoverError error) private pure {\\n        if (error == RecoverError.NoError) {\\n            return; // no error: do nothing\\n        } else if (error == RecoverError.InvalidSignature) {\\n            revert(\\\"ECDSA: invalid signature\\\");\\n        } else if (error == RecoverError.InvalidSignatureLength) {\\n            revert(\\\"ECDSA: invalid signature length\\\");\\n        } else if (error == RecoverError.InvalidSignatureS) {\\n            revert(\\\"ECDSA: invalid signature 's' value\\\");\\n        } else if (error == RecoverError.InvalidSignatureV) {\\n            revert(\\\"ECDSA: invalid signature 'v' value\\\");\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature` or error string. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {toEthSignedMessageHash} on it.\\n     *\\n     * Documentation for signature generation:\\n     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\\n     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\\n        // Check the signature length\\n        // - case 65: r,s,v signature (standard)\\n        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._\\n        if (signature.length == 65) {\\n            bytes32 r;\\n            bytes32 s;\\n            uint8 v;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                s := mload(add(signature, 0x40))\\n                v := byte(0, mload(add(signature, 0x60)))\\n            }\\n            return tryRecover(hash, v, r, s);\\n        } else if (signature.length == 64) {\\n            bytes32 r;\\n            bytes32 vs;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                vs := mload(add(signature, 0x40))\\n            }\\n            return tryRecover(hash, r, vs);\\n        } else {\\n            return (address(0), RecoverError.InvalidSignatureLength);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature`. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {toEthSignedMessageHash} on it.\\n     */\\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, signature);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\\n     *\\n     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address, RecoverError) {\\n        bytes32 s;\\n        uint8 v;\\n        assembly {\\n            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\\n            v := add(shr(255, vs), 27)\\n        }\\n        return tryRecover(hash, v, r, s);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\\n     *\\n     * _Available since v4.2._\\n     */\\n    function recover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, r, vs);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address, RecoverError) {\\n        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\\n        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\\n        // the valid range for s in (301): 0 < s < secp256k1n \\u00f7 2 + 1, and for v in (302): v \\u2208 {27, 28}. Most\\n        // signatures from current libraries generate a unique signature with an s-value in the lower half order.\\n        //\\n        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\\n        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\\n        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\\n        // these malleable signatures as well.\\n        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\\n            return (address(0), RecoverError.InvalidSignatureS);\\n        }\\n        if (v != 27 && v != 28) {\\n            return (address(0), RecoverError.InvalidSignatureV);\\n        }\\n\\n        // If the signature is valid (and not malleable), return the signer address\\n        address signer = ecrecover(hash, v, r, s);\\n        if (signer == address(0)) {\\n            return (address(0), RecoverError.InvalidSignature);\\n        }\\n\\n        return (signer, RecoverError.NoError);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     */\\n    function recover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from a `hash`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {\\n        // 32 is the length in bytes of hash,\\n        // enforced by the type signature above\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n32\\\", hash));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Typed Data, created from a\\n     * `domainSeparator` and a `structHash`. This produces hash corresponding\\n     * to the one signed with the\\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\\n     * JSON-RPC method as part of EIP-712.\\n     *\\n     * See {recover}.\\n     */\\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19\\\\x01\\\", domainSeparator, structHash));\\n    }\\n}\\n\",\"keccak256\":\"0xbc991a1cf357ce19480831a40792c814238a3b5458134703682abd8aa39719fb\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./ECDSA.sol\\\";\\n\\n/**\\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.\\n *\\n * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\\n * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\\n * they need in their contracts using a combination of `abi.encode` and `keccak256`.\\n *\\n * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\\n * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\\n * ({_hashTypedDataV4}).\\n *\\n * The implementation of the domain separator was designed to be as efficient as possible while still properly updating\\n * the chain id to protect against replay attacks on an eventual fork of the chain.\\n *\\n * NOTE: This contract implements the version of the encoding known as \\\"v4\\\", as implemented by the JSON RPC method\\n * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\\n *\\n * _Available since v3.4._\\n */\\nabstract contract EIP712 {\\n    /* solhint-disable var-name-mixedcase */\\n    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to\\n    // invalidate the cached domain separator if the chain id changes.\\n    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;\\n    uint256 private immutable _CACHED_CHAIN_ID;\\n\\n    bytes32 private immutable _HASHED_NAME;\\n    bytes32 private immutable _HASHED_VERSION;\\n    bytes32 private immutable _TYPE_HASH;\\n\\n    /* solhint-enable var-name-mixedcase */\\n\\n    /**\\n     * @dev Initializes the domain separator and parameter caches.\\n     *\\n     * The meaning of `name` and `version` is specified in\\n     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:\\n     *\\n     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\\n     * - `version`: the current major version of the signing domain.\\n     *\\n     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\\n     * contract upgrade].\\n     */\\n    constructor(string memory name, string memory version) {\\n        bytes32 hashedName = keccak256(bytes(name));\\n        bytes32 hashedVersion = keccak256(bytes(version));\\n        bytes32 typeHash = keccak256(\\n            \\\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\\\"\\n        );\\n        _HASHED_NAME = hashedName;\\n        _HASHED_VERSION = hashedVersion;\\n        _CACHED_CHAIN_ID = block.chainid;\\n        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);\\n        _TYPE_HASH = typeHash;\\n    }\\n\\n    /**\\n     * @dev Returns the domain separator for the current chain.\\n     */\\n    function _domainSeparatorV4() internal view returns (bytes32) {\\n        if (block.chainid == _CACHED_CHAIN_ID) {\\n            return _CACHED_DOMAIN_SEPARATOR;\\n        } else {\\n            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);\\n        }\\n    }\\n\\n    function _buildDomainSeparator(\\n        bytes32 typeHash,\\n        bytes32 nameHash,\\n        bytes32 versionHash\\n    ) private view returns (bytes32) {\\n        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));\\n    }\\n\\n    /**\\n     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\\n     * function returns the hash of the fully encoded EIP712 message for this domain.\\n     *\\n     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\\n     *\\n     * ```solidity\\n     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\\n     *     keccak256(\\\"Mail(address to,string contents)\\\"),\\n     *     mailTo,\\n     *     keccak256(bytes(mailContents))\\n     * )));\\n     * address signer = ECDSA.recover(digest, signature);\\n     * ```\\n     */\\n    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {\\n        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);\\n    }\\n}\\n\",\"keccak256\":\"0xba18d725602452307e5b278ed4566616c63792d89f3a0388a6f285428c26e681\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 55,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 61,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 63,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 65,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 67,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 711,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_nonces",
                "offset": 0,
                "slot": "5",
                "type": "t_mapping(t_address,t_struct(Counter)2419_storage)"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_struct(Counter)2419_storage)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => struct Counters.Counter)",
                "numberOfBytes": "32",
                "value": "t_struct(Counter)2419_storage"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_struct(Counter)2419_storage": {
                "encoding": "inplace",
                "label": "struct Counters.Counter",
                "members": [
                  {
                    "astId": 2418,
                    "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                    "label": "_value",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint256"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol": {
        "IERC20Permit": {
          "abi": [
            {
              "inputs": [],
              "name": "DOMAIN_SEPARATOR",
              "outputs": [
                {
                  "internalType": "bytes32",
                  "name": "",
                  "type": "bytes32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "nonces",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "deadline",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "v",
                  "type": "uint8"
                },
                {
                  "internalType": "bytes32",
                  "name": "r",
                  "type": "bytes32"
                },
                {
                  "internalType": "bytes32",
                  "name": "s",
                  "type": "bytes32"
                }
              ],
              "name": "permit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all.",
            "kind": "dev",
            "methods": {
              "DOMAIN_SEPARATOR()": {
                "details": "Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}."
              },
              "nonces(address)": {
                "details": "Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times."
              },
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": {
                "details": "Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also apply here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "DOMAIN_SEPARATOR()": "3644e515",
              "nonces(address)": "7ecebe00",
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "d505accf"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all.\",\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"nonces(address)\":{\"details\":\"Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also apply here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section].\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\":\"IERC20Permit\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n */\\ninterface IERC20Permit {\\n    /**\\n     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\\n     * given ``owner``'s signed approval.\\n     *\\n     * IMPORTANT: The same issues {IERC20-approve} has related to transaction\\n     * ordering also apply here.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `deadline` must be a timestamp in the future.\\n     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\\n     * over the EIP712-formatted function arguments.\\n     * - the signature must use ``owner``'s current nonce (see {nonces}).\\n     *\\n     * For more information on the signature format, see the\\n     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\\n     * section].\\n     */\\n    function permit(\\n        address owner,\\n        address spender,\\n        uint256 value,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @dev Returns the current nonce for `owner`. This value must be\\n     * included whenever a signature is generated for {permit}.\\n     *\\n     * Every successful call to {permit} increases ``owner``'s nonce by one. This\\n     * prevents a signature from being used multiple times.\\n     */\\n    function nonces(address owner) external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view returns (bytes32);\\n}\\n\",\"keccak256\":\"0x3aab711a5f9a5a5a394191e928cc8258e8a243e855bb0275e7834f9686383277\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol": {
        "SafeERC20": {
          "abi": [],
          "devdoc": {
            "details": "Wrappers around ERC20 operations that throw on failure (when the token contract returns false). Tokens that return no value (and instead revert or throw on failure) are also supported, non-reverting calls are assumed to be successful. To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, which allows you to call the safe operations as `token.safeTransfer(...)`, etc.",
            "kind": "dev",
            "methods": {},
            "title": "SafeERC20",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212205b3ada29dad7acf7fb3af4a8a72a607f7ee724b72913f60426e1c6e9f9bfe0f964736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMPDEST GASPRICE 0xDA 0x29 0xDA 0xD7 0xAC 0xF7 0xFB GASPRICE DELEGATECALL 0xA8 0xA7 0x2A PUSH1 0x7F PUSH31 0xE724B72913F60426E1C6E9F9BFE0F964736F6C634300080600330000000000 ",
              "sourceMap": "578:3270:6:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;578:3270:6;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212205b3ada29dad7acf7fb3af4a8a72a607f7ee724b72913f60426e1c6e9f9bfe0f964736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMPDEST GASPRICE 0xDA 0x29 0xDA 0xD7 0xAC 0xF7 0xFB GASPRICE DELEGATECALL 0xA8 0xA7 0x2A PUSH1 0x7F PUSH31 0xE724B72913F60426E1C6E9F9BFE0F964736F6C634300080600330000000000 ",
              "sourceMap": "578:3270:6:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "_callOptionalReturn(contract IERC20,bytes memory)": "infinite",
                "safeApprove(contract IERC20,address,uint256)": "infinite",
                "safeDecreaseAllowance(contract IERC20,address,uint256)": "infinite",
                "safeIncreaseAllowance(contract IERC20,address,uint256)": "infinite",
                "safeTransfer(contract IERC20,address,uint256)": "infinite",
                "safeTransferFrom(contract IERC20,address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Wrappers around ERC20 operations that throw on failure (when the token contract returns false). Tokens that return no value (and instead revert or throw on failure) are also supported, non-reverting calls are assumed to be successful. To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\",\"kind\":\"dev\",\"methods\":{},\"title\":\"SafeERC20\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":\"SafeERC20\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC721/ERC721.sol": {
        "ERC721": {
          "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": "approved",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "bool",
                  "name": "approved",
                  "type": "bool"
                }
              ],
              "name": "ApprovalForAll",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "getApproved",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                }
              ],
              "name": "isApprovedForAll",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "ownerOf",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "safeTransferFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                },
                {
                  "internalType": "bytes",
                  "name": "_data",
                  "type": "bytes"
                }
              ],
              "name": "safeTransferFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "internalType": "bool",
                  "name": "approved",
                  "type": "bool"
                }
              ],
              "name": "setApprovalForAll",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "bytes4",
                  "name": "interfaceId",
                  "type": "bytes4"
                }
              ],
              "name": "supportsInterface",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "symbol",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "tokenURI",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including the Metadata extension, but not including the Enumerable extension, which is available separately as {ERC721Enumerable}.",
            "kind": "dev",
            "methods": {
              "approve(address,uint256)": {
                "details": "See {IERC721-approve}."
              },
              "balanceOf(address)": {
                "details": "See {IERC721-balanceOf}."
              },
              "constructor": {
                "details": "Initializes the contract by setting a `name` and a `symbol` to the token collection."
              },
              "getApproved(uint256)": {
                "details": "See {IERC721-getApproved}."
              },
              "isApprovedForAll(address,address)": {
                "details": "See {IERC721-isApprovedForAll}."
              },
              "name()": {
                "details": "See {IERC721Metadata-name}."
              },
              "ownerOf(uint256)": {
                "details": "See {IERC721-ownerOf}."
              },
              "safeTransferFrom(address,address,uint256)": {
                "details": "See {IERC721-safeTransferFrom}."
              },
              "safeTransferFrom(address,address,uint256,bytes)": {
                "details": "See {IERC721-safeTransferFrom}."
              },
              "setApprovalForAll(address,bool)": {
                "details": "See {IERC721-setApprovalForAll}."
              },
              "supportsInterface(bytes4)": {
                "details": "See {IERC165-supportsInterface}."
              },
              "symbol()": {
                "details": "See {IERC721Metadata-symbol}."
              },
              "tokenURI(uint256)": {
                "details": "See {IERC721Metadata-tokenURI}."
              },
              "transferFrom(address,address,uint256)": {
                "details": "See {IERC721-transferFrom}."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_1180": {
                  "entryPoint": null,
                  "id": 1180,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 270,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
                  "entryPoint": 453,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "extract_byte_array_length": {
                  "entryPoint": 559,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 620,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1985:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:821:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:84"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:84"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:84",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:84"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:84",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:84"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:84"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "543:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "553:4:84",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "547:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "603:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "612:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "615:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "605:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "605:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "605:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "580:6:84"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "588:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "576:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "576:15:84"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "593:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "572:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "572:24:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "598:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "569:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "569:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "566:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "628:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "637:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "632:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "693:87:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "722:6:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "730:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "718:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "718:14:84"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "734:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "714:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "714:23:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "offset",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "753:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "761:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "749:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "749:14:84"
                                                },
                                                {
                                                  "name": "_4",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "765:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "745:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "745:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "739:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "739:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "707:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "707:63:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "707:63:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "661:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "655:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "655:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "665:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "667:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "676:1:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "679:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "672:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "672:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "667:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "651:3:84",
                                "statements": []
                              },
                              "src": "647:133:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "810:59:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "839:6:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "847:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "835:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "835:15:84"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "852:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "831:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "831:24:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "857:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:35:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:35:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "795:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "798:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "792:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "792:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "789:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "878:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "887:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "878:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:885:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1022:444:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1068:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1077:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1080:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1070:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1070:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1070:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1043:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1052:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1039:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1039:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1064:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1035:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1035:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1032:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1093:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1113:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1107:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1107:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1097:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1132:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1150:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1154:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1146:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1146:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1158:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1142:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1142:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1136:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1187:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1196:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1199:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1189:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1189:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1189:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1175:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1183:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1169:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1212:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1255:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1266:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1251:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1251:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1275:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1222:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1222:61:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1212:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1292:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1318:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1329:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1314:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1314:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1308:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1308:25:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1296:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1362:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1371:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1374:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1364:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1364:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1364:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1348:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1358:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1345:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1345:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1342:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1387:73:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1430:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1441:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1426:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1426:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1452:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1397:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1397:63:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1387:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "980:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "991:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1003:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1011:6:84",
                            "type": ""
                          }
                        ],
                        "src": "904:562:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1526:325:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1536:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1550:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1553:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "1546:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1546:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1536:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1567:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1597:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1603:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "1593:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1593:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "1571:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1644:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1646:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "1660:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1668:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "1656:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1656:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1646:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1624:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1617:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1617:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1614:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1734:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1755:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1762:3:84",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1767:10:84",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "1758:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1758:20:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1748:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1748:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1748:31:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1799:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1802:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1792:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1792:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1792:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1827:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1830:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1820:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1820:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1820:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1690:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1713:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1721:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1710:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1710:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "1687:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1687:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1684:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "1506:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1515:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1471:380:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1888:95:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1905:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1912:3:84",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1917:10:84",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1908:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1908:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1898:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1898:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1898:31:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1945:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1948:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1938:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1938:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1938:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1969:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1972:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "1962:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1962:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1962:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "1856:127:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        let _4 := 0x20\n        if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _1) { i := add(i, _4) }\n        {\n            mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n        }\n        if gt(i, _1)\n        {\n            mstore(add(add(memPtr, _1), _4), 0)\n        }\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b50604051620017d1380380620017d18339810160408190526200003491620001c5565b81516200004990600090602085019062000068565b5080516200005f90600190602084019062000068565b50505062000282565b82805462000076906200022f565b90600052602060002090601f0160209004810192826200009a5760008555620000e5565b82601f10620000b557805160ff1916838001178555620000e5565b82800160010185558215620000e5579182015b82811115620000e5578251825591602001919060010190620000c8565b50620000f3929150620000f7565b5090565b5b80821115620000f35760008155600101620000f8565b600082601f8301126200012057600080fd5b81516001600160401b03808211156200013d576200013d6200026c565b604051601f8301601f19908116603f011681019082821181831017156200016857620001686200026c565b816040528381526020925086838588010111156200018557600080fd5b600091505b83821015620001a957858201830151818301840152908201906200018a565b83821115620001bb5760008385830101525b9695505050505050565b60008060408385031215620001d957600080fd5b82516001600160401b0380821115620001f157600080fd5b620001ff868387016200010e565b935060208501519150808211156200021657600080fd5b5062000225858286016200010e565b9150509250929050565b600181811c908216806200024457607f821691505b602082108114156200026657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61153f80620002926000396000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb465146101c3578063b88d4fde146101d6578063c87b56dd146101e9578063e985e9c5146101fc57600080fd5b80636352211e1461018757806370a082311461019a57806395d89b41146101bb57600080fd5b8063095ea7b3116100bd578063095ea7b31461014c57806323b872dd1461016157806342842e0e1461017457600080fd5b806301ffc9a7146100e457806306fdde031461010c578063081812fc14610121575b600080fd5b6100f76100f236600461128c565b610238565b60405190151581526020015b60405180910390f35b61011461031d565b6040516101039190611376565b61013461012f3660046112c6565b6103af565b6040516001600160a01b039091168152602001610103565b61015f61015a366004611262565b61045a565b005b61015f61016f36600461110e565b61058c565b61015f61018236600461110e565b610613565b6101346101953660046112c6565b61062e565b6101ad6101a83660046110c0565b6106b9565b604051908152602001610103565b610114610753565b61015f6101d1366004611226565b610762565b61015f6101e436600461114a565b610845565b6101146101f73660046112c6565b6108d3565b6100f761020a3660046110db565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806102cb57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061031757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606000805461032c906113f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610358906113f8565b80156103a55780601f1061037a576101008083540402835291602001916103a5565b820191906000526020600020905b81548152906001019060200180831161038857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661043e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104658261062e565b9050806001600160a01b0316836001600160a01b031614156104ef5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610435565b336001600160a01b038216148061050b575061050b813361020a565b61057d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610435565b61058783836109c9565b505050565b6105963382610a4f565b6106085760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610435565b610587838383610b57565b61058783838360405180602001604052806000815250610845565b6000818152600260205260408120546001600160a01b0316806103175760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610435565b60006001600160a01b0382166107375760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610435565b506001600160a01b031660009081526003602052604090205490565b60606001805461032c906113f8565b6001600160a01b0382163314156107bb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610435565b3360008181526005602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61084f3383610a4f565b6108c15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610435565b6108cd84848484610d3c565b50505050565b6000818152600260205260409020546060906001600160a01b03166109605760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610435565b600061097760408051602081019091526000815290565b9050600081511161099757604051806020016040528060008152506109c2565b806109a184610dc5565b6040516020016109b292919061130b565b6040516020818303038152906040525b9392505050565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190610a168261062e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ad95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610435565b6000610ae48361062e565b9050806001600160a01b0316846001600160a01b03161480610b1f5750836001600160a01b0316610b14846103af565b6001600160a01b0316145b80610b4f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610b6a8261062e565b6001600160a01b031614610be65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610435565b6001600160a01b038216610c615760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610435565b610c6c6000826109c9565b6001600160a01b0383166000908152600360205260408120805460019290610c959084906113b5565b90915550506001600160a01b0382166000908152600360205260408120805460019290610cc3908490611389565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d47848484610b57565b610d5384848484610ef7565b6108cd5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610435565b606081610e0557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115610e2f5780610e1981611433565b9150610e289050600a836113a1565b9150610e09565b60008167ffffffffffffffff811115610e4a57610e4a6114c2565b6040519080825280601f01601f191660200182016040528015610e74576020820181803683370190505b5090505b8415610b4f57610e896001836113b5565b9150610e96600a8661146c565b610ea1906030611389565b60f81b818381518110610eb657610eb66114ac565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350610ef0600a866113a1565b9450610e78565b60006001600160a01b0384163b15611099576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290610f5490339089908890889060040161133a565b602060405180830381600087803b158015610f6e57600080fd5b505af1925050508015610f9e575060408051601f3d908101601f19168201909252610f9b918101906112a9565b60015b61104e573d808015610fcc576040519150601f19603f3d011682016040523d82523d6000602084013e610fd1565b606091505b5080516110465760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610435565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610b4f565b506001949350505050565b80356001600160a01b03811681146110bb57600080fd5b919050565b6000602082840312156110d257600080fd5b6109c2826110a4565b600080604083850312156110ee57600080fd5b6110f7836110a4565b9150611105602084016110a4565b90509250929050565b60008060006060848603121561112357600080fd5b61112c846110a4565b925061113a602085016110a4565b9150604084013590509250925092565b6000806000806080858703121561116057600080fd5b611169856110a4565b9350611177602086016110a4565b925060408501359150606085013567ffffffffffffffff8082111561119b57600080fd5b818701915087601f8301126111af57600080fd5b8135818111156111c1576111c16114c2565b604051601f8201601f19908116603f011681019083821181831017156111e9576111e96114c2565b816040528281528a602084870101111561120257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561123957600080fd5b611242836110a4565b91506020830135801515811461125757600080fd5b809150509250929050565b6000806040838503121561127557600080fd5b61127e836110a4565b946020939093013593505050565b60006020828403121561129e57600080fd5b81356109c2816114d8565b6000602082840312156112bb57600080fd5b81516109c2816114d8565b6000602082840312156112d857600080fd5b5035919050565b600081518084526112f78160208601602086016113cc565b601f01601f19169290920160200192915050565b6000835161131d8184602088016113cc565b8351908301906113318183602088016113cc565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261136c60808301846112df565b9695505050505050565b6020815260006109c260208301846112df565b6000821982111561139c5761139c611480565b500190565b6000826113b0576113b0611496565b500490565b6000828210156113c7576113c7611480565b500390565b60005b838110156113e75781810151838201526020016113cf565b838111156108cd5750506000910152565b600181811c9082168061140c57607f821691505b6020821081141561142d57634e487b7160e01b600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561146557611465611480565b5060010190565b60008261147b5761147b611496565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461150657600080fd5b5056fea2646970667358221220ae71c2573b1369acdc04e6556c64346a7e1a2def0c5e92060a86dbde8961d48d64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x17D1 CODESIZE SUB DUP1 PUSH3 0x17D1 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1C5 JUMP JUMPDEST DUP2 MLOAD PUSH3 0x49 SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x5F SWAP1 PUSH1 0x1 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP POP POP PUSH3 0x282 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x76 SWAP1 PUSH3 0x22F JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x9A JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xB5 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xE5 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xE5 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xC8 JUMP JUMPDEST POP PUSH3 0xF3 SWAP3 SWAP2 POP PUSH3 0xF7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0xF3 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0xF8 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x120 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x13D JUMPI PUSH3 0x13D PUSH3 0x26C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x168 JUMPI PUSH3 0x168 PUSH3 0x26C JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x185 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1A9 JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x18A JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x1BB JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1D9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x1F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x1FF DUP7 DUP4 DUP8 ADD PUSH3 0x10E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x216 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x225 DUP6 DUP3 DUP7 ADD PUSH3 0x10E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x244 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x266 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x153F DUP1 PUSH3 0x292 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 0xDF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1C3 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x1FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x187 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x19A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x14C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x161 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x174 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x10C JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x121 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0xF2 CALLDATASIZE PUSH1 0x4 PUSH2 0x128C JUMP JUMPDEST PUSH2 0x238 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x114 PUSH2 0x31D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x103 SWAP2 SWAP1 PUSH2 0x1376 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x12F CALLDATASIZE PUSH1 0x4 PUSH2 0x12C6 JUMP JUMPDEST PUSH2 0x3AF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x103 JUMP JUMPDEST PUSH2 0x15F PUSH2 0x15A CALLDATASIZE PUSH1 0x4 PUSH2 0x1262 JUMP JUMPDEST PUSH2 0x45A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x15F PUSH2 0x16F CALLDATASIZE PUSH1 0x4 PUSH2 0x110E JUMP JUMPDEST PUSH2 0x58C JUMP JUMPDEST PUSH2 0x15F PUSH2 0x182 CALLDATASIZE PUSH1 0x4 PUSH2 0x110E JUMP JUMPDEST PUSH2 0x613 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x195 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C6 JUMP JUMPDEST PUSH2 0x62E JUMP JUMPDEST PUSH2 0x1AD PUSH2 0x1A8 CALLDATASIZE PUSH1 0x4 PUSH2 0x10C0 JUMP JUMPDEST PUSH2 0x6B9 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x103 JUMP JUMPDEST PUSH2 0x114 PUSH2 0x753 JUMP JUMPDEST PUSH2 0x15F PUSH2 0x1D1 CALLDATASIZE PUSH1 0x4 PUSH2 0x1226 JUMP JUMPDEST PUSH2 0x762 JUMP JUMPDEST PUSH2 0x15F PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x114A JUMP JUMPDEST PUSH2 0x845 JUMP JUMPDEST PUSH2 0x114 PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C6 JUMP JUMPDEST PUSH2 0x8D3 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0x10DB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 EQ DUP1 PUSH2 0x2CB JUMPI POP PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 EQ JUMPDEST DUP1 PUSH2 0x317 JUMPI POP PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x32C SWAP1 PUSH2 0x13F8 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x358 SWAP1 PUSH2 0x13F8 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3A5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x37A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3A5 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 0x388 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x43E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x465 DUP3 PUSH2 0x62E JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x4EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x50B JUMPI POP PUSH2 0x50B DUP2 CALLER PUSH2 0x20A JUMP JUMPDEST PUSH2 0x57D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x38 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH2 0x587 DUP4 DUP4 PUSH2 0x9C9 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x596 CALLER DUP3 PUSH2 0xA4F JUMP JUMPDEST PUSH2 0x608 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x31 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH2 0x587 DUP4 DUP4 DUP4 PUSH2 0xB57 JUMP JUMPDEST PUSH2 0x587 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x845 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x317 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x737 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x32C SWAP1 PUSH2 0x13F8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND CALLER EQ ISZERO PUSH2 0x7BB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x435 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP1 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x84F CALLER DUP4 PUSH2 0xA4F JUMP JUMPDEST PUSH2 0x8C1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x31 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH2 0x8CD DUP5 DUP5 DUP5 DUP5 PUSH2 0xD3C JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x60 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x960 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x977 PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x997 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x9C2 JUMP JUMPDEST DUP1 PUSH2 0x9A1 DUP5 PUSH2 0xDC5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x9B2 SWAP3 SWAP2 SWAP1 PUSH2 0x130B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0xA16 DUP3 PUSH2 0x62E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xAD9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAE4 DUP4 PUSH2 0x62E JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0xB1F JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB14 DUP5 PUSH2 0x3AF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0xB4F JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB6A DUP3 PUSH2 0x62E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xBE6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x73206E6F74206F776E0000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xC61 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH2 0xC6C PUSH1 0x0 DUP3 PUSH2 0x9C9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xC95 SWAP1 DUP5 SWAP1 PUSH2 0x13B5 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xCC3 SWAP1 DUP5 SWAP1 PUSH2 0x1389 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP5 SWAP4 SWAP2 DUP8 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST PUSH2 0xD47 DUP5 DUP5 DUP5 PUSH2 0xB57 JUMP JUMPDEST PUSH2 0xD53 DUP5 DUP5 DUP5 DUP5 PUSH2 0xEF7 JUMP JUMPDEST PUSH2 0x8CD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x32 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0xE05 JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0xE2F JUMPI DUP1 PUSH2 0xE19 DUP2 PUSH2 0x1433 JUMP JUMPDEST SWAP2 POP PUSH2 0xE28 SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x13A1 JUMP JUMPDEST SWAP2 POP PUSH2 0xE09 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE4A JUMPI PUSH2 0xE4A PUSH2 0x14C2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xE74 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0xB4F JUMPI PUSH2 0xE89 PUSH1 0x1 DUP4 PUSH2 0x13B5 JUMP JUMPDEST SWAP2 POP PUSH2 0xE96 PUSH1 0xA DUP7 PUSH2 0x146C JUMP JUMPDEST PUSH2 0xEA1 SWAP1 PUSH1 0x30 PUSH2 0x1389 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xEB6 JUMPI PUSH2 0xEB6 PUSH2 0x14AC JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0xEF0 PUSH1 0xA DUP7 PUSH2 0x13A1 JUMP JUMPDEST SWAP5 POP PUSH2 0xE78 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x1099 JUMPI PUSH1 0x40 MLOAD PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0xF54 SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x133A JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xF6E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xF9E JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xF9B SWAP2 DUP2 ADD SWAP1 PUSH2 0x12A9 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x104E JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0xFCC JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xFD1 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0x1046 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x32 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 AND PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 EQ SWAP1 POP PUSH2 0xB4F JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x10BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x9C2 DUP3 PUSH2 0x10A4 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x10EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10F7 DUP4 PUSH2 0x10A4 JUMP JUMPDEST SWAP2 POP PUSH2 0x1105 PUSH1 0x20 DUP5 ADD PUSH2 0x10A4 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1123 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x112C DUP5 PUSH2 0x10A4 JUMP JUMPDEST SWAP3 POP PUSH2 0x113A PUSH1 0x20 DUP6 ADD PUSH2 0x10A4 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1160 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1169 DUP6 PUSH2 0x10A4 JUMP JUMPDEST SWAP4 POP PUSH2 0x1177 PUSH1 0x20 DUP7 ADD PUSH2 0x10A4 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x119B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x11AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x11C1 JUMPI PUSH2 0x11C1 PUSH2 0x14C2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x11E9 JUMPI PUSH2 0x11E9 PUSH2 0x14C2 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP11 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0x1202 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1239 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1242 DUP4 PUSH2 0x10A4 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x1257 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1275 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x127E DUP4 PUSH2 0x10A4 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x129E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x9C2 DUP2 PUSH2 0x14D8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x9C2 DUP2 PUSH2 0x14D8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12D8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x12F7 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x13CC JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x131D DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x13CC JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x1331 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x13CC JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND DUP4 MSTORE DUP1 DUP7 AND PUSH1 0x20 DUP5 ADD MSTORE POP DUP4 PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x80 PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x136C PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x12DF JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x9C2 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x12DF JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x139C JUMPI PUSH2 0x139C PUSH2 0x1480 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x13B0 JUMPI PUSH2 0x13B0 PUSH2 0x1496 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x13C7 JUMPI PUSH2 0x13C7 PUSH2 0x1480 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x13E7 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x13CF JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x8CD JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x140C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x142D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1465 JUMPI PUSH2 0x1465 PUSH2 0x1480 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x147B JUMPI PUSH2 0x147B PUSH2 0x1496 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP2 AND DUP2 EQ PUSH2 0x1506 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAE PUSH18 0xC2573B1369ACDC04E6556C64346A7E1A2DEF 0xC 0x5E SWAP3 MOD EXP DUP7 0xDB 0xDE DUP10 PUSH2 0xD48D PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "554:12701:7:-:0;;;1316:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1382:13;;;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;1405:17:7;;;;:7;;:17;;;;;:::i;:::-;;1316:113;;554:12701;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;554:12701:7;;;-1:-1:-1;554:12701:7;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:885:84;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;;;;;224:10:84;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:84;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;553:4;543:14;;598:3;593:2;588;580:6;576:15;572:24;569:33;566:2;;;615:1;612;605:12;566:2;637:1;628:10;;647:133;661:2;658:1;655:9;647:133;;;749:14;;;745:23;;739:30;718:14;;;714:23;;707:63;672:10;;;;647:133;;;798:2;795:1;792:9;789:2;;;857:1;852:2;847;839:6;835:15;831:24;824:35;789:2;887:6;78:821;-1:-1:-1;;;;;;78:821:84:o;904:562::-;1003:6;1011;1064:2;1052:9;1043:7;1039:23;1035:32;1032:2;;;1080:1;1077;1070:12;1032:2;1107:16;;-1:-1:-1;;;;;1172:14:84;;;1169:2;;;1199:1;1196;1189:12;1169:2;1222:61;1275:7;1266:6;1255:9;1251:22;1222:61;:::i;:::-;1212:71;;1329:2;1318:9;1314:18;1308:25;1292:41;;1358:2;1348:8;1345:16;1342:2;;;1374:1;1371;1364:12;1342:2;;1397:63;1452:7;1441:8;1430:9;1426:24;1397:63;:::i;:::-;1387:73;;;1022:444;;;;;:::o;1471:380::-;1550:1;1546:12;;;;1593;;;1614:2;;1668:4;1660:6;1656:17;1646:27;;1614:2;1721;1713:6;1710:14;1690:18;1687:38;1684:2;;;1767:10;1762:3;1758:20;1755:1;1748:31;1802:4;1799:1;1792:15;1830:4;1827:1;1820:15;1684:2;;1526:325;;;:::o;1856:127::-;1917:10;1912:3;1908:20;1905:1;1898:31;1948:4;1945:1;1938:15;1972:4;1969:1;1962:15;1888:95;554:12701:7;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_approve_1859": {
                  "entryPoint": 2505,
                  "id": 1859,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_baseURI_1334": {
                  "entryPoint": null,
                  "id": 1334,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_beforeTokenTransfer_1932": {
                  "entryPoint": null,
                  "id": 1932,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_checkOnERC721Received_1921": {
                  "entryPoint": 3831,
                  "id": 1921,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@_exists_1573": {
                  "entryPoint": null,
                  "id": 1573,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_isApprovedOrOwner_1614": {
                  "entryPoint": 2639,
                  "id": 1614,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_msgSender_2403": {
                  "entryPoint": null,
                  "id": 2403,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_safeTransfer_1555": {
                  "entryPoint": 3388,
                  "id": 1555,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_transfer_1835": {
                  "entryPoint": 2903,
                  "id": 1835,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@approve_1377": {
                  "entryPoint": 1114,
                  "id": 1377,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@balanceOf_1235": {
                  "entryPoint": 1721,
                  "id": 1235,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getApproved_1398": {
                  "entryPoint": 943,
                  "id": 1398,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@isApprovedForAll_1450": {
                  "entryPoint": null,
                  "id": 1450,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@isContract_2114": {
                  "entryPoint": null,
                  "id": 2114,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@name_1273": {
                  "entryPoint": 797,
                  "id": 1273,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@ownerOf_1263": {
                  "entryPoint": 1582,
                  "id": 1263,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@safeTransferFrom_1496": {
                  "entryPoint": 1555,
                  "id": 1496,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@safeTransferFrom_1526": {
                  "entryPoint": 2117,
                  "id": 1526,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@setApprovalForAll_1432": {
                  "entryPoint": 1890,
                  "id": 1432,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@supportsInterface_1211": {
                  "entryPoint": 568,
                  "id": 1211,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@supportsInterface_3218": {
                  "entryPoint": null,
                  "id": 3218,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@symbol_1283": {
                  "entryPoint": 1875,
                  "id": 1283,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@toString_2572": {
                  "entryPoint": 3525,
                  "id": 2572,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@tokenURI_1325": {
                  "entryPoint": 2259,
                  "id": 1325,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@transferFrom_1477": {
                  "entryPoint": 1420,
                  "id": 1477,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "abi_decode_address": {
                  "entryPoint": 4260,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 4288,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 4315,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 4366,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
                  "entryPoint": 4426,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_addresst_bool": {
                  "entryPoint": 4646,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 4706,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_bytes4": {
                  "entryPoint": 4748,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_bytes4_fromMemory": {
                  "entryPoint": 4777,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 4806,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_bytes": {
                  "entryPoint": 4831,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 4875,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
                  "entryPoint": 4922,
                  "id": null,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 4982,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 5001,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 5025,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 5045,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 5068,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "extract_byte_array_length": {
                  "entryPoint": 5112,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 5171,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "mod_t_uint256": {
                  "entryPoint": 5228,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 5248,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x12": {
                  "entryPoint": 5270,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 5292,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 5314,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_bytes4": {
                  "entryPoint": 5336,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:12888:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:84",
                            "type": ""
                          }
                        ],
                        "src": "215:186:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:84",
                            "type": ""
                          }
                        ],
                        "src": "406:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:84",
                            "type": ""
                          }
                        ],
                        "src": "671:328:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1134:1067:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1181:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1190:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1193:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1183:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1183:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1183:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1155:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1164:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1151:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1151:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1176:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1147:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1147:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1144:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1206:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1235:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1216:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1216:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1206:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1254:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1287:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1298:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1283:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1283:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1264:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1264:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1254:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1311:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1338:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1349:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1334:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1334:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1321:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1321:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1311:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1362:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1393:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1404:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1389:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1389:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1376:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1376:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1366:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1417:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1427:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1421:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1472:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1481:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1484:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1474:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1474:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1474:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1460:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1468:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1457:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1457:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1454:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1497:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1511:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1522:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1507:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1507:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1501:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1577:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1586:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1589:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1579:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1579:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1579:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1556:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1560:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1552:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1552:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1567:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1548:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1548:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1541:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1541:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1538:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1602:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1625:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1612:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1612:16:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "1606:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1651:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "1653:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1653:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1653:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "1643:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1647:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1640:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1640:10:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1637:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1682:76:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1692:66:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "1686:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1767:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1787:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1781:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1781:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1771:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1799:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1821:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_3",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "1845:2:84"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1849:4:84",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1841:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1841:13:84"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "1856:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "1837:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1837:22:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1861:2:84",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1833:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1833:31:84"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "1866:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1829:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1829:40:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1817:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1817:53:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1803:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1929:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "1931:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1931:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1931:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1888:10:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1900:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1885:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1885:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1908:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1920:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1905:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1905:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "1882:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1882:46:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1879:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1967:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1971:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1960:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1960:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1960:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1998:6:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "2006:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1991:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1991:18:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1991:18:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2055:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2064:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2067:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2057:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2057:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2057:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2032:2:84"
                                          },
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "2036:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2028:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2028:11:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2041:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2024:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2024:20:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2046:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2021:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2021:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2018:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2097:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2105:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2093:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2093:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2114:2:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2118:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2110:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2110:11:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "2123:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldatacopy",
                                  "nodeType": "YulIdentifier",
                                  "src": "2080:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2080:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2080:46:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "memPtr",
                                            "nodeType": "YulIdentifier",
                                            "src": "2150:6:84"
                                          },
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "2158:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2146:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2146:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2163:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2142:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2142:24:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2168:1:84",
                                    "type": "",
                                    "value": "0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2135:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2135:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2135:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2179:16:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "2189:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2179:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1076:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1087:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1099:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1107:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1115:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1123:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1004:1197:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2290:263:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2336:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2345:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2348:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2338:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2338:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2338:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2311:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2320:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2307:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2307:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2332:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2303:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2303:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2300:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2361:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2390:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2371:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2371:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2361:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2409:45:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2439:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2450:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2435:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2435:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2422:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2422:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2413:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2507:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2516:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2519:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2509:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2509:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2509:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2476:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2497:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "2490:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2490:13:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "2483:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2483:21:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2473:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2473:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2466:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2466:40:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2463:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2532:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2542:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2532:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_bool",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2248:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2259:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2271:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2279:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2206:347:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2645:167:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2691:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2700:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2703:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2693:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2693:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2693:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2666:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2675:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2662:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2662:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2687:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2658:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2658:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2655:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2716:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2745:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2726:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2726:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2716:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2764:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2791:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2802:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2787:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2787:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2774:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2774:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2764:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2603:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2614:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2626:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2634:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2558:254:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2886:176:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2932:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2941:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2944:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2934:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2934:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2934:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2907:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2916:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2903:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2903:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2928:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2899:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2899:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2896:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2957:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2983:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2970:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2970:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2961:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3026:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_bytes4",
                                  "nodeType": "YulIdentifier",
                                  "src": "3002:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3002:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3002:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3041:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3051:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3041:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bytes4",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2852:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2863:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2875:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2817:245:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3147:169:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3193:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3202:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3205:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3195:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3195:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3195:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3168:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3177:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3164:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3164:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3189:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3160:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3160:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3157:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3218:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3237:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3231:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3231:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3222:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3280:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_bytes4",
                                  "nodeType": "YulIdentifier",
                                  "src": "3256:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3256:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3256:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3295:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3305:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3295:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bytes4_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3113:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3124:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3136:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3067:249:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3391:110:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3437:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3446:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3449:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3439:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3439:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3439:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3412:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3421:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3408:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3408:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3433:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3404:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3404:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3401:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3462:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3485:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3472:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3472:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3462:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3357:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3368:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3380:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3321:180:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3555:267:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3565:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3585:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3579:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3579:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3569:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3607:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3612:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3600:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3600:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3600:19:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3654:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3661:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3650:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3650:16:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3672:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3677:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3668:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3668:14:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3684:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3628:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3628:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3628:63:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3700:116:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3715:3:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "3728:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3736:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3724:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3724:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3741:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "3720:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3720:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3711:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3711:98:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3811:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3707:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3707:109:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "3700:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_bytes",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3532:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3539:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "3547:3:84",
                            "type": ""
                          }
                        ],
                        "src": "3506:316:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4014:283:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4024:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4044:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4038:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4038:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4028:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4086:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4094:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4082:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4082:17:84"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4101:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4106:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "4060:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4060:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4060:53:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4122:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4139:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4144:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4135:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4135:16:84"
                              },
                              "variables": [
                                {
                                  "name": "end_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4126:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4160:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4182:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4176:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4176:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4164:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4224:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4232:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4220:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4220:17:84"
                                  },
                                  {
                                    "name": "end_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4239:5:84"
                                  },
                                  {
                                    "name": "length_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4246:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "4198:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4198:57:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4198:57:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4264:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "end_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4275:5:84"
                                  },
                                  {
                                    "name": "length_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4282:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4271:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4271:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "4264:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3982:3:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3987:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3995:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "4006:3:84",
                            "type": ""
                          }
                        ],
                        "src": "3827:470:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4403:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4413:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4425:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4436:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4421:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4421:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4413:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4455:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4470:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4478:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4466:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4466:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4448:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4448:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4448:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4372:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4383:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4394:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4302:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4736:308:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4746:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4756:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4750:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4814:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4829:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4837:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4825:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4825:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4807:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4807:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4807:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4861:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4872:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4857:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4857:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4881:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4889:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4877:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4877:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4850:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4850:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4850:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4913:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4924:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4909:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4909:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4929:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4902:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4902:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4902:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4956:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4967:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4952:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4952:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4972:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4945:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4945:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4945:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4985:53:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5010:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5022:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5033:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5018:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5018:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "4993:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4993:45:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4985:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4681:9:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "4692:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "4700:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4708:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4716:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4727:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4533:511:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5144:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5154:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5166:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5177:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5162:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5162:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5154:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5196:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "5221:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "5214:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5214:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "5207:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5207:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5189:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5189:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5189:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5113:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5124:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5135:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5049:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5362:98:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5379:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5390:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5372:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5372:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5372:21:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5402:52:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5427:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5439:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5450:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5435:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5435:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "5410:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5410:44:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5402:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5331:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5342:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5353:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5241:219:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5639:240:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5656:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5667:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5649:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5649:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5649:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5690:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5701:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5686:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5686:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5706:2:84",
                                    "type": "",
                                    "value": "50"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5679:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5679:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5679:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5729:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5740:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5725:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5725:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5745:34:84",
                                    "type": "",
                                    "value": "ERC721: transfer to non ERC721Re"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5718:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5718:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5718:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5800:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5811:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5796:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5796:18:84"
                                  },
                                  {
                                    "hexValue": "63656976657220696d706c656d656e746572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5816:20:84",
                                    "type": "",
                                    "value": "ceiver implementer"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5789:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5789:48:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5789:48:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5846:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5858:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5869:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5854:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5854:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5846:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5616:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5630:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5465:414:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6058:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6075:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6086:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6068:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6068:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6068:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6109:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6120:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6105:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6105:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6125:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6098:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6098:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6098:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6148:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6159:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6144:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6144:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6164:34:84",
                                    "type": "",
                                    "value": "ERC721: transfer to the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6137:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6137:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6137:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6219:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6230:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6215:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6215:18:84"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6235:6:84",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6208:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6208:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6208:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6251:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6263:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6274:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6259:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6259:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6251:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6035:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6049:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5884:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6463:175:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6480:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6491:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6473:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6473:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6473:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6514:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6525:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6510:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6510:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6530:2:84",
                                    "type": "",
                                    "value": "25"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6503:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6503:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6503:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6553:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6564:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6549:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6549:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6569:27:84",
                                    "type": "",
                                    "value": "ERC721: approve to caller"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6542:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6542:55:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6542:55:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6606:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6618:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6629:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6614:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6614:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6606:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6440:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6454:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6289:349:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6817:234:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6834:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6845:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6827:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6827:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6827:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6868:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6879:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6864:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6864:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6884:2:84",
                                    "type": "",
                                    "value": "44"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6857:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6857:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6857:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6907:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6918:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6903:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6903:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6923:34:84",
                                    "type": "",
                                    "value": "ERC721: operator query for nonex"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6896:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6896:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6896:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6978:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6989:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6974:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6974:18:84"
                                  },
                                  {
                                    "hexValue": "697374656e7420746f6b656e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6994:14:84",
                                    "type": "",
                                    "value": "istent token"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6967:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6967:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6967:42:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7018:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7030:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7041:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7026:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7026:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7018:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6794:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6808:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6643:408:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7230:246:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7247:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7258:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7240:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7240:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7240:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7281:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7292:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7277:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7277:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7297:2:84",
                                    "type": "",
                                    "value": "56"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7270:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7270:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7270:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7320:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7331:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7316:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7316:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7336:34:84",
                                    "type": "",
                                    "value": "ERC721: approve caller is not ow"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7309:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7309:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7309:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7391:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7402:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7387:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7387:18:84"
                                  },
                                  {
                                    "hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7407:26:84",
                                    "type": "",
                                    "value": "ner nor approved for all"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7380:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7380:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7380:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7443:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7455:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7466:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7451:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7451:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7443:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7207:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7221:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7056:420:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7655:232:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7672:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7683:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7665:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7665:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7665:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7706:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7717:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7702:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7702:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7722:2:84",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7695:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7695:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7695:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7745:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7756:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7741:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7741:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7761:34:84",
                                    "type": "",
                                    "value": "ERC721: balance query for the ze"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7734:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7734:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7734:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7816:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7827:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7812:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7812:18:84"
                                  },
                                  {
                                    "hexValue": "726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7832:12:84",
                                    "type": "",
                                    "value": "ro address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7805:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7805:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7805:40:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7854:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7866:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7877:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7862:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7862:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7854:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7632:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7646:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7481:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8066:231:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8083:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8094:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8076:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8076:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8076:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8117:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8128:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8113:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8113:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8133:2:84",
                                    "type": "",
                                    "value": "41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8106:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8106:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8106:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8156:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8167:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8152:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8152:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8172:34:84",
                                    "type": "",
                                    "value": "ERC721: owner query for nonexist"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8145:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8145:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8145:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8227:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8238:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8223:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8223:18:84"
                                  },
                                  {
                                    "hexValue": "656e7420746f6b656e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8243:11:84",
                                    "type": "",
                                    "value": "ent token"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8216:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8216:39:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8216:39:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8264:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8276:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8287:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8272:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8272:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8264:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8043:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8057:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7892:405:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8476:234:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8493:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8504:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8486:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8486:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8486:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8527:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8538:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8523:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8523:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8543:2:84",
                                    "type": "",
                                    "value": "44"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8516:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8516:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8516:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8566:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8577:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8562:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8562:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8582:34:84",
                                    "type": "",
                                    "value": "ERC721: approved query for nonex"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8555:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8555:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8555:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8637:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8648:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8633:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8633:18:84"
                                  },
                                  {
                                    "hexValue": "697374656e7420746f6b656e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8653:14:84",
                                    "type": "",
                                    "value": "istent token"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8626:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8626:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8626:42:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8677:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8689:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8700:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8685:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8685:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8677:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8453:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8467:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8302:408:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8889:231:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8906:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8917:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8899:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8899:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8899:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8940:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8951:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8936:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8936:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8956:2:84",
                                    "type": "",
                                    "value": "41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8929:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8929:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8929:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8979:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8990:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8975:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8975:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a207472616e73666572206f6620746f6b656e20746861742069",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8995:34:84",
                                    "type": "",
                                    "value": "ERC721: transfer of token that i"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8968:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8968:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8968:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9050:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9061:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9046:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9046:18:84"
                                  },
                                  {
                                    "hexValue": "73206e6f74206f776e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9066:11:84",
                                    "type": "",
                                    "value": "s not own"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9039:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9039:39:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9039:39:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9087:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9099:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9110:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9095:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9095:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9087:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8866:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8880:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8715:405:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9299:237:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9316:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9327:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9309:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9309:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9309:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9350:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9361:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9346:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9346:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9366:2:84",
                                    "type": "",
                                    "value": "47"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9339:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9339:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9339:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9389:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9400:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9385:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9385:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732314d657461646174613a2055524920717565727920666f72206e6f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9405:34:84",
                                    "type": "",
                                    "value": "ERC721Metadata: URI query for no"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9378:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9378:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9378:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9460:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9471:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9456:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9456:18:84"
                                  },
                                  {
                                    "hexValue": "6e6578697374656e7420746f6b656e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9476:17:84",
                                    "type": "",
                                    "value": "nexistent token"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9449:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9449:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9449:45:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9503:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9515:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9526:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9511:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9511:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9503:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9276:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9290:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9125:411:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9715:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9732:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9743:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9725:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9725:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9725:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9766:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9777:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9762:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9762:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9782:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9755:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9755:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9755:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9805:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9816:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9801:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9801:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9821:34:84",
                                    "type": "",
                                    "value": "ERC721: approval to current owne"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9794:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9794:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9794:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9876:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9887:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9872:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9872:18:84"
                                  },
                                  {
                                    "hexValue": "72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9892:3:84",
                                    "type": "",
                                    "value": "r"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9865:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9865:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9865:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9905:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9917:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9928:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9913:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9913:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9905:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9692:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9706:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9541:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10117:239:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10134:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10145:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10127:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10127:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10127:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10168:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10179:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10164:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10164:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10184:2:84",
                                    "type": "",
                                    "value": "49"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10157:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10157:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10157:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10207:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10218:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10203:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10203:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10223:34:84",
                                    "type": "",
                                    "value": "ERC721: transfer caller is not o"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10196:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10196:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10196:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10278:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10289:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10274:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10274:18:84"
                                  },
                                  {
                                    "hexValue": "776e6572206e6f7220617070726f766564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10294:19:84",
                                    "type": "",
                                    "value": "wner nor approved"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10267:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10267:47:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10267:47:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10323:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10335:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10346:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10331:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10331:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10323:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10094:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10108:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9943:413:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10462:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10472:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10484:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10495:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10480:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10480:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10472:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10514:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "10525:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10507:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10507:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10507:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10431:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10442:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10453:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10361:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10591:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10618:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "10620:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10620:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10620:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "10607:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "10614:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "10610:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10610:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10604:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10604:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "10601:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10649:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "10660:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "10663:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10656:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10656:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "10649:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "10574:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "10577:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "10583:3:84",
                            "type": ""
                          }
                        ],
                        "src": "10543:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10722:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10745:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "10747:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10747:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10747:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "10742:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "10735:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10735:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "10732:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10776:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "10785:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "10788:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "10781:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10781:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "10776:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "10707:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "10710:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "10716:1:84",
                            "type": ""
                          }
                        ],
                        "src": "10676:120:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10850:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10872:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "10874:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10874:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10874:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "10866:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "10869:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10863:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10863:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "10860:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10903:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "10915:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "10918:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "10911:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10911:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "10903:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "10832:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "10835:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "10841:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10801:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10984:205:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10994:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11003:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "10998:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11063:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "11088:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "11093:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "11084:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11084:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11107:3:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11112:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "11103:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11103:11:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "11097:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11097:18:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11077:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11077:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11077:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11024:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11027:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11021:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11021:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "11035:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11037:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "11046:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11049:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11042:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11042:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "11037:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "11017:3:84",
                                "statements": []
                              },
                              "src": "11013:113:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11152:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "11165:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "11170:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "11161:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11161:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11179:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11154:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11154:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11154:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11141:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11144:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11138:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11138:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11135:2:84"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "10962:3:84",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "10967:3:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "10972:6:84",
                            "type": ""
                          }
                        ],
                        "src": "10931:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11249:382:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11259:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11273:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "11276:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "11269:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11269:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "11259:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11290:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "11320:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11326:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "11316:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11316:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "11294:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11367:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11369:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "11383:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11391:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "11379:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11379:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "11369:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "11347:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "11340:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11340:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11337:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11457:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11478:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11481:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11471:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11471:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11471:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11579:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11582:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11572:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11572:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11572:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11607:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11610:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "11600:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11600:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11600:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "11413:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "11436:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11444:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "11433:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11433:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "11410:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11410:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11407:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "11229:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "11238:6:84",
                            "type": ""
                          }
                        ],
                        "src": "11194:437:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11683:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11774:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "11776:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11776:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11776:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "11699:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11706:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "11696:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11696:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11693:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11805:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "11816:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11823:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11812:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11812:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "11805:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "11665:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "11675:3:84",
                            "type": ""
                          }
                        ],
                        "src": "11636:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11874:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11897:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "11899:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11899:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11899:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "11894:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "11887:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11887:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11884:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11928:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "11937:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "11940:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "11933:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11933:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "11928:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "11859:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "11862:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "11868:1:84",
                            "type": ""
                          }
                        ],
                        "src": "11836:112:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11985:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12002:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12005:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11995:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11995:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11995:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12099:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12102:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12092:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12092:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12092:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12123:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12126:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "12116:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12116:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12116:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "11953:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12174:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12191:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12194:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12184:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12184:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12184:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12288:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12291:4:84",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12281:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12281:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12281:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12312:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12315:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "12305:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12305:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12305:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "12142:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12363:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12380:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12383:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12373:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12373:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12373:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12477:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12480:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12470:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12470:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12470:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12501:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12504:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "12494:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12494:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12494:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "12331:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12552:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12569:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12572:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12562:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12562:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12562:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12666:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12669:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12659:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12659:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12659:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12690:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12693:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "12683:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12683:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12683:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "12520:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12753:133:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12864:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12873:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12876:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "12866:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12866:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12866:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "12776:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "12787:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "12794:66:84",
                                            "type": "",
                                            "value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "12783:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "12783:78:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "12773:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12773:89:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "12766:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12766:97:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12763:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_bytes4",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "12742:5:84",
                            "type": ""
                          }
                        ],
                        "src": "12709:177:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        let offset := calldataload(add(headStart, 96))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := calldataload(_2)\n        if gt(_3, _1) { panic_error_0x41() }\n        let _4 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_3, 0x1f), _4), 63), _4))\n        if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _3)\n        if gt(add(add(_2, _3), 32), dataEnd) { revert(0, 0) }\n        calldatacopy(add(memPtr, 32), add(_2, 32), _3)\n        mstore(add(add(memPtr, _3), 32), 0)\n        value3 := memPtr\n    }\n    function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let value := calldataload(add(headStart, 32))\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value1 := value\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_encode_bytes(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n        end := add(add(pos, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 0x20)\n    }\n    function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        let end_1 := add(pos, length)\n        let length_1 := mload(value1)\n        copy_memory_to_memory(add(value1, 0x20), end_1, length_1)\n        end := add(end_1, length_1)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), 128)\n        tail := abi_encode_bytes(value3, add(headStart, 128))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_bytes(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 50)\n        mstore(add(headStart, 64), \"ERC721: transfer to non ERC721Re\")\n        mstore(add(headStart, 96), \"ceiver implementer\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC721: transfer to the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 25)\n        mstore(add(headStart, 64), \"ERC721: approve to caller\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 44)\n        mstore(add(headStart, 64), \"ERC721: operator query for nonex\")\n        mstore(add(headStart, 96), \"istent token\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 56)\n        mstore(add(headStart, 64), \"ERC721: approve caller is not ow\")\n        mstore(add(headStart, 96), \"ner nor approved for all\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"ERC721: balance query for the ze\")\n        mstore(add(headStart, 96), \"ro address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 41)\n        mstore(add(headStart, 64), \"ERC721: owner query for nonexist\")\n        mstore(add(headStart, 96), \"ent token\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 44)\n        mstore(add(headStart, 64), \"ERC721: approved query for nonex\")\n        mstore(add(headStart, 96), \"istent token\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 41)\n        mstore(add(headStart, 64), \"ERC721: transfer of token that i\")\n        mstore(add(headStart, 96), \"s not own\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 47)\n        mstore(add(headStart, 64), \"ERC721Metadata: URI query for no\")\n        mstore(add(headStart, 96), \"nexistent token\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC721: approval to current owne\")\n        mstore(add(headStart, 96), \"r\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 49)\n        mstore(add(headStart, 64), \"ERC721: transfer caller is not o\")\n        mstore(add(headStart, 96), \"wner nor approved\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\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) { mstore(add(dst, length), 0) }\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_bytes4(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100df5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb465146101c3578063b88d4fde146101d6578063c87b56dd146101e9578063e985e9c5146101fc57600080fd5b80636352211e1461018757806370a082311461019a57806395d89b41146101bb57600080fd5b8063095ea7b3116100bd578063095ea7b31461014c57806323b872dd1461016157806342842e0e1461017457600080fd5b806301ffc9a7146100e457806306fdde031461010c578063081812fc14610121575b600080fd5b6100f76100f236600461128c565b610238565b60405190151581526020015b60405180910390f35b61011461031d565b6040516101039190611376565b61013461012f3660046112c6565b6103af565b6040516001600160a01b039091168152602001610103565b61015f61015a366004611262565b61045a565b005b61015f61016f36600461110e565b61058c565b61015f61018236600461110e565b610613565b6101346101953660046112c6565b61062e565b6101ad6101a83660046110c0565b6106b9565b604051908152602001610103565b610114610753565b61015f6101d1366004611226565b610762565b61015f6101e436600461114a565b610845565b6101146101f73660046112c6565b6108d3565b6100f761020a3660046110db565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806102cb57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061031757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606000805461032c906113f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610358906113f8565b80156103a55780601f1061037a576101008083540402835291602001916103a5565b820191906000526020600020905b81548152906001019060200180831161038857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661043e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104658261062e565b9050806001600160a01b0316836001600160a01b031614156104ef5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610435565b336001600160a01b038216148061050b575061050b813361020a565b61057d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610435565b61058783836109c9565b505050565b6105963382610a4f565b6106085760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610435565b610587838383610b57565b61058783838360405180602001604052806000815250610845565b6000818152600260205260408120546001600160a01b0316806103175760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610435565b60006001600160a01b0382166107375760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610435565b506001600160a01b031660009081526003602052604090205490565b60606001805461032c906113f8565b6001600160a01b0382163314156107bb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610435565b3360008181526005602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61084f3383610a4f565b6108c15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610435565b6108cd84848484610d3c565b50505050565b6000818152600260205260409020546060906001600160a01b03166109605760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610435565b600061097760408051602081019091526000815290565b9050600081511161099757604051806020016040528060008152506109c2565b806109a184610dc5565b6040516020016109b292919061130b565b6040516020818303038152906040525b9392505050565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190610a168261062e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ad95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610435565b6000610ae48361062e565b9050806001600160a01b0316846001600160a01b03161480610b1f5750836001600160a01b0316610b14846103af565b6001600160a01b0316145b80610b4f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610b6a8261062e565b6001600160a01b031614610be65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610435565b6001600160a01b038216610c615760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610435565b610c6c6000826109c9565b6001600160a01b0383166000908152600360205260408120805460019290610c959084906113b5565b90915550506001600160a01b0382166000908152600360205260408120805460019290610cc3908490611389565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d47848484610b57565b610d5384848484610ef7565b6108cd5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610435565b606081610e0557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115610e2f5780610e1981611433565b9150610e289050600a836113a1565b9150610e09565b60008167ffffffffffffffff811115610e4a57610e4a6114c2565b6040519080825280601f01601f191660200182016040528015610e74576020820181803683370190505b5090505b8415610b4f57610e896001836113b5565b9150610e96600a8661146c565b610ea1906030611389565b60f81b818381518110610eb657610eb66114ac565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350610ef0600a866113a1565b9450610e78565b60006001600160a01b0384163b15611099576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290610f5490339089908890889060040161133a565b602060405180830381600087803b158015610f6e57600080fd5b505af1925050508015610f9e575060408051601f3d908101601f19168201909252610f9b918101906112a9565b60015b61104e573d808015610fcc576040519150601f19603f3d011682016040523d82523d6000602084013e610fd1565b606091505b5080516110465760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610435565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610b4f565b506001949350505050565b80356001600160a01b03811681146110bb57600080fd5b919050565b6000602082840312156110d257600080fd5b6109c2826110a4565b600080604083850312156110ee57600080fd5b6110f7836110a4565b9150611105602084016110a4565b90509250929050565b60008060006060848603121561112357600080fd5b61112c846110a4565b925061113a602085016110a4565b9150604084013590509250925092565b6000806000806080858703121561116057600080fd5b611169856110a4565b9350611177602086016110a4565b925060408501359150606085013567ffffffffffffffff8082111561119b57600080fd5b818701915087601f8301126111af57600080fd5b8135818111156111c1576111c16114c2565b604051601f8201601f19908116603f011681019083821181831017156111e9576111e96114c2565b816040528281528a602084870101111561120257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561123957600080fd5b611242836110a4565b91506020830135801515811461125757600080fd5b809150509250929050565b6000806040838503121561127557600080fd5b61127e836110a4565b946020939093013593505050565b60006020828403121561129e57600080fd5b81356109c2816114d8565b6000602082840312156112bb57600080fd5b81516109c2816114d8565b6000602082840312156112d857600080fd5b5035919050565b600081518084526112f78160208601602086016113cc565b601f01601f19169290920160200192915050565b6000835161131d8184602088016113cc565b8351908301906113318183602088016113cc565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261136c60808301846112df565b9695505050505050565b6020815260006109c260208301846112df565b6000821982111561139c5761139c611480565b500190565b6000826113b0576113b0611496565b500490565b6000828210156113c7576113c7611480565b500390565b60005b838110156113e75781810151838201526020016113cf565b838111156108cd5750506000910152565b600181811c9082168061140c57607f821691505b6020821081141561142d57634e487b7160e01b600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561146557611465611480565b5060010190565b60008261147b5761147b611496565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461150657600080fd5b5056fea2646970667358221220ae71c2573b1369acdc04e6556c64346a7e1a2def0c5e92060a86dbde8961d48d64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xDF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1C3 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x1FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x187 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x19A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x14C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x161 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x174 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x10C JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x121 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0xF2 CALLDATASIZE PUSH1 0x4 PUSH2 0x128C JUMP JUMPDEST PUSH2 0x238 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x114 PUSH2 0x31D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x103 SWAP2 SWAP1 PUSH2 0x1376 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x12F CALLDATASIZE PUSH1 0x4 PUSH2 0x12C6 JUMP JUMPDEST PUSH2 0x3AF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x103 JUMP JUMPDEST PUSH2 0x15F PUSH2 0x15A CALLDATASIZE PUSH1 0x4 PUSH2 0x1262 JUMP JUMPDEST PUSH2 0x45A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x15F PUSH2 0x16F CALLDATASIZE PUSH1 0x4 PUSH2 0x110E JUMP JUMPDEST PUSH2 0x58C JUMP JUMPDEST PUSH2 0x15F PUSH2 0x182 CALLDATASIZE PUSH1 0x4 PUSH2 0x110E JUMP JUMPDEST PUSH2 0x613 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x195 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C6 JUMP JUMPDEST PUSH2 0x62E JUMP JUMPDEST PUSH2 0x1AD PUSH2 0x1A8 CALLDATASIZE PUSH1 0x4 PUSH2 0x10C0 JUMP JUMPDEST PUSH2 0x6B9 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x103 JUMP JUMPDEST PUSH2 0x114 PUSH2 0x753 JUMP JUMPDEST PUSH2 0x15F PUSH2 0x1D1 CALLDATASIZE PUSH1 0x4 PUSH2 0x1226 JUMP JUMPDEST PUSH2 0x762 JUMP JUMPDEST PUSH2 0x15F PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x114A JUMP JUMPDEST PUSH2 0x845 JUMP JUMPDEST PUSH2 0x114 PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C6 JUMP JUMPDEST PUSH2 0x8D3 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0x10DB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 EQ DUP1 PUSH2 0x2CB JUMPI POP PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 EQ JUMPDEST DUP1 PUSH2 0x317 JUMPI POP PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x32C SWAP1 PUSH2 0x13F8 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x358 SWAP1 PUSH2 0x13F8 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3A5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x37A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3A5 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 0x388 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x43E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x465 DUP3 PUSH2 0x62E JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x4EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x50B JUMPI POP PUSH2 0x50B DUP2 CALLER PUSH2 0x20A JUMP JUMPDEST PUSH2 0x57D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x38 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH2 0x587 DUP4 DUP4 PUSH2 0x9C9 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x596 CALLER DUP3 PUSH2 0xA4F JUMP JUMPDEST PUSH2 0x608 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x31 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH2 0x587 DUP4 DUP4 DUP4 PUSH2 0xB57 JUMP JUMPDEST PUSH2 0x587 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x845 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x317 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x737 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x32C SWAP1 PUSH2 0x13F8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND CALLER EQ ISZERO PUSH2 0x7BB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x435 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP1 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x84F CALLER DUP4 PUSH2 0xA4F JUMP JUMPDEST PUSH2 0x8C1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x31 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH2 0x8CD DUP5 DUP5 DUP5 DUP5 PUSH2 0xD3C JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x60 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x960 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x977 PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x997 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x9C2 JUMP JUMPDEST DUP1 PUSH2 0x9A1 DUP5 PUSH2 0xDC5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x9B2 SWAP3 SWAP2 SWAP1 PUSH2 0x130B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0xA16 DUP3 PUSH2 0x62E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xAD9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAE4 DUP4 PUSH2 0x62E JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0xB1F JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB14 DUP5 PUSH2 0x3AF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0xB4F JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB6A DUP3 PUSH2 0x62E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xBE6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x73206E6F74206F776E0000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xC61 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH2 0xC6C PUSH1 0x0 DUP3 PUSH2 0x9C9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xC95 SWAP1 DUP5 SWAP1 PUSH2 0x13B5 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xCC3 SWAP1 DUP5 SWAP1 PUSH2 0x1389 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP5 SWAP4 SWAP2 DUP8 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST PUSH2 0xD47 DUP5 DUP5 DUP5 PUSH2 0xB57 JUMP JUMPDEST PUSH2 0xD53 DUP5 DUP5 DUP5 DUP5 PUSH2 0xEF7 JUMP JUMPDEST PUSH2 0x8CD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x32 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0xE05 JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0xE2F JUMPI DUP1 PUSH2 0xE19 DUP2 PUSH2 0x1433 JUMP JUMPDEST SWAP2 POP PUSH2 0xE28 SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x13A1 JUMP JUMPDEST SWAP2 POP PUSH2 0xE09 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE4A JUMPI PUSH2 0xE4A PUSH2 0x14C2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xE74 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0xB4F JUMPI PUSH2 0xE89 PUSH1 0x1 DUP4 PUSH2 0x13B5 JUMP JUMPDEST SWAP2 POP PUSH2 0xE96 PUSH1 0xA DUP7 PUSH2 0x146C JUMP JUMPDEST PUSH2 0xEA1 SWAP1 PUSH1 0x30 PUSH2 0x1389 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xEB6 JUMPI PUSH2 0xEB6 PUSH2 0x14AC JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0xEF0 PUSH1 0xA DUP7 PUSH2 0x13A1 JUMP JUMPDEST SWAP5 POP PUSH2 0xE78 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x1099 JUMPI PUSH1 0x40 MLOAD PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0xF54 SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x133A JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xF6E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xF9E JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xF9B SWAP2 DUP2 ADD SWAP1 PUSH2 0x12A9 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x104E JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0xFCC JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xFD1 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0x1046 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x32 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x435 JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 AND PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 EQ SWAP1 POP PUSH2 0xB4F JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x10BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x9C2 DUP3 PUSH2 0x10A4 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x10EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10F7 DUP4 PUSH2 0x10A4 JUMP JUMPDEST SWAP2 POP PUSH2 0x1105 PUSH1 0x20 DUP5 ADD PUSH2 0x10A4 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1123 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x112C DUP5 PUSH2 0x10A4 JUMP JUMPDEST SWAP3 POP PUSH2 0x113A PUSH1 0x20 DUP6 ADD PUSH2 0x10A4 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1160 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1169 DUP6 PUSH2 0x10A4 JUMP JUMPDEST SWAP4 POP PUSH2 0x1177 PUSH1 0x20 DUP7 ADD PUSH2 0x10A4 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x119B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x11AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x11C1 JUMPI PUSH2 0x11C1 PUSH2 0x14C2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x11E9 JUMPI PUSH2 0x11E9 PUSH2 0x14C2 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP11 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0x1202 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1239 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1242 DUP4 PUSH2 0x10A4 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x1257 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1275 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x127E DUP4 PUSH2 0x10A4 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x129E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x9C2 DUP2 PUSH2 0x14D8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x9C2 DUP2 PUSH2 0x14D8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12D8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x12F7 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x13CC JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x131D DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x13CC JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x1331 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x13CC JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND DUP4 MSTORE DUP1 DUP7 AND PUSH1 0x20 DUP5 ADD MSTORE POP DUP4 PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x80 PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x136C PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x12DF JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x9C2 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x12DF JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x139C JUMPI PUSH2 0x139C PUSH2 0x1480 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x13B0 JUMPI PUSH2 0x13B0 PUSH2 0x1496 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x13C7 JUMPI PUSH2 0x13C7 PUSH2 0x1480 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x13E7 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x13CF JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x8CD JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x140C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x142D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1465 JUMPI PUSH2 0x1465 PUSH2 0x1480 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x147B JUMPI PUSH2 0x147B PUSH2 0x1496 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP2 AND DUP2 EQ PUSH2 0x1506 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAE PUSH18 0xC2573B1369ACDC04E6556C64346A7E1A2DEF 0xC 0x5E SWAP3 MOD EXP DUP7 0xDB 0xDE DUP10 PUSH2 0xD48D PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "554:12701:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1496:300;;;;;;:::i;:::-;;:::i;:::-;;;5214:14:84;;5207:22;5189:41;;5177:2;5162:18;1496:300:7;;;;;;;;2414:98;;;:::i;:::-;;;;;;;:::i;3925:217::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4466:55:84;;;4448:74;;4436:2;4421:18;3925:217:7;4403:125:84;3463:401:7;;;;;;:::i;:::-;;:::i;:::-;;4789:330;;;;;;:::i;:::-;;:::i;5185:179::-;;;;;;:::i;:::-;;:::i;2117:235::-;;;;;;:::i;:::-;;:::i;1855:205::-;;;;;;:::i;:::-;;:::i;:::-;;;10507:25:84;;;10495:2;10480:18;1855:205:7;10462:76:84;2576:102:7;;;:::i;4209:290::-;;;;;;:::i;:::-;;:::i;5430:320::-;;;;;;:::i;:::-;;:::i;2744:329::-;;;;;;:::i;:::-;;:::i;4565:162::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4685:25:7;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4565:162;1496:300;1598:4;1633:40;;;1648:25;1633:40;;:104;;-1:-1:-1;1689:48:7;;;1704:33;1689:48;1633:104;:156;;;-1:-1:-1;886:25:17;871:40;;;;1753:36:7;1614:175;1496:300;-1:-1:-1;;1496:300:7:o;2414:98::-;2468:13;2500:5;2493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414:98;:::o;3925:217::-;4001:7;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:7;4020:73;;;;-1:-1:-1;;;4020:73:7;;8504:2:84;4020:73:7;;;8486:21:84;8543:2;8523:18;;;8516:30;8582:34;8562:18;;;8555:62;8653:14;8633:18;;;8626:42;8685:19;;4020:73:7;;;;;;;;;-1:-1:-1;4111:24:7;;;;:15;:24;;;;;;-1:-1:-1;;;;;4111:24:7;;3925:217::o;3463:401::-;3543:13;3559:23;3574:7;3559:14;:23::i;:::-;3543:39;;3606:5;-1:-1:-1;;;;;3600:11:7;:2;-1:-1:-1;;;;;3600:11:7;;;3592:57;;;;-1:-1:-1;;;3592:57:7;;9743:2:84;3592:57:7;;;9725:21:84;9782:2;9762:18;;;9755:30;9821:34;9801:18;;;9794:62;9892:3;9872:18;;;9865:31;9913:19;;3592:57:7;9715:223:84;3592:57:7;666:10:12;-1:-1:-1;;;;;3681:21:7;;;;:62;;-1:-1:-1;3706:37:7;3723:5;666:10:12;4565:162:7;:::i;3706:37::-;3660:165;;;;-1:-1:-1;;;3660:165:7;;7258:2:84;3660:165:7;;;7240:21:84;7297:2;7277:18;;;7270:30;7336:34;7316:18;;;7309:62;7407:26;7387:18;;;7380:54;7451:19;;3660:165:7;7230:246:84;3660:165:7;3836:21;3845:2;3849:7;3836:8;:21::i;:::-;3533:331;3463:401;;:::o;4789:330::-;4978:41;666:10:12;5011:7:7;4978:18;:41::i;:::-;4970:103;;;;-1:-1:-1;;;4970:103:7;;10145:2:84;4970:103:7;;;10127:21:84;10184:2;10164:18;;;10157:30;10223:34;10203:18;;;10196:62;10294:19;10274:18;;;10267:47;10331:19;;4970:103:7;10117:239:84;4970:103:7;5084:28;5094:4;5100:2;5104:7;5084:9;:28::i;5185:179::-;5318:39;5335:4;5341:2;5345:7;5318:39;;;;;;;;;;;;:16;:39::i;2117:235::-;2189:7;2224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2224:16:7;2258:19;2250:73;;;;-1:-1:-1;;;2250:73:7;;8094:2:84;2250:73:7;;;8076:21:84;8133:2;8113:18;;;8106:30;8172:34;8152:18;;;8145:62;8243:11;8223:18;;;8216:39;8272:19;;2250:73:7;8066:231:84;1855:205:7;1927:7;-1:-1:-1;;;;;1954:19:7;;1946:74;;;;-1:-1:-1;;;1946:74:7;;7683:2:84;1946:74:7;;;7665:21:84;7722:2;7702:18;;;7695:30;7761:34;7741:18;;;7734:62;7832:12;7812:18;;;7805:40;7862:19;;1946:74:7;7655:232:84;1946:74:7;-1:-1:-1;;;;;;2037:16:7;;;;;:9;:16;;;;;;;1855:205::o;2576:102::-;2632:13;2664:7;2657:14;;;;;:::i;4209:290::-;-1:-1:-1;;;;;4311:24:7;;666:10:12;4311:24:7;;4303:62;;;;-1:-1:-1;;;4303:62:7;;6491:2:84;4303:62:7;;;6473:21:84;6530:2;6510:18;;;6503:30;6569:27;6549:18;;;6542:55;6614:18;;4303:62:7;6463:175:84;4303:62:7;666:10:12;4376:32:7;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4376:42:7;;;;;;;;;;;;:53;;;;;;;;;;;;;4444:48;;5189:41:84;;;4376:42:7;;666:10:12;4444:48:7;;5162:18:84;4444:48:7;;;;;;;4209:290;;:::o;5430:320::-;5599:41;666:10:12;5632:7:7;5599:18;:41::i;:::-;5591:103;;;;-1:-1:-1;;;5591:103:7;;10145:2:84;5591:103:7;;;10127:21:84;10184:2;10164:18;;;10157:30;10223:34;10203:18;;;10196:62;10294:19;10274:18;;;10267:47;10331:19;;5591:103:7;10117:239:84;5591:103:7;5704:39;5718:4;5724:2;5728:7;5737:5;5704:13;:39::i;:::-;5430:320;;;;:::o;2744:329::-;7287:4;7310:16;;;:7;:16;;;;;;2817:13;;-1:-1:-1;;;;;7310:16:7;2842:76;;;;-1:-1:-1;;;2842:76:7;;9327:2:84;2842:76:7;;;9309:21:84;9366:2;9346:18;;;9339:30;9405:34;9385:18;;;9378:62;9476:17;9456:18;;;9449:45;9511:19;;2842:76:7;9299:237:84;2842:76:7;2929:21;2953:10;3390:9;;;;;;;;;-1:-1:-1;3390:9:7;;;3314:92;2953:10;2929:34;;3004:1;2986:7;2980:21;:25;:86;;;;;;;;;;;;;;;;;3032:7;3041:18;:7;:16;:18::i;:::-;3015:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2980:86;2973:93;2744:329;-1:-1:-1;;;2744:329:7:o;11073:171::-;11147:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;11147:29:7;;;;;;;;:24;;11200:23;11147:24;11200:14;:23::i;:::-;-1:-1:-1;;;;;11191:46:7;;;;;;;;;;;11073:171;;:::o;7505:344::-;7598:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:7;7614:73;;;;-1:-1:-1;;;7614:73:7;;6845:2:84;7614:73:7;;;6827:21:84;6884:2;6864:18;;;6857:30;6923:34;6903:18;;;6896:62;6994:14;6974:18;;;6967:42;7026:19;;7614:73:7;6817:234:84;7614:73:7;7697:13;7713:23;7728:7;7713:14;:23::i;:::-;7697:39;;7765:5;-1:-1:-1;;;;;7754:16:7;:7;-1:-1:-1;;;;;7754:16:7;;:51;;;;7798:7;-1:-1:-1;;;;;7774:31:7;:20;7786:7;7774:11;:20::i;:::-;-1:-1:-1;;;;;7774:31:7;;7754:51;:87;;;-1:-1:-1;;;;;;4685:25:7;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7809:32;7746:96;7505:344;-1:-1:-1;;;;7505:344:7:o;10402:560::-;10556:4;-1:-1:-1;;;;;10529:31:7;:23;10544:7;10529:14;:23::i;:::-;-1:-1:-1;;;;;10529:31:7;;10521:85;;;;-1:-1:-1;;;10521:85:7;;8917:2:84;10521:85:7;;;8899:21:84;8956:2;8936:18;;;8929:30;8995:34;8975:18;;;8968:62;9066:11;9046:18;;;9039:39;9095:19;;10521:85:7;8889:231:84;10521:85:7;-1:-1:-1;;;;;10624:16:7;;10616:65;;;;-1:-1:-1;;;10616:65:7;;6086:2:84;10616:65:7;;;6068:21:84;6125:2;6105:18;;;6098:30;6164:34;6144:18;;;6137:62;6235:6;6215:18;;;6208:34;6259:19;;10616:65:7;6058:226:84;10616:65:7;10793:29;10810:1;10814:7;10793:8;:29::i;:::-;-1:-1:-1;;;;;10833:15:7;;;;;;:9;:15;;;;;:20;;10852:1;;10833:15;:20;;10852:1;;10833:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10863:13:7;;;;;;:9;:13;;;;;:18;;10880:1;;10863:13;:18;;10880:1;;10863:18;:::i;:::-;;;;-1:-1:-1;;10891:16:7;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;10891:21:7;;;;;;;;;10928:27;;10891:16;;10928:27;;;;;;;10402:560;;;:::o;6612:307::-;6763:28;6773:4;6779:2;6783:7;6763:9;:28::i;:::-;6809:48;6832:4;6838:2;6842:7;6851:5;6809:22;:48::i;:::-;6801:111;;;;-1:-1:-1;;;6801:111:7;;5667:2:84;6801:111:7;;;5649:21:84;5706:2;5686:18;;;5679:30;5745:34;5725:18;;;5718:62;5816:20;5796:18;;;5789:48;5854:19;;6801:111:7;5639:240:84;275:703:14;331:13;548:10;544:51;;-1:-1:-1;;574:10:14;;;;;;;;;;;;;;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:14;;-1:-1:-1;720:2:14;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:14;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:14;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;919:11:14;928:2;919:11;;:::i;:::-;;;791:150;;11797:778:7;11947:4;-1:-1:-1;;;;;11967:13:7;;1034:20:11;1080:8;11963:606:7;;12002:72;;;;;-1:-1:-1;;;;;12002:36:7;;;;;:72;;666:10:12;;12053:4:7;;12059:7;;12068:5;;12002:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12002:72:7;;;;;;;;-1:-1:-1;;12002:72:7;;;;;;;;;;;;:::i;:::-;;;11998:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12241:13:7;;12237:266;;12283:60;;-1:-1:-1;;;12283:60:7;;5667:2:84;12283:60:7;;;5649:21:84;5706:2;5686:18;;;5679:30;5745:34;5725:18;;;5718:62;5816:20;5796:18;;;5789:48;5854:19;;12283:60:7;5639:240:84;12237:266:7;12455:6;12449:13;12440:6;12436:2;12432:15;12425:38;11998:519;12124:51;;12134:41;12124:51;;-1:-1:-1;12117:58:7;;11963:606;-1:-1:-1;12554:4:7;11797:778;;;;;;:::o;14:196:84:-;82:20;;-1:-1:-1;;;;;131:54:84;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:1197::-;1099:6;1107;1115;1123;1176:3;1164:9;1155:7;1151:23;1147:33;1144:2;;;1193:1;1190;1183:12;1144:2;1216:29;1235:9;1216:29;:::i;:::-;1206:39;;1264:38;1298:2;1287:9;1283:18;1264:38;:::i;:::-;1254:48;;1349:2;1338:9;1334:18;1321:32;1311:42;;1404:2;1393:9;1389:18;1376:32;1427:18;1468:2;1460:6;1457:14;1454:2;;;1484:1;1481;1474:12;1454:2;1522:6;1511:9;1507:22;1497:32;;1567:7;1560:4;1556:2;1552:13;1548:27;1538:2;;1589:1;1586;1579:12;1538:2;1625;1612:16;1647:2;1643;1640:10;1637:2;;;1653:18;;:::i;:::-;1787:2;1781:9;1849:4;1841:13;;-1:-1:-1;;1837:22:84;;;1861:2;1833:31;1829:40;1817:53;;;1885:18;;;1905:22;;;1882:46;1879:2;;;1931:18;;:::i;:::-;1971:10;1967:2;1960:22;2006:2;1998:6;1991:18;2046:7;2041:2;2036;2032;2028:11;2024:20;2021:33;2018:2;;;2067:1;2064;2057:12;2018:2;2123;2118;2114;2110:11;2105:2;2097:6;2093:15;2080:46;2168:1;2163:2;2158;2150:6;2146:15;2142:24;2135:35;2189:6;2179:16;;;;;;;1134:1067;;;;;;;:::o;2206:347::-;2271:6;2279;2332:2;2320:9;2311:7;2307:23;2303:32;2300:2;;;2348:1;2345;2338:12;2300:2;2371:29;2390:9;2371:29;:::i;:::-;2361:39;;2450:2;2439:9;2435:18;2422:32;2497:5;2490:13;2483:21;2476:5;2473:32;2463:2;;2519:1;2516;2509:12;2463:2;2542:5;2532:15;;;2290:263;;;;;:::o;2558:254::-;2626:6;2634;2687:2;2675:9;2666:7;2662:23;2658:32;2655:2;;;2703:1;2700;2693:12;2655:2;2726:29;2745:9;2726:29;:::i;:::-;2716:39;2802:2;2787:18;;;;2774:32;;-1:-1:-1;;;2645:167:84:o;2817:245::-;2875:6;2928:2;2916:9;2907:7;2903:23;2899:32;2896:2;;;2944:1;2941;2934:12;2896:2;2983:9;2970:23;3002:30;3026:5;3002:30;:::i;3067:249::-;3136:6;3189:2;3177:9;3168:7;3164:23;3160:32;3157:2;;;3205:1;3202;3195:12;3157:2;3237:9;3231:16;3256:30;3280:5;3256:30;:::i;3321:180::-;3380:6;3433:2;3421:9;3412:7;3408:23;3404:32;3401:2;;;3449:1;3446;3439:12;3401:2;-1:-1:-1;3472:23:84;;3391:110;-1:-1:-1;3391:110:84:o;3506:316::-;3547:3;3585:5;3579:12;3612:6;3607:3;3600:19;3628:63;3684:6;3677:4;3672:3;3668:14;3661:4;3654:5;3650:16;3628:63;:::i;:::-;3736:2;3724:15;-1:-1:-1;;3720:88:84;3711:98;;;;3811:4;3707:109;;3555:267;-1:-1:-1;;3555:267:84:o;3827:470::-;4006:3;4044:6;4038:13;4060:53;4106:6;4101:3;4094:4;4086:6;4082:17;4060:53;:::i;:::-;4176:13;;4135:16;;;;4198:57;4176:13;4135:16;4232:4;4220:17;;4198:57;:::i;:::-;4271:20;;4014:283;-1:-1:-1;;;;4014:283:84:o;4533:511::-;4727:4;-1:-1:-1;;;;;4837:2:84;4829:6;4825:15;4814:9;4807:34;4889:2;4881:6;4877:15;4872:2;4861:9;4857:18;4850:43;;4929:6;4924:2;4913:9;4909:18;4902:34;4972:3;4967:2;4956:9;4952:18;4945:31;4993:45;5033:3;5022:9;5018:19;5010:6;4993:45;:::i;:::-;4985:53;4736:308;-1:-1:-1;;;;;;4736:308:84:o;5241:219::-;5390:2;5379:9;5372:21;5353:4;5410:44;5450:2;5439:9;5435:18;5427:6;5410:44;:::i;10543:128::-;10583:3;10614:1;10610:6;10607:1;10604:13;10601:2;;;10620:18;;:::i;:::-;-1:-1:-1;10656:9:84;;10591:80::o;10676:120::-;10716:1;10742;10732:2;;10747:18;;:::i;:::-;-1:-1:-1;10781:9:84;;10722:74::o;10801:125::-;10841:4;10869:1;10866;10863:8;10860:2;;;10874:18;;:::i;:::-;-1:-1:-1;10911:9:84;;10850:76::o;10931:258::-;11003:1;11013:113;11027:6;11024:1;11021:13;11013:113;;;11103:11;;;11097:18;11084:11;;;11077:39;11049:2;11042:10;11013:113;;;11144:6;11141:1;11138:13;11135:2;;;-1:-1:-1;;11179:1:84;11161:16;;11154:27;10984:205::o;11194:437::-;11273:1;11269:12;;;;11316;;;11337:2;;11391:4;11383:6;11379:17;11369:27;;11337:2;11444;11436:6;11433:14;11413:18;11410:38;11407:2;;;-1:-1:-1;;;11478:1:84;11471:88;11582:4;11579:1;11572:15;11610:4;11607:1;11600:15;11407:2;;11249:382;;;:::o;11636:195::-;11675:3;11706:66;11699:5;11696:77;11693:2;;;11776:18;;:::i;:::-;-1:-1:-1;11823:1:84;11812:13;;11683:148::o;11836:112::-;11868:1;11894;11884:2;;11899:18;;:::i;:::-;-1:-1:-1;11933:9:84;;11874:74::o;11953:184::-;-1:-1:-1;;;12002:1:84;11995:88;12102:4;12099:1;12092:15;12126:4;12123:1;12116:15;12142:184;-1:-1:-1;;;12191:1:84;12184:88;12291:4;12288:1;12281:15;12315:4;12312:1;12305:15;12331:184;-1:-1:-1;;;12380:1:84;12373:88;12480:4;12477:1;12470:15;12504:4;12501:1;12494:15;12520:184;-1:-1:-1;;;12569:1:84;12562:88;12669:4;12666:1;12659:15;12693:4;12690:1;12683:15;12709:177;12794:66;12787:5;12783:78;12776:5;12773:89;12763:2;;12876:1;12873;12866:12;12763:2;12753:133;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1087800",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "approve(address,uint256)": "infinite",
                "balanceOf(address)": "2634",
                "getApproved(uint256)": "4760",
                "isApprovedForAll(address,address)": "infinite",
                "name()": "infinite",
                "ownerOf(uint256)": "2573",
                "safeTransferFrom(address,address,uint256)": "infinite",
                "safeTransferFrom(address,address,uint256,bytes)": "infinite",
                "setApprovalForAll(address,bool)": "26647",
                "supportsInterface(bytes4)": "456",
                "symbol()": "infinite",
                "tokenURI(uint256)": "infinite",
                "transferFrom(address,address,uint256)": "infinite"
              },
              "internal": {
                "_approve(address,uint256)": "infinite",
                "_baseURI()": "infinite",
                "_beforeTokenTransfer(address,address,uint256)": "infinite",
                "_burn(uint256)": "infinite",
                "_checkOnERC721Received(address,address,uint256,bytes memory)": "infinite",
                "_exists(uint256)": "infinite",
                "_isApprovedOrOwner(address,uint256)": "infinite",
                "_mint(address,uint256)": "infinite",
                "_safeMint(address,uint256)": "infinite",
                "_safeMint(address,uint256,bytes memory)": "infinite",
                "_safeTransfer(address,address,uint256,bytes memory)": "infinite",
                "_transfer(address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "getApproved(uint256)": "081812fc",
              "isApprovedForAll(address,address)": "e985e9c5",
              "name()": "06fdde03",
              "ownerOf(uint256)": "6352211e",
              "safeTransferFrom(address,address,uint256)": "42842e0e",
              "safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
              "setApprovalForAll(address,bool)": "a22cb465",
              "supportsInterface(bytes4)": "01ffc9a7",
              "symbol()": "95d89b41",
              "tokenURI(uint256)": "c87b56dd",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"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\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including the Metadata extension, but not including the Enumerable extension, which is available separately as {ERC721Enumerable}.\",\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"See {IERC721-approve}.\"},\"balanceOf(address)\":{\"details\":\"See {IERC721-balanceOf}.\"},\"constructor\":{\"details\":\"Initializes the contract by setting a `name` and a `symbol` to the token collection.\"},\"getApproved(uint256)\":{\"details\":\"See {IERC721-getApproved}.\"},\"isApprovedForAll(address,address)\":{\"details\":\"See {IERC721-isApprovedForAll}.\"},\"name()\":{\"details\":\"See {IERC721Metadata-name}.\"},\"ownerOf(uint256)\":{\"details\":\"See {IERC721-ownerOf}.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"See {IERC721-safeTransferFrom}.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"See {IERC721-safeTransferFrom}.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"See {IERC721-setApprovalForAll}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"symbol()\":{\"details\":\"See {IERC721Metadata-symbol}.\"},\"tokenURI(uint256)\":{\"details\":\"See {IERC721Metadata-tokenURI}.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC721-transferFrom}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/ERC721.sol\":\"ERC721\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/ERC721.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC721.sol\\\";\\nimport \\\"./IERC721Receiver.sol\\\";\\nimport \\\"./extensions/IERC721Metadata.sol\\\";\\nimport \\\"../../utils/Address.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\nimport \\\"../../utils/Strings.sol\\\";\\nimport \\\"../../utils/introspection/ERC165.sol\\\";\\n\\n/**\\n * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including\\n * the Metadata extension, but not including the Enumerable extension, which is available separately as\\n * {ERC721Enumerable}.\\n */\\ncontract ERC721 is Context, ERC165, IERC721, IERC721Metadata {\\n    using Address for address;\\n    using Strings for uint256;\\n\\n    // Token name\\n    string private _name;\\n\\n    // Token symbol\\n    string private _symbol;\\n\\n    // Mapping from token ID to owner address\\n    mapping(uint256 => address) private _owners;\\n\\n    // Mapping owner address to token count\\n    mapping(address => uint256) private _balances;\\n\\n    // Mapping from token ID to approved address\\n    mapping(uint256 => address) private _tokenApprovals;\\n\\n    // Mapping from owner to operator approvals\\n    mapping(address => mapping(address => bool)) private _operatorApprovals;\\n\\n    /**\\n     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.\\n     */\\n    constructor(string memory name_, string memory symbol_) {\\n        _name = name_;\\n        _symbol = symbol_;\\n    }\\n\\n    /**\\n     * @dev See {IERC165-supportsInterface}.\\n     */\\n    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\\n        return\\n            interfaceId == type(IERC721).interfaceId ||\\n            interfaceId == type(IERC721Metadata).interfaceId ||\\n            super.supportsInterface(interfaceId);\\n    }\\n\\n    /**\\n     * @dev See {IERC721-balanceOf}.\\n     */\\n    function balanceOf(address owner) public view virtual override returns (uint256) {\\n        require(owner != address(0), \\\"ERC721: balance query for the zero address\\\");\\n        return _balances[owner];\\n    }\\n\\n    /**\\n     * @dev See {IERC721-ownerOf}.\\n     */\\n    function ownerOf(uint256 tokenId) public view virtual override returns (address) {\\n        address owner = _owners[tokenId];\\n        require(owner != address(0), \\\"ERC721: owner query for nonexistent token\\\");\\n        return owner;\\n    }\\n\\n    /**\\n     * @dev See {IERC721Metadata-name}.\\n     */\\n    function name() public view virtual override returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev See {IERC721Metadata-symbol}.\\n     */\\n    function symbol() public view virtual override returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev See {IERC721Metadata-tokenURI}.\\n     */\\n    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\\n        require(_exists(tokenId), \\\"ERC721Metadata: URI query for nonexistent token\\\");\\n\\n        string memory baseURI = _baseURI();\\n        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \\\"\\\";\\n    }\\n\\n    /**\\n     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\\n     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty\\n     * by default, can be overriden in child contracts.\\n     */\\n    function _baseURI() internal view virtual returns (string memory) {\\n        return \\\"\\\";\\n    }\\n\\n    /**\\n     * @dev See {IERC721-approve}.\\n     */\\n    function approve(address to, uint256 tokenId) public virtual override {\\n        address owner = ERC721.ownerOf(tokenId);\\n        require(to != owner, \\\"ERC721: approval to current owner\\\");\\n\\n        require(\\n            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),\\n            \\\"ERC721: approve caller is not owner nor approved for all\\\"\\n        );\\n\\n        _approve(to, tokenId);\\n    }\\n\\n    /**\\n     * @dev See {IERC721-getApproved}.\\n     */\\n    function getApproved(uint256 tokenId) public view virtual override returns (address) {\\n        require(_exists(tokenId), \\\"ERC721: approved query for nonexistent token\\\");\\n\\n        return _tokenApprovals[tokenId];\\n    }\\n\\n    /**\\n     * @dev See {IERC721-setApprovalForAll}.\\n     */\\n    function setApprovalForAll(address operator, bool approved) public virtual override {\\n        require(operator != _msgSender(), \\\"ERC721: approve to caller\\\");\\n\\n        _operatorApprovals[_msgSender()][operator] = approved;\\n        emit ApprovalForAll(_msgSender(), operator, approved);\\n    }\\n\\n    /**\\n     * @dev See {IERC721-isApprovedForAll}.\\n     */\\n    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {\\n        return _operatorApprovals[owner][operator];\\n    }\\n\\n    /**\\n     * @dev See {IERC721-transferFrom}.\\n     */\\n    function transferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) public virtual override {\\n        //solhint-disable-next-line max-line-length\\n        require(_isApprovedOrOwner(_msgSender(), tokenId), \\\"ERC721: transfer caller is not owner nor approved\\\");\\n\\n        _transfer(from, to, tokenId);\\n    }\\n\\n    /**\\n     * @dev See {IERC721-safeTransferFrom}.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) public virtual override {\\n        safeTransferFrom(from, to, tokenId, \\\"\\\");\\n    }\\n\\n    /**\\n     * @dev See {IERC721-safeTransferFrom}.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes memory _data\\n    ) public virtual override {\\n        require(_isApprovedOrOwner(_msgSender(), tokenId), \\\"ERC721: transfer caller is not owner nor approved\\\");\\n        _safeTransfer(from, to, tokenId, _data);\\n    }\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\\n     *\\n     * `_data` is additional data, it has no specified format and it is sent in call to `to`.\\n     *\\n     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.\\n     * implement alternative mechanisms to perform token transfer, such as signature-based.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function _safeTransfer(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes memory _data\\n    ) internal virtual {\\n        _transfer(from, to, tokenId);\\n        require(_checkOnERC721Received(from, to, tokenId, _data), \\\"ERC721: transfer to non ERC721Receiver implementer\\\");\\n    }\\n\\n    /**\\n     * @dev Returns whether `tokenId` exists.\\n     *\\n     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.\\n     *\\n     * Tokens start existing when they are minted (`_mint`),\\n     * and stop existing when they are burned (`_burn`).\\n     */\\n    function _exists(uint256 tokenId) internal view virtual returns (bool) {\\n        return _owners[tokenId] != address(0);\\n    }\\n\\n    /**\\n     * @dev Returns whether `spender` is allowed to manage `tokenId`.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {\\n        require(_exists(tokenId), \\\"ERC721: operator query for nonexistent token\\\");\\n        address owner = ERC721.ownerOf(tokenId);\\n        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));\\n    }\\n\\n    /**\\n     * @dev Safely mints `tokenId` and transfers it to `to`.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must not exist.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function _safeMint(address to, uint256 tokenId) internal virtual {\\n        _safeMint(to, tokenId, \\\"\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is\\n     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.\\n     */\\n    function _safeMint(\\n        address to,\\n        uint256 tokenId,\\n        bytes memory _data\\n    ) internal virtual {\\n        _mint(to, tokenId);\\n        require(\\n            _checkOnERC721Received(address(0), to, tokenId, _data),\\n            \\\"ERC721: transfer to non ERC721Receiver implementer\\\"\\n        );\\n    }\\n\\n    /**\\n     * @dev Mints `tokenId` and transfers it to `to`.\\n     *\\n     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must not exist.\\n     * - `to` cannot be the zero address.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function _mint(address to, uint256 tokenId) internal virtual {\\n        require(to != address(0), \\\"ERC721: mint to the zero address\\\");\\n        require(!_exists(tokenId), \\\"ERC721: token already minted\\\");\\n\\n        _beforeTokenTransfer(address(0), to, tokenId);\\n\\n        _balances[to] += 1;\\n        _owners[tokenId] = to;\\n\\n        emit Transfer(address(0), to, tokenId);\\n    }\\n\\n    /**\\n     * @dev Destroys `tokenId`.\\n     * The approval is cleared when the token is burned.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function _burn(uint256 tokenId) internal virtual {\\n        address owner = ERC721.ownerOf(tokenId);\\n\\n        _beforeTokenTransfer(owner, address(0), tokenId);\\n\\n        // Clear approvals\\n        _approve(address(0), tokenId);\\n\\n        _balances[owner] -= 1;\\n        delete _owners[tokenId];\\n\\n        emit Transfer(owner, address(0), tokenId);\\n    }\\n\\n    /**\\n     * @dev Transfers `tokenId` from `from` to `to`.\\n     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.\\n     *\\n     * Requirements:\\n     *\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must be owned by `from`.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function _transfer(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) internal virtual {\\n        require(ERC721.ownerOf(tokenId) == from, \\\"ERC721: transfer of token that is not own\\\");\\n        require(to != address(0), \\\"ERC721: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(from, to, tokenId);\\n\\n        // Clear approvals from the previous owner\\n        _approve(address(0), tokenId);\\n\\n        _balances[from] -= 1;\\n        _balances[to] += 1;\\n        _owners[tokenId] = to;\\n\\n        emit Transfer(from, to, tokenId);\\n    }\\n\\n    /**\\n     * @dev Approve `to` to operate on `tokenId`\\n     *\\n     * Emits a {Approval} event.\\n     */\\n    function _approve(address to, uint256 tokenId) internal virtual {\\n        _tokenApprovals[tokenId] = to;\\n        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);\\n    }\\n\\n    /**\\n     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.\\n     * The call is not executed if the target address is not a contract.\\n     *\\n     * @param from address representing the previous owner of the given token ID\\n     * @param to target address that will receive the tokens\\n     * @param tokenId uint256 ID of the token to be transferred\\n     * @param _data bytes optional data to send along with the call\\n     * @return bool whether the call correctly returned the expected magic value\\n     */\\n    function _checkOnERC721Received(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes memory _data\\n    ) private returns (bool) {\\n        if (to.isContract()) {\\n            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {\\n                return retval == IERC721Receiver.onERC721Received.selector;\\n            } catch (bytes memory reason) {\\n                if (reason.length == 0) {\\n                    revert(\\\"ERC721: transfer to non ERC721Receiver implementer\\\");\\n                } else {\\n                    assembly {\\n                        revert(add(32, reason), mload(reason))\\n                    }\\n                }\\n            }\\n        } else {\\n            return true;\\n        }\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any token transfer. This includes minting\\n     * and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be\\n     * transferred to `to`.\\n     * - When `from` is zero, `tokenId` will be minted for `to`.\\n     * - When `to` is zero, ``from``'s `tokenId` will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) internal virtual {}\\n}\\n\",\"keccak256\":\"0x7d2b8ba4b256bfcac347991b75242f9bc37f499c5236af50cf09d0b35943dc0c\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../../utils/introspection/IERC165.sol\\\";\\n\\n/**\\n * @dev Required interface of an ERC721 compliant contract.\\n */\\ninterface IERC721 is IERC165 {\\n    /**\\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\\n     */\\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\\n     */\\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\\n\\n    /**\\n     * @dev Returns the number of tokens in ``owner``'s account.\\n     */\\n    function balanceOf(address owner) external view returns (uint256 balance);\\n\\n    /**\\n     * @dev Returns the owner of the `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function ownerOf(uint256 tokenId) external view returns (address owner);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Transfers `tokenId` token from `from` to `to`.\\n     *\\n     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\\n     * The approval is cleared when the token is transferred.\\n     *\\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\\n     *\\n     * Requirements:\\n     *\\n     * - The caller must own the token or be an approved operator.\\n     * - `tokenId` must exist.\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address to, uint256 tokenId) external;\\n\\n    /**\\n     * @dev Returns the account approved for `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function getApproved(uint256 tokenId) external view returns (address operator);\\n\\n    /**\\n     * @dev Approve or remove `operator` as an operator for the caller.\\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\\n     *\\n     * Requirements:\\n     *\\n     * - The `operator` cannot be the caller.\\n     *\\n     * Emits an {ApprovalForAll} event.\\n     */\\n    function setApprovalForAll(address operator, bool _approved) external;\\n\\n    /**\\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\\n     *\\n     * See {setApprovalForAll}\\n     */\\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external;\\n}\\n\",\"keccak256\":\"0xf101e8720213560fab41104d53b3cc7ba0456ef3a98455aa7f022391783144a0\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title ERC721 token receiver interface\\n * @dev Interface for any contract that wants to support safeTransfers\\n * from ERC721 asset contracts.\\n */\\ninterface IERC721Receiver {\\n    /**\\n     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\\n     * by `operator` from `from`, this function is called.\\n     *\\n     * It must return its Solidity selector to confirm the token transfer.\\n     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\\n     *\\n     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\\n     */\\n    function onERC721Received(\\n        address operator,\\n        address from,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external returns (bytes4);\\n}\\n\",\"keccak256\":\"0xd9517254724276e2e8de3769183c1f738f445f0095c26fd9b86d3c6687e887b9\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC721.sol\\\";\\n\\n/**\\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\\n * @dev See https://eips.ethereum.org/EIPS/eip-721\\n */\\ninterface IERC721Metadata is IERC721 {\\n    /**\\n     * @dev Returns the token collection name.\\n     */\\n    function name() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the token collection symbol.\\n     */\\n    function symbol() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\\n     */\\n    function tokenURI(uint256 tokenId) external view returns (string memory);\\n}\\n\",\"keccak256\":\"0xd32fb7f530a914b1083d10a6bed3a586f2451952fec04fe542bcc670a82f7ba5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n    function _msgSender() internal view virtual returns (address) {\\n        return msg.sender;\\n    }\\n\\n    function _msgData() internal view virtual returns (bytes calldata) {\\n        return msg.data;\\n    }\\n}\\n\",\"keccak256\":\"0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Strings.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev String operations.\\n */\\nlibrary Strings {\\n    bytes16 private constant _HEX_SYMBOLS = \\\"0123456789abcdef\\\";\\n\\n    /**\\n     * @dev Converts a `uint256` to its ASCII `string` decimal representation.\\n     */\\n    function toString(uint256 value) internal pure returns (string memory) {\\n        // Inspired by OraclizeAPI's implementation - MIT licence\\n        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\\n\\n        if (value == 0) {\\n            return \\\"0\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 digits;\\n        while (temp != 0) {\\n            digits++;\\n            temp /= 10;\\n        }\\n        bytes memory buffer = new bytes(digits);\\n        while (value != 0) {\\n            digits -= 1;\\n            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\\n            value /= 10;\\n        }\\n        return string(buffer);\\n    }\\n\\n    /**\\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\\n     */\\n    function toHexString(uint256 value) internal pure returns (string memory) {\\n        if (value == 0) {\\n            return \\\"0x00\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 length = 0;\\n        while (temp != 0) {\\n            length++;\\n            temp >>= 8;\\n        }\\n        return toHexString(value, length);\\n    }\\n\\n    /**\\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\\n     */\\n    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\\n        bytes memory buffer = new bytes(2 * length + 2);\\n        buffer[0] = \\\"0\\\";\\n        buffer[1] = \\\"x\\\";\\n        for (uint256 i = 2 * length + 1; i > 1; --i) {\\n            buffer[i] = _HEX_SYMBOLS[value & 0xf];\\n            value >>= 4;\\n        }\\n        require(value == 0, \\\"Strings: hex length insufficient\\\");\\n        return string(buffer);\\n    }\\n}\\n\",\"keccak256\":\"0x391d3ba97ab6856a16b225d6ee29617ad15ff00db70f3b4df1ab5ea33aa47c9d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC165.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC165} interface.\\n *\\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\\n * for the additional interface id that will be supported. For example:\\n *\\n * ```solidity\\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\\n *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\\n * }\\n * ```\\n *\\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\\n */\\nabstract contract ERC165 is IERC165 {\\n    /**\\n     * @dev See {IERC165-supportsInterface}.\\n     */\\n    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\\n        return interfaceId == type(IERC165).interfaceId;\\n    }\\n}\\n\",\"keccak256\":\"0x5718c5df9bd67ac68a796961df938821bb5dc0cd4c6118d77e9145afb187409b\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 1143,
                "contract": "@openzeppelin/contracts/token/ERC721/ERC721.sol:ERC721",
                "label": "_name",
                "offset": 0,
                "slot": "0",
                "type": "t_string_storage"
              },
              {
                "astId": 1145,
                "contract": "@openzeppelin/contracts/token/ERC721/ERC721.sol:ERC721",
                "label": "_symbol",
                "offset": 0,
                "slot": "1",
                "type": "t_string_storage"
              },
              {
                "astId": 1149,
                "contract": "@openzeppelin/contracts/token/ERC721/ERC721.sol:ERC721",
                "label": "_owners",
                "offset": 0,
                "slot": "2",
                "type": "t_mapping(t_uint256,t_address)"
              },
              {
                "astId": 1153,
                "contract": "@openzeppelin/contracts/token/ERC721/ERC721.sol:ERC721",
                "label": "_balances",
                "offset": 0,
                "slot": "3",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 1157,
                "contract": "@openzeppelin/contracts/token/ERC721/ERC721.sol:ERC721",
                "label": "_tokenApprovals",
                "offset": 0,
                "slot": "4",
                "type": "t_mapping(t_uint256,t_address)"
              },
              {
                "astId": 1163,
                "contract": "@openzeppelin/contracts/token/ERC721/ERC721.sol:ERC721",
                "label": "_operatorApprovals",
                "offset": 0,
                "slot": "5",
                "type": "t_mapping(t_address,t_mapping(t_address,t_bool))"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_bool": {
                "encoding": "inplace",
                "label": "bool",
                "numberOfBytes": "1"
              },
              "t_mapping(t_address,t_bool)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => bool)",
                "numberOfBytes": "32",
                "value": "t_bool"
              },
              "t_mapping(t_address,t_mapping(t_address,t_bool))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => bool))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_bool)"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_mapping(t_uint256,t_address)": {
                "encoding": "mapping",
                "key": "t_uint256",
                "label": "mapping(uint256 => address)",
                "numberOfBytes": "32",
                "value": "t_address"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC721/IERC721.sol": {
        "IERC721": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "approved",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "bool",
                  "name": "approved",
                  "type": "bool"
                }
              ],
              "name": "ApprovalForAll",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "balance",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "getApproved",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                }
              ],
              "name": "isApprovedForAll",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "ownerOf",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "safeTransferFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                },
                {
                  "internalType": "bytes",
                  "name": "data",
                  "type": "bytes"
                }
              ],
              "name": "safeTransferFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "internalType": "bool",
                  "name": "_approved",
                  "type": "bool"
                }
              ],
              "name": "setApprovalForAll",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "bytes4",
                  "name": "interfaceId",
                  "type": "bytes4"
                }
              ],
              "name": "supportsInterface",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Required interface of an ERC721 compliant contract.",
            "events": {
              "Approval(address,address,uint256)": {
                "details": "Emitted when `owner` enables `approved` to manage the `tokenId` token."
              },
              "ApprovalForAll(address,address,bool)": {
                "details": "Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."
              },
              "Transfer(address,address,uint256)": {
                "details": "Emitted when `tokenId` token is transferred from `from` to `to`."
              }
            },
            "kind": "dev",
            "methods": {
              "approve(address,uint256)": {
                "details": "Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event."
              },
              "balanceOf(address)": {
                "details": "Returns the number of tokens in ``owner``'s account."
              },
              "getApproved(uint256)": {
                "details": "Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist."
              },
              "isApprovedForAll(address,address)": {
                "details": "Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}"
              },
              "ownerOf(uint256)": {
                "details": "Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist."
              },
              "safeTransferFrom(address,address,uint256)": {
                "details": "Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
              },
              "safeTransferFrom(address,address,uint256,bytes)": {
                "details": "Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
              },
              "setApprovalForAll(address,bool)": {
                "details": "Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event."
              },
              "supportsInterface(bytes4)": {
                "details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
              },
              "transferFrom(address,address,uint256)": {
                "details": "Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "getApproved(uint256)": "081812fc",
              "isApprovedForAll(address,address)": "e985e9c5",
              "ownerOf(uint256)": "6352211e",
              "safeTransferFrom(address,address,uint256)": "42842e0e",
              "safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
              "setApprovalForAll(address,bool)": "a22cb465",
              "supportsInterface(bytes4)": "01ffc9a7",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"_approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Required interface of an ERC721 compliant contract.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"}},\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":\"IERC721\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../../utils/introspection/IERC165.sol\\\";\\n\\n/**\\n * @dev Required interface of an ERC721 compliant contract.\\n */\\ninterface IERC721 is IERC165 {\\n    /**\\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\\n     */\\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\\n     */\\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\\n\\n    /**\\n     * @dev Returns the number of tokens in ``owner``'s account.\\n     */\\n    function balanceOf(address owner) external view returns (uint256 balance);\\n\\n    /**\\n     * @dev Returns the owner of the `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function ownerOf(uint256 tokenId) external view returns (address owner);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Transfers `tokenId` token from `from` to `to`.\\n     *\\n     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\\n     * The approval is cleared when the token is transferred.\\n     *\\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\\n     *\\n     * Requirements:\\n     *\\n     * - The caller must own the token or be an approved operator.\\n     * - `tokenId` must exist.\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address to, uint256 tokenId) external;\\n\\n    /**\\n     * @dev Returns the account approved for `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function getApproved(uint256 tokenId) external view returns (address operator);\\n\\n    /**\\n     * @dev Approve or remove `operator` as an operator for the caller.\\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\\n     *\\n     * Requirements:\\n     *\\n     * - The `operator` cannot be the caller.\\n     *\\n     * Emits an {ApprovalForAll} event.\\n     */\\n    function setApprovalForAll(address operator, bool _approved) external;\\n\\n    /**\\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\\n     *\\n     * See {setApprovalForAll}\\n     */\\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external;\\n}\\n\",\"keccak256\":\"0xf101e8720213560fab41104d53b3cc7ba0456ef3a98455aa7f022391783144a0\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
        "IERC721Receiver": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                },
                {
                  "internalType": "bytes",
                  "name": "data",
                  "type": "bytes"
                }
              ],
              "name": "onERC721Received",
              "outputs": [
                {
                  "internalType": "bytes4",
                  "name": "",
                  "type": "bytes4"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Interface for any contract that wants to support safeTransfers from ERC721 asset contracts.",
            "kind": "dev",
            "methods": {
              "onERC721Received(address,address,uint256,bytes)": {
                "details": "Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`."
              }
            },
            "title": "ERC721 token receiver interface",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "onERC721Received(address,address,uint256,bytes)": "150b7a02"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for any contract that wants to support safeTransfers from ERC721 asset contracts.\",\"kind\":\"dev\",\"methods\":{\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\"}},\"title\":\"ERC721 token receiver interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":\"IERC721Receiver\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title ERC721 token receiver interface\\n * @dev Interface for any contract that wants to support safeTransfers\\n * from ERC721 asset contracts.\\n */\\ninterface IERC721Receiver {\\n    /**\\n     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\\n     * by `operator` from `from`, this function is called.\\n     *\\n     * It must return its Solidity selector to confirm the token transfer.\\n     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\\n     *\\n     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\\n     */\\n    function onERC721Received(\\n        address operator,\\n        address from,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external returns (bytes4);\\n}\\n\",\"keccak256\":\"0xd9517254724276e2e8de3769183c1f738f445f0095c26fd9b86d3c6687e887b9\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
        "IERC721Metadata": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "approved",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "bool",
                  "name": "approved",
                  "type": "bool"
                }
              ],
              "name": "ApprovalForAll",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "balance",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "getApproved",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                }
              ],
              "name": "isApprovedForAll",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "ownerOf",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "safeTransferFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                },
                {
                  "internalType": "bytes",
                  "name": "data",
                  "type": "bytes"
                }
              ],
              "name": "safeTransferFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "internalType": "bool",
                  "name": "_approved",
                  "type": "bool"
                }
              ],
              "name": "setApprovalForAll",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "bytes4",
                  "name": "interfaceId",
                  "type": "bytes4"
                }
              ],
              "name": "supportsInterface",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "symbol",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "tokenURI",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "See https://eips.ethereum.org/EIPS/eip-721",
            "kind": "dev",
            "methods": {
              "approve(address,uint256)": {
                "details": "Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event."
              },
              "balanceOf(address)": {
                "details": "Returns the number of tokens in ``owner``'s account."
              },
              "getApproved(uint256)": {
                "details": "Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist."
              },
              "isApprovedForAll(address,address)": {
                "details": "Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}"
              },
              "name()": {
                "details": "Returns the token collection name."
              },
              "ownerOf(uint256)": {
                "details": "Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist."
              },
              "safeTransferFrom(address,address,uint256)": {
                "details": "Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
              },
              "safeTransferFrom(address,address,uint256,bytes)": {
                "details": "Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
              },
              "setApprovalForAll(address,bool)": {
                "details": "Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event."
              },
              "supportsInterface(bytes4)": {
                "details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
              },
              "symbol()": {
                "details": "Returns the token collection symbol."
              },
              "tokenURI(uint256)": {
                "details": "Returns the Uniform Resource Identifier (URI) for `tokenId` token."
              },
              "transferFrom(address,address,uint256)": {
                "details": "Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event."
              }
            },
            "title": "ERC-721 Non-Fungible Token Standard, optional metadata extension",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "getApproved(uint256)": "081812fc",
              "isApprovedForAll(address,address)": "e985e9c5",
              "name()": "06fdde03",
              "ownerOf(uint256)": "6352211e",
              "safeTransferFrom(address,address,uint256)": "42842e0e",
              "safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
              "setApprovalForAll(address,bool)": "a22cb465",
              "supportsInterface(bytes4)": "01ffc9a7",
              "symbol()": "95d89b41",
              "tokenURI(uint256)": "c87b56dd",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"_approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"See https://eips.ethereum.org/EIPS/eip-721\",\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"name()\":{\"details\":\"Returns the token collection name.\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"symbol()\":{\"details\":\"Returns the token collection symbol.\"},\"tokenURI(uint256)\":{\"details\":\"Returns the Uniform Resource Identifier (URI) for `tokenId` token.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"title\":\"ERC-721 Non-Fungible Token Standard, optional metadata extension\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":\"IERC721Metadata\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../../utils/introspection/IERC165.sol\\\";\\n\\n/**\\n * @dev Required interface of an ERC721 compliant contract.\\n */\\ninterface IERC721 is IERC165 {\\n    /**\\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\\n     */\\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\\n     */\\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\\n\\n    /**\\n     * @dev Returns the number of tokens in ``owner``'s account.\\n     */\\n    function balanceOf(address owner) external view returns (uint256 balance);\\n\\n    /**\\n     * @dev Returns the owner of the `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function ownerOf(uint256 tokenId) external view returns (address owner);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Transfers `tokenId` token from `from` to `to`.\\n     *\\n     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\\n     * The approval is cleared when the token is transferred.\\n     *\\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\\n     *\\n     * Requirements:\\n     *\\n     * - The caller must own the token or be an approved operator.\\n     * - `tokenId` must exist.\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address to, uint256 tokenId) external;\\n\\n    /**\\n     * @dev Returns the account approved for `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function getApproved(uint256 tokenId) external view returns (address operator);\\n\\n    /**\\n     * @dev Approve or remove `operator` as an operator for the caller.\\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\\n     *\\n     * Requirements:\\n     *\\n     * - The `operator` cannot be the caller.\\n     *\\n     * Emits an {ApprovalForAll} event.\\n     */\\n    function setApprovalForAll(address operator, bool _approved) external;\\n\\n    /**\\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\\n     *\\n     * See {setApprovalForAll}\\n     */\\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external;\\n}\\n\",\"keccak256\":\"0xf101e8720213560fab41104d53b3cc7ba0456ef3a98455aa7f022391783144a0\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC721.sol\\\";\\n\\n/**\\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\\n * @dev See https://eips.ethereum.org/EIPS/eip-721\\n */\\ninterface IERC721Metadata is IERC721 {\\n    /**\\n     * @dev Returns the token collection name.\\n     */\\n    function name() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the token collection symbol.\\n     */\\n    function symbol() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\\n     */\\n    function tokenURI(uint256 tokenId) external view returns (string memory);\\n}\\n\",\"keccak256\":\"0xd32fb7f530a914b1083d10a6bed3a586f2451952fec04fe542bcc670a82f7ba5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/Address.sol": {
        "Address": {
          "abi": [],
          "devdoc": {
            "details": "Collection of functions related to the address type",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122005259e7eb2fab55fac6470e5be8369ce9e20d3fccd9ec8166ce4d4ebab832fbd64736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SDIV 0x25 SWAP15 PUSH31 0xB2FAB55FAC6470E5BE8369CE9E20D3FCCD9EC8166CE4D4EBAB832FBD64736F PUSH13 0x63430008060033000000000000 ",
              "sourceMap": "126:7729:11:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;126:7729:11;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122005259e7eb2fab55fac6470e5be8369ce9e20d3fccd9ec8166ce4d4ebab832fbd64736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SDIV 0x25 SWAP15 PUSH31 0xB2FAB55FAC6470E5BE8369CE9E20D3FCCD9EC8166CE4D4EBAB832FBD64736F PUSH13 0x63430008060033000000000000 ",
              "sourceMap": "126:7729:11:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "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",
                "functionDelegateCall(address,bytes memory)": "infinite",
                "functionDelegateCall(address,bytes memory,string memory)": "infinite",
                "functionStaticCall(address,bytes memory)": "infinite",
                "functionStaticCall(address,bytes memory,string memory)": "infinite",
                "isContract(address)": "infinite",
                "sendValue(address payable,uint256)": "infinite",
                "verifyCallResult(bool,bytes memory,string memory)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"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\":{\"@openzeppelin/contracts/utils/Address.sol\":\"Address\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/Context.sol": {
        "Context": {
          "abi": [],
          "devdoc": {
            "details": "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 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.",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"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 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.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n    function _msgSender() internal view virtual returns (address) {\\n        return msg.sender;\\n    }\\n\\n    function _msgData() internal view virtual returns (bytes calldata) {\\n        return msg.data;\\n    }\\n}\\n\",\"keccak256\":\"0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/Counters.sol": {
        "Counters": {
          "abi": [],
          "devdoc": {
            "author": "Matt Condon (@shrugs)",
            "details": "Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number of elements in a mapping, issuing ERC721 ids, or counting request ids. Include with `using Counters for Counters.Counter;`",
            "kind": "dev",
            "methods": {},
            "title": "Counters",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220bf8ef1d5a98acaa1cfbbd742bc3c3346748830dcbbb1002a680841e2a436d79064736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBF DUP15 CALL 0xD5 0xA9 DUP11 0xCA LOG1 0xCF 0xBB 0xD7 TIMESTAMP 0xBC EXTCODECOPY CALLER CHAINID PUSH21 0x8830DCBBB1002A680841E2A436D79064736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "370:971:13:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;370:971:13;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220bf8ef1d5a98acaa1cfbbd742bc3c3346748830dcbbb1002a680841e2a436d79064736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBF DUP15 CALL 0xD5 0xA9 DUP11 0xCA LOG1 0xCF 0xBB 0xD7 TIMESTAMP 0xBC EXTCODECOPY CALLER CHAINID PUSH21 0x8830DCBBB1002A680841E2A436D79064736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "370:971:13:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "current(struct Counters.Counter storage pointer)": "infinite",
                "decrement(struct Counters.Counter storage pointer)": "infinite",
                "increment(struct Counters.Counter storage pointer)": "infinite",
                "reset(struct Counters.Counter storage pointer)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"author\":\"Matt Condon (@shrugs)\",\"details\":\"Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number of elements in a mapping, issuing ERC721 ids, or counting request ids. Include with `using Counters for Counters.Counter;`\",\"kind\":\"dev\",\"methods\":{},\"title\":\"Counters\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Counters.sol\":\"Counters\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Counters.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Counters\\n * @author Matt Condon (@shrugs)\\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\\n *\\n * Include with `using Counters for Counters.Counter;`\\n */\\nlibrary Counters {\\n    struct Counter {\\n        // This variable should never be directly accessed by users of the library: interactions must be restricted to\\n        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\\n        // this feature: see https://github.com/ethereum/solidity/issues/4637\\n        uint256 _value; // default: 0\\n    }\\n\\n    function current(Counter storage counter) internal view returns (uint256) {\\n        return counter._value;\\n    }\\n\\n    function increment(Counter storage counter) internal {\\n        unchecked {\\n            counter._value += 1;\\n        }\\n    }\\n\\n    function decrement(Counter storage counter) internal {\\n        uint256 value = counter._value;\\n        require(value > 0, \\\"Counter: decrement overflow\\\");\\n        unchecked {\\n            counter._value = value - 1;\\n        }\\n    }\\n\\n    function reset(Counter storage counter) internal {\\n        counter._value = 0;\\n    }\\n}\\n\",\"keccak256\":\"0x78450f4e3b722cce467b21e285f72ce5eaf361e9ba9dd2241a413926246773cd\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/Strings.sol": {
        "Strings": {
          "abi": [],
          "devdoc": {
            "details": "String operations.",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220776643d2c832e16a3973a869a83e99311a4db5aa102a24f037d5cbc52e7d3d1464736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH24 0x6643D2C832E16A3973A869A83E99311A4DB5AA102A24F037 0xD5 0xCB 0xC5 0x2E PUSH30 0x3D1464736F6C634300080600330000000000000000000000000000000000 ",
              "sourceMap": "93:1885:14:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;93:1885:14;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220776643d2c832e16a3973a869a83e99311a4db5aa102a24f037d5cbc52e7d3d1464736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH24 0x6643D2C832E16A3973A869A83E99311A4DB5AA102A24F037 0xD5 0xCB 0xC5 0x2E PUSH30 0x3D1464736F6C634300080600330000000000000000000000000000000000 ",
              "sourceMap": "93:1885:14:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "toHexString(uint256)": "infinite",
                "toHexString(uint256,uint256)": "infinite",
                "toString(uint256)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"String operations.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Strings.sol\":\"Strings\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Strings.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev String operations.\\n */\\nlibrary Strings {\\n    bytes16 private constant _HEX_SYMBOLS = \\\"0123456789abcdef\\\";\\n\\n    /**\\n     * @dev Converts a `uint256` to its ASCII `string` decimal representation.\\n     */\\n    function toString(uint256 value) internal pure returns (string memory) {\\n        // Inspired by OraclizeAPI's implementation - MIT licence\\n        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\\n\\n        if (value == 0) {\\n            return \\\"0\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 digits;\\n        while (temp != 0) {\\n            digits++;\\n            temp /= 10;\\n        }\\n        bytes memory buffer = new bytes(digits);\\n        while (value != 0) {\\n            digits -= 1;\\n            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\\n            value /= 10;\\n        }\\n        return string(buffer);\\n    }\\n\\n    /**\\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\\n     */\\n    function toHexString(uint256 value) internal pure returns (string memory) {\\n        if (value == 0) {\\n            return \\\"0x00\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 length = 0;\\n        while (temp != 0) {\\n            length++;\\n            temp >>= 8;\\n        }\\n        return toHexString(value, length);\\n    }\\n\\n    /**\\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\\n     */\\n    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\\n        bytes memory buffer = new bytes(2 * length + 2);\\n        buffer[0] = \\\"0\\\";\\n        buffer[1] = \\\"x\\\";\\n        for (uint256 i = 2 * length + 1; i > 1; --i) {\\n            buffer[i] = _HEX_SYMBOLS[value & 0xf];\\n            value >>= 4;\\n        }\\n        require(value == 0, \\\"Strings: hex length insufficient\\\");\\n        return string(buffer);\\n    }\\n}\\n\",\"keccak256\":\"0x391d3ba97ab6856a16b225d6ee29617ad15ff00db70f3b4df1ab5ea33aa47c9d\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/cryptography/ECDSA.sol": {
        "ECDSA": {
          "abi": [],
          "devdoc": {
            "details": "Elliptic Curve Digital Signature Algorithm (ECDSA) operations. These functions can be used to verify that a message was signed by the holder of the private keys of a given address.",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122054d7f65049611212916f6a1c91d0d18811590649a9dbbd703b3b80bf66abbddf64736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SLOAD 0xD7 0xF6 POP 0x49 PUSH2 0x1212 SWAP2 PUSH16 0x6A1C91D0D18811590649A9DBBD703B3B DUP1 0xBF PUSH7 0xABBDDF64736F6C PUSH4 0x43000806 STOP CALLER ",
              "sourceMap": "264:8486:15:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;264:8486:15;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122054d7f65049611212916f6a1c91d0d18811590649a9dbbd703b3b80bf66abbddf64736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SLOAD 0xD7 0xF6 POP 0x49 PUSH2 0x1212 SWAP2 PUSH16 0x6A1C91D0D18811590649A9DBBD703B3B DUP1 0xBF PUSH7 0xABBDDF64736F6C PUSH4 0x43000806 STOP CALLER ",
              "sourceMap": "264:8486:15:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "_throwError(enum ECDSA.RecoverError)": "infinite",
                "recover(bytes32,bytes memory)": "infinite",
                "recover(bytes32,bytes32,bytes32)": "infinite",
                "recover(bytes32,uint8,bytes32,bytes32)": "infinite",
                "toEthSignedMessageHash(bytes32)": "infinite",
                "toTypedDataHash(bytes32,bytes32)": "infinite",
                "tryRecover(bytes32,bytes memory)": "infinite",
                "tryRecover(bytes32,bytes32,bytes32)": "infinite",
                "tryRecover(bytes32,uint8,bytes32,bytes32)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Elliptic Curve Digital Signature Algorithm (ECDSA) operations. These functions can be used to verify that a message was signed by the holder of the private keys of a given address.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":\"ECDSA\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\\n *\\n * These functions can be used to verify that a message was signed by the holder\\n * of the private keys of a given address.\\n */\\nlibrary ECDSA {\\n    enum RecoverError {\\n        NoError,\\n        InvalidSignature,\\n        InvalidSignatureLength,\\n        InvalidSignatureS,\\n        InvalidSignatureV\\n    }\\n\\n    function _throwError(RecoverError error) private pure {\\n        if (error == RecoverError.NoError) {\\n            return; // no error: do nothing\\n        } else if (error == RecoverError.InvalidSignature) {\\n            revert(\\\"ECDSA: invalid signature\\\");\\n        } else if (error == RecoverError.InvalidSignatureLength) {\\n            revert(\\\"ECDSA: invalid signature length\\\");\\n        } else if (error == RecoverError.InvalidSignatureS) {\\n            revert(\\\"ECDSA: invalid signature 's' value\\\");\\n        } else if (error == RecoverError.InvalidSignatureV) {\\n            revert(\\\"ECDSA: invalid signature 'v' value\\\");\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature` or error string. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {toEthSignedMessageHash} on it.\\n     *\\n     * Documentation for signature generation:\\n     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\\n     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\\n        // Check the signature length\\n        // - case 65: r,s,v signature (standard)\\n        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._\\n        if (signature.length == 65) {\\n            bytes32 r;\\n            bytes32 s;\\n            uint8 v;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                s := mload(add(signature, 0x40))\\n                v := byte(0, mload(add(signature, 0x60)))\\n            }\\n            return tryRecover(hash, v, r, s);\\n        } else if (signature.length == 64) {\\n            bytes32 r;\\n            bytes32 vs;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                vs := mload(add(signature, 0x40))\\n            }\\n            return tryRecover(hash, r, vs);\\n        } else {\\n            return (address(0), RecoverError.InvalidSignatureLength);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature`. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {toEthSignedMessageHash} on it.\\n     */\\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, signature);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\\n     *\\n     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address, RecoverError) {\\n        bytes32 s;\\n        uint8 v;\\n        assembly {\\n            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\\n            v := add(shr(255, vs), 27)\\n        }\\n        return tryRecover(hash, v, r, s);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\\n     *\\n     * _Available since v4.2._\\n     */\\n    function recover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, r, vs);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address, RecoverError) {\\n        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\\n        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\\n        // the valid range for s in (301): 0 < s < secp256k1n \\u00f7 2 + 1, and for v in (302): v \\u2208 {27, 28}. Most\\n        // signatures from current libraries generate a unique signature with an s-value in the lower half order.\\n        //\\n        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\\n        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\\n        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\\n        // these malleable signatures as well.\\n        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\\n            return (address(0), RecoverError.InvalidSignatureS);\\n        }\\n        if (v != 27 && v != 28) {\\n            return (address(0), RecoverError.InvalidSignatureV);\\n        }\\n\\n        // If the signature is valid (and not malleable), return the signer address\\n        address signer = ecrecover(hash, v, r, s);\\n        if (signer == address(0)) {\\n            return (address(0), RecoverError.InvalidSignature);\\n        }\\n\\n        return (signer, RecoverError.NoError);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     */\\n    function recover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from a `hash`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {\\n        // 32 is the length in bytes of hash,\\n        // enforced by the type signature above\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n32\\\", hash));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Typed Data, created from a\\n     * `domainSeparator` and a `structHash`. This produces hash corresponding\\n     * to the one signed with the\\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\\n     * JSON-RPC method as part of EIP-712.\\n     *\\n     * See {recover}.\\n     */\\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19\\\\x01\\\", domainSeparator, structHash));\\n    }\\n}\\n\",\"keccak256\":\"0xbc991a1cf357ce19480831a40792c814238a3b5458134703682abd8aa39719fb\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol": {
        "EIP712": {
          "abi": [],
          "devdoc": {
            "details": "https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in their contracts using a combination of `abi.encode` and `keccak256`. This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA ({_hashTypedDataV4}). The implementation of the domain separator was designed to be as efficient as possible while still properly updating the chain id to protect against replay attacks on an eventual fork of the chain. NOTE: This contract implements the version of the encoding known as \"v4\", as implemented by the JSON RPC method https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. _Available since v3.4._",
            "kind": "dev",
            "methods": {
              "constructor": {
                "details": "Initializes the domain separator and parameter caches. The meaning of `name` and `version` is specified in https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. - `version`: the current major version of the signing domain. NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart contract upgrade]."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in their contracts using a combination of `abi.encode` and `keccak256`. This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA ({_hashTypedDataV4}). The implementation of the domain separator was designed to be as efficient as possible while still properly updating the chain id to protect against replay attacks on an eventual fork of the chain. NOTE: This contract implements the version of the encoding known as \\\"v4\\\", as implemented by the JSON RPC method https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. _Available since v3.4._\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the domain separator and parameter caches. The meaning of `name` and `version` is specified in https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. - `version`: the current major version of the signing domain. NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart contract upgrade].\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol\":\"EIP712\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\\n *\\n * These functions can be used to verify that a message was signed by the holder\\n * of the private keys of a given address.\\n */\\nlibrary ECDSA {\\n    enum RecoverError {\\n        NoError,\\n        InvalidSignature,\\n        InvalidSignatureLength,\\n        InvalidSignatureS,\\n        InvalidSignatureV\\n    }\\n\\n    function _throwError(RecoverError error) private pure {\\n        if (error == RecoverError.NoError) {\\n            return; // no error: do nothing\\n        } else if (error == RecoverError.InvalidSignature) {\\n            revert(\\\"ECDSA: invalid signature\\\");\\n        } else if (error == RecoverError.InvalidSignatureLength) {\\n            revert(\\\"ECDSA: invalid signature length\\\");\\n        } else if (error == RecoverError.InvalidSignatureS) {\\n            revert(\\\"ECDSA: invalid signature 's' value\\\");\\n        } else if (error == RecoverError.InvalidSignatureV) {\\n            revert(\\\"ECDSA: invalid signature 'v' value\\\");\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature` or error string. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {toEthSignedMessageHash} on it.\\n     *\\n     * Documentation for signature generation:\\n     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\\n     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\\n        // Check the signature length\\n        // - case 65: r,s,v signature (standard)\\n        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._\\n        if (signature.length == 65) {\\n            bytes32 r;\\n            bytes32 s;\\n            uint8 v;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                s := mload(add(signature, 0x40))\\n                v := byte(0, mload(add(signature, 0x60)))\\n            }\\n            return tryRecover(hash, v, r, s);\\n        } else if (signature.length == 64) {\\n            bytes32 r;\\n            bytes32 vs;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                vs := mload(add(signature, 0x40))\\n            }\\n            return tryRecover(hash, r, vs);\\n        } else {\\n            return (address(0), RecoverError.InvalidSignatureLength);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature`. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {toEthSignedMessageHash} on it.\\n     */\\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, signature);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\\n     *\\n     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address, RecoverError) {\\n        bytes32 s;\\n        uint8 v;\\n        assembly {\\n            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\\n            v := add(shr(255, vs), 27)\\n        }\\n        return tryRecover(hash, v, r, s);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\\n     *\\n     * _Available since v4.2._\\n     */\\n    function recover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, r, vs);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address, RecoverError) {\\n        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\\n        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\\n        // the valid range for s in (301): 0 < s < secp256k1n \\u00f7 2 + 1, and for v in (302): v \\u2208 {27, 28}. Most\\n        // signatures from current libraries generate a unique signature with an s-value in the lower half order.\\n        //\\n        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\\n        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\\n        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\\n        // these malleable signatures as well.\\n        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\\n            return (address(0), RecoverError.InvalidSignatureS);\\n        }\\n        if (v != 27 && v != 28) {\\n            return (address(0), RecoverError.InvalidSignatureV);\\n        }\\n\\n        // If the signature is valid (and not malleable), return the signer address\\n        address signer = ecrecover(hash, v, r, s);\\n        if (signer == address(0)) {\\n            return (address(0), RecoverError.InvalidSignature);\\n        }\\n\\n        return (signer, RecoverError.NoError);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     */\\n    function recover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from a `hash`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {\\n        // 32 is the length in bytes of hash,\\n        // enforced by the type signature above\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n32\\\", hash));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Typed Data, created from a\\n     * `domainSeparator` and a `structHash`. This produces hash corresponding\\n     * to the one signed with the\\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\\n     * JSON-RPC method as part of EIP-712.\\n     *\\n     * See {recover}.\\n     */\\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19\\\\x01\\\", domainSeparator, structHash));\\n    }\\n}\\n\",\"keccak256\":\"0xbc991a1cf357ce19480831a40792c814238a3b5458134703682abd8aa39719fb\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./ECDSA.sol\\\";\\n\\n/**\\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.\\n *\\n * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\\n * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\\n * they need in their contracts using a combination of `abi.encode` and `keccak256`.\\n *\\n * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\\n * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\\n * ({_hashTypedDataV4}).\\n *\\n * The implementation of the domain separator was designed to be as efficient as possible while still properly updating\\n * the chain id to protect against replay attacks on an eventual fork of the chain.\\n *\\n * NOTE: This contract implements the version of the encoding known as \\\"v4\\\", as implemented by the JSON RPC method\\n * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\\n *\\n * _Available since v3.4._\\n */\\nabstract contract EIP712 {\\n    /* solhint-disable var-name-mixedcase */\\n    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to\\n    // invalidate the cached domain separator if the chain id changes.\\n    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;\\n    uint256 private immutable _CACHED_CHAIN_ID;\\n\\n    bytes32 private immutable _HASHED_NAME;\\n    bytes32 private immutable _HASHED_VERSION;\\n    bytes32 private immutable _TYPE_HASH;\\n\\n    /* solhint-enable var-name-mixedcase */\\n\\n    /**\\n     * @dev Initializes the domain separator and parameter caches.\\n     *\\n     * The meaning of `name` and `version` is specified in\\n     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:\\n     *\\n     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\\n     * - `version`: the current major version of the signing domain.\\n     *\\n     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\\n     * contract upgrade].\\n     */\\n    constructor(string memory name, string memory version) {\\n        bytes32 hashedName = keccak256(bytes(name));\\n        bytes32 hashedVersion = keccak256(bytes(version));\\n        bytes32 typeHash = keccak256(\\n            \\\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\\\"\\n        );\\n        _HASHED_NAME = hashedName;\\n        _HASHED_VERSION = hashedVersion;\\n        _CACHED_CHAIN_ID = block.chainid;\\n        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);\\n        _TYPE_HASH = typeHash;\\n    }\\n\\n    /**\\n     * @dev Returns the domain separator for the current chain.\\n     */\\n    function _domainSeparatorV4() internal view returns (bytes32) {\\n        if (block.chainid == _CACHED_CHAIN_ID) {\\n            return _CACHED_DOMAIN_SEPARATOR;\\n        } else {\\n            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);\\n        }\\n    }\\n\\n    function _buildDomainSeparator(\\n        bytes32 typeHash,\\n        bytes32 nameHash,\\n        bytes32 versionHash\\n    ) private view returns (bytes32) {\\n        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));\\n    }\\n\\n    /**\\n     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\\n     * function returns the hash of the fully encoded EIP712 message for this domain.\\n     *\\n     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\\n     *\\n     * ```solidity\\n     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\\n     *     keccak256(\\\"Mail(address to,string contents)\\\"),\\n     *     mailTo,\\n     *     keccak256(bytes(mailContents))\\n     * )));\\n     * address signer = ECDSA.recover(digest, signature);\\n     * ```\\n     */\\n    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {\\n        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);\\n    }\\n}\\n\",\"keccak256\":\"0xba18d725602452307e5b278ed4566616c63792d89f3a0388a6f285428c26e681\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/introspection/ERC165.sol": {
        "ERC165": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "bytes4",
                  "name": "interfaceId",
                  "type": "bytes4"
                }
              ],
              "name": "supportsInterface",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Implementation of the {IERC165} interface. Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check for the additional interface id that will be supported. For example: ```solidity function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); } ``` Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.",
            "kind": "dev",
            "methods": {
              "supportsInterface(bytes4)": {
                "details": "See {IERC165-supportsInterface}."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "supportsInterface(bytes4)": "01ffc9a7"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC165} interface. Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check for the additional interface id that will be supported. For example: ```solidity function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); } ``` Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":\"ERC165\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC165.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC165} interface.\\n *\\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\\n * for the additional interface id that will be supported. For example:\\n *\\n * ```solidity\\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\\n *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\\n * }\\n * ```\\n *\\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\\n */\\nabstract contract ERC165 is IERC165 {\\n    /**\\n     * @dev See {IERC165-supportsInterface}.\\n     */\\n    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\\n        return interfaceId == type(IERC165).interfaceId;\\n    }\\n}\\n\",\"keccak256\":\"0x5718c5df9bd67ac68a796961df938821bb5dc0cd4c6118d77e9145afb187409b\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol": {
        "ERC165Checker": {
          "abi": [],
          "devdoc": {
            "details": "Library used to query support of an interface declared via {IERC165}. Note that these functions return the actual result of the query: they do not `revert` if an interface is not supported. It is up to the caller to decide what to do in these cases.",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122021dfb2a92bf7a18fe5f6814f9a4f2fb13fdae476ba914e8e071cbf44b2e491fb64736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x21 0xDF 0xB2 0xA9 0x2B 0xF7 LOG1 DUP16 0xE5 0xF6 DUP2 0x4F SWAP11 0x4F 0x2F 0xB1 EXTCODEHASH 0xDA 0xE4 PUSH23 0xBA914E8E071CBF44B2E491FB64736F6C63430008060033 ",
              "sourceMap": "361:4185:18:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;361:4185:18;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122021dfb2a92bf7a18fe5f6814f9a4f2fb13fdae476ba914e8e071cbf44b2e491fb64736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x21 0xDF 0xB2 0xA9 0x2B 0xF7 LOG1 DUP16 0xE5 0xF6 DUP2 0x4F SWAP11 0x4F 0x2F 0xB1 EXTCODEHASH 0xDA 0xE4 PUSH23 0xBA914E8E071CBF44B2E491FB64736F6C63430008060033 ",
              "sourceMap": "361:4185:18:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "_supportsERC165Interface(address,bytes4)": "infinite",
                "getSupportedInterfaces(address,bytes4[] memory)": "infinite",
                "supportsAllInterfaces(address,bytes4[] memory)": "infinite",
                "supportsERC165(address)": "infinite",
                "supportsInterface(address,bytes4)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library used to query support of an interface declared via {IERC165}. Note that these functions return the actual result of the query: they do not `revert` if an interface is not supported. It is up to the caller to decide what to do in these cases.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":\"ERC165Checker\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC165.sol\\\";\\n\\n/**\\n * @dev Library used to query support of an interface declared via {IERC165}.\\n *\\n * Note that these functions return the actual result of the query: they do not\\n * `revert` if an interface is not supported. It is up to the caller to decide\\n * what to do in these cases.\\n */\\nlibrary ERC165Checker {\\n    // As per the EIP-165 spec, no interface should ever match 0xffffffff\\n    bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;\\n\\n    /**\\n     * @dev Returns true if `account` supports the {IERC165} interface,\\n     */\\n    function supportsERC165(address account) internal view returns (bool) {\\n        // Any contract that implements ERC165 must explicitly indicate support of\\n        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid\\n        return\\n            _supportsERC165Interface(account, type(IERC165).interfaceId) &&\\n            !_supportsERC165Interface(account, _INTERFACE_ID_INVALID);\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports the interface defined by\\n     * `interfaceId`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {\\n        // query support of both ERC165 as per the spec and support of _interfaceId\\n        return supportsERC165(account) && _supportsERC165Interface(account, interfaceId);\\n    }\\n\\n    /**\\n     * @dev Returns a boolean array where each value corresponds to the\\n     * interfaces passed in and whether they're supported or not. This allows\\n     * you to batch check interfaces for a contract where your expectation\\n     * is that some interfaces may not be supported.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function getSupportedInterfaces(address account, bytes4[] memory interfaceIds)\\n        internal\\n        view\\n        returns (bool[] memory)\\n    {\\n        // an array of booleans corresponding to interfaceIds and whether they're supported or not\\n        bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);\\n\\n        // query support of ERC165 itself\\n        if (supportsERC165(account)) {\\n            // query support of each interface in interfaceIds\\n            for (uint256 i = 0; i < interfaceIds.length; i++) {\\n                interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]);\\n            }\\n        }\\n\\n        return interfaceIdsSupported;\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports all the interfaces defined in\\n     * `interfaceIds`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * Batch-querying can lead to gas savings by skipping repeated checks for\\n     * {IERC165} support.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {\\n        // query support of ERC165 itself\\n        if (!supportsERC165(account)) {\\n            return false;\\n        }\\n\\n        // query support of each interface in _interfaceIds\\n        for (uint256 i = 0; i < interfaceIds.length; i++) {\\n            if (!_supportsERC165Interface(account, interfaceIds[i])) {\\n                return false;\\n            }\\n        }\\n\\n        // all interfaces supported\\n        return true;\\n    }\\n\\n    /**\\n     * @notice Query if a contract implements an interface, does not check ERC165 support\\n     * @param account The address of the contract to query for support of an interface\\n     * @param interfaceId The interface identifier, as specified in ERC-165\\n     * @return true if the contract at account indicates support of the interface with\\n     * identifier interfaceId, false otherwise\\n     * @dev Assumes that account contains a contract that supports ERC165, otherwise\\n     * the behavior of this method is undefined. This precondition can be checked\\n     * with {supportsERC165}.\\n     * Interface identification is specified in ERC-165.\\n     */\\n    function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {\\n        bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId);\\n        (bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams);\\n        if (result.length < 32) return false;\\n        return success && abi.decode(result, (bool));\\n    }\\n}\\n\",\"keccak256\":\"0xaf583f9537cf446d08c33909e52313d349a831f6b88f20361b76474e40b4c36f\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/introspection/IERC165.sol": {
        "IERC165": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "bytes4",
                  "name": "interfaceId",
                  "type": "bytes4"
                }
              ],
              "name": "supportsInterface",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Interface of the ERC165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[EIP]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.",
            "kind": "dev",
            "methods": {
              "supportsInterface(bytes4)": {
                "details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "supportsInterface(bytes4)": "01ffc9a7"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[EIP]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":\"IERC165\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/math/SafeCast.sol": {
        "SafeCast": {
          "abi": [],
          "devdoc": {
            "details": "Wrappers over Solidity's uintXX/intXX casting operators with added overflow checks. Downcasting from uint256/int256 in Solidity does not revert on overflow. This can easily result in undesired exploitation or bugs, since developers usually assume that overflows raise errors. `SafeCast` restores this intuition by reverting the transaction when such 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. Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing all math on `uint256` and `int256` and then downcasting.",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220d4910b2f0e2b2eb6257d857b5fe733f145e19f4a28fd2af689f8e153483ab16f64736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD4 SWAP2 SIGNEXTEND 0x2F 0xE 0x2B 0x2E 0xB6 0x25 PUSH30 0x857B5FE733F145E19F4A28FD2AF689F8E153483AB16F64736F6C63430008 MOD STOP CALLER ",
              "sourceMap": "768:6990:20:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;768:6990:20;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220d4910b2f0e2b2eb6257d857b5fe733f145e19f4a28fd2af689f8e153483ab16f64736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD4 SWAP2 SIGNEXTEND 0x2F 0xE 0x2B 0x2E 0xB6 0x25 PUSH30 0x857B5FE733F145E19F4A28FD2AF689F8E153483AB16F64736F6C63430008 MOD STOP CALLER ",
              "sourceMap": "768:6990:20:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "toInt128(int256)": "infinite",
                "toInt16(int256)": "infinite",
                "toInt256(uint256)": "infinite",
                "toInt32(int256)": "infinite",
                "toInt64(int256)": "infinite",
                "toInt8(int256)": "infinite",
                "toUint128(uint256)": "infinite",
                "toUint16(uint256)": "infinite",
                "toUint224(uint256)": "infinite",
                "toUint256(int256)": "infinite",
                "toUint32(uint256)": "infinite",
                "toUint64(uint256)": "infinite",
                "toUint8(uint256)": "infinite",
                "toUint96(uint256)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Wrappers over Solidity's uintXX/intXX casting operators with added overflow checks. Downcasting from uint256/int256 in Solidity does not revert on overflow. This can easily result in undesired exploitation or bugs, since developers usually assume that overflows raise errors. `SafeCast` restores this intuition by reverting the transaction when such 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. Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing all math on `uint256` and `int256` and then downcasting.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":\"SafeCast\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/owner-manager-contracts/contracts/Manageable.sol": {
        "Manageable": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "ManagerTransferred(address,address)": {
                "details": "Emitted when `_manager` has been changed.",
                "params": {
                  "newManager": "new `_manager` address.",
                  "previousManager": "previous `_manager` address."
                }
              }
            },
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "Abstract manageable contract that can be inherited by other contracts",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "claimOwnership()": "4e71e0c8",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setManager(address)": "d0ebdbe7",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"ManagerTransferred(address,address)\":{\"details\":\"Emitted when `_manager` has been changed.\",\"params\":{\"newManager\":\"new `_manager` address.\",\"previousManager\":\"previous `_manager` address.\"}}},\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"Abstract manageable contract that can be inherited by other contracts\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"Contract module based on Ownable which provides a basic access control mechanism, where there is an owner and a manager that can be granted exclusive access to specific functions. By default, the owner is the deployer of the contract. The owner account is set through a two steps process.      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer The manager account needs to be set using {setManager}. This module is used through inheritance. It will make available the modifier `onlyManager`, which can be applied to your functions to restrict their use to the manager.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":\"Manageable\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol:Manageable",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol:Manageable",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3834,
                "contract": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol:Manageable",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "Contract module based on Ownable which provides a basic access control mechanism, where there is an owner and a manager that can be granted exclusive access to specific functions. By default, the owner is the deployer of the contract. The owner account is set through a two steps process.      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer The manager account needs to be set using {setManager}. This module is used through inheritance. It will make available the modifier `onlyManager`, which can be applied to your functions to restrict their use to the manager.",
            "version": 1
          }
        }
      },
      "@pooltogether/owner-manager-contracts/contracts/Ownable.sol": {
        "Ownable": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "OwnershipOffered(address)": {
                "details": "Emitted when `_pendingOwner` has been changed.",
                "params": {
                  "pendingOwner": "new `_pendingOwner` address."
                }
              },
              "OwnershipTransferred(address,address)": {
                "details": "Emitted when `_owner` has been changed.",
                "params": {
                  "newOwner": "new `_owner` address.",
                  "previousOwner": "previous `_owner` address."
                }
              }
            },
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_initialOwner": "Initial owner of the contract."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "Abstract ownable contract that can be inherited by other contracts",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "claimOwnership()": "4e71e0c8",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"OwnershipOffered(address)\":{\"details\":\"Emitted when `_pendingOwner` has been changed.\",\"params\":{\"pendingOwner\":\"new `_pendingOwner` address.\"}},\"OwnershipTransferred(address,address)\":{\"details\":\"Emitted when `_owner` has been changed.\",\"params\":{\"newOwner\":\"new `_owner` address.\",\"previousOwner\":\"previous `_owner` address.\"}}},\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_initialOwner\":\"Initial owner of the contract.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"Abstract ownable contract that can be inherited by other contracts\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Initializes the contract setting `_initialOwner` as the initial owner.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"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 is the deployer of the contract. The owner account is set through a two steps process.      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer The manager account needs to be set using {setManager}. 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.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol:Ownable",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol:Ownable",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Initializes the contract setting `_initialOwner` as the initial owner."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "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 is the deployer of the contract. The owner account is set through a two steps process.      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer The manager account needs to be set using {setManager}. 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.",
            "version": 1
          }
        }
      },
      "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol": {
        "RNGInterface": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "randomNumber",
                  "type": "uint256"
                }
              ],
              "name": "RandomNumberCompleted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                }
              ],
              "name": "RandomNumberRequested",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "getLastRequestId",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getRequestFee",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "feeToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "requestFee",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                }
              ],
              "name": "isRequestComplete",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "isCompleted",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                }
              ],
              "name": "randomNumber",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "randomNum",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "requestRandomNumber",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "lockBlock",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "RandomNumberCompleted(uint32,uint256)": {
                "params": {
                  "randomNumber": "The random number produced by the 3rd-party service",
                  "requestId": "The indexed ID of the request used to get the results of the RNG service"
                }
              },
              "RandomNumberRequested(uint32,address)": {
                "params": {
                  "requestId": "The indexed ID of the request used to get the results of the RNG service",
                  "sender": "The indexed address of the sender of the request"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "getLastRequestId()": {
                "returns": {
                  "requestId": "The last request id used in the last request"
                }
              },
              "getRequestFee()": {
                "returns": {
                  "feeToken": "The address of the token that is used to pay fees",
                  "requestFee": "The fee required to be paid to make a request"
                }
              },
              "isRequestComplete(uint32)": {
                "details": "For time-delayed requests, this function is used to check/confirm completion",
                "params": {
                  "requestId": "The ID of the request used to get the results of the RNG service"
                },
                "returns": {
                  "isCompleted": "True if the request has completed and a random number is available, false otherwise"
                }
              },
              "randomNumber(uint32)": {
                "params": {
                  "requestId": "The ID of the request used to get the results of the RNG service"
                },
                "returns": {
                  "randomNum": "The random number"
                }
              },
              "requestRandomNumber()": {
                "details": "Some services will complete the request immediately, others may have a time-delaySome services require payment in the form of a token, such as $LINK for Chainlink VRF",
                "returns": {
                  "lockBlock": "The block number at which the RNG service will start generating time-delayed randomness. The calling contract should \"lock\" all activity until the result is available via the `requestId`",
                  "requestId": "The ID of the request used to get the results of the RNG service"
                }
              }
            },
            "title": "Random Number Generator Interface",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "getLastRequestId()": "19c2b4c3",
              "getRequestFee()": "0d37b537",
              "isRequestComplete(uint32)": "3a19b9bc",
              "randomNumber(uint32)": "9d2a5f98",
              "requestRandomNumber()": "8678a7b2"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"randomNumber\",\"type\":\"uint256\"}],\"name\":\"RandomNumberCompleted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RandomNumberRequested\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"getLastRequestId\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getRequestFee\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"feeToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"requestFee\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"}],\"name\":\"isRequestComplete\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"isCompleted\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"}],\"name\":\"randomNumber\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"randomNum\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"requestRandomNumber\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"lockBlock\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"RandomNumberCompleted(uint32,uint256)\":{\"params\":{\"randomNumber\":\"The random number produced by the 3rd-party service\",\"requestId\":\"The indexed ID of the request used to get the results of the RNG service\"}},\"RandomNumberRequested(uint32,address)\":{\"params\":{\"requestId\":\"The indexed ID of the request used to get the results of the RNG service\",\"sender\":\"The indexed address of the sender of the request\"}}},\"kind\":\"dev\",\"methods\":{\"getLastRequestId()\":{\"returns\":{\"requestId\":\"The last request id used in the last request\"}},\"getRequestFee()\":{\"returns\":{\"feeToken\":\"The address of the token that is used to pay fees\",\"requestFee\":\"The fee required to be paid to make a request\"}},\"isRequestComplete(uint32)\":{\"details\":\"For time-delayed requests, this function is used to check/confirm completion\",\"params\":{\"requestId\":\"The ID of the request used to get the results of the RNG service\"},\"returns\":{\"isCompleted\":\"True if the request has completed and a random number is available, false otherwise\"}},\"randomNumber(uint32)\":{\"params\":{\"requestId\":\"The ID of the request used to get the results of the RNG service\"},\"returns\":{\"randomNum\":\"The random number\"}},\"requestRandomNumber()\":{\"details\":\"Some services will complete the request immediately, others may have a time-delaySome services require payment in the form of a token, such as $LINK for Chainlink VRF\",\"returns\":{\"lockBlock\":\"The block number at which the RNG service will start generating time-delayed randomness. The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\",\"requestId\":\"The ID of the request used to get the results of the RNG service\"}}},\"title\":\"Random Number Generator Interface\",\"version\":1},\"userdoc\":{\"events\":{\"RandomNumberCompleted(uint32,uint256)\":{\"notice\":\"Emitted when an existing request for a random number has been completed\"},\"RandomNumberRequested(uint32,address)\":{\"notice\":\"Emitted when a new request for a random number has been submitted\"}},\"kind\":\"user\",\"methods\":{\"getLastRequestId()\":{\"notice\":\"Gets the last request id used by the RNG service\"},\"getRequestFee()\":{\"notice\":\"Gets the Fee for making a Request against an RNG service\"},\"isRequestComplete(uint32)\":{\"notice\":\"Checks if the request for randomness from the 3rd-party service has completed\"},\"randomNumber(uint32)\":{\"notice\":\"Gets the random number produced by the 3rd-party service\"},\"requestRandomNumber()\":{\"notice\":\"Sends a request for a random number to the 3rd-party service\"}},\"notice\":\"Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":\"RNGInterface\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Random Number Generator Interface\\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\n */\\ninterface RNGInterface {\\n  /**\\n   * @notice Emitted when a new request for a random number has been submitted\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param sender The indexed address of the sender of the request\\n   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /**\\n   * @notice Emitted when an existing request for a random number has been completed\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param randomNumber The random number produced by the 3rd-party service\\n   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /**\\n   * @notice Gets the last request id used by the RNG service\\n   * @return requestId The last request id used in the last request\\n   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /**\\n   * @notice Gets the Fee for making a Request against an RNG service\\n   * @return feeToken The address of the token that is used to pay fees\\n   * @return requestFee The fee required to be paid to make a request\\n   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /**\\n   * @notice Sends a request for a random number to the 3rd-party service\\n   * @dev Some services will complete the request immediately, others may have a time-delay\\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n   * @return requestId The ID of the request used to get the results of the RNG service\\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /**\\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\\n   * @dev For time-delayed requests, this function is used to check/confirm completion\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\\n   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /**\\n   * @notice Gets the random number produced by the 3rd-party service\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return randomNum The random number\\n   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "RandomNumberCompleted(uint32,uint256)": {
                "notice": "Emitted when an existing request for a random number has been completed"
              },
              "RandomNumberRequested(uint32,address)": {
                "notice": "Emitted when a new request for a random number has been submitted"
              }
            },
            "kind": "user",
            "methods": {
              "getLastRequestId()": {
                "notice": "Gets the last request id used by the RNG service"
              },
              "getRequestFee()": {
                "notice": "Gets the Fee for making a Request against an RNG service"
              },
              "isRequestComplete(uint32)": {
                "notice": "Checks if the request for randomness from the 3rd-party service has completed"
              },
              "randomNumber(uint32)": {
                "notice": "Gets the random number produced by the 3rd-party service"
              },
              "requestRandomNumber()": {
                "notice": "Sends a request for a random number to the 3rd-party service"
              }
            },
            "notice": "Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)",
            "version": 1
          }
        }
      },
      "@pooltogether/yield-source-interface/contracts/IYieldSource.sol": {
        "IYieldSource": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "addr",
                  "type": "address"
                }
              ],
              "name": "balanceOfToken",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "depositToken",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "redeemToken",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "supplyTokenTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "balanceOfToken(address)": {
                "returns": {
                  "_0": "The underlying balance of asset tokens."
                }
              },
              "depositToken()": {
                "returns": {
                  "_0": "The ERC20 asset token address."
                }
              },
              "redeemToken(uint256)": {
                "params": {
                  "amount": "The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above."
                },
                "returns": {
                  "_0": "The actual amount of interst bearing tokens that were redeemed."
                }
              },
              "supplyTokenTo(uint256,address)": {
                "params": {
                  "amount": "The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.",
                  "to": "The user whose balance will receive the tokens"
                }
              }
            },
            "title": "Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "balanceOfToken(address)": "b99152d0",
              "depositToken()": "c89039c5",
              "redeemToken(uint256)": "013054c2",
              "supplyTokenTo(uint256,address)": "87a6eeef"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"addr\",\"type\":\"address\"}],\"name\":\"balanceOfToken\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"depositToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeemToken\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"supplyTokenTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"balanceOfToken(address)\":{\"returns\":{\"_0\":\"The underlying balance of asset tokens.\"}},\"depositToken()\":{\"returns\":{\"_0\":\"The ERC20 asset token address.\"}},\"redeemToken(uint256)\":{\"params\":{\"amount\":\"The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\"},\"returns\":{\"_0\":\"The actual amount of interst bearing tokens that were redeemed.\"}},\"supplyTokenTo(uint256,address)\":{\"params\":{\"amount\":\"The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\",\"to\":\"The user whose balance will receive the tokens\"}}},\"title\":\"Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"balanceOfToken(address)\":{\"notice\":\"Returns the total balance (in asset tokens).  This includes the deposits and interest.\"},\"depositToken()\":{\"notice\":\"Returns the ERC20 asset token used for deposits.\"},\"redeemToken(uint256)\":{\"notice\":\"Redeems tokens from the yield source.\"},\"supplyTokenTo(uint256,address)\":{\"notice\":\"Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\"}},\"notice\":\"Prize Pools subclasses need to implement this interface so that yield can be generated.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\":\"IYieldSource\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.\\n/// @notice Prize Pools subclasses need to implement this interface so that yield can be generated.\\ninterface IYieldSource {\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token address.\\n    function depositToken() external view returns (address);\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens.\\n    function balanceOfToken(address addr) external returns (uint256);\\n\\n    /// @notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\\n    /// @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\\n    /// @param to The user whose balance will receive the tokens\\n    function supplyTokenTo(uint256 amount, address to) external;\\n\\n    /// @notice Redeems tokens from the yield source.\\n    /// @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\\n    /// @return The actual amount of interst bearing tokens that were redeemed.\\n    function redeemToken(uint256 amount) external returns (uint256);\\n}\\n\",\"keccak256\":\"0x659c59f7b0a4cac6ce4c46a8ccec1d8d7ab14aa08451c0d521804fec9ccc95f1\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "balanceOfToken(address)": {
                "notice": "Returns the total balance (in asset tokens).  This includes the deposits and interest."
              },
              "depositToken()": {
                "notice": "Returns the ERC20 asset token used for deposits."
              },
              "redeemToken(uint256)": {
                "notice": "Redeems tokens from the yield source."
              },
              "supplyTokenTo(uint256,address)": {
                "notice": "Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param."
              }
            },
            "notice": "Prize Pools subclasses need to implement this interface so that yield can be generated.",
            "version": 1
          }
        }
      },
      "@pooltogether/yield-source-interface/contracts/test/ERC20.sol": {
        "ERC20": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "string",
                  "name": "name_",
                  "type": "string"
                },
                {
                  "internalType": "string",
                  "name": "symbol_",
                  "type": "string"
                },
                {
                  "internalType": "uint8",
                  "name": "decimals_",
                  "type": "uint8"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "decimals",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "subtractedValue",
                  "type": "uint256"
                }
              ],
              "name": "decreaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "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": "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}.",
            "events": {
              "Approval(address,address,uint256)": {
                "details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
              },
              "Transfer(address,address,uint256)": {
                "details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
              }
            },
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "See {IERC20-allowance}."
              },
              "approve(address,uint256)": {
                "details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
              },
              "balanceOf(address)": {
                "details": "See {IERC20-balanceOf}."
              },
              "constructor": {
                "details": "Sets the values for {name} and {symbol}. The default value of {decimals} is 18. To select a different value for {decimals} you should overload it. All two of these values are immutable: they can only be set once during construction."
              },
              "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 this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
              },
              "decreaseAllowance(address,uint256)": {
                "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
              },
              "increaseAllowance(address,uint256)": {
                "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "symbol()": {
                "details": "Returns the symbol of the token, usually a shorter version of the name."
              },
              "totalSupply()": {
                "details": "See {IERC20-totalSupply}."
              },
              "transfer(address,uint256)": {
                "details": "See {IERC20-transfer}. Requirements: - `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
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_4238": {
                  "entryPoint": null,
                  "id": 4238,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 291,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory": {
                  "entryPoint": 474,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "extract_byte_array_length": {
                  "entryPoint": 607,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 668,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:2135:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:821:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:84"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:84"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:84",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:84"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:84",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:84"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:84"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "543:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "553:4:84",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "547:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "603:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "612:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "615:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "605:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "605:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "605:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "580:6:84"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "588:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "576:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "576:15:84"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "593:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "572:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "572:24:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "598:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "569:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "569:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "566:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "628:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "637:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "632:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "693:87:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "722:6:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "730:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "718:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "718:14:84"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "734:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "714:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "714:23:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "offset",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "753:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "761:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "749:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "749:14:84"
                                                },
                                                {
                                                  "name": "_4",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "765:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "745:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "745:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "739:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "739:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "707:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "707:63:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "707:63:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "661:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "655:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "655:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "665:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "667:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "676:1:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "679:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "672:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "672:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "667:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "651:3:84",
                                "statements": []
                              },
                              "src": "647:133:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "810:59:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "839:6:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "847:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "835:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "835:15:84"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "852:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "831:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "831:24:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "857:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:35:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:35:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "795:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "798:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "792:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "792:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "789:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "878:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "887:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "878:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:885:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1037:579:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1083:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1092:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1095:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1085:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1085:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1085:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1058:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1067:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1054:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1054:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1079:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1050:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1050:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1047:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1108:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1128:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1122:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1122:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1112:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1147:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1165:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1169:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1161:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1161:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1173:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1157:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1157:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1151:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1202:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1211:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1214:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1204:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1204:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1204:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1190:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1198:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1187:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1187:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1184:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1227:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1270:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1281:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1266:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1266:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1290:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1237:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1237:61:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1227:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1307:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1333:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1344:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1329:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1329:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1323:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1323:25:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1311:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1377:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1386:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1389:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1379:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1379:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1379:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1363:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1373:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1360:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1360:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1357:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1402:73:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1445:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1456:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1441:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1441:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1467:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1412:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1412:63:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1402:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1484:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1507:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1518:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1503:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1503:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1497:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1497:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1488:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1570:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1579:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1582:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1572:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1572:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1572:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1544:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1555:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1562:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1551:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1551:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1541:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1541:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1534:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1534:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1531:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1595:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1605:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1595:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "987:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "998:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1010:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1018:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1026:6:84",
                            "type": ""
                          }
                        ],
                        "src": "904:712:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1676:325:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1686:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1700:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1703:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "1696:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1696:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1686:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1717:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1747:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1753:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "1743:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1743:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "1721:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1794:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1796:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "1810:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1818:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "1806:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1806:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1796:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1774:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1767:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1767:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1764:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1884:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1905:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1912:3:84",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1917:10:84",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "1908:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1908:20:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1898:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1898:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1898:31:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1949:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1952:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1942:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1942:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1942:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1977:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1980:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1970:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1970:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1970:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1840:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1863:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1871:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1860:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1860:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "1837:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1837:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1834:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "1656:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1665:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1621:380:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2038:95:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2055:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2062:3:84",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2067:10:84",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "2058:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2058:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2048:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2048:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2048:31:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2095:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2098:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2088:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2088:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2088:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2119:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2122:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "2112:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2112:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2112:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "2006:127:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        let _4 := 0x20\n        if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _1) { i := add(i, _4) }\n        {\n            mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n        }\n        if gt(i, _1)\n        {\n            mstore(add(add(memPtr, _1), _4), 0)\n        }\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        let value := mload(add(headStart, 64))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value2 := value\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b5060405162000ca638038062000ca68339810160408190526200003491620001da565b8251620000499060039060208601906200007d565b5081516200005f9060049060208501906200007d565b506005805460ff191660ff9290921691909117905550620002b29050565b8280546200008b906200025f565b90600052602060002090601f016020900481019282620000af5760008555620000fa565b82601f10620000ca57805160ff1916838001178555620000fa565b82800160010185558215620000fa579182015b82811115620000fa578251825591602001919060010190620000dd565b50620001089291506200010c565b5090565b5b808211156200010857600081556001016200010d565b600082601f8301126200013557600080fd5b81516001600160401b03808211156200015257620001526200029c565b604051601f8301601f19908116603f011681019082821181831017156200017d576200017d6200029c565b816040528381526020925086838588010111156200019a57600080fd5b600091505b83821015620001be57858201830151818301840152908201906200019f565b83821115620001d05760008385830101525b9695505050505050565b600080600060608486031215620001f057600080fd5b83516001600160401b03808211156200020857600080fd5b620002168783880162000123565b945060208601519150808211156200022d57600080fd5b506200023c8682870162000123565b925050604084015160ff811681146200025457600080fd5b809150509250925092565b600181811c908216806200027457607f821691505b602082108114156200029657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6109e480620002c26000396000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d71461018d578063a9059cbb146101a0578063dd62ed3e146101b357600080fd5b8063395093511461014957806370a082311461015c57806395d89b411461018557600080fd5b806318160ddd116100b257806318160ddd1461010f57806323b872dd14610121578063313ce5671461013457600080fd5b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101ec565b6040516100e391906108a8565b60405180910390f35b6100ff6100fa36600461087e565b61027e565b60405190151581526020016100e3565b6002545b6040519081526020016100e3565b6100ff61012f366004610842565b610294565b60055460405160ff90911681526020016100e3565b6100ff61015736600461087e565b610358565b61011361016a3660046107ed565b6001600160a01b031660009081526020819052604090205490565b6100d6610394565b6100ff61019b36600461087e565b6103a3565b6100ff6101ae36600461087e565b610454565b6101136101c136600461080f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101fb9061095a565b80601f01602080910402602001604051908101604052809291908181526020018280546102279061095a565b80156102745780601f1061024957610100808354040283529160200191610274565b820191906000526020600020905b81548152906001019060200180831161025757829003601f168201915b5050505050905090565b600061028b338484610461565b50600192915050565b60006102a18484846105b9565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103405760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61034d8533858403610461565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161028b91859061038f90869061091b565b610461565b6060600480546101fb9061095a565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561043d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610337565b61044a3385858403610461565b5060019392505050565b600061028b3384846105b9565b6001600160a01b0383166104dc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0382166105585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106355760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0382166106b15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b038316600090815260208190526040902054818110156107405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061077790849061091b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107c391815260200190565b60405180910390a350505050565b80356001600160a01b03811681146107e857600080fd5b919050565b6000602082840312156107ff57600080fd5b610808826107d1565b9392505050565b6000806040838503121561082257600080fd5b61082b836107d1565b9150610839602084016107d1565b90509250929050565b60008060006060848603121561085757600080fd5b610860846107d1565b925061086e602085016107d1565b9150604084013590509250925092565b6000806040838503121561089157600080fd5b61089a836107d1565b946020939093013593505050565b600060208083528351808285015260005b818110156108d5578581018301518582016040015282016108b9565b818111156108e7576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610955577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b600181811c9082168061096e57607f821691505b602082108114156109a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b5091905056fea2646970667358221220f004a9ff3d70f1e3ac49fe2e0186190205b3c7378490807b84e5fa9b2f0ea2f864736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xCA6 CODESIZE SUB DUP1 PUSH3 0xCA6 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1DA JUMP JUMPDEST DUP3 MLOAD PUSH3 0x49 SWAP1 PUSH1 0x3 SWAP1 PUSH1 0x20 DUP7 ADD SWAP1 PUSH3 0x7D JUMP JUMPDEST POP DUP2 MLOAD PUSH3 0x5F SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x7D JUMP JUMPDEST POP PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP PUSH3 0x2B2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x8B SWAP1 PUSH3 0x25F JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xAF JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xFA JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xCA JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xFA JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xFA JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xFA JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xDD JUMP JUMPDEST POP PUSH3 0x108 SWAP3 SWAP2 POP PUSH3 0x10C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x108 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x10D JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x135 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x152 JUMPI PUSH3 0x152 PUSH3 0x29C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x17D JUMPI PUSH3 0x17D PUSH3 0x29C JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x19A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1BE JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x19F JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x1D0 JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x1F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x208 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x216 DUP8 DUP4 DUP9 ADD PUSH3 0x123 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x22D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x23C DUP7 DUP3 DUP8 ADD PUSH3 0x123 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0x254 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x274 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x296 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x9E4 DUP1 PUSH3 0x2C2 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 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x18D JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1A0 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x39509351 EQ PUSH2 0x149 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x15C JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x185 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x10F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x121 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x134 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xEC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD6 PUSH2 0x1EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP2 SWAP1 PUSH2 0x8A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFF PUSH2 0xFA CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x27E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x12F CALLDATASIZE PUSH1 0x4 PUSH2 0x842 JUMP JUMPDEST PUSH2 0x294 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x157 CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x358 JUMP JUMPDEST PUSH2 0x113 PUSH2 0x16A CALLDATASIZE PUSH1 0x4 PUSH2 0x7ED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xD6 PUSH2 0x394 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x19B CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x3A3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x1AE CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x454 JUMP JUMPDEST PUSH2 0x113 PUSH2 0x1C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x80F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1FB SWAP1 PUSH2 0x95A JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x227 SWAP1 PUSH2 0x95A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x274 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x249 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x274 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 0x257 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28B CALLER DUP5 DUP5 PUSH2 0x461 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A1 DUP5 DUP5 DUP5 PUSH2 0x5B9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x340 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x34D DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x461 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x28B SWAP2 DUP6 SWAP1 PUSH2 0x38F SWAP1 DUP7 SWAP1 PUSH2 0x91B JUMP JUMPDEST PUSH2 0x461 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1FB SWAP1 PUSH2 0x95A JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x43D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH2 0x44A CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x461 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28B CALLER DUP5 DUP5 PUSH2 0x5B9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x558 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x635 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x6B1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x740 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x777 SWAP1 DUP5 SWAP1 PUSH2 0x91B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x7C3 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x7E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x7FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x808 DUP3 PUSH2 0x7D1 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x822 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x82B DUP4 PUSH2 0x7D1 JUMP JUMPDEST SWAP2 POP PUSH2 0x839 PUSH1 0x20 DUP5 ADD PUSH2 0x7D1 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x857 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x860 DUP5 PUSH2 0x7D1 JUMP JUMPDEST SWAP3 POP PUSH2 0x86E PUSH1 0x20 DUP6 ADD PUSH2 0x7D1 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x891 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x89A DUP4 PUSH2 0x7D1 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x8D5 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x8B9 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x8E7 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x955 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x96E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x9A8 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE DIV 0xA9 SELFDESTRUCT RETURNDATASIZE PUSH17 0xF1E3AC49FE2E0186190205B3C737849080 PUSH28 0x84E5FA9B2F0EA2F864736F6C63430008060033000000000000000000 ",
              "sourceMap": "1259:10936:25:-:0;;;2306:191;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2419:13;;;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;2442:17:25;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;2469:9:25;:21;;-1:-1:-1;;2469:21:25;;;;;;;;;;;;-1:-1:-1;1259:10936:25;;-1:-1:-1;1259:10936:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1259:10936:25;;;-1:-1:-1;1259:10936:25;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:885:84;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;;;;;224:10:84;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:84;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;553:4;543:14;;598:3;593:2;588;580:6;576:15;572:24;569:33;566:2;;;615:1;612;605:12;566:2;637:1;628:10;;647:133;661:2;658:1;655:9;647:133;;;749:14;;;745:23;;739:30;718:14;;;714:23;;707:63;672:10;;;;647:133;;;798:2;795:1;792:9;789:2;;;857:1;852:2;847;839:6;835:15;831:24;824:35;789:2;887:6;78:821;-1:-1:-1;;;;;;78:821:84:o;904:712::-;1010:6;1018;1026;1079:2;1067:9;1058:7;1054:23;1050:32;1047:2;;;1095:1;1092;1085:12;1047:2;1122:16;;-1:-1:-1;;;;;1187:14:84;;;1184:2;;;1214:1;1211;1204:12;1184:2;1237:61;1290:7;1281:6;1270:9;1266:22;1237:61;:::i;:::-;1227:71;;1344:2;1333:9;1329:18;1323:25;1307:41;;1373:2;1363:8;1360:16;1357:2;;;1389:1;1386;1379:12;1357:2;;1412:63;1467:7;1456:8;1445:9;1441:24;1412:63;:::i;:::-;1402:73;;;1518:2;1507:9;1503:18;1497:25;1562:4;1555:5;1551:16;1544:5;1541:27;1531:2;;1582:1;1579;1572:12;1531:2;1605:5;1595:15;;;1037:579;;;;;:::o;1621:380::-;1700:1;1696:12;;;;1743;;;1764:2;;1818:4;1810:6;1806:17;1796:27;;1764:2;1871;1863:6;1860:14;1840:18;1837:38;1834:2;;;1917:10;1912:3;1908:20;1905:1;1898:31;1952:4;1949:1;1942:15;1980:4;1977:1;1970:15;1834:2;;1676:325;;;:::o;2006:127::-;2067:10;2062:3;2058:20;2055:1;2048:31;2098:4;2095:1;2088:15;2122:4;2119:1;2112:15;2038:95;1259:10936:25;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_afterTokenTransfer_4729": {
                  "entryPoint": null,
                  "id": 4729,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_4707": {
                  "entryPoint": 1121,
                  "id": 4707,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_4718": {
                  "entryPoint": null,
                  "id": 4718,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_transfer_4534": {
                  "entryPoint": 1465,
                  "id": 4534,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@allowance_4324": {
                  "entryPoint": null,
                  "id": 4324,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_4344": {
                  "entryPoint": 638,
                  "id": 4344,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_4287": {
                  "entryPoint": null,
                  "id": 4287,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_4265": {
                  "entryPoint": null,
                  "id": 4265,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_4457": {
                  "entryPoint": 931,
                  "id": 4457,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_4418": {
                  "entryPoint": 856,
                  "id": 4418,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@name_4247": {
                  "entryPoint": 492,
                  "id": 4247,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@symbol_4256": {
                  "entryPoint": 916,
                  "id": 4256,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@totalSupply_4274": {
                  "entryPoint": null,
                  "id": 4274,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_4391": {
                  "entryPoint": 660,
                  "id": 4391,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_4307": {
                  "entryPoint": 1108,
                  "id": 4307,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_address": {
                  "entryPoint": 2001,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 2029,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 2063,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 2114,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 2174,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 2216,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 2331,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 2394,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:6053:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:84",
                            "type": ""
                          }
                        ],
                        "src": "215:186:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:84",
                            "type": ""
                          }
                        ],
                        "src": "406:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:84",
                            "type": ""
                          }
                        ],
                        "src": "671:328:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1091:167:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1137:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1146:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1149:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1139:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1139:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1139:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1112:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1121:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1108:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1108:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1133:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1104:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1104:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1101:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1162:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1191:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1162:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1210:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1237:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1248:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1220:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1220:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1210:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1049:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1060:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1072:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1080:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1004:254:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1358:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1368:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1380:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1391:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1376:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1376:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1368:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1410:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "1435:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1428:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1428:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "1421:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1421:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1403:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1403:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1403:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1327:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1338:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1349:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1263:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1576:535:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1586:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1596:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1590:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1614:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1625:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1607:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1607:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1607:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1637:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1657:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1651:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1651:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1641:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1684:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1695:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1680:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1680:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1673:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1673:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1673:34:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1716:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1725:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1720:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1785:90:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1814:9:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1825:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1810:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1810:17:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1829:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1806:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1806:26:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1848:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1856:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "1844:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "1844:14:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1860:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1840:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1840:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "1834:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1834:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1799:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1799:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1799:66:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1746:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1749:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1743:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1743:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1757:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1759:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1768:1:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1771:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1764:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1764:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1759:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1739:3:84",
                                "statements": []
                              },
                              "src": "1735:140:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1909:66:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1938:9:84"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1949:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1934:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1934:22:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1958:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1930:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1930:31:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1963:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1923:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1923:42:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1923:42:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1890:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1893:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1887:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1887:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1884:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1984:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2000:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "2019:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2027:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2015:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2015:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2032:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2011:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2011:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1996:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1996:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2102:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1992:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1992:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1984:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1545:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1556:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1567:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1455:656:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2290:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2307:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2318:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2300:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2300:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2300:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2341:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2352:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2337:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2337:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2357:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2330:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2330:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2330:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2380:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2391:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2376:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2376:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2396:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2369:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2369:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2369:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2451:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2462:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2447:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2447:18:84"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2467:5:84",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2440:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2440:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2440:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2482:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2494:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2505:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2490:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2490:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2482:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2267:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2281:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2116:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2694:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2711:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2722:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2704:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2704:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2704:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2745:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2756:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2741:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2741:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2761:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2734:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2734:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2734:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2784:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2795:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2780:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2780:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2800:34:84",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2773:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2773:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2773:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2855:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2866:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2851:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2851:18:84"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2871:4:84",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2844:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2844:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2844:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2885:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2897:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2908:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2893:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2893:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2885:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2671:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2685:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2520:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3097:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3114:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3125:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3107:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3107:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3107:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3148:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3159:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3144:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3144:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3164:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3137:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3137:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3137:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3187:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3198:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3183:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3183:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3203:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3176:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3176:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3176:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3258:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3269:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3254:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3254:18:84"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3274:8:84",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3247:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3247:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3247:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3292:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3304:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3315:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3300:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3300:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3292:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3074:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3088:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2923:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3504:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3521:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3532:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3514:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3514:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3514:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3555:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3566:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3551:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3551:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3571:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3544:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3544:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3544:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3594:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3605:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3590:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3590:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3610:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3583:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3583:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3583:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3665:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3676:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3661:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3661:18:84"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3681:10:84",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3654:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3654:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3654:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3701:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3713:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3724:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3709:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3709:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3701:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3481:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3495:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3330:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3913:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3930:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3941:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3923:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3923:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3923:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3964:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3975:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3960:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3960:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3980:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3953:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3953:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3953:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4003:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4014:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3999:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3999:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4019:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3992:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3992:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3992:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4074:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4085:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4070:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4070:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4090:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4063:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4063:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4063:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4107:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4119:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4130:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4115:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4115:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4107:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3890:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3904:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3739:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4319:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4336:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4347:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4329:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4329:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4329:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4370:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4381:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4366:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4366:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4386:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4359:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4359:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4359:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4409:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4420:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4405:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4405:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4425:34:84",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4398:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4398:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4398:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4480:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4491:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4476:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4476:18:84"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4496:6:84",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4469:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4469:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4469:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4512:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4524:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4535:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4520:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4520:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4512:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4296:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4310:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4145:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4724:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4741:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4752:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4734:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4734:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4734:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4775:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4786:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4771:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4771:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4791:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4764:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4764:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4764:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4814:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4825:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4810:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4810:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4830:34:84",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4803:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4803:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4803:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4885:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4896:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4881:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4881:18:84"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4901:7:84",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4874:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4874:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4874:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4918:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4930:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4941:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4926:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4926:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4918:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4701:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4715:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4550:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5057:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5067:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5079:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5090:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5075:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5075:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5067:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5109:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5120:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5102:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5102:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5102:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5026:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5037:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5048:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4956:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5235:87:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5245:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5257:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5268:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5253:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5253:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5245:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5287:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5302:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5310:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5298:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5298:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5280:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5280:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5280:36:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5204:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5215:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5226:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5138:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5375:234:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5410:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5431:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5434:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5424:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5424:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5424:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5532:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5535:4:84",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5525:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5525:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5525:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5560:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5563:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5553:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5553:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5553:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "5391:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "5398:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "5394:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5394:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5388:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5388:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5385:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5587:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "5598:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "5601:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5594:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5594:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "5587:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "5358:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "5361:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "5367:3:84",
                            "type": ""
                          }
                        ],
                        "src": "5327:282:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5669:382:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5679:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5693:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "5696:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "5689:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5689:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "5679:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5710:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "5740:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5746:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "5736:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5736:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "5714:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5787:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5789:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "5803:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5811:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "5799:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5799:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "5789:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "5767:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "5760:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5760:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5757:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5877:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5898:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5901:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5891:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5891:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5891:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5999:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6002:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5992:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5992:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5992:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6027:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6030:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6020:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6020:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6020:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "5833:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "5856:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5864:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "5853:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5853:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "5830:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5830:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5827:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "5649:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "5658:6:84",
                            "type": ""
                          }
                        ],
                        "src": "5614:437:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n        sum := add(x, y)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d71461018d578063a9059cbb146101a0578063dd62ed3e146101b357600080fd5b8063395093511461014957806370a082311461015c57806395d89b411461018557600080fd5b806318160ddd116100b257806318160ddd1461010f57806323b872dd14610121578063313ce5671461013457600080fd5b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101ec565b6040516100e391906108a8565b60405180910390f35b6100ff6100fa36600461087e565b61027e565b60405190151581526020016100e3565b6002545b6040519081526020016100e3565b6100ff61012f366004610842565b610294565b60055460405160ff90911681526020016100e3565b6100ff61015736600461087e565b610358565b61011361016a3660046107ed565b6001600160a01b031660009081526020819052604090205490565b6100d6610394565b6100ff61019b36600461087e565b6103a3565b6100ff6101ae36600461087e565b610454565b6101136101c136600461080f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101fb9061095a565b80601f01602080910402602001604051908101604052809291908181526020018280546102279061095a565b80156102745780601f1061024957610100808354040283529160200191610274565b820191906000526020600020905b81548152906001019060200180831161025757829003601f168201915b5050505050905090565b600061028b338484610461565b50600192915050565b60006102a18484846105b9565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103405760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61034d8533858403610461565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161028b91859061038f90869061091b565b610461565b6060600480546101fb9061095a565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561043d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610337565b61044a3385858403610461565b5060019392505050565b600061028b3384846105b9565b6001600160a01b0383166104dc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0382166105585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106355760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0382166106b15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b038316600090815260208190526040902054818110156107405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061077790849061091b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107c391815260200190565b60405180910390a350505050565b80356001600160a01b03811681146107e857600080fd5b919050565b6000602082840312156107ff57600080fd5b610808826107d1565b9392505050565b6000806040838503121561082257600080fd5b61082b836107d1565b9150610839602084016107d1565b90509250929050565b60008060006060848603121561085757600080fd5b610860846107d1565b925061086e602085016107d1565b9150604084013590509250925092565b6000806040838503121561089157600080fd5b61089a836107d1565b946020939093013593505050565b600060208083528351808285015260005b818110156108d5578581018301518582016040015282016108b9565b818111156108e7576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610955577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b600181811c9082168061096e57607f821691505b602082108114156109a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b5091905056fea2646970667358221220f004a9ff3d70f1e3ac49fe2e0186190205b3c7378490807b84e5fa9b2f0ea2f864736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x18D JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1A0 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x39509351 EQ PUSH2 0x149 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x15C JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x185 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x10F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x121 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x134 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xEC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD6 PUSH2 0x1EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP2 SWAP1 PUSH2 0x8A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFF PUSH2 0xFA CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x27E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x12F CALLDATASIZE PUSH1 0x4 PUSH2 0x842 JUMP JUMPDEST PUSH2 0x294 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x157 CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x358 JUMP JUMPDEST PUSH2 0x113 PUSH2 0x16A CALLDATASIZE PUSH1 0x4 PUSH2 0x7ED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xD6 PUSH2 0x394 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x19B CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x3A3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x1AE CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x454 JUMP JUMPDEST PUSH2 0x113 PUSH2 0x1C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x80F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1FB SWAP1 PUSH2 0x95A JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x227 SWAP1 PUSH2 0x95A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x274 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x249 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x274 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 0x257 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28B CALLER DUP5 DUP5 PUSH2 0x461 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A1 DUP5 DUP5 DUP5 PUSH2 0x5B9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x340 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x34D DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x461 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x28B SWAP2 DUP6 SWAP1 PUSH2 0x38F SWAP1 DUP7 SWAP1 PUSH2 0x91B JUMP JUMPDEST PUSH2 0x461 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1FB SWAP1 PUSH2 0x95A JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x43D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH2 0x44A CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x461 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28B CALLER DUP5 DUP5 PUSH2 0x5B9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x558 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x635 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x6B1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x740 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x777 SWAP1 DUP5 SWAP1 PUSH2 0x91B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x7C3 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x7E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x7FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x808 DUP3 PUSH2 0x7D1 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x822 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x82B DUP4 PUSH2 0x7D1 JUMP JUMPDEST SWAP2 POP PUSH2 0x839 PUSH1 0x20 DUP5 ADD PUSH2 0x7D1 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x857 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x860 DUP5 PUSH2 0x7D1 JUMP JUMPDEST SWAP3 POP PUSH2 0x86E PUSH1 0x20 DUP6 ADD PUSH2 0x7D1 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x891 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x89A DUP4 PUSH2 0x7D1 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x8D5 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x8B9 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x8E7 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x955 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x96E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x9A8 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE DIV 0xA9 SELFDESTRUCT RETURNDATASIZE PUSH17 0xF1E3AC49FE2E0186190205B3C737849080 PUSH28 0x84E5FA9B2F0EA2F864736F6C63430008060033000000000000000000 ",
              "sourceMap": "1259:10936:25:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2562:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4601:155;;;;;;:::i;:::-;;:::i;:::-;;;1428:14:84;;1421:22;1403:41;;1391:2;1376:18;4601:155:25;1358:92:84;3630:97:25;3708:12;;3630:97;;;5102:25:84;;;5090:2;5075:18;3630:97:25;5057:76:84;5223:465:25;;;;;;:::i;:::-;;:::i;3481:89::-;3554:9;;3481:89;;3554:9;;;;5280:36:84;;5268:2;5253:18;3481:89:25;5235:87:84;6083:208:25;;;;;;:::i;:::-;;:::i;3785:116::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3876:18:25;3850:7;3876:18;;;;;;;;;;;;3785:116;2764:93;;;:::i;6778:429::-;;;;;;:::i;:::-;;:::i;4104:161::-;;;;;;:::i;:::-;;:::i;4323:140::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4429:18:25;;;4403:7;4429:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4323:140;2562:89;2607:13;2639:5;2632:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2562:89;:::o;4601:155::-;4675:4;4691:37;4700:10;4712:7;4721:6;4691:8;:37::i;:::-;-1:-1:-1;4745:4:25;4601:155;;;;:::o;5223:465::-;5350:4;5366:36;5376:6;5384:9;5395:6;5366:9;:36::i;:::-;-1:-1:-1;;;;;5440:19:25;;5413:24;5440:19;;;:11;:19;;;;;;;;5460:10;5440:31;;;;;;;;5489:26;;;;5481:79;;;;-1:-1:-1;;;5481:79:25;;3532:2:84;5481:79:25;;;3514:21:84;3571:2;3551:18;;;3544:30;3610:34;3590:18;;;3583:62;3681:10;3661:18;;;3654:38;3709:19;;5481:79:25;;;;;;;;;5594:55;5603:6;5611:10;5642:6;5623:16;:25;5594:8;:55::i;:::-;-1:-1:-1;5677:4:25;;5223:465;-1:-1:-1;;;;5223:465:25:o;6083:208::-;6196:10;6171:4;6217:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;6217:32:25;;;;;;;;;;6171:4;;6187:76;;6208:7;;6217:45;;6252:10;;6217:45;:::i;:::-;6187:8;:76::i;2764:93::-;2811:13;2843:7;2836:14;;;;;:::i;6778:429::-;6954:10;6895:4;6942:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;6942:32:25;;;;;;;;;;6992:35;;;;6984:85;;;;-1:-1:-1;;;6984:85:25;;4752:2:84;6984:85:25;;;4734:21:84;4791:2;4771:18;;;4764:30;4830:34;4810:18;;;4803:62;4901:7;4881:18;;;4874:35;4926:19;;6984:85:25;4724:227:84;6984:85:25;7103:65;7112:10;7124:7;7152:15;7133:16;:34;7103:8;:65::i;:::-;-1:-1:-1;7196:4:25;;6778:429;-1:-1:-1;;;6778:429:25:o;4104:161::-;4181:4;4197:40;4207:10;4219:9;4230:6;4197:9;:40::i;10378:370::-;-1:-1:-1;;;;;10509:19:25;;10501:68;;;;-1:-1:-1;;;10501:68:25;;4347:2:84;10501:68:25;;;4329:21:84;4386:2;4366:18;;;4359:30;4425:34;4405:18;;;4398:62;4496:6;4476:18;;;4469:34;4520:19;;10501:68:25;4319:226:84;10501:68:25;-1:-1:-1;;;;;10587:21:25;;10579:68;;;;-1:-1:-1;;;10579:68:25;;2722:2:84;10579:68:25;;;2704:21:84;2761:2;2741:18;;;2734:30;2800:34;2780:18;;;2773:62;2871:4;2851:18;;;2844:32;2893:19;;10579:68:25;2694:224:84;10579:68:25;-1:-1:-1;;;;;10658:18:25;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10709:32;;5102:25:84;;;10709:32:25;;5075:18:84;10709:32:25;;;;;;;10378:370;;;:::o;7681:713::-;-1:-1:-1;;;;;7816:20:25;;7808:70;;;;-1:-1:-1;;;7808:70:25;;3941:2:84;7808:70:25;;;3923:21:84;3980:2;3960:18;;;3953:30;4019:34;3999:18;;;3992:62;4090:7;4070:18;;;4063:35;4115:19;;7808:70:25;3913:227:84;7808:70:25;-1:-1:-1;;;;;7896:23:25;;7888:71;;;;-1:-1:-1;;;7888:71:25;;2318:2:84;7888:71:25;;;2300:21:84;2357:2;2337:18;;;2330:30;2396:34;2376:18;;;2369:62;2467:5;2447:18;;;2440:33;2490:19;;7888:71:25;2290:225:84;7888:71:25;-1:-1:-1;;;;;8052:17:25;;8028:21;8052:17;;;;;;;;;;;8087:23;;;;8079:74;;;;-1:-1:-1;;;8079:74:25;;3125:2:84;8079:74:25;;;3107:21:84;3164:2;3144:18;;;3137:30;3203:34;3183:18;;;3176:62;3274:8;3254:18;;;3247:36;3300:19;;8079:74:25;3097:228:84;8079:74:25;-1:-1:-1;;;;;8187:17:25;;;:9;:17;;;;;;;;;;;8207:22;;;8187:42;;8249:20;;;;;;;;:30;;8223:6;;8187:9;8249:30;;8223:6;;8249:30;:::i;:::-;;;;;;;;8312:9;-1:-1:-1;;;;;8295:35:25;8304:6;-1:-1:-1;;;;;8295:35:25;;8323:6;8295:35;;;;5102:25:84;;5090:2;5075:18;;5057:76;8295:35:25;;;;;;;;7798:596;7681:713;;;:::o;14:196:84:-;82:20;;-1:-1:-1;;;;;131:54:84;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;:::-;356:39;285:116;-1:-1:-1;;;285:116:84:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:254::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:2;;;1149:1;1146;1139:12;1101:2;1172:29;1191:9;1172:29;:::i;:::-;1162:39;1248:2;1233:18;;;;1220:32;;-1:-1:-1;;;1091:167:84:o;1455:656::-;1567:4;1596:2;1625;1614:9;1607:21;1657:6;1651:13;1700:6;1695:2;1684:9;1680:18;1673:34;1725:1;1735:140;1749:6;1746:1;1743:13;1735:140;;;1844:14;;;1840:23;;1834:30;1810:17;;;1829:2;1806:26;1799:66;1764:10;;1735:140;;;1893:6;1890:1;1887:13;1884:2;;;1963:1;1958:2;1949:6;1938:9;1934:22;1930:31;1923:42;1884:2;-1:-1:-1;2027:2:84;2015:15;2032:66;2011:88;1996:104;;;;2102:2;1992:113;;1576:535;-1:-1:-1;;;1576:535:84:o;5327:282::-;5367:3;5398:1;5394:6;5391:1;5388:13;5385:2;;;5434:77;5431:1;5424:88;5535:4;5532:1;5525:15;5563:4;5560:1;5553:15;5385:2;-1:-1:-1;5594:9:84;;5375:234::o;5614:437::-;5693:1;5689:12;;;;5736;;;5757:2;;5811:4;5803:6;5799:17;5789:27;;5757:2;5864;5856:6;5853:14;5833:18;5830:38;5827:2;;;5901:77;5898:1;5891:88;6002:4;5999:1;5992:15;6030:4;6027:1;6020:15;5827:2;;5669:382;;;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "506400",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24642",
                "balanceOf(address)": "2585",
                "decimals()": "2356",
                "decreaseAllowance(address,uint256)": "26910",
                "increaseAllowance(address,uint256)": "26957",
                "name()": "infinite",
                "symbol()": "infinite",
                "totalSupply()": "2304",
                "transfer(address,uint256)": "51209",
                "transferFrom(address,address,uint256)": "infinite"
              },
              "internal": {
                "_afterTokenTransfer(address,address,uint256)": "infinite",
                "_approve(address,address,uint256)": "infinite",
                "_beforeTokenTransfer(address,address,uint256)": "infinite",
                "_burn(address,uint256)": "infinite",
                "_mint(address,uint256)": "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"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"uint8\",\"name\":\"decimals_\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"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\":\"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}.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. The default value of {decimals} is 18. To select a different value for {decimals} you should overload it. All two of these values are immutable: they can only be set once during construction.\"},\"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 this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `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\":{},\"notice\":\"NOTE: Copied from OpenZeppelin\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/yield-source-interface/contracts/test/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/yield-source-interface/contracts/test/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity >=0.6.0;\\n\\n/**\\n * NOTE: Copied from OpenZeppelin\\n *\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin guidelines: functions revert instead\\n * of returning `false` on failure. This behavior is nonetheless conventional\\n * and does not conflict with the expectations of ERC20 applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n    uint8 private _decimals;\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(\\n        string memory name_,\\n        string memory symbol_,\\n        uint8 decimals_\\n    ) {\\n        _name = name_;\\n        _symbol = symbol_;\\n        _decimals = decimals_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5,05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual returns (uint8) {\\n        return _decimals;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual returns (bool) {\\n        _transfer(msg.sender, recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual returns (bool) {\\n        _approve(msg.sender, spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][msg.sender];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, msg.sender, currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue)\\n        public\\n        virtual\\n        returns (bool)\\n    {\\n        uint256 currentAllowance = _allowances[msg.sender][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(msg.sender, spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    uint256[45] private __gap;\\n}\\n\",\"keccak256\":\"0xdd443b9630201b27f09fdacb9ed000005c769e320718534f9147ebb2863570b8\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 4183,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol:ERC20",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 4189,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol:ERC20",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 4191,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol:ERC20",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 4193,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol:ERC20",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 4195,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol:ERC20",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 4197,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol:ERC20",
                "label": "_decimals",
                "offset": 0,
                "slot": "5",
                "type": "t_uint8"
              },
              {
                "astId": 4733,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol:ERC20",
                "label": "__gap",
                "offset": 0,
                "slot": "6",
                "type": "t_array(t_uint256)45_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_uint256)45_storage": {
                "base": "t_uint256",
                "encoding": "inplace",
                "label": "uint256[45]",
                "numberOfBytes": "1440"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint8": {
                "encoding": "inplace",
                "label": "uint8",
                "numberOfBytes": "1"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "notice": "NOTE: Copied from OpenZeppelin",
            "version": 1
          }
        }
      },
      "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol": {
        "ERC20Mintable": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "string",
                  "name": "_name",
                  "type": "string"
                },
                {
                  "internalType": "string",
                  "name": "_symbol",
                  "type": "string"
                },
                {
                  "internalType": "uint8",
                  "name": "_decimals",
                  "type": "uint8"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "burn",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "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": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "masterTransfer",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "mint",
              "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 adds a set of accounts with the {MinterRole}, which have permission to mint (create) new tokens as they see fit. At construction, the deployer of the contract is the only minter.",
            "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 this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
              },
              "decreaseAllowance(address,uint256)": {
                "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
              },
              "increaseAllowance(address,uint256)": {
                "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
              },
              "mint(address,uint256)": {
                "details": "See {ERC20-_mint}. Requirements: - the caller must have the {MinterRole}."
              },
              "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
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_4238": {
                  "entryPoint": null,
                  "id": 4238,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_4755": {
                  "entryPoint": null,
                  "id": 4755,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 300,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory": {
                  "entryPoint": 483,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "extract_byte_array_length": {
                  "entryPoint": 616,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 677,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:2135:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:821:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:84"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:84"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:84",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:84"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:84",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:84"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:84"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "543:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "553:4:84",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "547:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "603:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "612:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "615:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "605:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "605:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "605:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "580:6:84"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "588:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "576:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "576:15:84"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "593:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "572:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "572:24:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "598:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "569:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "569:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "566:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "628:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "637:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "632:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "693:87:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "722:6:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "730:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "718:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "718:14:84"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "734:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "714:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "714:23:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "offset",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "753:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "761:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "749:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "749:14:84"
                                                },
                                                {
                                                  "name": "_4",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "765:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "745:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "745:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "739:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "739:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "707:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "707:63:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "707:63:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "661:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "655:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "655:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "665:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "667:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "676:1:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "679:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "672:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "672:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "667:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "651:3:84",
                                "statements": []
                              },
                              "src": "647:133:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "810:59:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "839:6:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "847:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "835:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "835:15:84"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "852:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "831:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "831:24:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "857:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:35:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:35:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "795:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "798:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "792:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "792:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "789:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "878:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "887:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "878:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:885:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1037:579:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1083:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1092:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1095:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1085:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1085:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1085:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1058:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1067:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1054:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1054:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1079:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1050:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1050:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1047:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1108:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1128:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1122:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1122:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1112:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1147:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1165:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1169:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1161:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1161:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1173:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1157:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1157:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1151:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1202:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1211:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1214:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1204:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1204:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1204:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1190:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1198:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1187:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1187:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1184:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1227:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1270:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1281:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1266:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1266:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1290:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1237:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1237:61:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1227:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1307:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1333:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1344:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1329:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1329:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1323:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1323:25:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1311:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1377:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1386:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1389:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1379:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1379:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1379:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1363:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1373:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1360:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1360:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1357:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1402:73:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1445:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1456:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1441:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1441:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1467:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1412:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1412:63:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1402:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1484:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1507:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1518:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1503:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1503:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1497:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1497:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1488:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1570:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1579:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1582:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1572:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1572:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1572:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1544:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1555:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1562:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1551:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1551:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1541:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1541:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1534:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1534:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1531:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1595:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1605:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1595:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "987:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "998:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1010:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1018:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1026:6:84",
                            "type": ""
                          }
                        ],
                        "src": "904:712:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1676:325:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1686:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1700:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1703:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "1696:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1696:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1686:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1717:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1747:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1753:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "1743:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1743:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "1721:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1794:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1796:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "1810:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1818:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "1806:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1806:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1796:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1774:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1767:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1767:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1764:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1884:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1905:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1912:3:84",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1917:10:84",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "1908:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1908:20:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1898:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1898:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1898:31:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1949:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1952:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1942:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1942:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1942:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1977:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1980:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1970:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1970:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1970:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1840:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1863:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1871:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1860:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1860:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "1837:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1837:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1834:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "1656:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1665:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1621:380:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2038:95:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2055:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2062:3:84",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2067:10:84",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "2058:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2058:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2048:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2048:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2048:31:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2095:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2098:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2088:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2088:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2088:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2119:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2122:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "2112:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2112:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2112:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "2006:127:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        let _4 := 0x20\n        if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _1) { i := add(i, _4) }\n        {\n            mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n        }\n        if gt(i, _1)\n        {\n            mstore(add(add(memPtr, _1), _4), 0)\n        }\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        let value := mload(add(headStart, 64))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value2 := value\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b5060405162000fb638038062000fb68339810160408190526200003491620001e3565b82828282600390805190602001906200004f92919062000086565b5081516200006590600490602085019062000086565b506005805460ff191660ff9290921691909117905550620002bb9350505050565b828054620000949062000268565b90600052602060002090601f016020900481019282620000b8576000855562000103565b82601f10620000d357805160ff191683800117855562000103565b8280016001018555821562000103579182015b8281111562000103578251825591602001919060010190620000e6565b506200011192915062000115565b5090565b5b8082111562000111576000815560010162000116565b600082601f8301126200013e57600080fd5b81516001600160401b03808211156200015b576200015b620002a5565b604051601f8301601f19908116603f01168101908282118183101715620001865762000186620002a5565b81604052838152602092508683858801011115620001a357600080fd5b600091505b83821015620001c75785820183015181830184015290820190620001a8565b83821115620001d95760008385830101525b9695505050505050565b600080600060608486031215620001f957600080fd5b83516001600160401b03808211156200021157600080fd5b6200021f878388016200012c565b945060208601519150808211156200023657600080fd5b5062000245868287016200012c565b925050604084015160ff811681146200025d57600080fd5b809150509250925092565b600181811c908216806200027d57607f821691505b602082108114156200029f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610ceb80620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806340c10f191161008c5780639dc29fac116100665780639dc29fac146101d6578063a457c2d7146101e9578063a9059cbb146101fc578063dd62ed3e1461020f57600080fd5b806340c10f191461019257806370a08231146101a557806395d89b41146101ce57600080fd5b80631c9c7903116100c85780631c9c79031461014257806323b872dd14610157578063313ce5671461016a578063395093511461017f57600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610248565b6040516101049190610b90565b60405180910390f35b61012061011b366004610b66565b6102da565b6040519015158152602001610104565b6002545b604051908152602001610104565b610155610150366004610b2a565b6102f0565b005b610120610165366004610b2a565b610300565b60055460405160ff9091168152602001610104565b61012061018d366004610b66565b6103c4565b6101206101a0366004610b66565b610400565b6101346101b3366004610ad5565b6001600160a01b031660009081526020819052604090205490565b6100f761040c565b6101206101e4366004610b66565b61041b565b6101206101f7366004610b66565b610427565b61012061020a366004610b66565b6104d8565b61013461021d366004610af7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461025790610c32565b80601f016020809104026020016040519081016040528092919081815260200182805461028390610c32565b80156102d05780601f106102a5576101008083540402835291602001916102d0565b820191906000526020600020905b8154815290600101906020018083116102b357829003601f168201915b5050505050905090565b60006102e73384846104e5565b50600192915050565b6102fb83838361063d565b505050565b600061030d84848461063d565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103ac5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103b985338584036104e5565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102e79185906103fb908690610c03565b6104e5565b60006102e78383610855565b60606004805461025790610c32565b60006102e78383610934565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103a3565b6104ce33858584036104e5565b5060019392505050565b60006102e733848461063d565b6001600160a01b0383166105605760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0382166105dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106b95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0382166107355760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b038316600090815260208190526040902054818110156107c45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107fb908490610c03565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161084791815260200190565b60405180910390a350505050565b6001600160a01b0382166108ab5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103a3565b80600260008282546108bd9190610c03565b90915550506001600160a01b038216600090815260208190526040812080548392906108ea908490610c03565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166109b05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b03821660009081526020819052604090205481811015610a3f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a6e908490610c1b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b0381168114610ad057600080fd5b919050565b600060208284031215610ae757600080fd5b610af082610ab9565b9392505050565b60008060408385031215610b0a57600080fd5b610b1383610ab9565b9150610b2160208401610ab9565b90509250929050565b600080600060608486031215610b3f57600080fd5b610b4884610ab9565b9250610b5660208501610ab9565b9150604084013590509250925092565b60008060408385031215610b7957600080fd5b610b8283610ab9565b946020939093013593505050565b600060208083528351808285015260005b81811015610bbd57858101830151858201604001528201610ba1565b81811115610bcf576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610c1657610c16610c86565b500190565b600082821015610c2d57610c2d610c86565b500390565b600181811c90821680610c4657607f821691505b60208210811415610c80577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212200d8946b5eb130740744d8a31937c9971ac977e9fddfc4c96a792b9ef1e4e0a5c64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xFB6 CODESIZE SUB DUP1 PUSH3 0xFB6 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1E3 JUMP JUMPDEST DUP3 DUP3 DUP3 DUP3 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x4F SWAP3 SWAP2 SWAP1 PUSH3 0x86 JUMP JUMPDEST POP DUP2 MLOAD PUSH3 0x65 SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x86 JUMP JUMPDEST POP PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP PUSH3 0x2BB SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x94 SWAP1 PUSH3 0x268 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xB8 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x103 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xD3 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x103 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x103 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x103 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xE6 JUMP JUMPDEST POP PUSH3 0x111 SWAP3 SWAP2 POP PUSH3 0x115 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x111 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x116 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x13E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x15B JUMPI PUSH3 0x15B PUSH3 0x2A5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x186 JUMPI PUSH3 0x186 PUSH3 0x2A5 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x1A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1C7 JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x1A8 JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x1D9 JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x1F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x211 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x21F DUP8 DUP4 DUP9 ADD PUSH3 0x12C JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x236 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x245 DUP7 DUP3 DUP8 ADD PUSH3 0x12C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0x25D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x27D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x29F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0xCEB DUP1 PUSH3 0x2CB 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 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0x9DC29FAC GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x20F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x192 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1C9C7903 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x1C9C7903 EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x157 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x16A JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x17F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x130 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x104 SWAP2 SWAP1 PUSH2 0xB90 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x120 PUSH2 0x11B CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x2DA JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x155 PUSH2 0x150 CALLDATASIZE PUSH1 0x4 PUSH2 0xB2A JUMP JUMPDEST PUSH2 0x2F0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH2 0x165 CALLDATASIZE PUSH1 0x4 PUSH2 0xB2A JUMP JUMPDEST PUSH2 0x300 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x18D CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x3C4 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1A0 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x400 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x1B3 CALLDATASIZE PUSH1 0x4 PUSH2 0xAD5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x40C JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x41B JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x427 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x4D8 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0xAF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x257 SWAP1 PUSH2 0xC32 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x283 SWAP1 PUSH2 0xC32 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2D0 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2A5 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2D0 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 0x2B3 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 CALLER DUP5 DUP5 PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2FB DUP4 DUP4 DUP4 PUSH2 0x63D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30D DUP5 DUP5 DUP5 PUSH2 0x63D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3B9 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x2E7 SWAP2 DUP6 SWAP1 PUSH2 0x3FB SWAP1 DUP7 SWAP1 PUSH2 0xC03 JUMP JUMPDEST PUSH2 0x4E5 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 DUP4 DUP4 PUSH2 0x855 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x257 SWAP1 PUSH2 0xC32 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 DUP4 DUP4 PUSH2 0x934 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x4C1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH2 0x4CE CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 CALLER DUP5 DUP5 PUSH2 0x63D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x560 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x6B9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x735 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x7C4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x7FB SWAP1 DUP5 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x847 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x8AB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A3 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x8BD SWAP2 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x8EA SWAP1 DUP5 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xA3F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xA6E SWAP1 DUP5 SWAP1 PUSH2 0xC1B JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xAD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xAF0 DUP3 PUSH2 0xAB9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB0A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB13 DUP4 PUSH2 0xAB9 JUMP JUMPDEST SWAP2 POP PUSH2 0xB21 PUSH1 0x20 DUP5 ADD PUSH2 0xAB9 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB3F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB48 DUP5 PUSH2 0xAB9 JUMP JUMPDEST SWAP3 POP PUSH2 0xB56 PUSH1 0x20 DUP6 ADD PUSH2 0xAB9 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB82 DUP4 PUSH2 0xAB9 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBBD JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0xBA1 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0xBCF JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xC16 JUMPI PUSH2 0xC16 PUSH2 0xC86 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0xC2D JUMPI PUSH2 0xC2D PUSH2 0xC86 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xC46 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xC80 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD DUP10 CHAINID 0xB5 0xEB SGT SMOD BLOCKHASH PUSH21 0x4D8A31937C9971AC977E9FDDFC4C96A792B9EF1E4E EXP 0x5C PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "316:731:26:-:0;;;354:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;463:5;470:7;479:9;2427:5:25;2419;:13;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2442:17:25;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;2469:9:25;:21;;-1:-1:-1;;2469:21:25;;;;;;;;;;;;-1:-1:-1;316:731:26;;-1:-1:-1;;;;316:731:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;316:731:26;;;-1:-1:-1;316:731:26;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:885:84;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;224:10:84;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:84;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;553:4;543:14;;598:3;593:2;588;580:6;576:15;572:24;569:33;566:2;;;615:1;612;605:12;566:2;637:1;628:10;;647:133;661:2;658:1;655:9;647:133;;;749:14;;;745:23;;739:30;718:14;;;714:23;;707:63;672:10;;;;647:133;;;798:2;795:1;792:9;789:2;;;857:1;852:2;847;839:6;835:15;831:24;824:35;789:2;887:6;78:821;-1:-1:-1;;;;;;78:821:84:o;904:712::-;1010:6;1018;1026;1079:2;1067:9;1058:7;1054:23;1050:32;1047:2;;;1095:1;1092;1085:12;1047:2;1122:16;;-1:-1:-1;1187:14:84;;;1184:2;;;1214:1;1211;1204:12;1184:2;1237:61;1290:7;1281:6;1270:9;1266:22;1237:61;:::i;:::-;1227:71;;1344:2;1333:9;1329:18;1323:25;1307:41;;1373:2;1363:8;1360:16;1357:2;;;1389:1;1386;1379:12;1357:2;;1412:63;1467:7;1456:8;1445:9;1441:24;1412:63;:::i;:::-;1402:73;;;1518:2;1507:9;1503:18;1497:25;1562:4;1555:5;1551:16;1544:5;1541:27;1531:2;;1582:1;1579;1572:12;1531:2;1605:5;1595:15;;;1037:579;;;;;:::o;1621:380::-;1700:1;1696:12;;;;1743;;;1764:2;;1818:4;1810:6;1806:17;1796:27;;1764:2;1871;1863:6;1860:14;1840:18;1837:38;1834:2;;;1917:10;1912:3;1908:20;1905:1;1898:31;1952:4;1949:1;1942:15;1980:4;1977:1;1970:15;1834:2;;1676:325;;;:::o;2006:127::-;2067:10;2062:3;2058:20;2055:1;2048:31;2098:4;2095:1;2088:15;2122:4;2119:1;2112:15;2038:95;316:731:26;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_afterTokenTransfer_4729": {
                  "entryPoint": null,
                  "id": 4729,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_4707": {
                  "entryPoint": 1253,
                  "id": 4707,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_4718": {
                  "entryPoint": null,
                  "id": 4718,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_burn_4662": {
                  "entryPoint": 2356,
                  "id": 4662,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_mint_4590": {
                  "entryPoint": 2133,
                  "id": 4590,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_transfer_4534": {
                  "entryPoint": 1597,
                  "id": 4534,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@allowance_4324": {
                  "entryPoint": null,
                  "id": 4324,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_4344": {
                  "entryPoint": 730,
                  "id": 4344,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_4287": {
                  "entryPoint": null,
                  "id": 4287,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@burn_4790": {
                  "entryPoint": 1051,
                  "id": 4790,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@decimals_4265": {
                  "entryPoint": null,
                  "id": 4265,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_4457": {
                  "entryPoint": 1063,
                  "id": 4457,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_4418": {
                  "entryPoint": 964,
                  "id": 4418,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@masterTransfer_4806": {
                  "entryPoint": 752,
                  "id": 4806,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@mint_4773": {
                  "entryPoint": 1024,
                  "id": 4773,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@name_4247": {
                  "entryPoint": 584,
                  "id": 4247,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@symbol_4256": {
                  "entryPoint": 1036,
                  "id": 4256,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@totalSupply_4274": {
                  "entryPoint": null,
                  "id": 4274,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_4391": {
                  "entryPoint": 768,
                  "id": 4391,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_4307": {
                  "entryPoint": 1240,
                  "id": 4307,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_address": {
                  "entryPoint": 2745,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 2773,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 2807,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 2858,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 2918,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 2960,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 3075,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 3099,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 3122,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 3206,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:7383:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:84",
                            "type": ""
                          }
                        ],
                        "src": "215:186:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:84",
                            "type": ""
                          }
                        ],
                        "src": "406:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:84",
                            "type": ""
                          }
                        ],
                        "src": "671:328:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1091:167:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1137:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1146:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1149:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1139:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1139:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1139:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1112:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1121:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1108:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1108:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1133:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1104:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1104:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1101:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1162:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1191:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1162:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1210:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1237:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1248:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1220:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1220:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1210:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1049:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1060:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1072:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1080:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1004:254:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1358:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1368:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1380:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1391:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1376:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1376:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1368:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1410:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "1435:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1428:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1428:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "1421:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1421:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1403:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1403:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1403:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1327:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1338:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1349:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1263:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1576:535:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1586:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1596:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1590:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1614:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1625:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1607:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1607:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1607:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1637:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1657:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1651:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1651:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1641:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1684:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1695:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1680:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1680:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1673:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1673:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1673:34:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1716:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1725:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1720:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1785:90:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1814:9:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1825:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1810:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1810:17:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1829:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1806:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1806:26:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1848:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1856:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "1844:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "1844:14:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1860:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1840:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1840:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "1834:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1834:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1799:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1799:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1799:66:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1746:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1749:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1743:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1743:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1757:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1759:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1768:1:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1771:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1764:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1764:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1759:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1739:3:84",
                                "statements": []
                              },
                              "src": "1735:140:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1909:66:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1938:9:84"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1949:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1934:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1934:22:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1958:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1930:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1930:31:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1963:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1923:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1923:42:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1923:42:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1890:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1893:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1887:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1887:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1884:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1984:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2000:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "2019:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2027:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2015:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2015:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2032:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2011:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2011:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1996:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1996:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2102:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1992:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1992:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1984:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1545:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1556:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1567:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1455:656:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2290:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2307:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2318:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2300:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2300:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2300:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2341:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2352:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2337:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2337:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2357:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2330:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2330:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2330:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2380:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2391:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2376:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2376:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2396:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2369:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2369:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2369:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2451:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2462:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2447:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2447:18:84"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2467:5:84",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2440:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2440:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2440:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2482:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2494:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2505:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2490:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2490:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2482:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2267:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2281:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2116:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2694:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2711:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2722:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2704:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2704:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2704:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2745:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2756:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2741:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2741:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2761:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2734:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2734:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2734:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2784:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2795:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2780:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2780:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2800:34:84",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2773:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2773:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2773:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2855:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2866:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2851:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2851:18:84"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2871:4:84",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2844:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2844:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2844:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2885:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2897:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2908:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2893:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2893:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2885:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2671:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2685:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2520:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3097:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3114:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3125:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3107:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3107:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3107:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3148:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3159:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3144:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3144:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3164:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3137:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3137:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3137:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3187:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3198:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3183:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3183:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3203:34:84",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3176:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3176:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3176:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3258:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3269:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3254:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3254:18:84"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3274:4:84",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3247:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3247:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3247:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3288:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3300:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3311:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3296:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3296:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3288:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3074:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3088:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2923:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3500:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3517:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3528:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3510:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3510:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3510:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3551:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3562:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3547:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3547:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3567:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3540:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3540:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3540:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3590:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3601:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3586:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3586:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3606:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3579:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3579:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3579:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3661:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3672:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3657:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3657:18:84"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3677:8:84",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3650:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3650:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3650:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3695:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3707:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3718:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3703:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3703:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3695:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3477:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3491:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3326:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3907:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3924:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3935:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3917:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3917:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3917:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3958:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3969:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3954:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3954:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3974:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3947:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3947:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3947:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3997:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4008:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3993:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3993:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4013:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3986:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3986:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3986:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4068:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4079:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4064:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4064:18:84"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4084:10:84",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4057:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4057:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4057:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4104:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4116:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4127:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4112:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4112:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4104:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3884:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3898:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3733:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4316:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4333:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4344:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4326:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4326:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4326:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4367:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4378:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4363:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4363:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4383:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4356:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4356:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4356:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4406:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4417:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4402:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4402:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4422:34:84",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4395:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4395:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4395:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4477:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4488:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4473:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4473:18:84"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4493:3:84",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4466:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4466:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4466:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4506:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4518:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4529:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4514:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4514:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4506:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4293:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4307:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4142:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4718:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4735:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4746:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4728:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4728:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4728:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4769:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4780:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4765:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4765:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4785:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4758:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4758:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4758:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4808:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4819:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4804:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4804:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4824:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4797:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4797:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4797:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4879:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4890:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4875:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4875:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4895:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4868:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4868:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4868:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4912:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4924:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4935:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4920:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4920:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4912:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4695:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4709:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4544:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5124:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5141:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5152:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5134:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5134:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5134:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5175:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5186:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5171:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5171:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5191:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5164:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5164:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5164:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5214:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5225:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5210:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5210:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5230:34:84",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5203:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5203:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5203:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5285:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5296:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5281:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5281:18:84"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5301:6:84",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5274:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5274:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5274:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5317:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5329:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5340:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5325:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5325:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5317:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5101:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5115:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4950:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5529:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5546:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5557:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5539:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5539:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5539:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5580:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5591:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5576:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5576:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5596:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5569:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5569:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5569:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5619:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5630:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5615:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5615:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5635:34:84",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5608:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5608:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5608:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5690:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5701:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5686:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5686:18:84"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5706:7:84",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5679:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5679:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5679:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5723:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5735:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5746:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5731:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5731:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5723:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5506:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5520:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5355:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5935:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5952:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5963:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5945:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5945:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5945:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5986:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5997:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5982:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5982:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6002:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5975:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5975:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5975:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6025:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6036:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6021:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6021:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6041:33:84",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6014:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6014:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6014:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6084:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6096:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6107:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6092:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6092:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6084:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5912:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5926:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5761:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6222:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6232:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6244:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6255:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6240:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6240:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6232:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6274:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6285:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6267:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6267:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6267:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6191:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6202:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6213:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6121:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6400:87:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6410:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6422:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6433:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6418:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6418:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6410:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6452:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6467:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6475:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6463:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6463:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6445:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6445:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6445:36:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6369:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6380:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6391:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6303:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6540:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6567:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "6569:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6569:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6569:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6556:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "6563:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "6559:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6559:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6553:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6553:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6550:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6598:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6609:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "6612:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6605:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6605:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "6598:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "6523:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "6526:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "6532:3:84",
                            "type": ""
                          }
                        ],
                        "src": "6492:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6674:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6696:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "6698:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6698:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6698:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6690:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "6693:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6687:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6687:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6684:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6727:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6739:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "6742:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "6735:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6735:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "6727:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "6656:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "6659:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "6665:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6625:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6810:382:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6820:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6834:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "6837:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "6830:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6830:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "6820:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6851:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "6881:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6887:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "6877:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6877:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "6855:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6928:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6930:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "6944:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6952:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "6940:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6940:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "6930:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "6908:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "6901:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6901:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6898:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7018:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7039:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7042:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7032:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7032:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7032:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7140:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7143:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7133:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7133:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7133:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7168:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7171:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7161:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7161:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7161:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "6974:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "6997:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7005:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "6994:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6994:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "6971:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6971:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6968:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "6790:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "6799:6:84",
                            "type": ""
                          }
                        ],
                        "src": "6755:437:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7229:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7246:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7249:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7239:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7239:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7239:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7343:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7346:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7336:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7336:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7336:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7367:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7370:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "7360:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7360:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7360:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "7197:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: burn amount exceeds balan\")\n        mstore(add(headStart, 96), \"ce\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC20: burn from the zero addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100ea5760003560e01c806340c10f191161008c5780639dc29fac116100665780639dc29fac146101d6578063a457c2d7146101e9578063a9059cbb146101fc578063dd62ed3e1461020f57600080fd5b806340c10f191461019257806370a08231146101a557806395d89b41146101ce57600080fd5b80631c9c7903116100c85780631c9c79031461014257806323b872dd14610157578063313ce5671461016a578063395093511461017f57600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610248565b6040516101049190610b90565b60405180910390f35b61012061011b366004610b66565b6102da565b6040519015158152602001610104565b6002545b604051908152602001610104565b610155610150366004610b2a565b6102f0565b005b610120610165366004610b2a565b610300565b60055460405160ff9091168152602001610104565b61012061018d366004610b66565b6103c4565b6101206101a0366004610b66565b610400565b6101346101b3366004610ad5565b6001600160a01b031660009081526020819052604090205490565b6100f761040c565b6101206101e4366004610b66565b61041b565b6101206101f7366004610b66565b610427565b61012061020a366004610b66565b6104d8565b61013461021d366004610af7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461025790610c32565b80601f016020809104026020016040519081016040528092919081815260200182805461028390610c32565b80156102d05780601f106102a5576101008083540402835291602001916102d0565b820191906000526020600020905b8154815290600101906020018083116102b357829003601f168201915b5050505050905090565b60006102e73384846104e5565b50600192915050565b6102fb83838361063d565b505050565b600061030d84848461063d565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103ac5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103b985338584036104e5565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102e79185906103fb908690610c03565b6104e5565b60006102e78383610855565b60606004805461025790610c32565b60006102e78383610934565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103a3565b6104ce33858584036104e5565b5060019392505050565b60006102e733848461063d565b6001600160a01b0383166105605760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0382166105dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106b95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0382166107355760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b038316600090815260208190526040902054818110156107c45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107fb908490610c03565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161084791815260200190565b60405180910390a350505050565b6001600160a01b0382166108ab5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103a3565b80600260008282546108bd9190610c03565b90915550506001600160a01b038216600090815260208190526040812080548392906108ea908490610c03565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166109b05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b03821660009081526020819052604090205481811015610a3f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a6e908490610c1b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b0381168114610ad057600080fd5b919050565b600060208284031215610ae757600080fd5b610af082610ab9565b9392505050565b60008060408385031215610b0a57600080fd5b610b1383610ab9565b9150610b2160208401610ab9565b90509250929050565b600080600060608486031215610b3f57600080fd5b610b4884610ab9565b9250610b5660208501610ab9565b9150604084013590509250925092565b60008060408385031215610b7957600080fd5b610b8283610ab9565b946020939093013593505050565b600060208083528351808285015260005b81811015610bbd57858101830151858201604001528201610ba1565b81811115610bcf576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610c1657610c16610c86565b500190565b600082821015610c2d57610c2d610c86565b500390565b600181811c90821680610c4657607f821691505b60208210811415610c80577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212200d8946b5eb130740744d8a31937c9971ac977e9fddfc4c96a792b9ef1e4e0a5c64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0x9DC29FAC GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x20F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x192 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1C9C7903 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x1C9C7903 EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x157 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x16A JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x17F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x130 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x104 SWAP2 SWAP1 PUSH2 0xB90 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x120 PUSH2 0x11B CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x2DA JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x155 PUSH2 0x150 CALLDATASIZE PUSH1 0x4 PUSH2 0xB2A JUMP JUMPDEST PUSH2 0x2F0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH2 0x165 CALLDATASIZE PUSH1 0x4 PUSH2 0xB2A JUMP JUMPDEST PUSH2 0x300 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x18D CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x3C4 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1A0 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x400 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x1B3 CALLDATASIZE PUSH1 0x4 PUSH2 0xAD5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x40C JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x41B JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x427 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x4D8 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0xAF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x257 SWAP1 PUSH2 0xC32 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x283 SWAP1 PUSH2 0xC32 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2D0 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2A5 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2D0 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 0x2B3 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 CALLER DUP5 DUP5 PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2FB DUP4 DUP4 DUP4 PUSH2 0x63D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30D DUP5 DUP5 DUP5 PUSH2 0x63D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3B9 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x2E7 SWAP2 DUP6 SWAP1 PUSH2 0x3FB SWAP1 DUP7 SWAP1 PUSH2 0xC03 JUMP JUMPDEST PUSH2 0x4E5 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 DUP4 DUP4 PUSH2 0x855 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x257 SWAP1 PUSH2 0xC32 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 DUP4 DUP4 PUSH2 0x934 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x4C1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH2 0x4CE CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 CALLER DUP5 DUP5 PUSH2 0x63D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x560 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x6B9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x735 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x7C4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x7FB SWAP1 DUP5 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x847 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x8AB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A3 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x8BD SWAP2 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x8EA SWAP1 DUP5 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xA3F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xA6E SWAP1 DUP5 SWAP1 PUSH2 0xC1B JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xAD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xAF0 DUP3 PUSH2 0xAB9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB0A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB13 DUP4 PUSH2 0xAB9 JUMP JUMPDEST SWAP2 POP PUSH2 0xB21 PUSH1 0x20 DUP5 ADD PUSH2 0xAB9 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB3F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB48 DUP5 PUSH2 0xAB9 JUMP JUMPDEST SWAP3 POP PUSH2 0xB56 PUSH1 0x20 DUP6 ADD PUSH2 0xAB9 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB82 DUP4 PUSH2 0xAB9 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBBD JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0xBA1 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0xBCF JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xC16 JUMPI PUSH2 0xC16 PUSH2 0xC86 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0xC2D JUMPI PUSH2 0xC2D PUSH2 0xC86 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xC46 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xC80 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD DUP10 CHAINID 0xB5 0xEB SGT SMOD BLOCKHASH PUSH21 0x4D8A31937C9971AC977E9FDDFC4C96A792B9EF1E4E EXP 0x5C PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "316:731:26:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2562:89:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4601:155;;;;;;:::i;:::-;;:::i;:::-;;;1428:14:84;;1421:22;1403:41;;1391:2;1376:18;4601:155:25;1358:92:84;3630:97:25;3708:12;;3630:97;;;6267:25:84;;;6255:2;6240:18;3630:97:25;6222:76:84;898:147:26;;;;;;:::i;:::-;;:::i;:::-;;5223:465:25;;;;;;:::i;:::-;;:::i;3481:89::-;3554:9;;3481:89;;3554:9;;;;6445:36:84;;6433:2;6418:18;3481:89:25;6400:87:84;6083:208:25;;;;;;:::i;:::-;;:::i;628:129:26:-;;;;;;:::i;:::-;;:::i;3785:116:25:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3876:18:25;3850:7;3876:18;;;;;;;;;;;;3785:116;2764:93;;;:::i;763:129:26:-;;;;;;:::i;:::-;;:::i;6778:429:25:-;;;;;;:::i;:::-;;:::i;4104:161::-;;;;;;:::i;:::-;;:::i;4323:140::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4429:18:25;;;4403:7;4429:18;;;-1:-1:-1;4429:18:25;;;;;;;;:27;;;;;;;;;;;;;4323:140;2562:89;2607:13;2639:5;2632:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2562:89;:::o;4601:155::-;4675:4;4691:37;4700:10;4712:7;4721:6;4691:8;:37::i;:::-;-1:-1:-1;4745:4:25;4601:155;;;;:::o;898:147:26:-;1011:27;1021:4;1027:2;1031:6;1011:9;:27::i;:::-;898:147;;;:::o;5223:465:25:-;5350:4;5366:36;5376:6;5384:9;5395:6;5366:9;:36::i;:::-;-1:-1:-1;;;;;5440:19:25;;5413:24;5440:19;;;-1:-1:-1;5440:19:25;;;;;;;;5460:10;5440:31;;;;;;;;5489:26;;;;5481:79;;;;-1:-1:-1;;;5481:79:25;;3935:2:84;5481:79:25;;;3917:21:84;3974:2;3954:18;;;3947:30;4013:34;3993:18;;;3986:62;4084:10;4064:18;;;4057:38;4112:19;;5481:79:25;;;;;;;;;5594:55;5603:6;5611:10;5642:6;5623:16;:25;5594:8;:55::i;:::-;-1:-1:-1;5677:4:25;;5223:465;-1:-1:-1;;;;5223:465:25:o;6083:208::-;6196:10;6171:4;6217:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;6217:32:25;;;;;;;;;;6171:4;;6187:76;;6217:32;;:45;;6252:10;;6217:45;:::i;:::-;6187:8;:76::i;628:129:26:-;691:4;707:22;713:7;722:6;707:5;:22::i;2764:93:25:-;2811:13;2843:7;2836:14;;;;;:::i;763:129:26:-;826:4;842:22;848:7;857:6;842:5;:22::i;6778:429:25:-;6954:10;6895:4;6942:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;6942:32:25;;;;;;;;;;6992:35;;;;6984:85;;;;-1:-1:-1;;;6984:85:25;;5557:2:84;6984:85:25;;;5539:21:84;5596:2;5576:18;;;5569:30;5635:34;5615:18;;;5608:62;5706:7;5686:18;;;5679:35;5731:19;;6984:85:25;5529:227:84;6984:85:25;7103:65;7112:10;7124:7;7152:15;7133:16;:34;7103:8;:65::i;:::-;-1:-1:-1;7196:4:25;;6778:429;-1:-1:-1;;;6778:429:25:o;4104:161::-;4181:4;4197:40;4207:10;4219:9;4230:6;4197:9;:40::i;10378:370::-;-1:-1:-1;;;;;10509:19:25;;10501:68;;;;-1:-1:-1;;;10501:68:25;;5152:2:84;10501:68:25;;;5134:21:84;5191:2;5171:18;;;5164:30;5230:34;5210:18;;;5203:62;5301:6;5281:18;;;5274:34;5325:19;;10501:68:25;5124:226:84;10501:68:25;-1:-1:-1;;;;;10587:21:25;;10579:68;;;;-1:-1:-1;;;10579:68:25;;3125:2:84;10579:68:25;;;3107:21:84;3164:2;3144:18;;;3137:30;3203:34;3183:18;;;3176:62;3274:4;3254:18;;;3247:32;3296:19;;10579:68:25;3097:224:84;10579:68:25;-1:-1:-1;;;;;10658:18:25;;;;;;;-1:-1:-1;10658:18:25;;;;;;;;:27;;;;;;;;;;;;;:36;;;10709:32;;6267:25:84;;;10709:32:25;;;;;;;;;;;;10378:370;;;:::o;7681:713::-;-1:-1:-1;;;;;7816:20:25;;7808:70;;;;-1:-1:-1;;;7808:70:25;;4746:2:84;7808:70:25;;;4728:21:84;4785:2;4765:18;;;4758:30;4824:34;4804:18;;;4797:62;4895:7;4875:18;;;4868:35;4920:19;;7808:70:25;4718:227:84;7808:70:25;-1:-1:-1;;;;;7896:23:25;;7888:71;;;;-1:-1:-1;;;7888:71:25;;2318:2:84;7888:71:25;;;2300:21:84;2357:2;2337:18;;;2330:30;2396:34;2376:18;;;2369:62;2467:5;2447:18;;;2440:33;2490:19;;7888:71:25;2290:225:84;7888:71:25;-1:-1:-1;;;;;8052:17:25;;8028:21;8052:17;;;;;;;;;;;8087:23;;;;8079:74;;;;-1:-1:-1;;;8079:74:25;;3528:2:84;8079:74:25;;;3510:21:84;3567:2;3547:18;;;3540:30;3606:34;3586:18;;;3579:62;3677:8;3657:18;;;3650:36;3703:19;;8079:74:25;3500:228:84;8079:74:25;-1:-1:-1;;;;;8187:17:25;;;:9;:17;;;;;;;;;;;8207:22;;;8187:42;;8249:20;;;;;;;;:30;;8207:22;;8187:9;8249:30;;8207:22;;8249:30;:::i;:::-;;;;-1:-1:-1;;8295:35:25;;6267:25:84;;;-1:-1:-1;;;;;8295:35:25;;;;;;;;;;6255:2:84;6240:18;8295:35:25;;;;;;;7798:596;7681:713;;;:::o;8670:389::-;-1:-1:-1;;;;;8753:21:25;;8745:65;;;;-1:-1:-1;;;8745:65:25;;5963:2:84;8745:65:25;;;5945:21:84;6002:2;5982:18;;;5975:30;6041:33;6021:18;;;6014:61;6092:18;;8745:65:25;5935:181:84;8745:65:25;8897:6;8881:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8913:18:25;;:9;:18;;;;;;;;;;:28;;8935:6;;8913:9;:28;;8935:6;;8913:28;:::i;:::-;;;;-1:-1:-1;;8956:37:25;;;6267:25:84;;;8956:37:25;;-1:-1:-1;;;;;8956:37:25;;;8973:1;;8956:37;;;;;6255:2:84;8956:37:25;;;8670:389;;:::o;9379:576::-;-1:-1:-1;;;;;9462:21:25;;9454:67;;;;-1:-1:-1;;;9454:67:25;;4344:2:84;9454:67:25;;;4326:21:84;4383:2;4363:18;;;4356:30;4422:34;4402:18;;;4395:62;4493:3;4473:18;;;4466:31;4514:19;;9454:67:25;4316:223:84;9454:67:25;-1:-1:-1;;;;;9617:18:25;;9592:22;9617:18;;;;;;;;;;;9653:24;;;;9645:71;;;;-1:-1:-1;;;9645:71:25;;2722:2:84;9645:71:25;;;2704:21:84;2761:2;2741:18;;;2734:30;2800:34;2780:18;;;2773:62;2871:4;2851:18;;;2844:32;2893:19;;9645:71:25;2694:224:84;9645:71:25;-1:-1:-1;;;;;9750:18:25;;:9;:18;;;;;;;;;;9771:23;;;9750:44;;9814:12;:22;;9771:23;;9750:9;9814:22;;9771:23;;9814:22;:::i;:::-;;;;-1:-1:-1;;9852:37:25;;;6267:25:84;;;9852:37:25;;9878:1;;-1:-1:-1;;;;;9852:37:25;;;;;;;;6255:2:84;9852:37:25;;;898:147:26;;;:::o;14:196:84:-;82:20;;-1:-1:-1;;;;;131:54:84;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;:::-;356:39;285:116;-1:-1:-1;;;285:116:84:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:254::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:2;;;1149:1;1146;1139:12;1101:2;1172:29;1191:9;1172:29;:::i;:::-;1162:39;1248:2;1233:18;;;;1220:32;;-1:-1:-1;;;1091:167:84:o;1455:656::-;1567:4;1596:2;1625;1614:9;1607:21;1657:6;1651:13;1700:6;1695:2;1684:9;1680:18;1673:34;1725:1;1735:140;1749:6;1746:1;1743:13;1735:140;;;1844:14;;;1840:23;;1834:30;1810:17;;;1829:2;1806:26;1799:66;1764:10;;1735:140;;;1893:6;1890:1;1887:13;1884:2;;;1963:1;1958:2;1949:6;1938:9;1934:22;1930:31;1923:42;1884:2;-1:-1:-1;2027:2:84;2015:15;2032:66;2011:88;1996:104;;;;2102:2;1992:113;;1576:535;-1:-1:-1;;;1576:535:84:o;6492:128::-;6532:3;6563:1;6559:6;6556:1;6553:13;6550:2;;;6569:18;;:::i;:::-;-1:-1:-1;6605:9:84;;6540:80::o;6625:125::-;6665:4;6693:1;6690;6687:8;6684:2;;;6698:18;;:::i;:::-;-1:-1:-1;6735:9:84;;6674:76::o;6755:437::-;6834:1;6830:12;;;;6877;;;6898:2;;6952:4;6944:6;6940:17;6930:27;;6898:2;7005;6997:6;6994:14;6974:18;6971:38;6968:2;;;7042:77;7039:1;7032:88;7143:4;7140:1;7133:15;7171:4;7168:1;7161:15;6968:2;;6810:382;;;:::o;7197:184::-;7249:77;7246:1;7239:88;7346:4;7343:1;7336:15;7370:4;7367:1;7360:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "661400",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24648",
                "balanceOf(address)": "2585",
                "burn(address,uint256)": "51050",
                "decimals()": "2356",
                "decreaseAllowance(address,uint256)": "26938",
                "increaseAllowance(address,uint256)": "27029",
                "masterTransfer(address,address,uint256)": "infinite",
                "mint(address,uint256)": "infinite",
                "name()": "infinite",
                "symbol()": "infinite",
                "totalSupply()": "2349",
                "transfer(address,uint256)": "51208",
                "transferFrom(address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "burn(address,uint256)": "9dc29fac",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "increaseAllowance(address,uint256)": "39509351",
              "masterTransfer(address,address,uint256)": "1c9c7903",
              "mint(address,uint256)": "40c10f19",
              "name()": "06fdde03",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_symbol\",\"type\":\"string\"},{\"internalType\":\"uint8\",\"name\":\"_decimals\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"masterTransfer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"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 adds a set of accounts with the {MinterRole}, which have permission to mint (create) new tokens as they see fit. At construction, the deployer of the contract is the only minter.\",\"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 this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"mint(address,uint256)\":{\"details\":\"See {ERC20-_mint}. Requirements: - the caller must have the {MinterRole}.\"},\"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\":{\"@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol\":\"ERC20Mintable\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/yield-source-interface/contracts/test/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity >=0.6.0;\\n\\n/**\\n * NOTE: Copied from OpenZeppelin\\n *\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin guidelines: functions revert instead\\n * of returning `false` on failure. This behavior is nonetheless conventional\\n * and does not conflict with the expectations of ERC20 applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n    uint8 private _decimals;\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(\\n        string memory name_,\\n        string memory symbol_,\\n        uint8 decimals_\\n    ) {\\n        _name = name_;\\n        _symbol = symbol_;\\n        _decimals = decimals_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5,05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual returns (uint8) {\\n        return _decimals;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual returns (bool) {\\n        _transfer(msg.sender, recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual returns (bool) {\\n        _approve(msg.sender, spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][msg.sender];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, msg.sender, currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue)\\n        public\\n        virtual\\n        returns (bool)\\n    {\\n        uint256 currentAllowance = _allowances[msg.sender][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(msg.sender, spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    uint256[45] private __gap;\\n}\\n\",\"keccak256\":\"0xdd443b9630201b27f09fdacb9ed000005c769e320718534f9147ebb2863570b8\",\"license\":\"MIT\"},\"@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\nimport \\\"./ERC20.sol\\\";\\n\\n/**\\n * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\\n * which have permission to mint (create) new tokens as they see fit.\\n *\\n * At construction, the deployer of the contract is the only minter.\\n */\\ncontract ERC20Mintable is ERC20 {\\n    constructor(\\n        string memory _name,\\n        string memory _symbol,\\n        uint8 _decimals\\n    ) ERC20(_name, _symbol, _decimals) {}\\n\\n    /**\\n     * @dev See {ERC20-_mint}.\\n     *\\n     * Requirements:\\n     *\\n     * - the caller must have the {MinterRole}.\\n     */\\n    function mint(address account, uint256 amount) public returns (bool) {\\n        _mint(account, amount);\\n        return true;\\n    }\\n\\n    function burn(address account, uint256 amount) public returns (bool) {\\n        _burn(account, amount);\\n        return true;\\n    }\\n\\n    function masterTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) public {\\n        _transfer(from, to, amount);\\n    }\\n}\\n\",\"keccak256\":\"0x875d7981f3050f693d95b7660bd8d460757f1a523801e70d3add7fc7fa8ae338\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 4183,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 4189,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 4191,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 4193,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 4195,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 4197,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_decimals",
                "offset": 0,
                "slot": "5",
                "type": "t_uint8"
              },
              {
                "astId": 4733,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "__gap",
                "offset": 0,
                "slot": "6",
                "type": "t_array(t_uint256)45_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_uint256)45_storage": {
                "base": "t_uint256",
                "encoding": "inplace",
                "label": "uint256[45]",
                "numberOfBytes": "1440"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint8": {
                "encoding": "inplace",
                "label": "uint8",
                "numberOfBytes": "1"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol": {
        "MockYieldSource": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "string",
                  "name": "_name",
                  "type": "string"
                },
                {
                  "internalType": "string",
                  "name": "_symbol",
                  "type": "string"
                },
                {
                  "internalType": "uint8",
                  "name": "_decimals",
                  "type": "uint8"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "addr",
                  "type": "address"
                }
              ],
              "name": "balanceOfToken",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "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": [],
              "name": "depositToken",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "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": "ratePerSecond",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "redeemToken",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_ratePerSecond",
                  "type": "uint256"
                }
              ],
              "name": "setRatePerSecond",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "shares",
                  "type": "uint256"
                }
              ],
              "name": "sharesToTokens",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "supplyTokenTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "symbol",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "token",
              "outputs": [
                {
                  "internalType": "contract ERC20Mintable",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokens",
                  "type": "uint256"
                }
              ],
              "name": "tokensToShares",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "yield",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Extension of {ERC20} that adds a set of accounts with the {MinterRole}, which have permission to mint (create) new tokens as they see fit. At construction, the deployer of the contract is the only minter.",
            "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}."
              },
              "balanceOfToken(address)": {
                "returns": {
                  "_0": "The underlying balance of asset tokens."
                }
              },
              "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 this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
              },
              "decreaseAllowance(address,uint256)": {
                "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
              },
              "depositToken()": {
                "returns": {
                  "_0": "The ERC20 asset token address."
                }
              },
              "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."
              },
              "redeemToken(uint256)": {
                "params": {
                  "amount": "The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above."
                },
                "returns": {
                  "_0": "The actual amount of interst bearing tokens that were redeemed."
                }
              },
              "supplyTokenTo(uint256,address)": {
                "params": {
                  "amount": "The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.",
                  "to": "The user whose balance will receive the tokens"
                }
              },
              "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
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_4238": {
                  "entryPoint": null,
                  "id": 4238,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_4853": {
                  "entryPoint": null,
                  "id": 4853,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 470,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory": {
                  "entryPoint": 615,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_encode_string": {
                  "entryPoint": 748,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed": {
                  "entryPoint": 794,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 855,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "extract_byte_array_length": {
                  "entryPoint": 906,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 967,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:2928:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:622:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:84"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:84"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:84",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:84"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:84",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:84"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:84"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "582:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "591:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "594:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "584:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "584:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "584:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "557:6:84"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "565:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "553:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "553:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "570:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "549:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "549:26:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "577:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "546:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "546:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "543:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "633:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "641:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "629:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "629:17:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "652:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "660:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "648:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "648:17:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "667:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "607:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "607:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "607:63:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "679:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "688:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "679:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:686:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "838:579:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "884:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "893:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "896:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "886:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "886:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "886:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "859:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "868:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "855:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "855:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "880:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "851:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "851:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "848:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "909:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "929:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "923:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "923:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "913:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "948:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "966:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "970:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "962:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "962:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "974:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "958:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "958:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "952:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1003:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1012:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1015:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1005:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1005:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1005:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "991:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "999:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "988:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "988:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "985:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1028:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1071:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1082:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1067:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1067:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1091:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1038:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1038:61:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1028:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1108:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1134:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1145:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1130:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1130:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1124:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1124:25:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1112:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1178:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1187:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1190:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1180:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1180:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1180:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1164:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1174:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1161:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1161:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1158:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1203:73:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1246:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1257:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1242:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1242:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1268:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1213:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1213:63:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1203:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1285:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1308:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1319:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1304:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1304:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1298:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1298:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1289:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1371:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1380:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1383:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1373:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1373:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1373:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1345:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1356:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1363:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1352:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1352:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1342:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1342:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1335:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1335:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1332:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1396:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1406:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1396:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "788:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "799:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "811:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "819:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "827:6:84",
                            "type": ""
                          }
                        ],
                        "src": "705:712:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1472:208:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1482:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1502:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1496:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1496:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1486:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1524:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1529:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1517:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1517:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1517:19:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1571:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1578:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1567:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1567:16:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1589:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1594:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1585:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1585:14:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1601:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1545:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1545:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1545:63:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1617:57:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1632:3:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1645:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1653:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "1641:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1641:15:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1662:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "not",
                                              "nodeType": "YulIdentifier",
                                              "src": "1658:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1658:7:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1637:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1637:29:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1628:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1628:39:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1669:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1624:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1624:50:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1617:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_string",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1449:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "1456:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1464:3:84",
                            "type": ""
                          }
                        ],
                        "src": "1422:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1878:268:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1895:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1906:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1888:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1888:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1888:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1918:59:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1950:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1962:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1973:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1958:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1958:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "1932:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1932:45:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1922:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1997:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2008:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1993:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1993:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2017:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2025:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2013:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2013:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1986:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1986:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1986:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2045:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2071:6:84"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2079:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2053:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2053:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2045:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2106:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2117:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2102:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2102:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2126:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2134:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2122:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2122:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2095:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2095:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2095:45:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1831:9:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1842:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1850:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1858:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1869:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1685:461:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2204:205:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2214:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2223:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "2218:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2283:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "2308:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "2313:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "2304:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2304:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2327:3:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2332:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "2323:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "2323:11:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "2317:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2317:18:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2297:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2297:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2297:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "2244:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "2247:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2241:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2241:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "2255:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2257:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "2266:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2269:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2262:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2262:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "2257:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "2237:3:84",
                                "statements": []
                              },
                              "src": "2233:113:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2372:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "2385:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "2390:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "2381:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2381:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2399:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2374:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2374:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2374:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "2361:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "2364:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2358:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2358:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2355:2:84"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "2182:3:84",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "2187:3:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "2192:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2151:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2469:325:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2479:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2493:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "2496:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "2489:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2489:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "2479:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2510:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "2540:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2546:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "2536:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2536:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "2514:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2587:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2589:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "2603:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2611:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "2599:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2599:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "2589:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "2567:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2560:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2560:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2557:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2677:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2698:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2705:3:84",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2710:10:84",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "2701:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2701:20:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2691:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2691:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2691:31:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2742:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2745:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2735:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2735:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2735:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2770:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2773:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2763:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2763:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2763:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "2633:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "2656:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2664:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2653:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2653:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "2630:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2630:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2627:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "2449:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "2458:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2414:380:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2831:95:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2848:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2855:3:84",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2860:10:84",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "2851:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2851:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2841:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2841:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2841:31:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2888:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2891:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2881:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2881:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2881:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2912:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2915:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "2905:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2905:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2905:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "2799:127:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        if gt(add(add(offset, _1), 0x20), end) { revert(0, 0) }\n        copy_memory_to_memory(add(offset, 0x20), add(memPtr, 0x20), _1)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        let value := mload(add(headStart, 64))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value2 := value\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 96)\n        let tail_1 := abi_encode_string(value0, add(headStart, 96))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_string(value1, tail_1)\n        mstore(add(headStart, 64), and(value2, 0xff))\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\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) { mstore(add(dst, length), 0) }\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b506040516200274338038062002743833981016040819052620000349162000267565b60405180604001604052806005815260200164165251531160da1b8152506040518060400160405280600381526020016216531160ea1b815250601282600390805190602001906200008892919062000122565b5081516200009e90600490602085019062000122565b506005805460ff191660ff929092169190911790555050604051839083908390620000c990620001b1565b620000d7939291906200031a565b604051809103906000f080158015620000f4573d6000803e3d6000fd5b50603380546001600160a01b0319166001600160a01b039290921691909117905550504260355550620003dd565b82805462000130906200038a565b90600052602060002090601f0160209004810192826200015457600085556200019f565b82601f106200016f57805160ff19168380011785556200019f565b828001600101855582156200019f579182015b828111156200019f57825182559160200191906001019062000182565b50620001ad929150620001bf565b5090565b610fb6806200178d83390190565b5b80821115620001ad5760008155600101620001c0565b600082601f830112620001e857600080fd5b81516001600160401b0380821115620002055762000205620003c7565b604051601f8301601f19908116603f01168101908282118183101715620002305762000230620003c7565b816040528381528660208588010111156200024a57600080fd5b6200025d84602083016020890162000357565b9695505050505050565b6000806000606084860312156200027d57600080fd5b83516001600160401b03808211156200029557600080fd5b620002a387838801620001d6565b94506020860151915080821115620002ba57600080fd5b50620002c986828701620001d6565b925050604084015160ff81168114620002e157600080fd5b809150509250925092565b600081518084526200030681602086016020860162000357565b601f01601f19169290920160200192915050565b6060815260006200032f6060830186620002ec565b8281036020840152620003438186620002ec565b91505060ff83166040830152949350505050565b60005b83811015620003745781810151838201526020016200035a565b8381111562000384576000848401525b50505050565b600181811c908216806200039f57607f821691505b60208210811415620003c157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6113a080620003ed6000396000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c806387a6eeef116100d8578063b99152d01161008c578063e8fe76d511610066578063e8fe76d514610329578063f3044ac71461033c578063fc0c546a1461034f57600080fd5b8063b99152d0146102b8578063c89039c5146102cb578063dd62ed3e146102f057600080fd5b806395d89b41116100bd57806395d89b411461028a578063a457c2d714610292578063a9059cbb146102a557600080fd5b806387a6eeef1461026e5780638eff1a981461028157600080fd5b806327def4fd1161012f5780633950935111610114578063395093511461021d57806370a0823114610230578063765287ef1461025957600080fd5b806327def4fd146101f5578063313ce5671461020857600080fd5b8063095ea7b311610160578063095ea7b3146101b757806318160ddd146101da57806323b872dd146101e257600080fd5b8063013054c21461017c57806306fdde03146101a2575b600080fd5b61018f61018a3660046111c9565b610362565b6040519081526020015b60405180910390f35b6101aa610428565b604051610199919061121e565b6101ca6101c536600461117d565b6104ba565b6040519015158152602001610199565b60025461018f565b6101ca6101f0366004611141565b6104d0565b61018f6102033660046111c9565b610594565b60055460405160ff9091168152602001610199565b6101ca61022b36600461117d565b61064a565b61018f61023e3660046110f3565b6001600160a01b031660009081526020819052604090205490565b61026c6102673660046111c9565b610686565b005b61026c61027c3660046111fb565b610727565b61018f60345481565b6101aa6107ee565b6101ca6102a036600461117d565b6107fd565b6101ca6102b336600461117d565b6108ae565b61018f6102c63660046110f3565b6108bb565b6033546001600160a01b03165b6040516001600160a01b039091168152602001610199565b61018f6102fe36600461110e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61026c6103373660046111c9565b6108ed565b61018f61034a3660046111c9565b6108fe565b6033546102d8906001600160a01b031681565b600061036c610996565b6000610377836108fe565b90506103833382610b03565b6033546040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018590526001600160a01b039091169063a9059cbb90604401602060405180830381600087803b1580156103e857600080fd5b505af11580156103fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061042091906111a7565b509192915050565b6060600380546104379061131f565b80601f01602080910402602001604051908101604052809291908181526020018280546104639061131f565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050905090565b60006104c7338484610c88565b50600192915050565b60006104dd848484610de0565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561057c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6105898533858403610c88565b506001949350505050565b6000806105a060025490565b9050806105ae575090919050565b6033546040516370a0823160e01b815230600482015282916001600160a01b0316906370a082319060240160206040518083038186803b1580156105f157600080fd5b505afa158015610605573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062991906111e2565b61063390856112cb565b61063d91906112a9565b9392505050565b50919050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104c7918590610681908690611291565b610c88565b6033546040517f40c10f19000000000000000000000000000000000000000000000000000000008152306004820152602481018390526001600160a01b03909116906340c10f1990604401602060405180830381600087803b1580156106eb57600080fd5b505af11580156106ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061072391906111a7565b5050565b61072f610996565b600061073a836108fe565b6033546040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018690529192506001600160a01b0316906323b872dd90606401602060405180830381600087803b1580156107a657600080fd5b505af11580156107ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107de91906111a7565b506107e98282610ff8565b505050565b6060600480546104379061131f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108975760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610573565b6108a43385858403610c88565b5060019392505050565b60006104c7338484610de0565b60006108c5610996565b6108e7610203836001600160a01b031660009081526020819052604090205490565b92915050565b6108f5610996565b42603555603455565b6033546040516370a0823160e01b815230600482015260009182916001600160a01b03909116906370a082319060240160206040518083038186803b15801561094657600080fd5b505afa15801561095a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097e91906111e2565b90508061098c575090919050565b8061062960025490565b6000603554426109a69190611308565b90506000603454826109b891906112cb565b6033546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b158015610a0157600080fd5b505afa158015610a15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3991906111e2565b90506000670de0b6b3a7640000610a5083856112cb565b610a5a91906112a9565b6033546040517f40c10f19000000000000000000000000000000000000000000000000000000008152306004820152602481018390529192506001600160a01b0316906340c10f1990604401602060405180830381600087803b158015610ac057600080fd5b505af1158015610ad4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af891906111a7565b505042603555505050565b6001600160a01b038216610b7f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610573565b6001600160a01b03821660009081526020819052604090205481811015610c0e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610573565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610c3d908490611308565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b038316610d035760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610573565b6001600160a01b038216610d7f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610573565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610e5c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610573565b6001600160a01b038216610ed85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610573565b6001600160a01b03831660009081526020819052604090205481811015610f675760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610573565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610f9e908490611291565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fea91815260200190565b60405180910390a350505050565b6001600160a01b03821661104e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610573565b80600260008282546110609190611291565b90915550506001600160a01b0382166000908152602081905260408120805483929061108d908490611291565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b03811681146110ee57600080fd5b919050565b60006020828403121561110557600080fd5b61063d826110d7565b6000806040838503121561112157600080fd5b61112a836110d7565b9150611138602084016110d7565b90509250929050565b60008060006060848603121561115657600080fd5b61115f846110d7565b925061116d602085016110d7565b9150604084013590509250925092565b6000806040838503121561119057600080fd5b611199836110d7565b946020939093013593505050565b6000602082840312156111b957600080fd5b8151801515811461063d57600080fd5b6000602082840312156111db57600080fd5b5035919050565b6000602082840312156111f457600080fd5b5051919050565b6000806040838503121561120e57600080fd5b82359150611138602084016110d7565b600060208083528351808285015260005b8181101561124b5785810183015185820160400152820161122f565b8181111561125d576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600082198211156112a4576112a4611354565b500190565b6000826112c657634e487b7160e01b600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561130357611303611354565b500290565b60008282101561131a5761131a611354565b500390565b600181811c9082168061133357607f821691505b6020821081141561064457634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fdfea264697066735822122054cd5476cd144d6702cd347a43ec9b3c81802b91320c51067345a015ccd51ff764736f6c6343000806003360806040523480156200001157600080fd5b5060405162000fb638038062000fb68339810160408190526200003491620001e3565b82828282600390805190602001906200004f92919062000086565b5081516200006590600490602085019062000086565b506005805460ff191660ff9290921691909117905550620002bb9350505050565b828054620000949062000268565b90600052602060002090601f016020900481019282620000b8576000855562000103565b82601f10620000d357805160ff191683800117855562000103565b8280016001018555821562000103579182015b8281111562000103578251825591602001919060010190620000e6565b506200011192915062000115565b5090565b5b8082111562000111576000815560010162000116565b600082601f8301126200013e57600080fd5b81516001600160401b03808211156200015b576200015b620002a5565b604051601f8301601f19908116603f01168101908282118183101715620001865762000186620002a5565b81604052838152602092508683858801011115620001a357600080fd5b600091505b83821015620001c75785820183015181830184015290820190620001a8565b83821115620001d95760008385830101525b9695505050505050565b600080600060608486031215620001f957600080fd5b83516001600160401b03808211156200021157600080fd5b6200021f878388016200012c565b945060208601519150808211156200023657600080fd5b5062000245868287016200012c565b925050604084015160ff811681146200025d57600080fd5b809150509250925092565b600181811c908216806200027d57607f821691505b602082108114156200029f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610ceb80620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806340c10f191161008c5780639dc29fac116100665780639dc29fac146101d6578063a457c2d7146101e9578063a9059cbb146101fc578063dd62ed3e1461020f57600080fd5b806340c10f191461019257806370a08231146101a557806395d89b41146101ce57600080fd5b80631c9c7903116100c85780631c9c79031461014257806323b872dd14610157578063313ce5671461016a578063395093511461017f57600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610248565b6040516101049190610b90565b60405180910390f35b61012061011b366004610b66565b6102da565b6040519015158152602001610104565b6002545b604051908152602001610104565b610155610150366004610b2a565b6102f0565b005b610120610165366004610b2a565b610300565b60055460405160ff9091168152602001610104565b61012061018d366004610b66565b6103c4565b6101206101a0366004610b66565b610400565b6101346101b3366004610ad5565b6001600160a01b031660009081526020819052604090205490565b6100f761040c565b6101206101e4366004610b66565b61041b565b6101206101f7366004610b66565b610427565b61012061020a366004610b66565b6104d8565b61013461021d366004610af7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461025790610c32565b80601f016020809104026020016040519081016040528092919081815260200182805461028390610c32565b80156102d05780601f106102a5576101008083540402835291602001916102d0565b820191906000526020600020905b8154815290600101906020018083116102b357829003601f168201915b5050505050905090565b60006102e73384846104e5565b50600192915050565b6102fb83838361063d565b505050565b600061030d84848461063d565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103ac5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103b985338584036104e5565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102e79185906103fb908690610c03565b6104e5565b60006102e78383610855565b60606004805461025790610c32565b60006102e78383610934565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103a3565b6104ce33858584036104e5565b5060019392505050565b60006102e733848461063d565b6001600160a01b0383166105605760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0382166105dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106b95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0382166107355760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b038316600090815260208190526040902054818110156107c45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107fb908490610c03565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161084791815260200190565b60405180910390a350505050565b6001600160a01b0382166108ab5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103a3565b80600260008282546108bd9190610c03565b90915550506001600160a01b038216600090815260208190526040812080548392906108ea908490610c03565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166109b05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b03821660009081526020819052604090205481811015610a3f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a6e908490610c1b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b0381168114610ad057600080fd5b919050565b600060208284031215610ae757600080fd5b610af082610ab9565b9392505050565b60008060408385031215610b0a57600080fd5b610b1383610ab9565b9150610b2160208401610ab9565b90509250929050565b600080600060608486031215610b3f57600080fd5b610b4884610ab9565b9250610b5660208501610ab9565b9150604084013590509250925092565b60008060408385031215610b7957600080fd5b610b8283610ab9565b946020939093013593505050565b600060208083528351808285015260005b81811015610bbd57858101830151858201604001528201610ba1565b81811115610bcf576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610c1657610c16610c86565b500190565b600082821015610c2d57610c2d610c86565b500390565b600181811c90821680610c4657607f821691505b60208210811415610c80577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212200d8946b5eb130740744d8a31937c9971ac977e9fddfc4c96a792b9ef1e4e0a5c64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2743 CODESIZE SUB DUP1 PUSH3 0x2743 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x267 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x1652515311 PUSH1 0xDA SHL DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x165311 PUSH1 0xEA SHL DUP2 MSTORE POP PUSH1 0x12 DUP3 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x88 SWAP3 SWAP2 SWAP1 PUSH3 0x122 JUMP JUMPDEST POP DUP2 MLOAD PUSH3 0x9E SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x122 JUMP JUMPDEST POP PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP POP PUSH1 0x40 MLOAD DUP4 SWAP1 DUP4 SWAP1 DUP4 SWAP1 PUSH3 0xC9 SWAP1 PUSH3 0x1B1 JUMP JUMPDEST PUSH3 0xD7 SWAP4 SWAP3 SWAP2 SWAP1 PUSH3 0x31A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH1 0x0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH3 0xF4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP PUSH1 0x33 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP POP TIMESTAMP PUSH1 0x35 SSTORE POP PUSH3 0x3DD JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x130 SWAP1 PUSH3 0x38A JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x154 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x19F JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x16F JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x19F JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x19F JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x19F JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x182 JUMP JUMPDEST POP PUSH3 0x1AD SWAP3 SWAP2 POP PUSH3 0x1BF JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0xFB6 DUP1 PUSH3 0x178D DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x1AD JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x1C0 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x1E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x205 JUMPI PUSH3 0x205 PUSH3 0x3C7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x230 JUMPI PUSH3 0x230 PUSH3 0x3C7 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE DUP7 PUSH1 0x20 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x24A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x25D DUP5 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP10 ADD PUSH3 0x357 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x27D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x295 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x2A3 DUP8 DUP4 DUP9 ADD PUSH3 0x1D6 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x2BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x2C9 DUP7 DUP3 DUP8 ADD PUSH3 0x1D6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0x2E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH3 0x306 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH3 0x357 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x0 PUSH3 0x32F PUSH1 0x60 DUP4 ADD DUP7 PUSH3 0x2EC JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x343 DUP2 DUP7 PUSH3 0x2EC JUMP JUMPDEST SWAP2 POP POP PUSH1 0xFF DUP4 AND PUSH1 0x40 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x374 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x35A JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x384 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x39F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x3C1 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x13A0 DUP1 PUSH3 0x3ED 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 0x177 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x87A6EEEF GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0xB99152D0 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xE8FE76D5 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xE8FE76D5 EQ PUSH2 0x329 JUMPI DUP1 PUSH4 0xF3044AC7 EQ PUSH2 0x33C JUMPI DUP1 PUSH4 0xFC0C546A EQ PUSH2 0x34F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xB99152D0 EQ PUSH2 0x2B8 JUMPI DUP1 PUSH4 0xC89039C5 EQ PUSH2 0x2CB JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x28A JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x292 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x87A6EEEF EQ PUSH2 0x26E JUMPI DUP1 PUSH4 0x8EFF1A98 EQ PUSH2 0x281 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x27DEF4FD GT PUSH2 0x12F JUMPI DUP1 PUSH4 0x39509351 GT PUSH2 0x114 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x21D JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x230 JUMPI DUP1 PUSH4 0x765287EF EQ PUSH2 0x259 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x27DEF4FD EQ PUSH2 0x1F5 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x208 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x160 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1B7 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1DA JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x13054C2 EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1A2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x18F PUSH2 0x18A CALLDATASIZE PUSH1 0x4 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x362 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AA PUSH2 0x428 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x199 SWAP2 SWAP1 PUSH2 0x121E JUMP JUMPDEST PUSH2 0x1CA PUSH2 0x1C5 CALLDATASIZE PUSH1 0x4 PUSH2 0x117D JUMP JUMPDEST PUSH2 0x4BA JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x199 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x18F JUMP JUMPDEST PUSH2 0x1CA PUSH2 0x1F0 CALLDATASIZE PUSH1 0x4 PUSH2 0x1141 JUMP JUMPDEST PUSH2 0x4D0 JUMP JUMPDEST PUSH2 0x18F PUSH2 0x203 CALLDATASIZE PUSH1 0x4 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x594 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x199 JUMP JUMPDEST PUSH2 0x1CA PUSH2 0x22B CALLDATASIZE PUSH1 0x4 PUSH2 0x117D JUMP JUMPDEST PUSH2 0x64A JUMP JUMPDEST PUSH2 0x18F PUSH2 0x23E CALLDATASIZE PUSH1 0x4 PUSH2 0x10F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x26C PUSH2 0x267 CALLDATASIZE PUSH1 0x4 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x686 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x26C PUSH2 0x27C CALLDATASIZE PUSH1 0x4 PUSH2 0x11FB JUMP JUMPDEST PUSH2 0x727 JUMP JUMPDEST PUSH2 0x18F PUSH1 0x34 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x1AA PUSH2 0x7EE JUMP JUMPDEST PUSH2 0x1CA PUSH2 0x2A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x117D JUMP JUMPDEST PUSH2 0x7FD JUMP JUMPDEST PUSH2 0x1CA PUSH2 0x2B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x117D JUMP JUMPDEST PUSH2 0x8AE JUMP JUMPDEST PUSH2 0x18F PUSH2 0x2C6 CALLDATASIZE PUSH1 0x4 PUSH2 0x10F3 JUMP JUMPDEST PUSH2 0x8BB JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x199 JUMP JUMPDEST PUSH2 0x18F PUSH2 0x2FE CALLDATASIZE PUSH1 0x4 PUSH2 0x110E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x26C PUSH2 0x337 CALLDATASIZE PUSH1 0x4 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x8ED JUMP JUMPDEST PUSH2 0x18F PUSH2 0x34A CALLDATASIZE PUSH1 0x4 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x8FE JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH2 0x2D8 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36C PUSH2 0x996 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x377 DUP4 PUSH2 0x8FE JUMP JUMPDEST SWAP1 POP PUSH2 0x383 CALLER DUP3 PUSH2 0xB03 JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x3E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3FC 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 0x420 SWAP2 SWAP1 PUSH2 0x11A7 JUMP JUMPDEST POP SWAP2 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x437 SWAP1 PUSH2 0x131F JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x463 SWAP1 PUSH2 0x131F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4B0 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x485 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x4B0 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 0x493 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4C7 CALLER DUP5 DUP5 PUSH2 0xC88 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4DD DUP5 DUP5 DUP5 PUSH2 0xDE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x57C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x589 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0xC88 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x5A0 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x5AE JUMPI POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x605 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 0x629 SWAP2 SWAP1 PUSH2 0x11E2 JUMP JUMPDEST PUSH2 0x633 SWAP1 DUP6 PUSH2 0x12CB JUMP JUMPDEST PUSH2 0x63D SWAP2 SWAP1 PUSH2 0x12A9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x4C7 SWAP2 DUP6 SWAP1 PUSH2 0x681 SWAP1 DUP7 SWAP1 PUSH2 0x1291 JUMP JUMPDEST PUSH2 0xC88 JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0x40C10F1900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x40C10F19 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x6EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x6FF 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 0x723 SWAP2 SWAP1 PUSH2 0x11A7 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x72F PUSH2 0x996 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x73A DUP4 PUSH2 0x8FE JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP7 SWAP1 MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x7A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x7BA 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 0x7DE SWAP2 SWAP1 PUSH2 0x11A7 JUMP JUMPDEST POP PUSH2 0x7E9 DUP3 DUP3 PUSH2 0xFF8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x437 SWAP1 PUSH2 0x131F JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x897 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH2 0x8A4 CALLER DUP6 DUP6 DUP5 SUB PUSH2 0xC88 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4C7 CALLER DUP5 DUP5 PUSH2 0xDE0 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C5 PUSH2 0x996 JUMP JUMPDEST PUSH2 0x8E7 PUSH2 0x203 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x8F5 PUSH2 0x996 JUMP JUMPDEST TIMESTAMP PUSH1 0x35 SSTORE PUSH1 0x34 SSTORE JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x946 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x95A 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 0x97E SWAP2 SWAP1 PUSH2 0x11E2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x98C JUMPI POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 PUSH2 0x629 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x35 SLOAD TIMESTAMP PUSH2 0x9A6 SWAP2 SWAP1 PUSH2 0x1308 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x34 SLOAD DUP3 PUSH2 0x9B8 SWAP2 SWAP1 PUSH2 0x12CB JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xA01 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA15 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 0xA39 SWAP2 SWAP1 PUSH2 0x11E2 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 PUSH2 0xA50 DUP4 DUP6 PUSH2 0x12CB JUMP JUMPDEST PUSH2 0xA5A SWAP2 SWAP1 PUSH2 0x12A9 JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0x40C10F1900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x40C10F19 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xAC0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xAD4 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 0xAF8 SWAP2 SWAP1 PUSH2 0x11A7 JUMP JUMPDEST POP POP TIMESTAMP PUSH1 0x35 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xB7F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xC0E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xC3D SWAP1 DUP5 SWAP1 PUSH2 0x1308 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xD03 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xD7F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xE5C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xED8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xF67 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xF9E SWAP1 DUP5 SWAP1 PUSH2 0x1291 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xFEA SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x104E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x573 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1060 SWAP2 SWAP1 PUSH2 0x1291 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x108D SWAP1 DUP5 SWAP1 PUSH2 0x1291 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x10EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1105 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x63D DUP3 PUSH2 0x10D7 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1121 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x112A DUP4 PUSH2 0x10D7 JUMP JUMPDEST SWAP2 POP PUSH2 0x1138 PUSH1 0x20 DUP5 ADD PUSH2 0x10D7 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1156 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x115F DUP5 PUSH2 0x10D7 JUMP JUMPDEST SWAP3 POP PUSH2 0x116D PUSH1 0x20 DUP6 ADD PUSH2 0x10D7 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1190 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1199 DUP4 PUSH2 0x10D7 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x63D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x120E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x1138 PUSH1 0x20 DUP5 ADD PUSH2 0x10D7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x124B JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x122F JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x125D JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x12A4 JUMPI PUSH2 0x12A4 PUSH2 0x1354 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x12C6 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1303 JUMPI PUSH2 0x1303 PUSH2 0x1354 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x131A JUMPI PUSH2 0x131A PUSH2 0x1354 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1333 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x644 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SLOAD 0xCD SLOAD PUSH23 0xCD144D6702CD347A43EC9B3C81802B91320C51067345A0 ISZERO 0xCC 0xD5 0x1F 0xF7 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xFB6 CODESIZE SUB DUP1 PUSH3 0xFB6 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1E3 JUMP JUMPDEST DUP3 DUP3 DUP3 DUP3 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x4F SWAP3 SWAP2 SWAP1 PUSH3 0x86 JUMP JUMPDEST POP DUP2 MLOAD PUSH3 0x65 SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x86 JUMP JUMPDEST POP PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP PUSH3 0x2BB SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x94 SWAP1 PUSH3 0x268 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xB8 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x103 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xD3 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x103 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x103 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x103 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xE6 JUMP JUMPDEST POP PUSH3 0x111 SWAP3 SWAP2 POP PUSH3 0x115 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x111 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x116 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x13E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x15B JUMPI PUSH3 0x15B PUSH3 0x2A5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x186 JUMPI PUSH3 0x186 PUSH3 0x2A5 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x1A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1C7 JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x1A8 JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x1D9 JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x1F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x211 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x21F DUP8 DUP4 DUP9 ADD PUSH3 0x12C JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x236 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x245 DUP7 DUP3 DUP8 ADD PUSH3 0x12C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0x25D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x27D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x29F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0xCEB DUP1 PUSH3 0x2CB 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 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0x9DC29FAC GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x20F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x192 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1C9C7903 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x1C9C7903 EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x157 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x16A JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x17F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x130 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x104 SWAP2 SWAP1 PUSH2 0xB90 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x120 PUSH2 0x11B CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x2DA JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x155 PUSH2 0x150 CALLDATASIZE PUSH1 0x4 PUSH2 0xB2A JUMP JUMPDEST PUSH2 0x2F0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH2 0x165 CALLDATASIZE PUSH1 0x4 PUSH2 0xB2A JUMP JUMPDEST PUSH2 0x300 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x18D CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x3C4 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1A0 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x400 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x1B3 CALLDATASIZE PUSH1 0x4 PUSH2 0xAD5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x40C JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x41B JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x427 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x4D8 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0xAF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x257 SWAP1 PUSH2 0xC32 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x283 SWAP1 PUSH2 0xC32 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2D0 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2A5 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2D0 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 0x2B3 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 CALLER DUP5 DUP5 PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2FB DUP4 DUP4 DUP4 PUSH2 0x63D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30D DUP5 DUP5 DUP5 PUSH2 0x63D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3B9 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x2E7 SWAP2 DUP6 SWAP1 PUSH2 0x3FB SWAP1 DUP7 SWAP1 PUSH2 0xC03 JUMP JUMPDEST PUSH2 0x4E5 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 DUP4 DUP4 PUSH2 0x855 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x257 SWAP1 PUSH2 0xC32 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 DUP4 DUP4 PUSH2 0x934 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x4C1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH2 0x4CE CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 CALLER DUP5 DUP5 PUSH2 0x63D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x560 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x6B9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x735 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x7C4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x7FB SWAP1 DUP5 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x847 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x8AB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A3 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x8BD SWAP2 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x8EA SWAP1 DUP5 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xA3F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xA6E SWAP1 DUP5 SWAP1 PUSH2 0xC1B JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xAD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xAF0 DUP3 PUSH2 0xAB9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB0A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB13 DUP4 PUSH2 0xAB9 JUMP JUMPDEST SWAP2 POP PUSH2 0xB21 PUSH1 0x20 DUP5 ADD PUSH2 0xAB9 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB3F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB48 DUP5 PUSH2 0xAB9 JUMP JUMPDEST SWAP3 POP PUSH2 0xB56 PUSH1 0x20 DUP6 ADD PUSH2 0xAB9 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB82 DUP4 PUSH2 0xAB9 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBBD JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0xBA1 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0xBCF JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xC16 JUMPI PUSH2 0xC16 PUSH2 0xC86 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0xC2D JUMPI PUSH2 0xC2D PUSH2 0xC86 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xC46 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xC80 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD DUP10 CHAINID 0xB5 0xEB SGT SMOD BLOCKHASH PUSH21 0x4D8A31937C9971AC977E9FDDFC4C96A792B9EF1E4E EXP 0x5C PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "354:3196:27:-:0;;;507:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2306:191:25;;;;;;;;;;;;;-1:-1:-1;;;2306:191:25;;;;;;;;;;;;;;;;-1:-1:-1;;;2306:191:25;;;632:2:27;2427:5:25;2419;:13;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2442:17:25;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;2469:9:25;:21;;-1:-1:-1;;2469:21:25;;;;;;;;;;;;-1:-1:-1;;654:44:27::1;::::0;672:5;;679:7;;688:9;;654:44:::1;::::0;::::1;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;646:5:27::1;:52:::0;;-1:-1:-1;;;;;;646:52:27::1;-1:-1:-1::0;;;;;646:52:27;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;729:15:27::1;708:18;:36:::0;-1:-1:-1;354:3196:27;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;354:3196:27;;;-1:-1:-1;354:3196:27;:::i;:::-;;;:::o;:::-;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:686:84;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;;;;;224:10:84;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:84;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;577:3;570:4;565:2;557:6;553:15;549:26;546:35;543:2;;;594:1;591;584:12;543:2;607:63;667:2;660:4;652:6;648:17;641:4;633:6;629:17;607:63;:::i;:::-;688:6;78:622;-1:-1:-1;;;;;;78:622:84:o;705:712::-;811:6;819;827;880:2;868:9;859:7;855:23;851:32;848:2;;;896:1;893;886:12;848:2;923:16;;-1:-1:-1;;;;;988:14:84;;;985:2;;;1015:1;1012;1005:12;985:2;1038:61;1091:7;1082:6;1071:9;1067:22;1038:61;:::i;:::-;1028:71;;1145:2;1134:9;1130:18;1124:25;1108:41;;1174:2;1164:8;1161:16;1158:2;;;1190:1;1187;1180:12;1158:2;;1213:63;1268:7;1257:8;1246:9;1242:24;1213:63;:::i;:::-;1203:73;;;1319:2;1308:9;1304:18;1298:25;1363:4;1356:5;1352:16;1345:5;1342:27;1332:2;;1383:1;1380;1373:12;1332:2;1406:5;1396:15;;;838:579;;;;;:::o;1422:258::-;1464:3;1502:5;1496:12;1529:6;1524:3;1517:19;1545:63;1601:6;1594:4;1589:3;1585:14;1578:4;1571:5;1567:16;1545:63;:::i;:::-;1662:2;1641:15;-1:-1:-1;;1637:29:84;1628:39;;;;1669:4;1624:50;;1472:208;-1:-1:-1;;1472:208:84:o;1685:461::-;1906:2;1895:9;1888:21;1869:4;1932:45;1973:2;1962:9;1958:18;1950:6;1932:45;:::i;:::-;2025:9;2017:6;2013:22;2008:2;1997:9;1993:18;1986:50;2053:33;2079:6;2071;2053:33;:::i;:::-;2045:41;;;2134:4;2126:6;2122:17;2117:2;2106:9;2102:18;2095:45;1878:268;;;;;;:::o;2151:258::-;2223:1;2233:113;2247:6;2244:1;2241:13;2233:113;;;2323:11;;;2317:18;2304:11;;;2297:39;2269:2;2262:10;2233:113;;;2364:6;2361:1;2358:13;2355:2;;;2399:1;2390:6;2385:3;2381:16;2374:27;2355:2;;2204:205;;;:::o;2414:380::-;2493:1;2489:12;;;;2536;;;2557:2;;2611:4;2603:6;2599:17;2589:27;;2557:2;2664;2656:6;2653:14;2633:18;2630:38;2627:2;;;2710:10;2705:3;2701:20;2698:1;2691:31;2745:4;2742:1;2735:15;2773:4;2770:1;2763:15;2627:2;;2469:325;;;:::o;2799:127::-;2860:10;2855:3;2851:20;2848:1;2841:31;2891:4;2888:1;2881:15;2915:4;2912:1;2905:15;2831:95;354:3196:27;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_afterTokenTransfer_4729": {
                  "entryPoint": null,
                  "id": 4729,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_4707": {
                  "entryPoint": 3208,
                  "id": 4707,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_4718": {
                  "entryPoint": null,
                  "id": 4718,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_burn_4662": {
                  "entryPoint": 2819,
                  "id": 4662,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_mintRate_4938": {
                  "entryPoint": 2454,
                  "id": 4938,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_mint_4590": {
                  "entryPoint": 4088,
                  "id": 4590,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_transfer_4534": {
                  "entryPoint": 3552,
                  "id": 4534,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@allowance_4324": {
                  "entryPoint": null,
                  "id": 4324,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_4344": {
                  "entryPoint": 1210,
                  "id": 4344,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOfToken_4970": {
                  "entryPoint": 2235,
                  "id": 4970,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@balanceOf_4287": {
                  "entryPoint": null,
                  "id": 4287,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_4265": {
                  "entryPoint": null,
                  "id": 4265,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_4457": {
                  "entryPoint": 2045,
                  "id": 4457,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@depositToken_4951": {
                  "entryPoint": null,
                  "id": 4951,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@increaseAllowance_4418": {
                  "entryPoint": 1610,
                  "id": 4418,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@name_4247": {
                  "entryPoint": 1064,
                  "id": 4247,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@ratePerSecond_4821": {
                  "entryPoint": null,
                  "id": 4821,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@redeemToken_5041": {
                  "entryPoint": 866,
                  "id": 5041,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setRatePerSecond_4871": {
                  "entryPoint": 2285,
                  "id": 4871,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@sharesToTokens_5109": {
                  "entryPoint": 1428,
                  "id": 5109,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@supplyTokenTo_5006": {
                  "entryPoint": 1831,
                  "id": 5006,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@symbol_4256": {
                  "entryPoint": 2030,
                  "id": 4256,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@token_4819": {
                  "entryPoint": null,
                  "id": 4819,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@tokensToShares_5075": {
                  "entryPoint": 2302,
                  "id": 5075,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@totalSupply_4274": {
                  "entryPoint": null,
                  "id": 4274,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_4391": {
                  "entryPoint": 1232,
                  "id": 4391,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_4307": {
                  "entryPoint": 2222,
                  "id": 4307,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@yield_4887": {
                  "entryPoint": 1670,
                  "id": 4887,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_address": {
                  "entryPoint": 4311,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 4339,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 4366,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 4417,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 4477,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 4519,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 4553,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 4578,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256t_address": {
                  "entryPoint": 4603,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ERC20Mintable_$4807__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 4638,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 4753,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 4777,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint256": {
                  "entryPoint": 4811,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 4872,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 4895,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 4948,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:9999:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:84",
                            "type": ""
                          }
                        ],
                        "src": "215:186:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:84",
                            "type": ""
                          }
                        ],
                        "src": "406:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:84",
                            "type": ""
                          }
                        ],
                        "src": "671:328:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1091:167:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1137:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1146:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1149:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1139:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1139:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1139:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1112:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1121:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1108:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1108:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1133:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1104:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1104:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1101:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1162:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1191:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1162:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1210:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1237:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1248:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1220:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1220:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1210:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1049:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1060:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1072:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1080:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1004:254:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1341:199:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1387:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1396:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1399:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1389:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1389:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1389:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1362:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1371:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1358:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1358:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1383:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1354:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1354:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1351:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1412:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1431:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1425:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1425:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1416:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1494:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1503:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1506:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1496:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1496:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1496:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1463:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1484:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "1477:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1477:13:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1470:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1470:21:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1460:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1460:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1453:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1453:40:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1450:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1519:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1529:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1519:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1307:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1318:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1330:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1263:277:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1615:110:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1661:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1670:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1673:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1663:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1663:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1663:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1636:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1645:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1632:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1632:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1657:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1628:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1628:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1625:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1686:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1709:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1696:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1696:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1686:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1581:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1592:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1604:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1545:180:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1811:103:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1857:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1866:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1869:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1859:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1859:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1859:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1832:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1841:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1828:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1828:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1853:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1824:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1824:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1821:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1882:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1898:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1892:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1892:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1882:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1777:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1788:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1800:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1730:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2006:167:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2052:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2061:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2064:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2054:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2054:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2054:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2027:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2036:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2023:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2023:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2048:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2019:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2019:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2016:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2077:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2100:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2087:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2087:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2077:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2119:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2152:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2163:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2148:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2148:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2129:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2129:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2119:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1964:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1975:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1987:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1995:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1919:254:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2279:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2289:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2301:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2312:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2297:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2297:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2289:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2331:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2346:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2354:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2342:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2342:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2324:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2324:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2324:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2248:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2259:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2270:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2178:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2566:241:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2576:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2588:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2599:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2584:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2584:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2576:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2611:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2621:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2615:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2679:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2694:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2702:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2690:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2690:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2672:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2672:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2672:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2726:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2737:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2722:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2722:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2746:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2754:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2742:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2742:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2715:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2715:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2715:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2778:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2789:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2774:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2774:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2794:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2767:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2767:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2767:34:84"
                            }
                          ]
                        },
                        "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": "2519:9:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2530:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2538:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2546:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2557:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2409:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2941:168:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2951:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2963:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2974:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2959:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2959:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2951:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2993:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3008:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3016:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3004:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3004:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2986:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2986:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2986:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3080:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3091:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3076:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3076:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3096:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3069:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3069:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3069:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2902:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2913:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2921:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2932:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2812:297:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3209:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3219:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3231:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3242:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3227:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3227:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3219:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3261:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "3286:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "3279:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3279:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "3272:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3272:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3254:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3254:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3254:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3178:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3189:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3200:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3114:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3429:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3439:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3451:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3462:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3447:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3447:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3439:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3481:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3496:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3504:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3492:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3492:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3474:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3474:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3474:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ERC20Mintable_$4807__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3398:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3409:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3420:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3306:248:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3680:535:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3690:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3700:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3694:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3718:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3729:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3711:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3711:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3711:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3741:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3761:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3755:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3755:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3745:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3788:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3799:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3784:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3784:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3804:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3777:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3777:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3777:34:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3820:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3829:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3824:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3889:90:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3918:9:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3929:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "3914:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "3914:17:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "3933:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3910:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3910:26:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "3952:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "3960:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "3948:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "3948:14:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3964:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "3944:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "3944:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3938:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3938:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3903:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3903:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3903:66:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3850:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3853:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3847:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3847:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3861:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3863:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3872:1:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3875:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3868:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3868:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3863:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3843:3:84",
                                "statements": []
                              },
                              "src": "3839:140:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4013:66:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4042:9:84"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4053:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4038:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4038:22:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4062:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4034:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4034:31:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4067:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4027:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4027:42:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4027:42:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3994:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3997:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3991:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3991:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3988:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4088:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4104:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "4123:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4131:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4119:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4119:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4136:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4115:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4115:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4100:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4100:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4206:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4096:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4096:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4088:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3649:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3660:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3671:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3559:656:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4394:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4411:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4422:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4404:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4404:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4404:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4445:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4456:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4441:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4441:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4461:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4434:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4434:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4434:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4484:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4495:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4480:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4480:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4500:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4473:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4473:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4473:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4555:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4566:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4551:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4551:18:84"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4571:5:84",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4544:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4544:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4544:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4586:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4598:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4609:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4594:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4594:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4586:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4371:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4385:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4220:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4798:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4815:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4826:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4808:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4808:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4808:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4849:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4860:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4845:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4845:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4865:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4838:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4838:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4838:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4888:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4899:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4884:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4884:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4904:34:84",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4877:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4877:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4877:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4959:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4970:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4955:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4955:18:84"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4975:4:84",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4948:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4948:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4948:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4989:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5001:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5012:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4997:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4997:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4989:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4775:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4789:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4624:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5201:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5218:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5229:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5211:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5211:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5211:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5252:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5263:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5248:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5248:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5268:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5241:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5241:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5241:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5291:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5302:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5287:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5287:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5307:34:84",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5280:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5280:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5280:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5362:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5373:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5358:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5358:18:84"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5378:4:84",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5351:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5351:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5351:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5392:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5404:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5415:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5400:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5400:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5392:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5178:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5192:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5027:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5604:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5621:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5632:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5614:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5614:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5614:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5655:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5666:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5651:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5651:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5671:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5644:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5644:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5644:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5694:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5705:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5690:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5690:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5710:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5683:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5683:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5683:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5765:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5776:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5761:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5761:18:84"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5781:8:84",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5754:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5754:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5754:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5799:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5811:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5822:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5807:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5807:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5799:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5581:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5595:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5430:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6011:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6028:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6039:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6021:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6021:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6021:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6062:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6073:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6058:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6058:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6078:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6051:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6051:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6051:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6101:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6112:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6097:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6097:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6117:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6090:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6090:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6090:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6172:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6183:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6168:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6168:18:84"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6188:10:84",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6161:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6161:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6161:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6208:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6220:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6231:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6216:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6216:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6208:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5988:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6002:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5837:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6420:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6437:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6448:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6430:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6430:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6430:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6471:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6482:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6467:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6467:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6487:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6460:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6460:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6460:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6510:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6521:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6506:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6506:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6526:34:84",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6499:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6499:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6499:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6581:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6592:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6577:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6577:18:84"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6597:3:84",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6570:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6570:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6570:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6610:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6622:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6633:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6618:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6618:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6610:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6397:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6411:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6246:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6822:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6839:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6850:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6832:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6832:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6832:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6873:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6884:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6869:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6869:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6889:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6862:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6862:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6862:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6912:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6923:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6908:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6908:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6928:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6901:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6901:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6901:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6983:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6994:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6979:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6979:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6999:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6972:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6972:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6972:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7016:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7028:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7039:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7024:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7024:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7016:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6799:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6813:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6648:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7228:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7245:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7256:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7238:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7238:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7238:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7279:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7290:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7275:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7275:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7295:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7268:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7268:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7268:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7318:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7329:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7314:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7314:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7334:34:84",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7307:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7307:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7307:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7389:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7400:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7385:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7385:18:84"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7405:6:84",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7378:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7378:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7378:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7421:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7433:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7444:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7429:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7429:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7421:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7205:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7219:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7054:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7633:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7650:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7661:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7643:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7643:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7643:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7684:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7695:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7680:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7680:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7700:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7673:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7673:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7673:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7723:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7734:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7719:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7719:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7739:34:84",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7712:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7712:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7712:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7794:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7805:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7790:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7790:18:84"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7810:7:84",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7783:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7783:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7783:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7827:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7839:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7850:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7835:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7835:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7827:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7610:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7624:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7459:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8039:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8056:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8067:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8049:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8049:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8049:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8090:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8101:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8086:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8086:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8106:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8079:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8079:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8079:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8129:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8140:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8125:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8125:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8145:33:84",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8118:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8118:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8118:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8188:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8200:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8211:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8196:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8196:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8188:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8016:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8030:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7865:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8326:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8336:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8348:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8359:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8344:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8344:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8336:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8378:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8389:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8371:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8371:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8371:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8295:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8306:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8317:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8225:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8504:87:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8514:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8526:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8537:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8522:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8522:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8514:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8556:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8571:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8579:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8567:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8567:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8549:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8549:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8549:36:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8473:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8484:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8495:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8407:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8644:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8671:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8673:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8673:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8673:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8660:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "8667:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "8663:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8663:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8657:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8657:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8654:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8702:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8713:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8716:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8709:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8709:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8702:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8627:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8630:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8636:3:84",
                            "type": ""
                          }
                        ],
                        "src": "8596:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8775:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8806:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8827:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8830:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8820:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8820:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8820:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8928:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8931:4:84",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8921:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8921:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8921:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8956:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8959:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "8949:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8949:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8949:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8795:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8788:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8788:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8785:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8983:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8992:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8995:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "8988:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8988:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "8983:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8760:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8763:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "8769:1:84",
                            "type": ""
                          }
                        ],
                        "src": "8729:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9060:176:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9179:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9181:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9181:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9181:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "9091:1:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "9084:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9084:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "9077:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9077:17:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "9099:1:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9106:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          },
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "9174:1:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "9102:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9102:74:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9096:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9096:81:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9073:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9073:105:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9070:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9210:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9225:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9228:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "9221:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9221:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "9210:7:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9039:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9042:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "9048:7:84",
                            "type": ""
                          }
                        ],
                        "src": "9008:228:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9290:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9312:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9314:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9314:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9314:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9306:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9309:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9303:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9303:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9300:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9343:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9355:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9358:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "9351:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9351:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "9343:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9272:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9275:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "9281:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9241:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9426:382:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9436:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9450:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "9453:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "9446:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9446:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "9436:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9467:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "9497:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9503:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9493:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9493:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "9471:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9544:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9546:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "9560:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9568:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "9556:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9556:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "9546:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "9524:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "9517:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9517:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9514:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9634:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9655:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9658:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9648:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9648:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9648:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9756:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9759:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9749:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9749:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9749:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9784:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9787:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9777:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9777:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9777:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "9590:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "9613:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9621:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9610:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9610:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "9587:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9587:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9584:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "9406:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "9415:6:84",
                            "type": ""
                          }
                        ],
                        "src": "9371:437:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9845:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9862:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9865:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9855:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9855:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9855:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9959:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9962:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9952:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9952:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9952:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9983:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9986:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9976:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9976:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9976:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9813:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_decode_tuple_t_uint256t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := calldataload(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\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    {\n        tail := add(headStart, 96)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_ERC20Mintable_$4807__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: burn amount exceeds balan\")\n        mstore(add(headStart, 96), \"ce\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC20: burn from the zero addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n        product := mul(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101775760003560e01c806387a6eeef116100d8578063b99152d01161008c578063e8fe76d511610066578063e8fe76d514610329578063f3044ac71461033c578063fc0c546a1461034f57600080fd5b8063b99152d0146102b8578063c89039c5146102cb578063dd62ed3e146102f057600080fd5b806395d89b41116100bd57806395d89b411461028a578063a457c2d714610292578063a9059cbb146102a557600080fd5b806387a6eeef1461026e5780638eff1a981461028157600080fd5b806327def4fd1161012f5780633950935111610114578063395093511461021d57806370a0823114610230578063765287ef1461025957600080fd5b806327def4fd146101f5578063313ce5671461020857600080fd5b8063095ea7b311610160578063095ea7b3146101b757806318160ddd146101da57806323b872dd146101e257600080fd5b8063013054c21461017c57806306fdde03146101a2575b600080fd5b61018f61018a3660046111c9565b610362565b6040519081526020015b60405180910390f35b6101aa610428565b604051610199919061121e565b6101ca6101c536600461117d565b6104ba565b6040519015158152602001610199565b60025461018f565b6101ca6101f0366004611141565b6104d0565b61018f6102033660046111c9565b610594565b60055460405160ff9091168152602001610199565b6101ca61022b36600461117d565b61064a565b61018f61023e3660046110f3565b6001600160a01b031660009081526020819052604090205490565b61026c6102673660046111c9565b610686565b005b61026c61027c3660046111fb565b610727565b61018f60345481565b6101aa6107ee565b6101ca6102a036600461117d565b6107fd565b6101ca6102b336600461117d565b6108ae565b61018f6102c63660046110f3565b6108bb565b6033546001600160a01b03165b6040516001600160a01b039091168152602001610199565b61018f6102fe36600461110e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61026c6103373660046111c9565b6108ed565b61018f61034a3660046111c9565b6108fe565b6033546102d8906001600160a01b031681565b600061036c610996565b6000610377836108fe565b90506103833382610b03565b6033546040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018590526001600160a01b039091169063a9059cbb90604401602060405180830381600087803b1580156103e857600080fd5b505af11580156103fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061042091906111a7565b509192915050565b6060600380546104379061131f565b80601f01602080910402602001604051908101604052809291908181526020018280546104639061131f565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050905090565b60006104c7338484610c88565b50600192915050565b60006104dd848484610de0565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561057c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6105898533858403610c88565b506001949350505050565b6000806105a060025490565b9050806105ae575090919050565b6033546040516370a0823160e01b815230600482015282916001600160a01b0316906370a082319060240160206040518083038186803b1580156105f157600080fd5b505afa158015610605573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062991906111e2565b61063390856112cb565b61063d91906112a9565b9392505050565b50919050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104c7918590610681908690611291565b610c88565b6033546040517f40c10f19000000000000000000000000000000000000000000000000000000008152306004820152602481018390526001600160a01b03909116906340c10f1990604401602060405180830381600087803b1580156106eb57600080fd5b505af11580156106ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061072391906111a7565b5050565b61072f610996565b600061073a836108fe565b6033546040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018690529192506001600160a01b0316906323b872dd90606401602060405180830381600087803b1580156107a657600080fd5b505af11580156107ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107de91906111a7565b506107e98282610ff8565b505050565b6060600480546104379061131f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108975760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610573565b6108a43385858403610c88565b5060019392505050565b60006104c7338484610de0565b60006108c5610996565b6108e7610203836001600160a01b031660009081526020819052604090205490565b92915050565b6108f5610996565b42603555603455565b6033546040516370a0823160e01b815230600482015260009182916001600160a01b03909116906370a082319060240160206040518083038186803b15801561094657600080fd5b505afa15801561095a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097e91906111e2565b90508061098c575090919050565b8061062960025490565b6000603554426109a69190611308565b90506000603454826109b891906112cb565b6033546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b158015610a0157600080fd5b505afa158015610a15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3991906111e2565b90506000670de0b6b3a7640000610a5083856112cb565b610a5a91906112a9565b6033546040517f40c10f19000000000000000000000000000000000000000000000000000000008152306004820152602481018390529192506001600160a01b0316906340c10f1990604401602060405180830381600087803b158015610ac057600080fd5b505af1158015610ad4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af891906111a7565b505042603555505050565b6001600160a01b038216610b7f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610573565b6001600160a01b03821660009081526020819052604090205481811015610c0e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610573565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610c3d908490611308565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b038316610d035760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610573565b6001600160a01b038216610d7f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610573565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610e5c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610573565b6001600160a01b038216610ed85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610573565b6001600160a01b03831660009081526020819052604090205481811015610f675760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610573565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610f9e908490611291565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fea91815260200190565b60405180910390a350505050565b6001600160a01b03821661104e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610573565b80600260008282546110609190611291565b90915550506001600160a01b0382166000908152602081905260408120805483929061108d908490611291565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b03811681146110ee57600080fd5b919050565b60006020828403121561110557600080fd5b61063d826110d7565b6000806040838503121561112157600080fd5b61112a836110d7565b9150611138602084016110d7565b90509250929050565b60008060006060848603121561115657600080fd5b61115f846110d7565b925061116d602085016110d7565b9150604084013590509250925092565b6000806040838503121561119057600080fd5b611199836110d7565b946020939093013593505050565b6000602082840312156111b957600080fd5b8151801515811461063d57600080fd5b6000602082840312156111db57600080fd5b5035919050565b6000602082840312156111f457600080fd5b5051919050565b6000806040838503121561120e57600080fd5b82359150611138602084016110d7565b600060208083528351808285015260005b8181101561124b5785810183015185820160400152820161122f565b8181111561125d576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600082198211156112a4576112a4611354565b500190565b6000826112c657634e487b7160e01b600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561130357611303611354565b500290565b60008282101561131a5761131a611354565b500390565b600181811c9082168061133357607f821691505b6020821081141561064457634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fdfea264697066735822122054cd5476cd144d6702cd347a43ec9b3c81802b91320c51067345a015ccd51ff764736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x177 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x87A6EEEF GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0xB99152D0 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xE8FE76D5 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xE8FE76D5 EQ PUSH2 0x329 JUMPI DUP1 PUSH4 0xF3044AC7 EQ PUSH2 0x33C JUMPI DUP1 PUSH4 0xFC0C546A EQ PUSH2 0x34F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xB99152D0 EQ PUSH2 0x2B8 JUMPI DUP1 PUSH4 0xC89039C5 EQ PUSH2 0x2CB JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x28A JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x292 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x87A6EEEF EQ PUSH2 0x26E JUMPI DUP1 PUSH4 0x8EFF1A98 EQ PUSH2 0x281 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x27DEF4FD GT PUSH2 0x12F JUMPI DUP1 PUSH4 0x39509351 GT PUSH2 0x114 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x21D JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x230 JUMPI DUP1 PUSH4 0x765287EF EQ PUSH2 0x259 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x27DEF4FD EQ PUSH2 0x1F5 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x208 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x160 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1B7 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1DA JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x13054C2 EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1A2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x18F PUSH2 0x18A CALLDATASIZE PUSH1 0x4 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x362 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AA PUSH2 0x428 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x199 SWAP2 SWAP1 PUSH2 0x121E JUMP JUMPDEST PUSH2 0x1CA PUSH2 0x1C5 CALLDATASIZE PUSH1 0x4 PUSH2 0x117D JUMP JUMPDEST PUSH2 0x4BA JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x199 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x18F JUMP JUMPDEST PUSH2 0x1CA PUSH2 0x1F0 CALLDATASIZE PUSH1 0x4 PUSH2 0x1141 JUMP JUMPDEST PUSH2 0x4D0 JUMP JUMPDEST PUSH2 0x18F PUSH2 0x203 CALLDATASIZE PUSH1 0x4 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x594 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x199 JUMP JUMPDEST PUSH2 0x1CA PUSH2 0x22B CALLDATASIZE PUSH1 0x4 PUSH2 0x117D JUMP JUMPDEST PUSH2 0x64A JUMP JUMPDEST PUSH2 0x18F PUSH2 0x23E CALLDATASIZE PUSH1 0x4 PUSH2 0x10F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x26C PUSH2 0x267 CALLDATASIZE PUSH1 0x4 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x686 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x26C PUSH2 0x27C CALLDATASIZE PUSH1 0x4 PUSH2 0x11FB JUMP JUMPDEST PUSH2 0x727 JUMP JUMPDEST PUSH2 0x18F PUSH1 0x34 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x1AA PUSH2 0x7EE JUMP JUMPDEST PUSH2 0x1CA PUSH2 0x2A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x117D JUMP JUMPDEST PUSH2 0x7FD JUMP JUMPDEST PUSH2 0x1CA PUSH2 0x2B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x117D JUMP JUMPDEST PUSH2 0x8AE JUMP JUMPDEST PUSH2 0x18F PUSH2 0x2C6 CALLDATASIZE PUSH1 0x4 PUSH2 0x10F3 JUMP JUMPDEST PUSH2 0x8BB JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x199 JUMP JUMPDEST PUSH2 0x18F PUSH2 0x2FE CALLDATASIZE PUSH1 0x4 PUSH2 0x110E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x26C PUSH2 0x337 CALLDATASIZE PUSH1 0x4 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x8ED JUMP JUMPDEST PUSH2 0x18F PUSH2 0x34A CALLDATASIZE PUSH1 0x4 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x8FE JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH2 0x2D8 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36C PUSH2 0x996 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x377 DUP4 PUSH2 0x8FE JUMP JUMPDEST SWAP1 POP PUSH2 0x383 CALLER DUP3 PUSH2 0xB03 JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x3E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3FC 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 0x420 SWAP2 SWAP1 PUSH2 0x11A7 JUMP JUMPDEST POP SWAP2 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x437 SWAP1 PUSH2 0x131F JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x463 SWAP1 PUSH2 0x131F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4B0 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x485 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x4B0 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 0x493 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4C7 CALLER DUP5 DUP5 PUSH2 0xC88 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4DD DUP5 DUP5 DUP5 PUSH2 0xDE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x57C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x589 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0xC88 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x5A0 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x5AE JUMPI POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x605 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 0x629 SWAP2 SWAP1 PUSH2 0x11E2 JUMP JUMPDEST PUSH2 0x633 SWAP1 DUP6 PUSH2 0x12CB JUMP JUMPDEST PUSH2 0x63D SWAP2 SWAP1 PUSH2 0x12A9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x4C7 SWAP2 DUP6 SWAP1 PUSH2 0x681 SWAP1 DUP7 SWAP1 PUSH2 0x1291 JUMP JUMPDEST PUSH2 0xC88 JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0x40C10F1900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x40C10F19 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x6EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x6FF 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 0x723 SWAP2 SWAP1 PUSH2 0x11A7 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x72F PUSH2 0x996 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x73A DUP4 PUSH2 0x8FE JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP7 SWAP1 MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x7A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x7BA 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 0x7DE SWAP2 SWAP1 PUSH2 0x11A7 JUMP JUMPDEST POP PUSH2 0x7E9 DUP3 DUP3 PUSH2 0xFF8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x437 SWAP1 PUSH2 0x131F JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x897 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH2 0x8A4 CALLER DUP6 DUP6 DUP5 SUB PUSH2 0xC88 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4C7 CALLER DUP5 DUP5 PUSH2 0xDE0 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C5 PUSH2 0x996 JUMP JUMPDEST PUSH2 0x8E7 PUSH2 0x203 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x8F5 PUSH2 0x996 JUMP JUMPDEST TIMESTAMP PUSH1 0x35 SSTORE PUSH1 0x34 SSTORE JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x946 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x95A 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 0x97E SWAP2 SWAP1 PUSH2 0x11E2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x98C JUMPI POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 PUSH2 0x629 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x35 SLOAD TIMESTAMP PUSH2 0x9A6 SWAP2 SWAP1 PUSH2 0x1308 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x34 SLOAD DUP3 PUSH2 0x9B8 SWAP2 SWAP1 PUSH2 0x12CB JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xA01 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA15 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 0xA39 SWAP2 SWAP1 PUSH2 0x11E2 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 PUSH2 0xA50 DUP4 DUP6 PUSH2 0x12CB JUMP JUMPDEST PUSH2 0xA5A SWAP2 SWAP1 PUSH2 0x12A9 JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0x40C10F1900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x40C10F19 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xAC0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xAD4 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 0xAF8 SWAP2 SWAP1 PUSH2 0x11A7 JUMP JUMPDEST POP POP TIMESTAMP PUSH1 0x35 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xB7F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xC0E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xC3D SWAP1 DUP5 SWAP1 PUSH2 0x1308 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xD03 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xD7F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xE5C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xED8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xF67 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xF9E SWAP1 DUP5 SWAP1 PUSH2 0x1291 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xFEA SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x104E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x573 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1060 SWAP2 SWAP1 PUSH2 0x1291 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x108D SWAP1 DUP5 SWAP1 PUSH2 0x1291 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x10EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1105 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x63D DUP3 PUSH2 0x10D7 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1121 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x112A DUP4 PUSH2 0x10D7 JUMP JUMPDEST SWAP2 POP PUSH2 0x1138 PUSH1 0x20 DUP5 ADD PUSH2 0x10D7 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1156 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x115F DUP5 PUSH2 0x10D7 JUMP JUMPDEST SWAP3 POP PUSH2 0x116D PUSH1 0x20 DUP6 ADD PUSH2 0x10D7 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1190 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1199 DUP4 PUSH2 0x10D7 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x63D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x120E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x1138 PUSH1 0x20 DUP5 ADD PUSH2 0x10D7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x124B JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x122F JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x125D JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x12A4 JUMPI PUSH2 0x12A4 PUSH2 0x1354 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x12C6 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1303 JUMPI PUSH2 0x1303 PUSH2 0x1354 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x131A JUMPI PUSH2 0x131A PUSH2 0x1354 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1333 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x644 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SLOAD 0xCD SLOAD PUSH23 0xCD144D6702CD347A43EC9B3C81802B91320C51067345A0 ISZERO 0xCC 0xD5 0x1F 0xF7 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "354:3196:27:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2725:253;;;;;;:::i;:::-;;:::i;:::-;;;8371:25:84;;;8359:2;8344:18;2725:253:27;;;;;;;;2562:89:25;;;:::i;:::-;;;;;;;:::i;4601:155::-;;;;;;:::i;:::-;;:::i;:::-;;;3279:14:84;;3272:22;3254:41;;3242:2;3227:18;4601:155:25;3209:92:84;3630:97:25;3708:12;;3630:97;;5223:465;;;;;;:::i;:::-;;:::i;3278:270:27:-;;;;;;:::i;:::-;;:::i;3481:89:25:-;3554:9;;3481:89;;3554:9;;;;8549:36:84;;8537:2;8522:18;3481:89:25;8504:87:84;6083:208:25;;;;;;:::i;:::-;;:::i;3785:116::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3876:18:25;3850:7;3876:18;;;;;;;;;;;;3785:116;936:90:27;;;;;;:::i;:::-;;:::i;:::-;;2244:236;;;;;;:::i;:::-;;:::i;440:28::-;;;;;;2764:93:25;;;:::i;6778:429::-;;;;;;:::i;:::-;;:::i;4104:161::-;;;;;;:::i;:::-;;:::i;1787:150:27:-;;;;;;:::i;:::-;;:::i;1519:103::-;1609:5;;-1:-1:-1;;;;;1609:5:27;1519:103;;;-1:-1:-1;;;;;2342:55:84;;;2324:74;;2312:2;2297:18;1519:103:27;2279:125:84;4323:140:25;;;;;;:::i;:::-;-1:-1:-1;;;;;4429:18:25;;;4403:7;4429:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4323:140;757:173:27;;;;;;:::i;:::-;;:::i;2984:288::-;;;;;;:::i;:::-;;:::i;408:26::-;;;;;-1:-1:-1;;;;;408:26:27;;;2725:253;2789:7;2808:11;:9;:11::i;:::-;2829:14;2846:22;2861:6;2846:14;:22::i;:::-;2829:39;;2878:25;2884:10;2896:6;2878:5;:25::i;:::-;2913:5;;:34;;;;;2928:10;2913:34;;;2986:74:84;3076:18;;;3069:34;;;-1:-1:-1;;;;;2913:5:27;;;;:14;;2959:18:84;;2913:34:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2965:6:27;;2725:253;-1:-1:-1;;2725:253:27:o;2562:89:25:-;2607:13;2639:5;2632:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2562:89;:::o;4601:155::-;4675:4;4691:37;4700:10;4712:7;4721:6;4691:8;:37::i;:::-;-1:-1:-1;4745:4:25;4601:155;;;;:::o;5223:465::-;5350:4;5366:36;5376:6;5384:9;5395:6;5366:9;:36::i;:::-;-1:-1:-1;;;;;5440:19:25;;5413:24;5440:19;;;:11;:19;;;;;;;;5460:10;5440:31;;;;;;;;5489:26;;;;5481:79;;;;-1:-1:-1;;;5481:79:25;;6039:2:84;5481:79:25;;;6021:21:84;6078:2;6058:18;;;6051:30;6117:34;6097:18;;;6090:62;6188:10;6168:18;;;6161:38;6216:19;;5481:79:25;;;;;;;;;5594:55;5603:6;5611:10;5642:6;5623:16;:25;5594:8;:55::i;:::-;-1:-1:-1;5677:4:25;;5223:465;-1:-1:-1;;;;5223:465:25:o;3278:270:27:-;3339:7;3358:14;3375:13;3708:12:25;;;3630:97;3375:13:27;3358:30;-1:-1:-1;3403:11:27;3399:143;;-1:-1:-1;3437:6:27;;3278:270;-1:-1:-1;3278:270:27:o;3399:143::-;3491:5;;:30;;-1:-1:-1;;;3491:30:27;;3515:4;3491:30;;;2324:74:84;3525:6:27;;-1:-1:-1;;;;;3491:5:27;;:15;;2297:18:84;;3491:30:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3482:39;;:6;:39;:::i;:::-;3481:50;;;;:::i;:::-;3474:57;3278:270;-1:-1:-1;;;3278:270:27:o;3399:143::-;3348:200;3278:270;;;:::o;6083:208:25:-;6196:10;6171:4;6217:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;6217:32:25;;;;;;;;;;6171:4;;6187:76;;6208:7;;6217:45;;6252:10;;6217:45;:::i;:::-;6187:8;:76::i;936:90:27:-;986:5;;:33;;;;;1005:4;986:33;;;2986:74:84;3076:18;;;3069:34;;;-1:-1:-1;;;;;986:5:27;;;;:10;;2959:18:84;;986:33:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;936:90;:::o;2244:236::-;2323:11;:9;:11::i;:::-;2344:14;2361:22;2376:6;2361:14;:22::i;:::-;2393:5;;:53;;;;;2412:10;2393:53;;;2672:34:84;2432:4:27;2722:18:84;;;2715:43;2774:18;;;2767:34;;;2344:39:27;;-1:-1:-1;;;;;;2393:5:27;;:18;;2584::84;;2393:53:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2456:17;2462:2;2466:6;2456:5;:17::i;:::-;2313:167;2244:236;;:::o;2764:93:25:-;2811:13;2843:7;2836:14;;;;;:::i;6778:429::-;6954:10;6895:4;6942:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;6942:32:25;;;;;;;;;;6992:35;;;;6984:85;;;;-1:-1:-1;;;6984:85:25;;7661:2:84;6984:85:25;;;7643:21:84;7700:2;7680:18;;;7673:30;7739:34;7719:18;;;7712:62;7810:7;7790:18;;;7783:35;7835:19;;6984:85:25;7633:227:84;6984:85:25;7103:65;7112:10;7124:7;7152:15;7133:16;:34;7103:8;:65::i;:::-;-1:-1:-1;7196:4:25;;6778:429;-1:-1:-1;;;6778:429:25:o;4104:161::-;4181:4;4197:40;4207:10;4219:9;4230:6;4197:9;:40::i;1787:150:27:-;1852:7;1871:11;:9;:11::i;:::-;1899:31;1914:15;1924:4;-1:-1:-1;;;;;3876:18:25;3850:7;3876:18;;;;;;;;;;;;3785:116;1899:31:27;1892:38;1787:150;-1:-1:-1;;1787:150:27:o;757:173::-;826:11;:9;:11::i;:::-;868:15;847:18;:36;893:13;:30;757:173::o;2984:288::-;3087:5;;:30;;-1:-1:-1;;;3087:30:27;;3111:4;3087:30;;;2324:74:84;3045:7:27;;;;-1:-1:-1;;;;;3087:5:27;;;;:15;;2297:18:84;;3087:30:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3064:53;-1:-1:-1;3132:17:27;3128:138;;-1:-1:-1;3172:6:27;;2984:288;-1:-1:-1;2984:288:27:o;3128:138::-;3243:12;3226:13;3708:12:25;;;3630:97;1032:369:27;1072:17;1110:18;;1092:15;:36;;;;:::i;:::-;1072:56;;1138:22;1175:13;;1163:9;:25;;;;:::i;:::-;1216:5;;:30;;-1:-1:-1;;;1216:30:27;;1240:4;1216:30;;;2324:74:84;1138:50:27;;-1:-1:-1;1198:15:27;;-1:-1:-1;;;;;1216:5:27;;;;:15;;2297:18:84;;1216:30:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1198:48;-1:-1:-1;1256:12:27;1300:7;1272:24;1198:48;1272:14;:24;:::i;:::-;1271:36;;;;:::i;:::-;1317:5;;:31;;;;;1336:4;1317:31;;;2986:74:84;3076:18;;;3069:34;;;1256:51:27;;-1:-1:-1;;;;;;1317:5:27;;:10;;2959:18:84;;1317:31:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;1379:15:27;1358:18;:36;-1:-1:-1;;;1032:369:27:o;9379:576:25:-;-1:-1:-1;;;;;9462:21:25;;9454:67;;;;-1:-1:-1;;;9454:67:25;;6448:2:84;9454:67:25;;;6430:21:84;6487:2;6467:18;;;6460:30;6526:34;6506:18;;;6499:62;6597:3;6577:18;;;6570:31;6618:19;;9454:67:25;6420:223:84;9454:67:25;-1:-1:-1;;;;;9617:18:25;;9592:22;9617:18;;;;;;;;;;;9653:24;;;;9645:71;;;;-1:-1:-1;;;9645:71:25;;4826:2:84;9645:71:25;;;4808:21:84;4865:2;4845:18;;;4838:30;4904:34;4884:18;;;4877:62;4975:4;4955:18;;;4948:32;4997:19;;9645:71:25;4798:224:84;9645:71:25;-1:-1:-1;;;;;9750:18:25;;:9;:18;;;;;;;;;;9771:23;;;9750:44;;9814:12;:22;;9788:6;;9750:9;9814:22;;9788:6;;9814:22;:::i;:::-;;;;-1:-1:-1;;9852:37:25;;8371:25:84;;;9878:1:25;;-1:-1:-1;;;;;9852:37:25;;;;;8359:2:84;8344:18;9852:37:25;;;;;;;2313:167:27;2244:236;;:::o;10378:370:25:-;-1:-1:-1;;;;;10509:19:25;;10501:68;;;;-1:-1:-1;;;10501:68:25;;7256:2:84;10501:68:25;;;7238:21:84;7295:2;7275:18;;;7268:30;7334:34;7314:18;;;7307:62;7405:6;7385:18;;;7378:34;7429:19;;10501:68:25;7228:226:84;10501:68:25;-1:-1:-1;;;;;10587:21:25;;10579:68;;;;-1:-1:-1;;;10579:68:25;;5229:2:84;10579:68:25;;;5211:21:84;5268:2;5248:18;;;5241:30;5307:34;5287:18;;;5280:62;5378:4;5358:18;;;5351:32;5400:19;;10579:68:25;5201:224:84;10579:68:25;-1:-1:-1;;;;;10658:18:25;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10709:32;;8371:25:84;;;10709:32:25;;8344:18:84;10709:32:25;;;;;;;10378:370;;;:::o;7681:713::-;-1:-1:-1;;;;;7816:20:25;;7808:70;;;;-1:-1:-1;;;7808:70:25;;6850:2:84;7808:70:25;;;6832:21:84;6889:2;6869:18;;;6862:30;6928:34;6908:18;;;6901:62;6999:7;6979:18;;;6972:35;7024:19;;7808:70:25;6822:227:84;7808:70:25;-1:-1:-1;;;;;7896:23:25;;7888:71;;;;-1:-1:-1;;;7888:71:25;;4422:2:84;7888:71:25;;;4404:21:84;4461:2;4441:18;;;4434:30;4500:34;4480:18;;;4473:62;4571:5;4551:18;;;4544:33;4594:19;;7888:71:25;4394:225:84;7888:71:25;-1:-1:-1;;;;;8052:17:25;;8028:21;8052:17;;;;;;;;;;;8087:23;;;;8079:74;;;;-1:-1:-1;;;8079:74:25;;5632:2:84;8079:74:25;;;5614:21:84;5671:2;5651:18;;;5644:30;5710:34;5690:18;;;5683:62;5781:8;5761:18;;;5754:36;5807:19;;8079:74:25;5604:228:84;8079:74:25;-1:-1:-1;;;;;8187:17:25;;;:9;:17;;;;;;;;;;;8207:22;;;8187:42;;8249:20;;;;;;;;:30;;8223:6;;8187:9;8249:30;;8223:6;;8249:30;:::i;:::-;;;;;;;;8312:9;-1:-1:-1;;;;;8295:35:25;8304:6;-1:-1:-1;;;;;8295:35:25;;8323:6;8295:35;;;;8371:25:84;;8359:2;8344:18;;8326:76;8295:35:25;;;;;;;;7798:596;7681:713;;;:::o;8670:389::-;-1:-1:-1;;;;;8753:21:25;;8745:65;;;;-1:-1:-1;;;8745:65:25;;8067:2:84;8745:65:25;;;8049:21:84;8106:2;8086:18;;;8079:30;8145:33;8125:18;;;8118:61;8196:18;;8745:65:25;8039:181:84;8745:65:25;8897:6;8881:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8913:18:25;;:9;:18;;;;;;;;;;:28;;8935:6;;8913:9;:28;;8935:6;;8913:28;:::i;:::-;;;;-1:-1:-1;;8956:37:25;;8371:25:84;;;-1:-1:-1;;;;;8956:37:25;;;8973:1;;8956:37;;8359:2:84;8344:18;8956:37:25;;;;;;;986:33:27;936:90;:::o;14:196:84:-;82:20;;-1:-1:-1;;;;;131:54:84;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:254::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:2;;;1149:1;1146;1139:12;1101:2;1172:29;1191:9;1172:29;:::i;:::-;1162:39;1248:2;1233:18;;;;1220:32;;-1:-1:-1;;;1091:167:84:o;1263:277::-;1330:6;1383:2;1371:9;1362:7;1358:23;1354:32;1351:2;;;1399:1;1396;1389:12;1351:2;1431:9;1425:16;1484:5;1477:13;1470:21;1463:5;1460:32;1450:2;;1506:1;1503;1496:12;1545:180;1604:6;1657:2;1645:9;1636:7;1632:23;1628:32;1625:2;;;1673:1;1670;1663:12;1625:2;-1:-1:-1;1696:23:84;;1615:110;-1:-1:-1;1615:110:84:o;1730:184::-;1800:6;1853:2;1841:9;1832:7;1828:23;1824:32;1821:2;;;1869:1;1866;1859:12;1821:2;-1:-1:-1;1892:16:84;;1811:103;-1:-1:-1;1811:103:84:o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:2;;;2064:1;2061;2054:12;2016:2;2100:9;2087:23;2077:33;;2129:38;2163:2;2152:9;2148:18;2129:38;:::i;3559:656::-;3671:4;3700:2;3729;3718:9;3711:21;3761:6;3755:13;3804:6;3799:2;3788:9;3784:18;3777:34;3829:1;3839:140;3853:6;3850:1;3847:13;3839:140;;;3948:14;;;3944:23;;3938:30;3914:17;;;3933:2;3910:26;3903:66;3868:10;;3839:140;;;3997:6;3994:1;3991:13;3988:2;;;4067:1;4062:2;4053:6;4042:9;4038:22;4034:31;4027:42;3988:2;-1:-1:-1;4131:2:84;4119:15;4136:66;4115:88;4100:104;;;;4206:2;4096:113;;3680:535;-1:-1:-1;;;3680:535:84:o;8596:128::-;8636:3;8667:1;8663:6;8660:1;8657:13;8654:2;;;8673:18;;:::i;:::-;-1:-1:-1;8709:9:84;;8644:80::o;8729:274::-;8769:1;8795;8785:2;;-1:-1:-1;;;8827:1:84;8820:88;8931:4;8928:1;8921:15;8959:4;8956:1;8949:15;8785:2;-1:-1:-1;8988:9:84;;8775:228::o;9008:::-;9048:7;9174:1;9106:66;9102:74;9099:1;9096:81;9091:1;9084:9;9077:17;9073:105;9070:2;;;9181:18;;:::i;:::-;-1:-1:-1;9221:9:84;;9060:176::o;9241:125::-;9281:4;9309:1;9306;9303:8;9300:2;;;9314:18;;:::i;:::-;-1:-1:-1;9351:9:84;;9290:76::o;9371:437::-;9450:1;9446:12;;;;9493;;;9514:2;;9568:4;9560:6;9556:17;9546:27;;9514:2;9621;9613:6;9610:14;9590:18;9587:38;9584:2;;;-1:-1:-1;;;9655:1:84;9648:88;9759:4;9756:1;9749:15;9787:4;9784:1;9777:15;9813:184;-1:-1:-1;;;9862:1:84;9855:88;9962:4;9959:1;9952:15;9986:4;9983:1;9976:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1004800",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24642",
                "balanceOf(address)": "2596",
                "balanceOfToken(address)": "infinite",
                "decimals()": "2357",
                "decreaseAllowance(address,uint256)": "26955",
                "depositToken()": "2387",
                "increaseAllowance(address,uint256)": "26979",
                "name()": "infinite",
                "ratePerSecond()": "2352",
                "redeemToken(uint256)": "infinite",
                "setRatePerSecond(uint256)": "infinite",
                "sharesToTokens(uint256)": "infinite",
                "supplyTokenTo(uint256,address)": "infinite",
                "symbol()": "infinite",
                "token()": "2425",
                "tokensToShares(uint256)": "infinite",
                "totalSupply()": "2349",
                "transfer(address,uint256)": "51254",
                "transferFrom(address,address,uint256)": "infinite",
                "yield(uint256)": "infinite"
              },
              "internal": {
                "_mintRate()": "infinite"
              }
            },
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "balanceOfToken(address)": "b99152d0",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "depositToken()": "c89039c5",
              "increaseAllowance(address,uint256)": "39509351",
              "name()": "06fdde03",
              "ratePerSecond()": "8eff1a98",
              "redeemToken(uint256)": "013054c2",
              "setRatePerSecond(uint256)": "e8fe76d5",
              "sharesToTokens(uint256)": "27def4fd",
              "supplyTokenTo(uint256,address)": "87a6eeef",
              "symbol()": "95d89b41",
              "token()": "fc0c546a",
              "tokensToShares(uint256)": "f3044ac7",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd",
              "yield(uint256)": "765287ef"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_symbol\",\"type\":\"string\"},{\"internalType\":\"uint8\",\"name\":\"_decimals\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"addr\",\"type\":\"address\"}],\"name\":\"balanceOfToken\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"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\":[],\"name\":\"depositToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"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\":\"ratePerSecond\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeemToken\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_ratePerSecond\",\"type\":\"uint256\"}],\"name\":\"setRatePerSecond\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"sharesToTokens\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"supplyTokenTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"token\",\"outputs\":[{\"internalType\":\"contract ERC20Mintable\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokens\",\"type\":\"uint256\"}],\"name\":\"tokensToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"yield\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Extension of {ERC20} that adds a set of accounts with the {MinterRole}, which have permission to mint (create) new tokens as they see fit. At construction, the deployer of the contract is the only minter.\",\"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}.\"},\"balanceOfToken(address)\":{\"returns\":{\"_0\":\"The underlying balance of asset tokens.\"}},\"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 this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"depositToken()\":{\"returns\":{\"_0\":\"The ERC20 asset token address.\"}},\"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.\"},\"redeemToken(uint256)\":{\"params\":{\"amount\":\"The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\"},\"returns\":{\"_0\":\"The actual amount of interst bearing tokens that were redeemed.\"}},\"supplyTokenTo(uint256,address)\":{\"params\":{\"amount\":\"The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\",\"to\":\"The user whose balance will receive the tokens\"}},\"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\":{\"balanceOfToken(address)\":{\"notice\":\"Returns the total balance (in asset tokens).  This includes the deposits and interest.\"},\"depositToken()\":{\"notice\":\"Returns the ERC20 asset token used for deposits.\"},\"redeemToken(uint256)\":{\"notice\":\"Redeems tokens from the yield source.\"},\"supplyTokenTo(uint256,address)\":{\"notice\":\"Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol\":\"MockYieldSource\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.\\n/// @notice Prize Pools subclasses need to implement this interface so that yield can be generated.\\ninterface IYieldSource {\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token address.\\n    function depositToken() external view returns (address);\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens.\\n    function balanceOfToken(address addr) external returns (uint256);\\n\\n    /// @notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\\n    /// @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\\n    /// @param to The user whose balance will receive the tokens\\n    function supplyTokenTo(uint256 amount, address to) external;\\n\\n    /// @notice Redeems tokens from the yield source.\\n    /// @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\\n    /// @return The actual amount of interst bearing tokens that were redeemed.\\n    function redeemToken(uint256 amount) external returns (uint256);\\n}\\n\",\"keccak256\":\"0x659c59f7b0a4cac6ce4c46a8ccec1d8d7ab14aa08451c0d521804fec9ccc95f1\",\"license\":\"GPL-3.0\"},\"@pooltogether/yield-source-interface/contracts/test/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity >=0.6.0;\\n\\n/**\\n * NOTE: Copied from OpenZeppelin\\n *\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin guidelines: functions revert instead\\n * of returning `false` on failure. This behavior is nonetheless conventional\\n * and does not conflict with the expectations of ERC20 applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n    uint8 private _decimals;\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(\\n        string memory name_,\\n        string memory symbol_,\\n        uint8 decimals_\\n    ) {\\n        _name = name_;\\n        _symbol = symbol_;\\n        _decimals = decimals_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5,05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual returns (uint8) {\\n        return _decimals;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual returns (bool) {\\n        _transfer(msg.sender, recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual returns (bool) {\\n        _approve(msg.sender, spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][msg.sender];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, msg.sender, currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue)\\n        public\\n        virtual\\n        returns (bool)\\n    {\\n        uint256 currentAllowance = _allowances[msg.sender][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(msg.sender, spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    uint256[45] private __gap;\\n}\\n\",\"keccak256\":\"0xdd443b9630201b27f09fdacb9ed000005c769e320718534f9147ebb2863570b8\",\"license\":\"MIT\"},\"@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\nimport \\\"./ERC20.sol\\\";\\n\\n/**\\n * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\\n * which have permission to mint (create) new tokens as they see fit.\\n *\\n * At construction, the deployer of the contract is the only minter.\\n */\\ncontract ERC20Mintable is ERC20 {\\n    constructor(\\n        string memory _name,\\n        string memory _symbol,\\n        uint8 _decimals\\n    ) ERC20(_name, _symbol, _decimals) {}\\n\\n    /**\\n     * @dev See {ERC20-_mint}.\\n     *\\n     * Requirements:\\n     *\\n     * - the caller must have the {MinterRole}.\\n     */\\n    function mint(address account, uint256 amount) public returns (bool) {\\n        _mint(account, amount);\\n        return true;\\n    }\\n\\n    function burn(address account, uint256 amount) public returns (bool) {\\n        _burn(account, amount);\\n        return true;\\n    }\\n\\n    function masterTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) public {\\n        _transfer(from, to, amount);\\n    }\\n}\\n\",\"keccak256\":\"0x875d7981f3050f693d95b7660bd8d460757f1a523801e70d3add7fc7fa8ae338\",\"license\":\"GPL-3.0\"},\"@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.8.0;\\n\\nimport \\\"../IYieldSource.sol\\\";\\nimport \\\"./ERC20Mintable.sol\\\";\\n\\n/**\\n * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\\n * which have permission to mint (create) new tokens as they see fit.\\n *\\n * At construction, the deployer of the contract is the only minter.\\n */\\ncontract MockYieldSource is ERC20, IYieldSource {\\n    ERC20Mintable public token;\\n    uint256 public ratePerSecond;\\n    uint256 lastYieldTimestamp;\\n\\n    constructor(\\n        string memory _name,\\n        string memory _symbol,\\n        uint8 _decimals\\n    ) ERC20(\\\"YIELD\\\", \\\"YLD\\\", 18) {\\n        token = new ERC20Mintable(_name, _symbol, _decimals);\\n        lastYieldTimestamp = block.timestamp;\\n    }\\n\\n    function setRatePerSecond(uint256 _ratePerSecond) external {\\n        _mintRate();\\n        lastYieldTimestamp = block.timestamp;\\n        ratePerSecond = _ratePerSecond;\\n    }\\n\\n    function yield(uint256 amount) external {\\n        token.mint(address(this), amount);\\n    }\\n\\n    function _mintRate() internal {\\n        uint256 deltaTime = block.timestamp - lastYieldTimestamp;\\n        uint256 rateMultiplier = deltaTime * ratePerSecond;\\n        uint256 balance = token.balanceOf(address(this));\\n        uint256 mint = (rateMultiplier * balance) / 1 ether;\\n        token.mint(address(this), mint);\\n        lastYieldTimestamp = block.timestamp;\\n    }\\n\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token address.\\n    function depositToken() external view override returns (address) {\\n        return address(token);\\n    }\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens.\\n    function balanceOfToken(address addr) external override returns (uint256) {\\n        _mintRate();\\n        return sharesToTokens(balanceOf(addr));\\n    }\\n\\n    /// @notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\\n    /// @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\\n    /// @param to The user whose balance will receive the tokens\\n    function supplyTokenTo(uint256 amount, address to) external override {\\n        _mintRate();\\n        uint256 shares = tokensToShares(amount);\\n        token.transferFrom(msg.sender, address(this), amount);\\n        _mint(to, shares);\\n    }\\n\\n    /// @notice Redeems tokens from the yield source.\\n    /// @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\\n    /// @return The actual amount of interst bearing tokens that were redeemed.\\n    function redeemToken(uint256 amount) external override returns (uint256) {\\n        _mintRate();\\n        uint256 shares = tokensToShares(amount);\\n        _burn(msg.sender, shares);\\n        token.transfer(msg.sender, amount);\\n\\n        return amount;\\n    }\\n\\n    function tokensToShares(uint256 tokens) public view returns (uint256) {\\n        uint256 tokenBalance = token.balanceOf(address(this));\\n\\n        if (tokenBalance == 0) {\\n            return tokens;\\n        } else {\\n            return (tokens * totalSupply()) / tokenBalance;\\n        }\\n    }\\n\\n    function sharesToTokens(uint256 shares) public view returns (uint256) {\\n        uint256 supply = totalSupply();\\n\\n        if (supply == 0) {\\n            return shares;\\n        } else {\\n            return (shares * token.balanceOf(address(this))) / supply;\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x01d6c82b1fa81cebdad2a3f778dd75af285c33c134ade18e19e2e52a84539892\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 4183,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 4189,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 4191,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 4193,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 4195,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 4197,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "_decimals",
                "offset": 0,
                "slot": "5",
                "type": "t_uint8"
              },
              {
                "astId": 4733,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "__gap",
                "offset": 0,
                "slot": "6",
                "type": "t_array(t_uint256)45_storage"
              },
              {
                "astId": 4819,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "token",
                "offset": 0,
                "slot": "51",
                "type": "t_contract(ERC20Mintable)4807"
              },
              {
                "astId": 4821,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "ratePerSecond",
                "offset": 0,
                "slot": "52",
                "type": "t_uint256"
              },
              {
                "astId": 4823,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "lastYieldTimestamp",
                "offset": 0,
                "slot": "53",
                "type": "t_uint256"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_uint256)45_storage": {
                "base": "t_uint256",
                "encoding": "inplace",
                "label": "uint256[45]",
                "numberOfBytes": "1440"
              },
              "t_contract(ERC20Mintable)4807": {
                "encoding": "inplace",
                "label": "contract ERC20Mintable",
                "numberOfBytes": "20"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint8": {
                "encoding": "inplace",
                "label": "uint8",
                "numberOfBytes": "1"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "balanceOfToken(address)": {
                "notice": "Returns the total balance (in asset tokens).  This includes the deposits and interest."
              },
              "depositToken()": {
                "notice": "Returns the ERC20 asset token used for deposits."
              },
              "redeemToken(uint256)": {
                "notice": "Redeems tokens from the yield source."
              },
              "supplyTokenTo(uint256,address)": {
                "notice": "Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/ControlledToken.sol": {
        "ControlledToken": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "string",
                  "name": "_name",
                  "type": "string"
                },
                {
                  "internalType": "string",
                  "name": "_symbol",
                  "type": "string"
                },
                {
                  "internalType": "uint8",
                  "name": "decimals_",
                  "type": "uint8"
                },
                {
                  "internalType": "address",
                  "name": "_controller",
                  "type": "address"
                }
              ],
              "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": false,
                  "internalType": "string",
                  "name": "name",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "symbol",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "uint8",
                  "name": "decimals",
                  "type": "uint8"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "controller",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "DOMAIN_SEPARATOR",
              "outputs": [
                {
                  "internalType": "bytes32",
                  "name": "",
                  "type": "bytes32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "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": "controller",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurn",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_operator",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurnFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerMint",
              "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": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "nonces",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "deadline",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "v",
                  "type": "uint8"
                },
                {
                  "internalType": "bytes32",
                  "name": "r",
                  "type": "bytes32"
                },
                {
                  "internalType": "bytes32",
                  "name": "s",
                  "type": "bytes32"
                }
              ],
              "name": "permit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "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": {
            "author": "PoolTogether Inc Team",
            "events": {
              "Deployed(string,string,uint8,address)": {
                "details": "Emitted when contract is deployed"
              }
            },
            "kind": "dev",
            "methods": {
              "DOMAIN_SEPARATOR()": {
                "details": "See {IERC20Permit-DOMAIN_SEPARATOR}."
              },
              "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}."
              },
              "constructor": {
                "params": {
                  "_controller": "Address of the Controller contract for minting & burning",
                  "_name": "The name of the Token",
                  "_symbol": "The symbol for the Token",
                  "decimals_": "The number of decimals for the Token"
                }
              },
              "controllerBurn(address,uint256)": {
                "details": "May be overridden to provide more granular control over burning",
                "params": {
                  "_amount": "Amount of tokens to burn",
                  "_user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerBurnFrom(address,address,uint256)": {
                "details": "May be overridden to provide more granular control over operator-burning",
                "params": {
                  "_amount": "Amount of tokens to burn",
                  "_operator": "Address of the operator performing the burn action via the controller contract",
                  "_user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerMint(address,uint256)": {
                "details": "May be overridden to provide more granular control over minting",
                "params": {
                  "_amount": "Amount of tokens to mint",
                  "_user": "Address of the receiver of the minted tokens"
                }
              },
              "decimals()": {
                "details": "This value should be equal to the decimals of the token used to deposit into the pool.",
                "returns": {
                  "_0": "uint8 decimals."
                }
              },
              "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."
              },
              "nonces(address)": {
                "details": "See {IERC20Permit-nonces}."
              },
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": {
                "details": "See {IERC20Permit-permit}."
              },
              "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`."
              }
            },
            "title": "PoolTogether V4 Controlled ERC20 Token",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_3129": {
                  "entryPoint": null,
                  "id": 3129,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_5208": {
                  "entryPoint": null,
                  "id": 5208,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_727": {
                  "entryPoint": null,
                  "id": 727,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_84": {
                  "entryPoint": null,
                  "id": 84,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_3178": {
                  "entryPoint": null,
                  "id": 3178,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 865,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory": {
                  "entryPoint": 1010,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_encode_string": {
                  "entryPoint": 1174,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed": {
                  "entryPoint": 1220,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 1281,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "extract_byte_array_length": {
                  "entryPoint": 1332,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 1393,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:4371:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:622:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:84"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:84"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:84",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:84"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:84",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:84"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:84"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "582:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "591:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "594:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "584:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "584:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "584:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "557:6:84"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "565:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "553:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "553:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "570:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "549:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "549:26:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "577:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "546:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "546:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "543:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "633:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "641:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "629:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "629:17:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "652:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "660:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "648:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "648:17:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "667:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "607:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "607:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "607:63:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "679:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "688:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "679:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:686:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "855:738:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "902:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "911:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "914:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "904:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "904:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "904:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "876:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "885:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "872:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "872:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "897:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "868:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "868:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "865:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "927:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "947:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "941:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "941:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "931:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "966:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "984:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "988:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "980:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "980:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "992:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "976:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "976:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "970:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1021:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1030:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1033:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1023:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1023:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1023:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1009:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1017:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1006:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1006:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1003:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1046:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1089:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1100:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1085:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1085:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1109:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1056:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1056:61:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1046:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1126:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1152:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1163:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1148:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1148:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1142:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1142:25:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1130:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1196:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1205:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1208:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1198:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1198:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1198:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1182:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1192:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1179:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1179:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1176:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1221:73:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1264:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1275:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1260:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1260:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1286:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1231:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1231:63:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1221:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1303:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1326:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1337:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1322:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1322:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1316:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1316:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1307:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1389:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1398:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1401:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1391:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1391:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1391:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1363:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1374:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1381:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1370:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1370:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1360:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1360:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1353:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1353:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1350:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1414:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1424:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1414:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1438:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1463:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1474:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1459:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1459:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1453:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1453:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1442:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1545:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1554:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1557:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1547:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1547:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1547:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1500:7:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "1513:7:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1530:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1535:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1526:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1526:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1539:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1522:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1522:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1509:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1509:33:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1497:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1497:46:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1490:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1490:54:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1487:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1570:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1580:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1570:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "797:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "808:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "820:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "828:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "836:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "844:6:84",
                            "type": ""
                          }
                        ],
                        "src": "705:888:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1648:208:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1658:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1678:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1672:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1672:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1662:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1705:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1693:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1693:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1693:19:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1747:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1754:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1743:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1743:16:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1765:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1770:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1761:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1761:14:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1777:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1721:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1721:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1721:63:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1793:57:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1808:3:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1821:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1829:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "1817:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1817:15:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1838:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "not",
                                              "nodeType": "YulIdentifier",
                                              "src": "1834:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1834:7:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1813:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1813:29:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1804:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1804:39:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1845:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1800:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1800:50:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1793:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_string",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1625:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "1632:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1640:3:84",
                            "type": ""
                          }
                        ],
                        "src": "1598:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2074:276:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2084:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2096:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2107:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2092:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2092:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2084:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2127:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2138:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2120:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2120:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2120:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2165:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2176:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2161:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2161:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2181:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2154:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2154:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2154:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2208:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2219:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2204:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2204:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2224:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2197:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2197:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2197:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2251:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2262:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2247:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2247:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "2267:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2240:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2240:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2240:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2294:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2305:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2290:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2290:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "2315:6:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2331:3:84",
                                                "type": "",
                                                "value": "160"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2336:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "2327:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2327:11:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2340:1:84",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "2323:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2323:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2311:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2311:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2283:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2283:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2283:61:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2011:9:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2022:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2030:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2038:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2046:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2054:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2065:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1861:489:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2548:268:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2565:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2576:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2558:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2558:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2558:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2588:59:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2620:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2632:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2643:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2628:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2628:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2602:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2602:45:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2592:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2667:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2678:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2663:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2663:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2687:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2695:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2683:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2683:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2656:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2656:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2656:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2715:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2741:6:84"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2749:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2723:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2723:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2715:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2776:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2787:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2772:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2772:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2796:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2804:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2792:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2792:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2765:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2765:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2765:45:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2501:9:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2512:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2520:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2528:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2539:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2355:461:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2995:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3012:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3023:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3005:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3005:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3005:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3046:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3057:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3042:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3042:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3062:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3035:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3035:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3035:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3085:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3096:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3081:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3081:18:84"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3101:34:84",
                                    "type": "",
                                    "value": "ControlledToken/decimals-gt-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3074:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3074:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3074:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3145:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3157:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3168:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3153:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3153:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3145:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2972:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2986:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2821:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3356:233:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3373:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3384:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3366:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3366:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3366:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3407:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3418:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3403:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3403:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3423:2:84",
                                    "type": "",
                                    "value": "43"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3396:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3396:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3396:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3446:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3457:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3442:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3442:18:84"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3462:34:84",
                                    "type": "",
                                    "value": "ControlledToken/controller-not-z"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3435:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3435:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3435:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3517:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3528:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3513:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3513:18:84"
                                  },
                                  {
                                    "hexValue": "65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3533:13:84",
                                    "type": "",
                                    "value": "ero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3506:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3506:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3506:41:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3556:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3568:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3579:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3564:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3564:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3556:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3333:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3347:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3182:407:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3647:205:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3657:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3666:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3661:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3726:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "3751:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "3756:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3747:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3747:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3770:3:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3775:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "3766:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "3766:11:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3760:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3760:18:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3740:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3740:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3740:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3687:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3690:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3684:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3684:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3698:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3700:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3709:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3712:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3705:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3705:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3700:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3680:3:84",
                                "statements": []
                              },
                              "src": "3676:113:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3815:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "3828:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "3833:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3824:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3824:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3842:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3817:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3817:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3817:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3804:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3807:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3801:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3801:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3798:2:84"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "3625:3:84",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "3630:3:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "3635:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3594:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3912:325:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3922:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3936:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "3939:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "3932:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3932:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "3922:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3953:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "3983:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3989:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "3979:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3979:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "3957:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4030:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4032:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "4046:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4054:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "4042:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4042:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "4032:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "4010:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4003:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4003:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4000:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4120:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4141:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4148:3:84",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4153:10:84",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "4144:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4144:20:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4134:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4134:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4134:31:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4185:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4188:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4178:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4178:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4178:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4213:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4216:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4206:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4206:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4206:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "4076:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "4099:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4107:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4096:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4096:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "4073:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4073:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4070:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "3892:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "3901:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3857:380:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4274:95:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4291:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4298:3:84",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4303:10:84",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "4294:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4294:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4284:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4284:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4284:31:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4331:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4334:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4324:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4324:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4324:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4355:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4358:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "4348:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4348:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4348:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "4242:127:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        if gt(add(add(offset, _1), 0x20), end) { revert(0, 0) }\n        copy_memory_to_memory(add(offset, 0x20), add(memPtr, 0x20), _1)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        let value := mload(add(headStart, 64))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value2 := value\n        let value_1 := mload(add(headStart, 96))\n        if iszero(eq(value_1, and(value_1, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value3 := value_1\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 96)\n        let tail_1 := abi_encode_string(value0, add(headStart, 96))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_string(value1, tail_1)\n        mstore(add(headStart, 64), and(value2, 0xff))\n    }\n    function abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"ControlledToken/decimals-gt-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 43)\n        mstore(add(headStart, 64), \"ControlledToken/controller-not-z\")\n        mstore(add(headStart, 96), \"ero-address\")\n        tail := add(headStart, 128)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\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) { mstore(add(dst, length), 0) }\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "6101806040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120523480156200003757600080fd5b5060405162001bd438038062001bd48339810160408190526200005a91620003f2565b6040518060400160405280601c81526020017f506f6f6c546f67657468657220436f6e74726f6c6c6564546f6b656e0000000081525080604051806040016040528060018152602001603160f81b81525086868160039080519060200190620000c5929190620002bb565b508051620000db906004906020840190620002bb565b5050825160209384012082519284019290922060c083815260e08290524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818a018190528183019890985260608101959095526080808601939093523085830152805180860390920182529390920190925280519401939093209092526101005250506001600160a01b038116620001d85760405162461bcd60e51b815260206004820152602b60248201527f436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a60448201526a65726f2d6164647265737360a81b60648201526084015b60405180910390fd5b6001600160601b0319606082901b166101405260ff82166200023d5760405162461bcd60e51b815260206004820181905260248201527f436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f6044820152606401620001cf565b7fff0000000000000000000000000000000000000000000000000000000000000060f883901b16610160526040516001600160a01b038216907fde72fc29218361f33503847e6f32be813f9ec92fc7c772bb59e46675c890fd0e90620002a990879087908790620004c4565b60405180910390a25050505062000587565b828054620002c99062000534565b90600052602060002090601f016020900481019282620002ed576000855562000338565b82601f106200030857805160ff191683800117855562000338565b8280016001018555821562000338579182015b82811115620003385782518255916020019190600101906200031b565b50620003469291506200034a565b5090565b5b808211156200034657600081556001016200034b565b600082601f8301126200037357600080fd5b81516001600160401b038082111562000390576200039062000571565b604051601f8301601f19908116603f01168101908282118183101715620003bb57620003bb62000571565b81604052838152866020858801011115620003d557600080fd5b620003e884602083016020890162000501565b9695505050505050565b600080600080608085870312156200040957600080fd5b84516001600160401b03808211156200042157600080fd5b6200042f8883890162000361565b955060208701519150808211156200044657600080fd5b50620004558782880162000361565b935050604085015160ff811681146200046d57600080fd5b60608601519092506001600160a01b03811681146200048b57600080fd5b939692955090935050565b60008151808452620004b081602086016020860162000501565b601f01601f19169290920160200192915050565b606081526000620004d9606083018662000496565b8281036020840152620004ed818662000496565b91505060ff83166040830152949350505050565b60005b838110156200051e57818101518382015260200162000504565b838111156200052e576000848401525b50505050565b600181811c908216806200054957607f821691505b602082108114156200056b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160e05161010051610120516101405160601c6101605160f81c6115cc6200060860003960006101a80152600081816102e3015281816104df01528181610565015261065e015260006107f601526000610ccc01526000610d1b01526000610cf601526000610c7a01526000610ca301526115cc6000f3fe608060405234801561001057600080fd5b50600436106101365760003560e01c806370a08231116100b2578063a457c2d711610081578063d505accf11610066578063d505accf14610292578063dd62ed3e146102a5578063f77c4791146102de57600080fd5b8063a457c2d71461026c578063a9059cbb1461027f57600080fd5b806370a08231146102155780637ecebe001461023e57806390596dd11461025157806395d89b411461026457600080fd5b8063313ce5671161010957806339509351116100ee57806339509351146101da5780635d7b0758146101ed578063631b5dfb1461020257600080fd5b8063313ce567146101a15780633644e515146101d257600080fd5b806306fdde031461013b578063095ea7b31461015957806318160ddd1461017c57806323b872dd1461018e575b600080fd5b61014361031d565b60405161015091906114b1565b60405180910390f35b61016c610167366004611487565b6103af565b6040519015158152602001610150565b6002545b604051908152602001610150565b61016c61019c3660046113d8565b6103c5565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610150565b610180610489565b61016c6101e8366004611487565b610498565b6102006101fb366004611487565b6104d4565b005b6102006102103660046113d8565b61055a565b610180610223366004611383565b6001600160a01b031660009081526020819052604090205490565b61018061024c366004611383565b610633565b61020061025f366004611487565b610653565b6101436106d5565b61016c61027a366004611487565b6106e4565b61016c61028d366004611487565b610795565b6102006102a0366004611414565b6107a2565b6101806102b33660046113a5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103057f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610150565b60606003805461032c90611535565b80601f016020809104026020016040519081016040528092919081815260200182805461035890611535565b80156103a55780601f1061037a576101008083540402835291602001916103a5565b820191906000526020600020905b81548152906001019060200180831161038857829003601f168201915b5050505050905090565b60006103bc338484610906565b50600192915050565b60006103d2848484610a5e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104715760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61047e8533858403610906565b506001949350505050565b6000610493610c76565b905090565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103bc9185906104cf908690611506565b610906565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461054c5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610468565b6105568282610d69565b5050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146105d25760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610468565b816001600160a01b0316836001600160a01b031614610624576001600160a01b0382811660009081526001602090815260408083209387168352929052205461062490839085906104cf90859061151e565b61062e8282610e48565b505050565b6001600160a01b0381166000908152600560205260408120545b92915050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146106cb5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610468565b6105568282610e48565b60606004805461032c90611535565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561077e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610468565b61078b3385858403610906565b5060019392505050565b60006103bc338484610a5e565b834211156107f25760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610468565b60007f00000000000000000000000000000000000000000000000000000000000000008888886108218c610fcd565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061087c82610ff5565b9050600061088c8287878761105e565b9050896001600160a01b0316816001600160a01b0316146108ef5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610468565b6108fa8a8a8a610906565b50505050505050505050565b6001600160a01b0383166109815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b0382166109fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ada5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b038216610b565760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b03831660009081526020819052604090205481811015610be55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c1c908490611506565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c6891815260200190565b60405180910390a350505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461415610cc557507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b038216610dbf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610468565b8060026000828254610dd19190611506565b90915550506001600160a01b03821660009081526020819052604081208054839290610dfe908490611506565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610ec45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b03821660009081526020819052604090205481811015610f535760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610f8290849061151e565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b600061064d611002610c76565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061106f87878787611086565b9150915061107c81611173565b5095945050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156110bd575060009050600361116a565b8460ff16601b141580156110d557508460ff16601c14155b156110e6575060009050600461116a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561113a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166111635760006001925092505061116a565b9150600090505b94509492505050565b600081600481111561118757611187611580565b14156111905750565b60018160048111156111a4576111a4611580565b14156111f25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610468565b600281600481111561120657611206611580565b14156112545760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610468565b600381600481111561126857611268611580565b14156112dc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610468565b60048160048111156112f0576112f0611580565b14156113645760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610468565b50565b80356001600160a01b038116811461137e57600080fd5b919050565b60006020828403121561139557600080fd5b61139e82611367565b9392505050565b600080604083850312156113b857600080fd5b6113c183611367565b91506113cf60208401611367565b90509250929050565b6000806000606084860312156113ed57600080fd5b6113f684611367565b925061140460208501611367565b9150604084013590509250925092565b600080600080600080600060e0888a03121561142f57600080fd5b61143888611367565b965061144660208901611367565b95506040880135945060608801359350608088013560ff8116811461146a57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561149a57600080fd5b6114a383611367565b946020939093013593505050565b600060208083528351808285015260005b818110156114de578581018301518582016040015282016114c2565b818111156114f0576000604083870101525b50601f01601f1916929092016040019392505050565b600082198211156115195761151961156a565b500190565b6000828210156115305761153061156a565b500390565b600181811c9082168061154957607f821691505b60208210811415610fef57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea264697066735822122066c2263ea0784f2a04816f0030ada113600c0197e60e41488de07c50662a457b64736f6c63430008060033",
              "opcodes": "PUSH2 0x180 PUSH1 0x40 MSTORE PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 PUSH2 0x120 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x37 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x1BD4 CODESIZE SUB DUP1 PUSH3 0x1BD4 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x5A SWAP2 PUSH3 0x3F2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1C DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x506F6F6C546F67657468657220436F6E74726F6C6C6564546F6B656E00000000 DUP2 MSTORE POP DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x31 PUSH1 0xF8 SHL DUP2 MSTORE POP DUP7 DUP7 DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xC5 SWAP3 SWAP2 SWAP1 PUSH3 0x2BB JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0xDB SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x2BB JUMP JUMPDEST POP POP DUP3 MLOAD PUSH1 0x20 SWAP4 DUP5 ADD KECCAK256 DUP3 MLOAD SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 KECCAK256 PUSH1 0xC0 DUP4 DUP2 MSTORE PUSH1 0xE0 DUP3 SWAP1 MSTORE CHAINID PUSH1 0xA0 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP2 DUP11 ADD DUP2 SWAP1 MSTORE DUP2 DUP4 ADD SWAP9 SWAP1 SWAP9 MSTORE PUSH1 0x60 DUP2 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x80 DUP1 DUP7 ADD SWAP4 SWAP1 SWAP4 MSTORE ADDRESS DUP6 DUP4 ADD MSTORE DUP1 MLOAD DUP1 DUP7 SUB SWAP1 SWAP3 ADD DUP3 MSTORE SWAP4 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP5 ADD SWAP4 SWAP1 SWAP4 KECCAK256 SWAP1 SWAP3 MSTORE PUSH2 0x100 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0x1D8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F636F6E74726F6C6C65722D6E6F742D7A PUSH1 0x44 DUP3 ADD MSTORE PUSH11 0x65726F2D61646472657373 PUSH1 0xA8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP3 SWAP1 SHL AND PUSH2 0x140 MSTORE PUSH1 0xFF DUP3 AND PUSH3 0x23D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F646563696D616C732D67742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x1CF JUMP JUMPDEST PUSH32 0xFF00000000000000000000000000000000000000000000000000000000000000 PUSH1 0xF8 DUP4 SWAP1 SHL AND PUSH2 0x160 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xDE72FC29218361F33503847E6F32BE813F9EC92FC7C772BB59E46675C890FD0E SWAP1 PUSH3 0x2A9 SWAP1 DUP8 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH3 0x4C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP PUSH3 0x587 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x2C9 SWAP1 PUSH3 0x534 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x2ED JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x338 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x308 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x338 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x338 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x338 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x31B JUMP JUMPDEST POP PUSH3 0x346 SWAP3 SWAP2 POP PUSH3 0x34A JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x346 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x34B JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x373 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x390 JUMPI PUSH3 0x390 PUSH3 0x571 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x3BB JUMPI PUSH3 0x3BB PUSH3 0x571 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE DUP7 PUSH1 0x20 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x3D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x3E8 DUP5 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP10 ADD PUSH3 0x501 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x409 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x421 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x42F DUP9 DUP4 DUP10 ADD PUSH3 0x361 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x446 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x455 DUP8 DUP3 DUP9 ADD PUSH3 0x361 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0x46D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x60 DUP7 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x48B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH3 0x4B0 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH3 0x501 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x0 PUSH3 0x4D9 PUSH1 0x60 DUP4 ADD DUP7 PUSH3 0x496 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x4ED DUP2 DUP7 PUSH3 0x496 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xFF DUP4 AND PUSH1 0x40 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x51E JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x504 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x52E JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x549 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x56B JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x140 MLOAD PUSH1 0x60 SHR PUSH2 0x160 MLOAD PUSH1 0xF8 SHR PUSH2 0x15CC PUSH3 0x608 PUSH1 0x0 CODECOPY PUSH1 0x0 PUSH2 0x1A8 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x2E3 ADD MSTORE DUP2 DUP2 PUSH2 0x4DF ADD MSTORE DUP2 DUP2 PUSH2 0x565 ADD MSTORE PUSH2 0x65E ADD MSTORE PUSH1 0x0 PUSH2 0x7F6 ADD MSTORE PUSH1 0x0 PUSH2 0xCCC ADD MSTORE PUSH1 0x0 PUSH2 0xD1B ADD MSTORE PUSH1 0x0 PUSH2 0xCF6 ADD MSTORE PUSH1 0x0 PUSH2 0xC7A ADD MSTORE PUSH1 0x0 PUSH2 0xCA3 ADD MSTORE PUSH2 0x15CC 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 0x136 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xD505ACCF GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x292 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2A5 JUMPI DUP1 PUSH4 0xF77C4791 EQ PUSH2 0x2DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x26C JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x27F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x215 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x23E JUMPI DUP1 PUSH4 0x90596DD1 EQ PUSH2 0x251 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x264 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0x109 JUMPI DUP1 PUSH4 0x39509351 GT PUSH2 0xEE JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1DA JUMPI DUP1 PUSH4 0x5D7B0758 EQ PUSH2 0x1ED JUMPI DUP1 PUSH4 0x631B5DFB EQ PUSH2 0x202 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x1D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x13B JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x159 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x18E JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x143 PUSH2 0x31D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x150 SWAP2 SWAP1 PUSH2 0x14B1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16C PUSH2 0x167 CALLDATASIZE PUSH1 0x4 PUSH2 0x1487 JUMP JUMPDEST PUSH2 0x3AF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x19C CALLDATASIZE PUSH1 0x4 PUSH2 0x13D8 JUMP JUMPDEST PUSH2 0x3C5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x489 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x1E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x1487 JUMP JUMPDEST PUSH2 0x498 JUMP JUMPDEST PUSH2 0x200 PUSH2 0x1FB CALLDATASIZE PUSH1 0x4 PUSH2 0x1487 JUMP JUMPDEST PUSH2 0x4D4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x200 PUSH2 0x210 CALLDATASIZE PUSH1 0x4 PUSH2 0x13D8 JUMP JUMPDEST PUSH2 0x55A JUMP JUMPDEST PUSH2 0x180 PUSH2 0x223 CALLDATASIZE PUSH1 0x4 PUSH2 0x1383 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x24C CALLDATASIZE PUSH1 0x4 PUSH2 0x1383 JUMP JUMPDEST PUSH2 0x633 JUMP JUMPDEST PUSH2 0x200 PUSH2 0x25F CALLDATASIZE PUSH1 0x4 PUSH2 0x1487 JUMP JUMPDEST PUSH2 0x653 JUMP JUMPDEST PUSH2 0x143 PUSH2 0x6D5 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x27A CALLDATASIZE PUSH1 0x4 PUSH2 0x1487 JUMP JUMPDEST PUSH2 0x6E4 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x28D CALLDATASIZE PUSH1 0x4 PUSH2 0x1487 JUMP JUMPDEST PUSH2 0x795 JUMP JUMPDEST PUSH2 0x200 PUSH2 0x2A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x1414 JUMP JUMPDEST PUSH2 0x7A2 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x2B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x13A5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x305 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x32C SWAP1 PUSH2 0x1535 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x358 SWAP1 PUSH2 0x1535 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3A5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x37A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3A5 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 0x388 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BC CALLER DUP5 DUP5 PUSH2 0x906 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D2 DUP5 DUP5 DUP5 PUSH2 0xA5E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x471 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x47E DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x906 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x493 PUSH2 0xC76 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x3BC SWAP2 DUP6 SWAP1 PUSH2 0x4CF SWAP1 DUP7 SWAP1 PUSH2 0x1506 JUMP JUMPDEST PUSH2 0x906 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x54C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x556 DUP3 DUP3 PUSH2 0xD69 JUMP JUMPDEST POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x5D2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x624 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH2 0x624 SWAP1 DUP4 SWAP1 DUP6 SWAP1 PUSH2 0x4CF SWAP1 DUP6 SWAP1 PUSH2 0x151E JUMP JUMPDEST PUSH2 0x62E DUP3 DUP3 PUSH2 0xE48 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x6CB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x556 DUP3 DUP3 PUSH2 0xE48 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x32C SWAP1 PUSH2 0x1535 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x77E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x78B CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x906 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BC CALLER DUP5 DUP5 PUSH2 0xA5E JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x7F2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0x821 DUP13 PUSH2 0xFCD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0x87C DUP3 PUSH2 0xFF5 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x88C DUP3 DUP8 DUP8 DUP8 PUSH2 0x105E JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x8EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x8FA DUP11 DUP11 DUP11 PUSH2 0x906 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x981 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xADA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xB56 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xBE5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xC1C SWAP1 DUP5 SWAP1 PUSH2 0x1506 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xC68 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 CHAINID EQ ISZERO PUSH2 0xCC5 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH32 0x0 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 DUP3 DUP5 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP4 ADD MSTORE CHAINID PUSH1 0x80 DUP4 ADD MSTORE ADDRESS PUSH1 0xA0 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xC0 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xDBF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xDD1 SWAP2 SWAP1 PUSH2 0x1506 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0xDFE SWAP1 DUP5 SWAP1 PUSH2 0x1506 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xEC4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xF53 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xF82 SWAP1 DUP5 SWAP1 PUSH2 0x151E JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE SWAP1 JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x64D PUSH2 0x1002 PUSH2 0xC76 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x22 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x42 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x62 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x106F DUP8 DUP8 DUP8 DUP8 PUSH2 0x1086 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x107C DUP2 PUSH2 0x1173 JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0x10BD JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x3 PUSH2 0x116A JUMP JUMPDEST DUP5 PUSH1 0xFF AND PUSH1 0x1B EQ ISZERO DUP1 ISZERO PUSH2 0x10D5 JUMPI POP DUP5 PUSH1 0xFF AND PUSH1 0x1C EQ ISZERO JUMPDEST ISZERO PUSH2 0x10E6 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x4 PUSH2 0x116A JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x113A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1163 JUMPI PUSH1 0x0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0x116A JUMP JUMPDEST SWAP2 POP PUSH1 0x0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1187 JUMPI PUSH2 0x1187 PUSH2 0x1580 JUMP JUMPDEST EQ ISZERO PUSH2 0x1190 JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x11A4 JUMPI PUSH2 0x11A4 PUSH2 0x1580 JUMP JUMPDEST EQ ISZERO PUSH2 0x11F2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1206 JUMPI PUSH2 0x1206 PUSH2 0x1580 JUMP JUMPDEST EQ ISZERO PUSH2 0x1254 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1268 JUMPI PUSH2 0x1268 PUSH2 0x1580 JUMP JUMPDEST EQ ISZERO PUSH2 0x12DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x4 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x12F0 JUMPI PUSH2 0x12F0 PUSH2 0x1580 JUMP JUMPDEST EQ ISZERO PUSH2 0x1364 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x137E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1395 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x139E DUP3 PUSH2 0x1367 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x13B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13C1 DUP4 PUSH2 0x1367 JUMP JUMPDEST SWAP2 POP PUSH2 0x13CF PUSH1 0x20 DUP5 ADD PUSH2 0x1367 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x13ED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13F6 DUP5 PUSH2 0x1367 JUMP JUMPDEST SWAP3 POP PUSH2 0x1404 PUSH1 0x20 DUP6 ADD PUSH2 0x1367 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x142F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1438 DUP9 PUSH2 0x1367 JUMP JUMPDEST SWAP7 POP PUSH2 0x1446 PUSH1 0x20 DUP10 ADD PUSH2 0x1367 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x146A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x149A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14A3 DUP4 PUSH2 0x1367 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x14DE JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x14C2 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x14F0 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1519 JUMPI PUSH2 0x1519 PUSH2 0x156A JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1530 JUMPI PUSH2 0x1530 PUSH2 0x156A JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1549 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xFEF JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH7 0xC2263EA0784F2A DIV DUP2 PUSH16 0x30ADA113600C0197E60E41488DE07C POP PUSH7 0x2A457B64736F6C PUSH4 0x43000806 STOP CALLER ",
              "sourceMap": "342:3626:28:-:0;;;1049:95:4;996:148;;1500:503:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1376:52:4;;;;;;;;;;;;;;;;;1415:4;2340:564:16;;;;;;;;;;;;;-1:-1:-1;;;2340:564:16;;;1682:5:28;1689:7;1980:5:1;1972;:13;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1995:17:1;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;;2426:22:16;;;;;;;2482:25;;;;;;;;;2663;;;;2698:31;;;;2758:13;2739:32;;;;-1:-1:-1;3447:73:16;;2536:117;3447:73;;;2120:25:84;;;2161:18;;;2154:34;;;;2204:18;;;2197:34;;;;2247:18;;;;2240:34;;;;3514:4:16;2290:19:84;;;2283:61;3447:73:16;;;;;;;;;;2092:19:84;;;;3447:73:16;;;3437:84;;;;;;;;2781:85;;;2876:21;;-1:-1:-1;;;;;;;1716:34:28;::::2;1708:90;;;::::0;-1:-1:-1;;;1708:90:28;;3384:2:84;1708:90:28::2;::::0;::::2;3366:21:84::0;3423:2;3403:18;;;3396:30;3462:34;3442:18;;;3435:62;-1:-1:-1;;;3513:18:84;;;3506:41;3564:19;;1708:90:28::2;;;;;;;;;-1:-1:-1::0;;;;;;1808:24:28::2;::::0;;;;::::2;::::0;1851:13:::2;::::0;::::2;1843:58;;;::::0;-1:-1:-1;;;1843:58:28;;3023:2:84;1843:58:28::2;::::0;::::2;3005:21:84::0;;;3042:18;;;3035:30;3101:34;3081:18;;;3074:62;3153:18;;1843:58:28::2;2995:182:84::0;1843:58:28::2;1911:21:::0;::::2;::::0;;;;::::2;::::0;1948:48:::2;::::0;-1:-1:-1;;;;;1948:48:28;::::2;::::0;::::2;::::0;::::2;::::0;1957:5;;1964:7;;1923:9;;1948:48:::2;:::i;:::-;;;;;;;;1500:503:::0;;;;342:3626;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;342:3626:28;;;-1:-1:-1;342:3626:28;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:686:84;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;;;;;224:10:84;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:84;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;577:3;570:4;565:2;557:6;553:15;549:26;546:35;543:2;;;594:1;591;584:12;543:2;607:63;667:2;660:4;652:6;648:17;641:4;633:6;629:17;607:63;:::i;:::-;688:6;78:622;-1:-1:-1;;;;;;78:622:84:o;705:888::-;820:6;828;836;844;897:3;885:9;876:7;872:23;868:33;865:2;;;914:1;911;904:12;865:2;941:16;;-1:-1:-1;;;;;1006:14:84;;;1003:2;;;1033:1;1030;1023:12;1003:2;1056:61;1109:7;1100:6;1089:9;1085:22;1056:61;:::i;:::-;1046:71;;1163:2;1152:9;1148:18;1142:25;1126:41;;1192:2;1182:8;1179:16;1176:2;;;1208:1;1205;1198:12;1176:2;;1231:63;1286:7;1275:8;1264:9;1260:24;1231:63;:::i;:::-;1221:73;;;1337:2;1326:9;1322:18;1316:25;1381:4;1374:5;1370:16;1363:5;1360:27;1350:2;;1401:1;1398;1391:12;1350:2;1474;1459:18;;1453:25;1424:5;;-1:-1:-1;;;;;;1509:33:84;;1497:46;;1487:2;;1557:1;1554;1547:12;1487:2;855:738;;;;-1:-1:-1;855:738:84;;-1:-1:-1;;855:738:84:o;1598:258::-;1640:3;1678:5;1672:12;1705:6;1700:3;1693:19;1721:63;1777:6;1770:4;1765:3;1761:14;1754:4;1747:5;1743:16;1721:63;:::i;:::-;1838:2;1817:15;-1:-1:-1;;1813:29:84;1804:39;;;;1845:4;1800:50;;1648:208;-1:-1:-1;;1648:208:84:o;2355:461::-;2576:2;2565:9;2558:21;2539:4;2602:45;2643:2;2632:9;2628:18;2620:6;2602:45;:::i;:::-;2695:9;2687:6;2683:22;2678:2;2667:9;2663:18;2656:50;2723:33;2749:6;2741;2723:33;:::i;:::-;2715:41;;;2804:4;2796:6;2792:17;2787:2;2776:9;2772:18;2765:45;2548:268;;;;;;:::o;3594:258::-;3666:1;3676:113;3690:6;3687:1;3684:13;3676:113;;;3766:11;;;3760:18;3747:11;;;3740:39;3712:2;3705:10;3676:113;;;3807:6;3804:1;3801:13;3798:2;;;3842:1;3833:6;3828:3;3824:16;3817:27;3798:2;;3647:205;;;:::o;3857:380::-;3936:1;3932:12;;;;3979;;;4000:2;;4054:4;4046:6;4042:17;4032:27;;4000:2;4107;4099:6;4096:14;4076:18;4073:38;4070:2;;;4153:10;4148:3;4144:20;4141:1;4134:31;4188:4;4185:1;4178:15;4216:4;4213:1;4206:15;4070:2;;3912:325;;;:::o;4242:127::-;4303:10;4298:3;4294:20;4291:1;4284:31;4334:4;4331:1;4324:15;4358:4;4355:1;4348:15;4274:95;342:3626:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@DOMAIN_SEPARATOR_827": {
                  "entryPoint": 1161,
                  "id": 827,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_afterTokenTransfer_584": {
                  "entryPoint": null,
                  "id": 584,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_562": {
                  "entryPoint": 2310,
                  "id": 562,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_573": {
                  "entryPoint": null,
                  "id": 573,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_3178": {
                  "entryPoint": null,
                  "id": 3178,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_burn_517": {
                  "entryPoint": 3656,
                  "id": 517,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_domainSeparatorV4_3151": {
                  "entryPoint": 3190,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_hashTypedDataV4_3194": {
                  "entryPoint": 4085,
                  "id": 3194,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_mint_445": {
                  "entryPoint": 3433,
                  "id": 445,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_msgSender_2403": {
                  "entryPoint": null,
                  "id": 2403,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_throwError_2753": {
                  "entryPoint": 4467,
                  "id": 2753,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_transfer_389": {
                  "entryPoint": 2654,
                  "id": 389,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_useNonce_856": {
                  "entryPoint": 4045,
                  "id": 856,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@allowance_177": {
                  "entryPoint": null,
                  "id": 177,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_198": {
                  "entryPoint": 943,
                  "id": 198,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_138": {
                  "entryPoint": null,
                  "id": 138,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@controllerBurnFrom_5277": {
                  "entryPoint": 1370,
                  "id": 5277,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@controllerBurn_5242": {
                  "entryPoint": 1619,
                  "id": 5242,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controllerMint_5225": {
                  "entryPoint": 1236,
                  "id": 5225,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controller_5123": {
                  "entryPoint": null,
                  "id": 5123,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@current_2431": {
                  "entryPoint": null,
                  "id": 2431,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_5287": {
                  "entryPoint": null,
                  "id": 5287,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_312": {
                  "entryPoint": 1764,
                  "id": 312,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_273": {
                  "entryPoint": 1176,
                  "id": 273,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increment_2445": {
                  "entryPoint": null,
                  "id": 2445,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@name_94": {
                  "entryPoint": 797,
                  "id": 94,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@nonces_816": {
                  "entryPoint": 1587,
                  "id": 816,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@permit_800": {
                  "entryPoint": 1954,
                  "id": 800,
                  "parameterSlots": 7,
                  "returnSlots": 0
                },
                "@recover_3019": {
                  "entryPoint": 4190,
                  "id": 3019,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@symbol_104": {
                  "entryPoint": 1749,
                  "id": 104,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@toTypedDataHash_3056": {
                  "entryPoint": null,
                  "id": 3056,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@totalSupply_124": {
                  "entryPoint": null,
                  "id": 124,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_246": {
                  "entryPoint": 965,
                  "id": 246,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_159": {
                  "entryPoint": 1941,
                  "id": 159,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@tryRecover_2986": {
                  "entryPoint": 4230,
                  "id": 2986,
                  "parameterSlots": 4,
                  "returnSlots": 2
                },
                "abi_decode_address": {
                  "entryPoint": 4967,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 4995,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 5029,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 5080,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32": {
                  "entryPoint": 5140,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 7
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 5255,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 7,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5297,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 5382,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 5406,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 5429,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 5482,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x21": {
                  "entryPoint": 5504,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:13267:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:84",
                            "type": ""
                          }
                        ],
                        "src": "215:186:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:84",
                            "type": ""
                          }
                        ],
                        "src": "406:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:84",
                            "type": ""
                          }
                        ],
                        "src": "671:328:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1174:523:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1221:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1230:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1233:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1223:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1223:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1223:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1195:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1204:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1191:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1191:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1216:3:84",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1187:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1187:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1184:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1246:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1275:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1256:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1256:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1246:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1294:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1327:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1338:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1323:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1323:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1304:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1304:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1294:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1351:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1378:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1389:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1374:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1374:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1361:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1361:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1351:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1402:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1429:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1440:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1425:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1425:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1412:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1412:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1402:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1453:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1483:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1494:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1479:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1479:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1466:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1466:33:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1457:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1547:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1556:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1559:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1549:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1549:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1549:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1521:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1532:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1539:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1528:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1528:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1518:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1518:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1511:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1511:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1508:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1572:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1582:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "1572:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1596:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1623:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1634:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1619:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1619:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1606:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1606:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "1596:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1648:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1675:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1686:3:84",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1671:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1671:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1658:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1658:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value6",
                                  "nodeType": "YulIdentifier",
                                  "src": "1648:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1092:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1103:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1115:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1123:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1131:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1139:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1147:6:84",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "1155:6:84",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "1163:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1004:693:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1789:167:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1835:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1844:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1847:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1837:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1837:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1837:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1810:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1819:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1806:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1806:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1831:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1802:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1802:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1799:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1860:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1889:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1870:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1870:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1860:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1908:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1935:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1946:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1931:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1931:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1918:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1918:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1908:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1747:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1758:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1770:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1778:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1702:254:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2209:196:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2226:3:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2231:66:84",
                                    "type": "",
                                    "value": "0x1901000000000000000000000000000000000000000000000000000000000000"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2219:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2219:79:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2219:79:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2318:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2323:1:84",
                                        "type": "",
                                        "value": "2"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2314:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2314:11:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2327:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2307:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2307:27:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2307:27:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2354:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2359:2:84",
                                        "type": "",
                                        "value": "34"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2350:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2350:12:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2364:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2343:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2343:28:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2343:28:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2380:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2391:3:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2396:2:84",
                                    "type": "",
                                    "value": "66"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2387:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2387:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "2380:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2177:3:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2182:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2190:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "2201:3:84",
                            "type": ""
                          }
                        ],
                        "src": "1961:444:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2511:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2521:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2533:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2544:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2529:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2529:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2521:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2563:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2578:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2586:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2574:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2574:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2556:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2556:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2556:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2480:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2491:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2502:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2410:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2736:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2746:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2758:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2769:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2754:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2754:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2746:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2788:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "2813:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "2806:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2806:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "2799:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2799:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2781:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2781:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2781:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2705:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2716:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2727:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2641:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2934:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2944:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2956:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2967:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2952:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2952:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2944:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2986:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2997:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2979:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2979:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2979:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2903:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2914:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2925:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2833:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3256:373:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3266:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3278:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3289:3:84",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3274:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3274:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3266:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3309:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3320:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3302:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3302:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3302:25:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3336:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3346:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3340:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3408:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3419:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3404:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3404:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3428:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3436:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3424:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3424:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3397:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3397:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3397:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3460:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3471:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3456:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3456:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "3480:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3488:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3476:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3476:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3449:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3449:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3449:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3512:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3523:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3508:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3508:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3528:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3501:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3501:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3501:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3555:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3566:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3551:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3551:19:84"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3572:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3544:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3544:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3544:35:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3599:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3610:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3595:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3595:19:84"
                                  },
                                  {
                                    "name": "value5",
                                    "nodeType": "YulIdentifier",
                                    "src": "3616:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3588:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3588:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3588:35:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3185:9:84",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "3196:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "3204:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "3212:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3220:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3228:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3236:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3247:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3015:614:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3847:299:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3857:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3869:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3880:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3865:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3865:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3857:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3900:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3911:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3893:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3893:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3893:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3938:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3949:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3934:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3934:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3954:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3927:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3927:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3927:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3981:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3992:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3977:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3977:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3997:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3970:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3970:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3970:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4024:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4035:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4020:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4020:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "4040:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4013:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4013:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4013:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4067:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4078:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4063:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4063:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "4088:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4096:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4084:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4084:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4056:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4056:84:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4056:84:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3784:9:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "3795:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "3803:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3811:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3819:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3827:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3838:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3634:512:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4332:217:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4342:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4354:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4365:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4350:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4350:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4342:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4385:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4396:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4378:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4378:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4378:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4423:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4434:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4419:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4419:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4443:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4451:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4439:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4439:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4412:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4412:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4412:45:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4477:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4488:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4473:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4473:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4493:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4466:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4466:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4466:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4520:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4531:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4516:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4516:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "4536:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4509:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4509:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4509:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4277:9:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "4288:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "4296:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4304:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4312:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4323:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4151:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4675:535:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4685:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4695:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4689:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4713:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4724:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4706:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4706:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4706:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4736:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4756:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4750:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4750:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4740:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4783:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4794:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4779:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4779:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4799:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4772:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4772:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4772:34:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4815:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4824:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4819:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4884:90:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4913:9:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4924:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4909:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4909:17:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4928:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4905:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4905:26:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "4947:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "4955:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "4943:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "4943:14:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4959:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4939:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4939:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "4933:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4933:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4898:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4898:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4898:66:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4845:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4848:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4842:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4842:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4856:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4858:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4867:1:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4870:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4863:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4863:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4858:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4838:3:84",
                                "statements": []
                              },
                              "src": "4834:140:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5008:66:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "5037:9:84"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "5048:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "5033:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "5033:22:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "5057:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "5029:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5029:31:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5062:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5022:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5022:42:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5022:42:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4989:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4992:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4986:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4986:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4983:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5083:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5099:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "5118:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5126:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5114:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5114:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5131:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "5110:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5110:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5095:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5095:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5201:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5091:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5091:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5083:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4644:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4655:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4666:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4554:656:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5389:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5406:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5417:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5399:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5399:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5399:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5440:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5451:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5436:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5436:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5456:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5429:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5429:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5429:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5479:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5490:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5475:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5475:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5495:26:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5468:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5468:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5468:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5531:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5543:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5554:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5539:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5539:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5531:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5366:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5380:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5215:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5742:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5759:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5770:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5752:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5752:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5752:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5793:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5804:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5789:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5789:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5809:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5782:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5782:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5782:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5832:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5843:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5828:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5828:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5848:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5821:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5821:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5821:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5903:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5914:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5899:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5899:18:84"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5919:5:84",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5892:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5892:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5892:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5934:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5946:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5957:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5942:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5942:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5934:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5719:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5733:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5568:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6146:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6163:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6174:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6156:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6156:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6156:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6197:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6208:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6193:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6193:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6213:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6186:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6186:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6186:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6236:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6247:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6232:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6232:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6252:34:84",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6225:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6225:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6225:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6307:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6318:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6303:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6303:18:84"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6323:4:84",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6296:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6296:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6296:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6337:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6349:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6360:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6345:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6345:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6337:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6123:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6137:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5972:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6549:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6566:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6577:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6559:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6559:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6559:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6600:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6611:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6596:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6596:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6616:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6589:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6589:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6589:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6639:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6650:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6635:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6635:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265206c656e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6655:33:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature length"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6628:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6628:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6628:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6698:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6710:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6721:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6706:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6706:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6698:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6526:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6540:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6375:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6909:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6926:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6937:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6919:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6919:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6919:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6960:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6971:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6956:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6956:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6976:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6949:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6949:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6949:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6999:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7010:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6995:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6995:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7015:34:84",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6988:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6988:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6988:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7070:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7081:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7066:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7066:18:84"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7086:4:84",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7059:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7059:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7059:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7100:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7112:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7123:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7108:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7108:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7100:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6886:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6900:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6735:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7312:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7329:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7340:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7322:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7322:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7322:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7363:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7374:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7359:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7359:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7379:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7352:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7352:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7352:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7402:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7413:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7398:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7398:18:84"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a206578706972656420646561646c696e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7418:31:84",
                                    "type": "",
                                    "value": "ERC20Permit: expired deadline"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7391:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7391:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7391:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7459:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7471:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7482:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7467:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7467:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7459:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7289:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7303:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7138:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7670:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7687:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7698:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7680:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7680:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7680:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7721:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7732:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7717:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7717:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7737:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7710:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7710:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7710:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7760:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7771:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7756:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7756:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7776:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7749:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7749:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7749:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7831:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7842:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7827:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7827:18:84"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7847:8:84",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7820:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7820:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7820:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7865:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7877:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7888:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7873:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7873:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7865:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7647:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7661:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7496:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8077:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8094:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8105:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8087:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8087:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8087:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8128:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8139:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8124:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8124:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8144:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8117:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8117:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8117:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8167:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8178:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8163:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8163:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202773272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8183:34:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 's' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8156:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8156:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8156:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8238:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8249:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8234:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8234:18:84"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8254:4:84",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8227:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8227:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8227:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8268:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8280:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8291:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8276:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8276:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8268:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8054:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8068:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7903:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8480:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8497:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8508:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8490:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8490:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8490:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8531:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8542:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8527:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8527:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8547:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8520:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8520:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8520:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8570:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8581:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8566:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8566:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202776272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8586:34:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 'v' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8559:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8559:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8559:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8641:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8652:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8637:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8637:18:84"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8657:4:84",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8630:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8630:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8630:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8671:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8683:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8694:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8679:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8679:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8671:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8457:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8471:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8306:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8883:180:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8900:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8911:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8893:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8893:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8893:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8934:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8945:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8930:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8930:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8950:2:84",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8923:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8923:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8923:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8973:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8984:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8969:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8969:18:84"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8989:32:84",
                                    "type": "",
                                    "value": "ERC20Permit: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8962:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8962:60:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8962:60:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9031:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9043:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9054:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9039:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9039:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9031:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8860:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8874:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8709:354:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9242:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9259:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9270:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9252:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9252:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9252:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9293:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9304:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9289:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9289:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9309:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9282:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9282:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9282:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9332:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9343:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9328:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9328:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9348:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9321:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9321:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9321:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9403:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9414:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9399:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9399:18:84"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9419:10:84",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9392:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9392:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9392:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9439:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9451:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9462:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9447:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9447:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9439:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9219:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9233:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9068:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9651:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9668:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9679:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9661:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9661:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9661:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9702:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9713:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9698:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9698:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9718:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9691:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9691:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9691:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9741:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9752:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9737:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9737:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9757:34:84",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9730:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9730:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9730:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9812:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9823:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9808:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9808:18:84"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9828:3:84",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9801:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9801:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9801:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9841:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9853:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9864:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9849:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9849:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9841:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9628:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9642:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9477:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10053:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10070:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10081:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10063:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10063:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10063:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10104:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10115:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10100:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10100:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10120:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10093:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10093:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10093:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10143:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10154:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10139:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10139:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10159:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10132:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10132:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10132:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10214:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10225:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10210:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10210:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10230:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10203:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10203:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10203:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10247:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10259:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10270:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10255:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10255:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10247:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10030:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10044:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9879:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10459:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10476:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10487:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10469:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10469:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10469:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10510:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10521:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10506:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10506:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10526:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10499:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10499:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10499:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10549:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10560:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10545:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10545:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10565:34:84",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10538:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10538:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10538:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10620:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10631:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10616:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10616:18:84"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10636:6:84",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10609:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10609:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10609:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10652:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10664:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10675:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10660:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10660:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10652:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10436:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10450:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10285:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10864:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10881:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10892:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10874:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10874:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10874:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10915:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10926:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10911:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10911:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10931:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10904:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10904:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10904:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10954:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10965:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10950:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10950:18:84"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10970:33:84",
                                    "type": "",
                                    "value": "ControlledToken/only-controller"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10943:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10943:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10943:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11013:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11025:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11036:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11021:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11021:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11013:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10841:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10855:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10690:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11224:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11241:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11252:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11234:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11234:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11234:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11275:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11286:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11271:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11271:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11291:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11264:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11264:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11264:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11314:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11325:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11310:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11310:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11330:34:84",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11303:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11303:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11303:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11385:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11396:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11381:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11381:18:84"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11401:7:84",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11374:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11374:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11374:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11418:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11430:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11441:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11426:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11426:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11418:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11201:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11215:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11050:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11630:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11647:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11658:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11640:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11640:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11640:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11681:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11692:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11677:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11677:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11697:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11670:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11670:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11670:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11720:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11731:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11716:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11716:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11736:33:84",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11709:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11709:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11709:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11779:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11791:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11802:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11787:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11787:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11779:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11607:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11621:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11456:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11917:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11927:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11939:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11950:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11935:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11935:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11927:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11969:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11980:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11962:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11962:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11962:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11886:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11897:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11908:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11816:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12095:87:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12105:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12117:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12128:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12113:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12113:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12105:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12147:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12162:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12170:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12158:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12158:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12140:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12140:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12140:36:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12064:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12075:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12086:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11998:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12235:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12262:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12264:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12264:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12264:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12251:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "12258:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "12254:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12254:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12248:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12248:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12245:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12293:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12304:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12307:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12300:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12300:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "12293:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12218:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12221:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12227:3:84",
                            "type": ""
                          }
                        ],
                        "src": "12187:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12369:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12391:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12393:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12393:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12393:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12385:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12388:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12382:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12382:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12379:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12422:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12434:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12437:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "12430:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12430:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "12422:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12351:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12354:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "12360:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12320:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12505:382:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12515:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12529:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "12532:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "12525:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12525:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "12515:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12546:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "12576:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12582:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12572:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12572:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "12550:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12623:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12625:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "12639:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12647:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "12635:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12635:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "12625:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "12603:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "12596:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12596:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12593:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12713:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12734:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12737:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12727:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12727:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12727:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12835:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12838:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12828:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12828:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12828:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12863:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12866:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "12856:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12856:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12856:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "12669:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "12692:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12700:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "12689:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12689:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "12666:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12666:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12663:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "12485:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "12494:6:84",
                            "type": ""
                          }
                        ],
                        "src": "12450:437:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12924:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12941:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12944:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12934:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12934:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12934:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13038:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13041:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13031:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13031:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13031:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13062:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13065:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13055:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13055:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13055:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "12892:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13113:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13130:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13133:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13123:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13123:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13123:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13227:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13230:4:84",
                                    "type": "",
                                    "value": "0x21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13220:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13220:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13220:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13251:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13254:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13244:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13244:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13244:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x21",
                        "nodeType": "YulFunctionDefinition",
                        "src": "13081:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        value3 := calldataload(add(headStart, 96))\n        let value := calldataload(add(headStart, 128))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value4 := value\n        value5 := calldataload(add(headStart, 160))\n        value6 := calldataload(add(headStart, 192))\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        mstore(pos, 0x1901000000000000000000000000000000000000000000000000000000000000)\n        mstore(add(pos, 2), value0)\n        mstore(add(pos, 34), value1)\n        end := add(pos, 66)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        mstore(headStart, value0)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), and(value2, _1))\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: burn amount exceeds balan\")\n        mstore(add(headStart, 96), \"ce\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature length\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"ERC20Permit: expired deadline\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature 's' val\")\n        mstore(add(headStart, 96), \"ue\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature 'v' val\")\n        mstore(add(headStart, 96), \"ue\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"ERC20Permit: invalid signature\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC20: burn from the zero addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ControlledToken/only-controller\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "716": [
                  {
                    "length": 32,
                    "start": 2038
                  }
                ],
                "3063": [
                  {
                    "length": 32,
                    "start": 3235
                  }
                ],
                "3065": [
                  {
                    "length": 32,
                    "start": 3194
                  }
                ],
                "3067": [
                  {
                    "length": 32,
                    "start": 3318
                  }
                ],
                "3069": [
                  {
                    "length": 32,
                    "start": 3355
                  }
                ],
                "3071": [
                  {
                    "length": 32,
                    "start": 3276
                  }
                ],
                "5123": [
                  {
                    "length": 32,
                    "start": 739
                  },
                  {
                    "length": 32,
                    "start": 1247
                  },
                  {
                    "length": 32,
                    "start": 1381
                  },
                  {
                    "length": 32,
                    "start": 1630
                  }
                ],
                "5126": [
                  {
                    "length": 32,
                    "start": 424
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101365760003560e01c806370a08231116100b2578063a457c2d711610081578063d505accf11610066578063d505accf14610292578063dd62ed3e146102a5578063f77c4791146102de57600080fd5b8063a457c2d71461026c578063a9059cbb1461027f57600080fd5b806370a08231146102155780637ecebe001461023e57806390596dd11461025157806395d89b411461026457600080fd5b8063313ce5671161010957806339509351116100ee57806339509351146101da5780635d7b0758146101ed578063631b5dfb1461020257600080fd5b8063313ce567146101a15780633644e515146101d257600080fd5b806306fdde031461013b578063095ea7b31461015957806318160ddd1461017c57806323b872dd1461018e575b600080fd5b61014361031d565b60405161015091906114b1565b60405180910390f35b61016c610167366004611487565b6103af565b6040519015158152602001610150565b6002545b604051908152602001610150565b61016c61019c3660046113d8565b6103c5565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610150565b610180610489565b61016c6101e8366004611487565b610498565b6102006101fb366004611487565b6104d4565b005b6102006102103660046113d8565b61055a565b610180610223366004611383565b6001600160a01b031660009081526020819052604090205490565b61018061024c366004611383565b610633565b61020061025f366004611487565b610653565b6101436106d5565b61016c61027a366004611487565b6106e4565b61016c61028d366004611487565b610795565b6102006102a0366004611414565b6107a2565b6101806102b33660046113a5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103057f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610150565b60606003805461032c90611535565b80601f016020809104026020016040519081016040528092919081815260200182805461035890611535565b80156103a55780601f1061037a576101008083540402835291602001916103a5565b820191906000526020600020905b81548152906001019060200180831161038857829003601f168201915b5050505050905090565b60006103bc338484610906565b50600192915050565b60006103d2848484610a5e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104715760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61047e8533858403610906565b506001949350505050565b6000610493610c76565b905090565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103bc9185906104cf908690611506565b610906565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461054c5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610468565b6105568282610d69565b5050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146105d25760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610468565b816001600160a01b0316836001600160a01b031614610624576001600160a01b0382811660009081526001602090815260408083209387168352929052205461062490839085906104cf90859061151e565b61062e8282610e48565b505050565b6001600160a01b0381166000908152600560205260408120545b92915050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146106cb5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610468565b6105568282610e48565b60606004805461032c90611535565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561077e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610468565b61078b3385858403610906565b5060019392505050565b60006103bc338484610a5e565b834211156107f25760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610468565b60007f00000000000000000000000000000000000000000000000000000000000000008888886108218c610fcd565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061087c82610ff5565b9050600061088c8287878761105e565b9050896001600160a01b0316816001600160a01b0316146108ef5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610468565b6108fa8a8a8a610906565b50505050505050505050565b6001600160a01b0383166109815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b0382166109fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ada5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b038216610b565760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b03831660009081526020819052604090205481811015610be55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c1c908490611506565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c6891815260200190565b60405180910390a350505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461415610cc557507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b038216610dbf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610468565b8060026000828254610dd19190611506565b90915550506001600160a01b03821660009081526020819052604081208054839290610dfe908490611506565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610ec45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b03821660009081526020819052604090205481811015610f535760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610f8290849061151e565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b600061064d611002610c76565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061106f87878787611086565b9150915061107c81611173565b5095945050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156110bd575060009050600361116a565b8460ff16601b141580156110d557508460ff16601c14155b156110e6575060009050600461116a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561113a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166111635760006001925092505061116a565b9150600090505b94509492505050565b600081600481111561118757611187611580565b14156111905750565b60018160048111156111a4576111a4611580565b14156111f25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610468565b600281600481111561120657611206611580565b14156112545760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610468565b600381600481111561126857611268611580565b14156112dc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610468565b60048160048111156112f0576112f0611580565b14156113645760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610468565b50565b80356001600160a01b038116811461137e57600080fd5b919050565b60006020828403121561139557600080fd5b61139e82611367565b9392505050565b600080604083850312156113b857600080fd5b6113c183611367565b91506113cf60208401611367565b90509250929050565b6000806000606084860312156113ed57600080fd5b6113f684611367565b925061140460208501611367565b9150604084013590509250925092565b600080600080600080600060e0888a03121561142f57600080fd5b61143888611367565b965061144660208901611367565b95506040880135945060608801359350608088013560ff8116811461146a57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561149a57600080fd5b6114a383611367565b946020939093013593505050565b600060208083528351808285015260005b818110156114de578581018301518582016040015282016114c2565b818111156114f0576000604083870101525b50601f01601f1916929092016040019392505050565b600082198211156115195761151961156a565b500190565b6000828210156115305761153061156a565b500390565b600181811c9082168061154957607f821691505b60208210811415610fef57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea264697066735822122066c2263ea0784f2a04816f0030ada113600c0197e60e41488de07c50662a457b64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x136 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xD505ACCF GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x292 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2A5 JUMPI DUP1 PUSH4 0xF77C4791 EQ PUSH2 0x2DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x26C JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x27F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x215 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x23E JUMPI DUP1 PUSH4 0x90596DD1 EQ PUSH2 0x251 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x264 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0x109 JUMPI DUP1 PUSH4 0x39509351 GT PUSH2 0xEE JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1DA JUMPI DUP1 PUSH4 0x5D7B0758 EQ PUSH2 0x1ED JUMPI DUP1 PUSH4 0x631B5DFB EQ PUSH2 0x202 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x1D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x13B JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x159 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x18E JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x143 PUSH2 0x31D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x150 SWAP2 SWAP1 PUSH2 0x14B1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16C PUSH2 0x167 CALLDATASIZE PUSH1 0x4 PUSH2 0x1487 JUMP JUMPDEST PUSH2 0x3AF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x19C CALLDATASIZE PUSH1 0x4 PUSH2 0x13D8 JUMP JUMPDEST PUSH2 0x3C5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x489 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x1E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x1487 JUMP JUMPDEST PUSH2 0x498 JUMP JUMPDEST PUSH2 0x200 PUSH2 0x1FB CALLDATASIZE PUSH1 0x4 PUSH2 0x1487 JUMP JUMPDEST PUSH2 0x4D4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x200 PUSH2 0x210 CALLDATASIZE PUSH1 0x4 PUSH2 0x13D8 JUMP JUMPDEST PUSH2 0x55A JUMP JUMPDEST PUSH2 0x180 PUSH2 0x223 CALLDATASIZE PUSH1 0x4 PUSH2 0x1383 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x24C CALLDATASIZE PUSH1 0x4 PUSH2 0x1383 JUMP JUMPDEST PUSH2 0x633 JUMP JUMPDEST PUSH2 0x200 PUSH2 0x25F CALLDATASIZE PUSH1 0x4 PUSH2 0x1487 JUMP JUMPDEST PUSH2 0x653 JUMP JUMPDEST PUSH2 0x143 PUSH2 0x6D5 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x27A CALLDATASIZE PUSH1 0x4 PUSH2 0x1487 JUMP JUMPDEST PUSH2 0x6E4 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x28D CALLDATASIZE PUSH1 0x4 PUSH2 0x1487 JUMP JUMPDEST PUSH2 0x795 JUMP JUMPDEST PUSH2 0x200 PUSH2 0x2A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x1414 JUMP JUMPDEST PUSH2 0x7A2 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x2B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x13A5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x305 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x32C SWAP1 PUSH2 0x1535 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x358 SWAP1 PUSH2 0x1535 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3A5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x37A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3A5 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 0x388 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BC CALLER DUP5 DUP5 PUSH2 0x906 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D2 DUP5 DUP5 DUP5 PUSH2 0xA5E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x471 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x47E DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x906 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x493 PUSH2 0xC76 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x3BC SWAP2 DUP6 SWAP1 PUSH2 0x4CF SWAP1 DUP7 SWAP1 PUSH2 0x1506 JUMP JUMPDEST PUSH2 0x906 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x54C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x556 DUP3 DUP3 PUSH2 0xD69 JUMP JUMPDEST POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x5D2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x624 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH2 0x624 SWAP1 DUP4 SWAP1 DUP6 SWAP1 PUSH2 0x4CF SWAP1 DUP6 SWAP1 PUSH2 0x151E JUMP JUMPDEST PUSH2 0x62E DUP3 DUP3 PUSH2 0xE48 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x6CB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x556 DUP3 DUP3 PUSH2 0xE48 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x32C SWAP1 PUSH2 0x1535 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x77E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x78B CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x906 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BC CALLER DUP5 DUP5 PUSH2 0xA5E JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x7F2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0x821 DUP13 PUSH2 0xFCD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0x87C DUP3 PUSH2 0xFF5 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x88C DUP3 DUP8 DUP8 DUP8 PUSH2 0x105E JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x8EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x8FA DUP11 DUP11 DUP11 PUSH2 0x906 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x981 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xADA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xB56 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xBE5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xC1C SWAP1 DUP5 SWAP1 PUSH2 0x1506 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xC68 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 CHAINID EQ ISZERO PUSH2 0xCC5 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH32 0x0 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 DUP3 DUP5 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP4 ADD MSTORE CHAINID PUSH1 0x80 DUP4 ADD MSTORE ADDRESS PUSH1 0xA0 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xC0 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xDBF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xDD1 SWAP2 SWAP1 PUSH2 0x1506 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0xDFE SWAP1 DUP5 SWAP1 PUSH2 0x1506 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xEC4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xF53 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xF82 SWAP1 DUP5 SWAP1 PUSH2 0x151E JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE SWAP1 JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x64D PUSH2 0x1002 PUSH2 0xC76 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x22 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x42 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x62 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x106F DUP8 DUP8 DUP8 DUP8 PUSH2 0x1086 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x107C DUP2 PUSH2 0x1173 JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0x10BD JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x3 PUSH2 0x116A JUMP JUMPDEST DUP5 PUSH1 0xFF AND PUSH1 0x1B EQ ISZERO DUP1 ISZERO PUSH2 0x10D5 JUMPI POP DUP5 PUSH1 0xFF AND PUSH1 0x1C EQ ISZERO JUMPDEST ISZERO PUSH2 0x10E6 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x4 PUSH2 0x116A JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x113A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1163 JUMPI PUSH1 0x0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0x116A JUMP JUMPDEST SWAP2 POP PUSH1 0x0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1187 JUMPI PUSH2 0x1187 PUSH2 0x1580 JUMP JUMPDEST EQ ISZERO PUSH2 0x1190 JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x11A4 JUMPI PUSH2 0x11A4 PUSH2 0x1580 JUMP JUMPDEST EQ ISZERO PUSH2 0x11F2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1206 JUMPI PUSH2 0x1206 PUSH2 0x1580 JUMP JUMPDEST EQ ISZERO PUSH2 0x1254 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1268 JUMPI PUSH2 0x1268 PUSH2 0x1580 JUMP JUMPDEST EQ ISZERO PUSH2 0x12DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x4 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x12F0 JUMPI PUSH2 0x12F0 PUSH2 0x1580 JUMP JUMPDEST EQ ISZERO PUSH2 0x1364 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x137E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1395 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x139E DUP3 PUSH2 0x1367 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x13B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13C1 DUP4 PUSH2 0x1367 JUMP JUMPDEST SWAP2 POP PUSH2 0x13CF PUSH1 0x20 DUP5 ADD PUSH2 0x1367 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x13ED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13F6 DUP5 PUSH2 0x1367 JUMP JUMPDEST SWAP3 POP PUSH2 0x1404 PUSH1 0x20 DUP6 ADD PUSH2 0x1367 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x142F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1438 DUP9 PUSH2 0x1367 JUMP JUMPDEST SWAP7 POP PUSH2 0x1446 PUSH1 0x20 DUP10 ADD PUSH2 0x1367 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x146A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x149A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14A3 DUP4 PUSH2 0x1367 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x14DE JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x14C2 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x14F0 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1519 JUMPI PUSH2 0x1519 PUSH2 0x156A JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1530 JUMPI PUSH2 0x1530 PUSH2 0x156A JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1549 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xFEF JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH7 0xC2263EA0784F2A DIV DUP2 PUSH16 0x30ADA113600C0197E60E41488DE07C POP PUSH7 0x2A457B64736F6C PUSH4 0x43000806 STOP CALLER ",
              "sourceMap": "342:3626:28:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4181:166;;;;;;:::i;:::-;;:::i;:::-;;;2806:14:84;;2799:22;2781:41;;2769:2;2754:18;4181:166:1;2736:92:84;3172:106:1;3259:12;;3172:106;;;2979:25:84;;;2967:2;2952:18;3172:106:1;2934:76:84;4814:478:1;;;;;;:::i;:::-;;:::i;3868:98:28:-;;;12170:4:84;3950:9:28;12158:17:84;12140:36;;12128:2;12113:18;3868:98:28;12095:87:84;2426:113:4;;;:::i;5687:212:1:-;;;;;;:::i;:::-;;:::i;2328:171:28:-;;;;;;:::i;:::-;;:::i;:::-;;3357:312;;;;;;:::i;:::-;;:::i;3336:125:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3436:18:1;3410:7;3436:18;;;;;;;;;;;;3336:125;2176:126:4;;;;;;:::i;:::-;;:::i;2774:171:28:-;;;;;;:::i;:::-;;:::i;2295:102:1:-;;;:::i;6386:405::-;;;;;;:::i;:::-;;:::i;3664:172::-;;;;;;:::i;:::-;;:::i;1489:626:4:-;;;;;;:::i;:::-;;:::i;3894:149:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4009:18:1;;;3983:7;4009:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3894:149;540:44:28;;;;;;;;-1:-1:-1;;;;;2574:55:84;;;2556:74;;2544:2;2529:18;540:44:28;2511:125:84;2084:98:1;2138:13;2170:5;2163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98;:::o;4181:166::-;4264:4;4280:39;666:10:12;4303:7:1;4312:6;4280:8;:39::i;:::-;-1:-1:-1;4336:4:1;4181:166;;;;:::o;4814:478::-;4950:4;4966:36;4976:6;4984:9;4995:6;4966:9;:36::i;:::-;-1:-1:-1;;;;;5040:19:1;;5013:24;5040:19;;;:11;:19;;;;;;;;666:10:12;5040:33:1;;;;;;;;5091:26;;;;5083:79;;;;-1:-1:-1;;;5083:79:1;;9270:2:84;5083:79:1;;;9252:21:84;9309:2;9289:18;;;9282:30;9348:34;9328:18;;;9321:62;9419:10;9399:18;;;9392:38;9447:19;;5083:79:1;;;;;;;;;5196:57;5205:6;666:10:12;5246:6:1;5227:16;:25;5196:8;:57::i;:::-;-1:-1:-1;5281:4:1;;4814:478;-1:-1:-1;;;;4814:478:1:o;2426:113:4:-;2486:7;2512:20;:18;:20::i;:::-;2505:27;;2426:113;:::o;5687:212:1:-;666:10:12;5775:4:1;5823:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5823:34:1;;;;;;;;;;5775:4;;5791:80;;5814:7;;5823:47;;5860:10;;5823:47;:::i;:::-;5791:8;:80::i;2328:171:28:-;1039:10;-1:-1:-1;;;;;1061:10:28;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:28;;10892:2:84;1031:77:28;;;10874:21:84;10931:2;10911:18;;;10904:30;10970:33;10950:18;;;10943:61;11021:18;;1031:77:28;10864:181:84;1031:77:28;2471:21:::1;2477:5;2484:7;2471:5;:21::i;:::-;2328:171:::0;;:::o;3357:312::-;1039:10;-1:-1:-1;;;;;1061:10:28;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:28;;10892:2:84;1031:77:28;;;10874:21:84;10931:2;10911:18;;;10904:30;10970:33;10950:18;;;10943:61;11021:18;;1031:77:28;10864:181:84;1031:77:28;3534:5:::1;-1:-1:-1::0;;;;;3521:18:28::1;:9;-1:-1:-1::0;;;;;3521:18:28::1;;3517:114;;-1:-1:-1::0;;;;;4009:18:1;;;3983:7;4009:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;3555:65:28::1;::::0;4009:18:1;;:27;;3582:37:28::1;::::0;3612:7;;3582:37:::1;:::i;3555:65::-;3641:21;3647:5;3654:7;3641:5;:21::i;:::-;3357:312:::0;;;:::o;2176:126:4:-;-1:-1:-1;;;;;2271:14:4;;2245:7;2271:14;;;:7;:14;;;;;864::13;2271:24:4;2264:31;2176:126;-1:-1:-1;;2176:126:4:o;2774:171:28:-;1039:10;-1:-1:-1;;;;;1061:10:28;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:28;;10892:2:84;1031:77:28;;;10874:21:84;10931:2;10911:18;;;10904:30;10970:33;10950:18;;;10943:61;11021:18;;1031:77:28;10864:181:84;1031:77:28;2917:21:::1;2923:5;2930:7;2917:5;:21::i;2295:102:1:-:0;2351:13;2383:7;2376:14;;;;;:::i;6386:405::-;666:10:12;6479:4:1;6522:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6522:34:1;;;;;;;;;;6574:35;;;;6566:85;;;;-1:-1:-1;;;6566:85:1;;11252:2:84;6566:85:1;;;11234:21:84;11291:2;11271:18;;;11264:30;11330:34;11310:18;;;11303:62;11401:7;11381:18;;;11374:35;11426:19;;6566:85:1;11224:227:84;6566:85:1;6685:67;666:10:12;6708:7:1;6736:15;6717:16;:34;6685:8;:67::i;:::-;-1:-1:-1;6780:4:1;;6386:405;-1:-1:-1;;;6386:405:1:o;3664:172::-;3750:4;3766:42;666:10:12;3790:9:1;3801:6;3766:9;:42::i;1489:626:4:-;1724:8;1705:15;:27;;1697:69;;;;-1:-1:-1;;;1697:69:4;;7340:2:84;1697:69:4;;;7322:21:84;7379:2;7359:18;;;7352:30;7418:31;7398:18;;;7391:59;7467:18;;1697:69:4;7312:179:84;1697:69:4;1777:18;1819:16;1837:5;1844:7;1853:5;1860:16;1870:5;1860:9;:16::i;:::-;1808:79;;;;;;3302:25:84;;;;-1:-1:-1;;;;;3424:15:84;;;3404:18;;;3397:43;3476:15;;;;3456:18;;;3449:43;3508:18;;;3501:34;3551:19;;;3544:35;3595:19;;;3588:35;;;3274:19;;1808:79:4;;;;;;;;;;;;1798:90;;;;;;1777:111;;1899:12;1914:28;1931:10;1914:16;:28::i;:::-;1899:43;;1953:14;1970:28;1984:4;1990:1;1993;1996;1970:13;:28::i;:::-;1953:45;;2026:5;-1:-1:-1;;;;;2016:15:4;:6;-1:-1:-1;;;;;2016:15:4;;2008:58;;;;-1:-1:-1;;;2008:58:4;;8911:2:84;2008:58:4;;;8893:21:84;8950:2;8930:18;;;8923:30;8989:32;8969:18;;;8962:60;9039:18;;2008:58:4;8883:180:84;2008:58:4;2077:31;2086:5;2093:7;2102:5;2077:8;:31::i;:::-;1687:428;;;1489:626;;;;;;;:::o;9962:370:1:-;-1:-1:-1;;;;;10093:19:1;;10085:68;;;;-1:-1:-1;;;10085:68:1;;10487:2:84;10085:68:1;;;10469:21:84;10526:2;10506:18;;;10499:30;10565:34;10545:18;;;10538:62;10636:6;10616:18;;;10609:34;10660:19;;10085:68:1;10459:226:84;10085:68:1;-1:-1:-1;;;;;10171:21:1;;10163:68;;;;-1:-1:-1;;;10163:68:1;;6937:2:84;10163:68:1;;;6919:21:84;6976:2;6956:18;;;6949:30;7015:34;6995:18;;;6988:62;7086:4;7066:18;;;7059:32;7108:19;;10163:68:1;6909:224:84;10163:68:1;-1:-1:-1;;;;;10242:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10293:32;;2979:25:84;;;10293:32:1;;2952:18:84;10293:32:1;;;;;;;9962:370;;;:::o;7265:713::-;-1:-1:-1;;;;;7400:20:1;;7392:70;;;;-1:-1:-1;;;7392:70:1;;10081:2:84;7392:70:1;;;10063:21:84;10120:2;10100:18;;;10093:30;10159:34;10139:18;;;10132:62;10230:7;10210:18;;;10203:35;10255:19;;7392:70:1;10053:227:84;7392:70:1;-1:-1:-1;;;;;7480:23:1;;7472:71;;;;-1:-1:-1;;;7472:71:1;;5770:2:84;7472:71:1;;;5752:21:84;5809:2;5789:18;;;5782:30;5848:34;5828:18;;;5821:62;5919:5;5899:18;;;5892:33;5942:19;;7472:71:1;5742:225:84;7472:71:1;-1:-1:-1;;;;;7636:17:1;;7612:21;7636:17;;;;;;;;;;;7671:23;;;;7663:74;;;;-1:-1:-1;;;7663:74:1;;7698:2:84;7663:74:1;;;7680:21:84;7737:2;7717:18;;;7710:30;7776:34;7756:18;;;7749:62;7847:8;7827:18;;;7820:36;7873:19;;7663:74:1;7670:228:84;7663:74:1;-1:-1:-1;;;;;7771:17:1;;;:9;:17;;;;;;;;;;;7791:22;;;7771:42;;7833:20;;;;;;;;:30;;7807:6;;7771:9;7833:30;;7807:6;;7833:30;:::i;:::-;;;;;;;;7896:9;-1:-1:-1;;;;;7879:35:1;7888:6;-1:-1:-1;;;;;7879:35:1;;7907:6;7879:35;;;;2979:25:84;;2967:2;2952:18;;2934:76;7879:35:1;;;;;;;;7382:596;7265:713;;;:::o;2990:275:16:-;3043:7;3083:16;3066:13;:33;3062:197;;;-1:-1:-1;3122:24:16;;2990:275::o;3062:197::-;-1:-1:-1;3447:73:16;;;3206:10;3447:73;;;;3893:25:84;;;;3218:12:16;3934:18:84;;;3927:34;3232:15:16;3977:18:84;;;3970:34;3491:13:16;4020:18:84;;;4013:34;3514:4:16;4063:19:84;;;;4056:84;;;;3447:73:16;;;;;;;;;;3865:19:84;;;;3447:73:16;;;3437:84;;;;;;2426:113:4:o;8254:389:1:-;-1:-1:-1;;;;;8337:21:1;;8329:65;;;;-1:-1:-1;;;8329:65:1;;11658:2:84;8329:65:1;;;11640:21:84;11697:2;11677:18;;;11670:30;11736:33;11716:18;;;11709:61;11787:18;;8329:65:1;11630:181:84;8329:65:1;8481:6;8465:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8497:18:1;;:9;:18;;;;;;;;;;:28;;8519:6;;8497:9;:28;;8519:6;;8497:28;:::i;:::-;;;;-1:-1:-1;;8540:37:1;;2979:25:84;;;-1:-1:-1;;;;;8540:37:1;;;8557:1;;8540:37;;2967:2:84;2952:18;8540:37:1;;;;;;;2328:171:28;;:::o;8963:576:1:-;-1:-1:-1;;;;;9046:21:1;;9038:67;;;;-1:-1:-1;;;9038:67:1;;9679:2:84;9038:67:1;;;9661:21:84;9718:2;9698:18;;;9691:30;9757:34;9737:18;;;9730:62;9828:3;9808:18;;;9801:31;9849:19;;9038:67:1;9651:223:84;9038:67:1;-1:-1:-1;;;;;9201:18:1;;9176:22;9201:18;;;;;;;;;;;9237:24;;;;9229:71;;;;-1:-1:-1;;;9229:71:1;;6174:2:84;9229:71:1;;;6156:21:84;6213:2;6193:18;;;6186:30;6252:34;6232:18;;;6225:62;6323:4;6303:18;;;6296:32;6345:19;;9229:71:1;6146:224:84;9229:71:1;-1:-1:-1;;;;;9334:18:1;;:9;:18;;;;;;;;;;9355:23;;;9334:44;;9398:12;:22;;9372:6;;9334:9;9398:22;;9372:6;;9398:22;:::i;:::-;;;;-1:-1:-1;;9436:37:1;;2979:25:84;;;9462:1:1;;-1:-1:-1;;;;;9436:37:1;;;;;2967:2:84;2952:18;9436:37:1;;;;;;;3357:312:28;;;:::o;2670:203:4:-;-1:-1:-1;;;;;2790:14:4;;2730:15;2790:14;;;:7;:14;;;;;864::13;;996:1;978:19;;;;864:14;2849:17:4;2747:126;2670:203;;;:::o;4153:165:16:-;4230:7;4256:55;4278:20;:18;:20::i;:::-;4300:10;8683:57:15;;2231:66:84;8683:57:15;;;2219:79:84;2314:11;;;2307:27;;;2350:12;;;2343:28;;;8647:7:15;;2387:12:84;;8683:57:15;;;;;;;;;;;;8673:68;;;;;;8666:75;;8554:194;;;;;7390:270;7513:7;7533:17;7552:18;7574:25;7585:4;7591:1;7594;7597;7574:10;:25::i;:::-;7532:67;;;;7609:18;7621:5;7609:11;:18::i;:::-;-1:-1:-1;7644:9:15;7390:270;-1:-1:-1;;;;;7390:270:15:o;5654:1603::-;5780:7;;6704:66;6691:79;;6687:161;;;-1:-1:-1;6802:1:15;;-1:-1:-1;6806:30:15;6786:51;;6687:161;6861:1;:7;;6866:2;6861:7;;:18;;;;;6872:1;:7;;6877:2;6872:7;;6861:18;6857:100;;;-1:-1:-1;6911:1:15;;-1:-1:-1;6915:30:15;6895:51;;6857:100;7068:24;;;7051:14;7068:24;;;;;;;;;4378:25:84;;;4451:4;4439:17;;4419:18;;;4412:45;;;;4473:18;;;4466:34;;;4516:18;;;4509:34;;;7068:24:15;;4350:19:84;;7068:24:15;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7068:24:15;;-1:-1:-1;;7068:24:15;;;-1:-1:-1;;;;;;;7106:20:15;;7102:101;;7158:1;7162:29;7142:50;;;;;;;7102:101;7221:6;-1:-1:-1;7229:20:15;;-1:-1:-1;5654:1603:15;;;;;;;;:::o;443:631::-;520:20;511:5;:29;;;;;;;;:::i;:::-;;507:561;;;443:631;:::o;507:561::-;616:29;607:5;:38;;;;;;;;:::i;:::-;;603:465;;;661:34;;-1:-1:-1;;;661:34:15;;5417:2:84;661:34:15;;;5399:21:84;5456:2;5436:18;;;5429:30;5495:26;5475:18;;;5468:54;5539:18;;661:34:15;5389:174:84;603:465:15;725:35;716:5;:44;;;;;;;;:::i;:::-;;712:356;;;776:41;;-1:-1:-1;;;776:41:15;;6577:2:84;776:41:15;;;6559:21:84;6616:2;6596:18;;;6589:30;6655:33;6635:18;;;6628:61;6706:18;;776:41:15;6549:181:84;712:356:15;847:30;838:5;:39;;;;;;;;:::i;:::-;;834:234;;;893:44;;-1:-1:-1;;;893:44:15;;8105:2:84;893:44:15;;;8087:21:84;8144:2;8124:18;;;8117:30;8183:34;8163:18;;;8156:62;8254:4;8234:18;;;8227:32;8276:19;;893:44:15;8077:224:84;834:234:15;967:30;958:5;:39;;;;;;;;:::i;:::-;;954:114;;;1013:44;;-1:-1:-1;;;1013:44:15;;8508:2:84;1013:44:15;;;8490:21:84;8547:2;8527:18;;;8520:30;8586:34;8566:18;;;8559:62;8657:4;8637:18;;;8630:32;8679:19;;1013:44:15;8480:224:84;954:114:15;443:631;:::o;14:196:84:-;82:20;;-1:-1:-1;;;;;131:54:84;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;:::-;356:39;285:116;-1:-1:-1;;;285:116:84:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:693::-;1115:6;1123;1131;1139;1147;1155;1163;1216:3;1204:9;1195:7;1191:23;1187:33;1184:2;;;1233:1;1230;1223:12;1184:2;1256:29;1275:9;1256:29;:::i;:::-;1246:39;;1304:38;1338:2;1327:9;1323:18;1304:38;:::i;:::-;1294:48;;1389:2;1378:9;1374:18;1361:32;1351:42;;1440:2;1429:9;1425:18;1412:32;1402:42;;1494:3;1483:9;1479:19;1466:33;1539:4;1532:5;1528:16;1521:5;1518:27;1508:2;;1559:1;1556;1549:12;1508:2;1174:523;;;;-1:-1:-1;1174:523:84;;;;1582:5;1634:3;1619:19;;1606:33;;-1:-1:-1;1686:3:84;1671:19;;;1658:33;;1174:523;-1:-1:-1;;1174:523:84:o;1702:254::-;1770:6;1778;1831:2;1819:9;1810:7;1806:23;1802:32;1799:2;;;1847:1;1844;1837:12;1799:2;1870:29;1889:9;1870:29;:::i;:::-;1860:39;1946:2;1931:18;;;;1918:32;;-1:-1:-1;;;1789:167:84:o;4554:656::-;4666:4;4695:2;4724;4713:9;4706:21;4756:6;4750:13;4799:6;4794:2;4783:9;4779:18;4772:34;4824:1;4834:140;4848:6;4845:1;4842:13;4834:140;;;4943:14;;;4939:23;;4933:30;4909:17;;;4928:2;4905:26;4898:66;4863:10;;4834:140;;;4992:6;4989:1;4986:13;4983:2;;;5062:1;5057:2;5048:6;5037:9;5033:22;5029:31;5022:42;4983:2;-1:-1:-1;5126:2:84;5114:15;-1:-1:-1;;5110:88:84;5095:104;;;;5201:2;5091:113;;4675:535;-1:-1:-1;;;4675:535:84:o;12187:128::-;12227:3;12258:1;12254:6;12251:1;12248:13;12245:2;;;12264:18;;:::i;:::-;-1:-1:-1;12300:9:84;;12235:80::o;12320:125::-;12360:4;12388:1;12385;12382:8;12379:2;;;12393:18;;:::i;:::-;-1:-1:-1;12430:9:84;;12369:76::o;12450:437::-;12529:1;12525:12;;;;12572;;;12593:2;;12647:4;12639:6;12635:17;12625:27;;12593:2;12700;12692:6;12689:14;12669:18;12666:38;12663:2;;;-1:-1:-1;;;12734:1:84;12727:88;12838:4;12835:1;12828:15;12866:4;12863:1;12856:15;12892:184;-1:-1:-1;;;12941:1:84;12934:88;13041:4;13038:1;13031:15;13065:4;13062:1;13055:15;13081:184;-1:-1:-1;;;13130:1:84;13123:88;13230:4;13227:1;13220:15;13254:4;13251:1;13244:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1116000",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "DOMAIN_SEPARATOR()": "infinite",
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24642",
                "balanceOf(address)": "2563",
                "controller()": "infinite",
                "controllerBurn(address,uint256)": "infinite",
                "controllerBurnFrom(address,address,uint256)": "infinite",
                "controllerMint(address,uint256)": "infinite",
                "decimals()": "infinite",
                "decreaseAllowance(address,uint256)": "26933",
                "increaseAllowance(address,uint256)": "26979",
                "name()": "infinite",
                "nonces(address)": "2605",
                "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "infinite",
                "symbol()": "infinite",
                "totalSupply()": "2349",
                "transfer(address,uint256)": "51232",
                "transferFrom(address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "DOMAIN_SEPARATOR()": "3644e515",
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "controller()": "f77c4791",
              "controllerBurn(address,uint256)": "90596dd1",
              "controllerBurnFrom(address,address,uint256)": "631b5dfb",
              "controllerMint(address,uint256)": "5d7b0758",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "increaseAllowance(address,uint256)": "39509351",
              "name()": "06fdde03",
              "nonces(address)": "7ecebe00",
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "d505accf",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_symbol\",\"type\":\"string\"},{\"internalType\":\"uint8\",\"name\":\"decimals_\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"_controller\",\"type\":\"address\"}],\"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\":false,\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"decimals\",\"type\":\"uint8\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"controller\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"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\":\"controller\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurnFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"controllerMint\",\"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\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"Deployed(string,string,uint8,address)\":{\"details\":\"Emitted when contract is deployed\"}},\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"See {IERC20Permit-DOMAIN_SEPARATOR}.\"},\"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}.\"},\"constructor\":{\"params\":{\"_controller\":\"Address of the Controller contract for minting & burning\",\"_name\":\"The name of the Token\",\"_symbol\":\"The symbol for the Token\",\"decimals_\":\"The number of decimals for the Token\"}},\"controllerBurn(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over burning\",\"params\":{\"_amount\":\"Amount of tokens to burn\",\"_user\":\"Address of the holder account to burn tokens from\"}},\"controllerBurnFrom(address,address,uint256)\":{\"details\":\"May be overridden to provide more granular control over operator-burning\",\"params\":{\"_amount\":\"Amount of tokens to burn\",\"_operator\":\"Address of the operator performing the burn action via the controller contract\",\"_user\":\"Address of the holder account to burn tokens from\"}},\"controllerMint(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over minting\",\"params\":{\"_amount\":\"Amount of tokens to mint\",\"_user\":\"Address of the receiver of the minted tokens\"}},\"decimals()\":{\"details\":\"This value should be equal to the decimals of the token used to deposit into the pool.\",\"returns\":{\"_0\":\"uint8 decimals.\"}},\"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.\"},\"nonces(address)\":{\"details\":\"See {IERC20Permit-nonces}.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"See {IERC20Permit-permit}.\"},\"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`.\"}},\"title\":\"PoolTogether V4 Controlled ERC20 Token\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"constructor\":{\"notice\":\"Deploy the Controlled Token with Token Details and the Controller\"},\"controller()\":{\"notice\":\"Interface to the contract responsible for controlling mint/burn\"},\"controllerBurn(address,uint256)\":{\"notice\":\"Allows the controller to burn tokens from a user account\"},\"controllerBurnFrom(address,address,uint256)\":{\"notice\":\"Allows an operator via the controller to burn tokens on behalf of a user account\"},\"controllerMint(address,uint256)\":{\"notice\":\"Allows the controller to mint tokens for a user account\"},\"decimals()\":{\"notice\":\"Returns the ERC20 controlled token decimals.\"}},\"notice\":\"ERC20 Tokens with a controller for minting & burning\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/ControlledToken.sol\":\"ControlledToken\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\\n * instead returning `false` on failure. This behavior is nonetheless\\n * conventional and does not conflict with the expectations of ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(string memory name_, string memory symbol_) {\\n        _name = name_;\\n        _symbol = symbol_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual override returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual override returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual override returns (uint8) {\\n        return 18;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual override returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual override returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\\n        _transfer(_msgSender(), recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\\n        _approve(_msgSender(), spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual override returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][_msgSender()];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, _msgSender(), currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n        uint256 currentAllowance = _allowances[_msgSender()][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(_msgSender(), spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n}\\n\",\"keccak256\":\"0xb03df8481a954604ad0c9125680893b2e3f7ff770fe470e38b89ac61b84e8072\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\n */\\ninterface IERC20Metadata is IERC20 {\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the symbol of the token.\\n     */\\n    function symbol() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the decimals places of the token.\\n     */\\n    function decimals() external view returns (uint8);\\n}\\n\",\"keccak256\":\"0x83fe24f5c04a56091e50f4a345ff504c8bff658a76d4c43b16878c8f940c53b2\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./draft-IERC20Permit.sol\\\";\\nimport \\\"../ERC20.sol\\\";\\nimport \\\"../../../utils/cryptography/draft-EIP712.sol\\\";\\nimport \\\"../../../utils/cryptography/ECDSA.sol\\\";\\nimport \\\"../../../utils/Counters.sol\\\";\\n\\n/**\\n * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n *\\n * _Available since v3.4._\\n */\\nabstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {\\n    using Counters for Counters.Counter;\\n\\n    mapping(address => Counters.Counter) private _nonces;\\n\\n    // solhint-disable-next-line var-name-mixedcase\\n    bytes32 private immutable _PERMIT_TYPEHASH =\\n        keccak256(\\\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\\\");\\n\\n    /**\\n     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\\\"1\\\"`.\\n     *\\n     * It's a good idea to use the same `name` that is defined as the ERC20 token name.\\n     */\\n    constructor(string memory name) EIP712(name, \\\"1\\\") {}\\n\\n    /**\\n     * @dev See {IERC20Permit-permit}.\\n     */\\n    function permit(\\n        address owner,\\n        address spender,\\n        uint256 value,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) public virtual override {\\n        require(block.timestamp <= deadline, \\\"ERC20Permit: expired deadline\\\");\\n\\n        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));\\n\\n        bytes32 hash = _hashTypedDataV4(structHash);\\n\\n        address signer = ECDSA.recover(hash, v, r, s);\\n        require(signer == owner, \\\"ERC20Permit: invalid signature\\\");\\n\\n        _approve(owner, spender, value);\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-nonces}.\\n     */\\n    function nonces(address owner) public view virtual override returns (uint256) {\\n        return _nonces[owner].current();\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view override returns (bytes32) {\\n        return _domainSeparatorV4();\\n    }\\n\\n    /**\\n     * @dev \\\"Consume a nonce\\\": return the current value and increment.\\n     *\\n     * _Available since v4.1._\\n     */\\n    function _useNonce(address owner) internal virtual returns (uint256 current) {\\n        Counters.Counter storage nonce = _nonces[owner];\\n        current = nonce.current();\\n        nonce.increment();\\n    }\\n}\\n\",\"keccak256\":\"0x7ce4684ee1fac31ee5671df82b30c10bd2ebf88add2f63524ed00618a8486907\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n */\\ninterface IERC20Permit {\\n    /**\\n     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\\n     * given ``owner``'s signed approval.\\n     *\\n     * IMPORTANT: The same issues {IERC20-approve} has related to transaction\\n     * ordering also apply here.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `deadline` must be a timestamp in the future.\\n     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\\n     * over the EIP712-formatted function arguments.\\n     * - the signature must use ``owner``'s current nonce (see {nonces}).\\n     *\\n     * For more information on the signature format, see the\\n     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\\n     * section].\\n     */\\n    function permit(\\n        address owner,\\n        address spender,\\n        uint256 value,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @dev Returns the current nonce for `owner`. This value must be\\n     * included whenever a signature is generated for {permit}.\\n     *\\n     * Every successful call to {permit} increases ``owner``'s nonce by one. This\\n     * prevents a signature from being used multiple times.\\n     */\\n    function nonces(address owner) external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view returns (bytes32);\\n}\\n\",\"keccak256\":\"0x3aab711a5f9a5a5a394191e928cc8258e8a243e855bb0275e7834f9686383277\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n    function _msgSender() internal view virtual returns (address) {\\n        return msg.sender;\\n    }\\n\\n    function _msgData() internal view virtual returns (bytes calldata) {\\n        return msg.data;\\n    }\\n}\\n\",\"keccak256\":\"0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Counters.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Counters\\n * @author Matt Condon (@shrugs)\\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\\n *\\n * Include with `using Counters for Counters.Counter;`\\n */\\nlibrary Counters {\\n    struct Counter {\\n        // This variable should never be directly accessed by users of the library: interactions must be restricted to\\n        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\\n        // this feature: see https://github.com/ethereum/solidity/issues/4637\\n        uint256 _value; // default: 0\\n    }\\n\\n    function current(Counter storage counter) internal view returns (uint256) {\\n        return counter._value;\\n    }\\n\\n    function increment(Counter storage counter) internal {\\n        unchecked {\\n            counter._value += 1;\\n        }\\n    }\\n\\n    function decrement(Counter storage counter) internal {\\n        uint256 value = counter._value;\\n        require(value > 0, \\\"Counter: decrement overflow\\\");\\n        unchecked {\\n            counter._value = value - 1;\\n        }\\n    }\\n\\n    function reset(Counter storage counter) internal {\\n        counter._value = 0;\\n    }\\n}\\n\",\"keccak256\":\"0x78450f4e3b722cce467b21e285f72ce5eaf361e9ba9dd2241a413926246773cd\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\\n *\\n * These functions can be used to verify that a message was signed by the holder\\n * of the private keys of a given address.\\n */\\nlibrary ECDSA {\\n    enum RecoverError {\\n        NoError,\\n        InvalidSignature,\\n        InvalidSignatureLength,\\n        InvalidSignatureS,\\n        InvalidSignatureV\\n    }\\n\\n    function _throwError(RecoverError error) private pure {\\n        if (error == RecoverError.NoError) {\\n            return; // no error: do nothing\\n        } else if (error == RecoverError.InvalidSignature) {\\n            revert(\\\"ECDSA: invalid signature\\\");\\n        } else if (error == RecoverError.InvalidSignatureLength) {\\n            revert(\\\"ECDSA: invalid signature length\\\");\\n        } else if (error == RecoverError.InvalidSignatureS) {\\n            revert(\\\"ECDSA: invalid signature 's' value\\\");\\n        } else if (error == RecoverError.InvalidSignatureV) {\\n            revert(\\\"ECDSA: invalid signature 'v' value\\\");\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature` or error string. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {toEthSignedMessageHash} on it.\\n     *\\n     * Documentation for signature generation:\\n     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\\n     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\\n        // Check the signature length\\n        // - case 65: r,s,v signature (standard)\\n        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._\\n        if (signature.length == 65) {\\n            bytes32 r;\\n            bytes32 s;\\n            uint8 v;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                s := mload(add(signature, 0x40))\\n                v := byte(0, mload(add(signature, 0x60)))\\n            }\\n            return tryRecover(hash, v, r, s);\\n        } else if (signature.length == 64) {\\n            bytes32 r;\\n            bytes32 vs;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                vs := mload(add(signature, 0x40))\\n            }\\n            return tryRecover(hash, r, vs);\\n        } else {\\n            return (address(0), RecoverError.InvalidSignatureLength);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature`. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {toEthSignedMessageHash} on it.\\n     */\\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, signature);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\\n     *\\n     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address, RecoverError) {\\n        bytes32 s;\\n        uint8 v;\\n        assembly {\\n            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\\n            v := add(shr(255, vs), 27)\\n        }\\n        return tryRecover(hash, v, r, s);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\\n     *\\n     * _Available since v4.2._\\n     */\\n    function recover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, r, vs);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address, RecoverError) {\\n        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\\n        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\\n        // the valid range for s in (301): 0 < s < secp256k1n \\u00f7 2 + 1, and for v in (302): v \\u2208 {27, 28}. Most\\n        // signatures from current libraries generate a unique signature with an s-value in the lower half order.\\n        //\\n        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\\n        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\\n        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\\n        // these malleable signatures as well.\\n        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\\n            return (address(0), RecoverError.InvalidSignatureS);\\n        }\\n        if (v != 27 && v != 28) {\\n            return (address(0), RecoverError.InvalidSignatureV);\\n        }\\n\\n        // If the signature is valid (and not malleable), return the signer address\\n        address signer = ecrecover(hash, v, r, s);\\n        if (signer == address(0)) {\\n            return (address(0), RecoverError.InvalidSignature);\\n        }\\n\\n        return (signer, RecoverError.NoError);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     */\\n    function recover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from a `hash`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {\\n        // 32 is the length in bytes of hash,\\n        // enforced by the type signature above\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n32\\\", hash));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Typed Data, created from a\\n     * `domainSeparator` and a `structHash`. This produces hash corresponding\\n     * to the one signed with the\\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\\n     * JSON-RPC method as part of EIP-712.\\n     *\\n     * See {recover}.\\n     */\\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19\\\\x01\\\", domainSeparator, structHash));\\n    }\\n}\\n\",\"keccak256\":\"0xbc991a1cf357ce19480831a40792c814238a3b5458134703682abd8aa39719fb\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./ECDSA.sol\\\";\\n\\n/**\\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.\\n *\\n * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\\n * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\\n * they need in their contracts using a combination of `abi.encode` and `keccak256`.\\n *\\n * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\\n * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\\n * ({_hashTypedDataV4}).\\n *\\n * The implementation of the domain separator was designed to be as efficient as possible while still properly updating\\n * the chain id to protect against replay attacks on an eventual fork of the chain.\\n *\\n * NOTE: This contract implements the version of the encoding known as \\\"v4\\\", as implemented by the JSON RPC method\\n * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\\n *\\n * _Available since v3.4._\\n */\\nabstract contract EIP712 {\\n    /* solhint-disable var-name-mixedcase */\\n    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to\\n    // invalidate the cached domain separator if the chain id changes.\\n    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;\\n    uint256 private immutable _CACHED_CHAIN_ID;\\n\\n    bytes32 private immutable _HASHED_NAME;\\n    bytes32 private immutable _HASHED_VERSION;\\n    bytes32 private immutable _TYPE_HASH;\\n\\n    /* solhint-enable var-name-mixedcase */\\n\\n    /**\\n     * @dev Initializes the domain separator and parameter caches.\\n     *\\n     * The meaning of `name` and `version` is specified in\\n     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:\\n     *\\n     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\\n     * - `version`: the current major version of the signing domain.\\n     *\\n     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\\n     * contract upgrade].\\n     */\\n    constructor(string memory name, string memory version) {\\n        bytes32 hashedName = keccak256(bytes(name));\\n        bytes32 hashedVersion = keccak256(bytes(version));\\n        bytes32 typeHash = keccak256(\\n            \\\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\\\"\\n        );\\n        _HASHED_NAME = hashedName;\\n        _HASHED_VERSION = hashedVersion;\\n        _CACHED_CHAIN_ID = block.chainid;\\n        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);\\n        _TYPE_HASH = typeHash;\\n    }\\n\\n    /**\\n     * @dev Returns the domain separator for the current chain.\\n     */\\n    function _domainSeparatorV4() internal view returns (bytes32) {\\n        if (block.chainid == _CACHED_CHAIN_ID) {\\n            return _CACHED_DOMAIN_SEPARATOR;\\n        } else {\\n            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);\\n        }\\n    }\\n\\n    function _buildDomainSeparator(\\n        bytes32 typeHash,\\n        bytes32 nameHash,\\n        bytes32 versionHash\\n    ) private view returns (bytes32) {\\n        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));\\n    }\\n\\n    /**\\n     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\\n     * function returns the hash of the fully encoded EIP712 message for this domain.\\n     *\\n     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\\n     *\\n     * ```solidity\\n     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\\n     *     keccak256(\\\"Mail(address to,string contents)\\\"),\\n     *     mailTo,\\n     *     keccak256(bytes(mailContents))\\n     * )));\\n     * address signer = ECDSA.recover(digest, signature);\\n     * ```\\n     */\\n    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {\\n        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);\\n    }\\n}\\n\",\"keccak256\":\"0xba18d725602452307e5b278ed4566616c63792d89f3a0388a6f285428c26e681\",\"license\":\"MIT\"},\"contracts/ControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\\\";\\n\\nimport \\\"./interfaces/IControlledToken.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 Controlled ERC20 Token\\n * @author PoolTogether Inc Team\\n * @notice  ERC20 Tokens with a controller for minting & burning\\n */\\ncontract ControlledToken is ERC20Permit, IControlledToken {\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice Interface to the contract responsible for controlling mint/burn\\n    address public override immutable controller;\\n\\n    /// @notice ERC20 controlled token decimals.\\n    uint8 private immutable _decimals;\\n\\n    /* ============ Events ============ */\\n\\n    /// @dev Emitted when contract is deployed\\n    event Deployed(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /* ============ Modifiers ============ */\\n\\n    /// @dev Function modifier to ensure that the caller is the controller contract\\n    modifier onlyController() {\\n        require(msg.sender == address(controller), \\\"ControlledToken/only-controller\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /// @notice Deploy the Controlled Token with Token Details and the Controller\\n    /// @param _name The name of the Token\\n    /// @param _symbol The symbol for the Token\\n    /// @param decimals_ The number of decimals for the Token\\n    /// @param _controller Address of the Controller contract for minting & burning\\n    constructor(\\n        string memory _name,\\n        string memory _symbol,\\n        uint8 decimals_,\\n        address _controller\\n    ) ERC20Permit(\\\"PoolTogether ControlledToken\\\") ERC20(_name, _symbol) {\\n        require(address(_controller) != address(0), \\\"ControlledToken/controller-not-zero-address\\\");\\n        controller = _controller;\\n\\n        require(decimals_ > 0, \\\"ControlledToken/decimals-gt-zero\\\");\\n        _decimals = decimals_;\\n\\n        emit Deployed(_name, _symbol, decimals_, _controller);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @notice Allows the controller to mint tokens for a user account\\n    /// @dev May be overridden to provide more granular control over minting\\n    /// @param _user Address of the receiver of the minted tokens\\n    /// @param _amount Amount of tokens to mint\\n    function controllerMint(address _user, uint256 _amount)\\n        external\\n        virtual\\n        override\\n        onlyController\\n    {\\n        _mint(_user, _amount);\\n    }\\n\\n    /// @notice Allows the controller to burn tokens from a user account\\n    /// @dev May be overridden to provide more granular control over burning\\n    /// @param _user Address of the holder account to burn tokens from\\n    /// @param _amount Amount of tokens to burn\\n    function controllerBurn(address _user, uint256 _amount)\\n        external\\n        virtual\\n        override\\n        onlyController\\n    {\\n        _burn(_user, _amount);\\n    }\\n\\n    /// @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n    /// @dev May be overridden to provide more granular control over operator-burning\\n    /// @param _operator Address of the operator performing the burn action via the controller contract\\n    /// @param _user Address of the holder account to burn tokens from\\n    /// @param _amount Amount of tokens to burn\\n    function controllerBurnFrom(\\n        address _operator,\\n        address _user,\\n        uint256 _amount\\n    ) external virtual override onlyController {\\n        if (_operator != _user) {\\n            _approve(_user, _operator, allowance(_user, _operator) - _amount);\\n        }\\n\\n        _burn(_user, _amount);\\n    }\\n\\n    /// @notice Returns the ERC20 controlled token decimals.\\n    /// @dev This value should be equal to the decimals of the token used to deposit into the pool.\\n    /// @return uint8 decimals.\\n    function decimals() public view virtual override returns (uint8) {\\n        return _decimals;\\n    }\\n}\\n\",\"keccak256\":\"0x7dec4c4427ea75702a706e574d17751ca989b2aaea4991380a126b611d95ff9e\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 55,
                "contract": "contracts/ControlledToken.sol:ControlledToken",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 61,
                "contract": "contracts/ControlledToken.sol:ControlledToken",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 63,
                "contract": "contracts/ControlledToken.sol:ControlledToken",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 65,
                "contract": "contracts/ControlledToken.sol:ControlledToken",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 67,
                "contract": "contracts/ControlledToken.sol:ControlledToken",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 711,
                "contract": "contracts/ControlledToken.sol:ControlledToken",
                "label": "_nonces",
                "offset": 0,
                "slot": "5",
                "type": "t_mapping(t_address,t_struct(Counter)2419_storage)"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_struct(Counter)2419_storage)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => struct Counters.Counter)",
                "numberOfBytes": "32",
                "value": "t_struct(Counter)2419_storage"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_struct(Counter)2419_storage": {
                "encoding": "inplace",
                "label": "struct Counters.Counter",
                "members": [
                  {
                    "astId": 2418,
                    "contract": "contracts/ControlledToken.sol:ControlledToken",
                    "label": "_value",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint256"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "constructor": {
                "notice": "Deploy the Controlled Token with Token Details and the Controller"
              },
              "controller()": {
                "notice": "Interface to the contract responsible for controlling mint/burn"
              },
              "controllerBurn(address,uint256)": {
                "notice": "Allows the controller to burn tokens from a user account"
              },
              "controllerBurnFrom(address,address,uint256)": {
                "notice": "Allows an operator via the controller to burn tokens on behalf of a user account"
              },
              "controllerMint(address,uint256)": {
                "notice": "Allows the controller to mint tokens for a user account"
              },
              "decimals()": {
                "notice": "Returns the ERC20 controlled token decimals."
              }
            },
            "notice": "ERC20 Tokens with a controller for minting & burning",
            "version": 1
          }
        }
      },
      "contracts/DrawBeacon.sol": {
        "DrawBeacon": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "_drawBuffer",
                  "type": "address"
                },
                {
                  "internalType": "contract RNGInterface",
                  "name": "_rng",
                  "type": "address"
                },
                {
                  "internalType": "uint32",
                  "name": "_nextDrawId",
                  "type": "uint32"
                },
                {
                  "internalType": "uint64",
                  "name": "_beaconPeriodStart",
                  "type": "uint64"
                },
                {
                  "internalType": "uint32",
                  "name": "_beaconPeriodSeconds",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "_rngTimeout",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "drawPeriodSeconds",
                  "type": "uint32"
                }
              ],
              "name": "BeaconPeriodSecondsUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint64",
                  "name": "startedAt",
                  "type": "uint64"
                }
              ],
              "name": "BeaconPeriodStarted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "nextDrawId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint64",
                  "name": "beaconPeriodStartedAt",
                  "type": "uint64"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IDrawBuffer",
                  "name": "newDrawBuffer",
                  "type": "address"
                }
              ],
              "name": "DrawBufferUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "rngRequestId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "rngLockBlock",
                  "type": "uint32"
                }
              ],
              "name": "DrawCancelled",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "randomNumber",
                  "type": "uint256"
                }
              ],
              "name": "DrawCompleted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "rngRequestId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "rngLockBlock",
                  "type": "uint32"
                }
              ],
              "name": "DrawStarted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract RNGInterface",
                  "name": "rngService",
                  "type": "address"
                }
              ],
              "name": "RngServiceUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "rngTimeout",
                  "type": "uint32"
                }
              ],
              "name": "RngTimeoutSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "beaconPeriodEndAt",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "beaconPeriodRemainingSeconds",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "_time",
                  "type": "uint64"
                }
              ],
              "name": "calculateNextBeaconPeriodStartTime",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "calculateNextBeaconPeriodStartTimeFromCurrentTime",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "canCompleteDraw",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "canStartDraw",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "cancelDraw",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "completeDraw",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBeaconPeriodSeconds",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBeaconPeriodStartedAt",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLastRngLockBlock",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLastRngRequestId",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getNextDrawId",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getRngService",
              "outputs": [
                {
                  "internalType": "contract RNGInterface",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getRngTimeout",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isBeaconPeriodOver",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isRngCompleted",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isRngRequested",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isRngTimedOut",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_beaconPeriodSeconds",
                  "type": "uint32"
                }
              ],
              "name": "setBeaconPeriodSeconds",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "newDrawBuffer",
                  "type": "address"
                }
              ],
              "name": "setDrawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract RNGInterface",
                  "name": "_rngService",
                  "type": "address"
                }
              ],
              "name": "setRngService",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_rngTimeout",
                  "type": "uint32"
                }
              ],
              "name": "setRngTimeout",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "startDraw",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "Deployed(uint32,uint64)": {
                "params": {
                  "beaconPeriodStartedAt": "Timestamp when beacon period starts.",
                  "nextDrawId": "Draw ID at which the DrawBeacon should start. Can't be inferior to 1."
                }
              }
            },
            "kind": "dev",
            "methods": {
              "beaconPeriodEndAt()": {
                "returns": {
                  "_0": "The timestamp at which the beacon period ends."
                }
              },
              "beaconPeriodRemainingSeconds()": {
                "returns": {
                  "_0": "The number of seconds remaining until the beacon period can be complete."
                }
              },
              "calculateNextBeaconPeriodStartTime(uint64)": {
                "params": {
                  "time": "The timestamp to use as the current time"
                },
                "returns": {
                  "_0": "The timestamp at which the next beacon period would start"
                }
              },
              "calculateNextBeaconPeriodStartTimeFromCurrentTime()": {
                "returns": {
                  "_0": "The next beacon period start time"
                }
              },
              "canCompleteDraw()": {
                "returns": {
                  "_0": "True if a Draw can be completed, false otherwise."
                }
              },
              "canStartDraw()": {
                "returns": {
                  "_0": "True if a Draw can be started, false otherwise."
                }
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_beaconPeriodSeconds": "The duration of the beacon period in seconds",
                  "_beaconPeriodStart": "The starting timestamp of the beacon period.",
                  "_drawBuffer": "The address of the draw buffer to push draws to",
                  "_nextDrawId": "Draw ID at which the DrawBeacon should start. Can't be inferior to 1.",
                  "_owner": "Address of the DrawBeacon owner",
                  "_rng": "The RNG service to use"
                }
              },
              "getLastRngLockBlock()": {
                "returns": {
                  "_0": "The block number that the RNG request is locked to"
                }
              },
              "getLastRngRequestId()": {
                "returns": {
                  "_0": "The current Request ID"
                }
              },
              "isBeaconPeriodOver()": {
                "returns": {
                  "_0": "True if the beacon period is over, false otherwise"
                }
              },
              "isRngCompleted()": {
                "returns": {
                  "_0": "True if a random number request has completed, false otherwise."
                }
              },
              "isRngRequested()": {
                "returns": {
                  "_0": "True if a random number has been requested, false otherwise."
                }
              },
              "isRngTimedOut()": {
                "returns": {
                  "_0": "True if a random number request has timed out, false otherwise."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setBeaconPeriodSeconds(uint32)": {
                "params": {
                  "beaconPeriodSeconds": "The new beacon period in seconds.  Must be greater than zero."
                }
              },
              "setDrawBuffer(address)": {
                "details": "All subsequent Draw requests/completions will be pushed to the new DrawBuffer.",
                "params": {
                  "newDrawBuffer": "DrawBuffer address"
                },
                "returns": {
                  "_0": "DrawBuffer"
                }
              },
              "setRngService(address)": {
                "params": {
                  "rngService": "The address of the new RNG service interface"
                }
              },
              "setRngTimeout(uint32)": {
                "params": {
                  "rngTimeout": "The RNG request timeout in seconds."
                }
              },
              "startDraw()": {
                "details": "The RNG-Request-Fee is expected to be held within this contract before calling this function"
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "stateVariables": {
              "nextDrawId": {
                "details": "Starts at 1. This way we know that no Draw has been recorded at 0."
              },
              "rngTimeout": {
                "details": "If the rng completes the award can still be cancelled."
              }
            },
            "title": "PoolTogether V4 DrawBeacon",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_3961": {
                  "entryPoint": null,
                  "id": 3961,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_5471": {
                  "entryPoint": null,
                  "id": 5471,
                  "parameterSlots": 7,
                  "returnSlots": 0
                },
                "@_setBeaconPeriodSeconds_6144": {
                  "entryPoint": 648,
                  "id": 6144,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setDrawBuffer_6122": {
                  "entryPoint": 829,
                  "id": 6122,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_4058": {
                  "entryPoint": 568,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngService_5953": {
                  "entryPoint": 1139,
                  "id": 5953,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngTimeout_6166": {
                  "entryPoint": 1213,
                  "id": 6166,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$11318t_contract$_RNGInterface_$4142t_uint32t_uint64t_uint32t_uint32_fromMemory": {
                  "entryPoint": 1422,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 7
                },
                "abi_decode_uint32_fromMemory": {
                  "entryPoint": 1396,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2e1f6f2153738bab0f111b529052ab9d11cec8be1adca6d957057b7794d36189__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d15f1d335d4e5d31fe5a2ef60ebf117a328854d80ecc8b909c3df0aa87e4a529__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 1593,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:4142:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "73:108:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "83:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "98:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "92:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "92:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "83:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "159:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "168:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "171:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "161:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "161:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "161:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "127:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "138:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "145:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "134:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "134:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "124:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "124:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "117:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "117:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "114:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "63:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:167:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "407:766:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "463:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "466:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "428:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "437:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "424:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "424:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "449:3:84",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "420:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "420:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "417:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "479:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "498:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "492:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "492:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "483:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "542:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "517:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "517:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "517:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "557:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "567:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "557:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "581:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "606:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "617:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "602:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "602:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "596:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "596:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "585:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "655:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "630:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "630:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "630:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "672:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "682:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "672:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "698:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "723:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "734:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "719:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "719:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "713:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "713:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "702:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "772:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "747:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "747:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "747:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "789:17:84",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "799:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "789:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "815:58:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "858:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "869:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "854:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "854:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "825:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "825:48:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "815:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "882:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "907:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "918:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "903:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "903:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "897:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "897:26:84"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "886:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "989:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "998:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1001:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "991:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "991:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "991:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "945:7:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "958:7:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "975:2:84",
                                                    "type": "",
                                                    "value": "64"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "979:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "971:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "971:10:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "983:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "967:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "967:18:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "954:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "954:32:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "942:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "942:45:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "935:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "935:53:84"
                              },
                              "nodeType": "YulIf",
                              "src": "932:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1014:17:84",
                              "value": {
                                "name": "value_3",
                                "nodeType": "YulIdentifier",
                                "src": "1024:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "1014:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1040:59:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1083:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1094:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1079:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1079:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1050:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1050:49:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "1040:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1108:59:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1151:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1162:3:84",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1147:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1147:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1118:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1118:49:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value6",
                                  "nodeType": "YulIdentifier",
                                  "src": "1108:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$11318t_contract$_RNGInterface_$4142t_uint32t_uint64t_uint32t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "325:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "336:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "348:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "356:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "364:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "372:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "380:6:84",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "388:6:84",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "396:6:84",
                            "type": ""
                          }
                        ],
                        "src": "186:987:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1352:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1369:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1380:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1362:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1362:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1362:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1403:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1414:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1399:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1399:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1419:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1392:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1392:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1392:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1442:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1453:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1438:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1438:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f6e6578742d647261772d69642d6774652d6f6e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1458:33:84",
                                    "type": "",
                                    "value": "DrawBeacon/next-draw-id-gte-one"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1431:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1431:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1431:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1501:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1513:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1524:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1509:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1509:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1501:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2e1f6f2153738bab0f111b529052ab9d11cec8be1adca6d957057b7794d36189__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1329:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1343:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1178:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1712:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1729:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1740:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1722:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1722:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1722:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1763:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1774:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1759:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1759:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1779:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1752:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1752:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1752:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1802:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1813:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1798:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1798:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f6578697374696e672d647261772d686973746f7279",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1818:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/existing-draw-history"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1791:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1791:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1791:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1873:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1884:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1869:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1869:18:84"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1889:10:84",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1862:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1862:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1862:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1909:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1921:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1932:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1917:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1917:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1909:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1689:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1703:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1538:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2121:232:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2138:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2149:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2131:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2131:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2131:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2172:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2183:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2168:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2168:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2188:2:84",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2161:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2161:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2161:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2211:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2222:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2207:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2207:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d67726561746572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2227:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/beacon-period-greater"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2200:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2200:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2200:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2282:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2293:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2278:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2278:18:84"
                                  },
                                  {
                                    "hexValue": "2d7468616e2d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2298:12:84",
                                    "type": "",
                                    "value": "-than-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2271:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2271:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2271:40:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2320:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2332:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2343:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2328:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2328:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2320:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2098:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2112:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1947:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2532:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2549:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2560:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2542:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2542:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2542:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2583:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2594:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2579:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2579:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2599:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2572:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2572:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2572:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2622:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2633:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2618:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2618:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d74696d656f75742d67742d36302d736563",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2638:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-timeout-gt-60-sec"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2611:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2611:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2611:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2693:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2704:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2689:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2689:18:84"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2709:3:84",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2682:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2682:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2682:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2722:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2734:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2745:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2730:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2730:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2722:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2509:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2523:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2358:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2934:173:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2951:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2962:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2944:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2944:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2944:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2985:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2996:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2981:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2981:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3001:2:84",
                                    "type": "",
                                    "value": "23"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2974:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2974:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2974:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3024:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3035:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3020:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3020:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3040:25:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3013:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3013:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3013:53:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3075:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3087:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3098:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3083:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3083:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3075:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d15f1d335d4e5d31fe5a2ef60ebf117a328854d80ecc8b909c3df0aa87e4a529__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2911:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2925:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2760:347:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3286:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3303:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3314:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3296:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3296:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3296:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3337:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3348:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3333:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3333:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3353:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3326:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3326:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3326:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3376:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3387:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3372:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3372:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3392:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/draw-history-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3365:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3365:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3365:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3447:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3458:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3443:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3443:18:84"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3463:10:84",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3436:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3436:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3436:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3483:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3495:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3506:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3491:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3491:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3483:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3263:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3277:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3112:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3620:93:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3630:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3642:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3653:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3638:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3638:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3630:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3672:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3687:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3695:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3683:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3683:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3665:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3665:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3665:42:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3589:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3600:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3611:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3521:192:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3843:161:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3853:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3865:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3876:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3861:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3861:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3853:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3895:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3910:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3918:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3906:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3906:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3888:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3888:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3888:42:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3950:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3961:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3946:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3946:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3970:6:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3986:2:84",
                                                "type": "",
                                                "value": "64"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3990:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "3982:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3982:10:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3994:1:84",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "3978:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3978:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3966:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3966:31:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3939:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3939:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3939:59:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3804:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3815:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3823:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3834:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3718:286:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4054:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4118:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4127:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4130:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4120:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4120:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4120:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4077:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4088:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "4103:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "4108:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4099:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "4099:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4112:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "4095:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4095:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4084:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4084:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "4074:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4074:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4067:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4067:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4064:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4043:5:84",
                            "type": ""
                          }
                        ],
                        "src": "4009:131:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_uint32_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$11318t_contract$_RNGInterface_$4142t_uint32t_uint64t_uint32t_uint32_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        value3 := abi_decode_uint32_fromMemory(add(headStart, 96))\n        let value_3 := mload(add(headStart, 128))\n        if iszero(eq(value_3, and(value_3, sub(shl(64, 1), 1)))) { revert(0, 0) }\n        value4 := value_3\n        value5 := abi_decode_uint32_fromMemory(add(headStart, 160))\n        value6 := abi_decode_uint32_fromMemory(add(headStart, 192))\n    }\n    function abi_encode_tuple_t_stringliteral_2e1f6f2153738bab0f111b529052ab9d11cec8be1adca6d957057b7794d36189__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"DrawBeacon/next-draw-id-gte-one\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"DrawBeacon/existing-draw-history\")\n        mstore(add(headStart, 96), \"-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"DrawBeacon/beacon-period-greater\")\n        mstore(add(headStart, 96), \"-than-zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-timeout-gt-60-sec\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d15f1d335d4e5d31fe5a2ef60ebf117a328854d80ecc8b909c3df0aa87e4a529__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 23)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"DrawBeacon/draw-history-not-zero\")\n        mstore(add(headStart, 96), \"-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, sub(shl(64, 1), 1)))\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b50604051620024293803806200242983398101604081905262000034916200058e565b86620000408162000238565b506000836001600160401b031611620000a25760405162461bcd60e51b815260206004820152602a6024820152600080516020620024098339815191526044820152692d7468616e2d7a65726f60b01b60648201526084015b60405180910390fd5b6001600160a01b038516620000fa5760405162461bcd60e51b815260206004820152601760248201527f44726177426561636f6e2f726e672d6e6f742d7a65726f000000000000000000604482015260640162000099565b60018463ffffffff161015620001535760405162461bcd60e51b815260206004820152601f60248201527f44726177426561636f6e2f6e6578742d647261772d69642d6774652d6f6e6500604482015260640162000099565b6005805463ffffffff861668010000000000000000026001600160601b03199091166001600160401b038616171790556200018e8262000288565b62000199866200033d565b50620001a58562000473565b620001b081620004bd565b6040805163ffffffff861681526001600160401b03851660208201527f3125f2f28108d5eabe48aa2a11adff21d6f9244f0436278992999404ba4fc5ad910160405180910390a16040516001600160401b038416907f9e5f7e6ac833c4735b5548bbeec59dac4d413789aa351fbe11a654dac0c4306c90600090a25050505050505062000652565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008163ffffffff1611620002e25760405162461bcd60e51b815260206004820152602a6024820152600080516020620024098339815191526044820152692d7468616e2d7a65726f60b01b606482015260840162000099565b6004805463ffffffff60c01b1916600160c01b63ffffffff8416908102919091179091556040519081527f4727494dbd863e2084366f539d6ec569aaf7ab78582a34f006f004266777cd19906020015b60405180910390a150565b6004546000906001600160a01b03908116908316620003b05760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f6044820152672d6164647265737360c01b606482015260840162000099565b806001600160a01b0316836001600160a01b03161415620004255760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f6578697374696e672d647261772d686973746f72796044820152672d6164647265737360c01b606482015260840162000099565b600480546001600160a01b0319166001600160a01b0385169081179091556040517feb70b03fab908e126e5efc33f8dfd2731fa89c716282a86769025f8dd4a6c1e090600090a25090919050565b600280546001600160a01b0319166001600160a01b0383169081179091556040517ff935763cc7c57ee8ed6318ed71e756cca0731294c9f46ff5b386f36d6ff1417a90600090a250565b603c8163ffffffff16116200051f5760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f726e672d74696d656f75742d67742d36302d7365636044820152607360f81b606482015260840162000099565b6004805463ffffffff60a01b1916600160a01b63ffffffff8416908102919091179091556040519081527f521671714dd36d366adf3fe2efec91d3f58a3131aad68e268821d8144b5d08459060200162000332565b805163ffffffff811681146200058957600080fd5b919050565b600080600080600080600060e0888a031215620005aa57600080fd5b8751620005b78162000639565b6020890151909750620005ca8162000639565b6040890151909650620005dd8162000639565b9450620005ed6060890162000574565b60808901519094506001600160401b03811681146200060b57600080fd5b92506200061b60a0890162000574565b91506200062b60c0890162000574565b905092959891949750929550565b6001600160a01b03811681146200064f57600080fd5b50565b611da780620006626000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063738bbea811610104578063a104fd79116100a2578063d1e7765711610071578063d1e77657146103b5578063e30c3978146103bd578063e4a75bb8146103ce578063f2fde38b146103d657600080fd5b8063a104fd791461036d578063a3ae35ab14610375578063ab70d49c14610388578063c57708c21461039b57600080fd5b80637f4296d7116100de5780637f4296d71461032e57806389c36f8e146103415780638da5cb5b14610349578063919bead01461035a57600080fd5b8063738bbea81461030d57806375e38f16146103155780637ce52b181461031d57600080fd5b80633e7a39081161017c5780634e71e0c81161014b5780634e71e0c8146102d45780635020ea56146102dc5780636bea5344146102ef578063715018a61461030557600080fd5b80633e7a39081461028a5780634019f2d61461029f578063412a616a146102c45780634aba4f6b146102cc57600080fd5b80631b5344a2116101b85780631b5344a2146102165780632a7ad6091461024d5780632ae168a61461025b57806339f92c301461026357600080fd5b80630996f6e1146101df5780630bdeecbd146101fc578063111070e414610206575b600080fd5b6101e76103e9565b60405190151581526020015b60405180910390f35b61020461040a565b005b60035463ffffffff1615156101e7565b60045474010000000000000000000000000000000000000000900463ffffffff165b60405163ffffffff90911681526020016101f3565b60035463ffffffff16610238565b6102046107b9565b60055467ffffffffffffffff165b60405167ffffffffffffffff90911681526020016101f3565b600454600160c01b900463ffffffff16610238565b6004546001600160a01b03165b6040516001600160a01b0390911681526020016101f3565b610204610aae565b6101e7610b78565b610204610c17565b6102046102ea366004611ada565b610ca5565b600354640100000000900463ffffffff16610238565b610204610d22565b6101e7610d97565b610271610e16565b6002546001600160a01b03166102ac565b61020461033c366004611a54565b610e20565b610271610e9a565b6000546001600160a01b03166102ac565b610204610368366004611ada565b610ec7565b610271610f41565b610271610383366004611b4e565b610f4b565b6102ac610396366004611a54565b610f7e565b60055468010000000000000000900463ffffffff16610238565b6101e7610ff2565b6001546001600160a01b03166102ac565b6101e7610ffc565b6102046103e4366004611a54565b61101e565b60006103f361115a565b8015610405575060035463ffffffff16155b905090565b60035463ffffffff166104645760405162461bcd60e51b815260206004820152601c60248201527f44726177426561636f6e2f726e672d6e6f742d7265717565737465640000000060448201526064015b60405180910390fd5b61046c610b78565b6104b85760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d636f6d706c6574650000000000604482015260640161045b565b6002546003546040517f9d2a5f9800000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690639d2a5f9890602401602060405180830381600087803b15801561052157600080fd5b505af1158015610535573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105599190611ac1565b60055460045491925063ffffffff68010000000000000000820481169267ffffffffffffffff90921691600160c01b90041660006105944290565b6040805160a08101825287815263ffffffff8781166020830190815260035468010000000000000000900467ffffffffffffffff90811684860190815289821660608601908152898516608087019081526004805498517f089eb925000000000000000000000000000000000000000000000000000000008152885191810191909152945186166024860152915183166044850152519091166064830152519091166084820152929350916001600160a01b039091169063089eb9259060a401602060405180830381600087803b15801561066e57600080fd5b505af1158015610682573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a69190611af7565b5060006106b4858585611180565b6005805467ffffffffffffffff191667ffffffffffffffff831617905590506106de866001611bfd565b6005805463ffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff909216919091179055600380547fffffffffffffffffffffffffffffffff000000000000000000000000000000001690556040518781527f13f646a3648ee5b5a0e8d6bc3d2d623fddf38fa7c8c5dfdbdbe6a913112edc6c9060200160405180910390a160405167ffffffffffffffff8216907f9e5f7e6ac833c4735b5548bbeec59dac4d413789aa351fbe11a654dac0c4306c90600090a250505050505050565b6107c161115a565b6108335760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6e6f742d6f766560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161045b565b60035463ffffffff16156108895760405162461bcd60e51b815260206004820181905260248201527f44726177426561636f6e2f726e672d616c72656164792d726571756573746564604482015260640161045b565b600254604080517f0d37b537000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692630d37b5379260048083019392829003018186803b1580156108e757600080fd5b505afa1580156108fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091f9190611a71565b90925090506001600160a01b0382161580159061093c5750600081115b1561095b5760025461095b906001600160a01b038481169116836111c5565b600254604080517f8678a7b2000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692638678a7b2926004808301939282900301818787803b1580156109ba57600080fd5b505af11580156109ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f29190611b14565b6003805463ffffffff8084166401000000000267ffffffffffffffff19909216908516171790559092509050610a254290565b6003805467ffffffffffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff90921691909117905560405163ffffffff82811682528316907f0de3a7af7d3c2126e4fb96a7065b39f8bb17e3b9111c092e11236942fb38ca619060200160405180910390a250505050565b610ab6610d97565b610b025760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d74696d65646f75740000000000604482015260640161045b565b600380547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811690915560405163ffffffff640100000000830481168083529216919082907f67638a3a7093a89cc6046dca58aa93d6343e30847e8f84fc3759d9d4a3e6e38b9060200160405180910390a25050565b6002546003546040517f3a19b9bc00000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690633a19b9bc9060240160206040518083038186803b158015610bdf57600080fd5b505afa158015610bf3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104059190611a9f565b6001546001600160a01b03163314610c715760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161045b565b600154610c86906001600160a01b03166112f5565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b33610cb86000546001600160a01b031690565b6001600160a01b031614610d0e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610d16611352565b610d1f816113cc565b50565b33610d356000546001600160a01b031690565b6001600160a01b031614610d8b5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610d9560006112f5565b565b60035460009068010000000000000000900467ffffffffffffffff16610dbd5750600090565b4260035460045467ffffffffffffffff92831692610e0692680100000000000000009004169074010000000000000000000000000000000000000000900463ffffffff16611c25565b67ffffffffffffffff1610905090565b60006104056114cc565b33610e336000546001600160a01b031690565b6001600160a01b031614610e895760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610e91611352565b610d1f81611508565b6005546004546000916104059167ffffffffffffffff90911690600160c01b900463ffffffff1642611180565b33610eda6000546001600160a01b031690565b6001600160a01b031614610f305760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610f38611352565b610d1f8161155f565b6000610405611647565b600554600454600091610f789167ffffffffffffffff90911690600160c01b900463ffffffff1684611180565b92915050565b600033610f936000546001600160a01b031690565b6001600160a01b031614610fe95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610f7882611672565b600061040561115a565b600061100f60035463ffffffff16151590565b80156104055750610405610b78565b336110316000546001600160a01b031690565b6001600160a01b0316146110875760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b6001600160a01b0381166111035760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161045b565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b60004267ffffffffffffffff1661116f611647565b67ffffffffffffffff161115905090565b60008063ffffffff84166111948685611cc6565b61119e9190611c48565b90506111b063ffffffff851682611c96565b6111ba9086611c25565b9150505b9392505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b15801561122a57600080fd5b505afa15801561123e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112629190611ac1565b61126c9190611be5565b604080516001600160a01b038616602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b3000000000000000000000000000000000000000000000000000000001790529091506112ef9085906117db565b50505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6003544390640100000000900463ffffffff1615806113805750600354640100000000900463ffffffff1681105b610d1f5760405162461bcd60e51b815260206004820152601860248201527f44726177426561636f6e2f726e672d696e2d666c696768740000000000000000604482015260640161045b565b603c8163ffffffff16116114485760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f726e672d74696d656f75742d67742d36302d73656360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161045b565b600480547fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000063ffffffff8416908102919091179091556040519081527f521671714dd36d366adf3fe2efec91d3f58a3131aad68e268821d8144b5d0845906020015b60405180910390a150565b6000806114d7611647565b90504267ffffffffffffffff808216908316116114f75760009250505090565b6115018183611cc6565b9250505090565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517ff935763cc7c57ee8ed6318ed71e756cca0731294c9f46ff5b386f36d6ff1417a90600090a250565b60008163ffffffff16116115db5760405162461bcd60e51b815260206004820152602a60248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6772656174657260448201527f2d7468616e2d7a65726f00000000000000000000000000000000000000000000606482015260840161045b565b600480547fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b63ffffffff8416908102919091179091556040519081527f4727494dbd863e2084366f539d6ec569aaf7ab78582a34f006f004266777cd19906020016114c1565b60045460055460009161040591600160c01b90910463ffffffff169067ffffffffffffffff16611c25565b6004546000906001600160a01b039081169083166116f85760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f60448201527f2d61646472657373000000000000000000000000000000000000000000000000606482015260840161045b565b806001600160a01b0316836001600160a01b031614156117805760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f6578697374696e672d647261772d686973746f727960448201527f2d61646472657373000000000000000000000000000000000000000000000000606482015260840161045b565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385169081179091556040517feb70b03fab908e126e5efc33f8dfd2731fa89c716282a86769025f8dd4a6c1e090600090a25090919050565b6000611830826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166118c59092919063ffffffff16565b8051909150156118c0578080602001905181019061184e9190611a9f565b6118c05760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161045b565b505050565b60606118d484846000856118dc565b949350505050565b6060824710156119545760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161045b565b843b6119a25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161045b565b600080866001600160a01b031685876040516119be9190611b78565b60006040518083038185875af1925050503d80600081146119fb576040519150601f19603f3d011682016040523d82523d6000602084013e611a00565b606091505b5091509150611a10828286611a1b565b979650505050505050565b60608315611a2a5750816111be565b825115611a3a5782518084602001fd5b8160405162461bcd60e51b815260040161045b9190611b94565b600060208284031215611a6657600080fd5b81356111be81611d4a565b60008060408385031215611a8457600080fd5b8251611a8f81611d4a565b6020939093015192949293505050565b600060208284031215611ab157600080fd5b815180151581146111be57600080fd5b600060208284031215611ad357600080fd5b5051919050565b600060208284031215611aec57600080fd5b81356111be81611d5f565b600060208284031215611b0957600080fd5b81516111be81611d5f565b60008060408385031215611b2757600080fd5b8251611b3281611d5f565b6020840151909250611b4381611d5f565b809150509250929050565b600060208284031215611b6057600080fd5b813567ffffffffffffffff811681146111be57600080fd5b60008251611b8a818460208701611cef565b9190910192915050565b6020815260008251806020840152611bb3816040850160208701611cef565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008219821115611bf857611bf8611d1b565b500190565b600063ffffffff808316818516808303821115611c1c57611c1c611d1b565b01949350505050565b600067ffffffffffffffff808316818516808303821115611c1c57611c1c611d1b565b600067ffffffffffffffff80841680611c8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b92169190910492915050565b600067ffffffffffffffff80831681851681830481118215151615611cbd57611cbd611d1b565b02949350505050565b600067ffffffffffffffff83811690831681811015611ce757611ce7611d1b565b039392505050565b60005b83811015611d0a578181015183820152602001611cf2565b838111156112ef5750506000910152565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6001600160a01b0381168114610d1f57600080fd5b63ffffffff81168114610d1f57600080fdfea2646970667358221220b19f9f03c8861b57c5c75ed76137fb96f379289083042ebdaa560a8cf15efdbf64736f6c6343000806003344726177426561636f6e2f626561636f6e2d706572696f642d67726561746572",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2429 CODESIZE SUB DUP1 PUSH3 0x2429 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x58E JUMP JUMPDEST DUP7 PUSH3 0x40 DUP2 PUSH3 0x238 JUMP JUMPDEST POP PUSH1 0x0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND GT PUSH3 0xA2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x2409 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x2D7468616E2D7A65726F PUSH1 0xB0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH3 0xFA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D7A65726F000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x99 JUMP JUMPDEST PUSH1 0x1 DUP5 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH3 0x153 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F6E6578742D647261772D69642D6774652D6F6E6500 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x99 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH4 0xFFFFFFFF DUP7 AND PUSH9 0x10000000000000000 MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND OR OR SWAP1 SSTORE PUSH3 0x18E DUP3 PUSH3 0x288 JUMP JUMPDEST PUSH3 0x199 DUP7 PUSH3 0x33D JUMP JUMPDEST POP PUSH3 0x1A5 DUP6 PUSH3 0x473 JUMP JUMPDEST PUSH3 0x1B0 DUP2 PUSH3 0x4BD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP7 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x3125F2F28108D5EABE48AA2A11ADFF21D6F9244F0436278992999404BA4FC5AD SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND SWAP1 PUSH32 0x9E5F7E6AC833C4735B5548BBEEC59DAC4D413789AA351FBE11A654DAC0C4306C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP POP POP POP POP PUSH3 0x652 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND GT PUSH3 0x2E2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x2409 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x2D7468616E2D7A65726F PUSH1 0xB0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x99 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xC0 SHL NOT AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x4727494DBD863E2084366F539D6EC569AAF7AB78582A34F006F004266777CD19 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND PUSH3 0x3B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F647261772D686973746F72792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0x2D61646472657373 PUSH1 0xC0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x99 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH3 0x425 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F6578697374696E672D647261772D686973746F7279 PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0x2D61646472657373 PUSH1 0xC0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x99 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xEB70B03FAB908E126E5EFC33F8DFD2731FA89C716282A86769025F8DD4A6C1E0 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xF935763CC7C57EE8ED6318ED71E756CCA0731294C9F46FF5B386F36D6FF1417A SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x3C DUP2 PUSH4 0xFFFFFFFF AND GT PUSH3 0x51F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D74696D656F75742D67742D36302D736563 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x73 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x99 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xA0 SHL NOT AND PUSH1 0x1 PUSH1 0xA0 SHL PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x521671714DD36D366ADF3FE2EFEC91D3F58A3131AAD68E268821D8144B5D0845 SWAP1 PUSH1 0x20 ADD PUSH3 0x332 JUMP JUMPDEST DUP1 MLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH3 0x589 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH3 0x5AA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 MLOAD PUSH3 0x5B7 DUP2 PUSH3 0x639 JUMP JUMPDEST PUSH1 0x20 DUP10 ADD MLOAD SWAP1 SWAP8 POP PUSH3 0x5CA DUP2 PUSH3 0x639 JUMP JUMPDEST PUSH1 0x40 DUP10 ADD MLOAD SWAP1 SWAP7 POP PUSH3 0x5DD DUP2 PUSH3 0x639 JUMP JUMPDEST SWAP5 POP PUSH3 0x5ED PUSH1 0x60 DUP10 ADD PUSH3 0x574 JUMP JUMPDEST PUSH1 0x80 DUP10 ADD MLOAD SWAP1 SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x60B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP PUSH3 0x61B PUSH1 0xA0 DUP10 ADD PUSH3 0x574 JUMP JUMPDEST SWAP2 POP PUSH3 0x62B PUSH1 0xC0 DUP10 ADD PUSH3 0x574 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x64F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1DA7 DUP1 PUSH3 0x662 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 0x1DA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x738BBEA8 GT PUSH2 0x104 JUMPI DUP1 PUSH4 0xA104FD79 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xD1E77657 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xD1E77657 EQ PUSH2 0x3B5 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x3BD JUMPI DUP1 PUSH4 0xE4A75BB8 EQ PUSH2 0x3CE JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x3D6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA104FD79 EQ PUSH2 0x36D JUMPI DUP1 PUSH4 0xA3AE35AB EQ PUSH2 0x375 JUMPI DUP1 PUSH4 0xAB70D49C EQ PUSH2 0x388 JUMPI DUP1 PUSH4 0xC57708C2 EQ PUSH2 0x39B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7F4296D7 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x7F4296D7 EQ PUSH2 0x32E JUMPI DUP1 PUSH4 0x89C36F8E EQ PUSH2 0x341 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x349 JUMPI DUP1 PUSH4 0x919BEAD0 EQ PUSH2 0x35A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x738BBEA8 EQ PUSH2 0x30D JUMPI DUP1 PUSH4 0x75E38F16 EQ PUSH2 0x315 JUMPI DUP1 PUSH4 0x7CE52B18 EQ PUSH2 0x31D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3E7A3908 GT PUSH2 0x17C JUMPI DUP1 PUSH4 0x4E71E0C8 GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x2D4 JUMPI DUP1 PUSH4 0x5020EA56 EQ PUSH2 0x2DC JUMPI DUP1 PUSH4 0x6BEA5344 EQ PUSH2 0x2EF JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x305 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3E7A3908 EQ PUSH2 0x28A JUMPI DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0x29F JUMPI DUP1 PUSH4 0x412A616A EQ PUSH2 0x2C4 JUMPI DUP1 PUSH4 0x4ABA4F6B EQ PUSH2 0x2CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1B5344A2 GT PUSH2 0x1B8 JUMPI DUP1 PUSH4 0x1B5344A2 EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0x2A7AD609 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0x2AE168A6 EQ PUSH2 0x25B JUMPI DUP1 PUSH4 0x39F92C30 EQ PUSH2 0x263 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x996F6E1 EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0xBDEECBD EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0x111070E4 EQ PUSH2 0x206 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E7 PUSH2 0x3E9 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x204 PUSH2 0x40A JUMP JUMPDEST STOP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO ISZERO PUSH2 0x1E7 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH2 0x204 PUSH2 0x7B9 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND JUMPDEST PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH2 0x204 PUSH2 0xAAE JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xB78 JUMP JUMPDEST PUSH2 0x204 PUSH2 0xC17 JUMP JUMPDEST PUSH2 0x204 PUSH2 0x2EA CALLDATASIZE PUSH1 0x4 PUSH2 0x1ADA JUMP JUMPDEST PUSH2 0xCA5 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH2 0x204 PUSH2 0xD22 JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xD97 JUMP JUMPDEST PUSH2 0x271 PUSH2 0xE16 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x204 PUSH2 0x33C CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0xE20 JUMP JUMPDEST PUSH2 0x271 PUSH2 0xE9A JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x204 PUSH2 0x368 CALLDATASIZE PUSH1 0x4 PUSH2 0x1ADA JUMP JUMPDEST PUSH2 0xEC7 JUMP JUMPDEST PUSH2 0x271 PUSH2 0xF41 JUMP JUMPDEST PUSH2 0x271 PUSH2 0x383 CALLDATASIZE PUSH1 0x4 PUSH2 0x1B4E JUMP JUMPDEST PUSH2 0xF4B JUMP JUMPDEST PUSH2 0x2AC PUSH2 0x396 CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0xF7E JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xFF2 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xFFC JUMP JUMPDEST PUSH2 0x204 PUSH2 0x3E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0x101E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F3 PUSH2 0x115A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x405 JUMPI POP PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x464 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D72657175657374656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x46C PUSH2 0xB78 JUMP JUMPDEST PUSH2 0x4B8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D636F6D706C6574650000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x9D2A5F9800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x9D2A5F98 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x521 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x535 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 0x559 SWAP2 SWAP1 PUSH2 0x1AC1 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD SWAP2 SWAP3 POP PUSH4 0xFFFFFFFF PUSH9 0x10000000000000000 DUP3 DIV DUP2 AND SWAP3 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV AND PUSH1 0x0 PUSH2 0x594 TIMESTAMP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE DUP8 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP8 DUP2 AND PUSH1 0x20 DUP4 ADD SWAP1 DUP2 MSTORE PUSH1 0x3 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 DUP2 AND DUP5 DUP7 ADD SWAP1 DUP2 MSTORE DUP10 DUP3 AND PUSH1 0x60 DUP7 ADD SWAP1 DUP2 MSTORE DUP10 DUP6 AND PUSH1 0x80 DUP8 ADD SWAP1 DUP2 MSTORE PUSH1 0x4 DUP1 SLOAD SWAP9 MLOAD PUSH32 0x89EB92500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP9 MLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP5 MLOAD DUP7 AND PUSH1 0x24 DUP7 ADD MSTORE SWAP2 MLOAD DUP4 AND PUSH1 0x44 DUP6 ADD MSTORE MLOAD SWAP1 SWAP2 AND PUSH1 0x64 DUP4 ADD MSTORE MLOAD SWAP1 SWAP2 AND PUSH1 0x84 DUP3 ADD MSTORE SWAP3 SWAP4 POP SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x89EB925 SWAP1 PUSH1 0xA4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x66E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x682 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 0x6A6 SWAP2 SWAP1 PUSH2 0x1AF7 JUMP JUMPDEST POP PUSH1 0x0 PUSH2 0x6B4 DUP6 DUP6 DUP6 PUSH2 0x1180 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH8 0xFFFFFFFFFFFFFFFF DUP4 AND OR SWAP1 SSTORE SWAP1 POP PUSH2 0x6DE DUP7 PUSH1 0x1 PUSH2 0x1BFD JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x3 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000 AND SWAP1 SSTORE PUSH1 0x40 MLOAD DUP8 DUP2 MSTORE PUSH32 0x13F646A3648EE5B5A0E8D6BC3D2D623FDDF38FA7C8C5DFDBDBE6A913112EDC6C SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 PUSH32 0x9E5F7E6AC833C4735B5548BBEEC59DAC4D413789AA351FBE11A654DAC0C4306C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x7C1 PUSH2 0x115A JUMP JUMPDEST PUSH2 0x833 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F626561636F6E2D706572696F642D6E6F742D6F7665 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0x889 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D616C72656164792D726571756573746564 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0xD37B53700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP2 MLOAD PUSH1 0x0 SWAP4 DUP5 SWAP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 PUSH4 0xD37B537 SWAP3 PUSH1 0x4 DUP1 DUP4 ADD SWAP4 SWAP3 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8FB 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 0x91F SWAP2 SWAP1 PUSH2 0x1A71 JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x93C JUMPI POP PUSH1 0x0 DUP2 GT JUMPDEST ISZERO PUSH2 0x95B JUMPI PUSH1 0x2 SLOAD PUSH2 0x95B SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND SWAP2 AND DUP4 PUSH2 0x11C5 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x8678A7B200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP2 MLOAD PUSH1 0x0 SWAP4 DUP5 SWAP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 PUSH4 0x8678A7B2 SWAP3 PUSH1 0x4 DUP1 DUP4 ADD SWAP4 SWAP3 DUP3 SWAP1 SUB ADD DUP2 DUP8 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x9BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x9CE 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 0x9F2 SWAP2 SWAP1 PUSH2 0x1B14 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP5 AND PUSH5 0x100000000 MUL PUSH8 0xFFFFFFFFFFFFFFFF NOT SWAP1 SWAP3 AND SWAP1 DUP6 AND OR OR SWAP1 SSTORE SWAP1 SWAP3 POP SWAP1 POP PUSH2 0xA25 TIMESTAMP SWAP1 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 MSTORE DUP4 AND SWAP1 PUSH32 0xDE3A7AF7D3C2126E4FB96A7065B39F8BB17E3B9111C092E11236942FB38CA61 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP JUMP JUMPDEST PUSH2 0xAB6 PUSH2 0xD97 JUMP JUMPDEST PUSH2 0xB02 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D74696D65646F75740000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000 DUP2 AND SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND DUP1 DUP4 MSTORE SWAP3 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x67638A3A7093A89CC6046DCA58AA93D6343E30847E8F84FC3759D9D4A3E6E38B SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x3A19B9BC00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x3A19B9BC SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBDF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xBF3 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 0x405 SWAP2 SWAP1 PUSH2 0x1A9F JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xC71 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0xC86 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x12F5 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0xCB8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xD0E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xD16 PUSH2 0x1352 JUMP JUMPDEST PUSH2 0xD1F DUP2 PUSH2 0x13CC JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH2 0xD35 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xD8B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xD95 PUSH1 0x0 PUSH2 0x12F5 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x0 SWAP1 PUSH9 0x10000000000000000 SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0xDBD JUMPI POP PUSH1 0x0 SWAP1 JUMP JUMPDEST TIMESTAMP PUSH1 0x3 SLOAD PUSH1 0x4 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND SWAP3 PUSH2 0xE06 SWAP3 PUSH9 0x10000000000000000 SWAP1 DIV AND SWAP1 PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x1C25 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND LT SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x405 PUSH2 0x14CC JUMP JUMPDEST CALLER PUSH2 0xE33 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE89 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xE91 PUSH2 0x1352 JUMP JUMPDEST PUSH2 0xD1F DUP2 PUSH2 0x1508 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD PUSH1 0x0 SWAP2 PUSH2 0x405 SWAP2 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND TIMESTAMP PUSH2 0x1180 JUMP JUMPDEST CALLER PUSH2 0xEDA PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF30 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xF38 PUSH2 0x1352 JUMP JUMPDEST PUSH2 0xD1F DUP2 PUSH2 0x155F JUMP JUMPDEST PUSH1 0x0 PUSH2 0x405 PUSH2 0x1647 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD PUSH1 0x0 SWAP2 PUSH2 0xF78 SWAP2 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP5 PUSH2 0x1180 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xF93 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xFE9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xF78 DUP3 PUSH2 0x1672 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x405 PUSH2 0x115A JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100F PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO ISZERO SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x405 JUMPI POP PUSH2 0x405 PUSH2 0xB78 JUMP JUMPDEST CALLER PUSH2 0x1031 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1087 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1103 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 TIMESTAMP PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x116F PUSH2 0x1647 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND GT ISZERO SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH4 0xFFFFFFFF DUP5 AND PUSH2 0x1194 DUP7 DUP6 PUSH2 0x1CC6 JUMP JUMPDEST PUSH2 0x119E SWAP2 SWAP1 PUSH2 0x1C48 JUMP JUMPDEST SWAP1 POP PUSH2 0x11B0 PUSH4 0xFFFFFFFF DUP6 AND DUP3 PUSH2 0x1C96 JUMP JUMPDEST PUSH2 0x11BA SWAP1 DUP7 PUSH2 0x1C25 JUMP JUMPDEST SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDD62ED3E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP2 DUP7 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x122A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x123E 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 0x1262 SWAP2 SWAP1 PUSH2 0x1AC1 JUMP JUMPDEST PUSH2 0x126C SWAP2 SWAP1 PUSH2 0x1BE5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x12EF SWAP1 DUP6 SWAP1 PUSH2 0x17DB JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x3 SLOAD NUMBER SWAP1 PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO DUP1 PUSH2 0x1380 JUMPI POP PUSH1 0x3 SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP2 LT JUMPDEST PUSH2 0xD1F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D696E2D666C696768740000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x3C DUP2 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1448 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D74696D656F75742D67742D36302D736563 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH21 0x10000000000000000000000000000000000000000 PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x521671714DD36D366ADF3FE2EFEC91D3F58A3131AAD68E268821D8144B5D0845 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x14D7 PUSH2 0x1647 JUMP JUMPDEST SWAP1 POP TIMESTAMP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 AND SWAP1 DUP4 AND GT PUSH2 0x14F7 JUMPI PUSH1 0x0 SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH2 0x1501 DUP2 DUP4 PUSH2 0x1CC6 JUMP JUMPDEST SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xF935763CC7C57EE8ED6318ED71E756CCA0731294C9F46FF5B386F36D6FF1417A SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND GT PUSH2 0x15DB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F626561636F6E2D706572696F642D67726561746572 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D7468616E2D7A65726F00000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x4727494DBD863E2084366F539D6EC569AAF7AB78582A34F006F004266777CD19 SWAP1 PUSH1 0x20 ADD PUSH2 0x14C1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x5 SLOAD PUSH1 0x0 SWAP2 PUSH2 0x405 SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x1C25 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND PUSH2 0x16F8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F647261772D686973746F72792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D61646472657373000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1780 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F6578697374696E672D647261772D686973746F7279 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D61646472657373000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xEB70B03FAB908E126E5EFC33F8DFD2731FA89C716282A86769025F8DD4A6C1E0 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1830 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18C5 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x18C0 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x184E SWAP2 SWAP1 PUSH2 0x1A9F JUMP JUMPDEST PUSH2 0x18C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x18D4 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x18DC JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x1954 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x19A2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x19BE SWAP2 SWAP1 PUSH2 0x1B78 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x19FB JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1A00 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1A10 DUP3 DUP3 DUP7 PUSH2 0x1A1B JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x1A2A JUMPI POP DUP2 PUSH2 0x11BE JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x1A3A JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x45B SWAP2 SWAP1 PUSH2 0x1B94 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A66 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x11BE DUP2 PUSH2 0x1D4A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A84 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x1A8F DUP2 PUSH2 0x1D4A JUMP JUMPDEST PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD MLOAD SWAP3 SWAP5 SWAP3 SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1AB1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x11BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1AD3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1AEC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x11BE DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1B09 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x11BE DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1B27 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x1B32 DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x1B43 DUP2 PUSH2 0x1D5F JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1B60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x11BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1B8A DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x1CEF JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1BB3 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1CEF JUMP JUMPDEST PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1BF8 JUMPI PUSH2 0x1BF8 PUSH2 0x1D1B JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1C1C JUMPI PUSH2 0x1C1C PUSH2 0x1D1B JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1C1C JUMPI PUSH2 0x1C1C PUSH2 0x1D1B JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP5 AND DUP1 PUSH2 0x1C8A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1CBD JUMPI PUSH2 0x1CBD PUSH2 0x1D1B JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1CE7 JUMPI PUSH2 0x1CE7 PUSH2 0x1D1B JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1D0A JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1CF2 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x12EF JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD1F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xD1F JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB1 SWAP16 SWAP16 SUB 0xC8 DUP7 SHL JUMPI 0xC5 0xC7 0x5E 0xD7 PUSH2 0x37FB SWAP7 RETURN PUSH26 0x289083042EBDAA560A8CF15EFDBF64736F6C6343000806003344 PUSH19 0x6177426561636F6E2F626561636F6E2D706572 PUSH10 0x6F642D67726561746572 ",
              "sourceMap": "1131:14710:29:-:0;;;3923:841;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4161:6;1648:24:22;4161:6:29;1648:9:22;:24::i;:::-;1603:76;4208:1:29::1;4187:18;-1:-1:-1::0;;;;;4187:22:29::1;;4179:77;;;::::0;-1:-1:-1;;;4179:77:29;;2149:2:84;4179:77:29::1;::::0;::::1;2131:21:84::0;2188:2;2168:18;;;2161:30;-1:-1:-1;;;;;;;;;;;2207:18:84;;;2200:62;-1:-1:-1;;;2278:18:84;;;2271:40;2328:19;;4179:77:29::1;;;;;;;;;-1:-1:-1::0;;;;;4274:27:29;::::1;4266:63;;;::::0;-1:-1:-1;;;4266:63:29;;2962:2:84;4266:63:29::1;::::0;::::1;2944:21:84::0;3001:2;2981:18;;;2974:30;3040:25;3020:18;;;3013:53;3083:18;;4266:63:29::1;2934:173:84::0;4266:63:29::1;4362:1;4347:11;:16;;;;4339:60;;;::::0;-1:-1:-1;;;4339:60:29;;1380:2:84;4339:60:29::1;::::0;::::1;1362:21:84::0;1419:2;1399:18;;;1392:30;1458:33;1438:18;;;1431:61;1509:18;;4339:60:29::1;1352:181:84::0;4339:60:29::1;4410:21;:42:::0;;4462:24:::1;::::0;::::1;::::0;::::1;-1:-1:-1::0;;;;;;4462:24:29;;;-1:-1:-1;;;;;4410:42:29;::::1;4462:24:::0;::::1;::::0;;4497:45:::1;4521:20:::0;4497:23:::1;:45::i;:::-;4552:27;4567:11:::0;4552:14:::1;:27::i;:::-;-1:-1:-1::0;4589:20:29::1;4604:4:::0;4589:14:::1;:20::i;:::-;4619:27;4634:11:::0;4619:14:::1;:27::i;:::-;4662:41;::::0;;3918:10:84;3906:23;;3888:42;;-1:-1:-1;;;;;3966:31:84;;3961:2;3946:18;;3939:59;4662:41:29::1;::::0;3861:18:84;4662:41:29::1;;;;;;;4718:39;::::0;-1:-1:-1;;;;;4718:39:29;::::1;::::0;::::1;::::0;;;::::1;3923:841:::0;;;;;;;1131:14710;;3470:174:22;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;;;;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;15109:283:29:-;15221:1;15198:20;:24;;;15190:79;;;;-1:-1:-1;;;15190:79:29;;2149:2:84;15190:79:29;;;2131:21:84;2188:2;2168:18;;;2161:30;-1:-1:-1;;;;;;;;;;;2207:18:84;;;2200:62;-1:-1:-1;;;2278:18:84;;;2271:40;2328:19;;15190:79:29;2121:232:84;15190:79:29;15279:19;:42;;-1:-1:-1;;;;15279:42:29;-1:-1:-1;;;15279:42:29;;;;;;;;;;;;;15337:48;;3665:42:84;;;15337:48:29;;3653:2:84;3638:18;15337:48:29;;;;;;;;15109:283;:::o;14424:516::-;14551:10;;14494:11;;-1:-1:-1;;;;;14551:10:29;;;;14579:37;;14571:90;;;;-1:-1:-1;;;14571:90:29;;3314:2:84;14571:90:29;;;3296:21:84;3353:2;3333:18;;;3326:30;3392:34;3372:18;;;3365:62;-1:-1:-1;;;3443:18:84;;;3436:38;3491:19;;14571:90:29;3286:230:84;14571:90:29;14728:19;-1:-1:-1;;;;;14693:55:29;14701:14;-1:-1:-1;;;;;14693:55:29;;;14672:142;;;;-1:-1:-1;;;14672:142:29;;1740:2:84;14672:142:29;;;1722:21:84;1779:2;1759:18;;;1752:30;1818:34;1798:18;;;1791:62;-1:-1:-1;;;1869:18:84;;;1862:38;1917:19;;14672:142:29;1712:230:84;14672:142:29;14825:10;:27;;-1:-1:-1;;;;;;14825:27:29;-1:-1:-1;;;;;14825:27:29;;;;;;;;14868:33;;;;-1:-1:-1;;14868:33:29;-1:-1:-1;14919:14:29;;14424:516;-1:-1:-1;14424:516:29:o;11695:142::-;11768:3;:17;;-1:-1:-1;;;;;;11768:17:29;-1:-1:-1;;;;;11768:17:29;;;;;;;;11800:30;;;;-1:-1:-1;;11800:30:29;11695:142;:::o;15631:208::-;15716:2;15702:11;:16;;;15694:62;;;;-1:-1:-1;;;15694:62:29;;2560:2:84;15694:62:29;;;2542:21:84;2599:2;2579:18;;;2572:30;2638:34;2618:18;;;2611:62;-1:-1:-1;;;2689:18:84;;;2682:31;2730:19;;15694:62:29;2532:223:84;15694:62:29;15766:10;:24;;-1:-1:-1;;;;15766:24:29;-1:-1:-1;;;15766:24:29;;;;;;;;;;;;;15806:26;;3665:42:84;;;15806:26:29;;3653:2:84;3638:18;15806:26:29;3620:93:84;14:167;92:13;;145:10;134:22;;124:33;;114:2;;171:1;168;161:12;114:2;73:108;;;:::o;186:987::-;348:6;356;364;372;380;388;396;449:3;437:9;428:7;424:23;420:33;417:2;;;466:1;463;456:12;417:2;498:9;492:16;517:31;542:5;517:31;:::i;:::-;617:2;602:18;;596:25;567:5;;-1:-1:-1;630:33:84;596:25;630:33;:::i;:::-;734:2;719:18;;713:25;682:7;;-1:-1:-1;747:33:84;713:25;747:33;:::i;:::-;799:7;-1:-1:-1;825:48:84;869:2;854:18;;825:48;:::i;:::-;918:3;903:19;;897:26;815:58;;-1:-1:-1;;;;;;954:32:84;;942:45;;932:2;;1001:1;998;991:12;932:2;1024:7;-1:-1:-1;1050:49:84;1094:3;1079:19;;1050:49;:::i;:::-;1040:59;;1118:49;1162:3;1151:9;1147:19;1118:49;:::i;:::-;1108:59;;407:766;;;;;;;;;;:::o;4009:131::-;-1:-1:-1;;;;;4084:31:84;;4074:42;;4064:2;;4130:1;4127;4120:12;4064:2;4054:86;:::o;:::-;1131:14710:29;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_beaconPeriodEndAt_6006": {
                  "entryPoint": 5703,
                  "id": 6006,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_beaconPeriodRemainingSeconds_6034": {
                  "entryPoint": 5324,
                  "id": 6034,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_calculateNextBeaconPeriodStartTime_5982": {
                  "entryPoint": 4480,
                  "id": 5982,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_callOptionalReturn_1116": {
                  "entryPoint": 6107,
                  "id": 1116,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_currentTime_5995": {
                  "entryPoint": null,
                  "id": 5995,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_isBeaconPeriodOver_6047": {
                  "entryPoint": 4442,
                  "id": 6047,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_requireDrawNotStarted_6070": {
                  "entryPoint": 4946,
                  "id": 6070,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_setBeaconPeriodSeconds_6144": {
                  "entryPoint": 5471,
                  "id": 6144,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setDrawBuffer_6122": {
                  "entryPoint": 5746,
                  "id": 6122,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_4058": {
                  "entryPoint": 4853,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngService_5953": {
                  "entryPoint": 5384,
                  "id": 5953,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngTimeout_6166": {
                  "entryPoint": 5068,
                  "id": 6166,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@beaconPeriodEndAt_5717": {
                  "entryPoint": 3905,
                  "id": 5717,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@beaconPeriodRemainingSeconds_5706": {
                  "entryPoint": 3606,
                  "id": 5706,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@calculateNextBeaconPeriodStartTimeFromCurrentTime_5566": {
                  "entryPoint": 3738,
                  "id": 5566,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@calculateNextBeaconPeriodStartTime_5582": {
                  "entryPoint": 3915,
                  "id": 5582,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@canCompleteDraw_5552": {
                  "entryPoint": 4092,
                  "id": 5552,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@canStartDraw_5538": {
                  "entryPoint": 1001,
                  "id": 5538,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@cancelDraw_5612": {
                  "entryPoint": 2734,
                  "id": 5612,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@claimOwnership_4038": {
                  "entryPoint": 3095,
                  "id": 4038,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@completeDraw_5695": {
                  "entryPoint": 1034,
                  "id": 5695,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@functionCallWithValue_2255": {
                  "entryPoint": 6364,
                  "id": 2255,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_2185": {
                  "entryPoint": 6341,
                  "id": 2185,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getBeaconPeriodSeconds_5725": {
                  "entryPoint": null,
                  "id": 5725,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getBeaconPeriodStartedAt_5733": {
                  "entryPoint": null,
                  "id": 5733,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDrawBuffer_5742": {
                  "entryPoint": null,
                  "id": 5742,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getLastRngLockBlock_5761": {
                  "entryPoint": null,
                  "id": 5761,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getLastRngRequestId_5771": {
                  "entryPoint": null,
                  "id": 5771,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getNextDrawId_5750": {
                  "entryPoint": null,
                  "id": 5750,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getRngService_5780": {
                  "entryPoint": null,
                  "id": 5780,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getRngTimeout_5788": {
                  "entryPoint": null,
                  "id": 5788,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isBeaconPeriodOver_5799": {
                  "entryPoint": 4082,
                  "id": 5799,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_2114": {
                  "entryPoint": null,
                  "id": 2114,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@isRngCompleted_5485": {
                  "entryPoint": 2936,
                  "id": 5485,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isRngRequested_5498": {
                  "entryPoint": null,
                  "id": 5498,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isRngTimedOut_5523": {
                  "entryPoint": 3479,
                  "id": 5523,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_3970": {
                  "entryPoint": null,
                  "id": 3970,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3979": {
                  "entryPoint": null,
                  "id": 3979,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3993": {
                  "entryPoint": 3362,
                  "id": 3993,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeIncreaseAllowance_1030": {
                  "entryPoint": 4549,
                  "id": 1030,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setBeaconPeriodSeconds_5904": {
                  "entryPoint": 3783,
                  "id": 5904,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setDrawBuffer_5817": {
                  "entryPoint": 3966,
                  "id": 5817,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setRngService_5937": {
                  "entryPoint": 3616,
                  "id": 5937,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setRngTimeout_5920": {
                  "entryPoint": 3237,
                  "id": 5920,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@startDraw_5888": {
                  "entryPoint": 1977,
                  "id": 5888,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_4020": {
                  "entryPoint": 4126,
                  "id": 4020,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_2390": {
                  "entryPoint": 6683,
                  "id": 2390,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 6740,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_uint256_fromMemory": {
                  "entryPoint": 6769,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 6815,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_IDrawBuffer_$11318": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_RNGInterface_$4142": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 6849,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32": {
                  "entryPoint": 6874,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32_fromMemory": {
                  "entryPoint": 6903,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32t_uint32_fromMemory": {
                  "entryPoint": 6932,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint64": {
                  "entryPoint": 6990,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 7032,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_RNGInterface_$4142__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7060,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2c3630652afe1a04dd2231790fc99ffb459bdb7330f49c8f20817dc286484280__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2e18d8e745e19c95f7142708d51d3a5265c91aa34e14edc112d4234ceabbb69d__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_60fe4ea05210616f96b292a0bef542d8f4e15701730bf655ba6a82515973dbfe__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_bc38701987d08ad045946a7ffa6b0638aef3d414cf835a4d20b4244572e13448__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c11cf851f1db5cba405210987a8cab160410ee1c3cd1333983ce975b7fceef19__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_eb3fd409b99aafcfccb46998551ef8c9b3d4ba898753e940771a0a3d4f33cc77__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Draw_$11085_memory_ptr__to_t_struct$_Draw_$11085_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 7141,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint32": {
                  "entryPoint": 7165,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint64": {
                  "entryPoint": 7205,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint64": {
                  "entryPoint": 7240,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint64": {
                  "entryPoint": 7318,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint64": {
                  "entryPoint": 7366,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 7407,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "panic_error_0x11": {
                  "entryPoint": 7451,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 7498,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint32": {
                  "entryPoint": 7519,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:14645:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "84:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "130:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "142:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "132:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "132:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "132:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "105:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "101:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "101:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "126:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "97:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "97:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "94:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "155:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "181:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "168:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "168:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "159:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "225:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "200:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "200:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "200:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "250:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "50:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "61:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "73:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "364:214:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "410:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "419:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "422:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "412:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "412:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "412:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "385:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "394:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "381:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "381:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "406:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "377:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "377:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "374:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "435:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "454:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "448:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "448:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "439:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "498:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "473:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "473:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "473:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "513:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "523:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "513:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "537:35:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "557:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "568:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "553:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "553:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "547:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "547:25:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "537:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "322:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "333:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "345:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "353:6:84",
                            "type": ""
                          }
                        ],
                        "src": "266:312:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "661:199:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "707:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "716:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "719:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "709:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "709:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "709:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "682:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "691:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "678:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "678:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "703:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "674:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "674:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "671:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "732:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "751:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "745:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "745:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "736:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "814:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "823:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "826:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "816:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "816:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "816:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "783:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "804:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "797:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "797:13:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "790:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "790:21:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "780:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "780:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "773:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "773:40:84"
                              },
                              "nodeType": "YulIf",
                              "src": "770:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "839:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "849:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "839:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "627:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "638:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "650:6:84",
                            "type": ""
                          }
                        ],
                        "src": "583:277:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "956:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1002:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1011:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1014:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1004:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1004:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1004:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "977:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "986:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "973:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "973:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "998:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "969:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "969:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "966:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1027:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1053:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1040:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1040:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1031:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1097:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1072:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1072:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1072:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1112:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1122:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1112:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IDrawBuffer_$11318",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "922:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "933:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "945:6:84",
                            "type": ""
                          }
                        ],
                        "src": "865:268:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1229:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1275:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1284:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1287:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1277:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1277:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1277:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1250:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1259:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1246:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1246:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1271:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1242:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1242:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1239:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1300:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1326:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1313:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1313:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1304:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1370:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1345:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1345:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1345:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1385:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1395:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1385:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_RNGInterface_$4142",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1195:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1206:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1218:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1138:268:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1492:103:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1538:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1547:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1550:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1540:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1540:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1540:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1513:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1522:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1509:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1509:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1534:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1505:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1505:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1502:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1563:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1579:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1573:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1573:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1563:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1458:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1469:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1481:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1411:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1669:176:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1715:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1724:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1727:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1717:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1717:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1717:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1690:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1699:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1686:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1686:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1711:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1682:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1682:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1679:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1740:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1766:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1753:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1753:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1744:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1809:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1785:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1785:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1785:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1824:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1834:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1824:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1635:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1646:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1658:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1600:245:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1930:169:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1976:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1985:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1988:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1978:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1978:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1978:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1951:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1960:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1947:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1947:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1972:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1943:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1943:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1940:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2001:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2020:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2014:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2014:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2005:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2063:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2039:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2039:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2039:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2078:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2088:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2078:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1896:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1907:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1919:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1850:249:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2200:285:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2246:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2255:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2258:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2248:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2248:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2248:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2221:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2230:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2217:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2217:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2242:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2213:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2213:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2210:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2271:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2290:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2284:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2284:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2275:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2333:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2309:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2309:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2309:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2348:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2358:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2348:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2372:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2397:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2408:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2393:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2393:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2387:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2387:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2376:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2445:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2421:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2421:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2421:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2462:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2472:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2462:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2158:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2169:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2181:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2189:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2104:381:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2559:215:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2605:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2614:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2617:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2607:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2607:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2607:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2580:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2589:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2576:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2576:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2601:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2572:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2572:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2569:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2630:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2656:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2643:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2643:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2634:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2728:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2737:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2740:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2730:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2730:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2730:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2688:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2699:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2706:18:84",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2695:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2695:30:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2685:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2685:41:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2678:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2678:49:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2675:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2753:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2763:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2753:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2525:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2536:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2548:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2490:284:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2916:137:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2926:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2946:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2940:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2940:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "2930:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2988:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2996:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2984:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2984:17:84"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3003:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3008:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "2962:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2962:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2962:53:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3024:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3035:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3040:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3031:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3031:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "3024:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2892:3:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2897:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "2908:3:84",
                            "type": ""
                          }
                        ],
                        "src": "2779:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3159:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3169:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3181:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3192:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3177:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3177:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3169:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3211:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3226:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3234:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3222:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3222:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3204:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3204:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3204:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3128:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3139:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3150:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3058:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3418:198:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3428:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3440:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3451:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3436:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3436:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3428:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3463:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3473:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3467:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3531:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3546:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3554:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3542:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3542:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3524:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3524:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3524:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3578:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3589:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3574:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3574:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3598:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3606:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3594:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3594:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3567:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3567:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3567:43:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3379:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3390:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3398:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3409:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3289:327:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3750:168:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3760:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3772:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3783:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3768:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3768:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3760:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3802:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3817:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3825:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3813:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3813:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3795:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3795:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3795:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3889:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3900:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3885:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3885:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3905:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3878:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3878:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3878:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3711:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3722:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3730:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3741:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3621:297:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4018:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4028:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4040:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4051:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4036:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4036:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4028:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4070:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "4095:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "4088:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4088:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "4081:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4081:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4063:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4063:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4063:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3987:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3998:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4009:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3923:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4237:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4247:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4259:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4270:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4255:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4255:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4247:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4289:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4304:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4312:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4300:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4300:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4282:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4282:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4282:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4206:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4217:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4228:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4115:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4489:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4499:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4511:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4522:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4507:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4507:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4499:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4541:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4556:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4564:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4552:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4552:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4534:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4534:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4534:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_RNGInterface_$4142__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4458:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4469:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4480:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4367:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4740:321:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4757:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4768:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4750:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4750:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4750:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4780:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4800:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4794:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4794:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4784:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4827:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4838:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4823:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4823:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4843:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4816:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4816:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4816:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4885:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4893:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4881:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4881:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4902:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4913:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4898:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4898:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4918:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "4859:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4859:66:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4859:66:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4934:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4950:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "4969:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4977:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4965:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4965:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4982:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4961:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4961:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4946:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4946:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5052:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4942:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4942:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4934:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4709:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4720:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4731:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4619:442:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5240:178:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5257:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5268:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5250:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5250:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5250:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5291:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5302:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5287:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5287:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5307:2:84",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5280:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5280:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5280:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5330:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5341:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5326:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5326:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d726571756573746564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5346:30:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-requested"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5319:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5319:58:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5319:58:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5386:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5398:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5409:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5394:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5394:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5386:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2c3630652afe1a04dd2231790fc99ffb459bdb7330f49c8f20817dc286484280__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5217:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5231:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5066:352:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5597:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5614:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5625:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5607:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5607:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5607:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5648:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5659:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5644:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5644:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5664:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5637:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5637:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5637:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5687:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5698:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5683:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5683:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d616c72656164792d726571756573746564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5703:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-already-requested"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5676:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5676:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5676:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5747:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5759:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5770:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5755:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5755:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5747:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2e18d8e745e19c95f7142708d51d3a5265c91aa34e14edc112d4234ceabbb69d__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5574:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5588:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5423:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5958:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5975:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5986:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5968:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5968:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5968:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6009:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6020:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6005:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6005:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6025:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5998:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5998:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5998:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6048:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6059:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6044:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6044:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f6578697374696e672d647261772d686973746f7279",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6064:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/existing-draw-history"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6037:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6037:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6037:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6119:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6130:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6115:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6115:18:84"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6135:10:84",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6108:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6108:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6108:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6155:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6167:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6178:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6163:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6163:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6155:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5935:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5949:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5784:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6367:232:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6384:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6395:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6377:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6377:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6377:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6418:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6429:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6414:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6414:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6434:2:84",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6407:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6407:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6407:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6457:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6468:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6453:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6453:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d67726561746572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6473:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/beacon-period-greater"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6446:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6446:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6446:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6528:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6539:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6524:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6524:18:84"
                                  },
                                  {
                                    "hexValue": "2d7468616e2d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6544:12:84",
                                    "type": "",
                                    "value": "-than-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6517:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6517:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6517:40:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6566:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6578:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6589:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6574:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6574:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6566:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6344:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6358:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6193:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6778:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6795:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6806:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6788:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6788:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6788:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6829:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6840:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6825:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6825:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6845:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6818:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6818:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6818:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6868:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6879:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6864:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6864:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6884:34:84",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6857:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6857:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6857:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6939:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6950:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6935:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6935:18:84"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6955:8:84",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6928:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6928:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6928:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6973:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6985:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6996:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6981:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6981:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6973:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6755:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6769:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6604:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7185:177:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7202:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7213:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7195:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7195:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7195:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7236:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7247:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7232:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7232:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7252:2:84",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7225:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7225:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7225:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7275:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7286:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7271:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7271:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d636f6d706c657465",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7291:29:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-complete"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7264:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7264:57:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7264:57:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7330:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7342:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7353:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7338:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7338:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7330:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_60fe4ea05210616f96b292a0bef542d8f4e15701730bf655ba6a82515973dbfe__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7162:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7176:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7011:351:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7541:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7558:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7569:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7551:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7551:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7551:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7592:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7603:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7588:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7588:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7608:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7581:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7581:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7581:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7631:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7642:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7627:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7627:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7647:26:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7620:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7620:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7620:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7683:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7695:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7706:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7691:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7691:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7683:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7518:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7532:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7367:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7894:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7911:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7922:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7904:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7904:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7904:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7945:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7956:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7941:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7941:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7961:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7934:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7934:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7934:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7984:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7995:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7980:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7980:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d74696d656f75742d67742d36302d736563",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8000:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-timeout-gt-60-sec"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7973:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7973:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7973:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8055:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8066:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8051:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8051:18:84"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8071:3:84",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8044:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8044:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8044:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8084:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8096:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8107:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8092:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8092:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8084:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7871:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7885:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7720:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8296:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8313:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8324:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8306:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8306:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8306:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8347:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8358:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8343:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8343:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8363:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8336:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8336:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8336:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8386:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8397:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8382:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8382:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8402:33:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8375:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8375:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8375:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8445:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8457:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8468:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8453:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8453:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8445:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8273:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8287:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8122:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8656:177:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8673:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8684:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8666:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8666:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8666:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8707:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8718:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8703:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8703:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8723:2:84",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8696:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8696:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8696:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8746:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8757:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8742:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8742:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d74696d65646f7574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8762:29:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-timedout"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8735:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8735:57:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8735:57:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8801:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8813:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8824:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8809:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8809:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8801:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_bc38701987d08ad045946a7ffa6b0638aef3d414cf835a4d20b4244572e13448__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8633:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8647:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8482:351:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9012:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9029:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9040:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9022:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9022:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9022:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9063:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9074:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9059:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9059:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9079:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9052:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9052:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9052:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9102:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9113:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9098:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9098:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d6e6f742d6f7665",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9118:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/beacon-period-not-ove"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9091:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9091:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9091:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9173:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9184:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9169:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9169:18:84"
                                  },
                                  {
                                    "hexValue": "72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9189:3:84",
                                    "type": "",
                                    "value": "r"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9162:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9162:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9162:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9202:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9214:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9225:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9210:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9210:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9202:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c11cf851f1db5cba405210987a8cab160410ee1c3cd1333983ce975b7fceef19__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8989:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9003:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8838:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9414:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9431:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9442:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9424:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9424:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9424:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9465:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9476:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9461:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9461:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9481:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9454:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9454:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9454:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9504:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9515:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9500:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9500:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9520:31:84",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9493:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9493:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9493:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9561:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9573:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9584:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9569:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9569:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9561:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9391:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9405:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9240:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9772:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9789:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9800:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9782:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9782:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9782:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9823:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9834:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9819:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9819:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9839:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9812:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9812:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9812:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9862:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9873:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9858:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9858:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9878:34:84",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9851:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9851:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9851:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9933:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9944:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9929:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9929:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9949:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9922:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9922:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9922:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9966:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9978:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9989:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9974:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9974:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9966:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9749:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9763:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9598:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10178:232:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10195:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10206:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10188:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10188:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10188:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10229:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10240:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10225:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10225:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10245:2:84",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10218:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10218:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10218:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10268:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10279:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10264:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10264:18:84"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10284:34:84",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10257:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10257:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10257:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10339:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10350:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10335:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10335:18:84"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10355:12:84",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10328:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10328:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10328:40:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10377:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10389:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10400:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10385:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10385:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10377:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10155:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10169:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10004:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10589:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10606:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10617:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10599:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10599:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10599:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10640:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10651:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10636:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10636:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10656:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10629:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10629:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10629:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10679:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10690:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10675:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10675:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10695:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/draw-history-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10668:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10668:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10668:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10750:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10761:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10746:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10746:18:84"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10766:10:84",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10739:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10739:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10739:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10786:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10798:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10809:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10794:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10794:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10786:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10566:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10580:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10415:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10998:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11015:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11026:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11008:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11008:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11008:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11049:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11060:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11045:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11045:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11065:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11038:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11038:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11038:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11088:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11099:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11084:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11084:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d696e2d666c69676874",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11104:26:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-in-flight"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11077:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11077:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11077:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11140:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11152:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11163:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11148:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11148:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11140:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_eb3fd409b99aafcfccb46998551ef8c9b3d4ba898753e940771a0a3d4f33cc77__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10975:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10989:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10824:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11324:524:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11334:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11346:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11357:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11342:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11342:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11334:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11377:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11394:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "11388:5:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11388:13:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11370:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11370:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11370:32:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11411:44:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11441:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11449:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11437:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11437:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11431:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11431:24:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "11415:12:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11464:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11474:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11468:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11504:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11515:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11500:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11500:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11526:12:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11540:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11522:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11522:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11493:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11493:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11493:51:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11553:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11585:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11593:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11581:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11581:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11575:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11575:24:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11557:14:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11608:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11618:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "11612:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11656:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11667:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11652:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11652:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11678:14:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "11694:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11674:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11674:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11645:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11645:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11645:53:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11718:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11729:4:84",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11714:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11714:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "11750:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "11758:4:84",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "11746:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "11746:17:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "11740:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11740:24:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "11766:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11736:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11736:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11707:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11707:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11707:63:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11790:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11801:4:84",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11786:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11786:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "11822:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "11830:4:84",
                                                "type": "",
                                                "value": "0x80"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "11818:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "11818:17:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "11812:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11812:24:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11838:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11808:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11808:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11779:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11779:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11779:63:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$11085_memory_ptr__to_t_struct$_Draw_$11085_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11293:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11304:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11315:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11177:671:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11954:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11964:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11976:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11987:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11972:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11972:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11964:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12006:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12017:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11999:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11999:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11999:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11923:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11934:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11945:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11853:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12134:93:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12144:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12156:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12167:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12152:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12152:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12144:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12186:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12201:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12209:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12197:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12197:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12179:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12179:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12179:42:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12103:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12114:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12125:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12035:192:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12331:101:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12341:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12353:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12364:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12349:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12349:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12341:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12383:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12398:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12406:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12394:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12394:31:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12376:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12376:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12376:50:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12300:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12311:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12322:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12232:200:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12485:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12512:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12514:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12514:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12514:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12501:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "12508:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "12504:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12504:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12498:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12498:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12495:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12543:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12554:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12557:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12550:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12550:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "12543:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12468:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12471:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12477:3:84",
                            "type": ""
                          }
                        ],
                        "src": "12437:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12617:181:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12627:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12637:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12631:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12656:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12671:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12674:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12667:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12667:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12660:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12686:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12701:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12704:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12697:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12697:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12690:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12741:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12743:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12743:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12743:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12722:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12731:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12735:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "12727:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12727:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12719:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12719:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12716:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12772:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12783:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12788:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12779:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12779:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "12772:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12600:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12603:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12609:3:84",
                            "type": ""
                          }
                        ],
                        "src": "12570:228:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12850:189:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12860:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12870:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12864:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12897:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12912:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12915:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12908:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12908:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12901:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12927:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12942:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12945:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12938:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12938:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12931:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12982:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12984:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12984:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12984:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12963:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12972:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12976:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "12968:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12968:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12960:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12960:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12957:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13013:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13024:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13029:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13020:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13020:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "13013:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12833:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12836:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12842:3:84",
                            "type": ""
                          }
                        ],
                        "src": "12803:236:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13089:308:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13099:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13109:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13103:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13136:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13151:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13154:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13147:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13147:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13140:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13189:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13210:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13213:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13203:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13203:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13203:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13311:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13314:4:84",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13304:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13304:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13304:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13339:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13342:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13332:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13332:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13332:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13176:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "13169:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13169:11:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13166:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13366:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "x",
                                        "nodeType": "YulIdentifier",
                                        "src": "13379:1:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13382:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "13375:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13375:10:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13387:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "13371:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13371:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "13366:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13074:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13077:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "13083:1:84",
                            "type": ""
                          }
                        ],
                        "src": "13044:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13453:219:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13463:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13473:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13467:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13500:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13515:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13518:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13511:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13511:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13504:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13530:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13545:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13548:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13541:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13541:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13534:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13611:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13613:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13613:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13613:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "13581:3:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "13574:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13574:11:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "13567:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13567:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13591:3:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "13600:2:84"
                                          },
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "13604:3:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "13596:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13596:12:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "13588:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13588:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13563:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13563:47:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13560:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13642:24:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13657:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13662:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "13653:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13653:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "13642:7:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13432:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13435:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "13441:7:84",
                            "type": ""
                          }
                        ],
                        "src": "13402:270:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13725:181:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13735:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13745:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13739:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13772:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13787:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13790:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13783:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13783:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13776:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13802:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13817:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13820:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13813:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13813:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13806:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13848:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13850:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13850:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13850:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13838:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13843:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13835:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13835:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13832:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13879:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13891:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13896:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "13887:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13887:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "13879:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13707:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13710:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "13716:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13677:229:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13964:205:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13974:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13983:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "13978:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14043:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "14068:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "14073:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "14064:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14064:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14087:3:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14092:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "14083:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "14083:11:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "14077:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14077:18:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14057:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14057:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14057:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14004:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14007:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14001:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14001:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "14015:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14017:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14026:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14029:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14022:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14022:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "14017:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "13997:3:84",
                                "statements": []
                              },
                              "src": "13993:113:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14132:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "14145:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "14150:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "14141:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14141:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14159:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14134:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14134:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14134:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14121:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14124:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14118:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14118:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "14115:2:84"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "13942:3:84",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "13947:3:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "13952:6:84",
                            "type": ""
                          }
                        ],
                        "src": "13911:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14206:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14223:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14226:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14216:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14216:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14216:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14320:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14323:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14313:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14313:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14313:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14344:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14347:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "14337:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14337:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14337:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "14174:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14408:109:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14495:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14504:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14507:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "14497:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14497:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14497:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "14431:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "14442:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14449:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14438:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14438:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "14428:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14428:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "14421:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14421:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "14418:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14397:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14363:154:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14566:77:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14621:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14630:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14633:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "14623:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14623:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14623:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "14589:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "14600:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14607:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14596:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14596:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "14586:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14586:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "14579:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14579:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "14576:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14555:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14522:121:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_uint256_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := mload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IDrawBuffer_$11318(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_RNGInterface_$4142(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_decode_tuple_t_uint32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint32t_uint32_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_uint64(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_RNGInterface_$4142__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_2c3630652afe1a04dd2231790fc99ffb459bdb7330f49c8f20817dc286484280__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-not-requested\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_2e18d8e745e19c95f7142708d51d3a5265c91aa34e14edc112d4234ceabbb69d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-already-requested\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"DrawBeacon/existing-draw-history\")\n        mstore(add(headStart, 96), \"-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"DrawBeacon/beacon-period-greater\")\n        mstore(add(headStart, 96), \"-than-zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Address: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r call\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_60fe4ea05210616f96b292a0bef542d8f4e15701730bf655ba6a82515973dbfe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 27)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-not-complete\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-timeout-gt-60-sec\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_bc38701987d08ad045946a7ffa6b0638aef3d414cf835a4d20b4244572e13448__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 27)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-not-timedout\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c11cf851f1db5cba405210987a8cab160410ee1c3cd1333983ce975b7fceef19__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"DrawBeacon/beacon-period-not-ove\")\n        mstore(add(headStart, 96), \"r\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"Address: call to non-contract\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"SafeERC20: ERC20 operation did n\")\n        mstore(add(headStart, 96), \"ot succeed\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"DrawBeacon/draw-history-not-zero\")\n        mstore(add(headStart, 96), \"-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_eb3fd409b99aafcfccb46998551ef8c9b3d4ba898753e940771a0a3d4f33cc77__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-in-flight\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_Draw_$11085_memory_ptr__to_t_struct$_Draw_$11085_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, mload(value0))\n        let memberValue0 := mload(add(value0, 0x20))\n        let _1 := 0xffffffff\n        mstore(add(headStart, 0x20), and(memberValue0, _1))\n        let memberValue0_1 := mload(add(value0, 0x40))\n        let _2 := 0xffffffffffffffff\n        mstore(add(headStart, 0x40), and(memberValue0_1, _2))\n        mstore(add(headStart, 0x60), and(mload(add(value0, 0x60)), _2))\n        mstore(add(headStart, 0x80), and(mload(add(value0, 0x80)), _1))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint32(x, y) -> sum\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint64(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint64(x, y) -> r\n    {\n        let _1 := 0xffffffffffffffff\n        let y_1 := and(y, _1)\n        if iszero(y_1)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(and(x, _1), y_1)\n    }\n    function checked_mul_t_uint64(x, y) -> product\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if and(iszero(iszero(x_1)), gt(y_1, div(_1, x_1))) { panic_error_0x11() }\n        product := mul(x_1, y_1)\n    }\n    function checked_sub_t_uint64(x, y) -> diff\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\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) { mstore(add(dst, length), 0) }\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101da5760003560e01c8063738bbea811610104578063a104fd79116100a2578063d1e7765711610071578063d1e77657146103b5578063e30c3978146103bd578063e4a75bb8146103ce578063f2fde38b146103d657600080fd5b8063a104fd791461036d578063a3ae35ab14610375578063ab70d49c14610388578063c57708c21461039b57600080fd5b80637f4296d7116100de5780637f4296d71461032e57806389c36f8e146103415780638da5cb5b14610349578063919bead01461035a57600080fd5b8063738bbea81461030d57806375e38f16146103155780637ce52b181461031d57600080fd5b80633e7a39081161017c5780634e71e0c81161014b5780634e71e0c8146102d45780635020ea56146102dc5780636bea5344146102ef578063715018a61461030557600080fd5b80633e7a39081461028a5780634019f2d61461029f578063412a616a146102c45780634aba4f6b146102cc57600080fd5b80631b5344a2116101b85780631b5344a2146102165780632a7ad6091461024d5780632ae168a61461025b57806339f92c301461026357600080fd5b80630996f6e1146101df5780630bdeecbd146101fc578063111070e414610206575b600080fd5b6101e76103e9565b60405190151581526020015b60405180910390f35b61020461040a565b005b60035463ffffffff1615156101e7565b60045474010000000000000000000000000000000000000000900463ffffffff165b60405163ffffffff90911681526020016101f3565b60035463ffffffff16610238565b6102046107b9565b60055467ffffffffffffffff165b60405167ffffffffffffffff90911681526020016101f3565b600454600160c01b900463ffffffff16610238565b6004546001600160a01b03165b6040516001600160a01b0390911681526020016101f3565b610204610aae565b6101e7610b78565b610204610c17565b6102046102ea366004611ada565b610ca5565b600354640100000000900463ffffffff16610238565b610204610d22565b6101e7610d97565b610271610e16565b6002546001600160a01b03166102ac565b61020461033c366004611a54565b610e20565b610271610e9a565b6000546001600160a01b03166102ac565b610204610368366004611ada565b610ec7565b610271610f41565b610271610383366004611b4e565b610f4b565b6102ac610396366004611a54565b610f7e565b60055468010000000000000000900463ffffffff16610238565b6101e7610ff2565b6001546001600160a01b03166102ac565b6101e7610ffc565b6102046103e4366004611a54565b61101e565b60006103f361115a565b8015610405575060035463ffffffff16155b905090565b60035463ffffffff166104645760405162461bcd60e51b815260206004820152601c60248201527f44726177426561636f6e2f726e672d6e6f742d7265717565737465640000000060448201526064015b60405180910390fd5b61046c610b78565b6104b85760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d636f6d706c6574650000000000604482015260640161045b565b6002546003546040517f9d2a5f9800000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690639d2a5f9890602401602060405180830381600087803b15801561052157600080fd5b505af1158015610535573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105599190611ac1565b60055460045491925063ffffffff68010000000000000000820481169267ffffffffffffffff90921691600160c01b90041660006105944290565b6040805160a08101825287815263ffffffff8781166020830190815260035468010000000000000000900467ffffffffffffffff90811684860190815289821660608601908152898516608087019081526004805498517f089eb925000000000000000000000000000000000000000000000000000000008152885191810191909152945186166024860152915183166044850152519091166064830152519091166084820152929350916001600160a01b039091169063089eb9259060a401602060405180830381600087803b15801561066e57600080fd5b505af1158015610682573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a69190611af7565b5060006106b4858585611180565b6005805467ffffffffffffffff191667ffffffffffffffff831617905590506106de866001611bfd565b6005805463ffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff909216919091179055600380547fffffffffffffffffffffffffffffffff000000000000000000000000000000001690556040518781527f13f646a3648ee5b5a0e8d6bc3d2d623fddf38fa7c8c5dfdbdbe6a913112edc6c9060200160405180910390a160405167ffffffffffffffff8216907f9e5f7e6ac833c4735b5548bbeec59dac4d413789aa351fbe11a654dac0c4306c90600090a250505050505050565b6107c161115a565b6108335760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6e6f742d6f766560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161045b565b60035463ffffffff16156108895760405162461bcd60e51b815260206004820181905260248201527f44726177426561636f6e2f726e672d616c72656164792d726571756573746564604482015260640161045b565b600254604080517f0d37b537000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692630d37b5379260048083019392829003018186803b1580156108e757600080fd5b505afa1580156108fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091f9190611a71565b90925090506001600160a01b0382161580159061093c5750600081115b1561095b5760025461095b906001600160a01b038481169116836111c5565b600254604080517f8678a7b2000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692638678a7b2926004808301939282900301818787803b1580156109ba57600080fd5b505af11580156109ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f29190611b14565b6003805463ffffffff8084166401000000000267ffffffffffffffff19909216908516171790559092509050610a254290565b6003805467ffffffffffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff90921691909117905560405163ffffffff82811682528316907f0de3a7af7d3c2126e4fb96a7065b39f8bb17e3b9111c092e11236942fb38ca619060200160405180910390a250505050565b610ab6610d97565b610b025760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d74696d65646f75740000000000604482015260640161045b565b600380547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811690915560405163ffffffff640100000000830481168083529216919082907f67638a3a7093a89cc6046dca58aa93d6343e30847e8f84fc3759d9d4a3e6e38b9060200160405180910390a25050565b6002546003546040517f3a19b9bc00000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690633a19b9bc9060240160206040518083038186803b158015610bdf57600080fd5b505afa158015610bf3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104059190611a9f565b6001546001600160a01b03163314610c715760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161045b565b600154610c86906001600160a01b03166112f5565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b33610cb86000546001600160a01b031690565b6001600160a01b031614610d0e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610d16611352565b610d1f816113cc565b50565b33610d356000546001600160a01b031690565b6001600160a01b031614610d8b5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610d9560006112f5565b565b60035460009068010000000000000000900467ffffffffffffffff16610dbd5750600090565b4260035460045467ffffffffffffffff92831692610e0692680100000000000000009004169074010000000000000000000000000000000000000000900463ffffffff16611c25565b67ffffffffffffffff1610905090565b60006104056114cc565b33610e336000546001600160a01b031690565b6001600160a01b031614610e895760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610e91611352565b610d1f81611508565b6005546004546000916104059167ffffffffffffffff90911690600160c01b900463ffffffff1642611180565b33610eda6000546001600160a01b031690565b6001600160a01b031614610f305760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610f38611352565b610d1f8161155f565b6000610405611647565b600554600454600091610f789167ffffffffffffffff90911690600160c01b900463ffffffff1684611180565b92915050565b600033610f936000546001600160a01b031690565b6001600160a01b031614610fe95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610f7882611672565b600061040561115a565b600061100f60035463ffffffff16151590565b80156104055750610405610b78565b336110316000546001600160a01b031690565b6001600160a01b0316146110875760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b6001600160a01b0381166111035760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161045b565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b60004267ffffffffffffffff1661116f611647565b67ffffffffffffffff161115905090565b60008063ffffffff84166111948685611cc6565b61119e9190611c48565b90506111b063ffffffff851682611c96565b6111ba9086611c25565b9150505b9392505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b15801561122a57600080fd5b505afa15801561123e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112629190611ac1565b61126c9190611be5565b604080516001600160a01b038616602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b3000000000000000000000000000000000000000000000000000000001790529091506112ef9085906117db565b50505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6003544390640100000000900463ffffffff1615806113805750600354640100000000900463ffffffff1681105b610d1f5760405162461bcd60e51b815260206004820152601860248201527f44726177426561636f6e2f726e672d696e2d666c696768740000000000000000604482015260640161045b565b603c8163ffffffff16116114485760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f726e672d74696d656f75742d67742d36302d73656360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161045b565b600480547fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000063ffffffff8416908102919091179091556040519081527f521671714dd36d366adf3fe2efec91d3f58a3131aad68e268821d8144b5d0845906020015b60405180910390a150565b6000806114d7611647565b90504267ffffffffffffffff808216908316116114f75760009250505090565b6115018183611cc6565b9250505090565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517ff935763cc7c57ee8ed6318ed71e756cca0731294c9f46ff5b386f36d6ff1417a90600090a250565b60008163ffffffff16116115db5760405162461bcd60e51b815260206004820152602a60248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6772656174657260448201527f2d7468616e2d7a65726f00000000000000000000000000000000000000000000606482015260840161045b565b600480547fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b63ffffffff8416908102919091179091556040519081527f4727494dbd863e2084366f539d6ec569aaf7ab78582a34f006f004266777cd19906020016114c1565b60045460055460009161040591600160c01b90910463ffffffff169067ffffffffffffffff16611c25565b6004546000906001600160a01b039081169083166116f85760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f60448201527f2d61646472657373000000000000000000000000000000000000000000000000606482015260840161045b565b806001600160a01b0316836001600160a01b031614156117805760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f6578697374696e672d647261772d686973746f727960448201527f2d61646472657373000000000000000000000000000000000000000000000000606482015260840161045b565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385169081179091556040517feb70b03fab908e126e5efc33f8dfd2731fa89c716282a86769025f8dd4a6c1e090600090a25090919050565b6000611830826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166118c59092919063ffffffff16565b8051909150156118c0578080602001905181019061184e9190611a9f565b6118c05760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161045b565b505050565b60606118d484846000856118dc565b949350505050565b6060824710156119545760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161045b565b843b6119a25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161045b565b600080866001600160a01b031685876040516119be9190611b78565b60006040518083038185875af1925050503d80600081146119fb576040519150601f19603f3d011682016040523d82523d6000602084013e611a00565b606091505b5091509150611a10828286611a1b565b979650505050505050565b60608315611a2a5750816111be565b825115611a3a5782518084602001fd5b8160405162461bcd60e51b815260040161045b9190611b94565b600060208284031215611a6657600080fd5b81356111be81611d4a565b60008060408385031215611a8457600080fd5b8251611a8f81611d4a565b6020939093015192949293505050565b600060208284031215611ab157600080fd5b815180151581146111be57600080fd5b600060208284031215611ad357600080fd5b5051919050565b600060208284031215611aec57600080fd5b81356111be81611d5f565b600060208284031215611b0957600080fd5b81516111be81611d5f565b60008060408385031215611b2757600080fd5b8251611b3281611d5f565b6020840151909250611b4381611d5f565b809150509250929050565b600060208284031215611b6057600080fd5b813567ffffffffffffffff811681146111be57600080fd5b60008251611b8a818460208701611cef565b9190910192915050565b6020815260008251806020840152611bb3816040850160208701611cef565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008219821115611bf857611bf8611d1b565b500190565b600063ffffffff808316818516808303821115611c1c57611c1c611d1b565b01949350505050565b600067ffffffffffffffff808316818516808303821115611c1c57611c1c611d1b565b600067ffffffffffffffff80841680611c8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b92169190910492915050565b600067ffffffffffffffff80831681851681830481118215151615611cbd57611cbd611d1b565b02949350505050565b600067ffffffffffffffff83811690831681811015611ce757611ce7611d1b565b039392505050565b60005b83811015611d0a578181015183820152602001611cf2565b838111156112ef5750506000910152565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6001600160a01b0381168114610d1f57600080fd5b63ffffffff81168114610d1f57600080fdfea2646970667358221220b19f9f03c8861b57c5c75ed76137fb96f379289083042ebdaa560a8cf15efdbf64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1DA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x738BBEA8 GT PUSH2 0x104 JUMPI DUP1 PUSH4 0xA104FD79 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xD1E77657 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xD1E77657 EQ PUSH2 0x3B5 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x3BD JUMPI DUP1 PUSH4 0xE4A75BB8 EQ PUSH2 0x3CE JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x3D6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA104FD79 EQ PUSH2 0x36D JUMPI DUP1 PUSH4 0xA3AE35AB EQ PUSH2 0x375 JUMPI DUP1 PUSH4 0xAB70D49C EQ PUSH2 0x388 JUMPI DUP1 PUSH4 0xC57708C2 EQ PUSH2 0x39B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7F4296D7 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x7F4296D7 EQ PUSH2 0x32E JUMPI DUP1 PUSH4 0x89C36F8E EQ PUSH2 0x341 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x349 JUMPI DUP1 PUSH4 0x919BEAD0 EQ PUSH2 0x35A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x738BBEA8 EQ PUSH2 0x30D JUMPI DUP1 PUSH4 0x75E38F16 EQ PUSH2 0x315 JUMPI DUP1 PUSH4 0x7CE52B18 EQ PUSH2 0x31D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3E7A3908 GT PUSH2 0x17C JUMPI DUP1 PUSH4 0x4E71E0C8 GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x2D4 JUMPI DUP1 PUSH4 0x5020EA56 EQ PUSH2 0x2DC JUMPI DUP1 PUSH4 0x6BEA5344 EQ PUSH2 0x2EF JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x305 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3E7A3908 EQ PUSH2 0x28A JUMPI DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0x29F JUMPI DUP1 PUSH4 0x412A616A EQ PUSH2 0x2C4 JUMPI DUP1 PUSH4 0x4ABA4F6B EQ PUSH2 0x2CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1B5344A2 GT PUSH2 0x1B8 JUMPI DUP1 PUSH4 0x1B5344A2 EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0x2A7AD609 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0x2AE168A6 EQ PUSH2 0x25B JUMPI DUP1 PUSH4 0x39F92C30 EQ PUSH2 0x263 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x996F6E1 EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0xBDEECBD EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0x111070E4 EQ PUSH2 0x206 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E7 PUSH2 0x3E9 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x204 PUSH2 0x40A JUMP JUMPDEST STOP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO ISZERO PUSH2 0x1E7 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH2 0x204 PUSH2 0x7B9 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND JUMPDEST PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH2 0x204 PUSH2 0xAAE JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xB78 JUMP JUMPDEST PUSH2 0x204 PUSH2 0xC17 JUMP JUMPDEST PUSH2 0x204 PUSH2 0x2EA CALLDATASIZE PUSH1 0x4 PUSH2 0x1ADA JUMP JUMPDEST PUSH2 0xCA5 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH2 0x204 PUSH2 0xD22 JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xD97 JUMP JUMPDEST PUSH2 0x271 PUSH2 0xE16 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x204 PUSH2 0x33C CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0xE20 JUMP JUMPDEST PUSH2 0x271 PUSH2 0xE9A JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x204 PUSH2 0x368 CALLDATASIZE PUSH1 0x4 PUSH2 0x1ADA JUMP JUMPDEST PUSH2 0xEC7 JUMP JUMPDEST PUSH2 0x271 PUSH2 0xF41 JUMP JUMPDEST PUSH2 0x271 PUSH2 0x383 CALLDATASIZE PUSH1 0x4 PUSH2 0x1B4E JUMP JUMPDEST PUSH2 0xF4B JUMP JUMPDEST PUSH2 0x2AC PUSH2 0x396 CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0xF7E JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xFF2 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xFFC JUMP JUMPDEST PUSH2 0x204 PUSH2 0x3E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0x101E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F3 PUSH2 0x115A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x405 JUMPI POP PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x464 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D72657175657374656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x46C PUSH2 0xB78 JUMP JUMPDEST PUSH2 0x4B8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D636F6D706C6574650000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x9D2A5F9800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x9D2A5F98 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x521 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x535 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 0x559 SWAP2 SWAP1 PUSH2 0x1AC1 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD SWAP2 SWAP3 POP PUSH4 0xFFFFFFFF PUSH9 0x10000000000000000 DUP3 DIV DUP2 AND SWAP3 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV AND PUSH1 0x0 PUSH2 0x594 TIMESTAMP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE DUP8 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP8 DUP2 AND PUSH1 0x20 DUP4 ADD SWAP1 DUP2 MSTORE PUSH1 0x3 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 DUP2 AND DUP5 DUP7 ADD SWAP1 DUP2 MSTORE DUP10 DUP3 AND PUSH1 0x60 DUP7 ADD SWAP1 DUP2 MSTORE DUP10 DUP6 AND PUSH1 0x80 DUP8 ADD SWAP1 DUP2 MSTORE PUSH1 0x4 DUP1 SLOAD SWAP9 MLOAD PUSH32 0x89EB92500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP9 MLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP5 MLOAD DUP7 AND PUSH1 0x24 DUP7 ADD MSTORE SWAP2 MLOAD DUP4 AND PUSH1 0x44 DUP6 ADD MSTORE MLOAD SWAP1 SWAP2 AND PUSH1 0x64 DUP4 ADD MSTORE MLOAD SWAP1 SWAP2 AND PUSH1 0x84 DUP3 ADD MSTORE SWAP3 SWAP4 POP SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x89EB925 SWAP1 PUSH1 0xA4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x66E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x682 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 0x6A6 SWAP2 SWAP1 PUSH2 0x1AF7 JUMP JUMPDEST POP PUSH1 0x0 PUSH2 0x6B4 DUP6 DUP6 DUP6 PUSH2 0x1180 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH8 0xFFFFFFFFFFFFFFFF DUP4 AND OR SWAP1 SSTORE SWAP1 POP PUSH2 0x6DE DUP7 PUSH1 0x1 PUSH2 0x1BFD JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x3 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000 AND SWAP1 SSTORE PUSH1 0x40 MLOAD DUP8 DUP2 MSTORE PUSH32 0x13F646A3648EE5B5A0E8D6BC3D2D623FDDF38FA7C8C5DFDBDBE6A913112EDC6C SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 PUSH32 0x9E5F7E6AC833C4735B5548BBEEC59DAC4D413789AA351FBE11A654DAC0C4306C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x7C1 PUSH2 0x115A JUMP JUMPDEST PUSH2 0x833 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F626561636F6E2D706572696F642D6E6F742D6F7665 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0x889 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D616C72656164792D726571756573746564 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0xD37B53700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP2 MLOAD PUSH1 0x0 SWAP4 DUP5 SWAP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 PUSH4 0xD37B537 SWAP3 PUSH1 0x4 DUP1 DUP4 ADD SWAP4 SWAP3 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8FB 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 0x91F SWAP2 SWAP1 PUSH2 0x1A71 JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x93C JUMPI POP PUSH1 0x0 DUP2 GT JUMPDEST ISZERO PUSH2 0x95B JUMPI PUSH1 0x2 SLOAD PUSH2 0x95B SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND SWAP2 AND DUP4 PUSH2 0x11C5 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x8678A7B200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP2 MLOAD PUSH1 0x0 SWAP4 DUP5 SWAP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 PUSH4 0x8678A7B2 SWAP3 PUSH1 0x4 DUP1 DUP4 ADD SWAP4 SWAP3 DUP3 SWAP1 SUB ADD DUP2 DUP8 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x9BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x9CE 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 0x9F2 SWAP2 SWAP1 PUSH2 0x1B14 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP5 AND PUSH5 0x100000000 MUL PUSH8 0xFFFFFFFFFFFFFFFF NOT SWAP1 SWAP3 AND SWAP1 DUP6 AND OR OR SWAP1 SSTORE SWAP1 SWAP3 POP SWAP1 POP PUSH2 0xA25 TIMESTAMP SWAP1 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 MSTORE DUP4 AND SWAP1 PUSH32 0xDE3A7AF7D3C2126E4FB96A7065B39F8BB17E3B9111C092E11236942FB38CA61 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP JUMP JUMPDEST PUSH2 0xAB6 PUSH2 0xD97 JUMP JUMPDEST PUSH2 0xB02 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D74696D65646F75740000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000 DUP2 AND SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND DUP1 DUP4 MSTORE SWAP3 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x67638A3A7093A89CC6046DCA58AA93D6343E30847E8F84FC3759D9D4A3E6E38B SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x3A19B9BC00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x3A19B9BC SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBDF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xBF3 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 0x405 SWAP2 SWAP1 PUSH2 0x1A9F JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xC71 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0xC86 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x12F5 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0xCB8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xD0E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xD16 PUSH2 0x1352 JUMP JUMPDEST PUSH2 0xD1F DUP2 PUSH2 0x13CC JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH2 0xD35 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xD8B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xD95 PUSH1 0x0 PUSH2 0x12F5 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x0 SWAP1 PUSH9 0x10000000000000000 SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0xDBD JUMPI POP PUSH1 0x0 SWAP1 JUMP JUMPDEST TIMESTAMP PUSH1 0x3 SLOAD PUSH1 0x4 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND SWAP3 PUSH2 0xE06 SWAP3 PUSH9 0x10000000000000000 SWAP1 DIV AND SWAP1 PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x1C25 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND LT SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x405 PUSH2 0x14CC JUMP JUMPDEST CALLER PUSH2 0xE33 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE89 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xE91 PUSH2 0x1352 JUMP JUMPDEST PUSH2 0xD1F DUP2 PUSH2 0x1508 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD PUSH1 0x0 SWAP2 PUSH2 0x405 SWAP2 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND TIMESTAMP PUSH2 0x1180 JUMP JUMPDEST CALLER PUSH2 0xEDA PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF30 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xF38 PUSH2 0x1352 JUMP JUMPDEST PUSH2 0xD1F DUP2 PUSH2 0x155F JUMP JUMPDEST PUSH1 0x0 PUSH2 0x405 PUSH2 0x1647 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD PUSH1 0x0 SWAP2 PUSH2 0xF78 SWAP2 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP5 PUSH2 0x1180 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xF93 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xFE9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xF78 DUP3 PUSH2 0x1672 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x405 PUSH2 0x115A JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100F PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO ISZERO SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x405 JUMPI POP PUSH2 0x405 PUSH2 0xB78 JUMP JUMPDEST CALLER PUSH2 0x1031 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1087 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1103 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 TIMESTAMP PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x116F PUSH2 0x1647 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND GT ISZERO SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH4 0xFFFFFFFF DUP5 AND PUSH2 0x1194 DUP7 DUP6 PUSH2 0x1CC6 JUMP JUMPDEST PUSH2 0x119E SWAP2 SWAP1 PUSH2 0x1C48 JUMP JUMPDEST SWAP1 POP PUSH2 0x11B0 PUSH4 0xFFFFFFFF DUP6 AND DUP3 PUSH2 0x1C96 JUMP JUMPDEST PUSH2 0x11BA SWAP1 DUP7 PUSH2 0x1C25 JUMP JUMPDEST SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDD62ED3E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP2 DUP7 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x122A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x123E 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 0x1262 SWAP2 SWAP1 PUSH2 0x1AC1 JUMP JUMPDEST PUSH2 0x126C SWAP2 SWAP1 PUSH2 0x1BE5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x12EF SWAP1 DUP6 SWAP1 PUSH2 0x17DB JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x3 SLOAD NUMBER SWAP1 PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO DUP1 PUSH2 0x1380 JUMPI POP PUSH1 0x3 SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP2 LT JUMPDEST PUSH2 0xD1F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D696E2D666C696768740000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x3C DUP2 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1448 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D74696D656F75742D67742D36302D736563 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH21 0x10000000000000000000000000000000000000000 PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x521671714DD36D366ADF3FE2EFEC91D3F58A3131AAD68E268821D8144B5D0845 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x14D7 PUSH2 0x1647 JUMP JUMPDEST SWAP1 POP TIMESTAMP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 AND SWAP1 DUP4 AND GT PUSH2 0x14F7 JUMPI PUSH1 0x0 SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH2 0x1501 DUP2 DUP4 PUSH2 0x1CC6 JUMP JUMPDEST SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xF935763CC7C57EE8ED6318ED71E756CCA0731294C9F46FF5B386F36D6FF1417A SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND GT PUSH2 0x15DB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F626561636F6E2D706572696F642D67726561746572 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D7468616E2D7A65726F00000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x4727494DBD863E2084366F539D6EC569AAF7AB78582A34F006F004266777CD19 SWAP1 PUSH1 0x20 ADD PUSH2 0x14C1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x5 SLOAD PUSH1 0x0 SWAP2 PUSH2 0x405 SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x1C25 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND PUSH2 0x16F8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F647261772D686973746F72792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D61646472657373000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1780 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F6578697374696E672D647261772D686973746F7279 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D61646472657373000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xEB70B03FAB908E126E5EFC33F8DFD2731FA89C716282A86769025F8DD4A6C1E0 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1830 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18C5 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x18C0 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x184E SWAP2 SWAP1 PUSH2 0x1A9F JUMP JUMPDEST PUSH2 0x18C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x18D4 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x18DC JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x1954 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x19A2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x19BE SWAP2 SWAP1 PUSH2 0x1B78 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x19FB JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1A00 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1A10 DUP3 DUP3 DUP7 PUSH2 0x1A1B JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x1A2A JUMPI POP DUP2 PUSH2 0x11BE JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x1A3A JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x45B SWAP2 SWAP1 PUSH2 0x1B94 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A66 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x11BE DUP2 PUSH2 0x1D4A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A84 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x1A8F DUP2 PUSH2 0x1D4A JUMP JUMPDEST PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD MLOAD SWAP3 SWAP5 SWAP3 SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1AB1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x11BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1AD3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1AEC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x11BE DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1B09 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x11BE DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1B27 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x1B32 DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x1B43 DUP2 PUSH2 0x1D5F JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1B60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x11BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1B8A DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x1CEF JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1BB3 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1CEF JUMP JUMPDEST PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1BF8 JUMPI PUSH2 0x1BF8 PUSH2 0x1D1B JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1C1C JUMPI PUSH2 0x1C1C PUSH2 0x1D1B JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1C1C JUMPI PUSH2 0x1C1C PUSH2 0x1D1B JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP5 AND DUP1 PUSH2 0x1C8A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1CBD JUMPI PUSH2 0x1CBD PUSH2 0x1D1B JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1CE7 JUMPI PUSH2 0x1CE7 PUSH2 0x1D1B JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1D0A JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1CF2 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x12EF JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD1F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xD1F JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB1 SWAP16 SWAP16 SUB 0xC8 DUP7 SHL JUMPI 0xC5 0xC7 0x5E 0xD7 PUSH2 0x37FB SWAP7 RETURN PUSH26 0x289083042EBDAA560A8CF15EFDBF64736F6C6343000806003300 ",
              "sourceMap": "1131:14710:29:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5885:128;;;:::i;:::-;;;4088:14:84;;4081:22;4063:41;;4051:2;4036:18;5885:128:29;;;;;;;;7352:1377;;;:::i;:::-;;5277:104;5356:10;:13;;;:18;;5277:104;;9850:90;9923:10;;;;;;;9850:90;;;12209:10:84;12197:23;;;12179:42;;12167:2;12152:18;9850:90:29;12134:93:84;9641:108:29;9729:10;:13;;;9641:108;;10356:531;;;:::i;9173:112::-;9257:21;;;;9173:112;;;12406:18:84;12394:31;;;12376:50;;12364:2;12349:18;9173:112:29;12331:101:84;9059:108:29;9141:19;;-1:-1:-1;;;9141:19:29;;;;9059:108;;9291:95;9369:10;;-1:-1:-1;;;;;9369:10:29;9291:95;;;-1:-1:-1;;;;;3222:55:84;;;3204:74;;3192:2;3177:18;9291:95:29;3159:125:84;7034:280:29;;;:::i;4991:122::-;;;:::i;3147:129:22:-;;;:::i;11172:137:29:-;;;;;;:::i;:::-;;:::i;9520:115::-;9608:10;:20;;;;;;9520:115;;2508:94:22;;;:::i;5554:237:29:-;;;:::i;8767:135::-;;;:::i;9755:89::-;9834:3;;-1:-1:-1;;;;;9834:3:29;9755:89;;11347:179;;;;;;:::i;:::-;;:::i;6355:285::-;;;:::i;1814:85:22:-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:22;1814:85;;10925:209:29;;;;;;:::i;:::-;;:::i;8940:113::-;;;:::i;6678:318::-;;;;;;:::i;:::-;;:::i;10129:189::-;;;;;;:::i;:::-;;:::i;9392:90::-;9465:10;;;;;;;9392:90;;9978:113;;;:::i;2014:101:22:-;2095:13;;-1:-1:-1;;;;;2095:13:22;2014:101;;6051:125:29;;;:::i;2751:234:22:-;;;;;;:::i;:::-;;:::i;5885:128:29:-;5941:4;5964:21;:19;:21::i;:::-;:42;;;;-1:-1:-1;5356:10:29;:13;;;:18;5964:42;5957:49;;5885:128;:::o;7352:1377::-;5356:10;:13;;;3235:57;;;;-1:-1:-1;;;3235:57:29;;5268:2:84;3235:57:29;;;5250:21:84;5307:2;5287:18;;;5280:30;5346;5326:18;;;5319:58;5394:18;;3235:57:29;;;;;;;;;3310:16;:14;:16::i;:::-;3302:56;;;;-1:-1:-1;;;3302:56:29;;7213:2:84;3302:56:29;;;7195:21:84;7252:2;7232:18;;;7225:30;7291:29;7271:18;;;7264:57;7338:18;;3302:56:29;7185:177:84;3302:56:29;7456:3:::1;::::0;7473:10:::1;:13:::0;7456:31:::1;::::0;;;;7473:13:::1;::::0;;::::1;7456:31;::::0;::::1;12179:42:84::0;7433:20:29::1;::::0;-1:-1:-1;;;;;7456:3:29::1;::::0;:16:::1;::::0;12152:18:84;;7456:31:29::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7518:10;::::0;7631:19:::1;::::0;7433:54;;-1:-1:-1;7518:10:29::1;::::0;;::::1;::::0;::::1;::::0;7570:21:::1;::::0;;::::1;::::0;-1:-1:-1;;;7631:19:29;::::1;;7497:18;7675:14;12856:15:::0;;12769:110;7675:14:::1;7762:333;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;;::::0;::::1;::::0;;;7884:10:::1;:22:::0;;;::::1;;::::0;;::::1;7762:333:::0;;;;;;;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;8106:10:::1;::::0;;:26;;;;;11388:13:84;;8106:26:29;;::::1;11370:32:84::0;;;;11431:24;;11522:21;;11500:20;;;11493:51;11575:24;;11674:23;;11652:20;;;11645:53;11740:24;11736:33;;;11714:20;;;11707:63;11812:24;11808:33;;;11786:20;;;11779:63;7660:29:29;;-1:-1:-1;7762:333:29;-1:-1:-1;;;;;8106:10:29;;::::1;::::0;:19:::1;::::0;11342::84;;8106:26:29::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8252:32;8287:134;8336:22;8372:20;8406:5;8287:35;:134::i;:::-;8431:21;:49:::0;;-1:-1:-1;;8431:49:29::1;;::::0;::::1;;::::0;;;-1:-1:-1;8503:15:29::1;:11:::0;-1:-1:-1;8503:15:29::1;:::i;:::-;8490:10;:28:::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;8608:10:::1;8601:17:::0;;;;;;8634:27:::1;::::0;11999:25:84;;;8634:27:29::1;::::0;11987:2:84;11972:18;8634:27:29::1;;;;;;;8676:46;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;;::::1;7423:1306;;;;;;;7352:1377::o:0;10356:531::-;3030:21;:19;:21::i;:::-;3022:67;;;;-1:-1:-1;;;3022:67:29;;9040:2:84;3022:67:29;;;9022:21:84;9079:2;9059:18;;;9052:30;9118:34;9098:18;;;9091:62;9189:3;9169:18;;;9162:31;9210:19;;3022:67:29;9012:223:84;3022:67:29;5356:10;:13;;;:18;3099:62;;;;-1:-1:-1;;;3099:62:29;;5625:2:84;3099:62:29;;;5607:21:84;;;5644:18;;;5637:30;5703:34;5683:18;;;5676:62;5755:18;;3099:62:29;5597:182:84;3099:62:29;10466:3:::1;::::0;:19:::1;::::0;;;;;;;10426:16:::1;::::0;;;-1:-1:-1;;;;;10466:3:29;;::::1;::::0;:17:::1;::::0;:19:::1;::::0;;::::1;::::0;;;;;;;:3;:19;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10425:60:::0;;-1:-1:-1;10425:60:29;-1:-1:-1;;;;;;10500:22:29;::::1;::::0;;::::1;::::0;:40:::1;;;10539:1;10526:10;:14;10500:40;10496:135;;;10603:3;::::0;10556:64:::1;::::0;-1:-1:-1;;;;;10556:38:29;;::::1;::::0;10603:3:::1;10609:10:::0;10556:38:::1;:64::i;:::-;10680:3;::::0;:25:::1;::::0;;;;;;;10642:16:::1;::::0;;;-1:-1:-1;;;;;10680:3:29;;::::1;::::0;:23:::1;::::0;:25:::1;::::0;;::::1;::::0;;;;;;;10642:16;10680:3;:25;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10715:10;:25:::0;;::::1;10750:32:::0;;::::1;::::0;::::1;-1:-1:-1::0;;10750:32:29;;;10715:25;;::::1;10750:32:::0;::::1;::::0;;10641:64;;-1:-1:-1;10641:64:29;-1:-1:-1;10817:14:29::1;12856:15:::0;;12769:110;10817:14:::1;10792:10;:39:::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;10847:33:::1;::::0;::::1;12197:23:84::0;;;12179:42;;10847:33:29;::::1;::::0;::::1;::::0;12167:2:84;12152:18;10847:33:29::1;;;;;;;10415:472;;;;10356:531::o:0;7034:280::-;7092:15;:13;:15::i;:::-;7084:55;;;;-1:-1:-1;;;7084:55:29;;8684:2:84;7084:55:29;;;8666:21:84;8723:2;8703:18;;;8696:30;8762:29;8742:18;;;8735:57;8809:18;;7084:55:29;8656:177:84;7084:55:29;7168:10;:13;;7240:17;;;;;;7272:35;;7168:13;7210:20;;;;;12179:42:84;;;7168:13:29;;;7210:20;7168:13;;7272:35;;12167:2:84;12152:18;7272:35:29;;;;;;;7074:240;;7034:280::o;4991:122::-;5070:3;;5092:10;:13;5070:36;;;;;5092:13;;;;5070:36;;;12179:42:84;5047:4:29;;-1:-1:-1;;;;;5070:3:29;;:21;;12152:18:84;;5070:36:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;3147:129:22:-;4050:13;;-1:-1:-1;;;;;4050:13:22;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:22;;8324:2:84;4028:71:22;;;8306:21:84;8363:2;8343:18;;;8336:30;8402:33;8382:18;;;8375:61;8453:18;;4028:71:22;8296:181:84;4028:71:22;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:22::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:22::1;::::0;;3147:129::o;11172:137:29:-;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7569:2:84;3819:58:22;;;7551:21:84;7608:2;7588:18;;;7581:30;7647:26;7627:18;;;7620:54;7691:18;;3819:58:22;7541:174:84;3819:58:22;2933:24:29::1;:22;:24::i;:::-;11275:27:::2;11290:11;11275:14;:27::i;:::-;11172:137:::0;:::o;2508:94:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7569:2:84;3819:58:22;;;7551:21:84;7608:2;7588:18;;;7581:30;7647:26;7627:18;;;7620:54;7691:18;;3819:58:22;7541:174:84;3819:58:22;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;5554:237:29:-;5629:10;:22;5609:4;;5629:22;;;;;5625:160;;-1:-1:-1;5679:5:29;;5554:237::o;5625:160::-;12856:15;5735:10;:22;5722:10;;:52;;;;;:35;;5735:22;;;;;5722:10;;;;;:35;:::i;:::-;:52;;;5715:59;;5554:237;:::o;8767:135::-;8839:6;8864:31;:29;:31::i;11347:179::-;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7569:2:84;3819:58:22;;;7551:21:84;7608:2;7588:18;;;7581:30;7647:26;7627:18;;;7620:54;7691:18;;3819:58:22;7541:174:84;3819:58:22;2933:24:29::1;:22;:24::i;:::-;11492:27:::2;11507:11;11492:14;:27::i;6355:285::-:0;6529:21;;6568:19;;6439:6;;6476:157;;6529:21;;;;;-1:-1:-1;;;6568:19:29;;;;12856:15;6476:35;:157::i;10925:209::-;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7569:2:84;3819:58:22;;;7551:21:84;7608:2;7588:18;;;7581:30;7647:26;7627:18;;;7620:54;7691:18;;3819:58:22;7541:174:84;3819:58:22;2933:24:29::1;:22;:24::i;:::-;11082:45:::2;11106:20;11082:23;:45::i;8940:113::-:0;9001:6;9026:20;:18;:20::i;6678:318::-;6894:21;;6933:19;;6800:6;;6841:148;;6894:21;;;;;-1:-1:-1;;;6933:19:29;;;;6970:5;6841:35;:148::i;:::-;6822:167;6678:318;-1:-1:-1;;6678:318:29:o;10129:189::-;10248:11;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7569:2:84;3819:58:22;;;7551:21:84;7608:2;7588:18;;;7581:30;7647:26;7627:18;;;7620:54;7691:18;;3819:58:22;7541:174:84;3819:58:22;10282:29:29::1;10297:13;10282:14;:29::i;9978:113::-:0;10040:4;10063:21;:19;:21::i;6051:125::-;6110:4;6133:16;5356:10;:13;;;:18;;;5277:104;6133:16;:36;;;;;6153:16;:14;:16::i;2751:234:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7569:2:84;3819:58:22;;;7551:21:84;7608:2;7588:18;;;7581:30;7647:26;7627:18;;;7620:54;7691:18;;3819:58:22;7541:174:84;3819:58:22;-1:-1:-1;;;;;2834:23:22;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:22;;9800:2:84;2826:73:22::1;::::0;::::1;9782:21:84::0;9839:2;9819:18;;;9812:30;9878:34;9858:18;;;9851:62;9949:7;9929:18;;;9922:35;9974:19;;2826:73:22::1;9772:227:84::0;2826:73:22::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:22::1;-1:-1:-1::0;;;;;2910:25:22;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:22::1;2751:234:::0;:::o;13747:122:29:-;13801:4;12856:15;13824:38;;:20;:18;:20::i;:::-;:38;;;;13817:45;;13747:122;:::o;12280:357::-;12452:6;;12494:55;;;12495:30;12503:22;12495:5;:30;:::i;:::-;12494:55;;;;:::i;:::-;12470:79;-1:-1:-1;12592:37:29;;;;12470:79;12592:37;:::i;:::-;12566:64;;:22;:64;:::i;:::-;12559:71;;;12280:357;;;;;;:::o;1955:310:6:-;2104:39;;;;;2128:4;2104:39;;;3524:34:84;-1:-1:-1;;;;;3594:15:84;;;3574:18;;;3567:43;2081:20:6;;2146:5;;2104:15;;;;;3436:18:84;;2104:39:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;;:::i;:::-;2188:69;;;-1:-1:-1;;;;;3813:55:84;;2188:69:6;;;3795:74:84;3885:18;;;;3878:34;;;2188:69:6;;;;;;;;;;3768:18:84;;;;2188:69:6;;;;;;;;;;2211:22;2188:69;;;3878:34:84;;-1:-1:-1;2161:97:6;;2181:5;;2161:19;:97::i;:::-;2071:194;1955:310;;;:::o;3470:174:22:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;13940:246:29:-;14065:10;:20;14021:12;;14065:20;;;;;:25;;:64;;-1:-1:-1;14109:10:29;:20;;;;;;14094:35;;14065:64;14044:135;;;;-1:-1:-1;;;14044:135:29;;11026:2:84;14044:135:29;;;11008:21:84;11065:2;11045:18;;;11038:30;11104:26;11084:18;;;11077:54;11148:18;;14044:135:29;10998:174:84;15631:208:29;15716:2;15702:11;:16;;;15694:62;;;;-1:-1:-1;;;15694:62:29;;7922:2:84;15694:62:29;;;7904:21:84;7961:2;7941:18;;;7934:30;8000:34;7980:18;;;7973:62;8071:3;8051:18;;;8044:31;8092:19;;15694:62:29;7894:223:84;15694:62:29;15766:10;:24;;;;;;;;;;;;;;;;;;15806:26;;12179:42:84;;;15806:26:29;;12167:2:84;12152:18;15806:26:29;;;;;;;;15631:208;:::o;13347:254::-;13411:6;13429:12;13444:20;:18;:20::i;:::-;13429:35;-1:-1:-1;12856:15:29;13517:13;;;;;;;;13513:52;;13553:1;13546:8;;;;13347:254;:::o;13513:52::-;13582:12;13590:4;13582:5;:12;:::i;:::-;13575:19;;;;13347:254;:::o;11695:142::-;11768:3;:17;;-1:-1:-1;;11768:17:29;-1:-1:-1;;;;;11768:17:29;;;;;;;;11800:30;;;;-1:-1:-1;;11800:30:29;11695:142;:::o;15109:283::-;15221:1;15198:20;:24;;;15190:79;;;;-1:-1:-1;;;15190:79:29;;6395:2:84;15190:79:29;;;6377:21:84;6434:2;6414:18;;;6407:30;6473:34;6453:18;;;6446:62;6544:12;6524:18;;;6517:40;6574:19;;15190:79:29;6367:232:84;15190:79:29;15279:19;:42;;;;-1:-1:-1;;;15279:42:29;;;;;;;;;;;;;15337:48;;12179:42:84;;;15337:48:29;;12167:2:84;12152:18;15337:48:29;12134:93:84;13031:128:29;13133:19;;13109:21;;13084:6;;13109:43;;-1:-1:-1;;;13133:19:29;;;;;;13109:21;;:43;:::i;14424:516::-;14551:10;;14494:11;;-1:-1:-1;;;;;14551:10:29;;;;14579:37;;14571:90;;;;-1:-1:-1;;;14571:90:29;;10617:2:84;14571:90:29;;;10599:21:84;10656:2;10636:18;;;10629:30;10695:34;10675:18;;;10668:62;10766:10;10746:18;;;10739:38;10794:19;;14571:90:29;10589:230:84;14571:90:29;14728:19;-1:-1:-1;;;;;14693:55:29;14701:14;-1:-1:-1;;;;;14693:55:29;;;14672:142;;;;-1:-1:-1;;;14672:142:29;;5986:2:84;14672:142:29;;;5968:21:84;6025:2;6005:18;;;5998:30;6064:34;6044:18;;;6037:62;6135:10;6115:18;;;6108:38;6163:19;;14672:142:29;5958:230:84;14672:142:29;14825:10;:27;;-1:-1:-1;;14825:27:29;-1:-1:-1;;;;;14825:27:29;;;;;;;;14868:33;;;;-1:-1:-1;;14868:33:29;-1:-1:-1;14919:14:29;;14424:516;-1:-1:-1;14424:516:29:o;3140:706:6:-;3559:23;3585:69;3613:4;3585:69;;;;;;;;;;;;;;;;;3593:5;-1:-1:-1;;;;;3585:27:6;;;:69;;;;;:::i;:::-;3668:17;;3559:95;;-1:-1:-1;3668:21:6;3664:176;;3763:10;3752:30;;;;;;;;;;;;:::i;:::-;3744:85;;;;-1:-1:-1;;;3744:85:6;;10206:2:84;3744:85:6;;;10188:21:84;10245:2;10225:18;;;10218:30;10284:34;10264:18;;;10257:62;10355:12;10335:18;;;10328:40;10385:19;;3744:85:6;10178:232:84;3744:85:6;3210:636;3140:706;;:::o;3461:223:11:-;3594:12;3625:52;3647:6;3655:4;3661:1;3664:12;3625:21;:52::i;:::-;3618:59;3461:223;-1:-1:-1;;;;3461:223:11:o;4548:499::-;4713:12;4770:5;4745:21;:30;;4737:81;;;;-1:-1:-1;;;4737:81:11;;6806:2:84;4737:81:11;;;6788:21:84;6845:2;6825:18;;;6818:30;6884:34;6864:18;;;6857:62;6955:8;6935:18;;;6928:36;6981:19;;4737:81:11;6778:228:84;4737:81:11;1034:20;;4828:60;;;;-1:-1:-1;;;4828:60:11;;9442:2:84;4828:60:11;;;9424:21:84;9481:2;9461:18;;;9454:30;9520:31;9500:18;;;9493:59;9569:18;;4828:60:11;9414:179:84;4828:60:11;4900:12;4914:23;4941:6;-1:-1:-1;;;;;4941:11:11;4960:5;4967:4;4941:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4899:73;;;;4989:51;5006:7;5015:10;5027:12;4989:16;:51::i;:::-;4982:58;4548:499;-1:-1:-1;;;;;;;4548:499:11:o;7161:692::-;7307:12;7335:7;7331:516;;;-1:-1:-1;7365:10:11;7358:17;;7331:516;7476:17;;:21;7472:365;;7670:10;7664:17;7730:15;7717:10;7713:2;7709:19;7702:44;7472:365;7809:12;7802:20;;-1:-1:-1;;;7802:20:11;;;;;;;;:::i;14:247:84:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;200:31;225:5;200:31;:::i;266:312::-;345:6;353;406:2;394:9;385:7;381:23;377:32;374:2;;;422:1;419;412:12;374:2;454:9;448:16;473:31;498:5;473:31;:::i;:::-;568:2;553:18;;;;547:25;523:5;;547:25;;-1:-1:-1;;;364:214:84:o;583:277::-;650:6;703:2;691:9;682:7;678:23;674:32;671:2;;;719:1;716;709:12;671:2;751:9;745:16;804:5;797:13;790:21;783:5;780:32;770:2;;826:1;823;816:12;1411:184;1481:6;1534:2;1522:9;1513:7;1509:23;1505:32;1502:2;;;1550:1;1547;1540:12;1502:2;-1:-1:-1;1573:16:84;;1492:103;-1:-1:-1;1492:103:84:o;1600:245::-;1658:6;1711:2;1699:9;1690:7;1686:23;1682:32;1679:2;;;1727:1;1724;1717:12;1679:2;1766:9;1753:23;1785:30;1809:5;1785:30;:::i;1850:249::-;1919:6;1972:2;1960:9;1951:7;1947:23;1943:32;1940:2;;;1988:1;1985;1978:12;1940:2;2020:9;2014:16;2039:30;2063:5;2039:30;:::i;2104:381::-;2181:6;2189;2242:2;2230:9;2221:7;2217:23;2213:32;2210:2;;;2258:1;2255;2248:12;2210:2;2290:9;2284:16;2309:30;2333:5;2309:30;:::i;:::-;2408:2;2393:18;;2387:25;2358:5;;-1:-1:-1;2421:32:84;2387:25;2421:32;:::i;:::-;2472:7;2462:17;;;2200:285;;;;;:::o;2490:284::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:2;;;2617:1;2614;2607:12;2569:2;2656:9;2643:23;2706:18;2699:5;2695:30;2688:5;2685:41;2675:2;;2740:1;2737;2730:12;2779:274;2908:3;2946:6;2940:13;2962:53;3008:6;3003:3;2996:4;2988:6;2984:17;2962:53;:::i;:::-;3031:16;;;;;2916:137;-1:-1:-1;;2916:137:84:o;4619:442::-;4768:2;4757:9;4750:21;4731:4;4800:6;4794:13;4843:6;4838:2;4827:9;4823:18;4816:34;4859:66;4918:6;4913:2;4902:9;4898:18;4893:2;4885:6;4881:15;4859:66;:::i;:::-;4977:2;4965:15;4982:66;4961:88;4946:104;;;;5052:2;4942:113;;4740:321;-1:-1:-1;;4740:321:84:o;12437:128::-;12477:3;12508:1;12504:6;12501:1;12498:13;12495:2;;;12514:18;;:::i;:::-;-1:-1:-1;12550:9:84;;12485:80::o;12570:228::-;12609:3;12637:10;12674:2;12671:1;12667:10;12704:2;12701:1;12697:10;12735:3;12731:2;12727:12;12722:3;12719:21;12716:2;;;12743:18;;:::i;:::-;12779:13;;12617:181;-1:-1:-1;;;;12617:181:84:o;12803:236::-;12842:3;12870:18;12915:2;12912:1;12908:10;12945:2;12942:1;12938:10;12976:3;12972:2;12968:12;12963:3;12960:21;12957:2;;;12984:18;;:::i;13044:353::-;13083:1;13109:18;13154:2;13151:1;13147:10;13176:3;13166:2;;13213:77;13210:1;13203:88;13314:4;13311:1;13304:15;13342:4;13339:1;13332:15;13166:2;13375:10;;13371:20;;;;;13089:308;-1:-1:-1;;13089:308:84:o;13402:270::-;13441:7;13473:18;13518:2;13515:1;13511:10;13548:2;13545:1;13541:10;13604:3;13600:2;13596:12;13591:3;13588:21;13581:3;13574:11;13567:19;13563:47;13560:2;;;13613:18;;:::i;:::-;13653:13;;13453:219;-1:-1:-1;;;;13453:219:84:o;13677:229::-;13716:4;13745:18;13813:10;;;;13783;;13835:12;;;13832:2;;;13850:18;;:::i;:::-;13887:13;;13725:181;-1:-1:-1;;;13725:181:84:o;13911:258::-;13983:1;13993:113;14007:6;14004:1;14001:13;13993:113;;;14083:11;;;14077:18;14064:11;;;14057:39;14029:2;14022:10;13993:113;;;14124:6;14121:1;14118:13;14115:2;;;-1:-1:-1;;14159:1:84;14141:16;;14134:27;13964:205::o;14174:184::-;14226:77;14223:1;14216:88;14323:4;14320:1;14313:15;14347:4;14344:1;14337:15;14363:154;-1:-1:-1;;;;;14442:5:84;14438:54;14431:5;14428:65;14418:2;;14507:1;14504;14497:12;14522:121;14607:10;14600:5;14596:22;14589:5;14586:33;14576:2;;14633:1;14630;14623:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1518200",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "beaconPeriodEndAt()": "infinite",
                "beaconPeriodRemainingSeconds()": "infinite",
                "calculateNextBeaconPeriodStartTime(uint64)": "infinite",
                "calculateNextBeaconPeriodStartTimeFromCurrentTime()": "5019",
                "canCompleteDraw()": "infinite",
                "canStartDraw()": "infinite",
                "cancelDraw()": "32481",
                "claimOwnership()": "54486",
                "completeDraw()": "infinite",
                "getBeaconPeriodSeconds()": "2370",
                "getBeaconPeriodStartedAt()": "2408",
                "getDrawBuffer()": "2388",
                "getLastRngLockBlock()": "2407",
                "getLastRngRequestId()": "2375",
                "getNextDrawId()": "2429",
                "getRngService()": "2421",
                "getRngTimeout()": "2353",
                "isBeaconPeriodOver()": "infinite",
                "isRngCompleted()": "infinite",
                "isRngRequested()": "2390",
                "isRngTimedOut()": "6756",
                "owner()": "2420",
                "pendingOwner()": "2397",
                "renounceOwnership()": "28246",
                "setBeaconPeriodSeconds(uint32)": "infinite",
                "setDrawBuffer(address)": "30301",
                "setRngService(address)": "infinite",
                "setRngTimeout(uint32)": "infinite",
                "startDraw()": "infinite",
                "transferOwnership(address)": "28010"
              },
              "internal": {
                "_beaconPeriodEndAt()": "4366",
                "_beaconPeriodRemainingSeconds()": "4546",
                "_calculateNextBeaconPeriodStartTime(uint64,uint32,uint64)": "464",
                "_currentTime()": "infinite",
                "_isBeaconPeriodOver()": "4419",
                "_requireDrawNotStarted()": "infinite",
                "_setBeaconPeriodSeconds(uint32)": "infinite",
                "_setDrawBuffer(contract IDrawBuffer)": "infinite",
                "_setRngService(contract RNGInterface)": "25414",
                "_setRngTimeout(uint32)": "infinite"
              }
            },
            "methodIdentifiers": {
              "beaconPeriodEndAt()": "a104fd79",
              "beaconPeriodRemainingSeconds()": "75e38f16",
              "calculateNextBeaconPeriodStartTime(uint64)": "a3ae35ab",
              "calculateNextBeaconPeriodStartTimeFromCurrentTime()": "89c36f8e",
              "canCompleteDraw()": "e4a75bb8",
              "canStartDraw()": "0996f6e1",
              "cancelDraw()": "412a616a",
              "claimOwnership()": "4e71e0c8",
              "completeDraw()": "0bdeecbd",
              "getBeaconPeriodSeconds()": "3e7a3908",
              "getBeaconPeriodStartedAt()": "39f92c30",
              "getDrawBuffer()": "4019f2d6",
              "getLastRngLockBlock()": "6bea5344",
              "getLastRngRequestId()": "2a7ad609",
              "getNextDrawId()": "c57708c2",
              "getRngService()": "7ce52b18",
              "getRngTimeout()": "1b5344a2",
              "isBeaconPeriodOver()": "d1e77657",
              "isRngCompleted()": "4aba4f6b",
              "isRngRequested()": "111070e4",
              "isRngTimedOut()": "738bbea8",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setBeaconPeriodSeconds(uint32)": "919bead0",
              "setDrawBuffer(address)": "ab70d49c",
              "setRngService(address)": "7f4296d7",
              "setRngTimeout(uint32)": "5020ea56",
              "startDraw()": "2ae168a6",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IDrawBuffer\",\"name\":\"_drawBuffer\",\"type\":\"address\"},{\"internalType\":\"contract RNGInterface\",\"name\":\"_rng\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"_nextDrawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"_beaconPeriodStart\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"_beaconPeriodSeconds\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"_rngTimeout\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"drawPeriodSeconds\",\"type\":\"uint32\"}],\"name\":\"BeaconPeriodSecondsUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"startedAt\",\"type\":\"uint64\"}],\"name\":\"BeaconPeriodStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"nextDrawId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IDrawBuffer\",\"name\":\"newDrawBuffer\",\"type\":\"address\"}],\"name\":\"DrawBufferUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"rngRequestId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"rngLockBlock\",\"type\":\"uint32\"}],\"name\":\"DrawCancelled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"randomNumber\",\"type\":\"uint256\"}],\"name\":\"DrawCompleted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"rngRequestId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"rngLockBlock\",\"type\":\"uint32\"}],\"name\":\"DrawStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract RNGInterface\",\"name\":\"rngService\",\"type\":\"address\"}],\"name\":\"RngServiceUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"rngTimeout\",\"type\":\"uint32\"}],\"name\":\"RngTimeoutSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"beaconPeriodEndAt\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"beaconPeriodRemainingSeconds\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"_time\",\"type\":\"uint64\"}],\"name\":\"calculateNextBeaconPeriodStartTime\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"calculateNextBeaconPeriodStartTimeFromCurrentTime\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"canCompleteDraw\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"canStartDraw\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cancelDraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"completeDraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBeaconPeriodSeconds\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBeaconPeriodStartedAt\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLastRngLockBlock\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLastRngRequestId\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNextDrawId\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getRngService\",\"outputs\":[{\"internalType\":\"contract RNGInterface\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getRngTimeout\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isBeaconPeriodOver\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isRngCompleted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isRngRequested\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isRngTimedOut\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_beaconPeriodSeconds\",\"type\":\"uint32\"}],\"name\":\"setBeaconPeriodSeconds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"newDrawBuffer\",\"type\":\"address\"}],\"name\":\"setDrawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract RNGInterface\",\"name\":\"_rngService\",\"type\":\"address\"}],\"name\":\"setRngService\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_rngTimeout\",\"type\":\"uint32\"}],\"name\":\"setRngTimeout\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"startDraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"Deployed(uint32,uint64)\":{\"params\":{\"beaconPeriodStartedAt\":\"Timestamp when beacon period starts.\",\"nextDrawId\":\"Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\"}}},\"kind\":\"dev\",\"methods\":{\"beaconPeriodEndAt()\":{\"returns\":{\"_0\":\"The timestamp at which the beacon period ends.\"}},\"beaconPeriodRemainingSeconds()\":{\"returns\":{\"_0\":\"The number of seconds remaining until the beacon period can be complete.\"}},\"calculateNextBeaconPeriodStartTime(uint64)\":{\"params\":{\"time\":\"The timestamp to use as the current time\"},\"returns\":{\"_0\":\"The timestamp at which the next beacon period would start\"}},\"calculateNextBeaconPeriodStartTimeFromCurrentTime()\":{\"returns\":{\"_0\":\"The next beacon period start time\"}},\"canCompleteDraw()\":{\"returns\":{\"_0\":\"True if a Draw can be completed, false otherwise.\"}},\"canStartDraw()\":{\"returns\":{\"_0\":\"True if a Draw can be started, false otherwise.\"}},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_beaconPeriodSeconds\":\"The duration of the beacon period in seconds\",\"_beaconPeriodStart\":\"The starting timestamp of the beacon period.\",\"_drawBuffer\":\"The address of the draw buffer to push draws to\",\"_nextDrawId\":\"Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\",\"_owner\":\"Address of the DrawBeacon owner\",\"_rng\":\"The RNG service to use\"}},\"getLastRngLockBlock()\":{\"returns\":{\"_0\":\"The block number that the RNG request is locked to\"}},\"getLastRngRequestId()\":{\"returns\":{\"_0\":\"The current Request ID\"}},\"isBeaconPeriodOver()\":{\"returns\":{\"_0\":\"True if the beacon period is over, false otherwise\"}},\"isRngCompleted()\":{\"returns\":{\"_0\":\"True if a random number request has completed, false otherwise.\"}},\"isRngRequested()\":{\"returns\":{\"_0\":\"True if a random number has been requested, false otherwise.\"}},\"isRngTimedOut()\":{\"returns\":{\"_0\":\"True if a random number request has timed out, false otherwise.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setBeaconPeriodSeconds(uint32)\":{\"params\":{\"beaconPeriodSeconds\":\"The new beacon period in seconds.  Must be greater than zero.\"}},\"setDrawBuffer(address)\":{\"details\":\"All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\",\"params\":{\"newDrawBuffer\":\"DrawBuffer address\"},\"returns\":{\"_0\":\"DrawBuffer\"}},\"setRngService(address)\":{\"params\":{\"rngService\":\"The address of the new RNG service interface\"}},\"setRngTimeout(uint32)\":{\"params\":{\"rngTimeout\":\"The RNG request timeout in seconds.\"}},\"startDraw()\":{\"details\":\"The RNG-Request-Fee is expected to be held within this contract before calling this function\"},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"stateVariables\":{\"nextDrawId\":{\"details\":\"Starts at 1. This way we know that no Draw has been recorded at 0.\"},\"rngTimeout\":{\"details\":\"If the rng completes the award can still be cancelled.\"}},\"title\":\"PoolTogether V4 DrawBeacon\",\"version\":1},\"userdoc\":{\"events\":{\"BeaconPeriodSecondsUpdated(uint32)\":{\"notice\":\"Emit when the drawPeriodSeconds is set.\"},\"BeaconPeriodStarted(uint64)\":{\"notice\":\"Emit when a draw has opened.\"},\"Deployed(uint32,uint64)\":{\"notice\":\"Emit when the DrawBeacon is deployed.\"},\"DrawBufferUpdated(address)\":{\"notice\":\"Emit when a new DrawBuffer has been set.\"},\"DrawCancelled(uint32,uint32)\":{\"notice\":\"Emit when a draw has been cancelled.\"},\"DrawCompleted(uint256)\":{\"notice\":\"Emit when a draw has been completed.\"},\"DrawStarted(uint32,uint32)\":{\"notice\":\"Emit when a draw has started.\"},\"RngServiceUpdated(address)\":{\"notice\":\"Emit when a RNG service address is set.\"},\"RngTimeoutSet(uint32)\":{\"notice\":\"Emit when a draw timeout param is set.\"}},\"kind\":\"user\",\"methods\":{\"beaconPeriodEndAt()\":{\"notice\":\"Returns the timestamp at which the beacon period ends\"},\"beaconPeriodRemainingSeconds()\":{\"notice\":\"Returns the number of seconds remaining until the beacon period can be complete.\"},\"calculateNextBeaconPeriodStartTime(uint64)\":{\"notice\":\"Calculates when the next beacon period will start.\"},\"calculateNextBeaconPeriodStartTimeFromCurrentTime()\":{\"notice\":\"Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now.\"},\"canCompleteDraw()\":{\"notice\":\"Returns whether a Draw can be completed.\"},\"canStartDraw()\":{\"notice\":\"Returns whether a Draw can be started.\"},\"cancelDraw()\":{\"notice\":\"Can be called by anyone to cancel the draw request if the RNG has timed out.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"completeDraw()\":{\"notice\":\"Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\"},\"constructor\":{\"notice\":\"Deploy the DrawBeacon smart contract.\"},\"getLastRngLockBlock()\":{\"notice\":\"Returns the block number that the current RNG request has been locked to.\"},\"getLastRngRequestId()\":{\"notice\":\"Returns the current RNG Request ID.\"},\"isBeaconPeriodOver()\":{\"notice\":\"Returns whether the beacon period is over\"},\"isRngCompleted()\":{\"notice\":\"Returns whether the random number request has completed.\"},\"isRngRequested()\":{\"notice\":\"Returns whether a random number has been requested\"},\"isRngTimedOut()\":{\"notice\":\"Returns whether the random number request has timed out.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setBeaconPeriodSeconds(uint32)\":{\"notice\":\"Allows the owner to set the beacon period in seconds.\"},\"setDrawBuffer(address)\":{\"notice\":\"Set global DrawBuffer variable.\"},\"setRngService(address)\":{\"notice\":\"Sets the RNG service that the Prize Strategy is connected to\"},\"setRngTimeout(uint32)\":{\"notice\":\"Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\"},\"startDraw()\":{\"notice\":\"Starts the Draw process by starting random number request. The previous beacon period must have ended.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"Manages RNG (random number generator) requests and pushing Draws onto DrawBuffer. The DrawBeacon has 3 major actions for requesting a random number: start, cancel and complete. To create a new Draw, the user requests a new random number from the RNG service. When the random number is available, the user can create the draw using the create() method which will push the draw onto the DrawBuffer. If the RNG service fails to deliver a rng, when the request timeout elapses, the user can cancel the request.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/DrawBeacon.sol\":\"DrawBeacon\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Random Number Generator Interface\\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\n */\\ninterface RNGInterface {\\n  /**\\n   * @notice Emitted when a new request for a random number has been submitted\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param sender The indexed address of the sender of the request\\n   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /**\\n   * @notice Emitted when an existing request for a random number has been completed\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param randomNumber The random number produced by the 3rd-party service\\n   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /**\\n   * @notice Gets the last request id used by the RNG service\\n   * @return requestId The last request id used in the last request\\n   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /**\\n   * @notice Gets the Fee for making a Request against an RNG service\\n   * @return feeToken The address of the token that is used to pay fees\\n   * @return requestFee The fee required to be paid to make a request\\n   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /**\\n   * @notice Sends a request for a random number to the 3rd-party service\\n   * @dev Some services will complete the request immediately, others may have a time-delay\\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n   * @return requestId The ID of the request used to get the results of the RNG service\\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /**\\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\\n   * @dev For time-delayed requests, this function is used to check/confirm completion\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\\n   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /**\\n   * @notice Gets the random number produced by the 3rd-party service\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return randomNum The random number\\n   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"},\"contracts/DrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IDrawBeacon.sol\\\";\\nimport \\\"./interfaces/IDrawBuffer.sol\\\";\\n\\n\\n/**\\n  * @title  PoolTogether V4 DrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice Manages RNG (random number generator) requests and pushing Draws onto DrawBuffer.\\n            The DrawBeacon has 3 major actions for requesting a random number: start, cancel and complete.\\n            To create a new Draw, the user requests a new random number from the RNG service.\\n            When the random number is available, the user can create the draw using the create() method\\n            which will push the draw onto the DrawBuffer.\\n            If the RNG service fails to deliver a rng, when the request timeout elapses, the user can cancel the request.\\n*/\\ncontract DrawBeacon is IDrawBeacon, Ownable {\\n    using SafeCast for uint256;\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Variables ============ */\\n\\n    /// @notice RNG contract interface\\n    RNGInterface internal rng;\\n\\n    /// @notice Current RNG Request\\n    RngRequest internal rngRequest;\\n\\n    /// @notice DrawBuffer address\\n    IDrawBuffer internal drawBuffer;\\n\\n    /**\\n     * @notice RNG Request Timeout.  In fact, this is really a \\\"complete draw\\\" timeout.\\n     * @dev If the rng completes the award can still be cancelled.\\n     */\\n    uint32 internal rngTimeout;\\n\\n    /// @notice Seconds between beacon period request\\n    uint32 internal beaconPeriodSeconds;\\n\\n    /// @notice Epoch timestamp when beacon period can start\\n    uint64 internal beaconPeriodStartedAt;\\n\\n    /**\\n     * @notice Next Draw ID to use when pushing a Draw onto DrawBuffer\\n     * @dev Starts at 1. This way we know that no Draw has been recorded at 0.\\n     */\\n    uint32 internal nextDrawId;\\n\\n    /* ============ Structs ============ */\\n\\n    /**\\n     * @notice RNG Request\\n     * @param id          RNG request ID\\n     * @param lockBlock   Block number that the RNG request is locked\\n     * @param requestedAt Time when RNG is requested\\n     */\\n    struct RngRequest {\\n        uint32 id;\\n        uint32 lockBlock;\\n        uint64 requestedAt;\\n    }\\n\\n    /* ============ Events ============ */\\n\\n    /**\\n     * @notice Emit when the DrawBeacon is deployed.\\n     * @param nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\\n     * @param beaconPeriodStartedAt Timestamp when beacon period starts.\\n     */\\n    event Deployed(\\n        uint32 nextDrawId,\\n        uint64 beaconPeriodStartedAt\\n    );\\n\\n    /* ============ Modifiers ============ */\\n\\n    modifier requireDrawNotStarted() {\\n        _requireDrawNotStarted();\\n        _;\\n    }\\n\\n    modifier requireCanStartDraw() {\\n        require(_isBeaconPeriodOver(), \\\"DrawBeacon/beacon-period-not-over\\\");\\n        require(!isRngRequested(), \\\"DrawBeacon/rng-already-requested\\\");\\n        _;\\n    }\\n\\n    modifier requireCanCompleteRngRequest() {\\n        require(isRngRequested(), \\\"DrawBeacon/rng-not-requested\\\");\\n        require(isRngCompleted(), \\\"DrawBeacon/rng-not-complete\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Deploy the DrawBeacon smart contract.\\n     * @param _owner Address of the DrawBeacon owner\\n     * @param _drawBuffer The address of the draw buffer to push draws to\\n     * @param _rng The RNG service to use\\n     * @param _nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\\n     * @param _beaconPeriodStart The starting timestamp of the beacon period.\\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\\n     */\\n    constructor(\\n        address _owner,\\n        IDrawBuffer _drawBuffer,\\n        RNGInterface _rng,\\n        uint32 _nextDrawId,\\n        uint64 _beaconPeriodStart,\\n        uint32 _beaconPeriodSeconds,\\n        uint32 _rngTimeout\\n    ) Ownable(_owner) {\\n        require(_beaconPeriodStart > 0, \\\"DrawBeacon/beacon-period-greater-than-zero\\\");\\n        require(address(_rng) != address(0), \\\"DrawBeacon/rng-not-zero\\\");\\n        require(_nextDrawId >= 1, \\\"DrawBeacon/next-draw-id-gte-one\\\");\\n\\n        beaconPeriodStartedAt = _beaconPeriodStart;\\n        nextDrawId = _nextDrawId;\\n\\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\\n        _setDrawBuffer(_drawBuffer);\\n        _setRngService(_rng);\\n        _setRngTimeout(_rngTimeout);\\n\\n        emit Deployed(_nextDrawId, _beaconPeriodStart);\\n        emit BeaconPeriodStarted(_beaconPeriodStart);\\n    }\\n\\n    /* ============ Public Functions ============ */\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() public view override returns (bool) {\\n        return rng.isRequestComplete(rngRequest.id);\\n    }\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() public view override returns (bool) {\\n        return rngRequest.id != 0;\\n    }\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() public view override returns (bool) {\\n        if (rngRequest.requestedAt == 0) {\\n            return false;\\n        } else {\\n            return rngTimeout + rngRequest.requestedAt < _currentTime();\\n        }\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IDrawBeacon\\n    function canStartDraw() external view override returns (bool) {\\n        return _isBeaconPeriodOver() && !isRngRequested();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function canCompleteDraw() external view override returns (bool) {\\n        return isRngRequested() && isRngCompleted();\\n    }\\n\\n    /// @notice Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now.\\n    /// @return The next beacon period start time\\n    function calculateNextBeaconPeriodStartTimeFromCurrentTime() external view returns (uint64) {\\n        return\\n            _calculateNextBeaconPeriodStartTime(\\n                beaconPeriodStartedAt,\\n                beaconPeriodSeconds,\\n                _currentTime()\\n            );\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function calculateNextBeaconPeriodStartTime(uint64 _time)\\n        external\\n        view\\n        override\\n        returns (uint64)\\n    {\\n        return\\n            _calculateNextBeaconPeriodStartTime(\\n                beaconPeriodStartedAt,\\n                beaconPeriodSeconds,\\n                _time\\n            );\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function cancelDraw() external override {\\n        require(isRngTimedOut(), \\\"DrawBeacon/rng-not-timedout\\\");\\n        uint32 requestId = rngRequest.id;\\n        uint32 lockBlock = rngRequest.lockBlock;\\n        delete rngRequest;\\n        emit DrawCancelled(requestId, lockBlock);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function completeDraw() external override requireCanCompleteRngRequest {\\n        uint256 randomNumber = rng.randomNumber(rngRequest.id);\\n        uint32 _nextDrawId = nextDrawId;\\n        uint64 _beaconPeriodStartedAt = beaconPeriodStartedAt;\\n        uint32 _beaconPeriodSeconds = beaconPeriodSeconds;\\n        uint64 _time = _currentTime();\\n\\n        // create Draw struct\\n        IDrawBeacon.Draw memory _draw = IDrawBeacon.Draw({\\n            winningRandomNumber: randomNumber,\\n            drawId: _nextDrawId,\\n            timestamp: rngRequest.requestedAt, // must use the startAward() timestamp to prevent front-running\\n            beaconPeriodStartedAt: _beaconPeriodStartedAt,\\n            beaconPeriodSeconds: _beaconPeriodSeconds\\n        });\\n\\n        drawBuffer.pushDraw(_draw);\\n\\n        // to avoid clock drift, we should calculate the start time based on the previous period start time.\\n        uint64 nextBeaconPeriodStartedAt = _calculateNextBeaconPeriodStartTime(\\n            _beaconPeriodStartedAt,\\n            _beaconPeriodSeconds,\\n            _time\\n        );\\n        beaconPeriodStartedAt = nextBeaconPeriodStartedAt;\\n        nextDrawId = _nextDrawId + 1;\\n\\n        // Reset the rngRequest state so Beacon period can start again.\\n        delete rngRequest;\\n\\n        emit DrawCompleted(randomNumber);\\n        emit BeaconPeriodStarted(nextBeaconPeriodStartedAt);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function beaconPeriodRemainingSeconds() external view override returns (uint64) {\\n        return _beaconPeriodRemainingSeconds();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function beaconPeriodEndAt() external view override returns (uint64) {\\n        return _beaconPeriodEndAt();\\n    }\\n\\n    function getBeaconPeriodSeconds() external view returns (uint32) {\\n        return beaconPeriodSeconds;\\n    }\\n\\n    function getBeaconPeriodStartedAt() external view returns (uint64) {\\n        return beaconPeriodStartedAt;\\n    }\\n\\n    function getDrawBuffer() external view returns (IDrawBuffer) {\\n        return drawBuffer;\\n    }\\n\\n    function getNextDrawId() external view returns (uint32) {\\n        return nextDrawId;\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function getLastRngLockBlock() external view override returns (uint32) {\\n        return rngRequest.lockBlock;\\n    }\\n\\n    function getLastRngRequestId() external view override returns (uint32) {\\n        return rngRequest.id;\\n    }\\n\\n    function getRngService() external view returns (RNGInterface) {\\n        return rng;\\n    }\\n\\n    function getRngTimeout() external view returns (uint32) {\\n        return rngTimeout;\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function isBeaconPeriodOver() external view override returns (bool) {\\n        return _isBeaconPeriodOver();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawBuffer)\\n    {\\n        return _setDrawBuffer(newDrawBuffer);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function startDraw() external override requireCanStartDraw {\\n        (address feeToken, uint256 requestFee) = rng.getRequestFee();\\n\\n        if (feeToken != address(0) && requestFee > 0) {\\n            IERC20(feeToken).safeIncreaseAllowance(address(rng), requestFee);\\n        }\\n\\n        (uint32 requestId, uint32 lockBlock) = rng.requestRandomNumber();\\n        rngRequest.id = requestId;\\n        rngRequest.lockBlock = lockBlock;\\n        rngRequest.requestedAt = _currentTime();\\n\\n        emit DrawStarted(requestId, lockBlock);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds)\\n        external\\n        override\\n        onlyOwner\\n        requireDrawNotStarted\\n    {\\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setRngTimeout(uint32 _rngTimeout) external override onlyOwner requireDrawNotStarted {\\n        _setRngTimeout(_rngTimeout);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setRngService(RNGInterface _rngService)\\n        external\\n        override\\n        onlyOwner\\n        requireDrawNotStarted\\n    {\\n        _setRngService(_rngService);\\n    }\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param _rngService The address of the new RNG service interface\\n     */\\n    function _setRngService(RNGInterface _rngService) internal\\n    {\\n        rng = _rngService;\\n        emit RngServiceUpdated(_rngService);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start\\n     * @param _beaconPeriodStartedAt The timestamp at which the beacon period started\\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\\n     * @param _time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function _calculateNextBeaconPeriodStartTime(\\n        uint64 _beaconPeriodStartedAt,\\n        uint32 _beaconPeriodSeconds,\\n        uint64 _time\\n    ) internal pure returns (uint64) {\\n        uint64 elapsedPeriods = (_time - _beaconPeriodStartedAt) / _beaconPeriodSeconds;\\n        return _beaconPeriodStartedAt + (elapsedPeriods * _beaconPeriodSeconds);\\n    }\\n\\n    /**\\n     * @notice returns the current time.  Used for testing.\\n     * @return The current time (block.timestamp)\\n     */\\n    function _currentTime() internal view virtual returns (uint64) {\\n        return uint64(block.timestamp);\\n    }\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends\\n     */\\n    function _beaconPeriodEndAt() internal view returns (uint64) {\\n        return beaconPeriodStartedAt + beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the prize can be awarded.\\n     * @return The number of seconds remaining until the prize can be awarded.\\n     */\\n    function _beaconPeriodRemainingSeconds() internal view returns (uint64) {\\n        uint64 endAt = _beaconPeriodEndAt();\\n        uint64 time = _currentTime();\\n\\n        if (endAt <= time) {\\n            return 0;\\n        }\\n\\n        return endAt - time;\\n    }\\n\\n    /**\\n     * @notice Returns whether the beacon period is over.\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function _isBeaconPeriodOver() internal view returns (bool) {\\n        return _beaconPeriodEndAt() <= _currentTime();\\n    }\\n\\n    /**\\n     * @notice Check to see draw is in progress.\\n     */\\n    function _requireDrawNotStarted() internal view {\\n        uint256 currentBlock = block.number;\\n\\n        require(\\n            rngRequest.lockBlock == 0 || currentBlock < rngRequest.lockBlock,\\n            \\\"DrawBeacon/rng-in-flight\\\"\\n        );\\n    }\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param _newDrawBuffer  DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function _setDrawBuffer(IDrawBuffer _newDrawBuffer) internal returns (IDrawBuffer) {\\n        IDrawBuffer _previousDrawBuffer = drawBuffer;\\n        require(address(_newDrawBuffer) != address(0), \\\"DrawBeacon/draw-history-not-zero-address\\\");\\n\\n        require(\\n            address(_newDrawBuffer) != address(_previousDrawBuffer),\\n            \\\"DrawBeacon/existing-draw-history-address\\\"\\n        );\\n\\n        drawBuffer = _newDrawBuffer;\\n\\n        emit DrawBufferUpdated(_newDrawBuffer);\\n\\n        return _newDrawBuffer;\\n    }\\n\\n    /**\\n     * @notice Sets the beacon period in seconds.\\n     * @param _beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function _setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds) internal {\\n        require(_beaconPeriodSeconds > 0, \\\"DrawBeacon/beacon-period-greater-than-zero\\\");\\n        beaconPeriodSeconds = _beaconPeriodSeconds;\\n\\n        emit BeaconPeriodSecondsUpdated(_beaconPeriodSeconds);\\n    }\\n\\n    /**\\n     * @notice Sets the RNG request timeout in seconds.  This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param _rngTimeout The RNG request timeout in seconds.\\n     */\\n    function _setRngTimeout(uint32 _rngTimeout) internal {\\n        require(_rngTimeout > 60, \\\"DrawBeacon/rng-timeout-gt-60-secs\\\");\\n        rngTimeout = _rngTimeout;\\n\\n        emit RngTimeoutSet(_rngTimeout);\\n    }\\n}\\n\",\"keccak256\":\"0xee85be5d2589d345c67eaed219009338addc41cf6ac3b74b1ebd8fdd7de404da\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/DrawBeacon.sol:DrawBeacon",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/DrawBeacon.sol:DrawBeacon",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 5313,
                "contract": "contracts/DrawBeacon.sol:DrawBeacon",
                "label": "rng",
                "offset": 0,
                "slot": "2",
                "type": "t_contract(RNGInterface)4142"
              },
              {
                "astId": 5317,
                "contract": "contracts/DrawBeacon.sol:DrawBeacon",
                "label": "rngRequest",
                "offset": 0,
                "slot": "3",
                "type": "t_struct(RngRequest)5340_storage"
              },
              {
                "astId": 5321,
                "contract": "contracts/DrawBeacon.sol:DrawBeacon",
                "label": "drawBuffer",
                "offset": 0,
                "slot": "4",
                "type": "t_contract(IDrawBuffer)11318"
              },
              {
                "astId": 5324,
                "contract": "contracts/DrawBeacon.sol:DrawBeacon",
                "label": "rngTimeout",
                "offset": 20,
                "slot": "4",
                "type": "t_uint32"
              },
              {
                "astId": 5327,
                "contract": "contracts/DrawBeacon.sol:DrawBeacon",
                "label": "beaconPeriodSeconds",
                "offset": 24,
                "slot": "4",
                "type": "t_uint32"
              },
              {
                "astId": 5330,
                "contract": "contracts/DrawBeacon.sol:DrawBeacon",
                "label": "beaconPeriodStartedAt",
                "offset": 0,
                "slot": "5",
                "type": "t_uint64"
              },
              {
                "astId": 5333,
                "contract": "contracts/DrawBeacon.sol:DrawBeacon",
                "label": "nextDrawId",
                "offset": 8,
                "slot": "5",
                "type": "t_uint32"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(IDrawBuffer)11318": {
                "encoding": "inplace",
                "label": "contract IDrawBuffer",
                "numberOfBytes": "20"
              },
              "t_contract(RNGInterface)4142": {
                "encoding": "inplace",
                "label": "contract RNGInterface",
                "numberOfBytes": "20"
              },
              "t_struct(RngRequest)5340_storage": {
                "encoding": "inplace",
                "label": "struct DrawBeacon.RngRequest",
                "members": [
                  {
                    "astId": 5335,
                    "contract": "contracts/DrawBeacon.sol:DrawBeacon",
                    "label": "id",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 5337,
                    "contract": "contracts/DrawBeacon.sol:DrawBeacon",
                    "label": "lockBlock",
                    "offset": 4,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 5339,
                    "contract": "contracts/DrawBeacon.sol:DrawBeacon",
                    "label": "requestedAt",
                    "offset": 8,
                    "slot": "0",
                    "type": "t_uint64"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              },
              "t_uint64": {
                "encoding": "inplace",
                "label": "uint64",
                "numberOfBytes": "8"
              }
            }
          },
          "userdoc": {
            "events": {
              "BeaconPeriodSecondsUpdated(uint32)": {
                "notice": "Emit when the drawPeriodSeconds is set."
              },
              "BeaconPeriodStarted(uint64)": {
                "notice": "Emit when a draw has opened."
              },
              "Deployed(uint32,uint64)": {
                "notice": "Emit when the DrawBeacon is deployed."
              },
              "DrawBufferUpdated(address)": {
                "notice": "Emit when a new DrawBuffer has been set."
              },
              "DrawCancelled(uint32,uint32)": {
                "notice": "Emit when a draw has been cancelled."
              },
              "DrawCompleted(uint256)": {
                "notice": "Emit when a draw has been completed."
              },
              "DrawStarted(uint32,uint32)": {
                "notice": "Emit when a draw has started."
              },
              "RngServiceUpdated(address)": {
                "notice": "Emit when a RNG service address is set."
              },
              "RngTimeoutSet(uint32)": {
                "notice": "Emit when a draw timeout param is set."
              }
            },
            "kind": "user",
            "methods": {
              "beaconPeriodEndAt()": {
                "notice": "Returns the timestamp at which the beacon period ends"
              },
              "beaconPeriodRemainingSeconds()": {
                "notice": "Returns the number of seconds remaining until the beacon period can be complete."
              },
              "calculateNextBeaconPeriodStartTime(uint64)": {
                "notice": "Calculates when the next beacon period will start."
              },
              "calculateNextBeaconPeriodStartTimeFromCurrentTime()": {
                "notice": "Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now."
              },
              "canCompleteDraw()": {
                "notice": "Returns whether a Draw can be completed."
              },
              "canStartDraw()": {
                "notice": "Returns whether a Draw can be started."
              },
              "cancelDraw()": {
                "notice": "Can be called by anyone to cancel the draw request if the RNG has timed out."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "completeDraw()": {
                "notice": "Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer."
              },
              "constructor": {
                "notice": "Deploy the DrawBeacon smart contract."
              },
              "getLastRngLockBlock()": {
                "notice": "Returns the block number that the current RNG request has been locked to."
              },
              "getLastRngRequestId()": {
                "notice": "Returns the current RNG Request ID."
              },
              "isBeaconPeriodOver()": {
                "notice": "Returns whether the beacon period is over"
              },
              "isRngCompleted()": {
                "notice": "Returns whether the random number request has completed."
              },
              "isRngRequested()": {
                "notice": "Returns whether a random number has been requested"
              },
              "isRngTimedOut()": {
                "notice": "Returns whether the random number request has timed out."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setBeaconPeriodSeconds(uint32)": {
                "notice": "Allows the owner to set the beacon period in seconds."
              },
              "setDrawBuffer(address)": {
                "notice": "Set global DrawBuffer variable."
              },
              "setRngService(address)": {
                "notice": "Sets the RNG service that the Prize Strategy is connected to"
              },
              "setRngTimeout(uint32)": {
                "notice": "Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked."
              },
              "startDraw()": {
                "notice": "Starts the Draw process by starting random number request. The previous beacon period must have ended."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "Manages RNG (random number generator) requests and pushing Draws onto DrawBuffer. The DrawBeacon has 3 major actions for requesting a random number: start, cancel and complete. To create a new Draw, the user requests a new random number from the RNG service. When the random number is available, the user can create the draw using the create() method which will push the draw onto the DrawBuffer. If the RNG service fails to deliver a rng, when the request timeout elapses, the user can cancel the request.",
            "version": 1
          }
        }
      },
      "contracts/DrawBuffer.sol": {
        "DrawBuffer": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "uint8",
                  "name": "_cardinality",
                  "type": "uint8"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "draw",
                  "type": "tuple"
                }
              ],
              "name": "DrawSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "MAX_CARDINALITY",
              "outputs": [
                {
                  "internalType": "uint16",
                  "name": "",
                  "type": "uint16"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBufferCardinality",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "name": "getDraw",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawCount",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getDraws",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getNewestDraw",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getOldestDraw",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "_draw",
                  "type": "tuple"
                }
              ],
              "name": "pushDraw",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "_newDraw",
                  "type": "tuple"
                }
              ],
              "name": "setDraw",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "details": "A DrawBuffer store a limited number of Draws before beginning to overwrite (managed via the cardinality) previous Draws.All mainnet DrawBuffer(s) are updated directly from a DrawBeacon, but non-mainnet DrawBuffer(s) (Matic, Optimism, Arbitrum, etc...) will receive a cross-chain message, duplicating the mainnet Draw configuration - enabling a prize savings liquidity network.",
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_cardinality": "Draw ring buffer cardinality.",
                  "_owner": "Address of the owner of the DrawBuffer."
                }
              },
              "getBufferCardinality()": {
                "returns": {
                  "_0": "Ring buffer cardinality"
                }
              },
              "getDraw(uint32)": {
                "details": "Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.",
                "params": {
                  "drawId": "Draw.drawId"
                },
                "returns": {
                  "_0": "IDrawBeacon.Draw"
                }
              },
              "getDrawCount()": {
                "details": "If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestDraw index + 1.",
                "returns": {
                  "_0": "Number of Draws held in the draw ring buffer."
                }
              },
              "getDraws(uint32[])": {
                "details": "Read multiple Draws using each drawId to calculate position in the draws ring buffer.",
                "params": {
                  "drawIds": "Array of drawIds"
                },
                "returns": {
                  "_0": "IDrawBeacon.Draw[]"
                }
              },
              "getNewestDraw()": {
                "details": "Uses the nextDrawIndex to calculate the most recently added Draw.",
                "returns": {
                  "_0": "IDrawBeacon.Draw"
                }
              },
              "getOldestDraw()": {
                "details": "Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.",
                "returns": {
                  "_0": "IDrawBeacon.Draw"
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "pushDraw((uint256,uint32,uint64,uint64,uint32))": {
                "details": "Push new draw onto draws history via authorized manager or owner.",
                "params": {
                  "draw": "IDrawBeacon.Draw"
                },
                "returns": {
                  "_0": "Draw.drawId"
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setDraw((uint256,uint32,uint64,uint64,uint32))": {
                "details": "Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.",
                "params": {
                  "newDraw": "IDrawBeacon.Draw"
                },
                "returns": {
                  "_0": "Draw.drawId"
                }
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "PoolTogether V4 DrawBuffer",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_3961": {
                  "entryPoint": null,
                  "id": 3961,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_6214": {
                  "entryPoint": null,
                  "id": 6214,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 102,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_uint8_fromMemory": {
                  "entryPoint": 182,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:464:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "110:352:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "156:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "165:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "168:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "158:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "158:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "158:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "131:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "140:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "127:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "127:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "152:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "123:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "123:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "120:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "181:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "200:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "185:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "273:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "282:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "285:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "275:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "275:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "275:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "232:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "243:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "258:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "263:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "254:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "254:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "267:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "250:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "250:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "239:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "239:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "229:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "229:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "222:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "222:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "219:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "298:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "308:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "322:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "347:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "358:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "343:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "343:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "337:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "337:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "326:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "414:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "423:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "426:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "416:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "416:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "416:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "384:7:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "397:7:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "406:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "393:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "393:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "381:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "381:31:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "374:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "374:39:84"
                              },
                              "nodeType": "YulIf",
                              "src": "371:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "439:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "449:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "439:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "68:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "79:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "91:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "99:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:448:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_uint8_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        if iszero(eq(value_1, and(value_1, 0xff))) { revert(0, 0) }\n        value1 := value_1\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b506040516117cb3803806117cb83398101604081905261002f916100b6565b8161003981610066565b50610203805463ffffffff60401b191660ff92909216680100000000000000000291909117905550610102565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c957600080fd5b82516001600160a01b03811681146100e057600080fd5b602084015190925060ff811681146100f757600080fd5b809150509250929050565b6116ba806101116000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063d0ebdbe711610066578063d0ebdbe714610209578063d7bcb86b1461022c578063e30c39781461023f578063f2fde38b1461025057600080fd5b80638da5cb5b146101b5578063c4df5fed146101c6578063caeef7ec146101ce578063d0bb78f3146101e957600080fd5b8063648b1b4f116100d3578063648b1b4f14610176578063715018a61461017e5780638200d8731461018657806383c34aaf146101a257600080fd5b8063089eb925146101055780630edb1d2e14610132578063481c6a75146101475780634e71e0c81461016c575b600080fd5b6101186101133660046113ed565b610263565b60405163ffffffff90911681526020015b60405180910390f35b61013a61032e565b6040516101299190611533565b6002546001600160a01b03165b6040516001600160a01b039091168152602001610129565b6101746103a3565b005b61013a610431565b610174610586565b61018f61010081565b60405161ffff9091168152602001610129565b61013a6101b0366004611482565b6105fb565b6000546001600160a01b0316610154565b6101186106f6565b6102035468010000000000000000900463ffffffff16610118565b6101fc6101f7366004611378565b610798565b604051610129919061149d565b61021c61021736600461134f565b610948565b6040519015158152602001610129565b61011861023a3660046113ed565b6109bc565b6001546001600160a01b0316610154565b61017461025e36600461134f565b610ba9565b6000336102786002546001600160a01b031690565b6001600160a01b031614806102a657503361029b6000546001600160a01b031690565b6001600160a01b0316145b61031d5760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61032682610ce5565b90505b919050565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915261039e90610ee7565b905090565b6001546001600160a01b031633146103fd5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610314565b600154610412906001600160a01b0316610f22565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084018190526801000000000000000090920416928201929092529060009060039061010081106104b2576104b2611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff640100000000830481169484018590526c010000000000000000000000008304166060840152600160a01b909104166080820152915061058057506040805160a081018252600354815260045463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b900490911660808201525b92915050565b336105996000546001600160a01b031690565b6001600160a01b0316146105ef5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b6105f96000610f22565b565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915260039061066f9084610f7f565b63ffffffff16610100811061068657610686611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b9004909116608082015292915050565b604080516060810182526102035463ffffffff80821680845264010000000083048216602085015268010000000000000000909204169282019290925260009161074257600091505090565b6020810151600363ffffffff8216610100811061076157610761611658565b6002020160010160049054906101000a900467ffffffffffffffff1667ffffffffffffffff16600014610580575060400151919050565b606060008267ffffffffffffffff8111156107b5576107b561166e565b60405190808252806020026020018201604052801561080e57816020015b6040805160a0810182526000808252602080830182905292820181905260608201819052608082015282526000199092019101816107d35790505b50604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915290915060005b8481101561093e57600361088b8388888581811061087157610871611658565b90506020020160208101906108869190611482565b610f7f565b63ffffffff1661010081106108a2576108a2611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b90049091166080820152835184908390811061092057610920611658565b6020026020010181905250808061093690611605565b915050610851565b5090949350505050565b60003361095d6000546001600160a01b031690565b6001600160a01b0316146109b35760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b61032682610f92565b6000336109d16000546001600160a01b031690565b6001600160a01b031614610a275760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b604080516060810182526102035463ffffffff808216835264010000000082048116602080850191909152680100000000000000009092048116938301939093528401519091600091610a7d9184919061107e16565b90508360038263ffffffff166101008110610a9a57610a9a611658565b82516002919091029190910190815560208083015160019092018054604080860151606087015160809097015163ffffffff9687166bffffffffffffffffffffffff199094169390931764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909716027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1695909517600160a01b9185169190910217905586015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610b97908790611533565b60405180910390a25050506020015190565b33610bbc6000546001600160a01b031690565b6001600160a01b031614610c125760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b6001600160a01b038116610c8e5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610314565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b604080516060810182526102035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925260009183906003906101008110610d3c57610d3c611658565b825160029190910291909101908155602080830151600190920180546040850151606086015160809096015163ffffffff9586166bffffffffffffffffffffffff199093169290921764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909616027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1694909417600160a01b948416949094029390931790925590840151610e18918391906111ae16565b8051610203805460208085015160409586015163ffffffff90811668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff928216640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000909516968216969096179390931716939093179091559085015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610ed6908690611533565b60405180910390a250506020015190565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152815160039061066f90849061107e565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610f8b838361107e565b9392505050565b6002546000906001600160a01b0390811690831681141561101b5760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610314565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600061108983611299565b80156110a55750826000015163ffffffff168263ffffffff1611155b6110f15760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d6472617700000000000000000000000000000000006044820152606401610314565b82516000906111019084906115e0565b9050836040015163ffffffff168163ffffffff16106111625760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d64726177000000000000000000000000000000006044820152606401610314565b6000611182856020015163ffffffff16866040015163ffffffff166112c1565b90506111a58163ffffffff168363ffffffff16876040015163ffffffff166112ef565b95945050505050565b60408051606081018252600080825260208201819052918101919091526111d483611299565b15806111f7575082516111e89060016115a1565b63ffffffff168263ffffffff16145b6112435760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e74696700000000000000000000000000006044820152606401610314565b60405180606001604052808363ffffffff168152602001611278856020015163ffffffff16866040015163ffffffff16611307565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156112ba5750815163ffffffff16155b1592915050565b6000816112d057506000610580565b610f8b60016112df8486611589565b6112e991906115c9565b83611317565b60006112ff836112df8487611589565b949350505050565b6000610f8b6112e9846001611589565b6000610f8b8284611620565b803563ffffffff8116811461032957600080fd5b803567ffffffffffffffff8116811461032957600080fd5b60006020828403121561136157600080fd5b81356001600160a01b0381168114610f8b57600080fd5b6000806020838503121561138b57600080fd5b823567ffffffffffffffff808211156113a357600080fd5b818501915085601f8301126113b757600080fd5b8135818111156113c657600080fd5b8660208260051b85010111156113db57600080fd5b60209290920196919550909350505050565b600060a082840312156113ff57600080fd5b60405160a0810181811067ffffffffffffffff8211171561143057634e487b7160e01b600052604160045260246000fd5b6040528235815261144360208401611323565b602082015261145460408401611337565b604082015261146560608401611337565b606082015261147660808401611323565b60808201529392505050565b60006020828403121561149457600080fd5b610f8b82611323565b6020808252825182820181905260009190848201906040850190845b818110156115275761151483855180518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b9284019260a092909201916001016114b9565b50909695505050505050565b60a08101610580828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b6000821982111561159c5761159c611642565b500190565b600063ffffffff8083168185168083038211156115c0576115c0611642565b01949350505050565b6000828210156115db576115db611642565b500390565b600063ffffffff838116908316818110156115fd576115fd611642565b039392505050565b600060001982141561161957611619611642565b5060010190565b60008261163d57634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220de3989f24f743130e6078ceb70ba2c1a1b73f24df2547750cb11586efc5d00f764736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x17CB CODESIZE SUB DUP1 PUSH2 0x17CB DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2F SWAP2 PUSH2 0xB6 JUMP JUMPDEST DUP2 PUSH2 0x39 DUP2 PUSH2 0x66 JUMP JUMPDEST POP PUSH2 0x203 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0x40 SHL NOT AND PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP PUSH2 0x102 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xC9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0xF7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x16BA DUP1 PUSH2 0x111 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 0x100 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x209 JUMPI DUP1 PUSH4 0xD7BCB86B EQ PUSH2 0x22C JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x23F JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x250 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1B5 JUMPI DUP1 PUSH4 0xC4DF5FED EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0xCAEEF7EC EQ PUSH2 0x1CE JUMPI DUP1 PUSH4 0xD0BB78F3 EQ PUSH2 0x1E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x648B1B4F GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x648B1B4F EQ PUSH2 0x176 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x17E JUMPI DUP1 PUSH4 0x8200D873 EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0x83C34AAF EQ PUSH2 0x1A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x89EB925 EQ PUSH2 0x105 JUMPI DUP1 PUSH4 0xEDB1D2E EQ PUSH2 0x132 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x147 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x16C JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x118 PUSH2 0x113 CALLDATASIZE PUSH1 0x4 PUSH2 0x13ED JUMP JUMPDEST PUSH2 0x263 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13A PUSH2 0x32E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x129 SWAP2 SWAP1 PUSH2 0x1533 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x129 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x3A3 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x13A PUSH2 0x431 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x586 JUMP JUMPDEST PUSH2 0x18F PUSH2 0x100 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x129 JUMP JUMPDEST PUSH2 0x13A PUSH2 0x1B0 CALLDATASIZE PUSH1 0x4 PUSH2 0x1482 JUMP JUMPDEST PUSH2 0x5FB JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x6F6 JUMP JUMPDEST PUSH2 0x203 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x118 JUMP JUMPDEST PUSH2 0x1FC PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1378 JUMP JUMPDEST PUSH2 0x798 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x129 SWAP2 SWAP1 PUSH2 0x149D JUMP JUMPDEST PUSH2 0x21C PUSH2 0x217 CALLDATASIZE PUSH1 0x4 PUSH2 0x134F JUMP JUMPDEST PUSH2 0x948 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x129 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x23A CALLDATASIZE PUSH1 0x4 PUSH2 0x13ED JUMP JUMPDEST PUSH2 0x9BC JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x25E CALLDATASIZE PUSH1 0x4 PUSH2 0x134F JUMP JUMPDEST PUSH2 0xBA9 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x278 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2A6 JUMPI POP CALLER PUSH2 0x29B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x31D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x326 DUP3 PUSH2 0xCE5 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x39E SWAP1 PUSH2 0xEE7 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x3FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x412 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF22 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0x4B2 JUMPI PUSH2 0x4B2 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD DUP6 SWAP1 MSTORE PUSH13 0x1000000000000000000000000 DUP4 DIV AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV AND PUSH1 0x80 DUP3 ADD MSTORE SWAP2 POP PUSH2 0x580 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x3 SLOAD DUP2 MSTORE PUSH1 0x4 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x599 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH2 0x5F9 PUSH1 0x0 PUSH2 0xF22 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x3 SWAP1 PUSH2 0x66F SWAP1 DUP5 PUSH2 0xF7F JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH5 0x100000000 DUP4 DIV DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH2 0x742 JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x3 PUSH4 0xFFFFFFFF DUP3 AND PUSH2 0x100 DUP2 LT PUSH2 0x761 JUMPI PUSH2 0x761 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x2 MUL ADD PUSH1 0x1 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x0 EQ PUSH2 0x580 JUMPI POP PUSH1 0x40 ADD MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7B5 JUMPI PUSH2 0x7B5 PUSH2 0x166E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x80E JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x80 DUP3 ADD MSTORE DUP3 MSTORE PUSH1 0x0 NOT SWAP1 SWAP3 ADD SWAP2 ADD DUP2 PUSH2 0x7D3 JUMPI SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x93E JUMPI PUSH1 0x3 PUSH2 0x88B DUP4 DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x871 JUMPI PUSH2 0x871 PUSH2 0x1658 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x886 SWAP2 SWAP1 PUSH2 0x1482 JUMP JUMPDEST PUSH2 0xF7F JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x8A2 JUMPI PUSH2 0x8A2 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE DUP4 MLOAD DUP5 SWAP1 DUP4 SWAP1 DUP2 LT PUSH2 0x920 JUMPI PUSH2 0x920 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x936 SWAP1 PUSH2 0x1605 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x851 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x95D PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9B3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH2 0x326 DUP3 PUSH2 0xF92 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x9D1 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV DUP2 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE DUP5 ADD MLOAD SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH2 0xA7D SWAP2 DUP5 SWAP2 SWAP1 PUSH2 0x107E AND JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x3 DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0xA9A JUMPI PUSH2 0xA9A PUSH2 0x1658 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x2 SWAP2 SWAP1 SWAP2 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 DUP2 SSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x1 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0x40 DUP1 DUP7 ADD MLOAD PUSH1 0x60 DUP8 ADD MLOAD PUSH1 0x80 SWAP1 SWAP8 ADD MLOAD PUSH4 0xFFFFFFFF SWAP7 DUP8 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR PUSH5 0x100000000 PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND MUL OR PUSH32 0xFFFFFFFFFFFFFFFF000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF AND PUSH13 0x1000000000000000000000000 SWAP2 SWAP1 SWAP8 AND MUL PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP6 SWAP1 SWAP6 OR PUSH1 0x1 PUSH1 0xA0 SHL SWAP2 DUP6 AND SWAP2 SWAP1 SWAP2 MUL OR SWAP1 SSTORE DUP7 ADD MLOAD SWAP2 MLOAD SWAP2 AND SWAP1 PUSH32 0xC6F337E5507FD1BDEBC6D79ED14168145E8C109D7B7139459692E24F06BAED17 SWAP1 PUSH2 0xB97 SWAP1 DUP8 SWAP1 PUSH2 0x1533 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP PUSH1 0x20 ADD MLOAD SWAP1 JUMP JUMPDEST CALLER PUSH2 0xBBC PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC12 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xC8E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0xD3C JUMPI PUSH2 0xD3C PUSH2 0x1658 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x2 SWAP2 SWAP1 SWAP2 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 DUP2 SSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x1 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH1 0x80 SWAP1 SWAP7 ADD MLOAD PUSH4 0xFFFFFFFF SWAP6 DUP7 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR PUSH5 0x100000000 PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND MUL OR PUSH32 0xFFFFFFFFFFFFFFFF000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF AND PUSH13 0x1000000000000000000000000 SWAP2 SWAP1 SWAP7 AND MUL PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP5 SWAP1 SWAP5 OR PUSH1 0x1 PUSH1 0xA0 SHL SWAP5 DUP5 AND SWAP5 SWAP1 SWAP5 MUL SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP3 SSTORE SWAP1 DUP5 ADD MLOAD PUSH2 0xE18 SWAP2 DUP4 SWAP2 SWAP1 PUSH2 0x11AE AND JUMP JUMPDEST DUP1 MLOAD PUSH2 0x203 DUP1 SLOAD PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH1 0x40 SWAP6 DUP7 ADD MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP3 DUP3 AND PUSH5 0x100000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000 SWAP1 SWAP6 AND SWAP7 DUP3 AND SWAP7 SWAP1 SWAP7 OR SWAP4 SWAP1 SWAP4 OR AND SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP2 SSTORE SWAP1 DUP6 ADD MLOAD SWAP2 MLOAD SWAP2 AND SWAP1 PUSH32 0xC6F337E5507FD1BDEBC6D79ED14168145E8C109D7B7139459692E24F06BAED17 SWAP1 PUSH2 0xED6 SWAP1 DUP7 SWAP1 PUSH2 0x1533 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH1 0x20 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH1 0x3 SWAP1 PUSH2 0x66F SWAP1 DUP5 SWAP1 PUSH2 0x107E JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF8B DUP4 DUP4 PUSH2 0x107E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x101B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1089 DUP4 PUSH2 0x1299 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x10A5 JUMPI POP DUP3 PUSH1 0x0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x10F1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6675747572652D647261770000000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x0 SWAP1 PUSH2 0x1101 SWAP1 DUP5 SWAP1 PUSH2 0x15E0 JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x1162 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F657870697265642D6472617700000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1182 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x12C1 JUMP JUMPDEST SWAP1 POP PUSH2 0x11A5 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x12EF JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x11D4 DUP4 PUSH2 0x1299 JUMP JUMPDEST ISZERO DUP1 PUSH2 0x11F7 JUMPI POP DUP3 MLOAD PUSH2 0x11E8 SWAP1 PUSH1 0x1 PUSH2 0x15A1 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND EQ JUMPDEST PUSH2 0x1243 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6D7573742D62652D636F6E7469670000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1278 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x1307 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x0 EQ DUP1 ISZERO PUSH2 0x12BA JUMPI POP DUP2 MLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x12D0 JUMPI POP PUSH1 0x0 PUSH2 0x580 JUMP JUMPDEST PUSH2 0xF8B PUSH1 0x1 PUSH2 0x12DF DUP5 DUP7 PUSH2 0x1589 JUMP JUMPDEST PUSH2 0x12E9 SWAP2 SWAP1 PUSH2 0x15C9 JUMP JUMPDEST DUP4 PUSH2 0x1317 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12FF DUP4 PUSH2 0x12DF DUP5 DUP8 PUSH2 0x1589 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF8B PUSH2 0x12E9 DUP5 PUSH1 0x1 PUSH2 0x1589 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF8B DUP3 DUP5 PUSH2 0x1620 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x329 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x329 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1361 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xF8B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x138B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x13A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x13B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x13C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x13DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x13FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1430 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE DUP3 CALLDATALOAD DUP2 MSTORE PUSH2 0x1443 PUSH1 0x20 DUP5 ADD PUSH2 0x1323 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1454 PUSH1 0x40 DUP5 ADD PUSH2 0x1337 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x1465 PUSH1 0x60 DUP5 ADD PUSH2 0x1337 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x1476 PUSH1 0x80 DUP5 ADD PUSH2 0x1323 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1494 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF8B DUP3 PUSH2 0x1323 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1527 JUMPI PUSH2 0x1514 DUP4 DUP6 MLOAD DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH1 0xA0 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x14B9 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD PUSH2 0x580 DUP3 DUP5 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x159C JUMPI PUSH2 0x159C PUSH2 0x1642 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x15C0 JUMPI PUSH2 0x15C0 PUSH2 0x1642 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x15DB JUMPI PUSH2 0x15DB PUSH2 0x1642 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x15FD JUMPI PUSH2 0x15FD PUSH2 0x1642 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1619 JUMPI PUSH2 0x1619 PUSH2 0x1642 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x163D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDE CODECOPY DUP10 CALLCODE 0x4F PUSH21 0x3130E6078CEB70BA2C1A1B73F24DF2547750CB1158 PUSH15 0xFC5D00F764736F6C63430008060033 ",
              "sourceMap": "1184:4988:30:-:0;;;1825:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1881:6;1648:24:22;1881:6:30;1648:9:22;:24::i;:::-;-1:-1:-1;1899:14:30::1;:41:::0;;-1:-1:-1;;;;1899:41:30::1;;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;1184:4988:30;;3470:174:22;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;;;;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:448:84:-;91:6;99;152:2;140:9;131:7;127:23;123:32;120:2;;;168:1;165;158:12;120:2;194:16;;-1:-1:-1;;;;;239:31:84;;229:42;;219:2;;285:1;282;275:12;219:2;358;343:18;;337:25;308:5;;-1:-1:-1;406:4:84;393:18;;381:31;;371:2;;426:1;423;416:12;371:2;449:7;439:17;;;110:352;;;;;:::o;:::-;1184:4988:30;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@MAX_CARDINALITY_6186": {
                  "entryPoint": null,
                  "id": 6186,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_drawIdToDrawIndex_6477": {
                  "entryPoint": 3967,
                  "id": 6477,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_getNewestDraw_6496": {
                  "entryPoint": 3815,
                  "id": 6496,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_pushDraw_6537": {
                  "entryPoint": 3301,
                  "id": 6537,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setManager_3896": {
                  "entryPoint": 3986,
                  "id": 3896,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_4058": {
                  "entryPoint": 3874,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_4038": {
                  "entryPoint": 931,
                  "id": 4038,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getBufferCardinality_6225": {
                  "entryPoint": null,
                  "id": 6225,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDrawCount_6347": {
                  "entryPoint": 1782,
                  "id": 6347,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDraw_6243": {
                  "entryPoint": 1531,
                  "id": 6243,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getDraws_6305": {
                  "entryPoint": 1944,
                  "id": 6305,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getIndex_12353": {
                  "entryPoint": 4222,
                  "id": 12353,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getNewestDraw_6360": {
                  "entryPoint": 814,
                  "id": 6360,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getOldestDraw_6400": {
                  "entryPoint": 1073,
                  "id": 6400,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isInitialized_12246": {
                  "entryPoint": 4761,
                  "id": 12246,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@manager_3850": {
                  "entryPoint": null,
                  "id": 3850,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@newestIndex_12830": {
                  "entryPoint": 4801,
                  "id": 12830,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nextIndex_12848": {
                  "entryPoint": 4871,
                  "id": 12848,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@offset_12803": {
                  "entryPoint": 4847,
                  "id": 12803,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@owner_3970": {
                  "entryPoint": null,
                  "id": 3970,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3979": {
                  "entryPoint": null,
                  "id": 3979,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pushDraw_6417": {
                  "entryPoint": 611,
                  "id": 6417,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@push_12290": {
                  "entryPoint": 4526,
                  "id": 12290,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@renounceOwnership_3993": {
                  "entryPoint": 1414,
                  "id": 3993,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setDraw_6460": {
                  "entryPoint": 2492,
                  "id": 6460,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setManager_3865": {
                  "entryPoint": 2376,
                  "id": 3865,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@transferOwnership_4020": {
                  "entryPoint": 2985,
                  "id": 4020,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@wrap_12781": {
                  "entryPoint": 4887,
                  "id": 12781,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 4943,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr": {
                  "entryPoint": 4984,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_struct$_Draw_$11085_memory_ptr": {
                  "entryPoint": 5101,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32": {
                  "entryPoint": 5250,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint32": {
                  "entryPoint": 4899,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint64": {
                  "entryPoint": 4919,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_struct_Draw": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5277,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Draw_$11085_memory_ptr__to_t_struct$_Draw_$11085_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5427,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 5513,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint32": {
                  "entryPoint": 5537,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 5577,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 5600,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 5637,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "mod_t_uint256": {
                  "entryPoint": 5664,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 5698,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 5720,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 5742,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:9351:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "62:115:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "72:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "94:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "81:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "81:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "72:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "155:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "164:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "167:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "157:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "157:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "157:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "123:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "134:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "141:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "130:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "130:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "120:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "120:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "113:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "113:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "110:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "41:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "52:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:163:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "230:123:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "262:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "249:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "249:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "291:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "302:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "309:18:84",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "298:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "298:30:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "288:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "288:41:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "281:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "281:49:84"
                              },
                              "nodeType": "YulIf",
                              "src": "278:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "209:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "220:5:84",
                            "type": ""
                          }
                        ],
                        "src": "182:171:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "428:239:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "474:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "483:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "486:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "476:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "476:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "476:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "449:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "458:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "445:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "445:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "470:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "441:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "441:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "438:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "499:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "525:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "512:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "512:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "503:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "621:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "630:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "633:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "623:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "623:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "623:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "557:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "568:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "575:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "564:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "564:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "554:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "554:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "547:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "547:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "544:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "646:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "656:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "646:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "394:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "405:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "417:6:84",
                            "type": ""
                          }
                        ],
                        "src": "358:309:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "776:510:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "822:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "831:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "834:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "797:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "806:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "793:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "793:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "818:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "789:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "789:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "786:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "847:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "874:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "861:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "861:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "851:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "893:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "903:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "897:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "948:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "957:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "960:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "950:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "950:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "950:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "936:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "944:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "933:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "933:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "930:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "973:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "987:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "998:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "983:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "983:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "977:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1053:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1062:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1065:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1055:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1055:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1055:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1032:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1036:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1028:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1028:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1043:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1024:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1024:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1017:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1017:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1014:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1078:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1105:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1092:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1092:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1082:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1135:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1144:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1147:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1137:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1137:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1137:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1123:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1131:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1120:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1120:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1117:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1209:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1218:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1221:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1211:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1211:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1211:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1174:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1182:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1185:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1178:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1178:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1170:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1170:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1195:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1166:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1166:32:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1200:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1163:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1163:45:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1160:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1234:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1248:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1252:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1244:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1244:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1234:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1264:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1274:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1264:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "734:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "745:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "757:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "765:6:84",
                            "type": ""
                          }
                        ],
                        "src": "672:614:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1384:785:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1431:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1440:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1443:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1433:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1433:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1433:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1405:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1414:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1401:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1401:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1426:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1397:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1397:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1394:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1456:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1476:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1470:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1470:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1460:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1488:34:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1510:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1518:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1506:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1506:16:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1492:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1605:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1626:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1629:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1619:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1619:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1619:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1727:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1730:4:84",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1720:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1720:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1720:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1755:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1758:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1748:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1748:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1748:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1540:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1552:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1537:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1537:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1576:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1588:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1573:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1573:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "1534:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1534:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1531:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1789:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1793:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1782:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1782:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1782:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1820:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1841:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "1828:12:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1828:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1813:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1813:39:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1813:39:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1872:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1880:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1868:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1868:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1907:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1918:2:84",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1903:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1903:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "1885:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1885:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1861:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1861:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1861:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1943:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1951:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1939:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1939:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1978:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1989:2:84",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1974:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1974:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "1956:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1956:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1932:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1932:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1932:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2014:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2022:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2010:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2010:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2049:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2060:2:84",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2045:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2045:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "2027:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2027:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2003:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2003:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2003:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2085:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2093:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2081:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2081:16:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2121:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2132:3:84",
                                            "type": "",
                                            "value": "128"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2117:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2117:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2099:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2099:38:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2074:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2074:64:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2074:64:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2147:16:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "2157:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2147:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Draw_$11085_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1350:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1361:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1373:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1291:878:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2243:115:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2289:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2298:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2301:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2291:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2291:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2291:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2264:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2273:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2260:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2260:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2285:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2256:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2256:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2253:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2314:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2342:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2324:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2324:28:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2314:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2209:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2220:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2232:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2174:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2411:453:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2428:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2439:5:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "2433:5:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2433:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2421:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2421:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2421:25:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2455:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2485:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2492:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2481:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2481:16:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2475:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2475:23:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "2459:12:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2507:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2517:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2511:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2547:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2552:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2543:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2543:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2563:12:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2577:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2559:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2559:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2536:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2536:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2536:45:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2590:45:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2622:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2629:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2618:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2618:16:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2612:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2612:23:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2594:14:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2644:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2654:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2648:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2692:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2697:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2688:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2688:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2708:14:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2724:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2704:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2704:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2681:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2681:47:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2681:47:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2748:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2753:4:84",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2744:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2744:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2774:5:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2781:4:84",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2770:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2770:16:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2764:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2764:23:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2789:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2760:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2760:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2737:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2737:56:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2737:56:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2813:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2818:4:84",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2809:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2809:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2839:5:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2846:4:84",
                                                "type": "",
                                                "value": "0x80"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2835:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2835:16:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2829:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2829:23:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2854:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2825:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2825:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2802:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2802:56:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2802:56:84"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_Draw",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2395:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2402:3:84",
                            "type": ""
                          }
                        ],
                        "src": "2363:501:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2970:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2980:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2992:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3003:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2988:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2988:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2980:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3022:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3037:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3045:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3033:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3033:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3015:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3015:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3015:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2939:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2950:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2961:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2869:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3297:499:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3307:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3317:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3311:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3328:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3346:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3357:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3342:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3342:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3332:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3376:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3387:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3369:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3369:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3369:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3399:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "3410:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "3403:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3425:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3445:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3439:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3439:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3429:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3468:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3476:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3461:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3461:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3461:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3492:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3503:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3514:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3499:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3499:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "3492:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3526:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3544:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3552:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3540:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3540:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3530:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3564:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3573:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3568:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3632:138:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "3675:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3669:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3669:13:84"
                                        },
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "3684:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_struct_Draw",
                                        "nodeType": "YulIdentifier",
                                        "src": "3646:22:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3646:42:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3646:42:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3701:21:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "3712:3:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3717:4:84",
                                          "type": "",
                                          "value": "0xa0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3708:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3708:14:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3701:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3735:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "3749:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3757:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3745:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3745:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3735:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3594:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3597:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3591:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3591:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3605:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3607:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3616:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3619:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3612:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3612:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3607:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3587:3:84",
                                "statements": []
                              },
                              "src": "3583:187:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3779:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "3787:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3779:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3266:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3277:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3288:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3100:696:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3896:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3906:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3918:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3929:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3914:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3914:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3906:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3948:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "3973:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "3966:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3966:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "3959:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3959:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3941:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3941:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3941:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3865:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3876:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3887:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3801:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4167:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4184:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4195:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4177:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4177:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4177:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4218:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4229:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4214:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4214:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4234:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4207:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4207:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4207:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4257:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4268:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4253:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4253:18:84"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4273:34:84",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4246:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4246:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4246:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4328:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4339:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4324:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4324:18:84"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4344:5:84",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4317:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4317:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4317:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4359:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4371:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4382:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4367:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4367:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4359:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4144:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4158:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3993:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4571:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4588:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4599:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4581:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4581:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4581:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4622:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4633:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4618:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4618:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4638:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4611:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4611:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4611:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4661:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4672:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4657:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4657:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4677:26:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4650:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4650:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4650:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4713:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4725:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4736:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4721:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4721:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4713:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4548:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4562:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4397:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4924:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4941:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4952:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4934:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4934:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4934:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4975:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4986:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4971:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4971:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4991:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4964:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4964:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4964:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5014:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5025:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5010:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5010:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5030:33:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5003:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5003:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5003:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5073:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5085:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5096:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5081:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5081:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5073:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4901:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4915:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4750:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5284:165:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5301:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5312:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5294:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5294:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5294:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5335:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5346:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5331:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5331:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5351:2:84",
                                    "type": "",
                                    "value": "15"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5324:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5324:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5324:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5374:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5385:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5370:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5370:18:84"
                                  },
                                  {
                                    "hexValue": "4452422f6675747572652d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5390:17:84",
                                    "type": "",
                                    "value": "DRB/future-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5363:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5363:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5363:45:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5417:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5429:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5440:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5425:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5425:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5417:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5261:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5275:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5110:339:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5628:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5645:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5656:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5638:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5638:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5638:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5679:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5690:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5675:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5675:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5695:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5668:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5668:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5668:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5718:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5729:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5714:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5714:18:84"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5734:34:84",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5707:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5707:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5707:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5789:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5800:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5785:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5785:18:84"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5805:8:84",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5778:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5778:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5778:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5823:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5835:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5846:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5831:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5831:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5823:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5605:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5619:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5454:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6035:166:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6052:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6063:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6045:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6045:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6045:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6086:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6097:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6082:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6082:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6102:2:84",
                                    "type": "",
                                    "value": "16"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6075:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6075:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6075:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6125:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6136:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6121:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6121:18:84"
                                  },
                                  {
                                    "hexValue": "4452422f657870697265642d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6141:18:84",
                                    "type": "",
                                    "value": "DRB/expired-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6114:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6114:46:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6169:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6181:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6192:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6177:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6177:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6169:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6012:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6026:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5861:340:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6380:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6397:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6408:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6390:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6390:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6390:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6431:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6442:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6427:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6427:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6447:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6420:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6420:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6420:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6470:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6481:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6466:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6466:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6486:34:84",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6459:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6459:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6459:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6541:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6552:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6537:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6537:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6557:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6530:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6530:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6530:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6574:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6586:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6597:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6582:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6582:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6574:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6357:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6371:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6206:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6786:168:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6803:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6814:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6796:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6796:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6796:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6837:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6848:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6833:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6833:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6853:2:84",
                                    "type": "",
                                    "value": "18"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6826:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6826:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6826:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6876:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6887:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6872:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6872:18:84"
                                  },
                                  {
                                    "hexValue": "4452422f6d7573742d62652d636f6e746967",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6892:20:84",
                                    "type": "",
                                    "value": "DRB/must-be-contig"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6865:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6865:48:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6865:48:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6922:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6934:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6945:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6930:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6930:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6922:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6763:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6777:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6612:342:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7106:93:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7116:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7128:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7139:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7124:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7124:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7116:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7175:6:84"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7183:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Draw",
                                  "nodeType": "YulIdentifier",
                                  "src": "7152:22:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7152:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7152:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$11085_memory_ptr__to_t_struct$_Draw_$11085_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7075:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7086:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7097:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6959:240:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7303:89:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7313:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7325:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7336:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7321:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7321:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7313:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7355:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7370:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7378:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7366:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7366:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7348:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7348:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7348:38:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7272:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7283:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7294:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7204:188:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7496:93:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7506:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7518:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7529:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7514:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7514:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7506:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7548:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7563:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7571:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7559:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7559:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7541:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7541:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7541:42:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7465:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7476:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7487:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7397:192:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7642:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7669:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7671:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7671:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7671:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7658:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "7665:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "7661:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7661:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7655:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7655:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7652:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7700:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7711:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7714:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7707:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7707:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7700:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7625:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7628:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7634:3:84",
                            "type": ""
                          }
                        ],
                        "src": "7594:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7774:181:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7784:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7794:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7788:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7813:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7828:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7831:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7824:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7824:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7817:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7843:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7858:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7861:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7854:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7854:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7847:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7898:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7900:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7900:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7900:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7879:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7888:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7892:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7884:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7884:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7876:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7876:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7873:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7929:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7940:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7945:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7936:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7936:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7929:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7757:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7760:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7766:3:84",
                            "type": ""
                          }
                        ],
                        "src": "7727:228:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8009:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8031:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8033:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8033:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8033:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8025:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8028:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8022:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8022:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8019:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8062:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8074:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8077:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8070:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8070:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8062:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7991:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7994:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "8000:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7960:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8138:173:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8148:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8158:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8152:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8177:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8192:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8195:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8188:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8188:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8181:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8207:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8222:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8225:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8218:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8218:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8211:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8253:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8255:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8255:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8255:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8243:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8248:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8240:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8240:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8237:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8284:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8296:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8301:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8292:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8292:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8284:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8120:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8123:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "8129:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8090:221:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8363:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8454:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8456:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8456:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8456:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "8379:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8386:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "8376:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8376:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8373:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8485:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "8496:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8503:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8492:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8492:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "8485:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "8345:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "8355:3:84",
                            "type": ""
                          }
                        ],
                        "src": "8316:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8554:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8585:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8606:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8609:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8599:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8599:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8599:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8707:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8710:4:84",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8700:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8700:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8700:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8735:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8738:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "8728:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8728:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8728:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8574:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8567:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8567:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8564:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8762:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8771:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8774:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "8767:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8767:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "8762:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8539:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8542:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "8548:1:84",
                            "type": ""
                          }
                        ],
                        "src": "8516:266:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8819:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8836:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8839:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8829:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8829:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8829:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8933:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8936:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8926:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8926:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8926:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8957:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8960:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "8950:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8950:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8950:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "8787:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9008:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9025:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9028:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9018:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9018:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9018:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9122:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9125:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9115:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9115:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9115:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9146:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9149:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9139:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9139:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9139:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "8976:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9197:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9214:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9217:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9207:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9207:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9207:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9311:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9314:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9304:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9304:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9304:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9335:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9338:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9328:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9328:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9328:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9165:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint64(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_2, 32)\n        value1 := length\n    }\n    function abi_decode_tuple_t_struct$_Draw_$11085_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, 160)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n        mstore(memPtr, calldataload(headStart))\n        mstore(add(memPtr, 32), abi_decode_uint32(add(headStart, 32)))\n        mstore(add(memPtr, 64), abi_decode_uint64(add(headStart, 64)))\n        mstore(add(memPtr, 96), abi_decode_uint64(add(headStart, 96)))\n        mstore(add(memPtr, 128), abi_decode_uint32(add(headStart, 128)))\n        value0 := memPtr\n    }\n    function abi_decode_tuple_t_uint32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint32(headStart)\n    }\n    function abi_encode_struct_Draw(value, pos)\n    {\n        mstore(pos, mload(value))\n        let memberValue0 := mload(add(value, 0x20))\n        let _1 := 0xffffffff\n        mstore(add(pos, 0x20), and(memberValue0, _1))\n        let memberValue0_1 := mload(add(value, 0x40))\n        let _2 := 0xffffffffffffffff\n        mstore(add(pos, 0x40), and(memberValue0_1, _2))\n        mstore(add(pos, 0x60), and(mload(add(value, 0x60)), _2))\n        mstore(add(pos, 0x80), and(mload(add(value, 0x80)), _1))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            abi_encode_struct_Draw(mload(srcPtr), pos)\n            pos := add(pos, 0xa0)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 15)\n        mstore(add(headStart, 64), \"DRB/future-draw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 16)\n        mstore(add(headStart, 64), \"DRB/expired-draw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 18)\n        mstore(add(headStart, 64), \"DRB/must-be-contig\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_Draw_$11085_memory_ptr__to_t_struct$_Draw_$11085_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        abi_encode_struct_Draw(value0, headStart)\n    }\n    function abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffff))\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint32(x, y) -> sum\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063d0ebdbe711610066578063d0ebdbe714610209578063d7bcb86b1461022c578063e30c39781461023f578063f2fde38b1461025057600080fd5b80638da5cb5b146101b5578063c4df5fed146101c6578063caeef7ec146101ce578063d0bb78f3146101e957600080fd5b8063648b1b4f116100d3578063648b1b4f14610176578063715018a61461017e5780638200d8731461018657806383c34aaf146101a257600080fd5b8063089eb925146101055780630edb1d2e14610132578063481c6a75146101475780634e71e0c81461016c575b600080fd5b6101186101133660046113ed565b610263565b60405163ffffffff90911681526020015b60405180910390f35b61013a61032e565b6040516101299190611533565b6002546001600160a01b03165b6040516001600160a01b039091168152602001610129565b6101746103a3565b005b61013a610431565b610174610586565b61018f61010081565b60405161ffff9091168152602001610129565b61013a6101b0366004611482565b6105fb565b6000546001600160a01b0316610154565b6101186106f6565b6102035468010000000000000000900463ffffffff16610118565b6101fc6101f7366004611378565b610798565b604051610129919061149d565b61021c61021736600461134f565b610948565b6040519015158152602001610129565b61011861023a3660046113ed565b6109bc565b6001546001600160a01b0316610154565b61017461025e36600461134f565b610ba9565b6000336102786002546001600160a01b031690565b6001600160a01b031614806102a657503361029b6000546001600160a01b031690565b6001600160a01b0316145b61031d5760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61032682610ce5565b90505b919050565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915261039e90610ee7565b905090565b6001546001600160a01b031633146103fd5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610314565b600154610412906001600160a01b0316610f22565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084018190526801000000000000000090920416928201929092529060009060039061010081106104b2576104b2611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff640100000000830481169484018590526c010000000000000000000000008304166060840152600160a01b909104166080820152915061058057506040805160a081018252600354815260045463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b900490911660808201525b92915050565b336105996000546001600160a01b031690565b6001600160a01b0316146105ef5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b6105f96000610f22565b565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915260039061066f9084610f7f565b63ffffffff16610100811061068657610686611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b9004909116608082015292915050565b604080516060810182526102035463ffffffff80821680845264010000000083048216602085015268010000000000000000909204169282019290925260009161074257600091505090565b6020810151600363ffffffff8216610100811061076157610761611658565b6002020160010160049054906101000a900467ffffffffffffffff1667ffffffffffffffff16600014610580575060400151919050565b606060008267ffffffffffffffff8111156107b5576107b561166e565b60405190808252806020026020018201604052801561080e57816020015b6040805160a0810182526000808252602080830182905292820181905260608201819052608082015282526000199092019101816107d35790505b50604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915290915060005b8481101561093e57600361088b8388888581811061087157610871611658565b90506020020160208101906108869190611482565b610f7f565b63ffffffff1661010081106108a2576108a2611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b90049091166080820152835184908390811061092057610920611658565b6020026020010181905250808061093690611605565b915050610851565b5090949350505050565b60003361095d6000546001600160a01b031690565b6001600160a01b0316146109b35760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b61032682610f92565b6000336109d16000546001600160a01b031690565b6001600160a01b031614610a275760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b604080516060810182526102035463ffffffff808216835264010000000082048116602080850191909152680100000000000000009092048116938301939093528401519091600091610a7d9184919061107e16565b90508360038263ffffffff166101008110610a9a57610a9a611658565b82516002919091029190910190815560208083015160019092018054604080860151606087015160809097015163ffffffff9687166bffffffffffffffffffffffff199094169390931764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909716027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1695909517600160a01b9185169190910217905586015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610b97908790611533565b60405180910390a25050506020015190565b33610bbc6000546001600160a01b031690565b6001600160a01b031614610c125760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b6001600160a01b038116610c8e5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610314565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b604080516060810182526102035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925260009183906003906101008110610d3c57610d3c611658565b825160029190910291909101908155602080830151600190920180546040850151606086015160809096015163ffffffff9586166bffffffffffffffffffffffff199093169290921764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909616027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1694909417600160a01b948416949094029390931790925590840151610e18918391906111ae16565b8051610203805460208085015160409586015163ffffffff90811668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff928216640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000909516968216969096179390931716939093179091559085015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610ed6908690611533565b60405180910390a250506020015190565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152815160039061066f90849061107e565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610f8b838361107e565b9392505050565b6002546000906001600160a01b0390811690831681141561101b5760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610314565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600061108983611299565b80156110a55750826000015163ffffffff168263ffffffff1611155b6110f15760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d6472617700000000000000000000000000000000006044820152606401610314565b82516000906111019084906115e0565b9050836040015163ffffffff168163ffffffff16106111625760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d64726177000000000000000000000000000000006044820152606401610314565b6000611182856020015163ffffffff16866040015163ffffffff166112c1565b90506111a58163ffffffff168363ffffffff16876040015163ffffffff166112ef565b95945050505050565b60408051606081018252600080825260208201819052918101919091526111d483611299565b15806111f7575082516111e89060016115a1565b63ffffffff168263ffffffff16145b6112435760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e74696700000000000000000000000000006044820152606401610314565b60405180606001604052808363ffffffff168152602001611278856020015163ffffffff16866040015163ffffffff16611307565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156112ba5750815163ffffffff16155b1592915050565b6000816112d057506000610580565b610f8b60016112df8486611589565b6112e991906115c9565b83611317565b60006112ff836112df8487611589565b949350505050565b6000610f8b6112e9846001611589565b6000610f8b8284611620565b803563ffffffff8116811461032957600080fd5b803567ffffffffffffffff8116811461032957600080fd5b60006020828403121561136157600080fd5b81356001600160a01b0381168114610f8b57600080fd5b6000806020838503121561138b57600080fd5b823567ffffffffffffffff808211156113a357600080fd5b818501915085601f8301126113b757600080fd5b8135818111156113c657600080fd5b8660208260051b85010111156113db57600080fd5b60209290920196919550909350505050565b600060a082840312156113ff57600080fd5b60405160a0810181811067ffffffffffffffff8211171561143057634e487b7160e01b600052604160045260246000fd5b6040528235815261144360208401611323565b602082015261145460408401611337565b604082015261146560608401611337565b606082015261147660808401611323565b60808201529392505050565b60006020828403121561149457600080fd5b610f8b82611323565b6020808252825182820181905260009190848201906040850190845b818110156115275761151483855180518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b9284019260a092909201916001016114b9565b50909695505050505050565b60a08101610580828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b6000821982111561159c5761159c611642565b500190565b600063ffffffff8083168185168083038211156115c0576115c0611642565b01949350505050565b6000828210156115db576115db611642565b500390565b600063ffffffff838116908316818110156115fd576115fd611642565b039392505050565b600060001982141561161957611619611642565b5060010190565b60008261163d57634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220de3989f24f743130e6078ceb70ba2c1a1b73f24df2547750cb11586efc5d00f764736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x100 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x209 JUMPI DUP1 PUSH4 0xD7BCB86B EQ PUSH2 0x22C JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x23F JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x250 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1B5 JUMPI DUP1 PUSH4 0xC4DF5FED EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0xCAEEF7EC EQ PUSH2 0x1CE JUMPI DUP1 PUSH4 0xD0BB78F3 EQ PUSH2 0x1E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x648B1B4F GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x648B1B4F EQ PUSH2 0x176 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x17E JUMPI DUP1 PUSH4 0x8200D873 EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0x83C34AAF EQ PUSH2 0x1A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x89EB925 EQ PUSH2 0x105 JUMPI DUP1 PUSH4 0xEDB1D2E EQ PUSH2 0x132 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x147 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x16C JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x118 PUSH2 0x113 CALLDATASIZE PUSH1 0x4 PUSH2 0x13ED JUMP JUMPDEST PUSH2 0x263 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13A PUSH2 0x32E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x129 SWAP2 SWAP1 PUSH2 0x1533 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x129 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x3A3 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x13A PUSH2 0x431 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x586 JUMP JUMPDEST PUSH2 0x18F PUSH2 0x100 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x129 JUMP JUMPDEST PUSH2 0x13A PUSH2 0x1B0 CALLDATASIZE PUSH1 0x4 PUSH2 0x1482 JUMP JUMPDEST PUSH2 0x5FB JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x6F6 JUMP JUMPDEST PUSH2 0x203 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x118 JUMP JUMPDEST PUSH2 0x1FC PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1378 JUMP JUMPDEST PUSH2 0x798 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x129 SWAP2 SWAP1 PUSH2 0x149D JUMP JUMPDEST PUSH2 0x21C PUSH2 0x217 CALLDATASIZE PUSH1 0x4 PUSH2 0x134F JUMP JUMPDEST PUSH2 0x948 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x129 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x23A CALLDATASIZE PUSH1 0x4 PUSH2 0x13ED JUMP JUMPDEST PUSH2 0x9BC JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x25E CALLDATASIZE PUSH1 0x4 PUSH2 0x134F JUMP JUMPDEST PUSH2 0xBA9 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x278 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2A6 JUMPI POP CALLER PUSH2 0x29B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x31D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x326 DUP3 PUSH2 0xCE5 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x39E SWAP1 PUSH2 0xEE7 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x3FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x412 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF22 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0x4B2 JUMPI PUSH2 0x4B2 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD DUP6 SWAP1 MSTORE PUSH13 0x1000000000000000000000000 DUP4 DIV AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV AND PUSH1 0x80 DUP3 ADD MSTORE SWAP2 POP PUSH2 0x580 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x3 SLOAD DUP2 MSTORE PUSH1 0x4 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x599 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH2 0x5F9 PUSH1 0x0 PUSH2 0xF22 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x3 SWAP1 PUSH2 0x66F SWAP1 DUP5 PUSH2 0xF7F JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH5 0x100000000 DUP4 DIV DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH2 0x742 JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x3 PUSH4 0xFFFFFFFF DUP3 AND PUSH2 0x100 DUP2 LT PUSH2 0x761 JUMPI PUSH2 0x761 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x2 MUL ADD PUSH1 0x1 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x0 EQ PUSH2 0x580 JUMPI POP PUSH1 0x40 ADD MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7B5 JUMPI PUSH2 0x7B5 PUSH2 0x166E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x80E JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x80 DUP3 ADD MSTORE DUP3 MSTORE PUSH1 0x0 NOT SWAP1 SWAP3 ADD SWAP2 ADD DUP2 PUSH2 0x7D3 JUMPI SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x93E JUMPI PUSH1 0x3 PUSH2 0x88B DUP4 DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x871 JUMPI PUSH2 0x871 PUSH2 0x1658 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x886 SWAP2 SWAP1 PUSH2 0x1482 JUMP JUMPDEST PUSH2 0xF7F JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x8A2 JUMPI PUSH2 0x8A2 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE DUP4 MLOAD DUP5 SWAP1 DUP4 SWAP1 DUP2 LT PUSH2 0x920 JUMPI PUSH2 0x920 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x936 SWAP1 PUSH2 0x1605 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x851 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x95D PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9B3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH2 0x326 DUP3 PUSH2 0xF92 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x9D1 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV DUP2 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE DUP5 ADD MLOAD SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH2 0xA7D SWAP2 DUP5 SWAP2 SWAP1 PUSH2 0x107E AND JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x3 DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0xA9A JUMPI PUSH2 0xA9A PUSH2 0x1658 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x2 SWAP2 SWAP1 SWAP2 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 DUP2 SSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x1 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0x40 DUP1 DUP7 ADD MLOAD PUSH1 0x60 DUP8 ADD MLOAD PUSH1 0x80 SWAP1 SWAP8 ADD MLOAD PUSH4 0xFFFFFFFF SWAP7 DUP8 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR PUSH5 0x100000000 PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND MUL OR PUSH32 0xFFFFFFFFFFFFFFFF000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF AND PUSH13 0x1000000000000000000000000 SWAP2 SWAP1 SWAP8 AND MUL PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP6 SWAP1 SWAP6 OR PUSH1 0x1 PUSH1 0xA0 SHL SWAP2 DUP6 AND SWAP2 SWAP1 SWAP2 MUL OR SWAP1 SSTORE DUP7 ADD MLOAD SWAP2 MLOAD SWAP2 AND SWAP1 PUSH32 0xC6F337E5507FD1BDEBC6D79ED14168145E8C109D7B7139459692E24F06BAED17 SWAP1 PUSH2 0xB97 SWAP1 DUP8 SWAP1 PUSH2 0x1533 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP PUSH1 0x20 ADD MLOAD SWAP1 JUMP JUMPDEST CALLER PUSH2 0xBBC PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC12 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xC8E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0xD3C JUMPI PUSH2 0xD3C PUSH2 0x1658 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x2 SWAP2 SWAP1 SWAP2 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 DUP2 SSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x1 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH1 0x80 SWAP1 SWAP7 ADD MLOAD PUSH4 0xFFFFFFFF SWAP6 DUP7 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR PUSH5 0x100000000 PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND MUL OR PUSH32 0xFFFFFFFFFFFFFFFF000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF AND PUSH13 0x1000000000000000000000000 SWAP2 SWAP1 SWAP7 AND MUL PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP5 SWAP1 SWAP5 OR PUSH1 0x1 PUSH1 0xA0 SHL SWAP5 DUP5 AND SWAP5 SWAP1 SWAP5 MUL SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP3 SSTORE SWAP1 DUP5 ADD MLOAD PUSH2 0xE18 SWAP2 DUP4 SWAP2 SWAP1 PUSH2 0x11AE AND JUMP JUMPDEST DUP1 MLOAD PUSH2 0x203 DUP1 SLOAD PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH1 0x40 SWAP6 DUP7 ADD MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP3 DUP3 AND PUSH5 0x100000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000 SWAP1 SWAP6 AND SWAP7 DUP3 AND SWAP7 SWAP1 SWAP7 OR SWAP4 SWAP1 SWAP4 OR AND SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP2 SSTORE SWAP1 DUP6 ADD MLOAD SWAP2 MLOAD SWAP2 AND SWAP1 PUSH32 0xC6F337E5507FD1BDEBC6D79ED14168145E8C109D7B7139459692E24F06BAED17 SWAP1 PUSH2 0xED6 SWAP1 DUP7 SWAP1 PUSH2 0x1533 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH1 0x20 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH1 0x3 SWAP1 PUSH2 0x66F SWAP1 DUP5 SWAP1 PUSH2 0x107E JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF8B DUP4 DUP4 PUSH2 0x107E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x101B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1089 DUP4 PUSH2 0x1299 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x10A5 JUMPI POP DUP3 PUSH1 0x0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x10F1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6675747572652D647261770000000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x0 SWAP1 PUSH2 0x1101 SWAP1 DUP5 SWAP1 PUSH2 0x15E0 JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x1162 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F657870697265642D6472617700000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1182 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x12C1 JUMP JUMPDEST SWAP1 POP PUSH2 0x11A5 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x12EF JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x11D4 DUP4 PUSH2 0x1299 JUMP JUMPDEST ISZERO DUP1 PUSH2 0x11F7 JUMPI POP DUP3 MLOAD PUSH2 0x11E8 SWAP1 PUSH1 0x1 PUSH2 0x15A1 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND EQ JUMPDEST PUSH2 0x1243 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6D7573742D62652D636F6E7469670000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1278 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x1307 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x0 EQ DUP1 ISZERO PUSH2 0x12BA JUMPI POP DUP2 MLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x12D0 JUMPI POP PUSH1 0x0 PUSH2 0x580 JUMP JUMPDEST PUSH2 0xF8B PUSH1 0x1 PUSH2 0x12DF DUP5 DUP7 PUSH2 0x1589 JUMP JUMPDEST PUSH2 0x12E9 SWAP2 SWAP1 PUSH2 0x15C9 JUMP JUMPDEST DUP4 PUSH2 0x1317 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12FF DUP4 PUSH2 0x12DF DUP5 DUP8 PUSH2 0x1589 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF8B PUSH2 0x12E9 DUP5 PUSH1 0x1 PUSH2 0x1589 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF8B DUP3 DUP5 PUSH2 0x1620 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x329 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x329 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1361 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xF8B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x138B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x13A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x13B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x13C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x13DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x13FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1430 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE DUP3 CALLDATALOAD DUP2 MSTORE PUSH2 0x1443 PUSH1 0x20 DUP5 ADD PUSH2 0x1323 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1454 PUSH1 0x40 DUP5 ADD PUSH2 0x1337 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x1465 PUSH1 0x60 DUP5 ADD PUSH2 0x1337 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x1476 PUSH1 0x80 DUP5 ADD PUSH2 0x1323 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1494 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF8B DUP3 PUSH2 0x1323 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1527 JUMPI PUSH2 0x1514 DUP4 DUP6 MLOAD DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH1 0xA0 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x14B9 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD PUSH2 0x580 DUP3 DUP5 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x159C JUMPI PUSH2 0x159C PUSH2 0x1642 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x15C0 JUMPI PUSH2 0x15C0 PUSH2 0x1642 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x15DB JUMPI PUSH2 0x15DB PUSH2 0x1642 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x15FD JUMPI PUSH2 0x15FD PUSH2 0x1642 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1619 JUMPI PUSH2 0x1619 PUSH2 0x1642 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x163D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDE CODECOPY DUP10 CALLCODE 0x4F PUSH21 0x3130E6078CEB70BA2C1A1B73F24DF2547750CB1158 PUSH15 0xFC5D00F764736F6C63430008060033 ",
              "sourceMap": "1184:4988:30:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4071:179;;;;;;:::i;:::-;;:::i;:::-;;;7571:10:84;7559:23;;;7541:42;;7529:2;7514:18;4071:179:30;;;;;;;;3396:136;;;:::i;:::-;;;;;;;:::i;1403:89:21:-;1477:8;;-1:-1:-1;;;;;1477:8:21;1403:89;;;-1:-1:-1;;;;;3033:55:84;;;3015:74;;3003:2;2988:18;1403:89:21;2970:125:84;3147:129:22;;;:::i;:::-;;3570:463:30;;;:::i;2508:94:22:-;;;:::i;1342:44:30:-;;1383:3;1342:44;;;;;7378:6:84;7366:19;;;7348:38;;7336:2;7321:18;1342:44:30;7303:89:84;2201:171:30;;;;;;:::i;:::-;;:::i;1814:85:22:-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:22;1814:85;;2934:424:30;;;:::i;2041:122::-;2130:14;:26;;;;;;2041:122;;2410:486;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1744:123:21:-;;;;;;:::i;:::-;;:::i;:::-;;;3966:14:84;;3959:22;3941:41;;3929:2;3914:18;1744:123:21;3896:92:84;4288:348:30;;;;;;:::i;:::-;;:::i;2014:101:22:-;2095:13;;-1:-1:-1;;;;;2095:13:22;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;4071:179:30:-;4198:6;2861:10:21;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:21;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:21;;:48;;;-1:-1:-1;2886:10:21;2875:7;1860::22;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;2875:7:21;-1:-1:-1;;;;;2875:21:21;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:21;;5656:2:84;2840:99:21;;;5638:21:84;5695:2;5675:18;;;5668:30;5734:34;5714:18;;;5707:62;5805:8;5785:18;;;5778:36;5831:19;;2840:99:21;;;;;;;;;4227:16:30::1;4237:5;4227:9;:16::i;:::-;4220:23;;2949:1:21;4071:179:30::0;;;:::o;3396:136::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3495:30:30;;;;;;;;3510:14;3495:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:14;:30::i;:::-;3488:37;;3396:136;:::o;3147:129:22:-;4050:13;;-1:-1:-1;;;;;4050:13:22;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:22;;4952:2:84;4028:71:22;;;4934:21:84;4991:2;4971:18;;;4964:30;5030:33;5010:18;;;5003:61;5081:18;;4028:71:22;4924:181:84;4028:71:22;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:22::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:22::1;::::0;;3147:129::o;3570:463:30:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3737:55:30;;;;;;;;3778:14;3737:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:38;;3833:14;;3737:55;3833:32;;;;;;:::i;:::-;3802:63;;;;;;;;3833:32;;;;;;;;;3802:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3802:63:30;;;;;;;;;-1:-1:-1;3876:129:30;;-1:-1:-1;3970:24:30;;;;;;;;3977:14;3970:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3970:24:30;;;;;;;;;3876:129;4022:4;3570:463;-1:-1:-1;;3570:463:30:o;2508:94:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;4599:2:84;3819:58:22;;;4581:21:84;4638:2;4618:18;;;4611:30;4677:26;4657:18;;;4650:54;4721:18;;3819:58:22;4571:174:84;3819:58:22;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2201:171:30:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2322:42:30;;;;;;;;2341:14;2322:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;2307:14;;2322:42;;2357:6;2322:18;:42::i;:::-;2307:58;;;;;;;;;:::i;:::-;2300:65;;;;;;;;2307:58;;;;;;;;;2300:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2300:65:30;;;;;;;;;;2201:171;-1:-1:-1;;2201:171:30:o;2934:424::-;3008:55;;;;;;;;3049:14;3008:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2990:6;;3074:61;;3123:1;3116:8;;;2934:424;:::o;3074:61::-;3170:16;;;;3201:14;:31;;;;;;;;;;:::i;:::-;;;;:41;;;;;;;;;;;;:46;;3246:1;3201:46;3197:155;;-1:-1:-1;3270:18:30;;;;2934:424;-1:-1:-1;2934:424:30:o;2410:486::-;2520:25;2561:31;2618:8;2595:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2595:39:30;;-1:-1:-1;;2595:39:30;;;;;;;;;;;-1:-1:-1;2644:55:30;;;;;;;;2685:14;2644:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;2561:73;;-1:-1:-1;2644:38:30;2710:157;2734:23;;;2710:157;;;2797:14;2812:43;2831:6;2839:8;;2848:5;2839:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;2812:18;:43::i;:::-;2797:59;;;;;;;;;:::i;:::-;2782:74;;;;;;;;2797:59;;;;;;;;;2782:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2782:74:30;;;;;;;;;:12;;:5;;2788;;2782:12;;;;;;:::i;:::-;;;;;;:74;;;;2759:7;;;;;:::i;:::-;;;;2710:157;;;-1:-1:-1;2884:5:30;;2410:486;-1:-1:-1;;;;2410:486:30:o;1744:123:21:-;1813:4;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;4599:2:84;3819:58:22;;;4581:21:84;4638:2;4618:18;;;4611:30;4677:26;4657:18;;;4650:54;4721:18;;3819:58:22;4571:174:84;3819:58:22;1836:24:21::1;1848:11;1836;:24::i;4288:348:30:-:0;4376:6;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;4599:2:84;3819:58:22;;;4581:21:84;4638:2;4618:18;;;4611:30;4677:26;4657:18;;;4650:54;4721:18;;3819:58:22;4571:174:84;3819:58:22;4394:55:30::1;::::0;;::::1;::::0;::::1;::::0;;4435:14:::1;4394:55:::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;;;;;::::1;::::0;::::1;::::0;;;;;;;4490:15;::::1;::::0;4394:55;;:38:::1;::::0;4474:32:::1;::::0;4394:55;;4490:15;4474::::1;:32;:::i;:::-;4459:47;;4540:8;4516:14;4531:5;4516:21;;;;;;;;;:::i;:::-;:32:::0;;:21:::1;::::0;;;::::1;::::0;;;::::1;:32:::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;4516:32:30;;;;;;;;::::1;::::0;;::::1;;;::::0;;;;;;::::1;;::::0;;;;;;-1:-1:-1;;;4516:32:30;;::::1;::::0;;;::::1;;::::0;;4571:15;::::1;::::0;4563:34;;;::::1;::::0;::::1;::::0;::::1;::::0;4571:15;;4563:34:::1;:::i;:::-;;;;;;;;-1:-1:-1::0;;;4614:15:30::1;;::::0;;4288:348::o;2751:234:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;4599:2:84;3819:58:22;;;4581:21:84;4638:2;4618:18;;;4611:30;4677:26;4657:18;;;4650:54;4721:18;;3819:58:22;4571:174:84;3819:58:22;-1:-1:-1;;;;;2834:23:22;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:22;;6408:2:84;2826:73:22::1;::::0;::::1;6390:21:84::0;6447:2;6427:18;;;6420:30;6486:34;6466:18;;;6459:62;6557:7;6537:18;;;6530:35;6582:19;;2826:73:22::1;6380:227:84::0;2826:73:22::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:22::1;-1:-1:-1::0;;;;;2910:25:22;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:22::1;2751:234:::0;:::o;5825:345:30:-;5914:56;;;;;;;;5956:14;5914:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5896:6;;6016:8;;5980:14;;5914:56;5980:33;;;;;;:::i;:::-;:44;;:33;;;;;;;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5980:44:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5980:44:30;;;;;;;;;;;;;;6064:15;;;;6051:29;;:7;;6064:15;6051:12;:29;:::i;:::-;6034:46;;:14;:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6104:15;;;;6096:34;;;;;;;;;6104:8;;6096:34;:::i;:::-;;;;;;;;-1:-1:-1;;6148:15:30;;;;5825:345::o;5384:217::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5574:18:30;;5542:14;;5557:36;;5574:7;;5557:16;:36::i;3470:174:22:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;4960:193:30:-;5092:6;5121:25;:7;5138;5121:16;:25::i;:::-;5114:32;4960:193;-1:-1:-1;;;4960:193:30:o;2109:326:21:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:21;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:21;;4195:2:84;2230:79:21;;;4177:21:84;4234:2;4214:18;;;4207:30;4273:34;4253:18;;;4246:62;4344:5;4324:18;;;4317:33;4367:19;;2230:79:21;4167:225:84;2230:79:21;2320:8;:22;;-1:-1:-1;;2320:22:21;-1:-1:-1;;;;;2320:22:21;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:21;-1:-1:-1;2424:4:21;;2109:326;-1:-1:-1;;2109:326:21:o;1587:517:52:-;1667:6;1693:22;1707:7;1693:13;:22::i;:::-;:55;;;;;1730:7;:18;;;1719:29;;:7;:29;;;;1693:55;1685:83;;;;-1:-1:-1;;;1685:83:52;;5312:2:84;1685:83:52;;;5294:21:84;5351:2;5331:18;;;5324:30;5390:17;5370:18;;;5363:45;5425:18;;1685:83:52;5284:165:84;1685:83:52;1800:18;;1779;;1800:28;;1821:7;;1800:28;:::i;:::-;1779:49;;1860:7;:19;;;1846:33;;:11;:33;;;1838:62;;;;-1:-1:-1;;;1838:62:52;;6063:2:84;1838:62:52;;;6045:21:84;6102:2;6082:18;;;6075:30;6141:18;6121;;;6114:46;6177:18;;1838:62:52;6035:166:84;1838:62:52;1911:18;1932:65;1958:7;:17;;;1932:65;;1977:7;:19;;;1932:65;;:25;:65::i;:::-;1911:86;;2022:74;2050:10;2022:74;;2063:11;2022:74;;2076:7;:19;;;2022:74;;:20;:74::i;:::-;2008:89;1587:517;-1:-1:-1;;;;;1587:517:52:o;919:438::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;1029:22:52;1043:7;1029:13;:22::i;:::-;1028:23;:60;;;-1:-1:-1;1066:18:52;;:22;;1087:1;1066:22;:::i;:::-;1055:33;;:7;:33;;;1028:60;1020:91;;;;-1:-1:-1;;;1020:91:52;;6814:2:84;1020:91:52;;;6796:21:84;6853:2;6833:18;;;6826:30;6892:20;6872:18;;;6865:48;6930:18;;1020:91:52;6786:168:84;1020:91:52;1141:209;;;;;;;;1178:7;1141:209;;;;;;1221:63;1245:7;:17;;;1221:63;;1264:7;:19;;;1221:63;;:23;:63::i;:::-;1141:209;;;;;;1316:7;:19;;;1141:209;;;;;1122:228;;919:438;;;;:::o;598:151::-;667:4;692:7;:17;;;:22;;713:1;692:22;:49;;;;-1:-1:-1;718:18:52;;:23;;;692:49;690:52;;598:151;-1:-1:-1;;598:151:52:o;1666:262:56:-;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:56;1836:8;;1799:56;1872:49;1905:1;1877:25;1890:12;1877:10;:25;:::i;:::-;:29;;;;:::i;:::-;1908:12;1872:4;:49::i;1186:208::-;1310:7;1336:51;1365:7;1341:21;1350:12;1341:6;:21;:::i;1336:51::-;1329:58;1186:208;-1:-1:-1;;;;1186:208:56:o;2263:171::-;2367:7;2397:30;2402:10;:6;2411:1;2402:10;:::i;580:129::-;655:7;681:21;690:12;681:6;:21;:::i;14:163:84:-;81:20;;141:10;130:22;;120:33;;110:2;;167:1;164;157:12;182:171;249:20;;309:18;298:30;;288:41;;278:2;;343:1;340;333:12;358:309;417:6;470:2;458:9;449:7;445:23;441:32;438:2;;;486:1;483;476:12;438:2;525:9;512:23;-1:-1:-1;;;;;568:5:84;564:54;557:5;554:65;544:2;;633:1;630;623:12;672:614;757:6;765;818:2;806:9;797:7;793:23;789:32;786:2;;;834:1;831;824:12;786:2;874:9;861:23;903:18;944:2;936:6;933:14;930:2;;;960:1;957;950:12;930:2;998:6;987:9;983:22;973:32;;1043:7;1036:4;1032:2;1028:13;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105;1092:16;1131:2;1123:6;1120:14;1117:2;;;1147:1;1144;1137:12;1117:2;1200:7;1195:2;1185:6;1182:1;1178:14;1174:2;1170:23;1166:32;1163:45;1160:2;;;1221:1;1218;1211:12;1160:2;1252;1244:11;;;;;1274:6;;-1:-1:-1;776:510:84;;-1:-1:-1;;;;776:510:84:o;1291:878::-;1373:6;1426:3;1414:9;1405:7;1401:23;1397:33;1394:2;;;1443:1;1440;1433:12;1394:2;1476;1470:9;1518:3;1510:6;1506:16;1588:6;1576:10;1573:22;1552:18;1540:10;1537:34;1534:62;1531:2;;;-1:-1:-1;;;1626:1:84;1619:88;1730:4;1727:1;1720:15;1758:4;1755:1;1748:15;1531:2;1789;1782:22;1828:23;;1813:39;;1885:37;1918:2;1903:18;;1885:37;:::i;:::-;1880:2;1872:6;1868:15;1861:62;1956:37;1989:2;1978:9;1974:18;1956:37;:::i;:::-;1951:2;1943:6;1939:15;1932:62;2027:37;2060:2;2049:9;2045:18;2027:37;:::i;:::-;2022:2;2014:6;2010:15;2003:62;2099:38;2132:3;2121:9;2117:19;2099:38;:::i;:::-;2093:3;2081:16;;2074:64;2085:6;1384:785;-1:-1:-1;;;1384:785:84:o;2174:184::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:2;;;2301:1;2298;2291:12;2253:2;2324:28;2342:9;2324:28;:::i;3100:696::-;3317:2;3369:21;;;3439:13;;3342:18;;;3461:22;;;3288:4;;3317:2;3540:15;;;;3514:2;3499:18;;;3288:4;3583:187;3597:6;3594:1;3591:13;3583:187;;;3646:42;3684:3;3675:6;3669:13;2439:5;2433:12;2428:3;2421:25;2492:4;2485:5;2481:16;2475:23;2517:10;2577:2;2563:12;2559:21;2552:4;2547:3;2543:14;2536:45;2629:4;2622:5;2618:16;2612:23;2590:45;;2654:18;2724:2;2708:14;2704:23;2697:4;2692:3;2688:14;2681:47;2789:2;2781:4;2774:5;2770:16;2764:23;2760:32;2753:4;2748:3;2744:14;2737:56;;2854:2;2846:4;2839:5;2835:16;2829:23;2825:32;2818:4;2813:3;2809:14;2802:56;;;2411:453;;;3646:42;3745:15;;;;3717:4;3708:14;;;;;3619:1;3612:9;3583:187;;;-1:-1:-1;3787:3:84;;3297:499;-1:-1:-1;;;;;;3297:499:84:o;6959:240::-;7139:3;7124:19;;7152:41;7128:9;7175:6;2439:5;2433:12;2428:3;2421:25;2492:4;2485:5;2481:16;2475:23;2517:10;2577:2;2563:12;2559:21;2552:4;2547:3;2543:14;2536:45;2629:4;2622:5;2618:16;2612:23;2590:45;;2654:18;2724:2;2708:14;2704:23;2697:4;2692:3;2688:14;2681:47;2789:2;2781:4;2774:5;2770:16;2764:23;2760:32;2753:4;2748:3;2744:14;2737:56;;2854:2;2846:4;2839:5;2835:16;2829:23;2825:32;2818:4;2813:3;2809:14;2802:56;;;2411:453;;;7594:128;7634:3;7665:1;7661:6;7658:1;7655:13;7652:2;;;7671:18;;:::i;:::-;-1:-1:-1;7707:9:84;;7642:80::o;7727:228::-;7766:3;7794:10;7831:2;7828:1;7824:10;7861:2;7858:1;7854:10;7892:3;7888:2;7884:12;7879:3;7876:21;7873:2;;;7900:18;;:::i;:::-;7936:13;;7774:181;-1:-1:-1;;;;7774:181:84:o;7960:125::-;8000:4;8028:1;8025;8022:8;8019:2;;;8033:18;;:::i;:::-;-1:-1:-1;8070:9:84;;8009:76::o;8090:221::-;8129:4;8158:10;8218;;;;8188;;8240:12;;;8237:2;;;8255:18;;:::i;:::-;8292:13;;8138:173;-1:-1:-1;;;8138:173:84:o;8316:195::-;8355:3;-1:-1:-1;;8379:5:84;8376:77;8373:2;;;8456:18;;:::i;:::-;-1:-1:-1;8503:1:84;8492:13;;8363:148::o;8516:266::-;8548:1;8574;8564:2;;-1:-1:-1;;;8606:1:84;8599:88;8710:4;8707:1;8700:15;8738:4;8735:1;8728:15;8564:2;-1:-1:-1;8767:9:84;;8554:228::o;8787:184::-;-1:-1:-1;;;8836:1:84;8829:88;8936:4;8933:1;8926:15;8960:4;8957:1;8950:15;8976:184;-1:-1:-1;;;9025:1:84;9018:88;9125:4;9122:1;9115:15;9149:4;9146:1;9139:15;9165:184;-1:-1:-1;;;9214:1:84;9207:88;9314:4;9311:1;9304:15;9338:4;9335:1;9328:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1163600",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "MAX_CARDINALITY()": "271",
                "claimOwnership()": "54531",
                "getBufferCardinality()": "2374",
                "getDraw(uint32)": "infinite",
                "getDrawCount()": "4782",
                "getDraws(uint32[])": "infinite",
                "getNewestDraw()": "infinite",
                "getOldestDraw()": "infinite",
                "manager()": "2388",
                "owner()": "2354",
                "pendingOwner()": "2397",
                "pushDraw((uint256,uint32,uint64,uint64,uint32))": "infinite",
                "renounceOwnership()": "28180",
                "setDraw((uint256,uint32,uint64,uint64,uint32))": "infinite",
                "setManager(address)": "30536",
                "transferOwnership(address)": "27959"
              },
              "internal": {
                "_drawIdToDrawIndex(struct DrawRingBufferLib.Buffer memory,uint32)": "infinite",
                "_getNewestDraw(struct DrawRingBufferLib.Buffer memory)": "infinite",
                "_pushDraw(struct IDrawBeacon.Draw memory)": "infinite"
              }
            },
            "methodIdentifiers": {
              "MAX_CARDINALITY()": "8200d873",
              "claimOwnership()": "4e71e0c8",
              "getBufferCardinality()": "caeef7ec",
              "getDraw(uint32)": "83c34aaf",
              "getDrawCount()": "c4df5fed",
              "getDraws(uint32[])": "d0bb78f3",
              "getNewestDraw()": "0edb1d2e",
              "getOldestDraw()": "648b1b4f",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "pushDraw((uint256,uint32,uint64,uint64,uint32))": "089eb925",
              "renounceOwnership()": "715018a6",
              "setDraw((uint256,uint32,uint64,uint64,uint32))": "d7bcb86b",
              "setManager(address)": "d0ebdbe7",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"uint8\",\"name\":\"_cardinality\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"draw\",\"type\":\"tuple\"}],\"name\":\"DrawSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"MAX_CARDINALITY\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"\",\"type\":\"uint16\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBufferCardinality\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"name\":\"getDraw\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawCount\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getDraws\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNewestDraw\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getOldestDraw\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"_draw\",\"type\":\"tuple\"}],\"name\":\"pushDraw\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"_newDraw\",\"type\":\"tuple\"}],\"name\":\"setDraw\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"details\":\"A DrawBuffer store a limited number of Draws before beginning to overwrite (managed via the cardinality) previous Draws.All mainnet DrawBuffer(s) are updated directly from a DrawBeacon, but non-mainnet DrawBuffer(s) (Matic, Optimism, Arbitrum, etc...) will receive a cross-chain message, duplicating the mainnet Draw configuration - enabling a prize savings liquidity network.\",\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_cardinality\":\"Draw ring buffer cardinality.\",\"_owner\":\"Address of the owner of the DrawBuffer.\"}},\"getBufferCardinality()\":{\"returns\":{\"_0\":\"Ring buffer cardinality\"}},\"getDraw(uint32)\":{\"details\":\"Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\",\"params\":{\"drawId\":\"Draw.drawId\"},\"returns\":{\"_0\":\"IDrawBeacon.Draw\"}},\"getDrawCount()\":{\"details\":\"If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestDraw index + 1.\",\"returns\":{\"_0\":\"Number of Draws held in the draw ring buffer.\"}},\"getDraws(uint32[])\":{\"details\":\"Read multiple Draws using each drawId to calculate position in the draws ring buffer.\",\"params\":{\"drawIds\":\"Array of drawIds\"},\"returns\":{\"_0\":\"IDrawBeacon.Draw[]\"}},\"getNewestDraw()\":{\"details\":\"Uses the nextDrawIndex to calculate the most recently added Draw.\",\"returns\":{\"_0\":\"IDrawBeacon.Draw\"}},\"getOldestDraw()\":{\"details\":\"Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\",\"returns\":{\"_0\":\"IDrawBeacon.Draw\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"pushDraw((uint256,uint32,uint64,uint64,uint32))\":{\"details\":\"Push new draw onto draws history via authorized manager or owner.\",\"params\":{\"draw\":\"IDrawBeacon.Draw\"},\"returns\":{\"_0\":\"Draw.drawId\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setDraw((uint256,uint32,uint64,uint64,uint32))\":{\"details\":\"Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\",\"params\":{\"newDraw\":\"IDrawBeacon.Draw\"},\"returns\":{\"_0\":\"Draw.drawId\"}},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"PoolTogether V4 DrawBuffer\",\"version\":1},\"userdoc\":{\"events\":{\"DrawSet(uint32,(uint256,uint32,uint64,uint64,uint32))\":{\"notice\":\"Emit when a new draw has been created.\"}},\"kind\":\"user\",\"methods\":{\"MAX_CARDINALITY()\":{\"notice\":\"Draws ring buffer max length.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Deploy DrawBuffer smart contract.\"},\"getBufferCardinality()\":{\"notice\":\"Read a ring buffer cardinality\"},\"getDraw(uint32)\":{\"notice\":\"Read a Draw from the draws ring buffer.\"},\"getDrawCount()\":{\"notice\":\"Gets the number of Draws held in the draw ring buffer.\"},\"getDraws(uint32[])\":{\"notice\":\"Read multiple Draws from the draws ring buffer.\"},\"getNewestDraw()\":{\"notice\":\"Read newest Draw from draws ring buffer.\"},\"getOldestDraw()\":{\"notice\":\"Read oldest Draw from draws ring buffer.\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"pushDraw((uint256,uint32,uint64,uint64,uint32))\":{\"notice\":\"Push Draw onto draws ring buffer history.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setDraw((uint256,uint32,uint64,uint64,uint32))\":{\"notice\":\"Set existing Draw in draws ring buffer with new parameters.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"The DrawBuffer provides historical lookups of Draws via a circular ring buffer. Historical Draws can be accessed on-chain using a drawId to calculate ring buffer storage slot. The Draw settings can be created by manager/owner and existing Draws can only be updated the owner. Once a starting Draw has been added to the ring buffer, all following draws must have a sequential Draw ID.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/DrawBuffer.sol\":\"DrawBuffer\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Random Number Generator Interface\\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\n */\\ninterface RNGInterface {\\n  /**\\n   * @notice Emitted when a new request for a random number has been submitted\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param sender The indexed address of the sender of the request\\n   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /**\\n   * @notice Emitted when an existing request for a random number has been completed\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param randomNumber The random number produced by the 3rd-party service\\n   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /**\\n   * @notice Gets the last request id used by the RNG service\\n   * @return requestId The last request id used in the last request\\n   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /**\\n   * @notice Gets the Fee for making a Request against an RNG service\\n   * @return feeToken The address of the token that is used to pay fees\\n   * @return requestFee The fee required to be paid to make a request\\n   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /**\\n   * @notice Sends a request for a random number to the 3rd-party service\\n   * @dev Some services will complete the request immediately, others may have a time-delay\\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n   * @return requestId The ID of the request used to get the results of the RNG service\\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /**\\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\\n   * @dev For time-delayed requests, this function is used to check/confirm completion\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\\n   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /**\\n   * @notice Gets the random number produced by the 3rd-party service\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return randomNum The random number\\n   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"},\"contracts/DrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./interfaces/IDrawBuffer.sol\\\";\\nimport \\\"./interfaces/IDrawBeacon.sol\\\";\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 DrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer provides historical lookups of Draws via a circular ring buffer.\\n            Historical Draws can be accessed on-chain using a drawId to calculate ring buffer storage slot.\\n            The Draw settings can be created by manager/owner and existing Draws can only be updated the owner.\\n            Once a starting Draw has been added to the ring buffer, all following draws must have a sequential Draw ID.\\n    @dev    A DrawBuffer store a limited number of Draws before beginning to overwrite (managed via the cardinality) previous Draws.\\n    @dev    All mainnet DrawBuffer(s) are updated directly from a DrawBeacon, but non-mainnet DrawBuffer(s) (Matic, Optimism, Arbitrum, etc...)\\n            will receive a cross-chain message, duplicating the mainnet Draw configuration - enabling a prize savings liquidity network.\\n*/\\ncontract DrawBuffer is IDrawBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice Draws ring buffer max length.\\n    uint16 public constant MAX_CARDINALITY = 256;\\n\\n    /// @notice Draws ring buffer array.\\n    IDrawBeacon.Draw[MAX_CARDINALITY] private drawRingBuffer;\\n\\n    /// @notice Holds ring buffer information\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Deploy DrawBuffer smart contract.\\n     * @param _owner Address of the owner of the DrawBuffer.\\n     * @param _cardinality Draw ring buffer cardinality.\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getDraw(uint32 drawId) external view override returns (IDrawBeacon.Draw memory) {\\n        return drawRingBuffer[_drawIdToDrawIndex(bufferMetadata, drawId)];\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getDraws(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IDrawBeacon.Draw[] memory)\\n    {\\n        IDrawBeacon.Draw[] memory draws = new IDrawBeacon.Draw[](_drawIds.length);\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        for (uint256 index = 0; index < _drawIds.length; index++) {\\n            draws[index] = drawRingBuffer[_drawIdToDrawIndex(buffer, _drawIds[index])];\\n        }\\n\\n        return draws;\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getDrawCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        if (drawRingBuffer[bufferNextIndex].timestamp != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getNewestDraw() external view override returns (IDrawBeacon.Draw memory) {\\n        return _getNewestDraw(bufferMetadata);\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getOldestDraw() external view override returns (IDrawBeacon.Draw memory) {\\n        // oldest draw should be next available index, otherwise it's at 0\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IDrawBeacon.Draw memory draw = drawRingBuffer[buffer.nextIndex];\\n\\n        if (draw.timestamp == 0) {\\n            // if draw is not init, then use draw at 0\\n            draw = drawRingBuffer[0];\\n        }\\n\\n        return draw;\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function pushDraw(IDrawBeacon.Draw memory _draw)\\n        external\\n        override\\n        onlyManagerOrOwner\\n        returns (uint32)\\n    {\\n        return _pushDraw(_draw);\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function setDraw(IDrawBeacon.Draw memory _newDraw) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_newDraw.drawId);\\n        drawRingBuffer[index] = _newDraw;\\n        emit DrawSet(_newDraw.drawId, _newDraw);\\n        return _newDraw.drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Convert a Draw.drawId to a Draws ring buffer index pointer.\\n     * @dev    The getNewestDraw.drawId() is used to calculate a Draws ID delta position.\\n     * @param _drawId Draw.drawId\\n     * @return Draws ring buffer index pointer\\n     */\\n    function _drawIdToDrawIndex(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        pure\\n        returns (uint32)\\n    {\\n        return _buffer.getIndex(_drawId);\\n    }\\n\\n    /**\\n     * @notice Read newest Draw from the draws ring buffer.\\n     * @dev    Uses the lastDrawId to calculate the most recently added Draw.\\n     * @param _buffer Draw ring buffer\\n     * @return IDrawBeacon.Draw\\n     */\\n    function _getNewestDraw(DrawRingBufferLib.Buffer memory _buffer)\\n        internal\\n        view\\n        returns (IDrawBeacon.Draw memory)\\n    {\\n        return drawRingBuffer[_buffer.getIndex(_buffer.lastDrawId)];\\n    }\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws list via authorized manager or owner.\\n     * @param _newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function _pushDraw(IDrawBeacon.Draw memory _newDraw) internal returns (uint32) {\\n        DrawRingBufferLib.Buffer memory _buffer = bufferMetadata;\\n        drawRingBuffer[_buffer.nextIndex] = _newDraw;\\n        bufferMetadata = _buffer.push(_newDraw.drawId);\\n\\n        emit DrawSet(_newDraw.drawId, _newDraw);\\n\\n        return _newDraw.drawId;\\n    }\\n}\\n\",\"keccak256\":\"0xf43efd6c3f4b3fe67b8ccbf8c69e5137ccaad68a381114afdb5f37cd820d4ccb\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/DrawBuffer.sol:DrawBuffer",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/DrawBuffer.sol:DrawBuffer",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3834,
                "contract": "contracts/DrawBuffer.sol:DrawBuffer",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 6192,
                "contract": "contracts/DrawBuffer.sol:DrawBuffer",
                "label": "drawRingBuffer",
                "offset": 0,
                "slot": "3",
                "type": "t_array(t_struct(Draw)11085_storage)256_storage"
              },
              {
                "astId": 6196,
                "contract": "contracts/DrawBuffer.sol:DrawBuffer",
                "label": "bufferMetadata",
                "offset": 0,
                "slot": "515",
                "type": "t_struct(Buffer)12224_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(Draw)11085_storage)256_storage": {
                "base": "t_struct(Draw)11085_storage",
                "encoding": "inplace",
                "label": "struct IDrawBeacon.Draw[256]",
                "numberOfBytes": "16384"
              },
              "t_struct(Buffer)12224_storage": {
                "encoding": "inplace",
                "label": "struct DrawRingBufferLib.Buffer",
                "members": [
                  {
                    "astId": 12219,
                    "contract": "contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "lastDrawId",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 12221,
                    "contract": "contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "nextIndex",
                    "offset": 4,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 12223,
                    "contract": "contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "cardinality",
                    "offset": 8,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(Draw)11085_storage": {
                "encoding": "inplace",
                "label": "struct IDrawBeacon.Draw",
                "members": [
                  {
                    "astId": 11076,
                    "contract": "contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "winningRandomNumber",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint256"
                  },
                  {
                    "astId": 11078,
                    "contract": "contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "drawId",
                    "offset": 0,
                    "slot": "1",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 11080,
                    "contract": "contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "timestamp",
                    "offset": 4,
                    "slot": "1",
                    "type": "t_uint64"
                  },
                  {
                    "astId": 11082,
                    "contract": "contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "beaconPeriodStartedAt",
                    "offset": 12,
                    "slot": "1",
                    "type": "t_uint64"
                  },
                  {
                    "astId": 11084,
                    "contract": "contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "beaconPeriodSeconds",
                    "offset": 20,
                    "slot": "1",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "64"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              },
              "t_uint64": {
                "encoding": "inplace",
                "label": "uint64",
                "numberOfBytes": "8"
              }
            }
          },
          "userdoc": {
            "events": {
              "DrawSet(uint32,(uint256,uint32,uint64,uint64,uint32))": {
                "notice": "Emit when a new draw has been created."
              }
            },
            "kind": "user",
            "methods": {
              "MAX_CARDINALITY()": {
                "notice": "Draws ring buffer max length."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Deploy DrawBuffer smart contract."
              },
              "getBufferCardinality()": {
                "notice": "Read a ring buffer cardinality"
              },
              "getDraw(uint32)": {
                "notice": "Read a Draw from the draws ring buffer."
              },
              "getDrawCount()": {
                "notice": "Gets the number of Draws held in the draw ring buffer."
              },
              "getDraws(uint32[])": {
                "notice": "Read multiple Draws from the draws ring buffer."
              },
              "getNewestDraw()": {
                "notice": "Read newest Draw from draws ring buffer."
              },
              "getOldestDraw()": {
                "notice": "Read oldest Draw from draws ring buffer."
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "pushDraw((uint256,uint32,uint64,uint64,uint32))": {
                "notice": "Push Draw onto draws ring buffer history."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setDraw((uint256,uint32,uint64,uint64,uint32))": {
                "notice": "Set existing Draw in draws ring buffer with new parameters."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "The DrawBuffer provides historical lookups of Draws via a circular ring buffer. Historical Draws can be accessed on-chain using a drawId to calculate ring buffer storage slot. The Draw settings can be created by manager/owner and existing Draws can only be updated the owner. Once a starting Draw has been added to the ring buffer, all following draws must have a sequential Draw ID.",
            "version": 1
          }
        }
      },
      "contracts/DrawCalculator.sol": {
        "DrawCalculator": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_ticket",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "_drawBuffer",
                  "type": "address"
                },
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "_prizeDistributionBuffer",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IDrawBuffer",
                  "name": "drawBuffer",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "prizeDistributionBuffer",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract PrizeDistributor",
                  "name": "prizeDistributor",
                  "type": "address"
                }
              ],
              "name": "PrizeDistributorSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "TIERS_LENGTH",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                },
                {
                  "internalType": "bytes",
                  "name": "_pickIndicesForDraws",
                  "type": "bytes"
                }
              ],
              "name": "calculate",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                },
                {
                  "internalType": "bytes",
                  "name": "",
                  "type": "bytes"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "drawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getNormalizedBalancesForDrawIds",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeDistributionBuffer",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "prizeDistributionBuffer",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "ticket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "calculate(address,uint32[],bytes)": {
                "params": {
                  "data": "The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.",
                  "drawIds": "drawId array for which to calculate prize amounts for.",
                  "user": "User for which to calculate prize amount."
                },
                "returns": {
                  "_0": "List of awardable prize amounts ordered by drawId."
                }
              },
              "constructor": {
                "params": {
                  "_drawBuffer": "The address of the draw buffer to push draws to",
                  "_prizeDistributionBuffer": "PrizeDistributionBuffer address",
                  "_ticket": "Ticket associated with this DrawCalculator"
                }
              },
              "getDrawBuffer()": {
                "returns": {
                  "_0": "IDrawBuffer"
                }
              },
              "getNormalizedBalancesForDrawIds(address,uint32[])": {
                "params": {
                  "drawIds": "The drawIds to consider",
                  "user": "The users address"
                },
                "returns": {
                  "_0": "Array of balances"
                }
              },
              "getPrizeDistributionBuffer()": {
                "returns": {
                  "_0": "IPrizeDistributionBuffer"
                }
              }
            },
            "title": "PoolTogether V4 DrawCalculator",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_6635": {
                  "entryPoint": null,
                  "id": 6635,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_contract$_ITicket_$12213t_contract$_IDrawBuffer_$11318t_contract$_IPrizeDistributionBuffer_$11467_fromMemory": {
                  "entryPoint": 423,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "validator_revert_contract_IDrawBuffer": {
                  "entryPoint": 507,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1847:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "201:443:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "247:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "256:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "259:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "249:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "249:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "249:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "222:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "231:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "218:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "218:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "243:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "214:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "214:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "211:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "272:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "291:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "285:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "285:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "276:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "348:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "310:37:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "310:44:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "310:44:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "363:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "373:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "363:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "387:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "412:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "423:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "408:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "408:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "402:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "402:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "391:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "474:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "436:37:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "436:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "436:46:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "491:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "501:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "491:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "517:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "542:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "553:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "538:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "538:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "532:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "532:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "521:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "604:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "566:37:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "566:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "566:46:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "621:17:84",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "631:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "621:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$12213t_contract$_IDrawBuffer_$11318t_contract$_IPrizeDistributionBuffer_$11467_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "151:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "162:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "174:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "182:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "190:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:630:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "823:170:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "840:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "851:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "833:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "833:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "833:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "874:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "885:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "870:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "870:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "890:2:84",
                                    "type": "",
                                    "value": "20"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "863:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "863:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "863:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "913:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "924:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "909:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "909:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f64682d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "929:22:84",
                                    "type": "",
                                    "value": "DrawCalc/dh-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "902:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "902:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "902:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "961:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "973:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "984:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "969:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "969:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "800:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "814:4:84",
                            "type": ""
                          }
                        ],
                        "src": "649:344:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1172:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1189:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1200:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1182:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1182:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1182:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1223:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1234:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1219:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1219:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1239:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1212:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1212:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1212:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1262:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1273:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1258:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1258:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7469636b65742d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1278:26:84",
                                    "type": "",
                                    "value": "DrawCalc/ticket-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1251:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1251:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1251:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1314:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1326:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1337:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1322:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1322:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1314:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1149:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1163:4:84",
                            "type": ""
                          }
                        ],
                        "src": "998:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1525:171:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1542:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1553:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1535:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1535:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1535:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1576:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1587:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1572:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1572:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1592:2:84",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1565:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1565:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1565:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1615:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1626:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1611:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1611:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7064622d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1631:23:84",
                                    "type": "",
                                    "value": "DrawCalc/pdb-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1604:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1604:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1604:51:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1664:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1676:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1687:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1672:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1672:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1664:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1502:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1516:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1351:345:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1759:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1823:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1832:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1835:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1825:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1825:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1825:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1782:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1793:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1808:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1813:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1804:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1804:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1817:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1800:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1800:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1789:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1789:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1779:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1779:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1772:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1772:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1769:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_contract_IDrawBuffer",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1748:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1701:144:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_contract$_ITicket_$12213t_contract$_IDrawBuffer_$11318t_contract$_IPrizeDistributionBuffer_$11467_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IDrawBuffer(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IDrawBuffer(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_contract_IDrawBuffer(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 20)\n        mstore(add(headStart, 64), \"DrawCalc/dh-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"DrawCalc/ticket-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"DrawCalc/pdb-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function validator_revert_contract_IDrawBuffer(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60e06040523480156200001157600080fd5b5060405162002202380380620022028339810160408190526200003491620001a7565b6001600160a01b038316620000905760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7469636b65742d6e6f742d7a65726f000000000000000060448201526064015b60405180910390fd5b6001600160a01b038116620000e85760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f7064622d6e6f742d7a65726f0000000000000000000000604482015260640162000087565b6001600160a01b038216620001405760405162461bcd60e51b815260206004820152601460248201527f4472617743616c632f64682d6e6f742d7a65726f000000000000000000000000604482015260640162000087565b6001600160601b0319606084811b821660a05283811b821660805282901b1660c0526040516001600160a01b0382811691848216918616907fc95935a66d15e0da5e412aca0ad27ae891d20b2fb91cf3994b6a3bf2b817808290600090a450505062000214565b600080600060608486031215620001bd57600080fd5b8351620001ca81620001fb565b6020850151909350620001dd81620001fb565b6040850151909250620001f081620001fb565b809150509250925092565b6001600160a01b03811681146200021157600080fd5b50565b60805160601c60a05160601c60c05160601c611f7f620002836000396000818160920152818161016e0152818161028c01526104b1015260008181610109015281816107dd015261087001526000818160e001528181610197015281816101d901526104200152611f7f6000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063aaca392e1161005b578063aaca392e1461014b578063bd97a2521461016c578063ce343bb614610192578063f8d0ca4c146101b957600080fd5b80630840bbdd1461008d5780634019f2d6146100de5780636cc25db7146101045780638045fbcf1461012b575b600080fd5b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006100b4565b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b61013e6101393660046114df565b6101d3565b6040516100d59190611afc565b61015e610159366004611532565b610352565b6040516100d5929190611b0f565b7f00000000000000000000000000000000000000000000000000000000000000006100b4565b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b6101c1601081565b60405160ff90911681526020016100d5565b606060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0bb78f385856040518363ffffffff1660e01b8152600401610232929190611b74565b60006040518083038186803b15801561024a57600080fd5b505afa15801561025e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261028691908101906116fd565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf86866040518363ffffffff1660e01b81526004016102e5929190611b74565b60006040518083038186803b1580156102fd57600080fd5b505afa158015610311573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261033991908101906117f8565b90506103468683836105dd565b925050505b9392505050565b6060806000610363848601866115dd565b805190915086146103e05760405162461bcd60e51b8152602060048201526024808201527f4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c6560448201527f6e6774680000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6040517fd0bb78f300000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063d0bb78f390610457908b908b90600401611b74565b60006040518083038186803b15801561046f57600080fd5b505afa158015610483573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104ab91908101906116fd565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf8a8a6040518363ffffffff1660e01b815260040161050a929190611b74565b60006040518083038186803b15801561052257600080fd5b505afa158015610536573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261055e91908101906117f8565b9050600061056d8b84846105dd565b6040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608e901b1660208201529091506000906034016040516020818303038152906040528051906020012090506105ca8282868887610a48565b9650965050505050509550959350505050565b815160609060008167ffffffffffffffff8111156105fd576105fd611f08565b604051908082528060200260200182016040528015610626578160200160208202803683370190505b50905060008267ffffffffffffffff81111561064457610644611f08565b60405190808252806020026020018201604052801561066d578160200160208202803683370190505b50905060005b838163ffffffff16101561079c57858163ffffffff168151811061069957610699611ef2565b60200260200101516040015163ffffffff16878263ffffffff16815181106106c3576106c3611ef2565b60200260200101516040015103838263ffffffff16815181106106e8576106e8611ef2565b602002602001019067ffffffffffffffff16908167ffffffffffffffff1681525050858163ffffffff168151811061072257610722611ef2565b60200260200101516060015163ffffffff16878263ffffffff168151811061074c5761074c611ef2565b60200260200101516040015103828263ffffffff168151811061077157610771611ef2565b67ffffffffffffffff909216602092830291909101909101528061079481611e98565b915050610673565b506040517f68c7fd5700000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906368c7fd5790610816908b9087908790600401611a31565b60006040518083038186803b15801561082e57600080fd5b505afa158015610842573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261086a9190810190611924565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638e6d536a85856040518363ffffffff1660e01b81526004016108c9929190611bbf565b60006040518083038186803b1580156108e157600080fd5b505afa1580156108f5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261091d9190810190611924565b905060008567ffffffffffffffff81111561093a5761093a611f08565b604051908082528060200260200182016040528015610963578160200160208202803683370190505b50905060005b86811015610a3a5782818151811061098357610983611ef2565b6020026020010151600014156109b85760008282815181106109a7576109a7611ef2565b602002602001018181525050610a28565b8281815181106109ca576109ca611ef2565b60200260200101518482815181106109e4576109e4611ef2565b6020026020010151670de0b6b3a76400006109ff9190611dff565b610a099190611cef565b828281518110610a1b57610a1b611ef2565b6020026020010181815250505b80610a3281611e7d565b915050610969565b509998505050505050505050565b6060806000875167ffffffffffffffff811115610a6757610a67611f08565b604051908082528060200260200182016040528015610a90578160200160208202803683370190505b5090506000885167ffffffffffffffff811115610aaf57610aaf611f08565b604051908082528060200260200182016040528015610ae257816020015b6060815260200190600190039081610acd5790505b5090504260005b88518163ffffffff161015610ccf57868163ffffffff1681518110610b1057610b10611ef2565b602002602001015160a0015163ffffffff16898263ffffffff1681518110610b3a57610b3a611ef2565b602002602001015160400151610b509190611c9e565b67ffffffffffffffff168267ffffffffffffffff1610610bb25760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d65787069726564000000000000000000000060448201526064016103d7565b6000610bfc888363ffffffff1681518110610bcf57610bcf611ef2565b60200260200101518d8463ffffffff1681518110610bef57610bef611ef2565b6020026020010151610d02565b9050610c768a8363ffffffff1681518110610c1957610c19611ef2565b6020026020010151600001518267ffffffffffffffff168d8c8663ffffffff1681518110610c4957610c49611ef2565b60200260200101518c8763ffffffff1681518110610c6957610c69611ef2565b6020026020010151610d3f565b868463ffffffff1681518110610c8e57610c8e611ef2565b60200260200101868563ffffffff1681518110610cad57610cad611ef2565b6020908102919091010191909152525080610cc781611e98565b915050610ae9565b5081604051602001610ce19190611a7c565b60405160208183030381529060405293508294505050509550959350505050565b6000670de0b6b3a76400008360c001516cffffffffffffffffffffffffff1683610d2c9190611dff565b610d369190611cef565b90505b92915050565b600060606000610d4e846110c4565b85516040805160108082526102208201909252929350909160009160208201610200803683370190505090506000866080015163ffffffff168363ffffffff161115610ddc5760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f657863656564732d6d61782d757365722d7069636b730060448201526064016103d7565b60005b8363ffffffff168163ffffffff161015610ff4578a898263ffffffff1681518110610e0c57610e0c611ef2565b602002602001015167ffffffffffffffff1610610e6b5760405162461bcd60e51b815260206004820181905260248201527f4472617743616c632f696e73756666696369656e742d757365722d7069636b7360448201526064016103d7565b63ffffffff811615610f225788610e83600183611e35565b63ffffffff1681518110610e9957610e99611ef2565b602002602001015167ffffffffffffffff16898263ffffffff1681518110610ec357610ec3611ef2565b602002602001015167ffffffffffffffff1611610f225760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7069636b732d617363656e64696e67000000000000000060448201526064016103d7565b60008a8a8363ffffffff1681518110610f3d57610f3d611ef2565b6020026020010151604051602001610f6992919091825267ffffffffffffffff16602082015260400190565b6040516020818303038152906040528051906020012060001c90506000610f91828f896111c9565b9050601060ff82161015610fdf578360ff168160ff161115610fb1578093505b848160ff1681518110610fc657610fc6611ef2565b602002602001018051809190610fdb90611e7d565b9052505b50508080610fec90611e98565b915050610ddf565b506000806110028984611268565b905060005b8360ff16811161109057600085828151811061102557611025611ef2565b6020026020010151111561107e5784818151811061104557611045611ef2565b602002602001015182828151811061105f5761105f611ef2565b60200260200101516110719190611dff565b61107b9084611c86565b92505b8061108881611e7d565b915050611007565b50633b9aca00896101000151836110a79190611dff565b6110b19190611cef565b9d939c50929a5050505050505050505050565b60606000826020015160ff1667ffffffffffffffff8111156110e8576110e8611f08565b604051908082528060200260200182016040528015611111578160200160208202803683370190505b508351909150600190611125906002611d54565b61112f9190611e1e565b8160008151811061114257611142611ef2565b602090810291909101015260015b836020015160ff168160ff1610156111c257835160ff1682611173600184611e5a565b60ff168151811061118657611186611ef2565b6020026020010151901b828260ff16815181106111a5576111a5611ef2565b6020908102919091010152806111ba81611ebc565b915050611150565b5092915050565b80516000908190815b8160ff168160ff16101561125d576000858260ff16815181106111f7576111f7611ef2565b602002602001015190508087168189161461123c578360ff168360ff16141561122757600094505050505061034b565b6112318484611e5a565b94505050505061034b565b8361124681611ebc565b94505050808061125590611ebc565b9150506111d2565b506103468282611e5a565b60606000611277836001611cca565b60ff1667ffffffffffffffff81111561129257611292611f08565b6040519080825280602002602001820160405280156112bb578160200160208202803683370190505b50905060005b8360ff168160ff161161130d576112db858260ff16611315565b828260ff16815181106112f0576112f0611ef2565b60209081029190910101528061130581611ebc565b9150506112c1565b509392505050565b6000808360e00151836010811061132e5761132e611ef2565b602002015163ffffffff169050600061134b856000015185611360565b90506113578183611cef565b95945050505050565b600081156113a657611373600183611e1e565b6113809060ff8516611dff565b6001901b6113918360ff8616611dff565b6001901b61139f9190611e1e565b9050610d39565b506001610d39565b803573ffffffffffffffffffffffffffffffffffffffff811681146113d257600080fd5b919050565b600082601f8301126113e857600080fd5b60405161020080820182811067ffffffffffffffff8211171561140d5761140d611f08565b604052818482810187101561142157600080fd5b600092505b601083101561144f57805161143a81611f1e565b82526001929092019160209182019101611426565b509195945050505050565b60008083601f84011261146c57600080fd5b50813567ffffffffffffffff81111561148457600080fd5b6020830191508360208260051b850101111561149f57600080fd5b9250929050565b80516cffffffffffffffffffffffffff811681146113d257600080fd5b80516113d281611f1e565b805160ff811681146113d257600080fd5b6000806000604084860312156114f457600080fd5b6114fd846113ae565b9250602084013567ffffffffffffffff81111561151957600080fd5b6115258682870161145a565b9497909650939450505050565b60008060008060006060868803121561154a57600080fd5b611553866113ae565b9450602086013567ffffffffffffffff8082111561157057600080fd5b61157c89838a0161145a565b9096509450604088013591508082111561159557600080fd5b818801915088601f8301126115a957600080fd5b8135818111156115b857600080fd5b8960208285010111156115ca57600080fd5b9699959850939650602001949392505050565b600060208083850312156115f057600080fd5b823567ffffffffffffffff8082111561160857600080fd5b818501915085601f83011261161c57600080fd5b813561162f61162a82611c62565b611c31565b80828252858201915085850189878560051b880101111561164f57600080fd5b60005b848110156116ee5781358681111561166957600080fd5b8701603f81018c1361167a57600080fd5b8881013561168a61162a82611c62565b808282528b82019150604084018f60408560051b87010111156116ac57600080fd5b600094505b838510156116d85780356116c481611f33565b835260019490940193918c01918c016116b1565b5087525050509287019290870190600101611652565b50909998505050505050505050565b6000602080838503121561171057600080fd5b825167ffffffffffffffff81111561172757600080fd5b8301601f8101851361173857600080fd5b805161174661162a82611c62565b8181528381019083850160a0808502860187018a101561176557600080fd5b60009550855b858110156117e95781838c031215611781578687fd5b611789611be4565b835181528884015161179a81611f1e565b818a01526040848101516117ad81611f33565b908201526060848101516117c081611f33565b908201526080848101516117d381611f1e565b908201528552938701939181019160010161176b565b50919998505050505050505050565b6000602080838503121561180b57600080fd5b825167ffffffffffffffff81111561182257600080fd5b8301601f8101851361183357600080fd5b805161184161162a82611c62565b81815283810190838501610300808502860187018a101561186157600080fd5b60009550855b858110156117e95781838c03121561187d578687fd5b611885611c0d565b61188e846114ce565b815261189b8985016114ce565b8982015260406118ac8186016114c3565b9082015260606118bd8582016114c3565b9082015260806118ce8582016114c3565b9082015260a06118df8582016114c3565b9082015260c06118f08582016114a6565b9082015260e06119028d8683016113d7565b908201526102e084015161010082015285529387019391810191600101611867565b6000602080838503121561193757600080fd5b825167ffffffffffffffff81111561194e57600080fd5b8301601f8101851361195f57600080fd5b805161196d61162a82611c62565b80828252848201915084840188868560051b870101111561198d57600080fd5b600094505b838510156119b0578051835260019490940193918501918501611992565b50979650505050505050565b600081518084526020808501945080840160005b838110156119ec578151875295820195908201906001016119d0565b509495945050505050565b600081518084526020808501945080840160005b838110156119ec57815167ffffffffffffffff1687529582019590820190600101611a0b565b73ffffffffffffffffffffffffffffffffffffffff84168152606060208201526000611a6060608301856119f7565b8281036040840152611a7281856119f7565b9695505050505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015611aef577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452611add8583516119bc565b94509285019290850190600101611aa3565b5092979650505050505050565b602081526000610d3660208301846119bc565b604081526000611b2260408301856119bc565b602083820381850152845180835260005b81811015611b4e578681018301518482018401528201611b33565b81811115611b5f5760008383860101525b50601f01601f19169190910101949350505050565b60208082528181018390526000908460408401835b86811015611bb4578235611b9c81611f1e565b63ffffffff1682529183019190830190600101611b89565b509695505050505050565b604081526000611bd260408301856119f7565b828103602084015261135781856119f7565b60405160a0810167ffffffffffffffff81118282101715611c0757611c07611f08565b60405290565b604051610120810167ffffffffffffffff81118282101715611c0757611c07611f08565b604051601f8201601f1916810167ffffffffffffffff81118282101715611c5a57611c5a611f08565b604052919050565b600067ffffffffffffffff821115611c7c57611c7c611f08565b5060051b60200190565b60008219821115611c9957611c99611edc565b500190565b600067ffffffffffffffff808316818516808303821115611cc157611cc1611edc565b01949350505050565b600060ff821660ff84168060ff03821115611ce757611ce7611edc565b019392505050565b600082611d0c57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b80851115611d4c578160001904821115611d3257611d32611edc565b80851615611d3f57918102915b93841c9390800290611d16565b509250929050565b6000610d3660ff841683600082611d6d57506001610d39565b81611d7a57506000610d39565b8160018114611d905760028114611d9a57611db6565b6001915050610d39565b60ff841115611dab57611dab611edc565b50506001821b610d39565b5060208310610133831016604e8410600b8410161715611dd9575081810a610d39565b611de38383611d11565b8060001904821115611df757611df7611edc565b029392505050565b6000816000190483118215151615611e1957611e19611edc565b500290565b600082821015611e3057611e30611edc565b500390565b600063ffffffff83811690831681811015611e5257611e52611edc565b039392505050565b600060ff821660ff841680821015611e7457611e74611edc565b90039392505050565b6000600019821415611e9157611e91611edc565b5060010190565b600063ffffffff80831681811415611eb257611eb2611edc565b6001019392505050565b600060ff821660ff811415611ed357611ed3611edc565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b63ffffffff81168114611f3057600080fd5b50565b67ffffffffffffffff81168114611f3057600080fdfea2646970667358221220498d8304b406f3f0031671f6daba5394014f41f4424513ee12a1878a9c0412c964736f6c63430008060033",
              "opcodes": "PUSH1 0xE0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2202 CODESIZE SUB DUP1 PUSH3 0x2202 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1A7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH3 0x90 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7469636B65742D6E6F742D7A65726F0000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0xE8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7064622D6E6F742D7A65726F0000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0x140 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F64682D6E6F742D7A65726F000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 DUP2 SHL DUP3 AND PUSH1 0xA0 MSTORE DUP4 DUP2 SHL DUP3 AND PUSH1 0x80 MSTORE DUP3 SWAP1 SHL AND PUSH1 0xC0 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND SWAP2 DUP5 DUP3 AND SWAP2 DUP7 AND SWAP1 PUSH32 0xC95935A66D15E0DA5E412ACA0AD27AE891D20B2FB91CF3994B6A3BF2B8178082 SWAP1 PUSH1 0x0 SWAP1 LOG4 POP POP POP PUSH3 0x214 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x1BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH3 0x1CA DUP2 PUSH3 0x1FB JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH3 0x1DD DUP2 PUSH3 0x1FB JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x1F0 DUP2 PUSH3 0x1FB JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x211 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH1 0xA0 MLOAD PUSH1 0x60 SHR PUSH1 0xC0 MLOAD PUSH1 0x60 SHR PUSH2 0x1F7F PUSH3 0x283 PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH1 0x92 ADD MSTORE DUP2 DUP2 PUSH2 0x16E ADD MSTORE DUP2 DUP2 PUSH2 0x28C ADD MSTORE PUSH2 0x4B1 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x109 ADD MSTORE DUP2 DUP2 PUSH2 0x7DD ADD MSTORE PUSH2 0x870 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH1 0xE0 ADD MSTORE DUP2 DUP2 PUSH2 0x197 ADD MSTORE DUP2 DUP2 PUSH2 0x1D9 ADD MSTORE PUSH2 0x420 ADD MSTORE PUSH2 0x1F7F 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 0x88 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xAACA392E GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xAACA392E EQ PUSH2 0x14B JUMPI DUP1 PUSH4 0xBD97A252 EQ PUSH2 0x16C JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x192 JUMPI DUP1 PUSH4 0xF8D0CA4C EQ PUSH2 0x1B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x840BBDD EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0xDE JUMPI DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0x104 JUMPI DUP1 PUSH4 0x8045FBCF EQ PUSH2 0x12B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB4 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH32 0x0 PUSH2 0xB4 JUMP JUMPDEST PUSH2 0xB4 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x13E PUSH2 0x139 CALLDATASIZE PUSH1 0x4 PUSH2 0x14DF JUMP JUMPDEST PUSH2 0x1D3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD5 SWAP2 SWAP1 PUSH2 0x1AFC JUMP JUMPDEST PUSH2 0x15E PUSH2 0x159 CALLDATASIZE PUSH1 0x4 PUSH2 0x1532 JUMP JUMPDEST PUSH2 0x352 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD5 SWAP3 SWAP2 SWAP1 PUSH2 0x1B0F JUMP JUMPDEST PUSH32 0x0 PUSH2 0xB4 JUMP JUMPDEST PUSH2 0xB4 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x1C1 PUSH1 0x10 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xD5 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD0BB78F3 DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x232 SWAP3 SWAP2 SWAP1 PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x24A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x25E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x286 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x16FD JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP7 DUP7 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2E5 SWAP3 SWAP2 SWAP1 PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x311 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x339 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x17F8 JUMP JUMPDEST SWAP1 POP PUSH2 0x346 DUP7 DUP4 DUP4 PUSH2 0x5DD JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 PUSH2 0x363 DUP5 DUP7 ADD DUP7 PUSH2 0x15DD JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP DUP7 EQ PUSH2 0x3E0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E76616C69642D7069636B2D696E64696365732D6C65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E67746800000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xD0BB78F300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0xD0BB78F3 SWAP1 PUSH2 0x457 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x46F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x483 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x4AB SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x16FD JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP11 DUP11 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x50A SWAP3 SWAP2 SWAP1 PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x522 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x536 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x55E SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x17F8 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x56D DUP12 DUP5 DUP5 PUSH2 0x5DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000 PUSH1 0x60 DUP15 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x34 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH2 0x5CA DUP3 DUP3 DUP7 DUP9 DUP8 PUSH2 0xA48 JUMP JUMPDEST SWAP7 POP SWAP7 POP POP POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x60 SWAP1 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5FD JUMPI PUSH2 0x5FD PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x626 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x644 JUMPI PUSH2 0x644 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x66D JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x79C JUMPI DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x699 JUMPI PUSH2 0x699 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x6C3 JUMPI PUSH2 0x6C3 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP4 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x6E8 JUMPI PUSH2 0x6E8 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x722 JUMPI PUSH2 0x722 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x60 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x74C JUMPI PUSH2 0x74C PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP3 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x771 JUMPI PUSH2 0x771 PUSH2 0x1EF2 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE DUP1 PUSH2 0x794 DUP2 PUSH2 0x1E98 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x673 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x68C7FD5700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0x68C7FD57 SWAP1 PUSH2 0x816 SWAP1 DUP12 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x1A31 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x82E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x842 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x86A SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1924 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x8E6D536A DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8C9 SWAP3 SWAP2 SWAP1 PUSH2 0x1BBF JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8F5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x91D SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1924 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x93A JUMPI PUSH2 0x93A PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x963 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0xA3A JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x983 JUMPI PUSH2 0x983 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 EQ ISZERO PUSH2 0x9B8 JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x9A7 JUMPI PUSH2 0x9A7 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP PUSH2 0xA28 JUMP JUMPDEST DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x9CA JUMPI PUSH2 0x9CA PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x9E4 JUMPI PUSH2 0x9E4 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xDE0B6B3A7640000 PUSH2 0x9FF SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0xA09 SWAP2 SWAP1 PUSH2 0x1CEF JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xA1B JUMPI PUSH2 0xA1B PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0xA32 DUP2 PUSH2 0x1E7D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x969 JUMP JUMPDEST POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 DUP8 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA67 JUMPI PUSH2 0xA67 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xA90 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP9 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAAF JUMPI PUSH2 0xAAF PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xAE2 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xACD JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP9 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xCCF JUMPI DUP7 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xB10 JUMPI PUSH2 0xB10 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xA0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xB3A JUMPI PUSH2 0xB3A PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH2 0xB50 SWAP2 SWAP1 PUSH2 0x1C9E JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xBB2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F647261772D657870697265640000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBFC DUP9 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xBCF JUMPI PUSH2 0xBCF PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP14 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xBEF JUMPI PUSH2 0xBEF PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xD02 JUMP JUMPDEST SWAP1 POP PUSH2 0xC76 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC19 JUMPI PUSH2 0xC19 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP14 DUP13 DUP7 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC49 JUMPI PUSH2 0xC49 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP13 DUP8 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC69 JUMPI PUSH2 0xC69 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xD3F JUMP JUMPDEST DUP7 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC8E JUMPI PUSH2 0xC8E PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP7 DUP6 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xCAD JUMPI PUSH2 0xCAD PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD SWAP2 SWAP1 SWAP2 MSTORE MSTORE POP DUP1 PUSH2 0xCC7 DUP2 PUSH2 0x1E98 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xAE9 JUMP JUMPDEST POP DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xCE1 SWAP2 SWAP1 PUSH2 0x1A7C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP DUP3 SWAP5 POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 DUP4 PUSH1 0xC0 ADD MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0xD2C SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0xD36 SWAP2 SWAP1 PUSH2 0x1CEF JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 PUSH1 0x0 PUSH2 0xD4E DUP5 PUSH2 0x10C4 JUMP JUMPDEST DUP6 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x10 DUP1 DUP3 MSTORE PUSH2 0x220 DUP3 ADD SWAP1 SWAP3 MSTORE SWAP3 SWAP4 POP SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH1 0x20 DUP3 ADD PUSH2 0x200 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH1 0x0 DUP7 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0xDDC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F657863656564732D6D61782D757365722D7069636B7300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xFF4 JUMPI DUP11 DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xE0C JUMPI PUSH2 0xE0C PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xE6B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E73756666696369656E742D757365722D7069636B73 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO PUSH2 0xF22 JUMPI DUP9 PUSH2 0xE83 PUSH1 0x1 DUP4 PUSH2 0x1E35 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xE99 JUMPI PUSH2 0xE99 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xEC3 JUMPI PUSH2 0xEC3 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0xF22 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7069636B732D617363656E64696E670000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x0 DUP11 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xF3D JUMPI PUSH2 0xF3D PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xF69 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP PUSH1 0x0 PUSH2 0xF91 DUP3 DUP16 DUP10 PUSH2 0x11C9 JUMP JUMPDEST SWAP1 POP PUSH1 0x10 PUSH1 0xFF DUP3 AND LT ISZERO PUSH2 0xFDF JUMPI DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT ISZERO PUSH2 0xFB1 JUMPI DUP1 SWAP4 POP JUMPDEST DUP5 DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFC6 JUMPI PUSH2 0xFC6 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP1 MLOAD DUP1 SWAP2 SWAP1 PUSH2 0xFDB SWAP1 PUSH2 0x1E7D JUMP JUMPDEST SWAP1 MSTORE POP JUMPDEST POP POP DUP1 DUP1 PUSH2 0xFEC SWAP1 PUSH2 0x1E98 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xDDF JUMP JUMPDEST POP PUSH1 0x0 DUP1 PUSH2 0x1002 DUP10 DUP5 PUSH2 0x1268 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 GT PUSH2 0x1090 JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1025 JUMPI PUSH2 0x1025 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD GT ISZERO PUSH2 0x107E JUMPI DUP5 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x1045 JUMPI PUSH2 0x1045 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x105F JUMPI PUSH2 0x105F PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x1071 SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0x107B SWAP1 DUP5 PUSH2 0x1C86 JUMP JUMPDEST SWAP3 POP JUMPDEST DUP1 PUSH2 0x1088 DUP2 PUSH2 0x1E7D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1007 JUMP JUMPDEST POP PUSH4 0x3B9ACA00 DUP10 PUSH2 0x100 ADD MLOAD DUP4 PUSH2 0x10A7 SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0x10B1 SWAP2 SWAP1 PUSH2 0x1CEF JUMP JUMPDEST SWAP14 SWAP4 SWAP13 POP SWAP3 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10E8 JUMPI PUSH2 0x10E8 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1111 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP DUP4 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 SWAP1 PUSH2 0x1125 SWAP1 PUSH1 0x2 PUSH2 0x1D54 JUMP JUMPDEST PUSH2 0x112F SWAP2 SWAP1 PUSH2 0x1E1E JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1142 JUMPI PUSH2 0x1142 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 JUMPDEST DUP4 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x11C2 JUMPI DUP4 MLOAD PUSH1 0xFF AND DUP3 PUSH2 0x1173 PUSH1 0x1 DUP5 PUSH2 0x1E5A JUMP JUMPDEST PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1186 JUMPI PUSH2 0x1186 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 SHL DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x11A5 JUMPI PUSH2 0x11A5 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x11BA DUP2 PUSH2 0x1EBC JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1150 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x125D JUMPI PUSH1 0x0 DUP6 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x11F7 JUMPI PUSH2 0x11F7 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP DUP1 DUP8 AND DUP2 DUP10 AND EQ PUSH2 0x123C JUMPI DUP4 PUSH1 0xFF AND DUP4 PUSH1 0xFF AND EQ ISZERO PUSH2 0x1227 JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0x34B JUMP JUMPDEST PUSH2 0x1231 DUP5 DUP5 PUSH2 0x1E5A JUMP JUMPDEST SWAP5 POP POP POP POP POP PUSH2 0x34B JUMP JUMPDEST DUP4 PUSH2 0x1246 DUP2 PUSH2 0x1EBC JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0x1255 SWAP1 PUSH2 0x1EBC JUMP JUMPDEST SWAP2 POP POP PUSH2 0x11D2 JUMP JUMPDEST POP PUSH2 0x346 DUP3 DUP3 PUSH2 0x1E5A JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x1277 DUP4 PUSH1 0x1 PUSH2 0x1CCA JUMP JUMPDEST PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1292 JUMPI PUSH2 0x1292 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x12BB JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT PUSH2 0x130D JUMPI PUSH2 0x12DB DUP6 DUP3 PUSH1 0xFF AND PUSH2 0x1315 JUMP JUMPDEST DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x12F0 JUMPI PUSH2 0x12F0 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x1305 DUP2 PUSH2 0x1EBC JUMP JUMPDEST SWAP2 POP POP PUSH2 0x12C1 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0xE0 ADD MLOAD DUP4 PUSH1 0x10 DUP2 LT PUSH2 0x132E JUMPI PUSH2 0x132E PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x134B DUP6 PUSH1 0x0 ADD MLOAD DUP6 PUSH2 0x1360 JUMP JUMPDEST SWAP1 POP PUSH2 0x1357 DUP2 DUP4 PUSH2 0x1CEF JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO PUSH2 0x13A6 JUMPI PUSH2 0x1373 PUSH1 0x1 DUP4 PUSH2 0x1E1E JUMP JUMPDEST PUSH2 0x1380 SWAP1 PUSH1 0xFF DUP6 AND PUSH2 0x1DFF JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x1391 DUP4 PUSH1 0xFF DUP7 AND PUSH2 0x1DFF JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x139F SWAP2 SWAP1 PUSH2 0x1E1E JUMP JUMPDEST SWAP1 POP PUSH2 0xD39 JUMP JUMPDEST POP PUSH1 0x1 PUSH2 0xD39 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x13D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x13E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP1 DUP3 ADD DUP3 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x140D JUMPI PUSH2 0x140D PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP5 DUP3 DUP2 ADD DUP8 LT ISZERO PUSH2 0x1421 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP3 POP JUMPDEST PUSH1 0x10 DUP4 LT ISZERO PUSH2 0x144F JUMPI DUP1 MLOAD PUSH2 0x143A DUP2 PUSH2 0x1F1E JUMP JUMPDEST DUP3 MSTORE PUSH1 0x1 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x20 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x1426 JUMP JUMPDEST POP SWAP2 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x146C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1484 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x149F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x13D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x13D2 DUP2 PUSH2 0x1F1E JUMP JUMPDEST DUP1 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x13D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x14F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14FD DUP5 PUSH2 0x13AE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1519 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1525 DUP7 DUP3 DUP8 ADD PUSH2 0x145A JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x154A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1553 DUP7 PUSH2 0x13AE JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1570 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x157C DUP10 DUP4 DUP11 ADD PUSH2 0x145A JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x1595 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x15A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x15B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x15CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x15F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1608 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x161C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x162F PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST PUSH2 0x1C31 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP6 DUP3 ADD SWAP2 POP DUP6 DUP6 ADD DUP10 DUP8 DUP6 PUSH1 0x5 SHL DUP9 ADD ADD GT ISZERO PUSH2 0x164F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x16EE JUMPI DUP2 CALLDATALOAD DUP7 DUP2 GT ISZERO PUSH2 0x1669 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 ADD PUSH1 0x3F DUP2 ADD DUP13 SGT PUSH2 0x167A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 DUP2 ADD CALLDATALOAD PUSH2 0x168A PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP12 DUP3 ADD SWAP2 POP PUSH1 0x40 DUP5 ADD DUP16 PUSH1 0x40 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x16AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x16D8 JUMPI DUP1 CALLDATALOAD PUSH2 0x16C4 DUP2 PUSH2 0x1F33 JUMP JUMPDEST DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP13 ADD SWAP2 DUP13 ADD PUSH2 0x16B1 JUMP JUMPDEST POP DUP8 MSTORE POP POP POP SWAP3 DUP8 ADD SWAP3 SWAP1 DUP8 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1652 JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1710 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1727 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1738 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1746 PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH1 0xA0 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1765 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x17E9 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x1781 JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1789 PUSH2 0x1BE4 JUMP JUMPDEST DUP4 MLOAD DUP2 MSTORE DUP9 DUP5 ADD MLOAD PUSH2 0x179A DUP2 PUSH2 0x1F1E JUMP JUMPDEST DUP2 DUP11 ADD MSTORE PUSH1 0x40 DUP5 DUP2 ADD MLOAD PUSH2 0x17AD DUP2 PUSH2 0x1F33 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP5 DUP2 ADD MLOAD PUSH2 0x17C0 DUP2 PUSH2 0x1F33 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP5 DUP2 ADD MLOAD PUSH2 0x17D3 DUP2 PUSH2 0x1F1E JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x176B JUMP JUMPDEST POP SWAP2 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x180B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1822 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1833 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1841 PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH2 0x300 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1861 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x17E9 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x187D JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1885 PUSH2 0x1C0D JUMP JUMPDEST PUSH2 0x188E DUP5 PUSH2 0x14CE JUMP JUMPDEST DUP2 MSTORE PUSH2 0x189B DUP10 DUP6 ADD PUSH2 0x14CE JUMP JUMPDEST DUP10 DUP3 ADD MSTORE PUSH1 0x40 PUSH2 0x18AC DUP2 DUP7 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 PUSH2 0x18BD DUP6 DUP3 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 PUSH2 0x18CE DUP6 DUP3 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 PUSH2 0x18DF DUP6 DUP3 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 PUSH2 0x18F0 DUP6 DUP3 ADD PUSH2 0x14A6 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 PUSH2 0x1902 DUP14 DUP7 DUP4 ADD PUSH2 0x13D7 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH2 0x2E0 DUP5 ADD MLOAD PUSH2 0x100 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1867 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1937 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x194E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x195F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x196D PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP5 DUP3 ADD SWAP2 POP DUP5 DUP5 ADD DUP9 DUP7 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x198D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x19B0 JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP6 ADD SWAP2 DUP6 ADD PUSH2 0x1992 JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x19EC JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x19D0 JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x19EC JUMPI DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1A0B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x1A60 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x19F7 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x1A72 DUP2 DUP6 PUSH2 0x19F7 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 ADD DUP2 DUP5 MSTORE DUP1 DUP6 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP7 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP8 ADD ADD SWAP3 POP DUP4 DUP8 ADD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1AEF JUMPI PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x1ADD DUP6 DUP4 MLOAD PUSH2 0x19BC JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1AA3 JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0xD36 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x19BC JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1B22 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x19BC JUMP JUMPDEST PUSH1 0x20 DUP4 DUP3 SUB DUP2 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1B4E JUMPI DUP7 DUP2 ADD DUP4 ADD MLOAD DUP5 DUP3 ADD DUP5 ADD MSTORE DUP3 ADD PUSH2 0x1B33 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x1B5F JUMPI PUSH1 0x0 DUP4 DUP4 DUP7 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP5 PUSH1 0x40 DUP5 ADD DUP4 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x1BB4 JUMPI DUP3 CALLDATALOAD PUSH2 0x1B9C DUP2 PUSH2 0x1F1E JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 MSTORE SWAP2 DUP4 ADD SWAP2 SWAP1 DUP4 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1B89 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1BD2 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x19F7 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1357 DUP2 DUP6 PUSH2 0x19F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C07 JUMPI PUSH2 0x1C07 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C07 JUMPI PUSH2 0x1C07 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C5A JUMPI PUSH2 0x1C5A PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1C7C JUMPI PUSH2 0x1C7C PUSH2 0x1F08 JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1C99 JUMPI PUSH2 0x1C99 PUSH2 0x1EDC JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1CC1 JUMPI PUSH2 0x1CC1 PUSH2 0x1EDC JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 PUSH1 0xFF SUB DUP3 GT ISZERO PUSH2 0x1CE7 JUMPI PUSH2 0x1CE7 PUSH2 0x1EDC JUMP JUMPDEST ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1D0C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 JUMPDEST DUP1 DUP6 GT ISZERO PUSH2 0x1D4C JUMPI DUP2 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x1D32 JUMPI PUSH2 0x1D32 PUSH2 0x1EDC JUMP JUMPDEST DUP1 DUP6 AND ISZERO PUSH2 0x1D3F JUMPI SWAP2 DUP2 MUL SWAP2 JUMPDEST SWAP4 DUP5 SHR SWAP4 SWAP1 DUP1 MUL SWAP1 PUSH2 0x1D16 JUMP JUMPDEST POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD36 PUSH1 0xFF DUP5 AND DUP4 PUSH1 0x0 DUP3 PUSH2 0x1D6D JUMPI POP PUSH1 0x1 PUSH2 0xD39 JUMP JUMPDEST DUP2 PUSH2 0x1D7A JUMPI POP PUSH1 0x0 PUSH2 0xD39 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x1D90 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x1D9A JUMPI PUSH2 0x1DB6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xD39 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x1DAB JUMPI PUSH2 0x1DAB PUSH2 0x1EDC JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0xD39 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x1DD9 JUMPI POP DUP2 DUP2 EXP PUSH2 0xD39 JUMP JUMPDEST PUSH2 0x1DE3 DUP4 DUP4 PUSH2 0x1D11 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x1DF7 JUMPI PUSH2 0x1DF7 PUSH2 0x1EDC JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1E19 JUMPI PUSH2 0x1E19 PUSH2 0x1EDC JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1E30 JUMPI PUSH2 0x1E30 PUSH2 0x1EDC JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1E52 JUMPI PUSH2 0x1E52 PUSH2 0x1EDC JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 DUP3 LT ISZERO PUSH2 0x1E74 JUMPI PUSH2 0x1E74 PUSH2 0x1EDC JUMP JUMPDEST SWAP1 SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1E91 JUMPI PUSH2 0x1E91 PUSH2 0x1EDC JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP2 EQ ISZERO PUSH2 0x1EB2 JUMPI PUSH2 0x1EB2 PUSH2 0x1EDC JUMP JUMPDEST PUSH1 0x1 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 EQ ISZERO PUSH2 0x1ED3 JUMPI PUSH2 0x1ED3 PUSH2 0x1EDC JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F30 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F30 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x49 DUP14 DUP4 DIV 0xB4 MOD RETURN CREATE SUB AND PUSH18 0xF6DABA5394014F41F4424513EE12A1878A9C DIV SLT 0xC9 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "876:16253:31:-:0;;;1642:580;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1795:30:31;;1787:67;;;;-1:-1:-1;;;1787:67:31;;1200:2:84;1787:67:31;;;1182:21:84;1239:2;1219:18;;;1212:30;1278:26;1258:18;;;1251:54;1322:18;;1787:67:31;;;;;;;;;-1:-1:-1;;;;;1872:47:31;;1864:81;;;;-1:-1:-1;;;1864:81:31;;1553:2:84;1864:81:31;;;1535:21:84;1592:2;1572:18;;;1565:30;1631:23;1611:18;;;1604:51;1672:18;;1864:81:31;1525:171:84;1864:81:31;-1:-1:-1;;;;;1963:34:31;;1955:67;;;;-1:-1:-1;;;1955:67:31;;851:2:84;1955:67:31;;;833:21:84;890:2;870:18;;;863:30;929:22;909:18;;;902:50;969:18;;1955:67:31;823:170:84;1955:67:31;-1:-1:-1;;;;;;2033:16:31;;;;;;;;2059:24;;;;;;;2093:50;;;;;;2159:56;;-1:-1:-1;;;;;2093:50:31;;;;2059:24;;;;2033:16;;;2159:56;;;;;1642:580;;;876:16253;;14:630:84;174:6;182;190;243:2;231:9;222:7;218:23;214:32;211:2;;;259:1;256;249:12;211:2;291:9;285:16;310:44;348:5;310:44;:::i;:::-;423:2;408:18;;402:25;373:5;;-1:-1:-1;436:46:84;402:25;436:46;:::i;:::-;553:2;538:18;;532:25;501:7;;-1:-1:-1;566:46:84;532:25;566:46;:::i;:::-;631:7;621:17;;;201:443;;;;;:::o;1701:144::-;-1:-1:-1;;;;;1789:31:84;;1779:42;;1769:2;;1835:1;1832;1825:12;1769:2;1759:86;:::o;:::-;876:16253:31;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@TIERS_LENGTH_6564": {
                  "entryPoint": null,
                  "id": 6564,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_calculateNumberOfUserPicks_6949": {
                  "entryPoint": 3330,
                  "id": 6949,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizeTierFraction_7482": {
                  "entryPoint": 4885,
                  "id": 7482,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizeTierFractions_7531": {
                  "entryPoint": 4712,
                  "id": 7531,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizesAwardable_6926": {
                  "entryPoint": 2632,
                  "id": 6926,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@_calculateTierIndex_7388": {
                  "entryPoint": 4553,
                  "id": 7388,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_calculate_7314": {
                  "entryPoint": 3391,
                  "id": 7314,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@_createBitMasks_7451": {
                  "entryPoint": 4292,
                  "id": 7451,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_getNormalizedBalancesAt_7112": {
                  "entryPoint": 1501,
                  "id": 7112,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_numberOfPrizesForIndex_7567": {
                  "entryPoint": 4960,
                  "id": 7567,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@calculate_6728": {
                  "entryPoint": 850,
                  "id": 6728,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@drawBuffer_6552": {
                  "entryPoint": null,
                  "id": 6552,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getDrawBuffer_6739": {
                  "entryPoint": null,
                  "id": 6739,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getNormalizedBalancesForDrawIds_6792": {
                  "entryPoint": 467,
                  "id": 6792,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getPrizeDistributionBuffer_6750": {
                  "entryPoint": null,
                  "id": 6750,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@prizeDistributionBuffer_6560": {
                  "entryPoint": null,
                  "id": 6560,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@ticket_6556": {
                  "entryPoint": null,
                  "id": 6556,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "abi_decode_address": {
                  "entryPoint": 5038,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_array_uint32_dyn_calldata": {
                  "entryPoint": 5210,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_array_uint32_fromMemory": {
                  "entryPoint": 5079,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr": {
                  "entryPoint": 5343,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr": {
                  "entryPoint": 5426,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr": {
                  "entryPoint": 5597,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 5885,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 6136,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 6436,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint104_fromMemory": {
                  "entryPoint": 5286,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint32_fromMemory": {
                  "entryPoint": 5315,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint8_fromMemory": {
                  "entryPoint": 5326,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_array_uint256_dyn": {
                  "entryPoint": 6588,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_array_uint64_dyn": {
                  "entryPoint": 6647,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6705,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__to_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6780,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6908,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6927,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint32_$dyn_calldata_ptr__to_t_array$_t_uint32_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7028,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7103,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$11467__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "allocate_memory": {
                  "entryPoint": 7217,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "allocate_memory_4542": {
                  "entryPoint": 7140,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "allocate_memory_4543": {
                  "entryPoint": 7181,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "array_allocation_size_array_array_uint64_dyn_dyn": {
                  "entryPoint": 7266,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 7302,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint64": {
                  "entryPoint": 7326,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint8": {
                  "entryPoint": 7370,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 7407,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_exp_helper": {
                  "entryPoint": 7441,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "checked_exp_t_uint256_t_uint8": {
                  "entryPoint": 7508,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_exp_unsigned": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint256": {
                  "entryPoint": 7679,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 7710,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 7733,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint8": {
                  "entryPoint": 7770,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 7805,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint32": {
                  "entryPoint": 7832,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint8": {
                  "entryPoint": 7868,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 7900,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 7922,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 7944,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_uint32": {
                  "entryPoint": 7966,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint64": {
                  "entryPoint": 7987,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:23410:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:711:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "334:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "346:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "336:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "336:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "336:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "313:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "321:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "309:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "309:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "328:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "305:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "305:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "359:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "379:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "373:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "373:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "363:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "391:13:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "401:3:84",
                                "type": "",
                                "value": "512"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "395:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "413:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "435:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "443:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "431:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "431:15:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "417:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "521:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "523:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "523:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "464:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "476:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "461:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "461:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "500:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "512:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "497:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "497:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "458:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "458:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "455:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "559:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "563:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "552:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "552:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "552:22:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "583:17:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "594:6:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "587:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "609:17:84",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "620:6:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "613:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "663:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "672:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "675:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "665:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "665:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "665:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "653:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:15:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "638:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "638:24:84"
                              },
                              "nodeType": "YulIf",
                              "src": "635:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "688:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "697:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "692:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "754:212:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "768:23:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "787:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "781:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "781:10:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "772:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "828:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "804:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "804:30:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "804:30:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "854:3:84"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "859:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "847:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "847:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "847:18:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "878:14:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "888:4:84",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_2",
                                        "nodeType": "YulTypedName",
                                        "src": "882:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "905:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "916:3:84"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "921:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "912:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "912:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "905:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "937:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "948:3:84"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "953:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "944:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "944:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "937:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "718:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "721:4:84",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "715:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "715:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "727:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "729:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "738:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "741:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "734:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "734:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "729:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "711:3:84",
                                "statements": []
                              },
                              "src": "707:259:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "975:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "984:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "975:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "259:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "267:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "275:5:84",
                            "type": ""
                          }
                        ],
                        "src": "215:781:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1084:283:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1133:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1142:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1145:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1135:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1135:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1135:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "1112:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1120:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1108:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1108:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "1127:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1104:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1104:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1097:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1097:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1094:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1158:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1181:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1168:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1168:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1158:6:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1231:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1240:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1243:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1233:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1233:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1233:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1203:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1211:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1200:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1200:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1197:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1256:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1272:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1280:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1268:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1268:17:84"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "1256:8:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1345:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1354:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1357:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1347:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1347:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1347:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "1308:6:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1320:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1323:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1316:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1316:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1304:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1304:27:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1333:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1300:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1300:38:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "1340:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1297:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1297:47:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1294:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32_dyn_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1047:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1055:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "1063:8:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1073:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1001:366:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1432:126:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1442:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1457:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1451:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1451:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1442:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1536:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1545:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1548:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1538:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1538:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1538:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1486:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1497:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1504:28:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1493:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1493:40:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1483:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1483:51:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1476:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1476:59:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1473:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint104_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1411:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1422:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1372:186:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1622:77:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1632:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1647:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1641:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1641:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1632:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1687:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1663:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1663:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1663:30:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1601:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1612:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1563:136:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1762:102:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1772:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1787:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1781:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1781:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1772:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1842:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1851:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1854:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1844:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1844:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1844:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1816:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1827:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1834:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1823:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1823:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1813:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1813:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1806:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1806:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1803:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1741:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1752:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1704:160:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1990:388:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2036:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2045:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2048:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2038:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2038:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2038:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2011:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2020:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2007:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2007:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2032:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2003:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2003:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2000:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2061:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2090:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2071:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2071:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2061:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2109:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2140:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2151:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2136:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2136:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2123:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2123:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2113:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2198:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2207:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2210:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2200:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2200:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2200:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2170:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2178:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2167:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2167:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2164:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2223:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2290:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "2301:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2286:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2286:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2310:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint32_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2249:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2249:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2227:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2237:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2327:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "2337:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2327:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2354:18:84",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "2364:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2354:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1940:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1951:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1963:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1971:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1979:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1869:509:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2540:821:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2586:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2595:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2598:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2588:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2588:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2588:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2561:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2570:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2557:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2557:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2582:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2553:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2553:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2550:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2611:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2640:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2621:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2621:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2611:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2659:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2690:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2701:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2686:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2686:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2673:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2673:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2663:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2714:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2724:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2718:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2769:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2778:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2781:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2771:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2771:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2771:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2757:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2765:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2754:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2754:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2751:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2794:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2861:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "2872:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2857:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2857:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2881:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint32_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2820:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2820:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2798:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2808:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2898:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "2908:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2898:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2925:18:84",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "2935:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2925:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2952:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2985:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2996:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2981:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2981:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2968:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2968:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2956:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3029:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3038:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3041:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3031:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3031:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3031:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3015:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3025:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3012:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3012:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3009:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3054:34:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3068:9:84"
                                  },
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3079:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3064:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3064:24:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3058:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3136:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3145:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3148:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3138:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3138:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3138:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3115:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3119:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3111:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3111:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3126:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3107:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3107:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3100:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3100:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3097:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3161:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3188:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3175:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3175:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3165:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3218:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3227:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3230:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3220:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3220:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3220:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3206:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3214:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3203:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3203:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3200:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3284:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3293:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3296:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3286:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3286:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3286:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3257:2:84"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "3261:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3253:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3253:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3270:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3249:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3249:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3275:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3246:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3246:37:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3243:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3309:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3323:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3327:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3319:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3319:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "3309:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3339:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "3349:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "3339:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2474:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2485:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2497:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2505:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2513:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2521:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2529:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2383:978:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3485:1707:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3495:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3505:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3499:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3552:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3561:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3564:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3554:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3554:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3554:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3527:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3536:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3523:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3523:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3548:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3519:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3519:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3516:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3577:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3604:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3591:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3591:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3581:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3623:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3633:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3627:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3678:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3687:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3690:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3680:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3680:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3680:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3666:6:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3674:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3663:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3663:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3660:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3703:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3717:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3728:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3713:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3713:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "3707:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3783:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3792:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3795:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3785:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3785:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3785:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "3762:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3766:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3758:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3758:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3773:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3754:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3754:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3747:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3747:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3744:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3808:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3831:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3818:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3818:16:84"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "3812:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3843:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3919:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "3870:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3870:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3854:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3854:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "3847:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3932:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "3945:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3936:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3964:3:84"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3969:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3957:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3957:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3957:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3981:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3992:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3997:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3988:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3988:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "3981:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4009:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "4024:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4028:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4020:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4020:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "4013:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4085:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4094:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4097:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4087:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4087:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4087:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "4054:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4062:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "4065:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "4058:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4058:10:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4050:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4050:19:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4071:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4046:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4046:28:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "4076:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4043:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4043:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4040:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4110:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4119:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4114:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4174:988:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4188:36:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "4220:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "4207:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4207:17:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "innerOffset",
                                        "nodeType": "YulTypedName",
                                        "src": "4192:11:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4260:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4269:1:84",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4272:1:84",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "4262:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4262:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4262:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "innerOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "4243:11:84"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4256:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "4240:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4240:19:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "4237:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4289:30:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "4303:2:84"
                                        },
                                        {
                                          "name": "innerOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "4307:11:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4299:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4299:20:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "4293:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4369:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4378:1:84",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4381:1:84",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "4371:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4371:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4371:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4350:2:84"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "4354:2:84",
                                                  "type": "",
                                                  "value": "63"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4346:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4346:11:84"
                                            },
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "4359:7:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "slt",
                                            "nodeType": "YulIdentifier",
                                            "src": "4342:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4342:25:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "iszero",
                                        "nodeType": "YulIdentifier",
                                        "src": "4335:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4335:33:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "4332:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4398:35:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "4425:2:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "4429:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4421:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4421:11:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "4408:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4408:25:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "4402:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4446:82:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "4524:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                            "nodeType": "YulIdentifier",
                                            "src": "4475:48:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4475:52:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "allocate_memory",
                                        "nodeType": "YulIdentifier",
                                        "src": "4459:15:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4459:69:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "dst_2",
                                        "nodeType": "YulTypedName",
                                        "src": "4450:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4541:18:84",
                                    "value": {
                                      "name": "dst_2",
                                      "nodeType": "YulIdentifier",
                                      "src": "4554:5:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "dst_3",
                                        "nodeType": "YulTypedName",
                                        "src": "4545:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4579:5:84"
                                        },
                                        {
                                          "name": "_6",
                                          "nodeType": "YulIdentifier",
                                          "src": "4586:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4572:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4572:17:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4572:17:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4602:23:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4615:5:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4622:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4611:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4611:14:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "4602:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4638:24:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "_5",
                                          "nodeType": "YulIdentifier",
                                          "src": "4655:2:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4659:2:84",
                                          "type": "",
                                          "value": "64"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4651:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4651:11:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "src_1",
                                        "nodeType": "YulTypedName",
                                        "src": "4642:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4720:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4729:1:84",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4732:1:84",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "4722:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4722:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4722:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4689:2:84"
                                                },
                                                {
                                                  "arguments": [
                                                    {
                                                      "kind": "number",
                                                      "nodeType": "YulLiteral",
                                                      "src": "4697:1:84",
                                                      "type": "",
                                                      "value": "5"
                                                    },
                                                    {
                                                      "name": "_6",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "4700:2:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "shl",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "4693:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "4693:10:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4685:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4685:19:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4706:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4681:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4681:28:84"
                                        },
                                        {
                                          "name": "dataEnd",
                                          "nodeType": "YulIdentifier",
                                          "src": "4711:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "4678:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4678:41:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "4675:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4749:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "4760:1:84",
                                      "type": "",
                                      "value": "0"
                                    },
                                    "variables": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulTypedName",
                                        "src": "4753:3:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4829:228:84",
                                      "statements": [
                                        {
                                          "nodeType": "YulVariableDeclaration",
                                          "src": "4847:32:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "src_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "4873:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "calldataload",
                                              "nodeType": "YulIdentifier",
                                              "src": "4860:12:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4860:19:84"
                                          },
                                          "variables": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulTypedName",
                                              "src": "4851:5:84",
                                              "type": ""
                                            }
                                          ]
                                        },
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4920:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "validator_revert_uint64",
                                              "nodeType": "YulIdentifier",
                                              "src": "4896:23:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4896:30:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4896:30:84"
                                        },
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "dst_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "4950:5:84"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4957:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mstore",
                                              "nodeType": "YulIdentifier",
                                              "src": "4943:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4943:20:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4943:20:84"
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "4980:23:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "dst_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "4993:5:84"
                                              },
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "5000:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4989:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4989:14:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "dst_2",
                                              "nodeType": "YulIdentifier",
                                              "src": "4980:5:84"
                                            }
                                          ]
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "5020:23:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "src_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "5033:5:84"
                                              },
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "5040:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5029:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5029:14:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "src_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "5020:5:84"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4785:3:84"
                                        },
                                        {
                                          "name": "_6",
                                          "nodeType": "YulIdentifier",
                                          "src": "4790:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "lt",
                                        "nodeType": "YulIdentifier",
                                        "src": "4782:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4782:11:84"
                                    },
                                    "nodeType": "YulForLoop",
                                    "post": {
                                      "nodeType": "YulBlock",
                                      "src": "4794:22:84",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "4796:18:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "i_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "4807:3:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4812:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4803:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4803:11:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "i_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "4796:3:84"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "pre": {
                                      "nodeType": "YulBlock",
                                      "src": "4778:3:84",
                                      "statements": []
                                    },
                                    "src": "4774:283:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "5077:3:84"
                                        },
                                        {
                                          "name": "dst_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "5082:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5070:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5070:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5070:18:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5101:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "5112:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5117:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5108:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5108:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "5101:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5133:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "5144:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5149:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5140:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5140:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "5133:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4140:1:84"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "4143:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4137:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4137:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4147:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4149:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4158:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4161:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4154:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4154:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4149:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4133:3:84",
                                "statements": []
                              },
                              "src": "4129:1033:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5171:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "5181:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5171:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3451:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3462:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3474:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3366:1826:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5326:1606:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5336:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5346:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5340:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5393:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5402:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5405:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5395:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5395:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5395:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5368:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5377:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5364:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5364:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5389:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5360:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5360:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5357:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5418:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5438:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5432:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5432:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "5422:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5491:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5500:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5503:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5493:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5493:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5493:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5463:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5471:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5460:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5460:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5457:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5516:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5530:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5541:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5526:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5526:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "5520:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5596:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5605:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5608:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5598:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5598:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5598:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "5575:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5579:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5571:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5571:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5586:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "5567:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5567:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "5560:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5560:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5557:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5621:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5637:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5631:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5631:9:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "5625:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5649:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "5725:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "5676:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5676:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5660:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5660:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "5653:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5738:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "5751:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5742:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "5770:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5775:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5763:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5763:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5763:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5787:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "5798:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5803:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5794:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5794:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "5787:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5815:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5830:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5834:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5826:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5826:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "5819:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5846:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5856:4:84",
                                "type": "",
                                "value": "0xa0"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "5850:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5915:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5924:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5927:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5917:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5917:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5917:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "5883:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "5891:2:84"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "5895:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "5887:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5887:11:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5879:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5879:20:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5901:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5875:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5875:29:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "5906:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5872:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5872:42:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5869:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5940:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5949:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "5944:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5959:12:84",
                              "value": {
                                "name": "i",
                                "nodeType": "YulIdentifier",
                                "src": "5970:1:84"
                              },
                              "variables": [
                                {
                                  "name": "i_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5963:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6031:871:84",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "6075:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "6084:1:84"
                                              },
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "6087:1:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "6077:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6077:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "6077:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "6056:7:84"
                                            },
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6065:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "sub",
                                            "nodeType": "YulIdentifier",
                                            "src": "6052:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6052:17:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6071:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "slt",
                                        "nodeType": "YulIdentifier",
                                        "src": "6048:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6048:26:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "6045:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6104:35:84",
                                    "value": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "allocate_memory_4542",
                                        "nodeType": "YulIdentifier",
                                        "src": "6117:20:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6117:22:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "6108:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "6159:5:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6172:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "6166:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6166:10:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6152:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6152:25:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6152:25:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6190:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6215:3:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "6220:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6211:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6211:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6205:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6205:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulTypedName",
                                        "src": "6194:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6261:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "6237:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6237:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6237:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6293:5:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "6300:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6289:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6289:14:84"
                                        },
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6305:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6282:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6282:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6282:31:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6326:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "6336:2:84",
                                      "type": "",
                                      "value": "64"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "6330:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6351:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6376:3:84"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "6381:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6372:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6372:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6366:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6366:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_2",
                                        "nodeType": "YulTypedName",
                                        "src": "6355:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "6422:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint64",
                                        "nodeType": "YulIdentifier",
                                        "src": "6398:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6398:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6398:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6454:5:84"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "6461:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6450:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6450:14:84"
                                        },
                                        {
                                          "name": "value_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "6466:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6443:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6443:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6443:31:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6487:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "6497:2:84",
                                      "type": "",
                                      "value": "96"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "6491:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6512:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6537:3:84"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "6542:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6533:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6533:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6527:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6527:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulTypedName",
                                        "src": "6516:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "6583:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint64",
                                        "nodeType": "YulIdentifier",
                                        "src": "6559:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6559:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6559:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6615:5:84"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "6622:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6611:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6611:14:84"
                                        },
                                        {
                                          "name": "value_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "6627:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6604:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6604:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6604:31:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6648:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "6658:3:84",
                                      "type": "",
                                      "value": "128"
                                    },
                                    "variables": [
                                      {
                                        "name": "_7",
                                        "nodeType": "YulTypedName",
                                        "src": "6652:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6674:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6699:3:84"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "6704:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6695:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6695:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6689:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6689:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_4",
                                        "nodeType": "YulTypedName",
                                        "src": "6678:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6745:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "6721:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6721:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6721:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6777:5:84"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "6784:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6773:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6773:14:84"
                                        },
                                        {
                                          "name": "value_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6789:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6766:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6766:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6766:31:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "6817:3:84"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "6822:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6810:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6810:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6810:18:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6841:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "6852:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6857:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6848:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6848:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "6841:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6873:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "6884:3:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6889:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6880:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6880:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "6873:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5991:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5996:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5988:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5988:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "6000:22:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6002:18:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6013:3:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6018:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6009:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6009:11:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6002:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "5984:3:84",
                                "statements": []
                              },
                              "src": "5980:922:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6911:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "6921:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6911:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5292:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5303:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5315:6:84",
                            "type": ""
                          }
                        ],
                        "src": "5197:1735:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7079:1796:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7089:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7099:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7093:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7146:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7155:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7158:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7148:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7148:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7148:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7121:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7130:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7117:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7117:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7142:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7113:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7113:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7110:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7171:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7191:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7185:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7185:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "7175:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7244:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7253:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7256:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7246:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7246:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7246:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "7216:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7224:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7213:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7213:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7210:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7269:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7283:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "7294:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7279:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7279:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "7273:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7349:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7358:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7361:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7351:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7351:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7351:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "7328:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "7332:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "7324:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7324:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7339:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "7320:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7320:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "7313:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7313:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7310:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7374:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "7390:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7384:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7384:9:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "7378:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7402:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "7478:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "7429:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7429:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "7413:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7413:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "7406:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7491:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "7504:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7495:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "7523:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "7528:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7516:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7516:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7516:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7540:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "7551:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7556:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7547:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7547:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "7540:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7568:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "7583:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7587:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7579:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7579:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "7572:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7599:16:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7609:6:84",
                                "type": "",
                                "value": "0x0300"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "7603:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7670:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7679:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7682:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7672:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7672:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7672:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "7638:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "7646:2:84"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "7650:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "7642:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7642:11:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "7634:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7634:20:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7656:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7630:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7630:29:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "7661:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7627:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7627:42:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7624:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7695:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7704:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "7699:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7714:12:84",
                              "value": {
                                "name": "i",
                                "nodeType": "YulIdentifier",
                                "src": "7725:1:84"
                              },
                              "variables": [
                                {
                                  "name": "i_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7718:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7786:1059:84",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "7830:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "7839:1:84"
                                              },
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "7842:1:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "7832:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7832:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "7832:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "7811:7:84"
                                            },
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "7820:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "sub",
                                            "nodeType": "YulIdentifier",
                                            "src": "7807:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7807:17:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "7826:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "slt",
                                        "nodeType": "YulIdentifier",
                                        "src": "7803:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7803:26:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "7800:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "7859:35:84",
                                    "value": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "allocate_memory_4543",
                                        "nodeType": "YulIdentifier",
                                        "src": "7872:20:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7872:22:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "7863:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "7914:5:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "7949:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint8_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "7921:27:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7921:32:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7907:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7907:47:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7907:47:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "7978:5:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "7985:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "7974:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7974:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8022:3:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8027:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8018:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8018:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint8_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "7990:27:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7990:41:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7967:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7967:65:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7967:65:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8045:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8055:2:84",
                                      "type": "",
                                      "value": "64"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "8049:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8081:5:84"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "8088:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8077:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8077:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8126:3:84"
                                                },
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8131:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8122:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8122:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8093:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8093:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8070:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8070:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8070:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8149:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8159:2:84",
                                      "type": "",
                                      "value": "96"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "8153:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8185:5:84"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "8192:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8181:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8181:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8230:3:84"
                                                },
                                                {
                                                  "name": "_6",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8235:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8226:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8226:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8197:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8197:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8174:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8174:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8174:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8253:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8263:3:84",
                                      "type": "",
                                      "value": "128"
                                    },
                                    "variables": [
                                      {
                                        "name": "_7",
                                        "nodeType": "YulTypedName",
                                        "src": "8257:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8290:5:84"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "8297:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8286:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8286:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8335:3:84"
                                                },
                                                {
                                                  "name": "_7",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8340:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8331:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8331:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8302:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8302:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8279:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8279:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8279:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8358:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8368:3:84",
                                      "type": "",
                                      "value": "160"
                                    },
                                    "variables": [
                                      {
                                        "name": "_8",
                                        "nodeType": "YulTypedName",
                                        "src": "8362:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8395:5:84"
                                            },
                                            {
                                              "name": "_8",
                                              "nodeType": "YulIdentifier",
                                              "src": "8402:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8391:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8391:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8440:3:84"
                                                },
                                                {
                                                  "name": "_8",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8445:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8436:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8436:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8407:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8407:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8384:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8384:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8384:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8463:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8473:3:84",
                                      "type": "",
                                      "value": "192"
                                    },
                                    "variables": [
                                      {
                                        "name": "_9",
                                        "nodeType": "YulTypedName",
                                        "src": "8467:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8500:5:84"
                                            },
                                            {
                                              "name": "_9",
                                              "nodeType": "YulIdentifier",
                                              "src": "8507:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8496:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8496:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8546:3:84"
                                                },
                                                {
                                                  "name": "_9",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8551:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8542:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8542:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint104_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8512:29:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8512:43:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8489:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8489:67:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8489:67:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8569:14:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8580:3:84",
                                      "type": "",
                                      "value": "224"
                                    },
                                    "variables": [
                                      {
                                        "name": "_10",
                                        "nodeType": "YulTypedName",
                                        "src": "8573:3:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8607:5:84"
                                            },
                                            {
                                              "name": "_10",
                                              "nodeType": "YulIdentifier",
                                              "src": "8614:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8603:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8603:15:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8659:3:84"
                                                },
                                                {
                                                  "name": "_10",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8664:3:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8655:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8655:13:84"
                                            },
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "8670:7:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_array_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8620:34:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8620:58:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8596:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8596:83:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8596:83:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8703:5:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "8710:6:84",
                                              "type": "",
                                              "value": "0x0100"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8699:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8699:18:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8729:3:84"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "8734:3:84",
                                                  "type": "",
                                                  "value": "736"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8725:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8725:13:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "8719:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8719:20:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8692:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8692:48:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8692:48:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "8760:3:84"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "8765:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8753:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8753:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8753:18:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8784:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "8795:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8800:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8791:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8791:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "8784:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8816:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "8827:3:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "8832:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8823:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8823:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "8816:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7746:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "7751:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7743:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7743:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "7755:22:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7757:18:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7768:3:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7773:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7764:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7764:11:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7757:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "7739:3:84",
                                "statements": []
                              },
                              "src": "7735:1110:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8854:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "8864:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "8854:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7045:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "7056:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7068:6:84",
                            "type": ""
                          }
                        ],
                        "src": "6937:1938:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8986:795:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8996:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9006:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9000:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9053:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9062:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9065:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9055:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9055:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9055:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "9028:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9037:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "9024:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9024:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9049:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9020:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9020:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9017:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9078:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9098:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9092:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9092:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "9082:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9151:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9160:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9163:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9153:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9153:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9153:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "9123:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9131:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9120:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9120:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9117:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9176:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9190:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "9201:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9186:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9186:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "9180:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9256:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9265:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9268:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9258:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9258:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9258:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "9235:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9239:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "9231:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9231:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "9246:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9227:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9227:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "9220:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9220:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9217:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9281:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "9297:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9291:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9291:9:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "9285:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9309:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "9385:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "9336:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9336:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "9320:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9320:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "9313:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9398:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "9411:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9402:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "9430:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9435:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9423:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9423:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9423:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9447:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "9458:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9463:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9454:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9454:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "9447:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9475:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "9490:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9494:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9486:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9486:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "9479:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9551:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9560:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9563:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9553:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9553:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9553:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "9520:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "9528:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "9531:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "9524:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "9524:10:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "9516:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9516:19:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9537:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9512:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9512:28:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "9542:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9509:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9509:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9506:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9576:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9585:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "9580:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9640:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "9661:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "9672:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "9666:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9666:10:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9654:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9654:23:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9654:23:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9690:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "9701:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "9706:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9697:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9697:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "9690:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9722:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "9733:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "9738:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9729:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9729:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "9722:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "9606:1:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9609:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9603:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9603:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "9613:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9615:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "9624:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9627:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9620:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9620:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "9615:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "9599:3:84",
                                "statements": []
                              },
                              "src": "9595:156:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9760:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "9770:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "9760:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8952:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "8963:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8975:6:84",
                            "type": ""
                          }
                        ],
                        "src": "8880:901:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9847:374:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9857:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9877:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9871:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9871:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "9861:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "9899:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9904:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9892:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9892:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9892:19:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9920:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9930:4:84",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9924:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9943:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "9954:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9959:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9950:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9950:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "9943:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9971:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9989:5:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9996:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9985:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9985:14:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "9975:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10008:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10017:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "10012:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10076:120:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10097:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "10108:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "10102:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10102:13:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10090:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10090:26:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10090:26:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10129:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10140:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10145:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10136:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10136:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "10129:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10161:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "10175:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10183:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10171:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10171:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10161:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "10038:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10041:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10035:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10035:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "10049:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10051:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "10060:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10063:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10056:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10056:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "10051:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "10031:3:84",
                                "statements": []
                              },
                              "src": "10027:169:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10205:10:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "10212:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "10205:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint256_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "9824:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "9831:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "9839:3:84",
                            "type": ""
                          }
                        ],
                        "src": "9786:435:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10286:399:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10296:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "10316:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10310:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10310:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "10300:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10338:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10343:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10331:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10331:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10331:19:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10359:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10369:4:84",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "10363:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10382:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10393:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10398:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10389:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10389:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "10382:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10410:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "10428:5:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10435:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10424:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10424:14:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "10414:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10447:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10456:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "10451:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10515:145:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10536:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10551:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "10545:5:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10545:13:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "10560:18:84",
                                              "type": "",
                                              "value": "0xffffffffffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "10541:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10541:38:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10529:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10529:51:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10529:51:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10593:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10604:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10609:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10600:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10600:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "10593:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10625:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "10639:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10647:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10635:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10635:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10625:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "10477:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10480:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10474:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10474:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "10488:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10490:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "10499:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10502:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10495:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10495:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "10490:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "10470:3:84",
                                "statements": []
                              },
                              "src": "10466:194:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10669:10:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "10676:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "10669:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint64_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "10263:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "10270:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "10278:3:84",
                            "type": ""
                          }
                        ],
                        "src": "10226:459:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10809:145:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10826:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "10839:2:84",
                                            "type": "",
                                            "value": "96"
                                          },
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "10843:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "10835:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10835:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10852:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10831:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10831:88:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10819:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10819:101:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10819:101:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10929:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10940:3:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10945:2:84",
                                    "type": "",
                                    "value": "20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10936:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10936:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "10929:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "10785:3:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10790:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "10801:3:84",
                            "type": ""
                          }
                        ],
                        "src": "10690:264:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11212:326:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11229:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11244:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11252:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11240:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11240:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11222:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11222:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11222:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11316:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11327:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11312:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11312:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11332:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11305:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11305:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11305:30:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11344:69:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11386:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11398:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11409:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11394:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11394:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "11358:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11358:55:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11348:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11433:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11444:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11429:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11429:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11453:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11461:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "11449:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11449:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11422:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11422:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11422:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11481:51:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "11517:6:84"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11525:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "11489:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11489:43:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11481:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11165:9:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "11176:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "11184:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11192:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11203:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10959:579:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11744:702:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11754:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11764:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11758:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11775:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11793:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11804:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11789:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11789:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11779:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11823:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11834:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11816:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11816:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11816:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11846:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "11857:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "11850:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11872:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11892:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11886:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11886:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "11876:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11915:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11923:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11908:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11908:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11908:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11939:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11950:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11961:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11946:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11946:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "11939:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11973:53:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11995:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "12010:1:84",
                                            "type": "",
                                            "value": "5"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "12013:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "12006:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "12006:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11991:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11991:30:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12023:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11987:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11987:39:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_2",
                                  "nodeType": "YulTypedName",
                                  "src": "11977:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12035:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12053:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12061:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12049:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12049:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "12039:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12073:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12082:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "12077:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12141:276:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "12162:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_2",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "12175:6:84"
                                                },
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "12183:9:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "sub",
                                                "nodeType": "YulIdentifier",
                                                "src": "12171:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "12171:22:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "12195:66:84",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "12167:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12167:95:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12155:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12155:108:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12155:108:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12276:61:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "12321:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "12315:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12315:13:84"
                                        },
                                        {
                                          "name": "tail_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "12330:6:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_array_uint256_dyn",
                                        "nodeType": "YulIdentifier",
                                        "src": "12286:28:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12286:51:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "tail_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "12276:6:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12350:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "12364:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "12372:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12360:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12360:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "12350:6:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12388:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "12399:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "12404:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12395:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12395:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "12388:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "12103:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "12106:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12100:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12100:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "12114:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12116:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "12125:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12128:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12121:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12121:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "12116:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "12096:3:84",
                                "statements": []
                              },
                              "src": "12092:325:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12426:14:84",
                              "value": {
                                "name": "tail_2",
                                "nodeType": "YulIdentifier",
                                "src": "12434:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12426:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__to_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11713:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11724:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11735:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11543:903:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12602:110:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12619:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12630:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12612:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12612:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12612:21:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12642:64:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12679:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12691:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12702:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12687:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12687:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint256_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "12650:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12650:56:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12642:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12571:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12582:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12593:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12451:261:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12914:652:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12931:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12942:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12924:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12924:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12924:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12954:70:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12997:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13009:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13020:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13005:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13005:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint256_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "12968:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12968:56:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12958:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13033:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13043:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13037:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13065:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13076:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13061:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13061:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13085:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13093:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "13081:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13081:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13054:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13054:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13054:50:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13113:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13133:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "13127:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13127:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "13117:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13156:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "13164:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13149:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13149:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13149:22:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13180:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13189:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "13184:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13249:87:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13278:6:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13286:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "13274:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "13274:14:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "13290:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "13270:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "13270:23:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value1",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "13309:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "13317:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "13305:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "13305:14:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13321:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "13301:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "13301:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "13295:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "13295:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13263:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13263:63:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13263:63:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "13210:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "13213:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13207:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13207:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "13221:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "13223:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "13232:1:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "13235:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "13228:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13228:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "13223:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "13203:3:84",
                                "statements": []
                              },
                              "src": "13199:137:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13370:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13399:6:84"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13407:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "13395:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "13395:19:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "13416:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "13391:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "13391:28:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13421:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13384:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13384:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13384:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "13351:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "13354:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13348:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13348:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13345:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13442:118:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13458:6:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "13474:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "13482:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "13470:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "13470:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13487:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "13466:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13466:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13454:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13454:101:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13557:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13450:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13450:110:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13442:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12875:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "12886:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12894:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12905:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12717:849:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13730:534:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13740:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13750:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13744:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13761:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13779:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13790:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13775:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13775:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13765:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13809:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13820:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13802:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13802:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13802:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13832:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "13843:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "13836:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13865:6:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13873:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13858:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13858:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13858:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13889:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13900:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13911:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13896:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13896:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "13889:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13923:20:84",
                              "value": {
                                "name": "value0",
                                "nodeType": "YulIdentifier",
                                "src": "13937:6:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "13927:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13952:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13961:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "13956:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14020:218:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14034:33:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14060:6:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "14047:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14047:20:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "14038:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "14104:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "14080:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14080:30:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14080:30:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14130:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "14139:5:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "14146:10:84",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "14135:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14135:22:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14123:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14123:35:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14123:35:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14171:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14182:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14187:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14178:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14178:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "14171:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14203:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14217:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14225:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14213:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14213:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "14203:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "13982:1:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13985:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13979:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13979:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "13993:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "13995:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14004:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14007:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14000:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14000:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "13995:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "13975:3:84",
                                "statements": []
                              },
                              "src": "13971:267:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14247:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "14255:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14247:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint32_$dyn_calldata_ptr__to_t_array$_t_uint32_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13691:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "13702:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "13710:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13721:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13571:693:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14494:234:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14511:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14522:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14504:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14504:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14504:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14534:69:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14576:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14588:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14599:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14584:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14584:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "14548:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14548:55:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "14538:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14623:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14634:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14619:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14619:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "14643:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14651:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "14639:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14639:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14612:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14612:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14612:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14671:51:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14707:6:84"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14715:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "14679:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14679:43:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14671:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14455:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "14466:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14474:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14485:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14269:459:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14860:144:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "14870:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14882:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14893:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14878:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14878:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14870:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14912:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14923:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14905:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14905:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14905:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14950:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14961:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14946:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14946:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "14970:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14978:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "14966:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14966:31:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14939:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14939:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14939:59:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14821:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "14832:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14840:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14851:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14733:271:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15131:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15141:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15153:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15164:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15149:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15149:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15141:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15183:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15198:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15206:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15194:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15194:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15176:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15176:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15176:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15100:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15111:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15122:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15009:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15396:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15406:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15418:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15429:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15414:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15414:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15406:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15448:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15463:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15471:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15459:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15459:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15441:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15441:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15441:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$11467__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15365:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15376:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15387:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15261:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15644:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15654:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15666:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15677:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15662:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15662:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15654:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15696:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15711:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15719:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15707:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15707:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15689:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15689:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15689:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15613:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15624:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15635:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15526:243:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15948:171:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15965:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15976:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15958:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15958:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15958:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15999:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16010:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15995:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15995:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16015:2:84",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15988:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15988:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15988:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16038:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16049:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16034:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16034:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f647261772d65787069726564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16054:23:84",
                                    "type": "",
                                    "value": "DrawCalc/draw-expired"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16027:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16027:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16027:51:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16087:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16099:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16110:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16095:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16095:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16087:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15925:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15939:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15774:345:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16298:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16315:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16326:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16308:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16308:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16308:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16349:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16360:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16345:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16345:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16365:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16338:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16338:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16338:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16388:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16399:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16384:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16384:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16404:34:84",
                                    "type": "",
                                    "value": "DrawCalc/invalid-pick-indices-le"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16377:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16377:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16377:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16459:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16470:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16455:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16455:18:84"
                                  },
                                  {
                                    "hexValue": "6e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16475:6:84",
                                    "type": "",
                                    "value": "ngth"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16448:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16448:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16448:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16491:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16503:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16514:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16499:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16499:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16491:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16275:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16289:4:84",
                            "type": ""
                          }
                        ],
                        "src": "16124:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16703:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16720:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16731:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16713:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16713:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16713:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16754:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16765:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16750:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16750:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16770:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16743:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16743:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16743:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16793:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16804:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16789:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16789:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f657863656564732d6d61782d757365722d7069636b73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16809:33:84",
                                    "type": "",
                                    "value": "DrawCalc/exceeds-max-user-picks"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16782:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16782:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16782:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16852:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16864:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16875:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16860:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16860:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16852:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16680:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16694:4:84",
                            "type": ""
                          }
                        ],
                        "src": "16529:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17063:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17080:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17091:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17073:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17073:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17073:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17114:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17125:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17110:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17110:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17130:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17103:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17103:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17103:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17153:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17164:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17149:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17149:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7069636b732d617363656e64696e67",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17169:26:84",
                                    "type": "",
                                    "value": "DrawCalc/picks-ascending"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17142:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17142:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17142:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17205:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17217:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17228:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17213:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17213:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17205:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17040:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17054:4:84",
                            "type": ""
                          }
                        ],
                        "src": "16889:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17416:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17433:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17444:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17426:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17426:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17426:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17467:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17478:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17463:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17463:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17483:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17456:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17456:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17456:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17506:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17517:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17502:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17502:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e73756666696369656e742d757365722d7069636b73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17522:34:84",
                                    "type": "",
                                    "value": "DrawCalc/insufficient-user-picks"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17495:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17495:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17495:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17566:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17578:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17589:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17574:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17574:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17566:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17393:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17407:4:84",
                            "type": ""
                          }
                        ],
                        "src": "17242:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17700:87:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "17710:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17722:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17733:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17718:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17718:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17710:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17752:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "17767:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17775:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "17763:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17763:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17745:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17745:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17745:36:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17669:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "17680:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17691:4:84",
                            "type": ""
                          }
                        ],
                        "src": "17603:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17838:207:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "17848:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17864:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "17858:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17858:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "17848:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17876:35:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "17898:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17906:4:84",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17894:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17894:17:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "17880:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "17986:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "17988:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17988:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17988:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "17929:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17941:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "17926:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17926:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "17965:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "17977:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "17962:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17962:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "17923:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17923:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "17920:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18024:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18028:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18017:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18017:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18017:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory_4542",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "17827:6:84",
                            "type": ""
                          }
                        ],
                        "src": "17792:253:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18096:209:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "18106:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18122:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18116:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18116:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "18106:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18134:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18156:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18164:6:84",
                                    "type": "",
                                    "value": "0x0120"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18152:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18152:19:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "18138:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18246:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "18248:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18248:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18248:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18189:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18201:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18186:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18186:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18225:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18237:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18222:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18222:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "18183:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18183:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "18180:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18284:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18288:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18277:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18277:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18277:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory_4543",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "18085:6:84",
                            "type": ""
                          }
                        ],
                        "src": "18050:255:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18355:289:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "18365:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18381:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18375:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18375:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "18365:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18393:117:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18415:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "18431:4:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18437:2:84",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "18427:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18427:13:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18442:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "18423:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18423:86:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18411:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18411:99:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "18397:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18585:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "18587:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18587:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18587:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18528:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18540:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18525:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18525:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18564:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18576:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18561:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18561:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "18522:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18522:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "18519:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18623:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18627:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18616:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18616:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18616:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "18335:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "18344:6:84",
                            "type": ""
                          }
                        ],
                        "src": "18310:334:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18727:114:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18771:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "18773:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18773:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18773:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "18743:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18751:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "18740:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18740:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "18737:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18802:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18818:1:84",
                                        "type": "",
                                        "value": "5"
                                      },
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "18821:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "18814:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18814:14:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18830:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18810:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18810:25:84"
                              },
                              "variableNames": [
                                {
                                  "name": "size",
                                  "nodeType": "YulIdentifier",
                                  "src": "18802:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "18707:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "18718:4:84",
                            "type": ""
                          }
                        ],
                        "src": "18649:192:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18894:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18921:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "18923:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18923:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18923:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "18910:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "18917:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "18913:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18913:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "18907:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18907:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "18904:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18952:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "18963:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "18966:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18959:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18959:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "18952:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "18877:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "18880:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "18886:3:84",
                            "type": ""
                          }
                        ],
                        "src": "18846:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19026:189:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19036:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "19046:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19040:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19073:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "19088:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19091:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19084:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19084:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19077:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19103:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19118:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19121:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19114:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19114:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19107:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19158:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "19160:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19160:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19160:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19139:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19148:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19152:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "19144:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19144:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "19136:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19136:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "19133:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19189:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19200:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19205:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19196:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19196:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "19189:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "19009:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "19012:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "19018:3:84",
                            "type": ""
                          }
                        ],
                        "src": "18979:236:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19266:158:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19276:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "19291:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19294:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19287:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19287:12:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19280:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19308:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19323:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19326:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19319:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19319:12:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19312:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19367:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "19369:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19369:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19369:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19346:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19355:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19361:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "19351:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19351:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "19343:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19343:23:84"
                              },
                              "nodeType": "YulIf",
                              "src": "19340:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19398:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19409:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19414:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19405:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19405:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "19398:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "19249:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "19252:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "19258:3:84",
                            "type": ""
                          }
                        ],
                        "src": "19220:204:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19475:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19506:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19527:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19530:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "19520:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19520:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19520:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19628:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19631:4:84",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "19621:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19621:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19621:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19656:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19659:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "19649:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19649:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19649:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19495:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "19488:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19488:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "19485:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19683:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "19692:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19695:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "19688:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19688:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "19683:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "19460:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "19463:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "19469:1:84",
                            "type": ""
                          }
                        ],
                        "src": "19429:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19772:418:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19782:16:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "19797:1:84",
                                "type": "",
                                "value": "1"
                              },
                              "variables": [
                                {
                                  "name": "power_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19786:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19807:16:84",
                              "value": {
                                "name": "power_1",
                                "nodeType": "YulIdentifier",
                                "src": "19816:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "19807:5:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19832:13:84",
                              "value": {
                                "name": "_base",
                                "nodeType": "YulIdentifier",
                                "src": "19840:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "base",
                                  "nodeType": "YulIdentifier",
                                  "src": "19832:4:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19896:288:84",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "20001:22:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [],
                                            "functionName": {
                                              "name": "panic_error_0x11",
                                              "nodeType": "YulIdentifier",
                                              "src": "20003:16:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "20003:18:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "20003:18:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "19916:4:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "19926:66:84",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                            },
                                            {
                                              "name": "base",
                                              "nodeType": "YulIdentifier",
                                              "src": "19994:4:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "div",
                                            "nodeType": "YulIdentifier",
                                            "src": "19922:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "19922:77:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "19913:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19913:87:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "19910:2:84"
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "20062:29:84",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "20064:25:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "power",
                                                "nodeType": "YulIdentifier",
                                                "src": "20077:5:84"
                                              },
                                              {
                                                "name": "base",
                                                "nodeType": "YulIdentifier",
                                                "src": "20084:4:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "20073:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "20073:16:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "power",
                                              "nodeType": "YulIdentifier",
                                              "src": "20064:5:84"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "20043:8:84"
                                        },
                                        {
                                          "name": "power_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "20053:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "20039:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20039:22:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "20036:2:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20104:23:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "20116:4:84"
                                        },
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "20122:4:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mul",
                                        "nodeType": "YulIdentifier",
                                        "src": "20112:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20112:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "base",
                                        "nodeType": "YulIdentifier",
                                        "src": "20104:4:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20140:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "power_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "20156:7:84"
                                        },
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "20165:8:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "shr",
                                        "nodeType": "YulIdentifier",
                                        "src": "20152:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20152:22:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "exponent",
                                        "nodeType": "YulIdentifier",
                                        "src": "20140:8:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "19865:8:84"
                                  },
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19875:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "19862:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19862:21:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "19884:3:84",
                                "statements": []
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "19858:3:84",
                                "statements": []
                              },
                              "src": "19854:330:84"
                            }
                          ]
                        },
                        "name": "checked_exp_helper",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "_base",
                            "nodeType": "YulTypedName",
                            "src": "19736:5:84",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "19743:8:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "19756:5:84",
                            "type": ""
                          },
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "19763:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19708:482:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20263:72:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20273:56:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "20303:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "exponent",
                                        "nodeType": "YulIdentifier",
                                        "src": "20313:8:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20323:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20309:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20309:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "checked_exp_unsigned",
                                  "nodeType": "YulIdentifier",
                                  "src": "20282:20:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20282:47:84"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "20273:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_exp_t_uint256_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "20234:4:84",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "20240:8:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "20253:5:84",
                            "type": ""
                          }
                        ],
                        "src": "20195:140:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20399:807:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20437:52:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20451:10:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "20460:1:84",
                                      "type": "",
                                      "value": "1"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "20451:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "20474:5:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "20419:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "20412:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20412:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "20409:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20522:52:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20536:10:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "20545:1:84",
                                      "type": "",
                                      "value": "0"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "20536:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "20559:5:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "20508:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "20501:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20501:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "20498:2:84"
                            },
                            {
                              "cases": [
                                {
                                  "body": {
                                    "nodeType": "YulBlock",
                                    "src": "20610:52:84",
                                    "statements": [
                                      {
                                        "nodeType": "YulAssignment",
                                        "src": "20624:10:84",
                                        "value": {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "20633:1:84",
                                          "type": "",
                                          "value": "1"
                                        },
                                        "variableNames": [
                                          {
                                            "name": "power",
                                            "nodeType": "YulIdentifier",
                                            "src": "20624:5:84"
                                          }
                                        ]
                                      },
                                      {
                                        "nodeType": "YulLeave",
                                        "src": "20647:5:84"
                                      }
                                    ]
                                  },
                                  "nodeType": "YulCase",
                                  "src": "20603:59:84",
                                  "value": {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20608:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                },
                                {
                                  "body": {
                                    "nodeType": "YulBlock",
                                    "src": "20678:123:84",
                                    "statements": [
                                      {
                                        "body": {
                                          "nodeType": "YulBlock",
                                          "src": "20713:22:84",
                                          "statements": [
                                            {
                                              "expression": {
                                                "arguments": [],
                                                "functionName": {
                                                  "name": "panic_error_0x11",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "20715:16:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "20715:18:84"
                                              },
                                              "nodeType": "YulExpressionStatement",
                                              "src": "20715:18:84"
                                            }
                                          ]
                                        },
                                        "condition": {
                                          "arguments": [
                                            {
                                              "name": "exponent",
                                              "nodeType": "YulIdentifier",
                                              "src": "20698:8:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "20708:3:84",
                                              "type": "",
                                              "value": "255"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "gt",
                                            "nodeType": "YulIdentifier",
                                            "src": "20695:2:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "20695:17:84"
                                        },
                                        "nodeType": "YulIf",
                                        "src": "20692:2:84"
                                      },
                                      {
                                        "nodeType": "YulAssignment",
                                        "src": "20748:25:84",
                                        "value": {
                                          "arguments": [
                                            {
                                              "name": "exponent",
                                              "nodeType": "YulIdentifier",
                                              "src": "20761:8:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "20771:1:84",
                                              "type": "",
                                              "value": "1"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "20757:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "20757:16:84"
                                        },
                                        "variableNames": [
                                          {
                                            "name": "power",
                                            "nodeType": "YulIdentifier",
                                            "src": "20748:5:84"
                                          }
                                        ]
                                      },
                                      {
                                        "nodeType": "YulLeave",
                                        "src": "20786:5:84"
                                      }
                                    ]
                                  },
                                  "nodeType": "YulCase",
                                  "src": "20671:130:84",
                                  "value": {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20676:1:84",
                                    "type": "",
                                    "value": "2"
                                  }
                                }
                              ],
                              "expression": {
                                "name": "base",
                                "nodeType": "YulIdentifier",
                                "src": "20590:4:84"
                              },
                              "nodeType": "YulSwitch",
                              "src": "20583:218:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20899:70:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20913:28:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "20926:4:84"
                                        },
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "20932:8:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "exp",
                                        "nodeType": "YulIdentifier",
                                        "src": "20922:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20922:19:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "20913:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "20954:5:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "base",
                                            "nodeType": "YulIdentifier",
                                            "src": "20823:4:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20829:2:84",
                                            "type": "",
                                            "value": "11"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20820:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20820:12:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "exponent",
                                            "nodeType": "YulIdentifier",
                                            "src": "20837:8:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20847:2:84",
                                            "type": "",
                                            "value": "78"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20834:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20834:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20816:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20816:35:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "base",
                                            "nodeType": "YulIdentifier",
                                            "src": "20860:4:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20866:3:84",
                                            "type": "",
                                            "value": "307"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20857:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20857:13:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "exponent",
                                            "nodeType": "YulIdentifier",
                                            "src": "20875:8:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20885:2:84",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20872:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20872:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20853:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20853:36:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "20813:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20813:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "20810:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20978:57:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "21020:4:84"
                                  },
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "21026:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "checked_exp_helper",
                                  "nodeType": "YulIdentifier",
                                  "src": "21001:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21001:34:84"
                              },
                              "variables": [
                                {
                                  "name": "power_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20982:7:84",
                                  "type": ""
                                },
                                {
                                  "name": "base_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20991:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21140:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21142:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21142:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21142:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21050:7:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21063:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      },
                                      {
                                        "name": "base_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21131:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "div",
                                      "nodeType": "YulIdentifier",
                                      "src": "21059:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21059:79:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21047:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21047:92:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21044:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21171:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21184:7:84"
                                  },
                                  {
                                    "name": "base_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21193:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "21180:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21180:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "21171:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_exp_unsigned",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "20370:4:84",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "20376:8:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "20389:5:84",
                            "type": ""
                          }
                        ],
                        "src": "20340:866:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21263:176:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21382:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21384:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21384:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21384:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "21294:1:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "21287:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "21287:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "21280:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21280:17:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "21302:1:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "21309:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          },
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "21377:1:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "21305:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "21305:74:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "21299:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21299:81:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21276:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21276:105:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21273:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21413:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21428:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21431:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "21424:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21424:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "21413:7:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21242:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21245:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "21251:7:84",
                            "type": ""
                          }
                        ],
                        "src": "21211:228:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21493:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21515:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21517:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21517:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21517:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21509:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21512:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21506:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21506:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21503:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21546:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21558:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21561:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "21554:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21554:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "21546:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21475:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21478:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "21484:4:84",
                            "type": ""
                          }
                        ],
                        "src": "21444:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21622:173:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21632:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21642:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21636:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21661:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21676:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21679:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21672:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21672:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21665:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21691:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21706:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21709:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21702:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21702:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21695:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21737:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21739:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21739:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21739:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21727:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21732:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21724:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21724:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21721:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21768:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21780:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21785:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "21776:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21776:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "21768:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21604:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21607:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "21613:4:84",
                            "type": ""
                          }
                        ],
                        "src": "21574:221:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21847:148:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21857:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21872:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21875:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21868:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21868:12:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21861:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21889:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21904:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21907:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21900:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21900:12:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21893:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21937:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21939:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21939:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21939:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21927:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21932:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21924:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21924:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21921:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21968:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21980:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21985:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "21976:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21976:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "21968:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21829:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21832:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "21838:4:84",
                            "type": ""
                          }
                        ],
                        "src": "21800:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22047:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22138:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22140:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22140:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22140:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22063:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22070:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "22060:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22060:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22057:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22169:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22180:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22187:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22176:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22176:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "22169:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "22029:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "22039:3:84",
                            "type": ""
                          }
                        ],
                        "src": "22000:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22246:155:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22256:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "22266:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22260:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22285:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22304:5:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22311:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22300:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22300:14:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22289:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22342:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22344:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22344:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22344:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22329:7:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22338:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "22326:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22326:15:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22323:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22373:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22384:7:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22393:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22380:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22380:15:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "22373:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "22228:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "22238:3:84",
                            "type": ""
                          }
                        ],
                        "src": "22200:201:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22451:130:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22461:31:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22480:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22487:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22476:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22476:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22465:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22522:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22524:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22524:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22524:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22507:7:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22516:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "22504:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22504:17:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22501:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22553:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22564:7:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22573:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22560:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22560:15:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "22553:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "22433:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "22443:3:84",
                            "type": ""
                          }
                        ],
                        "src": "22406:175:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22618:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22635:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22638:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22628:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22628:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22628:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22732:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22735:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22725:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22725:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22725:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22756:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22759:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "22749:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22749:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22749:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "22586:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22807:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22824:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22827:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22817:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22817:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22817:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22921:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22924:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22914:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22914:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22914:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22945:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22948:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "22938:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22938:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22938:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "22775:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22996:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23013:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23016:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23006:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23006:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23006:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23110:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23113:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23103:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23103:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23103:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23134:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23137:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "23127:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23127:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23127:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "22964:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23197:77:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23252:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23261:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23264:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "23254:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23254:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23254:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "23220:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "23231:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "23238:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "23227:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "23227:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "23217:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23217:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "23210:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23210:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23207:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "23186:5:84",
                            "type": ""
                          }
                        ],
                        "src": "23153:121:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23323:85:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23386:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23395:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23398:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "23388:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23388:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23388:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "23346:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "23357:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "23364:18:84",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "23353:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "23353:30:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "23343:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23343:41:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "23336:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23336:49:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23333:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "23312:5:84",
                            "type": ""
                          }
                        ],
                        "src": "23279:129:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_array_uint32_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let memPtr := mload(64)\n        let _1 := 512\n        let newFreePtr := add(memPtr, _1)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        let dst := memPtr\n        let src := offset\n        if gt(add(offset, _1), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            let value := mload(src)\n            validator_revert_uint32(value)\n            mstore(dst, value)\n            let _2 := 0x20\n            dst := add(dst, _2)\n            src := add(src, _2)\n        }\n        array := memPtr\n    }\n    function abi_decode_array_uint32_dyn_calldata(offset, end) -> arrayPos, length\n    {\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(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_uint104_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint32_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint32(value)\n    }\n    function abi_decode_uint8_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint32_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint32_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        let offset_1 := calldataload(add(headStart, 64))\n        if gt(offset_1, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset_1)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, length), 32), dataEnd) { revert(0, 0) }\n        value3 := add(_2, 32)\n        value4 := length\n    }\n    function abi_decode_tuple_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _2 := 0xffffffffffffffff\n        if gt(offset, _2) { revert(0, 0) }\n        let _3 := add(headStart, offset)\n        if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(0, 0) }\n        let _4 := calldataload(_3)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_4))\n        let dst_1 := dst\n        mstore(dst, _4)\n        dst := add(dst, _1)\n        let src := add(_3, _1)\n        if gt(add(add(_3, shl(5, _4)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _4) { i := add(i, 1) }\n        {\n            let innerOffset := calldataload(src)\n            if gt(innerOffset, _2) { revert(0, 0) }\n            let _5 := add(_3, innerOffset)\n            if iszero(slt(add(_5, 63), dataEnd)) { revert(0, 0) }\n            let _6 := calldataload(add(_5, _1))\n            let dst_2 := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_6))\n            let dst_3 := dst_2\n            mstore(dst_2, _6)\n            dst_2 := add(dst_2, _1)\n            let src_1 := add(_5, 64)\n            if gt(add(add(_5, shl(5, _6)), 64), dataEnd) { revert(0, 0) }\n            let i_1 := 0\n            for { } lt(i_1, _6) { i_1 := add(i_1, 1) }\n            {\n                let value := calldataload(src_1)\n                validator_revert_uint64(value)\n                mstore(dst_2, value)\n                dst_2 := add(dst_2, _1)\n                src_1 := add(src_1, _1)\n            }\n            mstore(dst, dst_3)\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        let _4 := 0xa0\n        if gt(add(add(_2, mul(_3, _4)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        let i_1 := i\n        for { } lt(i_1, _3) { i_1 := add(i_1, 1) }\n        {\n            if slt(sub(dataEnd, src), _4) { revert(i, i) }\n            let value := allocate_memory_4542()\n            mstore(value, mload(src))\n            let value_1 := mload(add(src, _1))\n            validator_revert_uint32(value_1)\n            mstore(add(value, _1), value_1)\n            let _5 := 64\n            let value_2 := mload(add(src, _5))\n            validator_revert_uint64(value_2)\n            mstore(add(value, _5), value_2)\n            let _6 := 96\n            let value_3 := mload(add(src, _6))\n            validator_revert_uint64(value_3)\n            mstore(add(value, _6), value_3)\n            let _7 := 128\n            let value_4 := mload(add(src, _7))\n            validator_revert_uint32(value_4)\n            mstore(add(value, _7), value_4)\n            mstore(dst, value)\n            dst := add(dst, _1)\n            src := add(src, _4)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        let _4 := 0x0300\n        if gt(add(add(_2, mul(_3, _4)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        let i_1 := i\n        for { } lt(i_1, _3) { i_1 := add(i_1, 1) }\n        {\n            if slt(sub(dataEnd, src), _4) { revert(i, i) }\n            let value := allocate_memory_4543()\n            mstore(value, abi_decode_uint8_fromMemory(src))\n            mstore(add(value, _1), abi_decode_uint8_fromMemory(add(src, _1)))\n            let _5 := 64\n            mstore(add(value, _5), abi_decode_uint32_fromMemory(add(src, _5)))\n            let _6 := 96\n            mstore(add(value, _6), abi_decode_uint32_fromMemory(add(src, _6)))\n            let _7 := 128\n            mstore(add(value, _7), abi_decode_uint32_fromMemory(add(src, _7)))\n            let _8 := 160\n            mstore(add(value, _8), abi_decode_uint32_fromMemory(add(src, _8)))\n            let _9 := 192\n            mstore(add(value, _9), abi_decode_uint104_fromMemory(add(src, _9)))\n            let _10 := 224\n            mstore(add(value, _10), abi_decode_array_uint32_fromMemory(add(src, _10), dataEnd))\n            mstore(add(value, 0x0100), mload(add(src, 736)))\n            mstore(dst, value)\n            dst := add(dst, _1)\n            src := add(src, _4)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        if gt(add(add(_2, shl(5, _3)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _3) { i := add(i, 1) }\n        {\n            mstore(dst, mload(src))\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value0 := dst_1\n    }\n    function abi_encode_array_uint256_dyn(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let _1 := 0x20\n        pos := add(pos, _1)\n        let srcPtr := add(value, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        end := pos\n    }\n    function abi_encode_array_uint64_dyn(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let _1 := 0x20\n        pos := add(pos, _1)\n        let srcPtr := add(value, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), 0xffffffffffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        end := pos\n    }\n    function abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        mstore(pos, and(shl(96, value0), 0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000))\n        end := add(pos, 20)\n    }\n    function abi_encode_tuple_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), 96)\n        let tail_1 := abi_encode_array_uint64_dyn(value1, add(headStart, 96))\n        mstore(add(headStart, 64), sub(tail_1, headStart))\n        tail := abi_encode_array_uint64_dyn(value2, tail_1)\n    }\n    function abi_encode_tuple_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__to_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let tail_2 := add(add(headStart, shl(5, length)), 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0))\n            tail_2 := abi_encode_array_uint256_dyn(mload(srcPtr), tail_2)\n            srcPtr := add(srcPtr, _1)\n            pos := add(pos, _1)\n        }\n        tail := tail_2\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_array_uint256_dyn(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_uint256_dyn(value0, add(headStart, 64))\n        let _1 := 32\n        mstore(add(headStart, _1), sub(tail_1, headStart))\n        let length := mload(value1)\n        mstore(tail_1, length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(tail_1, i), _1), mload(add(add(value1, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(tail_1, length), _1), 0)\n        }\n        tail := add(add(tail_1, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), _1)\n    }\n    function abi_encode_tuple_t_array$_t_uint32_$dyn_calldata_ptr__to_t_array$_t_uint32_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        mstore(tail_1, value1)\n        pos := add(headStart, 64)\n        let srcPtr := value0\n        let i := 0\n        for { } lt(i, value1) { i := add(i, 1) }\n        {\n            let value := calldataload(srcPtr)\n            validator_revert_uint32(value)\n            mstore(pos, and(value, 0xffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_uint64_dyn(value0, add(headStart, 64))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_array_uint64_dyn(value1, tail_1)\n    }\n    function abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$11467__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"DrawCalc/draw-expired\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"DrawCalc/invalid-pick-indices-le\")\n        mstore(add(headStart, 96), \"ngth\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"DrawCalc/exceeds-max-user-picks\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"DrawCalc/picks-ascending\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"DrawCalc/insufficient-user-picks\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function allocate_memory_4542() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xa0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory_4543() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0120)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function array_allocation_size_array_array_uint64_dyn_dyn(length) -> size\n    {\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        size := add(shl(5, length), 0x20)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint64(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint8(x, y) -> sum\n    {\n        let x_1 := and(x, 0xff)\n        let y_1 := and(y, 0xff)\n        if gt(x_1, sub(0xff, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function checked_exp_helper(_base, exponent) -> power, base\n    {\n        let power_1 := 1\n        power := power_1\n        base := _base\n        for { } gt(exponent, power_1) { }\n        {\n            if gt(base, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, base)) { panic_error_0x11() }\n            if and(exponent, power_1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(power_1, exponent)\n        }\n    }\n    function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, and(exponent, 0xff))\n    }\n    function checked_exp_unsigned(base, exponent) -> power\n    {\n        if iszero(exponent)\n        {\n            power := 1\n            leave\n        }\n        if iszero(base)\n        {\n            power := 0\n            leave\n        }\n        switch base\n        case 1 {\n            power := 1\n            leave\n        }\n        case 2 {\n            if gt(exponent, 255) { panic_error_0x11() }\n            power := shl(exponent, 1)\n            leave\n        }\n        if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n        {\n            power := exp(base, exponent)\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent)\n        if gt(power_1, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n        product := mul(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function checked_sub_t_uint8(x, y) -> diff\n    {\n        let x_1 := and(x, 0xff)\n        let y_1 := and(y, 0xff)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function increment_t_uint32(value) -> ret\n    {\n        let _1 := 0xffffffff\n        let value_1 := and(value, _1)\n        if eq(value_1, _1) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function increment_t_uint8(value) -> ret\n    {\n        let value_1 := and(value, 0xff)\n        if eq(value_1, 0xff) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint64(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "6552": [
                  {
                    "length": 32,
                    "start": 224
                  },
                  {
                    "length": 32,
                    "start": 407
                  },
                  {
                    "length": 32,
                    "start": 473
                  },
                  {
                    "length": 32,
                    "start": 1056
                  }
                ],
                "6556": [
                  {
                    "length": 32,
                    "start": 265
                  },
                  {
                    "length": 32,
                    "start": 2013
                  },
                  {
                    "length": 32,
                    "start": 2160
                  }
                ],
                "6560": [
                  {
                    "length": 32,
                    "start": 146
                  },
                  {
                    "length": 32,
                    "start": 366
                  },
                  {
                    "length": 32,
                    "start": 652
                  },
                  {
                    "length": 32,
                    "start": 1201
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100885760003560e01c8063aaca392e1161005b578063aaca392e1461014b578063bd97a2521461016c578063ce343bb614610192578063f8d0ca4c146101b957600080fd5b80630840bbdd1461008d5780634019f2d6146100de5780636cc25db7146101045780638045fbcf1461012b575b600080fd5b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006100b4565b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b61013e6101393660046114df565b6101d3565b6040516100d59190611afc565b61015e610159366004611532565b610352565b6040516100d5929190611b0f565b7f00000000000000000000000000000000000000000000000000000000000000006100b4565b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b6101c1601081565b60405160ff90911681526020016100d5565b606060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0bb78f385856040518363ffffffff1660e01b8152600401610232929190611b74565b60006040518083038186803b15801561024a57600080fd5b505afa15801561025e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261028691908101906116fd565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf86866040518363ffffffff1660e01b81526004016102e5929190611b74565b60006040518083038186803b1580156102fd57600080fd5b505afa158015610311573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261033991908101906117f8565b90506103468683836105dd565b925050505b9392505050565b6060806000610363848601866115dd565b805190915086146103e05760405162461bcd60e51b8152602060048201526024808201527f4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c6560448201527f6e6774680000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6040517fd0bb78f300000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063d0bb78f390610457908b908b90600401611b74565b60006040518083038186803b15801561046f57600080fd5b505afa158015610483573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104ab91908101906116fd565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf8a8a6040518363ffffffff1660e01b815260040161050a929190611b74565b60006040518083038186803b15801561052257600080fd5b505afa158015610536573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261055e91908101906117f8565b9050600061056d8b84846105dd565b6040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608e901b1660208201529091506000906034016040516020818303038152906040528051906020012090506105ca8282868887610a48565b9650965050505050509550959350505050565b815160609060008167ffffffffffffffff8111156105fd576105fd611f08565b604051908082528060200260200182016040528015610626578160200160208202803683370190505b50905060008267ffffffffffffffff81111561064457610644611f08565b60405190808252806020026020018201604052801561066d578160200160208202803683370190505b50905060005b838163ffffffff16101561079c57858163ffffffff168151811061069957610699611ef2565b60200260200101516040015163ffffffff16878263ffffffff16815181106106c3576106c3611ef2565b60200260200101516040015103838263ffffffff16815181106106e8576106e8611ef2565b602002602001019067ffffffffffffffff16908167ffffffffffffffff1681525050858163ffffffff168151811061072257610722611ef2565b60200260200101516060015163ffffffff16878263ffffffff168151811061074c5761074c611ef2565b60200260200101516040015103828263ffffffff168151811061077157610771611ef2565b67ffffffffffffffff909216602092830291909101909101528061079481611e98565b915050610673565b506040517f68c7fd5700000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906368c7fd5790610816908b9087908790600401611a31565b60006040518083038186803b15801561082e57600080fd5b505afa158015610842573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261086a9190810190611924565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638e6d536a85856040518363ffffffff1660e01b81526004016108c9929190611bbf565b60006040518083038186803b1580156108e157600080fd5b505afa1580156108f5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261091d9190810190611924565b905060008567ffffffffffffffff81111561093a5761093a611f08565b604051908082528060200260200182016040528015610963578160200160208202803683370190505b50905060005b86811015610a3a5782818151811061098357610983611ef2565b6020026020010151600014156109b85760008282815181106109a7576109a7611ef2565b602002602001018181525050610a28565b8281815181106109ca576109ca611ef2565b60200260200101518482815181106109e4576109e4611ef2565b6020026020010151670de0b6b3a76400006109ff9190611dff565b610a099190611cef565b828281518110610a1b57610a1b611ef2565b6020026020010181815250505b80610a3281611e7d565b915050610969565b509998505050505050505050565b6060806000875167ffffffffffffffff811115610a6757610a67611f08565b604051908082528060200260200182016040528015610a90578160200160208202803683370190505b5090506000885167ffffffffffffffff811115610aaf57610aaf611f08565b604051908082528060200260200182016040528015610ae257816020015b6060815260200190600190039081610acd5790505b5090504260005b88518163ffffffff161015610ccf57868163ffffffff1681518110610b1057610b10611ef2565b602002602001015160a0015163ffffffff16898263ffffffff1681518110610b3a57610b3a611ef2565b602002602001015160400151610b509190611c9e565b67ffffffffffffffff168267ffffffffffffffff1610610bb25760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d65787069726564000000000000000000000060448201526064016103d7565b6000610bfc888363ffffffff1681518110610bcf57610bcf611ef2565b60200260200101518d8463ffffffff1681518110610bef57610bef611ef2565b6020026020010151610d02565b9050610c768a8363ffffffff1681518110610c1957610c19611ef2565b6020026020010151600001518267ffffffffffffffff168d8c8663ffffffff1681518110610c4957610c49611ef2565b60200260200101518c8763ffffffff1681518110610c6957610c69611ef2565b6020026020010151610d3f565b868463ffffffff1681518110610c8e57610c8e611ef2565b60200260200101868563ffffffff1681518110610cad57610cad611ef2565b6020908102919091010191909152525080610cc781611e98565b915050610ae9565b5081604051602001610ce19190611a7c565b60405160208183030381529060405293508294505050509550959350505050565b6000670de0b6b3a76400008360c001516cffffffffffffffffffffffffff1683610d2c9190611dff565b610d369190611cef565b90505b92915050565b600060606000610d4e846110c4565b85516040805160108082526102208201909252929350909160009160208201610200803683370190505090506000866080015163ffffffff168363ffffffff161115610ddc5760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f657863656564732d6d61782d757365722d7069636b730060448201526064016103d7565b60005b8363ffffffff168163ffffffff161015610ff4578a898263ffffffff1681518110610e0c57610e0c611ef2565b602002602001015167ffffffffffffffff1610610e6b5760405162461bcd60e51b815260206004820181905260248201527f4472617743616c632f696e73756666696369656e742d757365722d7069636b7360448201526064016103d7565b63ffffffff811615610f225788610e83600183611e35565b63ffffffff1681518110610e9957610e99611ef2565b602002602001015167ffffffffffffffff16898263ffffffff1681518110610ec357610ec3611ef2565b602002602001015167ffffffffffffffff1611610f225760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7069636b732d617363656e64696e67000000000000000060448201526064016103d7565b60008a8a8363ffffffff1681518110610f3d57610f3d611ef2565b6020026020010151604051602001610f6992919091825267ffffffffffffffff16602082015260400190565b6040516020818303038152906040528051906020012060001c90506000610f91828f896111c9565b9050601060ff82161015610fdf578360ff168160ff161115610fb1578093505b848160ff1681518110610fc657610fc6611ef2565b602002602001018051809190610fdb90611e7d565b9052505b50508080610fec90611e98565b915050610ddf565b506000806110028984611268565b905060005b8360ff16811161109057600085828151811061102557611025611ef2565b6020026020010151111561107e5784818151811061104557611045611ef2565b602002602001015182828151811061105f5761105f611ef2565b60200260200101516110719190611dff565b61107b9084611c86565b92505b8061108881611e7d565b915050611007565b50633b9aca00896101000151836110a79190611dff565b6110b19190611cef565b9d939c50929a5050505050505050505050565b60606000826020015160ff1667ffffffffffffffff8111156110e8576110e8611f08565b604051908082528060200260200182016040528015611111578160200160208202803683370190505b508351909150600190611125906002611d54565b61112f9190611e1e565b8160008151811061114257611142611ef2565b602090810291909101015260015b836020015160ff168160ff1610156111c257835160ff1682611173600184611e5a565b60ff168151811061118657611186611ef2565b6020026020010151901b828260ff16815181106111a5576111a5611ef2565b6020908102919091010152806111ba81611ebc565b915050611150565b5092915050565b80516000908190815b8160ff168160ff16101561125d576000858260ff16815181106111f7576111f7611ef2565b602002602001015190508087168189161461123c578360ff168360ff16141561122757600094505050505061034b565b6112318484611e5a565b94505050505061034b565b8361124681611ebc565b94505050808061125590611ebc565b9150506111d2565b506103468282611e5a565b60606000611277836001611cca565b60ff1667ffffffffffffffff81111561129257611292611f08565b6040519080825280602002602001820160405280156112bb578160200160208202803683370190505b50905060005b8360ff168160ff161161130d576112db858260ff16611315565b828260ff16815181106112f0576112f0611ef2565b60209081029190910101528061130581611ebc565b9150506112c1565b509392505050565b6000808360e00151836010811061132e5761132e611ef2565b602002015163ffffffff169050600061134b856000015185611360565b90506113578183611cef565b95945050505050565b600081156113a657611373600183611e1e565b6113809060ff8516611dff565b6001901b6113918360ff8616611dff565b6001901b61139f9190611e1e565b9050610d39565b506001610d39565b803573ffffffffffffffffffffffffffffffffffffffff811681146113d257600080fd5b919050565b600082601f8301126113e857600080fd5b60405161020080820182811067ffffffffffffffff8211171561140d5761140d611f08565b604052818482810187101561142157600080fd5b600092505b601083101561144f57805161143a81611f1e565b82526001929092019160209182019101611426565b509195945050505050565b60008083601f84011261146c57600080fd5b50813567ffffffffffffffff81111561148457600080fd5b6020830191508360208260051b850101111561149f57600080fd5b9250929050565b80516cffffffffffffffffffffffffff811681146113d257600080fd5b80516113d281611f1e565b805160ff811681146113d257600080fd5b6000806000604084860312156114f457600080fd5b6114fd846113ae565b9250602084013567ffffffffffffffff81111561151957600080fd5b6115258682870161145a565b9497909650939450505050565b60008060008060006060868803121561154a57600080fd5b611553866113ae565b9450602086013567ffffffffffffffff8082111561157057600080fd5b61157c89838a0161145a565b9096509450604088013591508082111561159557600080fd5b818801915088601f8301126115a957600080fd5b8135818111156115b857600080fd5b8960208285010111156115ca57600080fd5b9699959850939650602001949392505050565b600060208083850312156115f057600080fd5b823567ffffffffffffffff8082111561160857600080fd5b818501915085601f83011261161c57600080fd5b813561162f61162a82611c62565b611c31565b80828252858201915085850189878560051b880101111561164f57600080fd5b60005b848110156116ee5781358681111561166957600080fd5b8701603f81018c1361167a57600080fd5b8881013561168a61162a82611c62565b808282528b82019150604084018f60408560051b87010111156116ac57600080fd5b600094505b838510156116d85780356116c481611f33565b835260019490940193918c01918c016116b1565b5087525050509287019290870190600101611652565b50909998505050505050505050565b6000602080838503121561171057600080fd5b825167ffffffffffffffff81111561172757600080fd5b8301601f8101851361173857600080fd5b805161174661162a82611c62565b8181528381019083850160a0808502860187018a101561176557600080fd5b60009550855b858110156117e95781838c031215611781578687fd5b611789611be4565b835181528884015161179a81611f1e565b818a01526040848101516117ad81611f33565b908201526060848101516117c081611f33565b908201526080848101516117d381611f1e565b908201528552938701939181019160010161176b565b50919998505050505050505050565b6000602080838503121561180b57600080fd5b825167ffffffffffffffff81111561182257600080fd5b8301601f8101851361183357600080fd5b805161184161162a82611c62565b81815283810190838501610300808502860187018a101561186157600080fd5b60009550855b858110156117e95781838c03121561187d578687fd5b611885611c0d565b61188e846114ce565b815261189b8985016114ce565b8982015260406118ac8186016114c3565b9082015260606118bd8582016114c3565b9082015260806118ce8582016114c3565b9082015260a06118df8582016114c3565b9082015260c06118f08582016114a6565b9082015260e06119028d8683016113d7565b908201526102e084015161010082015285529387019391810191600101611867565b6000602080838503121561193757600080fd5b825167ffffffffffffffff81111561194e57600080fd5b8301601f8101851361195f57600080fd5b805161196d61162a82611c62565b80828252848201915084840188868560051b870101111561198d57600080fd5b600094505b838510156119b0578051835260019490940193918501918501611992565b50979650505050505050565b600081518084526020808501945080840160005b838110156119ec578151875295820195908201906001016119d0565b509495945050505050565b600081518084526020808501945080840160005b838110156119ec57815167ffffffffffffffff1687529582019590820190600101611a0b565b73ffffffffffffffffffffffffffffffffffffffff84168152606060208201526000611a6060608301856119f7565b8281036040840152611a7281856119f7565b9695505050505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015611aef577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452611add8583516119bc565b94509285019290850190600101611aa3565b5092979650505050505050565b602081526000610d3660208301846119bc565b604081526000611b2260408301856119bc565b602083820381850152845180835260005b81811015611b4e578681018301518482018401528201611b33565b81811115611b5f5760008383860101525b50601f01601f19169190910101949350505050565b60208082528181018390526000908460408401835b86811015611bb4578235611b9c81611f1e565b63ffffffff1682529183019190830190600101611b89565b509695505050505050565b604081526000611bd260408301856119f7565b828103602084015261135781856119f7565b60405160a0810167ffffffffffffffff81118282101715611c0757611c07611f08565b60405290565b604051610120810167ffffffffffffffff81118282101715611c0757611c07611f08565b604051601f8201601f1916810167ffffffffffffffff81118282101715611c5a57611c5a611f08565b604052919050565b600067ffffffffffffffff821115611c7c57611c7c611f08565b5060051b60200190565b60008219821115611c9957611c99611edc565b500190565b600067ffffffffffffffff808316818516808303821115611cc157611cc1611edc565b01949350505050565b600060ff821660ff84168060ff03821115611ce757611ce7611edc565b019392505050565b600082611d0c57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b80851115611d4c578160001904821115611d3257611d32611edc565b80851615611d3f57918102915b93841c9390800290611d16565b509250929050565b6000610d3660ff841683600082611d6d57506001610d39565b81611d7a57506000610d39565b8160018114611d905760028114611d9a57611db6565b6001915050610d39565b60ff841115611dab57611dab611edc565b50506001821b610d39565b5060208310610133831016604e8410600b8410161715611dd9575081810a610d39565b611de38383611d11565b8060001904821115611df757611df7611edc565b029392505050565b6000816000190483118215151615611e1957611e19611edc565b500290565b600082821015611e3057611e30611edc565b500390565b600063ffffffff83811690831681811015611e5257611e52611edc565b039392505050565b600060ff821660ff841680821015611e7457611e74611edc565b90039392505050565b6000600019821415611e9157611e91611edc565b5060010190565b600063ffffffff80831681811415611eb257611eb2611edc565b6001019392505050565b600060ff821660ff811415611ed357611ed3611edc565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b63ffffffff81168114611f3057600080fd5b50565b67ffffffffffffffff81168114611f3057600080fdfea2646970667358221220498d8304b406f3f0031671f6daba5394014f41f4424513ee12a1878a9c0412c964736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x88 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xAACA392E GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xAACA392E EQ PUSH2 0x14B JUMPI DUP1 PUSH4 0xBD97A252 EQ PUSH2 0x16C JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x192 JUMPI DUP1 PUSH4 0xF8D0CA4C EQ PUSH2 0x1B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x840BBDD EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0xDE JUMPI DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0x104 JUMPI DUP1 PUSH4 0x8045FBCF EQ PUSH2 0x12B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB4 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH32 0x0 PUSH2 0xB4 JUMP JUMPDEST PUSH2 0xB4 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x13E PUSH2 0x139 CALLDATASIZE PUSH1 0x4 PUSH2 0x14DF JUMP JUMPDEST PUSH2 0x1D3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD5 SWAP2 SWAP1 PUSH2 0x1AFC JUMP JUMPDEST PUSH2 0x15E PUSH2 0x159 CALLDATASIZE PUSH1 0x4 PUSH2 0x1532 JUMP JUMPDEST PUSH2 0x352 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD5 SWAP3 SWAP2 SWAP1 PUSH2 0x1B0F JUMP JUMPDEST PUSH32 0x0 PUSH2 0xB4 JUMP JUMPDEST PUSH2 0xB4 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x1C1 PUSH1 0x10 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xD5 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD0BB78F3 DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x232 SWAP3 SWAP2 SWAP1 PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x24A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x25E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x286 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x16FD JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP7 DUP7 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2E5 SWAP3 SWAP2 SWAP1 PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x311 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x339 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x17F8 JUMP JUMPDEST SWAP1 POP PUSH2 0x346 DUP7 DUP4 DUP4 PUSH2 0x5DD JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 PUSH2 0x363 DUP5 DUP7 ADD DUP7 PUSH2 0x15DD JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP DUP7 EQ PUSH2 0x3E0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E76616C69642D7069636B2D696E64696365732D6C65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E67746800000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xD0BB78F300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0xD0BB78F3 SWAP1 PUSH2 0x457 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x46F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x483 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x4AB SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x16FD JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP11 DUP11 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x50A SWAP3 SWAP2 SWAP1 PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x522 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x536 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x55E SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x17F8 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x56D DUP12 DUP5 DUP5 PUSH2 0x5DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000 PUSH1 0x60 DUP15 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x34 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH2 0x5CA DUP3 DUP3 DUP7 DUP9 DUP8 PUSH2 0xA48 JUMP JUMPDEST SWAP7 POP SWAP7 POP POP POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x60 SWAP1 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5FD JUMPI PUSH2 0x5FD PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x626 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x644 JUMPI PUSH2 0x644 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x66D JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x79C JUMPI DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x699 JUMPI PUSH2 0x699 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x6C3 JUMPI PUSH2 0x6C3 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP4 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x6E8 JUMPI PUSH2 0x6E8 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x722 JUMPI PUSH2 0x722 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x60 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x74C JUMPI PUSH2 0x74C PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP3 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x771 JUMPI PUSH2 0x771 PUSH2 0x1EF2 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE DUP1 PUSH2 0x794 DUP2 PUSH2 0x1E98 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x673 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x68C7FD5700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0x68C7FD57 SWAP1 PUSH2 0x816 SWAP1 DUP12 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x1A31 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x82E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x842 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x86A SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1924 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x8E6D536A DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8C9 SWAP3 SWAP2 SWAP1 PUSH2 0x1BBF JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8F5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x91D SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1924 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x93A JUMPI PUSH2 0x93A PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x963 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0xA3A JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x983 JUMPI PUSH2 0x983 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 EQ ISZERO PUSH2 0x9B8 JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x9A7 JUMPI PUSH2 0x9A7 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP PUSH2 0xA28 JUMP JUMPDEST DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x9CA JUMPI PUSH2 0x9CA PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x9E4 JUMPI PUSH2 0x9E4 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xDE0B6B3A7640000 PUSH2 0x9FF SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0xA09 SWAP2 SWAP1 PUSH2 0x1CEF JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xA1B JUMPI PUSH2 0xA1B PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0xA32 DUP2 PUSH2 0x1E7D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x969 JUMP JUMPDEST POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 DUP8 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA67 JUMPI PUSH2 0xA67 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xA90 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP9 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAAF JUMPI PUSH2 0xAAF PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xAE2 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xACD JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP9 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xCCF JUMPI DUP7 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xB10 JUMPI PUSH2 0xB10 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xA0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xB3A JUMPI PUSH2 0xB3A PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH2 0xB50 SWAP2 SWAP1 PUSH2 0x1C9E JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xBB2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F647261772D657870697265640000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBFC DUP9 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xBCF JUMPI PUSH2 0xBCF PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP14 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xBEF JUMPI PUSH2 0xBEF PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xD02 JUMP JUMPDEST SWAP1 POP PUSH2 0xC76 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC19 JUMPI PUSH2 0xC19 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP14 DUP13 DUP7 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC49 JUMPI PUSH2 0xC49 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP13 DUP8 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC69 JUMPI PUSH2 0xC69 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xD3F JUMP JUMPDEST DUP7 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC8E JUMPI PUSH2 0xC8E PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP7 DUP6 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xCAD JUMPI PUSH2 0xCAD PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD SWAP2 SWAP1 SWAP2 MSTORE MSTORE POP DUP1 PUSH2 0xCC7 DUP2 PUSH2 0x1E98 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xAE9 JUMP JUMPDEST POP DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xCE1 SWAP2 SWAP1 PUSH2 0x1A7C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP DUP3 SWAP5 POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 DUP4 PUSH1 0xC0 ADD MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0xD2C SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0xD36 SWAP2 SWAP1 PUSH2 0x1CEF JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 PUSH1 0x0 PUSH2 0xD4E DUP5 PUSH2 0x10C4 JUMP JUMPDEST DUP6 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x10 DUP1 DUP3 MSTORE PUSH2 0x220 DUP3 ADD SWAP1 SWAP3 MSTORE SWAP3 SWAP4 POP SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH1 0x20 DUP3 ADD PUSH2 0x200 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH1 0x0 DUP7 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0xDDC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F657863656564732D6D61782D757365722D7069636B7300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xFF4 JUMPI DUP11 DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xE0C JUMPI PUSH2 0xE0C PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xE6B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E73756666696369656E742D757365722D7069636B73 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO PUSH2 0xF22 JUMPI DUP9 PUSH2 0xE83 PUSH1 0x1 DUP4 PUSH2 0x1E35 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xE99 JUMPI PUSH2 0xE99 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xEC3 JUMPI PUSH2 0xEC3 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0xF22 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7069636B732D617363656E64696E670000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x0 DUP11 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xF3D JUMPI PUSH2 0xF3D PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xF69 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP PUSH1 0x0 PUSH2 0xF91 DUP3 DUP16 DUP10 PUSH2 0x11C9 JUMP JUMPDEST SWAP1 POP PUSH1 0x10 PUSH1 0xFF DUP3 AND LT ISZERO PUSH2 0xFDF JUMPI DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT ISZERO PUSH2 0xFB1 JUMPI DUP1 SWAP4 POP JUMPDEST DUP5 DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFC6 JUMPI PUSH2 0xFC6 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP1 MLOAD DUP1 SWAP2 SWAP1 PUSH2 0xFDB SWAP1 PUSH2 0x1E7D JUMP JUMPDEST SWAP1 MSTORE POP JUMPDEST POP POP DUP1 DUP1 PUSH2 0xFEC SWAP1 PUSH2 0x1E98 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xDDF JUMP JUMPDEST POP PUSH1 0x0 DUP1 PUSH2 0x1002 DUP10 DUP5 PUSH2 0x1268 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 GT PUSH2 0x1090 JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1025 JUMPI PUSH2 0x1025 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD GT ISZERO PUSH2 0x107E JUMPI DUP5 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x1045 JUMPI PUSH2 0x1045 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x105F JUMPI PUSH2 0x105F PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x1071 SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0x107B SWAP1 DUP5 PUSH2 0x1C86 JUMP JUMPDEST SWAP3 POP JUMPDEST DUP1 PUSH2 0x1088 DUP2 PUSH2 0x1E7D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1007 JUMP JUMPDEST POP PUSH4 0x3B9ACA00 DUP10 PUSH2 0x100 ADD MLOAD DUP4 PUSH2 0x10A7 SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0x10B1 SWAP2 SWAP1 PUSH2 0x1CEF JUMP JUMPDEST SWAP14 SWAP4 SWAP13 POP SWAP3 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10E8 JUMPI PUSH2 0x10E8 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1111 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP DUP4 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 SWAP1 PUSH2 0x1125 SWAP1 PUSH1 0x2 PUSH2 0x1D54 JUMP JUMPDEST PUSH2 0x112F SWAP2 SWAP1 PUSH2 0x1E1E JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1142 JUMPI PUSH2 0x1142 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 JUMPDEST DUP4 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x11C2 JUMPI DUP4 MLOAD PUSH1 0xFF AND DUP3 PUSH2 0x1173 PUSH1 0x1 DUP5 PUSH2 0x1E5A JUMP JUMPDEST PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1186 JUMPI PUSH2 0x1186 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 SHL DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x11A5 JUMPI PUSH2 0x11A5 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x11BA DUP2 PUSH2 0x1EBC JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1150 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x125D JUMPI PUSH1 0x0 DUP6 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x11F7 JUMPI PUSH2 0x11F7 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP DUP1 DUP8 AND DUP2 DUP10 AND EQ PUSH2 0x123C JUMPI DUP4 PUSH1 0xFF AND DUP4 PUSH1 0xFF AND EQ ISZERO PUSH2 0x1227 JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0x34B JUMP JUMPDEST PUSH2 0x1231 DUP5 DUP5 PUSH2 0x1E5A JUMP JUMPDEST SWAP5 POP POP POP POP POP PUSH2 0x34B JUMP JUMPDEST DUP4 PUSH2 0x1246 DUP2 PUSH2 0x1EBC JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0x1255 SWAP1 PUSH2 0x1EBC JUMP JUMPDEST SWAP2 POP POP PUSH2 0x11D2 JUMP JUMPDEST POP PUSH2 0x346 DUP3 DUP3 PUSH2 0x1E5A JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x1277 DUP4 PUSH1 0x1 PUSH2 0x1CCA JUMP JUMPDEST PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1292 JUMPI PUSH2 0x1292 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x12BB JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT PUSH2 0x130D JUMPI PUSH2 0x12DB DUP6 DUP3 PUSH1 0xFF AND PUSH2 0x1315 JUMP JUMPDEST DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x12F0 JUMPI PUSH2 0x12F0 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x1305 DUP2 PUSH2 0x1EBC JUMP JUMPDEST SWAP2 POP POP PUSH2 0x12C1 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0xE0 ADD MLOAD DUP4 PUSH1 0x10 DUP2 LT PUSH2 0x132E JUMPI PUSH2 0x132E PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x134B DUP6 PUSH1 0x0 ADD MLOAD DUP6 PUSH2 0x1360 JUMP JUMPDEST SWAP1 POP PUSH2 0x1357 DUP2 DUP4 PUSH2 0x1CEF JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO PUSH2 0x13A6 JUMPI PUSH2 0x1373 PUSH1 0x1 DUP4 PUSH2 0x1E1E JUMP JUMPDEST PUSH2 0x1380 SWAP1 PUSH1 0xFF DUP6 AND PUSH2 0x1DFF JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x1391 DUP4 PUSH1 0xFF DUP7 AND PUSH2 0x1DFF JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x139F SWAP2 SWAP1 PUSH2 0x1E1E JUMP JUMPDEST SWAP1 POP PUSH2 0xD39 JUMP JUMPDEST POP PUSH1 0x1 PUSH2 0xD39 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x13D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x13E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP1 DUP3 ADD DUP3 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x140D JUMPI PUSH2 0x140D PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP5 DUP3 DUP2 ADD DUP8 LT ISZERO PUSH2 0x1421 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP3 POP JUMPDEST PUSH1 0x10 DUP4 LT ISZERO PUSH2 0x144F JUMPI DUP1 MLOAD PUSH2 0x143A DUP2 PUSH2 0x1F1E JUMP JUMPDEST DUP3 MSTORE PUSH1 0x1 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x20 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x1426 JUMP JUMPDEST POP SWAP2 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x146C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1484 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x149F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x13D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x13D2 DUP2 PUSH2 0x1F1E JUMP JUMPDEST DUP1 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x13D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x14F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14FD DUP5 PUSH2 0x13AE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1519 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1525 DUP7 DUP3 DUP8 ADD PUSH2 0x145A JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x154A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1553 DUP7 PUSH2 0x13AE JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1570 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x157C DUP10 DUP4 DUP11 ADD PUSH2 0x145A JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x1595 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x15A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x15B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x15CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x15F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1608 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x161C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x162F PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST PUSH2 0x1C31 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP6 DUP3 ADD SWAP2 POP DUP6 DUP6 ADD DUP10 DUP8 DUP6 PUSH1 0x5 SHL DUP9 ADD ADD GT ISZERO PUSH2 0x164F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x16EE JUMPI DUP2 CALLDATALOAD DUP7 DUP2 GT ISZERO PUSH2 0x1669 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 ADD PUSH1 0x3F DUP2 ADD DUP13 SGT PUSH2 0x167A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 DUP2 ADD CALLDATALOAD PUSH2 0x168A PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP12 DUP3 ADD SWAP2 POP PUSH1 0x40 DUP5 ADD DUP16 PUSH1 0x40 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x16AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x16D8 JUMPI DUP1 CALLDATALOAD PUSH2 0x16C4 DUP2 PUSH2 0x1F33 JUMP JUMPDEST DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP13 ADD SWAP2 DUP13 ADD PUSH2 0x16B1 JUMP JUMPDEST POP DUP8 MSTORE POP POP POP SWAP3 DUP8 ADD SWAP3 SWAP1 DUP8 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1652 JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1710 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1727 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1738 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1746 PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH1 0xA0 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1765 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x17E9 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x1781 JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1789 PUSH2 0x1BE4 JUMP JUMPDEST DUP4 MLOAD DUP2 MSTORE DUP9 DUP5 ADD MLOAD PUSH2 0x179A DUP2 PUSH2 0x1F1E JUMP JUMPDEST DUP2 DUP11 ADD MSTORE PUSH1 0x40 DUP5 DUP2 ADD MLOAD PUSH2 0x17AD DUP2 PUSH2 0x1F33 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP5 DUP2 ADD MLOAD PUSH2 0x17C0 DUP2 PUSH2 0x1F33 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP5 DUP2 ADD MLOAD PUSH2 0x17D3 DUP2 PUSH2 0x1F1E JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x176B JUMP JUMPDEST POP SWAP2 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x180B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1822 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1833 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1841 PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH2 0x300 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1861 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x17E9 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x187D JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1885 PUSH2 0x1C0D JUMP JUMPDEST PUSH2 0x188E DUP5 PUSH2 0x14CE JUMP JUMPDEST DUP2 MSTORE PUSH2 0x189B DUP10 DUP6 ADD PUSH2 0x14CE JUMP JUMPDEST DUP10 DUP3 ADD MSTORE PUSH1 0x40 PUSH2 0x18AC DUP2 DUP7 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 PUSH2 0x18BD DUP6 DUP3 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 PUSH2 0x18CE DUP6 DUP3 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 PUSH2 0x18DF DUP6 DUP3 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 PUSH2 0x18F0 DUP6 DUP3 ADD PUSH2 0x14A6 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 PUSH2 0x1902 DUP14 DUP7 DUP4 ADD PUSH2 0x13D7 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH2 0x2E0 DUP5 ADD MLOAD PUSH2 0x100 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1867 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1937 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x194E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x195F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x196D PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP5 DUP3 ADD SWAP2 POP DUP5 DUP5 ADD DUP9 DUP7 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x198D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x19B0 JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP6 ADD SWAP2 DUP6 ADD PUSH2 0x1992 JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x19EC JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x19D0 JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x19EC JUMPI DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1A0B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x1A60 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x19F7 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x1A72 DUP2 DUP6 PUSH2 0x19F7 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 ADD DUP2 DUP5 MSTORE DUP1 DUP6 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP7 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP8 ADD ADD SWAP3 POP DUP4 DUP8 ADD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1AEF JUMPI PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x1ADD DUP6 DUP4 MLOAD PUSH2 0x19BC JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1AA3 JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0xD36 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x19BC JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1B22 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x19BC JUMP JUMPDEST PUSH1 0x20 DUP4 DUP3 SUB DUP2 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1B4E JUMPI DUP7 DUP2 ADD DUP4 ADD MLOAD DUP5 DUP3 ADD DUP5 ADD MSTORE DUP3 ADD PUSH2 0x1B33 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x1B5F JUMPI PUSH1 0x0 DUP4 DUP4 DUP7 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP5 PUSH1 0x40 DUP5 ADD DUP4 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x1BB4 JUMPI DUP3 CALLDATALOAD PUSH2 0x1B9C DUP2 PUSH2 0x1F1E JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 MSTORE SWAP2 DUP4 ADD SWAP2 SWAP1 DUP4 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1B89 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1BD2 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x19F7 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1357 DUP2 DUP6 PUSH2 0x19F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C07 JUMPI PUSH2 0x1C07 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C07 JUMPI PUSH2 0x1C07 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C5A JUMPI PUSH2 0x1C5A PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1C7C JUMPI PUSH2 0x1C7C PUSH2 0x1F08 JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1C99 JUMPI PUSH2 0x1C99 PUSH2 0x1EDC JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1CC1 JUMPI PUSH2 0x1CC1 PUSH2 0x1EDC JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 PUSH1 0xFF SUB DUP3 GT ISZERO PUSH2 0x1CE7 JUMPI PUSH2 0x1CE7 PUSH2 0x1EDC JUMP JUMPDEST ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1D0C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 JUMPDEST DUP1 DUP6 GT ISZERO PUSH2 0x1D4C JUMPI DUP2 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x1D32 JUMPI PUSH2 0x1D32 PUSH2 0x1EDC JUMP JUMPDEST DUP1 DUP6 AND ISZERO PUSH2 0x1D3F JUMPI SWAP2 DUP2 MUL SWAP2 JUMPDEST SWAP4 DUP5 SHR SWAP4 SWAP1 DUP1 MUL SWAP1 PUSH2 0x1D16 JUMP JUMPDEST POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD36 PUSH1 0xFF DUP5 AND DUP4 PUSH1 0x0 DUP3 PUSH2 0x1D6D JUMPI POP PUSH1 0x1 PUSH2 0xD39 JUMP JUMPDEST DUP2 PUSH2 0x1D7A JUMPI POP PUSH1 0x0 PUSH2 0xD39 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x1D90 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x1D9A JUMPI PUSH2 0x1DB6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xD39 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x1DAB JUMPI PUSH2 0x1DAB PUSH2 0x1EDC JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0xD39 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x1DD9 JUMPI POP DUP2 DUP2 EXP PUSH2 0xD39 JUMP JUMPDEST PUSH2 0x1DE3 DUP4 DUP4 PUSH2 0x1D11 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x1DF7 JUMPI PUSH2 0x1DF7 PUSH2 0x1EDC JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1E19 JUMPI PUSH2 0x1E19 PUSH2 0x1EDC JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1E30 JUMPI PUSH2 0x1E30 PUSH2 0x1EDC JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1E52 JUMPI PUSH2 0x1E52 PUSH2 0x1EDC JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 DUP3 LT ISZERO PUSH2 0x1E74 JUMPI PUSH2 0x1E74 PUSH2 0x1EDC JUMP JUMPDEST SWAP1 SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1E91 JUMPI PUSH2 0x1E91 PUSH2 0x1EDC JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP2 EQ ISZERO PUSH2 0x1EB2 JUMPI PUSH2 0x1EB2 PUSH2 0x1EDC JUMP JUMPDEST PUSH1 0x1 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 EQ ISZERO PUSH2 0x1ED3 JUMPI PUSH2 0x1ED3 PUSH2 0x1EDC JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F30 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F30 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x49 DUP14 DUP4 DIV 0xB4 MOD RETURN CREATE SUB AND PUSH18 0xF6DABA5394014F41F4424513EE12A1878A9C DIV SLT 0xC9 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "876:16253:31:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1176:65;;;;;;;;15206:42:84;15194:55;;;15176:74;;15164:2;15149:18;1176:65:31;;;;;;;;3663:104;3750:10;3663:104;;1061:31;;;;;4030:481;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2320:1301::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;3809:179::-;3958:23;3809:179;;961:39;;;;;1287;;1324:2;1287:39;;;;;17775:4:84;17763:17;;;17745:36;;17733:2;17718:18;1287:39:31;17700:87:84;4030:481:31;4178:16;4210:32;4245:10;:19;;;4265:8;;4245:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4245:29:31;;;;;;;;;;;;:::i;:::-;4210:64;;4284:71;4358:23;:58;;;4417:8;;4358:68;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4358:68:31;;;;;;;;;;;;:::i;:::-;4284:142;;4444:60;4469:5;4476:6;4484:19;4444:24;:60::i;:::-;4437:67;;;;4030:481;;;;;;:::o;2320:1301::-;2481:16;;2523:29;2555:47;;;;2566:20;2555:47;:::i;:::-;2620:18;;2523:79;;-1:-1:-1;2620:37:31;;2612:86;;;;-1:-1:-1;;;2612:86:31;;16326:2:84;2612:86:31;;;16308:21:84;16365:2;16345:18;;;16338:30;16404:34;16384:18;;;16377:62;16475:6;16455:18;;;16448:34;16499:19;;2612:86:31;;;;;;;;;2818:29;;;;;2784:31;;2818:19;:10;:19;;;;:29;;2838:8;;;;2818:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2818:29:31;;;;;;;;;;;;:::i;:::-;2784:63;;2943:71;3017:23;:58;;;3076:8;;3017:68;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3017:68:31;;;;;;;;;;;;:::i;:::-;2943:142;;3194:29;3226:59;3251:5;3258;3265:19;3226:24;:59::i;:::-;3379:23;;10852:66:84;10839:2;10835:15;;;10831:88;3379:23:31;;;10819:101:84;3194:91:31;;-1:-1:-1;3341:25:31;;10936:12:84;;3379:23:31;;;;;;;;;;;;3369:34;;;;;;3341:62;;3421:193;3464:12;3494:17;3529:5;3552:11;3581:19;3421:25;:193::i;:::-;3414:200;;;;;;;;;2320:1301;;;;;;;;:::o;7644:1699::-;7903:13;;7853:16;;7881:19;7903:13;7976:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7976:25:31;;7926:75;;8011:45;8072:11;8059:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8059:25:31;;8011:73;;8165:8;8160:366;8183:11;8179:1;:15;;;8160:366;;;8322:19;8342:1;8322:22;;;;;;;;;;:::i;:::-;;;;;;;:43;;;8300:65;;:6;8307:1;8300:9;;;;;;;;;;:::i;:::-;;;;;;;:19;;;:65;8243:31;8275:1;8243:34;;;;;;;;;;:::i;:::-;;;;;;:122;;;;;;;;;;;8460:19;8480:1;8460:22;;;;;;;;;;:::i;:::-;;;;;;;:41;;;8438:63;;:6;8445:1;8438:9;;;;;;;;;;:::i;:::-;;;;;;;:19;;;:63;8383:29;8413:1;8383:32;;;;;;;;;;:::i;:::-;:118;;;;:32;;;;;;;;;;;:118;8196:3;;;;:::i;:::-;;;;8160:366;;;-1:-1:-1;8564:149:31;;;;;8536:25;;8564:32;:6;:32;;;;:149;;8610:5;;8629:31;;8674:29;;8564:149;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8564:149:31;;;;;;;;;;;;:::i;:::-;8536:177;;8724:30;8757:6;:37;;;8808:31;8853:29;8757:135;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8757:135:31;;;;;;;;;;;;:::i;:::-;8724:168;;8903:35;8955:11;8941:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8941:26:31;;8903:64;;9040:9;9035:266;9059:11;9055:1;:15;9035:266;;;9094:13;9108:1;9094:16;;;;;;;;:::i;:::-;;;;;;;9114:1;9094:21;9091:200;;;9158:1;9134:18;9153:1;9134:21;;;;;;;;:::i;:::-;;;;;;:25;;;;;9091:200;;;9260:13;9274:1;9260:16;;;;;;;;:::i;:::-;;;;;;;9235:8;9244:1;9235:11;;;;;;;;:::i;:::-;;;;;;;9249:7;9235:21;;;;:::i;:::-;9234:42;;;;:::i;:::-;9210:18;9229:1;9210:21;;;;;;;;:::i;:::-;;;;;;:66;;;;;9091:200;9072:3;;;;:::i;:::-;;;;9035:266;;;-1:-1:-1;9318:18:31;7644:1699;-1:-1:-1;;;;;;;;;7644:1699:31:o;5045:1489::-;5365:32;5399:24;5436:33;5486:23;:30;5472:45;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5472:45:31;;5436:81;;5527:31;5577:23;:30;5561:47;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5527:81:31;-1:-1:-1;5643:15:31;5619:14;5729:706;5768:6;:13;5756:9;:25;;;5729:706;;;5858:19;5878:9;5858:30;;;;;;;;;;:::i;:::-;;;;;;;:45;;;5828:75;;:6;5835:9;5828:17;;;;;;;;;;:::i;:::-;;;;;;;:27;;;:75;;;;:::i;:::-;5818:85;;:7;:85;;;5810:119;;;;-1:-1:-1;;;5810:119:31;;15976:2:84;5810:119:31;;;15958:21:84;16015:2;15995:18;;;15988:30;16054:23;16034:18;;;16027:51;16095:18;;5810:119:31;15948:171:84;5810:119:31;5944:21;5968:141;6013:19;6033:9;6013:30;;;;;;;;;;:::i;:::-;;;;;;;6061:23;6085:9;6061:34;;;;;;;;;;:::i;:::-;;;;;;;5968:27;:141::i;:::-;5944:165;;6181:243;6209:6;6216:9;6209:17;;;;;;;;;;:::i;:::-;;;;;;;:37;;;6264:14;6181:243;;6296:17;6331:20;6352:9;6331:31;;;;;;;;;;:::i;:::-;;;;;;;6380:19;6400:9;6380:30;;;;;;;;;;:::i;:::-;;;;;;;6181:10;:243::i;:::-;6125:16;6142:9;6125:27;;;;;;;;;;:::i;:::-;;;;;;6154:12;6167:9;6154:23;;;;;;;;;;:::i;:::-;;;;;;;;;;6124:300;;;;;-1:-1:-1;5783:11:31;;;;:::i;:::-;;;;5729:706;;;;6470:12;6459:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;6445:38;;6511:16;6493:34;;5425:1109;;;5045:1489;;;;;;;;:::o;6995:293::-;7179:6;7273:7;7237:18;:32;;;7212:57;;:22;:57;;;;:::i;:::-;7211:69;;;;:::i;:::-;7197:84;;6995:293;;;;;:::o;9837:2698::-;10102:13;10117:28;10211:22;10236:35;10252:18;10236:15;:35::i;:::-;10309:13;;10365:46;;;10379:31;10365:46;;;;;;;;;10211:60;;-1:-1:-1;10309:13:31;;10281:18;;10365:46;;;;;;;;;;-1:-1:-1;10365:46:31;10333:78;;10422:25;10498:18;:34;;;10483:49;;:11;:49;;;;10462:127;;;;-1:-1:-1;;;10462:127:31;;16731:2:84;10462:127:31;;;16713:21:84;16770:2;16750:18;;;16743:30;16809:33;16789:18;;;16782:61;16860:18;;10462:127:31;16703:181:84;10462:127:31;10703:12;10698:937;10729:11;10721:19;;:5;:19;;;10698:937;;;10789:15;10773:6;10780:5;10773:13;;;;;;;;;;:::i;:::-;;;;;;;:31;;;10765:76;;;;-1:-1:-1;;;10765:76:31;;17444:2:84;10765:76:31;;;17426:21:84;;;17463:18;;;17456:30;17522:34;17502:18;;;17495:62;17574:18;;10765:76:31;17416:182:84;10765:76:31;10860:9;;;;10856:118;;10913:6;10920:9;10928:1;10920:5;:9;:::i;:::-;10913:17;;;;;;;;;;:::i;:::-;;;;;;;10897:33;;:6;10904:5;10897:13;;;;;;;;;;:::i;:::-;;;;;;;:33;;;10889:70;;;;-1:-1:-1;;;10889:70:31;;17091:2:84;10889:70:31;;;17073:21:84;17130:2;17110:18;;;17103:30;17169:26;17149:18;;;17142:54;17213:18;;10889:70:31;17063:174:84;10889:70:31;11051:28;11128:17;11147:6;11154:5;11147:13;;;;;;;;;;:::i;:::-;;;;;;;11117:44;;;;;;;;14905:25:84;;;14978:18;14966:31;14961:2;14946:18;;14939:59;14893:2;14878:18;;14860:144;11117:44:31;;;;;;;;;;;;;11107:55;;;;;;11082:94;;11051:125;;11191:16;11210:132;11247:20;11285;11323:5;11210:19;:132::i;:::-;11191:151;-1:-1:-1;1324:2:31;11411:25;;;;11407:218;;;11473:19;11460:32;;:10;:32;;;11456:111;;;11538:10;11516:32;;11456:111;11584:12;11597:10;11584:24;;;;;;;;;;:::i;:::-;;;;;;:26;;;;;;;;:::i;:::-;;;-1:-1:-1;11407:218:31;10751:884;;10742:7;;;;;:::i;:::-;;;;10698:937;;;;11702:21;11737:36;11776:103;11818:18;11850:19;11776:28;:103::i;:::-;11737:142;;11977:23;11959:360;12037:19;12018:38;;:15;:38;11959:360;;12148:1;12116:12;12129:15;12116:29;;;;;;;;:::i;:::-;;;;;;;:33;12112:197;;;12265:12;12278:15;12265:29;;;;;;;;:::i;:::-;;;;;;;12206:19;12226:15;12206:36;;;;;;;;:::i;:::-;;;;;;;:88;;;;:::i;:::-;12169:125;;;;:::i;:::-;;;12112:197;12070:17;;;;:::i;:::-;;;;11959:360;;;;12489:3;12461:18;:24;;;12445:13;:40;;;;:::i;:::-;12444:48;;;;:::i;:::-;12436:56;12516:12;;-1:-1:-1;9837:2698:31;;-1:-1:-1;;;;;;;;;;;9837:2698:31:o;14101:621::-;14243:16;14275:22;14314:18;:35;;;14300:50;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14300:50:31;-1:-1:-1;14376:31:31;;14275:75;;-1:-1:-1;14411:1:31;;14373:34;;:1;:34;:::i;:::-;14372:40;;;;:::i;:::-;14360:5;14366:1;14360:8;;;;;;;;:::i;:::-;;;;;;;;;;:52;14446:1;14423:270;14461:18;:35;;;14449:47;;:9;:47;;;14423:270;;;14651:31;;14627:55;;:5;14633:13;14645:1;14633:9;:13;:::i;:::-;14627:20;;;;;;;;;;:::i;:::-;;;;;;;:55;;14608:5;14614:9;14608:16;;;;;;;;;;:::i;:::-;;;;;;;;;;:74;14498:11;;;;:::i;:::-;;;;14423:270;;;-1:-1:-1;14710:5:31;14101:621;-1:-1:-1;;14101:621:31:o;12928:932::-;13174:13;;13096:5;;;;;13236:571;13276:11;13263:24;;:10;:24;;;13236:571;;;13317:12;13332:6;13339:10;13332:18;;;;;;;;;;:::i;:::-;;;;;;;13317:33;;13427:4;13404:20;:27;13394:4;13370:21;:28;13369:63;13365:362;;13564:15;13549:30;;:11;:30;;;13545:168;;;13610:1;13603:8;;;;;;;;13545:168;13665:29;13679:15;13665:11;:29;:::i;:::-;13658:36;;;;;;;;13545:168;13779:17;;;;:::i;:::-;;;;13303:504;13289:12;;;;;:::i;:::-;;;;13236:571;;;-1:-1:-1;13824:29:31;13838:15;13824:11;:29;:::i;15914:577::-;16094:16;16122:43;16195:23;:19;16217:1;16195:23;:::i;:::-;16168:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16168:60:31;;16122:106;;16244:7;16239:202;16262:19;16257:24;;:1;:24;;;16239:202;;16334:96;16379:18;16415:1;16334:96;;:27;:96::i;:::-;16302:26;16329:1;16302:29;;;;;;;;;;:::i;:::-;;;;;;;;;;:128;16283:3;;;;:::i;:::-;;;;16239:202;;;-1:-1:-1;16458:26:31;15914:577;-1:-1:-1;;;15914:577:31:o;15062:::-;15239:7;15307:21;15331:18;:24;;;15356:15;15331:41;;;;;;;:::i;:::-;;;;;15307:65;;;;15436:30;15469:107;15506:18;:31;;;15551:15;15469:23;:107::i;:::-;15436:140;-1:-1:-1;15594:38:31;15436:140;15594:13;:38;:::i;:::-;15587:45;15062:577;-1:-1:-1;;;;;15062:577:31:o;16787:340::-;16913:7;16940:19;;16936:185;;17049:19;17067:1;17049:15;:19;:::i;:::-;17032:37;;;;;;:::i;:::-;17027:1;:42;;16989:31;17005:15;16989:31;;;;:::i;:::-;16984:1;:36;;16982:89;;;;:::i;:::-;16975:96;;;;16936:185;-1:-1:-1;17109:1:31;17102:8;;14:196:84;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:781::-;275:5;328:3;321:4;313:6;309:17;305:27;295:2;;346:1;343;336:12;295:2;379;373:9;401:3;443:2;435:6;431:15;512:6;500:10;497:22;476:18;464:10;461:34;458:62;455:2;;;523:18;;:::i;:::-;559:2;552:22;594:6;620;641:15;;;638:24;-1:-1:-1;635:2:84;;;675:1;672;665:12;635:2;697:1;688:10;;707:259;721:4;718:1;715:11;707:259;;;787:3;781:10;804:30;828:5;804:30;:::i;:::-;847:18;;741:1;734:9;;;;;888:4;912:12;;;;944;707:259;;;-1:-1:-1;984:6:84;;285:711;-1:-1:-1;;;;;285:711:84:o;1001:366::-;1063:8;1073:6;1127:3;1120:4;1112:6;1108:17;1104:27;1094:2;;1145:1;1142;1135:12;1094:2;-1:-1:-1;1168:20:84;;1211:18;1200:30;;1197:2;;;1243:1;1240;1233:12;1197:2;1280:4;1272:6;1268:17;1256:29;;1340:3;1333:4;1323:6;1320:1;1316:14;1308:6;1304:27;1300:38;1297:47;1294:2;;;1357:1;1354;1347:12;1294:2;1084:283;;;;;:::o;1372:186::-;1451:13;;1504:28;1493:40;;1483:51;;1473:2;;1548:1;1545;1538:12;1563:136;1641:13;;1663:30;1641:13;1663:30;:::i;1704:160::-;1781:13;;1834:4;1823:16;;1813:27;;1803:2;;1854:1;1851;1844:12;1869:509;1963:6;1971;1979;2032:2;2020:9;2011:7;2007:23;2003:32;2000:2;;;2048:1;2045;2038:12;2000:2;2071:29;2090:9;2071:29;:::i;:::-;2061:39;;2151:2;2140:9;2136:18;2123:32;2178:18;2170:6;2167:30;2164:2;;;2210:1;2207;2200:12;2164:2;2249:69;2310:7;2301:6;2290:9;2286:22;2249:69;:::i;:::-;1990:388;;2337:8;;-1:-1:-1;2223:95:84;;-1:-1:-1;;;;1990:388:84:o;2383:978::-;2497:6;2505;2513;2521;2529;2582:2;2570:9;2561:7;2557:23;2553:32;2550:2;;;2598:1;2595;2588:12;2550:2;2621:29;2640:9;2621:29;:::i;:::-;2611:39;;2701:2;2690:9;2686:18;2673:32;2724:18;2765:2;2757:6;2754:14;2751:2;;;2781:1;2778;2771:12;2751:2;2820:69;2881:7;2872:6;2861:9;2857:22;2820:69;:::i;:::-;2908:8;;-1:-1:-1;2794:95:84;-1:-1:-1;2996:2:84;2981:18;;2968:32;;-1:-1:-1;3012:16:84;;;3009:2;;;3041:1;3038;3031:12;3009:2;3079:8;3068:9;3064:24;3054:34;;3126:7;3119:4;3115:2;3111:13;3107:27;3097:2;;3148:1;3145;3138:12;3097:2;3188;3175:16;3214:2;3206:6;3203:14;3200:2;;;3230:1;3227;3220:12;3200:2;3275:7;3270:2;3261:6;3257:2;3253:15;3249:24;3246:37;3243:2;;;3296:1;3293;3286:12;3243:2;2540:821;;;;-1:-1:-1;2540:821:84;;-1:-1:-1;3327:2:84;3319:11;;3349:6;2540:821;-1:-1:-1;;;2540:821:84:o;3366:1826::-;3474:6;3505:2;3548;3536:9;3527:7;3523:23;3519:32;3516:2;;;3564:1;3561;3554:12;3516:2;3604:9;3591:23;3633:18;3674:2;3666:6;3663:14;3660:2;;;3690:1;3687;3680:12;3660:2;3728:6;3717:9;3713:22;3703:32;;3773:7;3766:4;3762:2;3758:13;3754:27;3744:2;;3795:1;3792;3785:12;3744:2;3831;3818:16;3854:69;3870:52;3919:2;3870:52;:::i;:::-;3854:69;:::i;:::-;3945:3;3969:2;3964:3;3957:15;3997:2;3992:3;3988:12;3981:19;;4028:2;4024;4020:11;4076:7;4071:2;4065;4062:1;4058:10;4054:2;4050:19;4046:28;4043:41;4040:2;;;4097:1;4094;4087:12;4040:2;4119:1;4129:1033;4143:2;4140:1;4137:9;4129:1033;;;4220:3;4207:17;4256:2;4243:11;4240:19;4237:2;;;4272:1;4269;4262:12;4237:2;4299:20;;4354:2;4346:11;;4342:25;-1:-1:-1;4332:2:84;;4381:1;4378;4371:12;4332:2;4429;4425;4421:11;4408:25;4459:69;4475:52;4524:2;4475:52;:::i;4459:69::-;4554:5;4586:2;4579:5;4572:17;4622:2;4615:5;4611:14;4602:23;;4659:2;4655;4651:11;4711:7;4706:2;4700;4697:1;4693:10;4689:2;4685:19;4681:28;4678:41;4675:2;;;4732:1;4729;4722:12;4675:2;4760:1;4749:12;;4774:283;4790:2;4785:3;4782:11;4774:283;;;4873:5;4860:19;4896:30;4920:5;4896:30;:::i;:::-;4943:20;;4812:1;4803:11;;;;;4989:14;;;;5029;;4774:283;;;-1:-1:-1;5070:18:84;;-1:-1:-1;;;5108:12:84;;;;5140;;;;4161:1;4154:9;4129:1033;;;-1:-1:-1;5181:5:84;;3485:1707;-1:-1:-1;;;;;;;;;3485:1707:84:o;5197:1735::-;5315:6;5346:2;5389;5377:9;5368:7;5364:23;5360:32;5357:2;;;5405:1;5402;5395:12;5357:2;5438:9;5432:16;5471:18;5463:6;5460:30;5457:2;;;5503:1;5500;5493:12;5457:2;5526:22;;5579:4;5571:13;;5567:27;-1:-1:-1;5557:2:84;;5608:1;5605;5598:12;5557:2;5637;5631:9;5660:69;5676:52;5725:2;5676:52;:::i;5660:69::-;5763:15;;;5794:12;;;;5826:11;;;5856:4;5887:11;;;5879:20;;5875:29;;5872:42;-1:-1:-1;5869:2:84;;;5927:1;5924;5917:12;5869:2;5949:1;5940:10;;5970:1;5980:922;5996:2;5991:3;5988:11;5980:922;;;6071:2;6065:3;6056:7;6052:17;6048:26;6045:2;;;6087:1;6084;6077:12;6045:2;6117:22;;:::i;:::-;6172:3;6166:10;6159:5;6152:25;6220:2;6215:3;6211:12;6205:19;6237:32;6261:7;6237:32;:::i;:::-;6289:14;;;6282:31;6336:2;6372:12;;;6366:19;6398:32;6366:19;6398:32;:::i;:::-;6450:14;;;6443:31;6497:2;6533:12;;;6527:19;6559:32;6527:19;6559:32;:::i;:::-;6611:14;;;6604:31;6658:3;6695:12;;;6689:19;6721:32;6689:19;6721:32;:::i;:::-;6773:14;;;6766:31;6810:18;;6848:12;;;;6880;;;;6018:1;6009:11;5980:922;;;-1:-1:-1;6921:5:84;;5326:1606;-1:-1:-1;;;;;;;;;5326:1606:84:o;6937:1938::-;7068:6;7099:2;7142;7130:9;7121:7;7117:23;7113:32;7110:2;;;7158:1;7155;7148:12;7110:2;7191:9;7185:16;7224:18;7216:6;7213:30;7210:2;;;7256:1;7253;7246:12;7210:2;7279:22;;7332:4;7324:13;;7320:27;-1:-1:-1;7310:2:84;;7361:1;7358;7351:12;7310:2;7390;7384:9;7413:69;7429:52;7478:2;7429:52;:::i;7413:69::-;7516:15;;;7547:12;;;;7579:11;;;7609:6;7642:11;;;7634:20;;7630:29;;7627:42;-1:-1:-1;7624:2:84;;;7682:1;7679;7672:12;7624:2;7704:1;7695:10;;7725:1;7735:1110;7751:2;7746:3;7743:11;7735:1110;;;7826:2;7820:3;7811:7;7807:17;7803:26;7800:2;;;7842:1;7839;7832:12;7800:2;7872:22;;:::i;:::-;7921:32;7949:3;7921:32;:::i;:::-;7914:5;7907:47;7990:41;8027:2;8022:3;8018:12;7990:41;:::i;:::-;7985:2;7978:5;7974:14;7967:65;8055:2;8093:42;8131:2;8126:3;8122:12;8093:42;:::i;:::-;8077:14;;;8070:66;8159:2;8197:42;8226:12;;;8197:42;:::i;:::-;8181:14;;;8174:66;8263:3;8302:42;8331:12;;;8302:42;:::i;:::-;8286:14;;;8279:66;8368:3;8407:42;8436:12;;;8407:42;:::i;:::-;8391:14;;;8384:66;8473:3;8512:43;8542:12;;;8512:43;:::i;:::-;8496:14;;;8489:67;8580:3;8620:58;8670:7;8655:13;;;8620:58;:::i;:::-;8603:15;;;8596:83;8734:3;8725:13;;8719:20;8710:6;8699:18;;8692:48;8753:18;;8791:12;;;;8823;;;;7773:1;7764:11;7735:1110;;8880:901;8975:6;9006:2;9049;9037:9;9028:7;9024:23;9020:32;9017:2;;;9065:1;9062;9055:12;9017:2;9098:9;9092:16;9131:18;9123:6;9120:30;9117:2;;;9163:1;9160;9153:12;9117:2;9186:22;;9239:4;9231:13;;9227:27;-1:-1:-1;9217:2:84;;9268:1;9265;9258:12;9217:2;9297;9291:9;9320:69;9336:52;9385:2;9336:52;:::i;9320:69::-;9411:3;9435:2;9430:3;9423:15;9463:2;9458:3;9454:12;9447:19;;9494:2;9490;9486:11;9542:7;9537:2;9531;9528:1;9524:10;9520:2;9516:19;9512:28;9509:41;9506:2;;;9563:1;9560;9553:12;9506:2;9585:1;9576:10;;9595:156;9609:2;9606:1;9603:9;9595:156;;;9666:10;;9654:23;;9627:1;9620:9;;;;;9697:12;;;;9729;;9595:156;;;-1:-1:-1;9770:5:84;8986:795;-1:-1:-1;;;;;;;8986:795:84:o;9786:435::-;9839:3;9877:5;9871:12;9904:6;9899:3;9892:19;9930:4;9959:2;9954:3;9950:12;9943:19;;9996:2;9989:5;9985:14;10017:1;10027:169;10041:6;10038:1;10035:13;10027:169;;;10102:13;;10090:26;;10136:12;;;;10171:15;;;;10063:1;10056:9;10027:169;;;-1:-1:-1;10212:3:84;;9847:374;-1:-1:-1;;;;;9847:374:84:o;10226:459::-;10278:3;10316:5;10310:12;10343:6;10338:3;10331:19;10369:4;10398:2;10393:3;10389:12;10382:19;;10435:2;10428:5;10424:14;10456:1;10466:194;10480:6;10477:1;10474:13;10466:194;;;10545:13;;10560:18;10541:38;10529:51;;10600:12;;;;10635:15;;;;10502:1;10495:9;10466:194;;10959:579;11252:42;11244:6;11240:55;11229:9;11222:74;11332:2;11327;11316:9;11312:18;11305:30;11203:4;11358:55;11409:2;11398:9;11394:18;11386:6;11358:55;:::i;:::-;11461:9;11453:6;11449:22;11444:2;11433:9;11429:18;11422:50;11489:43;11525:6;11517;11489:43;:::i;:::-;11481:51;11212:326;-1:-1:-1;;;;;;11212:326:84:o;11543:903::-;11735:4;11764:2;11804;11793:9;11789:18;11834:2;11823:9;11816:21;11857:6;11892;11886:13;11923:6;11915;11908:22;11961:2;11950:9;11946:18;11939:25;;12023:2;12013:6;12010:1;12006:14;11995:9;11991:30;11987:39;11973:53;;12061:2;12053:6;12049:15;12082:1;12092:325;12106:6;12103:1;12100:13;12092:325;;;12195:66;12183:9;12175:6;12171:22;12167:95;12162:3;12155:108;12286:51;12330:6;12321;12315:13;12286:51;:::i;:::-;12276:61;-1:-1:-1;12395:12:84;;;;12360:15;;;;12128:1;12121:9;12092:325;;;-1:-1:-1;12434:6:84;;11744:702;-1:-1:-1;;;;;;;11744:702:84:o;12451:261::-;12630:2;12619:9;12612:21;12593:4;12650:56;12702:2;12691:9;12687:18;12679:6;12650:56;:::i;12717:849::-;12942:2;12931:9;12924:21;12905:4;12968:56;13020:2;13009:9;13005:18;12997:6;12968:56;:::i;:::-;13043:2;13093:9;13085:6;13081:22;13076:2;13065:9;13061:18;13054:50;13133:6;13127:13;13164:6;13156;13149:22;13189:1;13199:137;13213:6;13210:1;13207:13;13199:137;;;13305:14;;;13301:23;;13295:30;13274:14;;;13270:23;;13263:63;13228:10;;13199:137;;;13354:6;13351:1;13348:13;13345:2;;;13421:1;13416:2;13407:6;13399;13395:19;13391:28;13384:39;13345:2;-1:-1:-1;13482:2:84;13470:15;-1:-1:-1;;13466:88:84;13454:101;;;;13450:110;;12914:652;-1:-1:-1;;;;12914:652:84:o;13571:693::-;13750:2;13802:21;;;13775:18;;;13858:22;;;13721:4;;13937:6;13911:2;13896:18;;13721:4;13971:267;13985:6;13982:1;13979:13;13971:267;;;14060:6;14047:20;14080:30;14104:5;14080:30;:::i;:::-;14146:10;14135:22;14123:35;;14213:15;;;;14178:12;;;;14007:1;14000:9;13971:267;;;-1:-1:-1;14255:3:84;13730:534;-1:-1:-1;;;;;;13730:534:84:o;14269:459::-;14522:2;14511:9;14504:21;14485:4;14548:55;14599:2;14588:9;14584:18;14576:6;14548:55;:::i;:::-;14651:9;14643:6;14639:22;14634:2;14623:9;14619:18;14612:50;14679:43;14715:6;14707;14679:43;:::i;17792:253::-;17864:2;17858:9;17906:4;17894:17;;17941:18;17926:34;;17962:22;;;17923:62;17920:2;;;17988:18;;:::i;:::-;18024:2;18017:22;17838:207;:::o;18050:255::-;18122:2;18116:9;18164:6;18152:19;;18201:18;18186:34;;18222:22;;;18183:62;18180:2;;;18248:18;;:::i;18310:334::-;18381:2;18375:9;18437:2;18427:13;;-1:-1:-1;;18423:86:84;18411:99;;18540:18;18525:34;;18561:22;;;18522:62;18519:2;;;18587:18;;:::i;:::-;18623:2;18616:22;18355:289;;-1:-1:-1;18355:289:84:o;18649:192::-;18718:4;18751:18;18743:6;18740:30;18737:2;;;18773:18;;:::i;:::-;-1:-1:-1;18818:1:84;18814:14;18830:4;18810:25;;18727:114::o;18846:128::-;18886:3;18917:1;18913:6;18910:1;18907:13;18904:2;;;18923:18;;:::i;:::-;-1:-1:-1;18959:9:84;;18894:80::o;18979:236::-;19018:3;19046:18;19091:2;19088:1;19084:10;19121:2;19118:1;19114:10;19152:3;19148:2;19144:12;19139:3;19136:21;19133:2;;;19160:18;;:::i;:::-;19196:13;;19026:189;-1:-1:-1;;;;19026:189:84:o;19220:204::-;19258:3;19294:4;19291:1;19287:12;19326:4;19323:1;19319:12;19361:3;19355:4;19351:14;19346:3;19343:23;19340:2;;;19369:18;;:::i;:::-;19405:13;;19266:158;-1:-1:-1;;;19266:158:84:o;19429:274::-;19469:1;19495;19485:2;;-1:-1:-1;;;19527:1:84;19520:88;19631:4;19628:1;19621:15;19659:4;19656:1;19649:15;19485:2;-1:-1:-1;19688:9:84;;19475:228::o;19708:482::-;19797:1;19840:5;19797:1;19854:330;19875:7;19865:8;19862:21;19854:330;;;19994:4;-1:-1:-1;;19922:77:84;19916:4;19913:87;19910:2;;;20003:18;;:::i;:::-;20053:7;20043:8;20039:22;20036:2;;;20073:16;;;;20036:2;20152:22;;;;20112:15;;;;19854:330;;;19858:3;19772:418;;;;;:::o;20195:140::-;20253:5;20282:47;20323:4;20313:8;20309:19;20303:4;20389:5;20419:8;20409:2;;-1:-1:-1;20460:1:84;20474:5;;20409:2;20508:4;20498:2;;-1:-1:-1;20545:1:84;20559:5;;20498:2;20590:4;20608:1;20603:59;;;;20676:1;20671:130;;;;20583:218;;20603:59;20633:1;20624:10;;20647:5;;;20671:130;20708:3;20698:8;20695:17;20692:2;;;20715:18;;:::i;:::-;-1:-1:-1;;20771:1:84;20757:16;;20786:5;;20583:218;;20885:2;20875:8;20872:16;20866:3;20860:4;20857:13;20853:36;20847:2;20837:8;20834:16;20829:2;20823:4;20820:12;20816:35;20813:77;20810:2;;;-1:-1:-1;20922:19:84;;;20954:5;;20810:2;21001:34;21026:8;21020:4;21001:34;:::i;:::-;21131:6;-1:-1:-1;;21059:79:84;21050:7;21047:92;21044:2;;;21142:18;;:::i;:::-;21180:20;;20399:807;-1:-1:-1;;;20399:807:84:o;21211:228::-;21251:7;21377:1;-1:-1:-1;;21305:74:84;21302:1;21299:81;21294:1;21287:9;21280:17;21276:105;21273:2;;;21384:18;;:::i;:::-;-1:-1:-1;21424:9:84;;21263:176::o;21444:125::-;21484:4;21512:1;21509;21506:8;21503:2;;;21517:18;;:::i;:::-;-1:-1:-1;21554:9:84;;21493:76::o;21574:221::-;21613:4;21642:10;21702;;;;21672;;21724:12;;;21721:2;;;21739:18;;:::i;:::-;21776:13;;21622:173;-1:-1:-1;;;21622:173:84:o;21800:195::-;21838:4;21875;21872:1;21868:12;21907:4;21904:1;21900:12;21932:3;21927;21924:12;21921:2;;;21939:18;;:::i;:::-;21976:13;;;21847:148;-1:-1:-1;;;21847:148:84:o;22000:195::-;22039:3;-1:-1:-1;;22063:5:84;22060:77;22057:2;;;22140:18;;:::i;:::-;-1:-1:-1;22187:1:84;22176:13;;22047:148::o;22200:201::-;22238:3;22266:10;22311:2;22304:5;22300:14;22338:2;22329:7;22326:15;22323:2;;;22344:18;;:::i;:::-;22393:1;22380:15;;22246:155;-1:-1:-1;;;22246:155:84:o;22406:175::-;22443:3;22487:4;22480:5;22476:16;22516:4;22507:7;22504:17;22501:2;;;22524:18;;:::i;:::-;22573:1;22560:15;;22451:130;-1:-1:-1;;22451:130:84:o;22586:184::-;-1:-1:-1;;;22635:1:84;22628:88;22735:4;22732:1;22725:15;22759:4;22756:1;22749:15;22775:184;-1:-1:-1;;;22824:1:84;22817:88;22924:4;22921:1;22914:15;22948:4;22945:1;22938:15;22964:184;-1:-1:-1;;;23013:1:84;23006:88;23113:4;23110:1;23103:15;23137:4;23134:1;23127:15;23153:121;23238:10;23231:5;23227:22;23220:5;23217:33;23207:2;;23264:1;23261;23254:12;23207:2;23197:77;:::o;23279:129::-;23364:18;23357:5;23353:30;23346:5;23343:41;23333:2;;23398:1;23395;23388:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1612600",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "TIERS_LENGTH()": "270",
                "calculate(address,uint32[],bytes)": "infinite",
                "drawBuffer()": "infinite",
                "getDrawBuffer()": "infinite",
                "getNormalizedBalancesForDrawIds(address,uint32[])": "infinite",
                "getPrizeDistributionBuffer()": "infinite",
                "prizeDistributionBuffer()": "infinite",
                "ticket()": "infinite"
              },
              "internal": {
                "_calculate(uint256,uint256,bytes32,uint64[] memory,struct IPrizeDistributionSource.PrizeDistribution memory)": "infinite",
                "_calculateNumberOfUserPicks(struct IPrizeDistributionSource.PrizeDistribution memory,uint256)": "infinite",
                "_calculatePrizeTierFraction(struct IPrizeDistributionSource.PrizeDistribution memory,uint256)": "infinite",
                "_calculatePrizeTierFractions(struct IPrizeDistributionSource.PrizeDistribution memory,uint8)": "infinite",
                "_calculatePrizesAwardable(uint256[] memory,bytes32,struct IDrawBeacon.Draw memory[] memory,uint64[] memory[] memory,struct IPrizeDistributionSource.PrizeDistribution memory[] memory)": "infinite",
                "_calculateTierIndex(uint256,uint256,uint256[] memory)": "infinite",
                "_createBitMasks(struct IPrizeDistributionSource.PrizeDistribution memory)": "infinite",
                "_getNormalizedBalancesAt(address,struct IDrawBeacon.Draw memory[] memory,struct IPrizeDistributionSource.PrizeDistribution memory[] memory)": "infinite",
                "_numberOfPrizesForIndex(uint8,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "TIERS_LENGTH()": "f8d0ca4c",
              "calculate(address,uint32[],bytes)": "aaca392e",
              "drawBuffer()": "ce343bb6",
              "getDrawBuffer()": "4019f2d6",
              "getNormalizedBalancesForDrawIds(address,uint32[])": "8045fbcf",
              "getPrizeDistributionBuffer()": "bd97a252",
              "prizeDistributionBuffer()": "0840bbdd",
              "ticket()": "6cc25db7"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_ticket\",\"type\":\"address\"},{\"internalType\":\"contract IDrawBuffer\",\"name\":\"_drawBuffer\",\"type\":\"address\"},{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"_prizeDistributionBuffer\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IDrawBuffer\",\"name\":\"drawBuffer\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"prizeDistributionBuffer\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract PrizeDistributor\",\"name\":\"prizeDistributor\",\"type\":\"address\"}],\"name\":\"PrizeDistributorSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"TIERS_LENGTH\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"},{\"internalType\":\"bytes\",\"name\":\"_pickIndicesForDraws\",\"type\":\"bytes\"}],\"name\":\"calculate\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"drawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getNormalizedBalancesForDrawIds\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeDistributionBuffer\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"prizeDistributionBuffer\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ticket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"calculate(address,uint32[],bytes)\":{\"params\":{\"data\":\"The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\",\"drawIds\":\"drawId array for which to calculate prize amounts for.\",\"user\":\"User for which to calculate prize amount.\"},\"returns\":{\"_0\":\"List of awardable prize amounts ordered by drawId.\"}},\"constructor\":{\"params\":{\"_drawBuffer\":\"The address of the draw buffer to push draws to\",\"_prizeDistributionBuffer\":\"PrizeDistributionBuffer address\",\"_ticket\":\"Ticket associated with this DrawCalculator\"}},\"getDrawBuffer()\":{\"returns\":{\"_0\":\"IDrawBuffer\"}},\"getNormalizedBalancesForDrawIds(address,uint32[])\":{\"params\":{\"drawIds\":\"The drawIds to consider\",\"user\":\"The users address\"},\"returns\":{\"_0\":\"Array of balances\"}},\"getPrizeDistributionBuffer()\":{\"returns\":{\"_0\":\"IPrizeDistributionBuffer\"}}},\"title\":\"PoolTogether V4 DrawCalculator\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address,address)\":{\"notice\":\"Emitted when the contract is initialized\"},\"PrizeDistributorSet(address)\":{\"notice\":\"Emitted when the prizeDistributor is set/updated\"}},\"kind\":\"user\",\"methods\":{\"TIERS_LENGTH()\":{\"notice\":\"The tiers array length\"},\"calculate(address,uint32[],bytes)\":{\"notice\":\"Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\"},\"constructor\":{\"notice\":\"Constructor for DrawCalculator\"},\"drawBuffer()\":{\"notice\":\"DrawBuffer address\"},\"getDrawBuffer()\":{\"notice\":\"Read global DrawBuffer variable.\"},\"getNormalizedBalancesForDrawIds(address,uint32[])\":{\"notice\":\"Returns a users balances expressed as a fraction of the total supply over time.\"},\"getPrizeDistributionBuffer()\":{\"notice\":\"Read global prizeDistributionBuffer variable.\"},\"prizeDistributionBuffer()\":{\"notice\":\"The stored history of draw settings.  Stored as ring buffer.\"},\"ticket()\":{\"notice\":\"Ticket associated with DrawCalculator\"}},\"notice\":\"The DrawCalculator calculates a user's prize by matching a winning random number against their picks. A users picks are generated deterministically based on their address and balance of tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc... A user with a higher average weighted balance (during each draw period) will be given a large number of picks to choose from, and thus a higher chance to match the winning numbers.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/DrawCalculator.sol\":\"DrawCalculator\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Random Number Generator Interface\\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\n */\\ninterface RNGInterface {\\n  /**\\n   * @notice Emitted when a new request for a random number has been submitted\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param sender The indexed address of the sender of the request\\n   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /**\\n   * @notice Emitted when an existing request for a random number has been completed\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param randomNumber The random number produced by the 3rd-party service\\n   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /**\\n   * @notice Gets the last request id used by the RNG service\\n   * @return requestId The last request id used in the last request\\n   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /**\\n   * @notice Gets the Fee for making a Request against an RNG service\\n   * @return feeToken The address of the token that is used to pay fees\\n   * @return requestFee The fee required to be paid to make a request\\n   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /**\\n   * @notice Sends a request for a random number to the 3rd-party service\\n   * @dev Some services will complete the request immediately, others may have a time-delay\\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n   * @return requestId The ID of the request used to get the results of the RNG service\\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /**\\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\\n   * @dev For time-delayed requests, this function is used to check/confirm completion\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\\n   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /**\\n   * @notice Gets the random number produced by the 3rd-party service\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return randomNum The random number\\n   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"},\"contracts/DrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\nimport \\\"./interfaces/ITicket.sol\\\";\\nimport \\\"./interfaces/IDrawBuffer.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\nimport \\\"./interfaces/IDrawBeacon.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 DrawCalculator\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawCalculator calculates a user's prize by matching a winning random number against\\n            their picks. A users picks are generated deterministically based on their address and balance\\n            of tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc...\\n            A user with a higher average weighted balance (during each draw period) will be given a large number of\\n            picks to choose from, and thus a higher chance to match the winning numbers.\\n*/\\ncontract DrawCalculator is IDrawCalculator {\\n\\n    /// @notice DrawBuffer address\\n    IDrawBuffer public immutable drawBuffer;\\n\\n    /// @notice Ticket associated with DrawCalculator\\n    ITicket public immutable ticket;\\n\\n    /// @notice The stored history of draw settings.  Stored as ring buffer.\\n    IPrizeDistributionBuffer public immutable prizeDistributionBuffer;\\n\\n    /// @notice The tiers array length\\n    uint8 public constant TIERS_LENGTH = 16;\\n\\n    /* ============ Constructor ============ */\\n\\n    /// @notice Constructor for DrawCalculator\\n    /// @param _ticket Ticket associated with this DrawCalculator\\n    /// @param _drawBuffer The address of the draw buffer to push draws to\\n    /// @param _prizeDistributionBuffer PrizeDistributionBuffer address\\n    constructor(\\n        ITicket _ticket,\\n        IDrawBuffer _drawBuffer,\\n        IPrizeDistributionBuffer _prizeDistributionBuffer\\n    ) {\\n        require(address(_ticket) != address(0), \\\"DrawCalc/ticket-not-zero\\\");\\n        require(address(_prizeDistributionBuffer) != address(0), \\\"DrawCalc/pdb-not-zero\\\");\\n        require(address(_drawBuffer) != address(0), \\\"DrawCalc/dh-not-zero\\\");\\n\\n        ticket = _ticket;\\n        drawBuffer = _drawBuffer;\\n        prizeDistributionBuffer = _prizeDistributionBuffer;\\n\\n        emit Deployed(_ticket, _drawBuffer, _prizeDistributionBuffer);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IDrawCalculator\\n    function calculate(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _pickIndicesForDraws\\n    ) external view override returns (uint256[] memory, bytes memory) {\\n        uint64[][] memory pickIndices = abi.decode(_pickIndicesForDraws, (uint64 [][]));\\n        require(pickIndices.length == _drawIds.length, \\\"DrawCalc/invalid-pick-indices-length\\\");\\n\\n        // READ list of IDrawBeacon.Draw using the drawIds from drawBuffer\\n        IDrawBeacon.Draw[] memory draws = drawBuffer.getDraws(_drawIds);\\n\\n        // READ list of IPrizeDistributionBuffer.PrizeDistribution using the drawIds\\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions = prizeDistributionBuffer\\n            .getPrizeDistributions(_drawIds);\\n\\n        // The userBalances are fractions representing their portion of the liquidity for a draw.\\n        uint256[] memory userBalances = _getNormalizedBalancesAt(_user, draws, _prizeDistributions);\\n\\n        // The users address is hashed once.\\n        bytes32 _userRandomNumber = keccak256(abi.encodePacked(_user));\\n\\n        return _calculatePrizesAwardable(\\n                userBalances,\\n                _userRandomNumber,\\n                draws,\\n                pickIndices,\\n                _prizeDistributions\\n            );\\n    }\\n\\n    /// @inheritdoc IDrawCalculator\\n    function getDrawBuffer() external view override returns (IDrawBuffer) {\\n        return drawBuffer;\\n    }\\n\\n    /// @inheritdoc IDrawCalculator\\n    function getPrizeDistributionBuffer()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer)\\n    {\\n        return prizeDistributionBuffer;\\n    }\\n\\n    /// @inheritdoc IDrawCalculator\\n    function getNormalizedBalancesForDrawIds(address _user, uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (uint256[] memory)\\n    {\\n        IDrawBeacon.Draw[] memory _draws = drawBuffer.getDraws(_drawIds);\\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions = prizeDistributionBuffer\\n            .getPrizeDistributions(_drawIds);\\n\\n        return _getNormalizedBalancesAt(_user, _draws, _prizeDistributions);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates the prizes awardable for each Draw passed.\\n     * @param _normalizedUserBalances Fractions representing the user's portion of the liquidity for each draw.\\n     * @param _userRandomNumber       Random number of the user to consider over draws\\n     * @param _draws                  List of Draws\\n     * @param _pickIndicesForDraws    Pick indices for each Draw\\n     * @param _prizeDistributions     PrizeDistribution for each Draw\\n\\n     */\\n    function _calculatePrizesAwardable(\\n        uint256[] memory _normalizedUserBalances,\\n        bytes32 _userRandomNumber,\\n        IDrawBeacon.Draw[] memory _draws,\\n        uint64[][] memory _pickIndicesForDraws,\\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions\\n    ) internal view returns (uint256[] memory prizesAwardable, bytes memory prizeCounts) {\\n\\n        uint256[] memory _prizesAwardable = new uint256[](_normalizedUserBalances.length);\\n        uint256[][] memory _prizeCounts = new uint256[][](_normalizedUserBalances.length);\\n\\n        uint64 timeNow = uint64(block.timestamp);\\n\\n        // calculate prizes awardable for each Draw passed\\n        for (uint32 drawIndex = 0; drawIndex < _draws.length; drawIndex++) {\\n            require(timeNow < _draws[drawIndex].timestamp + _prizeDistributions[drawIndex].expiryDuration, \\\"DrawCalc/draw-expired\\\");\\n\\n            uint64 totalUserPicks = _calculateNumberOfUserPicks(\\n                _prizeDistributions[drawIndex],\\n                _normalizedUserBalances[drawIndex]\\n            );\\n\\n            (_prizesAwardable[drawIndex], _prizeCounts[drawIndex]) = _calculate(\\n                _draws[drawIndex].winningRandomNumber,\\n                totalUserPicks,\\n                _userRandomNumber,\\n                _pickIndicesForDraws[drawIndex],\\n                _prizeDistributions[drawIndex]\\n            );\\n        }\\n\\n        prizeCounts = abi.encode(_prizeCounts);\\n        prizesAwardable = _prizesAwardable;\\n    }\\n\\n    /**\\n     * @notice Calculates the number of picks a user gets for a Draw, considering the normalized user balance and the PrizeDistribution.\\n     * @dev Divided by 1e18 since the normalized user balance is stored as a fixed point 18 number\\n     * @param _prizeDistribution The PrizeDistribution to consider\\n     * @param _normalizedUserBalance The normalized user balances to consider\\n     * @return The number of picks a user gets for a Draw\\n     */\\n    function _calculateNumberOfUserPicks(\\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\\n        uint256 _normalizedUserBalance\\n    ) internal pure returns (uint64) {\\n        return uint64((_normalizedUserBalance * _prizeDistribution.numberOfPicks) / 1 ether);\\n    }\\n\\n    /**\\n     * @notice Calculates the normalized balance of a user against the total supply for timestamps\\n     * @param _user The user to consider\\n     * @param _draws The draws we are looking at\\n     * @param _prizeDistributions The prize tiers to consider (needed for draw timestamp offsets)\\n     * @return An array of normalized balances\\n     */\\n    function _getNormalizedBalancesAt(\\n        address _user,\\n        IDrawBeacon.Draw[] memory _draws,\\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions\\n    ) internal view returns (uint256[] memory) {\\n        uint256 drawsLength = _draws.length;\\n        uint64[] memory _timestampsWithStartCutoffTimes = new uint64[](drawsLength);\\n        uint64[] memory _timestampsWithEndCutoffTimes = new uint64[](drawsLength);\\n\\n        // generate timestamps with draw cutoff offsets included\\n        for (uint32 i = 0; i < drawsLength; i++) {\\n            unchecked {\\n                _timestampsWithStartCutoffTimes[i] =\\n                    _draws[i].timestamp - _prizeDistributions[i].startTimestampOffset;\\n                _timestampsWithEndCutoffTimes[i] =\\n                    _draws[i].timestamp - _prizeDistributions[i].endTimestampOffset;\\n            }\\n        }\\n\\n        uint256[] memory balances = ticket.getAverageBalancesBetween(\\n            _user,\\n            _timestampsWithStartCutoffTimes,\\n            _timestampsWithEndCutoffTimes\\n        );\\n\\n        uint256[] memory totalSupplies = ticket.getAverageTotalSuppliesBetween(\\n            _timestampsWithStartCutoffTimes,\\n            _timestampsWithEndCutoffTimes\\n        );\\n\\n        uint256[] memory normalizedBalances = new uint256[](drawsLength);\\n\\n        // divide balances by total supplies (normalize)\\n        for (uint256 i = 0; i < drawsLength; i++) {\\n            if(totalSupplies[i] == 0){\\n                normalizedBalances[i] = 0;\\n            }\\n            else {\\n                normalizedBalances[i] = (balances[i] * 1 ether) / totalSupplies[i];\\n            }\\n        }\\n\\n        return normalizedBalances;\\n    }\\n\\n    /**\\n     * @notice Calculates the prize amount for a PrizeDistribution over given picks\\n     * @param _winningRandomNumber Draw's winningRandomNumber\\n     * @param _totalUserPicks      number of picks the user gets for the Draw\\n     * @param _userRandomNumber    users randomNumber for that draw\\n     * @param _picks               users picks for that draw\\n     * @param _prizeDistribution   PrizeDistribution for that draw\\n     * @return prize (if any), prizeCounts (if any)\\n     */\\n    function _calculate(\\n        uint256 _winningRandomNumber,\\n        uint256 _totalUserPicks,\\n        bytes32 _userRandomNumber,\\n        uint64[] memory _picks,\\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution\\n    ) internal pure returns (uint256 prize, uint256[] memory prizeCounts) {\\n\\n        // create bitmasks for the PrizeDistribution\\n        uint256[] memory masks = _createBitMasks(_prizeDistribution);\\n        uint32 picksLength = uint32(_picks.length);\\n        uint256[] memory _prizeCounts = new uint256[](_prizeDistribution.tiers.length);\\n\\n        uint8 maxWinningTierIndex = 0;\\n\\n        require(\\n            picksLength <= _prizeDistribution.maxPicksPerUser,\\n            \\\"DrawCalc/exceeds-max-user-picks\\\"\\n        );\\n\\n        // for each pick, find number of matching numbers and calculate prize distributions index\\n        for (uint32 index = 0; index < picksLength; index++) {\\n            require(_picks[index] < _totalUserPicks, \\\"DrawCalc/insufficient-user-picks\\\");\\n\\n            if (index > 0) {\\n                require(_picks[index] > _picks[index - 1], \\\"DrawCalc/picks-ascending\\\");\\n            }\\n\\n            // hash the user random number with the pick value\\n            uint256 randomNumberThisPick = uint256(\\n                keccak256(abi.encode(_userRandomNumber, _picks[index]))\\n            );\\n\\n            uint8 tiersIndex = _calculateTierIndex(\\n                randomNumberThisPick,\\n                _winningRandomNumber,\\n                masks\\n            );\\n\\n            // there is prize for this tier index\\n            if (tiersIndex < TIERS_LENGTH) {\\n                if (tiersIndex > maxWinningTierIndex) {\\n                    maxWinningTierIndex = tiersIndex;\\n                }\\n                _prizeCounts[tiersIndex]++;\\n            }\\n        }\\n\\n        // now calculate prizeFraction given prizeCounts\\n        uint256 prizeFraction = 0;\\n        uint256[] memory prizeTiersFractions = _calculatePrizeTierFractions(\\n            _prizeDistribution,\\n            maxWinningTierIndex\\n        );\\n\\n        // multiple the fractions by the prizeCounts and add them up\\n        for (\\n            uint256 prizeCountIndex = 0;\\n            prizeCountIndex <= maxWinningTierIndex;\\n            prizeCountIndex++\\n        ) {\\n            if (_prizeCounts[prizeCountIndex] > 0) {\\n                prizeFraction +=\\n                    prizeTiersFractions[prizeCountIndex] *\\n                    _prizeCounts[prizeCountIndex];\\n            }\\n        }\\n\\n        // return the absolute amount of prize awardable\\n        // div by 1e9 as prize tiers are base 1e9\\n        prize = (prizeFraction * _prizeDistribution.prize) / 1e9;\\n        prizeCounts = _prizeCounts;\\n    }\\n\\n    ///@notice Calculates the tier index given the random numbers and masks\\n    ///@param _randomNumberThisPick users random number for this Pick\\n    ///@param _winningRandomNumber The winning number for this draw\\n    ///@param _masks The pre-calculate bitmasks for the prizeDistributions\\n    ///@return The position within the prize tier array (0 = top prize, 1 = runner-up prize, etc)\\n    function _calculateTierIndex(\\n        uint256 _randomNumberThisPick,\\n        uint256 _winningRandomNumber,\\n        uint256[] memory _masks\\n    ) internal pure returns (uint8) {\\n        uint8 numberOfMatches = 0;\\n        uint8 masksLength = uint8(_masks.length);\\n\\n        // main number matching loop\\n        for (uint8 matchIndex = 0; matchIndex < masksLength; matchIndex++) {\\n            uint256 mask = _masks[matchIndex];\\n\\n            if ((_randomNumberThisPick & mask) != (_winningRandomNumber & mask)) {\\n                // there are no more sequential matches since this comparison is not a match\\n                if (masksLength == numberOfMatches) {\\n                    return 0;\\n                } else {\\n                    return masksLength - numberOfMatches;\\n                }\\n            }\\n\\n            // else there was a match\\n            numberOfMatches++;\\n        }\\n\\n        return masksLength - numberOfMatches;\\n    }\\n\\n    /**\\n     * @notice Create an array of bitmasks equal to the PrizeDistribution.matchCardinality length\\n     * @param _prizeDistribution The PrizeDistribution to use to calculate the masks\\n     * @return An array of bitmasks\\n     */\\n    function _createBitMasks(IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution)\\n        internal\\n        pure\\n        returns (uint256[] memory)\\n    {\\n        uint256[] memory masks = new uint256[](_prizeDistribution.matchCardinality);\\n        masks[0] =  (2**_prizeDistribution.bitRangeSize) - 1;\\n\\n        for (uint8 maskIndex = 1; maskIndex < _prizeDistribution.matchCardinality; maskIndex++) {\\n            // shift mask bits to correct position and insert in result mask array\\n            masks[maskIndex] = masks[maskIndex - 1] << _prizeDistribution.bitRangeSize;\\n        }\\n\\n        return masks;\\n    }\\n\\n    /**\\n     * @notice Calculates the expected prize fraction per PrizeDistributions and distributionIndex\\n     * @param _prizeDistribution prizeDistribution struct for Draw\\n     * @param _prizeTierIndex Index of the prize tiers array to calculate\\n     * @return returns the fraction of the total prize (fixed point 9 number)\\n     */\\n    function _calculatePrizeTierFraction(\\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\\n        uint256 _prizeTierIndex\\n    ) internal pure returns (uint256) {\\n         // get the prize fraction at that index\\n        uint256 prizeFraction = _prizeDistribution.tiers[_prizeTierIndex];\\n\\n        // calculate number of prizes for that index\\n        uint256 numberOfPrizesForIndex = _numberOfPrizesForIndex(\\n            _prizeDistribution.bitRangeSize,\\n            _prizeTierIndex\\n        );\\n\\n        return prizeFraction / numberOfPrizesForIndex;\\n    }\\n\\n    /**\\n     * @notice Generates an array of prize tiers fractions\\n     * @param _prizeDistribution prizeDistribution struct for Draw\\n     * @param maxWinningTierIndex Max length of the prize tiers array\\n     * @return returns an array of prize tiers fractions\\n     */\\n    function _calculatePrizeTierFractions(\\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\\n        uint8 maxWinningTierIndex\\n    ) internal pure returns (uint256[] memory) {\\n        uint256[] memory prizeDistributionFractions = new uint256[](\\n            maxWinningTierIndex + 1\\n        );\\n\\n        for (uint8 i = 0; i <= maxWinningTierIndex; i++) {\\n            prizeDistributionFractions[i] = _calculatePrizeTierFraction(\\n                _prizeDistribution,\\n                i\\n            );\\n        }\\n\\n        return prizeDistributionFractions;\\n    }\\n\\n    /**\\n     * @notice Calculates the number of prizes for a given prizeDistributionIndex\\n     * @param _bitRangeSize Bit range size for Draw\\n     * @param _prizeTierIndex Index of the prize tier array to calculate\\n     * @return returns the fraction of the total prize (base 1e18)\\n     */\\n    function _numberOfPrizesForIndex(uint8 _bitRangeSize, uint256 _prizeTierIndex)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_prizeTierIndex > 0) {\\n            return ( 1 << _bitRangeSize * _prizeTierIndex ) - ( 1 << _bitRangeSize * (_prizeTierIndex - 1) );\\n        } else {\\n            return 1;\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xac5b78f969f2f2dd3bbec9c177740e0b4857099f2b7a5830f2b324528e1b90f0\",\"license\":\"GPL-3.0\"},\"contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionSource\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"license\":\"GPL-3.0\"},\"contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawIds to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valid drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "Deployed(address,address,address)": {
                "notice": "Emitted when the contract is initialized"
              },
              "PrizeDistributorSet(address)": {
                "notice": "Emitted when the prizeDistributor is set/updated"
              }
            },
            "kind": "user",
            "methods": {
              "TIERS_LENGTH()": {
                "notice": "The tiers array length"
              },
              "calculate(address,uint32[],bytes)": {
                "notice": "Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor."
              },
              "constructor": {
                "notice": "Constructor for DrawCalculator"
              },
              "drawBuffer()": {
                "notice": "DrawBuffer address"
              },
              "getDrawBuffer()": {
                "notice": "Read global DrawBuffer variable."
              },
              "getNormalizedBalancesForDrawIds(address,uint32[])": {
                "notice": "Returns a users balances expressed as a fraction of the total supply over time."
              },
              "getPrizeDistributionBuffer()": {
                "notice": "Read global prizeDistributionBuffer variable."
              },
              "prizeDistributionBuffer()": {
                "notice": "The stored history of draw settings.  Stored as ring buffer."
              },
              "ticket()": {
                "notice": "Ticket associated with DrawCalculator"
              }
            },
            "notice": "The DrawCalculator calculates a user's prize by matching a winning random number against their picks. A users picks are generated deterministically based on their address and balance of tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc... A user with a higher average weighted balance (during each draw period) will be given a large number of picks to choose from, and thus a higher chance to match the winning numbers.",
            "version": 1
          }
        }
      },
      "contracts/DrawCalculatorV2.sol": {
        "DrawCalculatorV2": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_ticket",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "_drawBuffer",
                  "type": "address"
                },
                {
                  "internalType": "contract IPrizeDistributionSource",
                  "name": "_prizeDistributionSource",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IDrawBuffer",
                  "name": "drawBuffer",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IPrizeDistributionSource",
                  "name": "prizeDistributionSource",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract PrizeDistributor",
                  "name": "prizeDistributor",
                  "type": "address"
                }
              ],
              "name": "PrizeDistributorSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "TIERS_LENGTH",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                },
                {
                  "internalType": "bytes",
                  "name": "_pickIndicesForDraws",
                  "type": "bytes"
                }
              ],
              "name": "calculate",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                },
                {
                  "internalType": "bytes",
                  "name": "",
                  "type": "bytes"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "drawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getNormalizedBalancesForDrawIds",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeDistributionSource",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionSource",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "prizeDistributionSource",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionSource",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "ticket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "calculate(address,uint32[],bytes)": {
                "params": {
                  "_drawIds": "drawId array for which to calculate prize amounts for.",
                  "_pickIndicesForDraws": "The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.",
                  "_user": "User for which to calculate prize amount."
                },
                "returns": {
                  "_0": "List of awardable prize amounts ordered by drawId."
                }
              },
              "constructor": {
                "params": {
                  "_drawBuffer": "The address of the draw buffer to push draws to",
                  "_prizeDistributionSource": "PrizeDistributionSource address",
                  "_ticket": "Ticket associated with this DrawCalculator"
                }
              },
              "getDrawBuffer()": {
                "returns": {
                  "_0": "IDrawBuffer"
                }
              },
              "getNormalizedBalancesForDrawIds(address,uint32[])": {
                "params": {
                  "_drawIds": "The drawIds to consider",
                  "_user": "The users address"
                },
                "returns": {
                  "_0": "Array of balances"
                }
              },
              "getPrizeDistributionSource()": {
                "returns": {
                  "_0": "IPrizeDistributionSource"
                }
              }
            },
            "title": "PoolTogether V4 DrawCalculatorV2",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_7681": {
                  "entryPoint": null,
                  "id": 7681,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_contract$_ITicket_$12213t_contract$_IDrawBuffer_$11318t_contract$_IPrizeDistributionSource_$11503_fromMemory": {
                  "entryPoint": 423,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "validator_revert_contract_IDrawBuffer": {
                  "entryPoint": 507,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1847:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "201:443:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "247:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "256:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "259:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "249:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "249:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "249:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "222:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "231:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "218:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "218:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "243:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "214:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "214:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "211:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "272:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "291:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "285:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "285:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "276:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "348:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "310:37:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "310:44:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "310:44:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "363:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "373:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "363:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "387:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "412:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "423:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "408:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "408:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "402:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "402:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "391:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "474:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "436:37:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "436:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "436:46:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "491:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "501:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "491:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "517:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "542:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "553:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "538:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "538:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "532:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "532:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "521:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "604:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "566:37:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "566:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "566:46:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "621:17:84",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "631:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "621:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$12213t_contract$_IDrawBuffer_$11318t_contract$_IPrizeDistributionSource_$11503_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "151:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "162:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "174:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "182:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "190:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:630:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "823:170:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "840:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "851:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "833:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "833:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "833:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "874:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "885:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "870:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "870:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "890:2:84",
                                    "type": "",
                                    "value": "20"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "863:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "863:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "863:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "913:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "924:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "909:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "909:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f64682d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "929:22:84",
                                    "type": "",
                                    "value": "DrawCalc/dh-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "902:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "902:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "902:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "961:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "973:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "984:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "969:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "969:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "800:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "814:4:84",
                            "type": ""
                          }
                        ],
                        "src": "649:344:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1172:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1189:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1200:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1182:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1182:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1182:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1223:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1234:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1219:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1219:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1239:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1212:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1212:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1212:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1262:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1273:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1258:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1258:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7469636b65742d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1278:26:84",
                                    "type": "",
                                    "value": "DrawCalc/ticket-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1251:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1251:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1251:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1314:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1326:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1337:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1322:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1322:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1314:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1149:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1163:4:84",
                            "type": ""
                          }
                        ],
                        "src": "998:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1525:171:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1542:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1553:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1535:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1535:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1535:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1576:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1587:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1572:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1572:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1592:2:84",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1565:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1565:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1565:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1615:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1626:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1611:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1611:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7064622d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1631:23:84",
                                    "type": "",
                                    "value": "DrawCalc/pdb-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1604:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1604:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1604:51:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1664:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1676:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1687:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1672:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1672:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1664:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1502:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1516:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1351:345:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1759:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1823:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1832:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1835:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1825:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1825:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1825:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1782:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1793:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1808:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1813:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1804:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1804:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1817:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1800:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1800:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1789:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1789:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1779:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1779:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1772:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1772:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1769:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_contract_IDrawBuffer",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1748:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1701:144:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_contract$_ITicket_$12213t_contract$_IDrawBuffer_$11318t_contract$_IPrizeDistributionSource_$11503_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IDrawBuffer(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IDrawBuffer(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_contract_IDrawBuffer(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 20)\n        mstore(add(headStart, 64), \"DrawCalc/dh-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"DrawCalc/ticket-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"DrawCalc/pdb-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function validator_revert_contract_IDrawBuffer(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60e06040523480156200001157600080fd5b50604051620021fe380380620021fe8339810160408190526200003491620001a7565b6001600160a01b038316620000905760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7469636b65742d6e6f742d7a65726f000000000000000060448201526064015b60405180910390fd5b6001600160a01b038116620000e85760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f7064622d6e6f742d7a65726f0000000000000000000000604482015260640162000087565b6001600160a01b038216620001405760405162461bcd60e51b815260206004820152601460248201527f4472617743616c632f64682d6e6f742d7a65726f000000000000000000000000604482015260640162000087565b6001600160601b0319606084811b821660a05283811b821660805282901b1660c0526040516001600160a01b0382811691848216918616907fc95935a66d15e0da5e412aca0ad27ae891d20b2fb91cf3994b6a3bf2b817808290600090a450505062000214565b600080600060608486031215620001bd57600080fd5b8351620001ca81620001fb565b6020850151909350620001dd81620001fb565b6040850151909250620001f081620001fb565b809150509250925092565b6001600160a01b03811681146200021157600080fd5b50565b60805160601c60a05160601c60c05160601c611f7b62000283600039600081816101020152818161016c0152818161028801526104ad01526000818160de015281816107d9015261086c015260008181608f01528181610193015281816101d5015261041c0152611f7b6000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063aaca392e1161005b578063aaca392e14610146578063bcc18abc14610167578063ce343bb61461018e578063f8d0ca4c146101b557600080fd5b80634019f2d61461008d5780636cc25db7146100d9578063740e61a3146101005780638045fbcf14610126575b600080fd5b7f00000000000000000000000000000000000000000000000000000000000000005b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6100af7f000000000000000000000000000000000000000000000000000000000000000081565b7f00000000000000000000000000000000000000000000000000000000000000006100af565b6101396101343660046114db565b6101cf565b6040516100d09190611af8565b61015961015436600461152e565b61034e565b6040516100d0929190611b0b565b6100af7f000000000000000000000000000000000000000000000000000000000000000081565b6100af7f000000000000000000000000000000000000000000000000000000000000000081565b6101bd601081565b60405160ff90911681526020016100d0565b606060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0bb78f385856040518363ffffffff1660e01b815260040161022e929190611b70565b60006040518083038186803b15801561024657600080fd5b505afa15801561025a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261028291908101906116f9565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf86866040518363ffffffff1660e01b81526004016102e1929190611b70565b60006040518083038186803b1580156102f957600080fd5b505afa15801561030d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261033591908101906117f4565b90506103428683836105d9565b925050505b9392505050565b606080600061035f848601866115d9565b805190915086146103dc5760405162461bcd60e51b8152602060048201526024808201527f4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c6560448201527f6e6774680000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6040517fd0bb78f300000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063d0bb78f390610453908b908b90600401611b70565b60006040518083038186803b15801561046b57600080fd5b505afa15801561047f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104a791908101906116f9565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf8a8a6040518363ffffffff1660e01b8152600401610506929190611b70565b60006040518083038186803b15801561051e57600080fd5b505afa158015610532573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261055a91908101906117f4565b905060006105698b84846105d9565b6040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608e901b1660208201529091506000906034016040516020818303038152906040528051906020012090506105c68282868887610a44565b9650965050505050509550959350505050565b815160609060008167ffffffffffffffff8111156105f9576105f9611f04565b604051908082528060200260200182016040528015610622578160200160208202803683370190505b50905060008267ffffffffffffffff81111561064057610640611f04565b604051908082528060200260200182016040528015610669578160200160208202803683370190505b50905060005b838163ffffffff16101561079857858163ffffffff168151811061069557610695611eee565b60200260200101516040015163ffffffff16878263ffffffff16815181106106bf576106bf611eee565b60200260200101516040015103838263ffffffff16815181106106e4576106e4611eee565b602002602001019067ffffffffffffffff16908167ffffffffffffffff1681525050858163ffffffff168151811061071e5761071e611eee565b60200260200101516060015163ffffffff16878263ffffffff168151811061074857610748611eee565b60200260200101516040015103828263ffffffff168151811061076d5761076d611eee565b67ffffffffffffffff909216602092830291909101909101528061079081611e94565b91505061066f565b506040517f68c7fd5700000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906368c7fd5790610812908b9087908790600401611a2d565b60006040518083038186803b15801561082a57600080fd5b505afa15801561083e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526108669190810190611920565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638e6d536a85856040518363ffffffff1660e01b81526004016108c5929190611bbb565b60006040518083038186803b1580156108dd57600080fd5b505afa1580156108f1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109199190810190611920565b905060008567ffffffffffffffff81111561093657610936611f04565b60405190808252806020026020018201604052801561095f578160200160208202803683370190505b50905060005b86811015610a365782818151811061097f5761097f611eee565b6020026020010151600014156109b45760008282815181106109a3576109a3611eee565b602002602001018181525050610a24565b8281815181106109c6576109c6611eee565b60200260200101518482815181106109e0576109e0611eee565b6020026020010151670de0b6b3a76400006109fb9190611dfb565b610a059190611ceb565b828281518110610a1757610a17611eee565b6020026020010181815250505b80610a2e81611e79565b915050610965565b509998505050505050505050565b6060806000875167ffffffffffffffff811115610a6357610a63611f04565b604051908082528060200260200182016040528015610a8c578160200160208202803683370190505b5090506000885167ffffffffffffffff811115610aab57610aab611f04565b604051908082528060200260200182016040528015610ade57816020015b6060815260200190600190039081610ac95790505b5090504260005b88518163ffffffff161015610ccb57868163ffffffff1681518110610b0c57610b0c611eee565b602002602001015160a0015163ffffffff16898263ffffffff1681518110610b3657610b36611eee565b602002602001015160400151610b4c9190611c9a565b67ffffffffffffffff168267ffffffffffffffff1610610bae5760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d65787069726564000000000000000000000060448201526064016103d3565b6000610bf8888363ffffffff1681518110610bcb57610bcb611eee565b60200260200101518d8463ffffffff1681518110610beb57610beb611eee565b6020026020010151610cfe565b9050610c728a8363ffffffff1681518110610c1557610c15611eee565b6020026020010151600001518267ffffffffffffffff168d8c8663ffffffff1681518110610c4557610c45611eee565b60200260200101518c8763ffffffff1681518110610c6557610c65611eee565b6020026020010151610d3b565b868463ffffffff1681518110610c8a57610c8a611eee565b60200260200101868563ffffffff1681518110610ca957610ca9611eee565b6020908102919091010191909152525080610cc381611e94565b915050610ae5565b5081604051602001610cdd9190611a78565b60405160208183030381529060405293508294505050509550959350505050565b6000670de0b6b3a76400008360c001516cffffffffffffffffffffffffff1683610d289190611dfb565b610d329190611ceb565b90505b92915050565b600060606000610d4a846110c0565b85516040805160108082526102208201909252929350909160009160208201610200803683370190505090506000866080015163ffffffff168363ffffffff161115610dd85760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f657863656564732d6d61782d757365722d7069636b730060448201526064016103d3565b60005b8363ffffffff168163ffffffff161015610ff0578a898263ffffffff1681518110610e0857610e08611eee565b602002602001015167ffffffffffffffff1610610e675760405162461bcd60e51b815260206004820181905260248201527f4472617743616c632f696e73756666696369656e742d757365722d7069636b7360448201526064016103d3565b63ffffffff811615610f1e5788610e7f600183611e31565b63ffffffff1681518110610e9557610e95611eee565b602002602001015167ffffffffffffffff16898263ffffffff1681518110610ebf57610ebf611eee565b602002602001015167ffffffffffffffff1611610f1e5760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7069636b732d617363656e64696e67000000000000000060448201526064016103d3565b60008a8a8363ffffffff1681518110610f3957610f39611eee565b6020026020010151604051602001610f6592919091825267ffffffffffffffff16602082015260400190565b6040516020818303038152906040528051906020012060001c90506000610f8d828f896111c5565b9050601060ff82161015610fdb578360ff168160ff161115610fad578093505b848160ff1681518110610fc257610fc2611eee565b602002602001018051809190610fd790611e79565b9052505b50508080610fe890611e94565b915050610ddb565b50600080610ffe8984611264565b905060005b8360ff16811161108c57600085828151811061102157611021611eee565b6020026020010151111561107a5784818151811061104157611041611eee565b602002602001015182828151811061105b5761105b611eee565b602002602001015161106d9190611dfb565b6110779084611c82565b92505b8061108481611e79565b915050611003565b50633b9aca00896101000151836110a39190611dfb565b6110ad9190611ceb565b9d939c50929a5050505050505050505050565b60606000826020015160ff1667ffffffffffffffff8111156110e4576110e4611f04565b60405190808252806020026020018201604052801561110d578160200160208202803683370190505b508351909150600190611121906002611d50565b61112b9190611e1a565b8160008151811061113e5761113e611eee565b602090810291909101015260015b836020015160ff168160ff1610156111be57835160ff168261116f600184611e56565b60ff168151811061118257611182611eee565b6020026020010151901b828260ff16815181106111a1576111a1611eee565b6020908102919091010152806111b681611eb8565b91505061114c565b5092915050565b80516000908190815b8160ff168160ff161015611259576000858260ff16815181106111f3576111f3611eee565b6020026020010151905080871681891614611238578360ff168360ff161415611223576000945050505050610347565b61122d8484611e56565b945050505050610347565b8361124281611eb8565b94505050808061125190611eb8565b9150506111ce565b506103428282611e56565b60606000611273836001611cc6565b60ff1667ffffffffffffffff81111561128e5761128e611f04565b6040519080825280602002602001820160405280156112b7578160200160208202803683370190505b50905060005b8360ff168160ff1611611309576112d7858260ff16611311565b828260ff16815181106112ec576112ec611eee565b60209081029190910101528061130181611eb8565b9150506112bd565b509392505050565b6000808360e00151836010811061132a5761132a611eee565b602002015163ffffffff169050600061134785600001518561135c565b90506113538183611ceb565b95945050505050565b600081156113a25761136f600183611e1a565b61137c9060ff8516611dfb565b6001901b61138d8360ff8616611dfb565b6001901b61139b9190611e1a565b9050610d35565b506001610d35565b803573ffffffffffffffffffffffffffffffffffffffff811681146113ce57600080fd5b919050565b600082601f8301126113e457600080fd5b60405161020080820182811067ffffffffffffffff8211171561140957611409611f04565b604052818482810187101561141d57600080fd5b600092505b601083101561144b57805161143681611f1a565b82526001929092019160209182019101611422565b509195945050505050565b60008083601f84011261146857600080fd5b50813567ffffffffffffffff81111561148057600080fd5b6020830191508360208260051b850101111561149b57600080fd5b9250929050565b80516cffffffffffffffffffffffffff811681146113ce57600080fd5b80516113ce81611f1a565b805160ff811681146113ce57600080fd5b6000806000604084860312156114f057600080fd5b6114f9846113aa565b9250602084013567ffffffffffffffff81111561151557600080fd5b61152186828701611456565b9497909650939450505050565b60008060008060006060868803121561154657600080fd5b61154f866113aa565b9450602086013567ffffffffffffffff8082111561156c57600080fd5b61157889838a01611456565b9096509450604088013591508082111561159157600080fd5b818801915088601f8301126115a557600080fd5b8135818111156115b457600080fd5b8960208285010111156115c657600080fd5b9699959850939650602001949392505050565b600060208083850312156115ec57600080fd5b823567ffffffffffffffff8082111561160457600080fd5b818501915085601f83011261161857600080fd5b813561162b61162682611c5e565b611c2d565b80828252858201915085850189878560051b880101111561164b57600080fd5b60005b848110156116ea5781358681111561166557600080fd5b8701603f81018c1361167657600080fd5b8881013561168661162682611c5e565b808282528b82019150604084018f60408560051b87010111156116a857600080fd5b600094505b838510156116d45780356116c081611f2f565b835260019490940193918c01918c016116ad565b508752505050928701929087019060010161164e565b50909998505050505050505050565b6000602080838503121561170c57600080fd5b825167ffffffffffffffff81111561172357600080fd5b8301601f8101851361173457600080fd5b805161174261162682611c5e565b8181528381019083850160a0808502860187018a101561176157600080fd5b60009550855b858110156117e55781838c03121561177d578687fd5b611785611be0565b835181528884015161179681611f1a565b818a01526040848101516117a981611f2f565b908201526060848101516117bc81611f2f565b908201526080848101516117cf81611f1a565b9082015285529387019391810191600101611767565b50919998505050505050505050565b6000602080838503121561180757600080fd5b825167ffffffffffffffff81111561181e57600080fd5b8301601f8101851361182f57600080fd5b805161183d61162682611c5e565b81815283810190838501610300808502860187018a101561185d57600080fd5b60009550855b858110156117e55781838c031215611879578687fd5b611881611c09565b61188a846114ca565b81526118978985016114ca565b8982015260406118a88186016114bf565b9082015260606118b98582016114bf565b9082015260806118ca8582016114bf565b9082015260a06118db8582016114bf565b9082015260c06118ec8582016114a2565b9082015260e06118fe8d8683016113d3565b908201526102e084015161010082015285529387019391810191600101611863565b6000602080838503121561193357600080fd5b825167ffffffffffffffff81111561194a57600080fd5b8301601f8101851361195b57600080fd5b805161196961162682611c5e565b80828252848201915084840188868560051b870101111561198957600080fd5b600094505b838510156119ac57805183526001949094019391850191850161198e565b50979650505050505050565b600081518084526020808501945080840160005b838110156119e8578151875295820195908201906001016119cc565b509495945050505050565b600081518084526020808501945080840160005b838110156119e857815167ffffffffffffffff1687529582019590820190600101611a07565b73ffffffffffffffffffffffffffffffffffffffff84168152606060208201526000611a5c60608301856119f3565b8281036040840152611a6e81856119f3565b9695505050505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015611aeb577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452611ad98583516119b8565b94509285019290850190600101611a9f565b5092979650505050505050565b602081526000610d3260208301846119b8565b604081526000611b1e60408301856119b8565b602083820381850152845180835260005b81811015611b4a578681018301518482018401528201611b2f565b81811115611b5b5760008383860101525b50601f01601f19169190910101949350505050565b60208082528181018390526000908460408401835b86811015611bb0578235611b9881611f1a565b63ffffffff1682529183019190830190600101611b85565b509695505050505050565b604081526000611bce60408301856119f3565b828103602084015261135381856119f3565b60405160a0810167ffffffffffffffff81118282101715611c0357611c03611f04565b60405290565b604051610120810167ffffffffffffffff81118282101715611c0357611c03611f04565b604051601f8201601f1916810167ffffffffffffffff81118282101715611c5657611c56611f04565b604052919050565b600067ffffffffffffffff821115611c7857611c78611f04565b5060051b60200190565b60008219821115611c9557611c95611ed8565b500190565b600067ffffffffffffffff808316818516808303821115611cbd57611cbd611ed8565b01949350505050565b600060ff821660ff84168060ff03821115611ce357611ce3611ed8565b019392505050565b600082611d0857634e487b7160e01b600052601260045260246000fd5b500490565b600181815b80851115611d48578160001904821115611d2e57611d2e611ed8565b80851615611d3b57918102915b93841c9390800290611d12565b509250929050565b6000610d3260ff841683600082611d6957506001610d35565b81611d7657506000610d35565b8160018114611d8c5760028114611d9657611db2565b6001915050610d35565b60ff841115611da757611da7611ed8565b50506001821b610d35565b5060208310610133831016604e8410600b8410161715611dd5575081810a610d35565b611ddf8383611d0d565b8060001904821115611df357611df3611ed8565b029392505050565b6000816000190483118215151615611e1557611e15611ed8565b500290565b600082821015611e2c57611e2c611ed8565b500390565b600063ffffffff83811690831681811015611e4e57611e4e611ed8565b039392505050565b600060ff821660ff841680821015611e7057611e70611ed8565b90039392505050565b6000600019821415611e8d57611e8d611ed8565b5060010190565b600063ffffffff80831681811415611eae57611eae611ed8565b6001019392505050565b600060ff821660ff811415611ecf57611ecf611ed8565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b63ffffffff81168114611f2c57600080fd5b50565b67ffffffffffffffff81168114611f2c57600080fdfea2646970667358221220f2853d0d2295a363244a50df9962fece1368b6c2c299b27b0190124151281cba64736f6c63430008060033",
              "opcodes": "PUSH1 0xE0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x21FE CODESIZE SUB DUP1 PUSH3 0x21FE DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1A7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH3 0x90 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7469636B65742D6E6F742D7A65726F0000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0xE8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7064622D6E6F742D7A65726F0000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0x140 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F64682D6E6F742D7A65726F000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 DUP2 SHL DUP3 AND PUSH1 0xA0 MSTORE DUP4 DUP2 SHL DUP3 AND PUSH1 0x80 MSTORE DUP3 SWAP1 SHL AND PUSH1 0xC0 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND SWAP2 DUP5 DUP3 AND SWAP2 DUP7 AND SWAP1 PUSH32 0xC95935A66D15E0DA5E412ACA0AD27AE891D20B2FB91CF3994B6A3BF2B8178082 SWAP1 PUSH1 0x0 SWAP1 LOG4 POP POP POP PUSH3 0x214 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x1BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH3 0x1CA DUP2 PUSH3 0x1FB JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH3 0x1DD DUP2 PUSH3 0x1FB JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x1F0 DUP2 PUSH3 0x1FB JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x211 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH1 0xA0 MLOAD PUSH1 0x60 SHR PUSH1 0xC0 MLOAD PUSH1 0x60 SHR PUSH2 0x1F7B PUSH3 0x283 PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x102 ADD MSTORE DUP2 DUP2 PUSH2 0x16C ADD MSTORE DUP2 DUP2 PUSH2 0x288 ADD MSTORE PUSH2 0x4AD ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH1 0xDE ADD MSTORE DUP2 DUP2 PUSH2 0x7D9 ADD MSTORE PUSH2 0x86C ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH1 0x8F ADD MSTORE DUP2 DUP2 PUSH2 0x193 ADD MSTORE DUP2 DUP2 PUSH2 0x1D5 ADD MSTORE PUSH2 0x41C ADD MSTORE PUSH2 0x1F7B 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 0x88 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xAACA392E GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xAACA392E EQ PUSH2 0x146 JUMPI DUP1 PUSH4 0xBCC18ABC EQ PUSH2 0x167 JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x18E JUMPI DUP1 PUSH4 0xF8D0CA4C EQ PUSH2 0x1B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0xD9 JUMPI DUP1 PUSH4 0x740E61A3 EQ PUSH2 0x100 JUMPI DUP1 PUSH4 0x8045FBCF EQ PUSH2 0x126 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xAF PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH32 0x0 PUSH2 0xAF JUMP JUMPDEST PUSH2 0x139 PUSH2 0x134 CALLDATASIZE PUSH1 0x4 PUSH2 0x14DB JUMP JUMPDEST PUSH2 0x1CF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD0 SWAP2 SWAP1 PUSH2 0x1AF8 JUMP JUMPDEST PUSH2 0x159 PUSH2 0x154 CALLDATASIZE PUSH1 0x4 PUSH2 0x152E JUMP JUMPDEST PUSH2 0x34E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD0 SWAP3 SWAP2 SWAP1 PUSH2 0x1B0B JUMP JUMPDEST PUSH2 0xAF PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0xAF PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x1BD PUSH1 0x10 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xD0 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD0BB78F3 DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22E SWAP3 SWAP2 SWAP1 PUSH2 0x1B70 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x246 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x25A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x282 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x16F9 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP7 DUP7 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2E1 SWAP3 SWAP2 SWAP1 PUSH2 0x1B70 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x30D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x335 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x17F4 JUMP JUMPDEST SWAP1 POP PUSH2 0x342 DUP7 DUP4 DUP4 PUSH2 0x5D9 JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 PUSH2 0x35F DUP5 DUP7 ADD DUP7 PUSH2 0x15D9 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP DUP7 EQ PUSH2 0x3DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E76616C69642D7069636B2D696E64696365732D6C65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E67746800000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xD0BB78F300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0xD0BB78F3 SWAP1 PUSH2 0x453 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B70 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x46B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x47F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x4A7 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x16F9 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP11 DUP11 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x506 SWAP3 SWAP2 SWAP1 PUSH2 0x1B70 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x51E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x532 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x55A SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x17F4 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x569 DUP12 DUP5 DUP5 PUSH2 0x5D9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000 PUSH1 0x60 DUP15 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x34 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH2 0x5C6 DUP3 DUP3 DUP7 DUP9 DUP8 PUSH2 0xA44 JUMP JUMPDEST SWAP7 POP SWAP7 POP POP POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x60 SWAP1 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5F9 JUMPI PUSH2 0x5F9 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x622 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x640 JUMPI PUSH2 0x640 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x669 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x798 JUMPI DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x695 JUMPI PUSH2 0x695 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x6BF JUMPI PUSH2 0x6BF PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP4 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x6E4 JUMPI PUSH2 0x6E4 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x71E JUMPI PUSH2 0x71E PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x60 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x748 JUMPI PUSH2 0x748 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP3 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x76D JUMPI PUSH2 0x76D PUSH2 0x1EEE JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE DUP1 PUSH2 0x790 DUP2 PUSH2 0x1E94 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x66F JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x68C7FD5700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0x68C7FD57 SWAP1 PUSH2 0x812 SWAP1 DUP12 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x1A2D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x82A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x83E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x866 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1920 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x8E6D536A DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8C5 SWAP3 SWAP2 SWAP1 PUSH2 0x1BBB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8F1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x919 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1920 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x936 JUMPI PUSH2 0x936 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x95F JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0xA36 JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x97F JUMPI PUSH2 0x97F PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 EQ ISZERO PUSH2 0x9B4 JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x9A3 JUMPI PUSH2 0x9A3 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP PUSH2 0xA24 JUMP JUMPDEST DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x9C6 JUMPI PUSH2 0x9C6 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x9E0 JUMPI PUSH2 0x9E0 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xDE0B6B3A7640000 PUSH2 0x9FB SWAP2 SWAP1 PUSH2 0x1DFB JUMP JUMPDEST PUSH2 0xA05 SWAP2 SWAP1 PUSH2 0x1CEB JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xA17 JUMPI PUSH2 0xA17 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0xA2E DUP2 PUSH2 0x1E79 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x965 JUMP JUMPDEST POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 DUP8 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA63 JUMPI PUSH2 0xA63 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xA8C JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP9 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAAB JUMPI PUSH2 0xAAB PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xADE JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xAC9 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP9 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xCCB JUMPI DUP7 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xB0C JUMPI PUSH2 0xB0C PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xA0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xB36 JUMPI PUSH2 0xB36 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH2 0xB4C SWAP2 SWAP1 PUSH2 0x1C9A JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xBAE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F647261772D657870697265640000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D3 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBF8 DUP9 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xBCB JUMPI PUSH2 0xBCB PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP14 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xBEB JUMPI PUSH2 0xBEB PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xCFE JUMP JUMPDEST SWAP1 POP PUSH2 0xC72 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC15 JUMPI PUSH2 0xC15 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP14 DUP13 DUP7 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC45 JUMPI PUSH2 0xC45 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP13 DUP8 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC65 JUMPI PUSH2 0xC65 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xD3B JUMP JUMPDEST DUP7 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC8A JUMPI PUSH2 0xC8A PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP7 DUP6 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xCA9 JUMPI PUSH2 0xCA9 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD SWAP2 SWAP1 SWAP2 MSTORE MSTORE POP DUP1 PUSH2 0xCC3 DUP2 PUSH2 0x1E94 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xAE5 JUMP JUMPDEST POP DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xCDD SWAP2 SWAP1 PUSH2 0x1A78 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP DUP3 SWAP5 POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 DUP4 PUSH1 0xC0 ADD MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0xD28 SWAP2 SWAP1 PUSH2 0x1DFB JUMP JUMPDEST PUSH2 0xD32 SWAP2 SWAP1 PUSH2 0x1CEB JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 PUSH1 0x0 PUSH2 0xD4A DUP5 PUSH2 0x10C0 JUMP JUMPDEST DUP6 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x10 DUP1 DUP3 MSTORE PUSH2 0x220 DUP3 ADD SWAP1 SWAP3 MSTORE SWAP3 SWAP4 POP SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH1 0x20 DUP3 ADD PUSH2 0x200 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH1 0x0 DUP7 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0xDD8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F657863656564732D6D61782D757365722D7069636B7300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D3 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xFF0 JUMPI DUP11 DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xE08 JUMPI PUSH2 0xE08 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xE67 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E73756666696369656E742D757365722D7069636B73 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D3 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO PUSH2 0xF1E JUMPI DUP9 PUSH2 0xE7F PUSH1 0x1 DUP4 PUSH2 0x1E31 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xE95 JUMPI PUSH2 0xE95 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xEBF JUMPI PUSH2 0xEBF PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0xF1E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7069636B732D617363656E64696E670000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D3 JUMP JUMPDEST PUSH1 0x0 DUP11 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xF39 JUMPI PUSH2 0xF39 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xF65 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP PUSH1 0x0 PUSH2 0xF8D DUP3 DUP16 DUP10 PUSH2 0x11C5 JUMP JUMPDEST SWAP1 POP PUSH1 0x10 PUSH1 0xFF DUP3 AND LT ISZERO PUSH2 0xFDB JUMPI DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT ISZERO PUSH2 0xFAD JUMPI DUP1 SWAP4 POP JUMPDEST DUP5 DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFC2 JUMPI PUSH2 0xFC2 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP1 MLOAD DUP1 SWAP2 SWAP1 PUSH2 0xFD7 SWAP1 PUSH2 0x1E79 JUMP JUMPDEST SWAP1 MSTORE POP JUMPDEST POP POP DUP1 DUP1 PUSH2 0xFE8 SWAP1 PUSH2 0x1E94 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xDDB JUMP JUMPDEST POP PUSH1 0x0 DUP1 PUSH2 0xFFE DUP10 DUP5 PUSH2 0x1264 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 GT PUSH2 0x108C JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1021 JUMPI PUSH2 0x1021 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD GT ISZERO PUSH2 0x107A JUMPI DUP5 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x1041 JUMPI PUSH2 0x1041 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x105B JUMPI PUSH2 0x105B PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x106D SWAP2 SWAP1 PUSH2 0x1DFB JUMP JUMPDEST PUSH2 0x1077 SWAP1 DUP5 PUSH2 0x1C82 JUMP JUMPDEST SWAP3 POP JUMPDEST DUP1 PUSH2 0x1084 DUP2 PUSH2 0x1E79 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1003 JUMP JUMPDEST POP PUSH4 0x3B9ACA00 DUP10 PUSH2 0x100 ADD MLOAD DUP4 PUSH2 0x10A3 SWAP2 SWAP1 PUSH2 0x1DFB JUMP JUMPDEST PUSH2 0x10AD SWAP2 SWAP1 PUSH2 0x1CEB JUMP JUMPDEST SWAP14 SWAP4 SWAP13 POP SWAP3 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10E4 JUMPI PUSH2 0x10E4 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x110D JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP DUP4 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 SWAP1 PUSH2 0x1121 SWAP1 PUSH1 0x2 PUSH2 0x1D50 JUMP JUMPDEST PUSH2 0x112B SWAP2 SWAP1 PUSH2 0x1E1A JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x113E JUMPI PUSH2 0x113E PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 JUMPDEST DUP4 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x11BE JUMPI DUP4 MLOAD PUSH1 0xFF AND DUP3 PUSH2 0x116F PUSH1 0x1 DUP5 PUSH2 0x1E56 JUMP JUMPDEST PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1182 JUMPI PUSH2 0x1182 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 SHL DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x11A1 JUMPI PUSH2 0x11A1 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x11B6 DUP2 PUSH2 0x1EB8 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x114C JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x1259 JUMPI PUSH1 0x0 DUP6 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x11F3 JUMPI PUSH2 0x11F3 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP DUP1 DUP8 AND DUP2 DUP10 AND EQ PUSH2 0x1238 JUMPI DUP4 PUSH1 0xFF AND DUP4 PUSH1 0xFF AND EQ ISZERO PUSH2 0x1223 JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0x347 JUMP JUMPDEST PUSH2 0x122D DUP5 DUP5 PUSH2 0x1E56 JUMP JUMPDEST SWAP5 POP POP POP POP POP PUSH2 0x347 JUMP JUMPDEST DUP4 PUSH2 0x1242 DUP2 PUSH2 0x1EB8 JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0x1251 SWAP1 PUSH2 0x1EB8 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x11CE JUMP JUMPDEST POP PUSH2 0x342 DUP3 DUP3 PUSH2 0x1E56 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x1273 DUP4 PUSH1 0x1 PUSH2 0x1CC6 JUMP JUMPDEST PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x128E JUMPI PUSH2 0x128E PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x12B7 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT PUSH2 0x1309 JUMPI PUSH2 0x12D7 DUP6 DUP3 PUSH1 0xFF AND PUSH2 0x1311 JUMP JUMPDEST DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x12EC JUMPI PUSH2 0x12EC PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x1301 DUP2 PUSH2 0x1EB8 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x12BD JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0xE0 ADD MLOAD DUP4 PUSH1 0x10 DUP2 LT PUSH2 0x132A JUMPI PUSH2 0x132A PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x1347 DUP6 PUSH1 0x0 ADD MLOAD DUP6 PUSH2 0x135C JUMP JUMPDEST SWAP1 POP PUSH2 0x1353 DUP2 DUP4 PUSH2 0x1CEB JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO PUSH2 0x13A2 JUMPI PUSH2 0x136F PUSH1 0x1 DUP4 PUSH2 0x1E1A JUMP JUMPDEST PUSH2 0x137C SWAP1 PUSH1 0xFF DUP6 AND PUSH2 0x1DFB JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x138D DUP4 PUSH1 0xFF DUP7 AND PUSH2 0x1DFB JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x139B SWAP2 SWAP1 PUSH2 0x1E1A JUMP JUMPDEST SWAP1 POP PUSH2 0xD35 JUMP JUMPDEST POP PUSH1 0x1 PUSH2 0xD35 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x13CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x13E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP1 DUP3 ADD DUP3 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1409 JUMPI PUSH2 0x1409 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP5 DUP3 DUP2 ADD DUP8 LT ISZERO PUSH2 0x141D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP3 POP JUMPDEST PUSH1 0x10 DUP4 LT ISZERO PUSH2 0x144B JUMPI DUP1 MLOAD PUSH2 0x1436 DUP2 PUSH2 0x1F1A JUMP JUMPDEST DUP3 MSTORE PUSH1 0x1 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x20 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x1422 JUMP JUMPDEST POP SWAP2 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x1468 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1480 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x149B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x13CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x13CE DUP2 PUSH2 0x1F1A JUMP JUMPDEST DUP1 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x13CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x14F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14F9 DUP5 PUSH2 0x13AA JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1515 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1521 DUP7 DUP3 DUP8 ADD PUSH2 0x1456 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1546 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x154F DUP7 PUSH2 0x13AA JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x156C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1578 DUP10 DUP4 DUP11 ADD PUSH2 0x1456 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x1591 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x15A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x15B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x15C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x15EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1604 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1618 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x162B PUSH2 0x1626 DUP3 PUSH2 0x1C5E JUMP JUMPDEST PUSH2 0x1C2D JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP6 DUP3 ADD SWAP2 POP DUP6 DUP6 ADD DUP10 DUP8 DUP6 PUSH1 0x5 SHL DUP9 ADD ADD GT ISZERO PUSH2 0x164B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x16EA JUMPI DUP2 CALLDATALOAD DUP7 DUP2 GT ISZERO PUSH2 0x1665 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 ADD PUSH1 0x3F DUP2 ADD DUP13 SGT PUSH2 0x1676 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 DUP2 ADD CALLDATALOAD PUSH2 0x1686 PUSH2 0x1626 DUP3 PUSH2 0x1C5E JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP12 DUP3 ADD SWAP2 POP PUSH1 0x40 DUP5 ADD DUP16 PUSH1 0x40 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x16A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x16D4 JUMPI DUP1 CALLDATALOAD PUSH2 0x16C0 DUP2 PUSH2 0x1F2F JUMP JUMPDEST DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP13 ADD SWAP2 DUP13 ADD PUSH2 0x16AD JUMP JUMPDEST POP DUP8 MSTORE POP POP POP SWAP3 DUP8 ADD SWAP3 SWAP1 DUP8 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x164E JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x170C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1723 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1734 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1742 PUSH2 0x1626 DUP3 PUSH2 0x1C5E JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH1 0xA0 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1761 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x17E5 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x177D JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1785 PUSH2 0x1BE0 JUMP JUMPDEST DUP4 MLOAD DUP2 MSTORE DUP9 DUP5 ADD MLOAD PUSH2 0x1796 DUP2 PUSH2 0x1F1A JUMP JUMPDEST DUP2 DUP11 ADD MSTORE PUSH1 0x40 DUP5 DUP2 ADD MLOAD PUSH2 0x17A9 DUP2 PUSH2 0x1F2F JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP5 DUP2 ADD MLOAD PUSH2 0x17BC DUP2 PUSH2 0x1F2F JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP5 DUP2 ADD MLOAD PUSH2 0x17CF DUP2 PUSH2 0x1F1A JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1767 JUMP JUMPDEST POP SWAP2 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1807 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x181E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x182F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x183D PUSH2 0x1626 DUP3 PUSH2 0x1C5E JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH2 0x300 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x185D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x17E5 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x1879 JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1881 PUSH2 0x1C09 JUMP JUMPDEST PUSH2 0x188A DUP5 PUSH2 0x14CA JUMP JUMPDEST DUP2 MSTORE PUSH2 0x1897 DUP10 DUP6 ADD PUSH2 0x14CA JUMP JUMPDEST DUP10 DUP3 ADD MSTORE PUSH1 0x40 PUSH2 0x18A8 DUP2 DUP7 ADD PUSH2 0x14BF JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 PUSH2 0x18B9 DUP6 DUP3 ADD PUSH2 0x14BF JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 PUSH2 0x18CA DUP6 DUP3 ADD PUSH2 0x14BF JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 PUSH2 0x18DB DUP6 DUP3 ADD PUSH2 0x14BF JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 PUSH2 0x18EC DUP6 DUP3 ADD PUSH2 0x14A2 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 PUSH2 0x18FE DUP14 DUP7 DUP4 ADD PUSH2 0x13D3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH2 0x2E0 DUP5 ADD MLOAD PUSH2 0x100 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1863 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1933 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x194A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x195B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1969 PUSH2 0x1626 DUP3 PUSH2 0x1C5E JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP5 DUP3 ADD SWAP2 POP DUP5 DUP5 ADD DUP9 DUP7 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x1989 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x19AC JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP6 ADD SWAP2 DUP6 ADD PUSH2 0x198E JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x19E8 JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x19CC JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x19E8 JUMPI DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1A07 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x1A5C PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x19F3 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x1A6E DUP2 DUP6 PUSH2 0x19F3 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 ADD DUP2 DUP5 MSTORE DUP1 DUP6 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP7 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP8 ADD ADD SWAP3 POP DUP4 DUP8 ADD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1AEB JUMPI PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x1AD9 DUP6 DUP4 MLOAD PUSH2 0x19B8 JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1A9F JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0xD32 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x19B8 JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1B1E PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x19B8 JUMP JUMPDEST PUSH1 0x20 DUP4 DUP3 SUB DUP2 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1B4A JUMPI DUP7 DUP2 ADD DUP4 ADD MLOAD DUP5 DUP3 ADD DUP5 ADD MSTORE DUP3 ADD PUSH2 0x1B2F JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x1B5B JUMPI PUSH1 0x0 DUP4 DUP4 DUP7 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP5 PUSH1 0x40 DUP5 ADD DUP4 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x1BB0 JUMPI DUP3 CALLDATALOAD PUSH2 0x1B98 DUP2 PUSH2 0x1F1A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 MSTORE SWAP2 DUP4 ADD SWAP2 SWAP1 DUP4 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1B85 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1BCE PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x19F3 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1353 DUP2 DUP6 PUSH2 0x19F3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C03 JUMPI PUSH2 0x1C03 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C03 JUMPI PUSH2 0x1C03 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C56 JUMPI PUSH2 0x1C56 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1C78 JUMPI PUSH2 0x1C78 PUSH2 0x1F04 JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1C95 JUMPI PUSH2 0x1C95 PUSH2 0x1ED8 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1CBD JUMPI PUSH2 0x1CBD PUSH2 0x1ED8 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 PUSH1 0xFF SUB DUP3 GT ISZERO PUSH2 0x1CE3 JUMPI PUSH2 0x1CE3 PUSH2 0x1ED8 JUMP JUMPDEST ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1D08 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 JUMPDEST DUP1 DUP6 GT ISZERO PUSH2 0x1D48 JUMPI DUP2 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x1D2E JUMPI PUSH2 0x1D2E PUSH2 0x1ED8 JUMP JUMPDEST DUP1 DUP6 AND ISZERO PUSH2 0x1D3B JUMPI SWAP2 DUP2 MUL SWAP2 JUMPDEST SWAP4 DUP5 SHR SWAP4 SWAP1 DUP1 MUL SWAP1 PUSH2 0x1D12 JUMP JUMPDEST POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD32 PUSH1 0xFF DUP5 AND DUP4 PUSH1 0x0 DUP3 PUSH2 0x1D69 JUMPI POP PUSH1 0x1 PUSH2 0xD35 JUMP JUMPDEST DUP2 PUSH2 0x1D76 JUMPI POP PUSH1 0x0 PUSH2 0xD35 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x1D8C JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x1D96 JUMPI PUSH2 0x1DB2 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xD35 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x1DA7 JUMPI PUSH2 0x1DA7 PUSH2 0x1ED8 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0xD35 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x1DD5 JUMPI POP DUP2 DUP2 EXP PUSH2 0xD35 JUMP JUMPDEST PUSH2 0x1DDF DUP4 DUP4 PUSH2 0x1D0D JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x1DF3 JUMPI PUSH2 0x1DF3 PUSH2 0x1ED8 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1E15 JUMPI PUSH2 0x1E15 PUSH2 0x1ED8 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1E2C JUMPI PUSH2 0x1E2C PUSH2 0x1ED8 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1E4E JUMPI PUSH2 0x1E4E PUSH2 0x1ED8 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 DUP3 LT ISZERO PUSH2 0x1E70 JUMPI PUSH2 0x1E70 PUSH2 0x1ED8 JUMP JUMPDEST SWAP1 SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1E8D JUMPI PUSH2 0x1E8D PUSH2 0x1ED8 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP2 EQ ISZERO PUSH2 0x1EAE JUMPI PUSH2 0x1EAE PUSH2 0x1ED8 JUMP JUMPDEST PUSH1 0x1 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 EQ ISZERO PUSH2 0x1ECF JUMPI PUSH2 0x1ECF PUSH2 0x1ED8 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F2C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F2C JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLCODE DUP6 RETURNDATASIZE 0xD 0x22 SWAP6 LOG3 PUSH4 0x244A50DF SWAP10 PUSH3 0xFECE13 PUSH9 0xB6C2C299B27B019012 COINBASE MLOAD 0x28 SHR 0xBA PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "869:17445:32:-:0;;;2094:580;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2247:30:32;;2239:67;;;;-1:-1:-1;;;2239:67:32;;1200:2:84;2239:67:32;;;1182:21:84;1239:2;1219:18;;;1212:30;1278:26;1258:18;;;1251:54;1322:18;;2239:67:32;;;;;;;;;-1:-1:-1;;;;;2324:47:32;;2316:81;;;;-1:-1:-1;;;2316:81:32;;1553:2:84;2316:81:32;;;1535:21:84;1592:2;1572:18;;;1565:30;1631:23;1611:18;;;1604:51;1672:18;;2316:81:32;1525:171:84;2316:81:32;-1:-1:-1;;;;;2415:34:32;;2407:67;;;;-1:-1:-1;;;2407:67:32;;851:2:84;2407:67:32;;;833:21:84;890:2;870:18;;;863:30;929:22;909:18;;;902:50;969:18;;2407:67:32;823:170:84;2407:67:32;-1:-1:-1;;;;;;2485:16:32;;;;;;;;2511:24;;;;;;;2545:50;;;;;;2611:56;;-1:-1:-1;;;;;2545:50:32;;;;2511:24;;;;2485:16;;;2611:56;;;;;2094:580;;;869:17445;;14:630:84;174:6;182;190;243:2;231:9;222:7;218:23;214:32;211:2;;;259:1;256;249:12;211:2;291:9;285:16;310:44;348:5;310:44;:::i;:::-;423:2;408:18;;402:25;373:5;;-1:-1:-1;436:46:84;402:25;436:46;:::i;:::-;553:2;538:18;;532:25;501:7;;-1:-1:-1;566:46:84;532:25;566:46;:::i;:::-;631:7;621:17;;;201:443;;;;;:::o;1701:144::-;-1:-1:-1;;;;;1789:31:84;;1779:42;;1769:2;;1835:1;1832;1825:12;1769:2;1759:86;:::o;:::-;869:17445:32;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@TIERS_LENGTH_7592": {
                  "entryPoint": null,
                  "id": 7592,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_calculateNumberOfUserPicks_7991": {
                  "entryPoint": 3326,
                  "id": 7991,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizeTierFraction_8524": {
                  "entryPoint": 4881,
                  "id": 8524,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizeTierFractions_8573": {
                  "entryPoint": 4708,
                  "id": 8573,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizesAwardable_7968": {
                  "entryPoint": 2628,
                  "id": 7968,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@_calculateTierIndex_8430": {
                  "entryPoint": 4549,
                  "id": 8430,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_calculate_8356": {
                  "entryPoint": 3387,
                  "id": 8356,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@_createBitMasks_8493": {
                  "entryPoint": 4288,
                  "id": 8493,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_getNormalizedBalancesAt_8154": {
                  "entryPoint": 1497,
                  "id": 8154,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_numberOfPrizesForIndex_8609": {
                  "entryPoint": 4956,
                  "id": 8609,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@calculate_7773": {
                  "entryPoint": 846,
                  "id": 7773,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@drawBuffer_7580": {
                  "entryPoint": null,
                  "id": 7580,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getDrawBuffer_7783": {
                  "entryPoint": null,
                  "id": 7783,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getNormalizedBalancesForDrawIds_7834": {
                  "entryPoint": 463,
                  "id": 7834,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getPrizeDistributionSource_7793": {
                  "entryPoint": null,
                  "id": 7793,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@prizeDistributionSource_7588": {
                  "entryPoint": null,
                  "id": 7588,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@ticket_7584": {
                  "entryPoint": null,
                  "id": 7584,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "abi_decode_address": {
                  "entryPoint": 5034,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_array_uint32_dyn_calldata": {
                  "entryPoint": 5206,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_array_uint32_fromMemory": {
                  "entryPoint": 5075,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr": {
                  "entryPoint": 5339,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr": {
                  "entryPoint": 5422,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr": {
                  "entryPoint": 5593,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 5881,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 6132,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 6432,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint104_fromMemory": {
                  "entryPoint": 5282,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint32_fromMemory": {
                  "entryPoint": 5311,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint8_fromMemory": {
                  "entryPoint": 5322,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_array_uint256_dyn": {
                  "entryPoint": 6584,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_array_uint64_dyn": {
                  "entryPoint": 6643,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6701,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__to_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6776,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6904,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6923,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint32_$dyn_calldata_ptr__to_t_array$_t_uint32_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7024,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7099,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeDistributionSource_$11503__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "allocate_memory": {
                  "entryPoint": 7213,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "allocate_memory_4542": {
                  "entryPoint": 7136,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "allocate_memory_4543": {
                  "entryPoint": 7177,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "array_allocation_size_array_array_uint64_dyn_dyn": {
                  "entryPoint": 7262,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 7298,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint64": {
                  "entryPoint": 7322,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint8": {
                  "entryPoint": 7366,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 7403,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_exp_helper": {
                  "entryPoint": 7437,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "checked_exp_t_uint256_t_uint8": {
                  "entryPoint": 7504,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_exp_unsigned": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint256": {
                  "entryPoint": 7675,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 7706,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 7729,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint8": {
                  "entryPoint": 7766,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 7801,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint32": {
                  "entryPoint": 7828,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint8": {
                  "entryPoint": 7864,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 7896,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 7918,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 7940,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_uint32": {
                  "entryPoint": 7962,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint64": {
                  "entryPoint": 7983,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:23410:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:711:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "334:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "346:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "336:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "336:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "336:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "313:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "321:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "309:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "309:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "328:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "305:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "305:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "359:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "379:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "373:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "373:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "363:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "391:13:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "401:3:84",
                                "type": "",
                                "value": "512"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "395:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "413:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "435:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "443:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "431:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "431:15:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "417:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "521:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "523:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "523:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "464:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "476:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "461:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "461:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "500:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "512:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "497:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "497:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "458:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "458:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "455:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "559:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "563:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "552:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "552:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "552:22:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "583:17:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "594:6:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "587:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "609:17:84",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "620:6:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "613:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "663:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "672:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "675:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "665:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "665:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "665:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "653:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:15:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "638:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "638:24:84"
                              },
                              "nodeType": "YulIf",
                              "src": "635:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "688:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "697:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "692:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "754:212:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "768:23:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "787:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "781:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "781:10:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "772:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "828:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "804:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "804:30:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "804:30:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "854:3:84"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "859:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "847:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "847:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "847:18:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "878:14:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "888:4:84",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_2",
                                        "nodeType": "YulTypedName",
                                        "src": "882:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "905:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "916:3:84"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "921:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "912:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "912:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "905:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "937:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "948:3:84"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "953:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "944:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "944:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "937:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "718:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "721:4:84",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "715:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "715:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "727:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "729:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "738:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "741:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "734:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "734:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "729:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "711:3:84",
                                "statements": []
                              },
                              "src": "707:259:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "975:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "984:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "975:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "259:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "267:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "275:5:84",
                            "type": ""
                          }
                        ],
                        "src": "215:781:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1084:283:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1133:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1142:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1145:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1135:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1135:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1135:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "1112:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1120:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1108:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1108:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "1127:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1104:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1104:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1097:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1097:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1094:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1158:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1181:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1168:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1168:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1158:6:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1231:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1240:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1243:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1233:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1233:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1233:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1203:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1211:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1200:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1200:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1197:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1256:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1272:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1280:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1268:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1268:17:84"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "1256:8:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1345:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1354:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1357:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1347:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1347:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1347:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "1308:6:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1320:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1323:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1316:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1316:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1304:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1304:27:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1333:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1300:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1300:38:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "1340:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1297:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1297:47:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1294:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32_dyn_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1047:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1055:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "1063:8:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1073:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1001:366:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1432:126:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1442:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1457:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1451:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1451:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1442:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1536:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1545:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1548:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1538:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1538:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1538:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1486:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1497:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1504:28:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1493:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1493:40:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1483:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1483:51:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1476:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1476:59:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1473:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint104_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1411:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1422:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1372:186:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1622:77:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1632:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1647:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1641:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1641:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1632:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1687:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1663:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1663:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1663:30:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1601:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1612:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1563:136:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1762:102:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1772:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1787:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1781:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1781:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1772:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1842:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1851:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1854:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1844:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1844:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1844:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1816:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1827:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1834:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1823:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1823:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1813:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1813:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1806:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1806:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1803:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1741:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1752:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1704:160:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1990:388:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2036:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2045:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2048:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2038:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2038:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2038:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2011:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2020:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2007:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2007:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2032:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2003:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2003:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2000:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2061:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2090:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2071:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2071:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2061:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2109:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2140:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2151:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2136:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2136:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2123:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2123:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2113:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2198:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2207:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2210:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2200:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2200:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2200:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2170:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2178:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2167:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2167:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2164:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2223:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2290:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "2301:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2286:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2286:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2310:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint32_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2249:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2249:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2227:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2237:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2327:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "2337:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2327:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2354:18:84",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "2364:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2354:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1940:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1951:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1963:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1971:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1979:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1869:509:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2540:821:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2586:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2595:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2598:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2588:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2588:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2588:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2561:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2570:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2557:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2557:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2582:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2553:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2553:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2550:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2611:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2640:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2621:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2621:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2611:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2659:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2690:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2701:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2686:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2686:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2673:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2673:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2663:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2714:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2724:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2718:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2769:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2778:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2781:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2771:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2771:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2771:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2757:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2765:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2754:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2754:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2751:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2794:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2861:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "2872:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2857:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2857:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2881:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint32_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2820:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2820:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2798:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2808:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2898:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "2908:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2898:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2925:18:84",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "2935:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2925:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2952:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2985:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2996:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2981:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2981:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2968:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2968:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2956:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3029:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3038:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3041:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3031:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3031:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3031:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3015:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3025:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3012:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3012:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3009:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3054:34:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3068:9:84"
                                  },
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3079:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3064:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3064:24:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3058:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3136:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3145:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3148:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3138:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3138:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3138:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3115:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3119:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3111:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3111:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3126:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3107:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3107:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3100:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3100:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3097:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3161:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3188:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3175:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3175:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3165:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3218:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3227:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3230:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3220:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3220:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3220:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3206:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3214:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3203:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3203:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3200:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3284:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3293:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3296:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3286:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3286:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3286:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3257:2:84"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "3261:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3253:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3253:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3270:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3249:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3249:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3275:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3246:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3246:37:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3243:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3309:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3323:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3327:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3319:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3319:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "3309:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3339:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "3349:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "3339:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2474:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2485:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2497:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2505:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2513:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2521:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2529:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2383:978:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3485:1707:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3495:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3505:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3499:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3552:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3561:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3564:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3554:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3554:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3554:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3527:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3536:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3523:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3523:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3548:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3519:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3519:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3516:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3577:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3604:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3591:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3591:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3581:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3623:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3633:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3627:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3678:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3687:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3690:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3680:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3680:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3680:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3666:6:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3674:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3663:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3663:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3660:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3703:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3717:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3728:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3713:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3713:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "3707:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3783:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3792:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3795:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3785:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3785:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3785:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "3762:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3766:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3758:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3758:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3773:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3754:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3754:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3747:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3747:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3744:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3808:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3831:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3818:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3818:16:84"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "3812:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3843:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3919:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "3870:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3870:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3854:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3854:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "3847:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3932:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "3945:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3936:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3964:3:84"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3969:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3957:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3957:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3957:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3981:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3992:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3997:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3988:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3988:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "3981:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4009:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "4024:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4028:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4020:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4020:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "4013:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4085:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4094:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4097:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4087:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4087:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4087:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "4054:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4062:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "4065:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "4058:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4058:10:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4050:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4050:19:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4071:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4046:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4046:28:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "4076:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4043:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4043:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4040:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4110:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4119:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4114:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4174:988:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4188:36:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "4220:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "4207:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4207:17:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "innerOffset",
                                        "nodeType": "YulTypedName",
                                        "src": "4192:11:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4260:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4269:1:84",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4272:1:84",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "4262:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4262:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4262:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "innerOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "4243:11:84"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4256:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "4240:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4240:19:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "4237:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4289:30:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "4303:2:84"
                                        },
                                        {
                                          "name": "innerOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "4307:11:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4299:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4299:20:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "4293:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4369:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4378:1:84",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4381:1:84",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "4371:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4371:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4371:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4350:2:84"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "4354:2:84",
                                                  "type": "",
                                                  "value": "63"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4346:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4346:11:84"
                                            },
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "4359:7:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "slt",
                                            "nodeType": "YulIdentifier",
                                            "src": "4342:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4342:25:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "iszero",
                                        "nodeType": "YulIdentifier",
                                        "src": "4335:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4335:33:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "4332:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4398:35:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "4425:2:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "4429:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4421:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4421:11:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "4408:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4408:25:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "4402:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4446:82:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "4524:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                            "nodeType": "YulIdentifier",
                                            "src": "4475:48:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4475:52:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "allocate_memory",
                                        "nodeType": "YulIdentifier",
                                        "src": "4459:15:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4459:69:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "dst_2",
                                        "nodeType": "YulTypedName",
                                        "src": "4450:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4541:18:84",
                                    "value": {
                                      "name": "dst_2",
                                      "nodeType": "YulIdentifier",
                                      "src": "4554:5:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "dst_3",
                                        "nodeType": "YulTypedName",
                                        "src": "4545:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4579:5:84"
                                        },
                                        {
                                          "name": "_6",
                                          "nodeType": "YulIdentifier",
                                          "src": "4586:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4572:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4572:17:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4572:17:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4602:23:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4615:5:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4622:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4611:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4611:14:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "4602:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4638:24:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "_5",
                                          "nodeType": "YulIdentifier",
                                          "src": "4655:2:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4659:2:84",
                                          "type": "",
                                          "value": "64"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4651:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4651:11:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "src_1",
                                        "nodeType": "YulTypedName",
                                        "src": "4642:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4720:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4729:1:84",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4732:1:84",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "4722:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4722:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4722:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4689:2:84"
                                                },
                                                {
                                                  "arguments": [
                                                    {
                                                      "kind": "number",
                                                      "nodeType": "YulLiteral",
                                                      "src": "4697:1:84",
                                                      "type": "",
                                                      "value": "5"
                                                    },
                                                    {
                                                      "name": "_6",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "4700:2:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "shl",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "4693:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "4693:10:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4685:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4685:19:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4706:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4681:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4681:28:84"
                                        },
                                        {
                                          "name": "dataEnd",
                                          "nodeType": "YulIdentifier",
                                          "src": "4711:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "4678:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4678:41:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "4675:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4749:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "4760:1:84",
                                      "type": "",
                                      "value": "0"
                                    },
                                    "variables": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulTypedName",
                                        "src": "4753:3:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4829:228:84",
                                      "statements": [
                                        {
                                          "nodeType": "YulVariableDeclaration",
                                          "src": "4847:32:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "src_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "4873:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "calldataload",
                                              "nodeType": "YulIdentifier",
                                              "src": "4860:12:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4860:19:84"
                                          },
                                          "variables": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulTypedName",
                                              "src": "4851:5:84",
                                              "type": ""
                                            }
                                          ]
                                        },
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4920:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "validator_revert_uint64",
                                              "nodeType": "YulIdentifier",
                                              "src": "4896:23:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4896:30:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4896:30:84"
                                        },
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "dst_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "4950:5:84"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4957:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mstore",
                                              "nodeType": "YulIdentifier",
                                              "src": "4943:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4943:20:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4943:20:84"
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "4980:23:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "dst_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "4993:5:84"
                                              },
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "5000:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4989:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4989:14:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "dst_2",
                                              "nodeType": "YulIdentifier",
                                              "src": "4980:5:84"
                                            }
                                          ]
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "5020:23:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "src_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "5033:5:84"
                                              },
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "5040:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5029:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5029:14:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "src_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "5020:5:84"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4785:3:84"
                                        },
                                        {
                                          "name": "_6",
                                          "nodeType": "YulIdentifier",
                                          "src": "4790:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "lt",
                                        "nodeType": "YulIdentifier",
                                        "src": "4782:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4782:11:84"
                                    },
                                    "nodeType": "YulForLoop",
                                    "post": {
                                      "nodeType": "YulBlock",
                                      "src": "4794:22:84",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "4796:18:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "i_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "4807:3:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4812:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4803:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4803:11:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "i_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "4796:3:84"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "pre": {
                                      "nodeType": "YulBlock",
                                      "src": "4778:3:84",
                                      "statements": []
                                    },
                                    "src": "4774:283:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "5077:3:84"
                                        },
                                        {
                                          "name": "dst_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "5082:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5070:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5070:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5070:18:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5101:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "5112:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5117:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5108:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5108:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "5101:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5133:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "5144:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5149:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5140:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5140:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "5133:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4140:1:84"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "4143:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4137:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4137:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4147:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4149:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4158:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4161:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4154:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4154:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4149:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4133:3:84",
                                "statements": []
                              },
                              "src": "4129:1033:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5171:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "5181:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5171:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3451:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3462:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3474:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3366:1826:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5326:1606:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5336:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5346:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5340:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5393:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5402:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5405:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5395:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5395:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5395:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5368:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5377:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5364:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5364:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5389:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5360:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5360:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5357:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5418:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5438:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5432:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5432:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "5422:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5491:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5500:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5503:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5493:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5493:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5493:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5463:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5471:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5460:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5460:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5457:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5516:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5530:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5541:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5526:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5526:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "5520:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5596:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5605:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5608:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5598:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5598:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5598:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "5575:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5579:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5571:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5571:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5586:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "5567:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5567:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "5560:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5560:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5557:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5621:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5637:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5631:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5631:9:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "5625:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5649:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "5725:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "5676:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5676:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5660:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5660:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "5653:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5738:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "5751:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5742:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "5770:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5775:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5763:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5763:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5763:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5787:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "5798:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5803:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5794:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5794:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "5787:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5815:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5830:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5834:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5826:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5826:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "5819:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5846:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5856:4:84",
                                "type": "",
                                "value": "0xa0"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "5850:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5915:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5924:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5927:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5917:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5917:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5917:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "5883:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "5891:2:84"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "5895:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "5887:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5887:11:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5879:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5879:20:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5901:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5875:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5875:29:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "5906:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5872:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5872:42:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5869:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5940:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5949:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "5944:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5959:12:84",
                              "value": {
                                "name": "i",
                                "nodeType": "YulIdentifier",
                                "src": "5970:1:84"
                              },
                              "variables": [
                                {
                                  "name": "i_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5963:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6031:871:84",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "6075:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "6084:1:84"
                                              },
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "6087:1:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "6077:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6077:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "6077:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "6056:7:84"
                                            },
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6065:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "sub",
                                            "nodeType": "YulIdentifier",
                                            "src": "6052:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6052:17:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6071:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "slt",
                                        "nodeType": "YulIdentifier",
                                        "src": "6048:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6048:26:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "6045:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6104:35:84",
                                    "value": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "allocate_memory_4542",
                                        "nodeType": "YulIdentifier",
                                        "src": "6117:20:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6117:22:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "6108:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "6159:5:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6172:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "6166:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6166:10:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6152:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6152:25:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6152:25:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6190:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6215:3:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "6220:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6211:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6211:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6205:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6205:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulTypedName",
                                        "src": "6194:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6261:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "6237:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6237:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6237:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6293:5:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "6300:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6289:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6289:14:84"
                                        },
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6305:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6282:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6282:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6282:31:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6326:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "6336:2:84",
                                      "type": "",
                                      "value": "64"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "6330:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6351:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6376:3:84"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "6381:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6372:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6372:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6366:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6366:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_2",
                                        "nodeType": "YulTypedName",
                                        "src": "6355:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "6422:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint64",
                                        "nodeType": "YulIdentifier",
                                        "src": "6398:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6398:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6398:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6454:5:84"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "6461:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6450:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6450:14:84"
                                        },
                                        {
                                          "name": "value_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "6466:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6443:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6443:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6443:31:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6487:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "6497:2:84",
                                      "type": "",
                                      "value": "96"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "6491:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6512:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6537:3:84"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "6542:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6533:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6533:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6527:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6527:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulTypedName",
                                        "src": "6516:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "6583:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint64",
                                        "nodeType": "YulIdentifier",
                                        "src": "6559:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6559:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6559:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6615:5:84"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "6622:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6611:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6611:14:84"
                                        },
                                        {
                                          "name": "value_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "6627:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6604:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6604:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6604:31:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6648:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "6658:3:84",
                                      "type": "",
                                      "value": "128"
                                    },
                                    "variables": [
                                      {
                                        "name": "_7",
                                        "nodeType": "YulTypedName",
                                        "src": "6652:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6674:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6699:3:84"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "6704:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6695:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6695:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6689:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6689:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_4",
                                        "nodeType": "YulTypedName",
                                        "src": "6678:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6745:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "6721:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6721:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6721:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6777:5:84"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "6784:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6773:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6773:14:84"
                                        },
                                        {
                                          "name": "value_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6789:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6766:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6766:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6766:31:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "6817:3:84"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "6822:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6810:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6810:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6810:18:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6841:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "6852:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6857:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6848:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6848:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "6841:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6873:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "6884:3:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6889:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6880:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6880:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "6873:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5991:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5996:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5988:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5988:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "6000:22:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6002:18:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6013:3:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6018:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6009:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6009:11:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6002:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "5984:3:84",
                                "statements": []
                              },
                              "src": "5980:922:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6911:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "6921:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6911:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5292:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5303:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5315:6:84",
                            "type": ""
                          }
                        ],
                        "src": "5197:1735:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7079:1796:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7089:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7099:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7093:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7146:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7155:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7158:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7148:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7148:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7148:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7121:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7130:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7117:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7117:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7142:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7113:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7113:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7110:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7171:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7191:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7185:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7185:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "7175:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7244:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7253:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7256:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7246:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7246:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7246:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "7216:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7224:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7213:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7213:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7210:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7269:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7283:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "7294:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7279:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7279:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "7273:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7349:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7358:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7361:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7351:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7351:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7351:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "7328:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "7332:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "7324:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7324:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7339:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "7320:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7320:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "7313:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7313:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7310:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7374:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "7390:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7384:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7384:9:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "7378:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7402:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "7478:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "7429:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7429:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "7413:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7413:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "7406:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7491:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "7504:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7495:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "7523:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "7528:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7516:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7516:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7516:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7540:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "7551:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7556:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7547:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7547:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "7540:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7568:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "7583:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7587:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7579:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7579:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "7572:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7599:16:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7609:6:84",
                                "type": "",
                                "value": "0x0300"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "7603:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7670:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7679:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7682:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7672:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7672:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7672:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "7638:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "7646:2:84"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "7650:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "7642:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7642:11:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "7634:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7634:20:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7656:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7630:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7630:29:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "7661:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7627:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7627:42:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7624:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7695:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7704:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "7699:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7714:12:84",
                              "value": {
                                "name": "i",
                                "nodeType": "YulIdentifier",
                                "src": "7725:1:84"
                              },
                              "variables": [
                                {
                                  "name": "i_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7718:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7786:1059:84",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "7830:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "7839:1:84"
                                              },
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "7842:1:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "7832:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7832:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "7832:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "7811:7:84"
                                            },
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "7820:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "sub",
                                            "nodeType": "YulIdentifier",
                                            "src": "7807:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7807:17:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "7826:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "slt",
                                        "nodeType": "YulIdentifier",
                                        "src": "7803:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7803:26:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "7800:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "7859:35:84",
                                    "value": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "allocate_memory_4543",
                                        "nodeType": "YulIdentifier",
                                        "src": "7872:20:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7872:22:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "7863:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "7914:5:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "7949:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint8_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "7921:27:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7921:32:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7907:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7907:47:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7907:47:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "7978:5:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "7985:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "7974:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7974:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8022:3:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8027:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8018:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8018:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint8_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "7990:27:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7990:41:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7967:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7967:65:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7967:65:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8045:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8055:2:84",
                                      "type": "",
                                      "value": "64"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "8049:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8081:5:84"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "8088:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8077:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8077:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8126:3:84"
                                                },
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8131:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8122:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8122:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8093:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8093:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8070:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8070:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8070:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8149:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8159:2:84",
                                      "type": "",
                                      "value": "96"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "8153:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8185:5:84"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "8192:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8181:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8181:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8230:3:84"
                                                },
                                                {
                                                  "name": "_6",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8235:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8226:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8226:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8197:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8197:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8174:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8174:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8174:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8253:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8263:3:84",
                                      "type": "",
                                      "value": "128"
                                    },
                                    "variables": [
                                      {
                                        "name": "_7",
                                        "nodeType": "YulTypedName",
                                        "src": "8257:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8290:5:84"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "8297:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8286:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8286:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8335:3:84"
                                                },
                                                {
                                                  "name": "_7",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8340:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8331:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8331:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8302:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8302:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8279:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8279:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8279:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8358:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8368:3:84",
                                      "type": "",
                                      "value": "160"
                                    },
                                    "variables": [
                                      {
                                        "name": "_8",
                                        "nodeType": "YulTypedName",
                                        "src": "8362:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8395:5:84"
                                            },
                                            {
                                              "name": "_8",
                                              "nodeType": "YulIdentifier",
                                              "src": "8402:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8391:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8391:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8440:3:84"
                                                },
                                                {
                                                  "name": "_8",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8445:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8436:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8436:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8407:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8407:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8384:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8384:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8384:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8463:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8473:3:84",
                                      "type": "",
                                      "value": "192"
                                    },
                                    "variables": [
                                      {
                                        "name": "_9",
                                        "nodeType": "YulTypedName",
                                        "src": "8467:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8500:5:84"
                                            },
                                            {
                                              "name": "_9",
                                              "nodeType": "YulIdentifier",
                                              "src": "8507:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8496:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8496:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8546:3:84"
                                                },
                                                {
                                                  "name": "_9",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8551:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8542:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8542:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint104_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8512:29:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8512:43:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8489:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8489:67:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8489:67:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8569:14:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8580:3:84",
                                      "type": "",
                                      "value": "224"
                                    },
                                    "variables": [
                                      {
                                        "name": "_10",
                                        "nodeType": "YulTypedName",
                                        "src": "8573:3:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8607:5:84"
                                            },
                                            {
                                              "name": "_10",
                                              "nodeType": "YulIdentifier",
                                              "src": "8614:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8603:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8603:15:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8659:3:84"
                                                },
                                                {
                                                  "name": "_10",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8664:3:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8655:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8655:13:84"
                                            },
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "8670:7:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_array_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8620:34:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8620:58:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8596:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8596:83:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8596:83:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8703:5:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "8710:6:84",
                                              "type": "",
                                              "value": "0x0100"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8699:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8699:18:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8729:3:84"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "8734:3:84",
                                                  "type": "",
                                                  "value": "736"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8725:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8725:13:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "8719:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8719:20:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8692:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8692:48:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8692:48:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "8760:3:84"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "8765:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8753:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8753:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8753:18:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8784:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "8795:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8800:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8791:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8791:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "8784:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8816:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "8827:3:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "8832:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8823:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8823:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "8816:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7746:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "7751:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7743:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7743:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "7755:22:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7757:18:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7768:3:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7773:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7764:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7764:11:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7757:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "7739:3:84",
                                "statements": []
                              },
                              "src": "7735:1110:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8854:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "8864:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "8854:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7045:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "7056:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7068:6:84",
                            "type": ""
                          }
                        ],
                        "src": "6937:1938:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8986:795:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8996:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9006:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9000:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9053:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9062:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9065:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9055:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9055:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9055:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "9028:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9037:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "9024:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9024:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9049:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9020:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9020:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9017:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9078:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9098:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9092:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9092:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "9082:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9151:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9160:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9163:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9153:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9153:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9153:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "9123:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9131:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9120:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9120:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9117:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9176:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9190:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "9201:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9186:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9186:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "9180:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9256:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9265:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9268:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9258:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9258:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9258:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "9235:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9239:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "9231:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9231:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "9246:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9227:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9227:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "9220:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9220:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9217:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9281:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "9297:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9291:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9291:9:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "9285:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9309:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "9385:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "9336:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9336:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "9320:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9320:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "9313:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9398:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "9411:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9402:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "9430:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9435:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9423:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9423:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9423:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9447:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "9458:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9463:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9454:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9454:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "9447:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9475:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "9490:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9494:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9486:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9486:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "9479:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9551:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9560:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9563:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9553:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9553:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9553:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "9520:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "9528:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "9531:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "9524:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "9524:10:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "9516:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9516:19:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9537:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9512:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9512:28:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "9542:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9509:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9509:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9506:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9576:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9585:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "9580:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9640:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "9661:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "9672:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "9666:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9666:10:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9654:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9654:23:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9654:23:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9690:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "9701:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "9706:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9697:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9697:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "9690:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9722:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "9733:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "9738:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9729:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9729:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "9722:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "9606:1:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9609:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9603:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9603:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "9613:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9615:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "9624:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9627:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9620:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9620:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "9615:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "9599:3:84",
                                "statements": []
                              },
                              "src": "9595:156:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9760:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "9770:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "9760:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8952:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "8963:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8975:6:84",
                            "type": ""
                          }
                        ],
                        "src": "8880:901:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9847:374:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9857:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9877:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9871:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9871:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "9861:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "9899:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9904:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9892:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9892:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9892:19:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9920:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9930:4:84",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9924:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9943:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "9954:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9959:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9950:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9950:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "9943:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9971:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9989:5:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9996:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9985:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9985:14:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "9975:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10008:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10017:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "10012:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10076:120:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10097:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "10108:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "10102:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10102:13:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10090:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10090:26:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10090:26:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10129:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10140:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10145:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10136:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10136:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "10129:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10161:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "10175:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10183:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10171:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10171:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10161:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "10038:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10041:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10035:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10035:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "10049:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10051:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "10060:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10063:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10056:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10056:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "10051:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "10031:3:84",
                                "statements": []
                              },
                              "src": "10027:169:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10205:10:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "10212:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "10205:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint256_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "9824:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "9831:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "9839:3:84",
                            "type": ""
                          }
                        ],
                        "src": "9786:435:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10286:399:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10296:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "10316:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10310:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10310:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "10300:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10338:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10343:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10331:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10331:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10331:19:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10359:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10369:4:84",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "10363:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10382:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10393:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10398:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10389:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10389:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "10382:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10410:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "10428:5:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10435:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10424:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10424:14:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "10414:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10447:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10456:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "10451:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10515:145:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10536:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10551:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "10545:5:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10545:13:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "10560:18:84",
                                              "type": "",
                                              "value": "0xffffffffffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "10541:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10541:38:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10529:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10529:51:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10529:51:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10593:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10604:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10609:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10600:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10600:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "10593:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10625:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "10639:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10647:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10635:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10635:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10625:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "10477:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10480:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10474:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10474:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "10488:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10490:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "10499:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10502:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10495:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10495:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "10490:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "10470:3:84",
                                "statements": []
                              },
                              "src": "10466:194:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10669:10:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "10676:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "10669:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint64_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "10263:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "10270:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "10278:3:84",
                            "type": ""
                          }
                        ],
                        "src": "10226:459:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10809:145:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10826:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "10839:2:84",
                                            "type": "",
                                            "value": "96"
                                          },
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "10843:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "10835:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10835:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10852:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10831:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10831:88:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10819:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10819:101:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10819:101:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10929:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10940:3:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10945:2:84",
                                    "type": "",
                                    "value": "20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10936:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10936:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "10929:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "10785:3:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10790:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "10801:3:84",
                            "type": ""
                          }
                        ],
                        "src": "10690:264:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11212:326:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11229:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11244:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11252:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11240:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11240:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11222:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11222:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11222:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11316:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11327:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11312:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11312:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11332:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11305:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11305:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11305:30:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11344:69:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11386:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11398:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11409:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11394:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11394:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "11358:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11358:55:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11348:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11433:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11444:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11429:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11429:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11453:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11461:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "11449:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11449:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11422:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11422:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11422:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11481:51:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "11517:6:84"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11525:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "11489:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11489:43:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11481:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11165:9:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "11176:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "11184:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11192:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11203:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10959:579:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11744:702:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11754:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11764:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11758:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11775:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11793:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11804:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11789:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11789:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11779:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11823:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11834:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11816:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11816:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11816:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11846:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "11857:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "11850:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11872:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11892:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11886:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11886:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "11876:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11915:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11923:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11908:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11908:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11908:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11939:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11950:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11961:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11946:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11946:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "11939:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11973:53:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11995:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "12010:1:84",
                                            "type": "",
                                            "value": "5"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "12013:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "12006:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "12006:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11991:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11991:30:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12023:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11987:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11987:39:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_2",
                                  "nodeType": "YulTypedName",
                                  "src": "11977:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12035:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12053:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12061:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12049:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12049:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "12039:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12073:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12082:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "12077:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12141:276:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "12162:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_2",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "12175:6:84"
                                                },
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "12183:9:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "sub",
                                                "nodeType": "YulIdentifier",
                                                "src": "12171:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "12171:22:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "12195:66:84",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "12167:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12167:95:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12155:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12155:108:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12155:108:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12276:61:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "12321:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "12315:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12315:13:84"
                                        },
                                        {
                                          "name": "tail_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "12330:6:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_array_uint256_dyn",
                                        "nodeType": "YulIdentifier",
                                        "src": "12286:28:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12286:51:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "tail_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "12276:6:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12350:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "12364:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "12372:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12360:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12360:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "12350:6:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12388:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "12399:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "12404:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12395:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12395:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "12388:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "12103:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "12106:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12100:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12100:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "12114:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12116:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "12125:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12128:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12121:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12121:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "12116:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "12096:3:84",
                                "statements": []
                              },
                              "src": "12092:325:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12426:14:84",
                              "value": {
                                "name": "tail_2",
                                "nodeType": "YulIdentifier",
                                "src": "12434:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12426:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__to_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11713:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11724:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11735:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11543:903:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12602:110:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12619:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12630:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12612:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12612:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12612:21:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12642:64:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12679:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12691:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12702:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12687:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12687:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint256_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "12650:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12650:56:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12642:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12571:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12582:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12593:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12451:261:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12914:652:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12931:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12942:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12924:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12924:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12924:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12954:70:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12997:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13009:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13020:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13005:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13005:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint256_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "12968:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12968:56:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12958:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13033:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13043:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13037:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13065:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13076:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13061:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13061:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13085:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13093:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "13081:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13081:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13054:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13054:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13054:50:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13113:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13133:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "13127:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13127:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "13117:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13156:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "13164:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13149:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13149:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13149:22:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13180:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13189:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "13184:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13249:87:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13278:6:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13286:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "13274:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "13274:14:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "13290:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "13270:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "13270:23:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value1",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "13309:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "13317:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "13305:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "13305:14:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13321:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "13301:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "13301:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "13295:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "13295:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13263:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13263:63:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13263:63:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "13210:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "13213:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13207:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13207:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "13221:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "13223:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "13232:1:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "13235:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "13228:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13228:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "13223:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "13203:3:84",
                                "statements": []
                              },
                              "src": "13199:137:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13370:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13399:6:84"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13407:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "13395:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "13395:19:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "13416:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "13391:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "13391:28:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13421:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13384:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13384:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13384:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "13351:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "13354:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13348:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13348:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13345:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13442:118:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13458:6:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "13474:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "13482:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "13470:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "13470:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13487:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "13466:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13466:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13454:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13454:101:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13557:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13450:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13450:110:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13442:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12875:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "12886:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12894:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12905:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12717:849:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13730:534:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13740:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13750:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13744:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13761:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13779:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13790:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13775:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13775:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13765:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13809:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13820:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13802:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13802:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13802:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13832:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "13843:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "13836:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13865:6:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13873:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13858:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13858:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13858:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13889:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13900:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13911:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13896:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13896:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "13889:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13923:20:84",
                              "value": {
                                "name": "value0",
                                "nodeType": "YulIdentifier",
                                "src": "13937:6:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "13927:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13952:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13961:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "13956:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14020:218:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14034:33:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14060:6:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "14047:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14047:20:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "14038:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "14104:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "14080:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14080:30:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14080:30:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14130:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "14139:5:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "14146:10:84",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "14135:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14135:22:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14123:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14123:35:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14123:35:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14171:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14182:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14187:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14178:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14178:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "14171:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14203:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14217:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14225:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14213:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14213:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "14203:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "13982:1:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13985:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13979:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13979:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "13993:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "13995:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14004:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14007:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14000:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14000:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "13995:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "13975:3:84",
                                "statements": []
                              },
                              "src": "13971:267:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14247:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "14255:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14247:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint32_$dyn_calldata_ptr__to_t_array$_t_uint32_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13691:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "13702:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "13710:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13721:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13571:693:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14494:234:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14511:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14522:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14504:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14504:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14504:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14534:69:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14576:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14588:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14599:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14584:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14584:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "14548:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14548:55:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "14538:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14623:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14634:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14619:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14619:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "14643:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14651:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "14639:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14639:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14612:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14612:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14612:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14671:51:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14707:6:84"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14715:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "14679:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14679:43:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14671:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14455:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "14466:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14474:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14485:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14269:459:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14860:144:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "14870:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14882:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14893:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14878:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14878:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14870:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14912:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14923:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14905:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14905:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14905:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14950:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14961:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14946:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14946:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "14970:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14978:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "14966:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14966:31:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14939:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14939:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14939:59:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14821:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "14832:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14840:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14851:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14733:271:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15131:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15141:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15153:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15164:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15149:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15149:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15141:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15183:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15198:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15206:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15194:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15194:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15176:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15176:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15176:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15100:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15111:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15122:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15009:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15396:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15406:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15418:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15429:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15414:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15414:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15406:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15448:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15463:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15471:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15459:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15459:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15441:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15441:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15441:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeDistributionSource_$11503__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15365:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15376:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15387:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15261:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15644:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15654:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15666:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15677:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15662:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15662:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15654:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15696:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15711:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15719:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15707:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15707:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15689:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15689:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15689:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15613:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15624:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15635:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15526:243:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15948:171:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15965:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15976:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15958:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15958:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15958:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15999:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16010:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15995:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15995:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16015:2:84",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15988:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15988:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15988:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16038:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16049:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16034:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16034:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f647261772d65787069726564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16054:23:84",
                                    "type": "",
                                    "value": "DrawCalc/draw-expired"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16027:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16027:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16027:51:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16087:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16099:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16110:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16095:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16095:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16087:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15925:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15939:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15774:345:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16298:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16315:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16326:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16308:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16308:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16308:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16349:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16360:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16345:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16345:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16365:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16338:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16338:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16338:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16388:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16399:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16384:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16384:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16404:34:84",
                                    "type": "",
                                    "value": "DrawCalc/invalid-pick-indices-le"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16377:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16377:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16377:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16459:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16470:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16455:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16455:18:84"
                                  },
                                  {
                                    "hexValue": "6e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16475:6:84",
                                    "type": "",
                                    "value": "ngth"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16448:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16448:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16448:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16491:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16503:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16514:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16499:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16499:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16491:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16275:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16289:4:84",
                            "type": ""
                          }
                        ],
                        "src": "16124:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16703:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16720:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16731:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16713:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16713:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16713:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16754:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16765:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16750:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16750:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16770:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16743:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16743:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16743:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16793:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16804:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16789:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16789:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f657863656564732d6d61782d757365722d7069636b73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16809:33:84",
                                    "type": "",
                                    "value": "DrawCalc/exceeds-max-user-picks"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16782:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16782:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16782:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16852:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16864:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16875:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16860:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16860:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16852:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16680:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16694:4:84",
                            "type": ""
                          }
                        ],
                        "src": "16529:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17063:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17080:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17091:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17073:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17073:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17073:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17114:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17125:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17110:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17110:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17130:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17103:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17103:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17103:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17153:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17164:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17149:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17149:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7069636b732d617363656e64696e67",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17169:26:84",
                                    "type": "",
                                    "value": "DrawCalc/picks-ascending"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17142:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17142:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17142:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17205:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17217:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17228:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17213:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17213:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17205:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17040:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17054:4:84",
                            "type": ""
                          }
                        ],
                        "src": "16889:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17416:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17433:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17444:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17426:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17426:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17426:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17467:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17478:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17463:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17463:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17483:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17456:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17456:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17456:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17506:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17517:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17502:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17502:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e73756666696369656e742d757365722d7069636b73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17522:34:84",
                                    "type": "",
                                    "value": "DrawCalc/insufficient-user-picks"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17495:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17495:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17495:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17566:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17578:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17589:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17574:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17574:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17566:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17393:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17407:4:84",
                            "type": ""
                          }
                        ],
                        "src": "17242:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17700:87:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "17710:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17722:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17733:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17718:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17718:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17710:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17752:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "17767:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17775:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "17763:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17763:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17745:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17745:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17745:36:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17669:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "17680:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17691:4:84",
                            "type": ""
                          }
                        ],
                        "src": "17603:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17838:207:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "17848:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17864:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "17858:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17858:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "17848:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17876:35:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "17898:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17906:4:84",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17894:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17894:17:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "17880:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "17986:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "17988:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17988:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17988:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "17929:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17941:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "17926:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17926:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "17965:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "17977:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "17962:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17962:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "17923:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17923:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "17920:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18024:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18028:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18017:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18017:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18017:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory_4542",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "17827:6:84",
                            "type": ""
                          }
                        ],
                        "src": "17792:253:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18096:209:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "18106:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18122:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18116:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18116:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "18106:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18134:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18156:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18164:6:84",
                                    "type": "",
                                    "value": "0x0120"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18152:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18152:19:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "18138:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18246:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "18248:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18248:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18248:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18189:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18201:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18186:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18186:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18225:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18237:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18222:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18222:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "18183:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18183:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "18180:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18284:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18288:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18277:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18277:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18277:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory_4543",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "18085:6:84",
                            "type": ""
                          }
                        ],
                        "src": "18050:255:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18355:289:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "18365:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18381:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18375:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18375:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "18365:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18393:117:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18415:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "18431:4:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18437:2:84",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "18427:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18427:13:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18442:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "18423:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18423:86:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18411:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18411:99:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "18397:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18585:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "18587:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18587:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18587:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18528:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18540:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18525:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18525:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18564:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18576:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18561:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18561:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "18522:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18522:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "18519:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18623:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18627:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18616:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18616:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18616:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "18335:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "18344:6:84",
                            "type": ""
                          }
                        ],
                        "src": "18310:334:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18727:114:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18771:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "18773:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18773:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18773:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "18743:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18751:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "18740:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18740:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "18737:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18802:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18818:1:84",
                                        "type": "",
                                        "value": "5"
                                      },
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "18821:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "18814:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18814:14:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18830:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18810:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18810:25:84"
                              },
                              "variableNames": [
                                {
                                  "name": "size",
                                  "nodeType": "YulIdentifier",
                                  "src": "18802:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "18707:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "18718:4:84",
                            "type": ""
                          }
                        ],
                        "src": "18649:192:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18894:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18921:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "18923:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18923:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18923:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "18910:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "18917:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "18913:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18913:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "18907:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18907:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "18904:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18952:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "18963:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "18966:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18959:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18959:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "18952:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "18877:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "18880:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "18886:3:84",
                            "type": ""
                          }
                        ],
                        "src": "18846:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19026:189:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19036:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "19046:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19040:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19073:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "19088:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19091:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19084:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19084:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19077:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19103:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19118:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19121:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19114:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19114:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19107:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19158:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "19160:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19160:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19160:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19139:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19148:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19152:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "19144:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19144:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "19136:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19136:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "19133:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19189:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19200:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19205:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19196:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19196:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "19189:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "19009:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "19012:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "19018:3:84",
                            "type": ""
                          }
                        ],
                        "src": "18979:236:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19266:158:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19276:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "19291:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19294:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19287:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19287:12:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19280:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19308:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19323:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19326:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19319:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19319:12:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19312:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19367:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "19369:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19369:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19369:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19346:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19355:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19361:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "19351:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19351:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "19343:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19343:23:84"
                              },
                              "nodeType": "YulIf",
                              "src": "19340:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19398:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19409:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19414:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19405:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19405:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "19398:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "19249:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "19252:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "19258:3:84",
                            "type": ""
                          }
                        ],
                        "src": "19220:204:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19475:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19506:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19527:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19530:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "19520:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19520:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19520:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19628:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19631:4:84",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "19621:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19621:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19621:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19656:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19659:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "19649:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19649:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19649:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19495:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "19488:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19488:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "19485:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19683:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "19692:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19695:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "19688:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19688:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "19683:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "19460:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "19463:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "19469:1:84",
                            "type": ""
                          }
                        ],
                        "src": "19429:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19772:418:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19782:16:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "19797:1:84",
                                "type": "",
                                "value": "1"
                              },
                              "variables": [
                                {
                                  "name": "power_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19786:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19807:16:84",
                              "value": {
                                "name": "power_1",
                                "nodeType": "YulIdentifier",
                                "src": "19816:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "19807:5:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19832:13:84",
                              "value": {
                                "name": "_base",
                                "nodeType": "YulIdentifier",
                                "src": "19840:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "base",
                                  "nodeType": "YulIdentifier",
                                  "src": "19832:4:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19896:288:84",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "20001:22:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [],
                                            "functionName": {
                                              "name": "panic_error_0x11",
                                              "nodeType": "YulIdentifier",
                                              "src": "20003:16:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "20003:18:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "20003:18:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "19916:4:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "19926:66:84",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                            },
                                            {
                                              "name": "base",
                                              "nodeType": "YulIdentifier",
                                              "src": "19994:4:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "div",
                                            "nodeType": "YulIdentifier",
                                            "src": "19922:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "19922:77:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "19913:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19913:87:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "19910:2:84"
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "20062:29:84",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "20064:25:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "power",
                                                "nodeType": "YulIdentifier",
                                                "src": "20077:5:84"
                                              },
                                              {
                                                "name": "base",
                                                "nodeType": "YulIdentifier",
                                                "src": "20084:4:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "20073:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "20073:16:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "power",
                                              "nodeType": "YulIdentifier",
                                              "src": "20064:5:84"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "20043:8:84"
                                        },
                                        {
                                          "name": "power_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "20053:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "20039:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20039:22:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "20036:2:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20104:23:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "20116:4:84"
                                        },
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "20122:4:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mul",
                                        "nodeType": "YulIdentifier",
                                        "src": "20112:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20112:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "base",
                                        "nodeType": "YulIdentifier",
                                        "src": "20104:4:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20140:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "power_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "20156:7:84"
                                        },
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "20165:8:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "shr",
                                        "nodeType": "YulIdentifier",
                                        "src": "20152:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20152:22:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "exponent",
                                        "nodeType": "YulIdentifier",
                                        "src": "20140:8:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "19865:8:84"
                                  },
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19875:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "19862:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19862:21:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "19884:3:84",
                                "statements": []
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "19858:3:84",
                                "statements": []
                              },
                              "src": "19854:330:84"
                            }
                          ]
                        },
                        "name": "checked_exp_helper",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "_base",
                            "nodeType": "YulTypedName",
                            "src": "19736:5:84",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "19743:8:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "19756:5:84",
                            "type": ""
                          },
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "19763:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19708:482:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20263:72:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20273:56:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "20303:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "exponent",
                                        "nodeType": "YulIdentifier",
                                        "src": "20313:8:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20323:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20309:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20309:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "checked_exp_unsigned",
                                  "nodeType": "YulIdentifier",
                                  "src": "20282:20:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20282:47:84"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "20273:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_exp_t_uint256_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "20234:4:84",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "20240:8:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "20253:5:84",
                            "type": ""
                          }
                        ],
                        "src": "20195:140:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20399:807:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20437:52:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20451:10:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "20460:1:84",
                                      "type": "",
                                      "value": "1"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "20451:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "20474:5:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "20419:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "20412:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20412:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "20409:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20522:52:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20536:10:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "20545:1:84",
                                      "type": "",
                                      "value": "0"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "20536:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "20559:5:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "20508:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "20501:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20501:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "20498:2:84"
                            },
                            {
                              "cases": [
                                {
                                  "body": {
                                    "nodeType": "YulBlock",
                                    "src": "20610:52:84",
                                    "statements": [
                                      {
                                        "nodeType": "YulAssignment",
                                        "src": "20624:10:84",
                                        "value": {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "20633:1:84",
                                          "type": "",
                                          "value": "1"
                                        },
                                        "variableNames": [
                                          {
                                            "name": "power",
                                            "nodeType": "YulIdentifier",
                                            "src": "20624:5:84"
                                          }
                                        ]
                                      },
                                      {
                                        "nodeType": "YulLeave",
                                        "src": "20647:5:84"
                                      }
                                    ]
                                  },
                                  "nodeType": "YulCase",
                                  "src": "20603:59:84",
                                  "value": {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20608:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                },
                                {
                                  "body": {
                                    "nodeType": "YulBlock",
                                    "src": "20678:123:84",
                                    "statements": [
                                      {
                                        "body": {
                                          "nodeType": "YulBlock",
                                          "src": "20713:22:84",
                                          "statements": [
                                            {
                                              "expression": {
                                                "arguments": [],
                                                "functionName": {
                                                  "name": "panic_error_0x11",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "20715:16:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "20715:18:84"
                                              },
                                              "nodeType": "YulExpressionStatement",
                                              "src": "20715:18:84"
                                            }
                                          ]
                                        },
                                        "condition": {
                                          "arguments": [
                                            {
                                              "name": "exponent",
                                              "nodeType": "YulIdentifier",
                                              "src": "20698:8:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "20708:3:84",
                                              "type": "",
                                              "value": "255"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "gt",
                                            "nodeType": "YulIdentifier",
                                            "src": "20695:2:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "20695:17:84"
                                        },
                                        "nodeType": "YulIf",
                                        "src": "20692:2:84"
                                      },
                                      {
                                        "nodeType": "YulAssignment",
                                        "src": "20748:25:84",
                                        "value": {
                                          "arguments": [
                                            {
                                              "name": "exponent",
                                              "nodeType": "YulIdentifier",
                                              "src": "20761:8:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "20771:1:84",
                                              "type": "",
                                              "value": "1"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "20757:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "20757:16:84"
                                        },
                                        "variableNames": [
                                          {
                                            "name": "power",
                                            "nodeType": "YulIdentifier",
                                            "src": "20748:5:84"
                                          }
                                        ]
                                      },
                                      {
                                        "nodeType": "YulLeave",
                                        "src": "20786:5:84"
                                      }
                                    ]
                                  },
                                  "nodeType": "YulCase",
                                  "src": "20671:130:84",
                                  "value": {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20676:1:84",
                                    "type": "",
                                    "value": "2"
                                  }
                                }
                              ],
                              "expression": {
                                "name": "base",
                                "nodeType": "YulIdentifier",
                                "src": "20590:4:84"
                              },
                              "nodeType": "YulSwitch",
                              "src": "20583:218:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20899:70:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20913:28:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "20926:4:84"
                                        },
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "20932:8:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "exp",
                                        "nodeType": "YulIdentifier",
                                        "src": "20922:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20922:19:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "20913:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "20954:5:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "base",
                                            "nodeType": "YulIdentifier",
                                            "src": "20823:4:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20829:2:84",
                                            "type": "",
                                            "value": "11"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20820:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20820:12:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "exponent",
                                            "nodeType": "YulIdentifier",
                                            "src": "20837:8:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20847:2:84",
                                            "type": "",
                                            "value": "78"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20834:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20834:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20816:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20816:35:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "base",
                                            "nodeType": "YulIdentifier",
                                            "src": "20860:4:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20866:3:84",
                                            "type": "",
                                            "value": "307"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20857:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20857:13:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "exponent",
                                            "nodeType": "YulIdentifier",
                                            "src": "20875:8:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20885:2:84",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20872:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20872:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20853:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20853:36:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "20813:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20813:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "20810:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20978:57:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "21020:4:84"
                                  },
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "21026:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "checked_exp_helper",
                                  "nodeType": "YulIdentifier",
                                  "src": "21001:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21001:34:84"
                              },
                              "variables": [
                                {
                                  "name": "power_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20982:7:84",
                                  "type": ""
                                },
                                {
                                  "name": "base_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20991:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21140:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21142:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21142:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21142:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21050:7:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21063:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      },
                                      {
                                        "name": "base_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21131:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "div",
                                      "nodeType": "YulIdentifier",
                                      "src": "21059:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21059:79:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21047:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21047:92:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21044:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21171:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21184:7:84"
                                  },
                                  {
                                    "name": "base_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21193:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "21180:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21180:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "21171:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_exp_unsigned",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "20370:4:84",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "20376:8:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "20389:5:84",
                            "type": ""
                          }
                        ],
                        "src": "20340:866:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21263:176:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21382:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21384:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21384:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21384:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "21294:1:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "21287:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "21287:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "21280:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21280:17:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "21302:1:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "21309:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          },
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "21377:1:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "21305:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "21305:74:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "21299:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21299:81:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21276:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21276:105:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21273:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21413:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21428:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21431:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "21424:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21424:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "21413:7:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21242:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21245:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "21251:7:84",
                            "type": ""
                          }
                        ],
                        "src": "21211:228:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21493:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21515:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21517:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21517:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21517:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21509:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21512:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21506:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21506:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21503:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21546:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21558:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21561:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "21554:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21554:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "21546:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21475:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21478:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "21484:4:84",
                            "type": ""
                          }
                        ],
                        "src": "21444:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21622:173:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21632:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21642:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21636:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21661:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21676:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21679:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21672:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21672:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21665:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21691:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21706:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21709:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21702:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21702:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21695:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21737:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21739:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21739:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21739:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21727:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21732:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21724:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21724:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21721:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21768:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21780:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21785:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "21776:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21776:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "21768:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21604:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21607:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "21613:4:84",
                            "type": ""
                          }
                        ],
                        "src": "21574:221:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21847:148:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21857:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21872:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21875:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21868:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21868:12:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21861:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21889:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21904:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21907:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21900:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21900:12:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21893:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21937:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21939:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21939:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21939:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21927:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21932:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21924:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21924:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21921:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21968:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21980:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21985:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "21976:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21976:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "21968:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21829:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21832:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "21838:4:84",
                            "type": ""
                          }
                        ],
                        "src": "21800:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22047:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22138:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22140:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22140:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22140:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22063:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22070:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "22060:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22060:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22057:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22169:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22180:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22187:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22176:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22176:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "22169:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "22029:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "22039:3:84",
                            "type": ""
                          }
                        ],
                        "src": "22000:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22246:155:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22256:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "22266:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22260:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22285:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22304:5:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22311:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22300:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22300:14:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22289:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22342:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22344:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22344:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22344:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22329:7:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22338:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "22326:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22326:15:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22323:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22373:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22384:7:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22393:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22380:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22380:15:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "22373:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "22228:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "22238:3:84",
                            "type": ""
                          }
                        ],
                        "src": "22200:201:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22451:130:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22461:31:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22480:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22487:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22476:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22476:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22465:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22522:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22524:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22524:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22524:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22507:7:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22516:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "22504:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22504:17:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22501:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22553:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22564:7:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22573:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22560:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22560:15:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "22553:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "22433:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "22443:3:84",
                            "type": ""
                          }
                        ],
                        "src": "22406:175:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22618:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22635:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22638:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22628:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22628:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22628:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22732:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22735:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22725:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22725:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22725:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22756:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22759:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "22749:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22749:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22749:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "22586:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22807:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22824:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22827:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22817:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22817:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22817:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22921:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22924:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22914:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22914:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22914:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22945:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22948:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "22938:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22938:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22938:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "22775:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22996:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23013:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23016:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23006:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23006:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23006:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23110:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23113:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23103:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23103:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23103:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23134:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23137:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "23127:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23127:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23127:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "22964:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23197:77:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23252:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23261:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23264:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "23254:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23254:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23254:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "23220:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "23231:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "23238:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "23227:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "23227:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "23217:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23217:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "23210:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23210:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23207:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "23186:5:84",
                            "type": ""
                          }
                        ],
                        "src": "23153:121:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23323:85:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23386:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23395:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23398:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "23388:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23388:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23388:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "23346:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "23357:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "23364:18:84",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "23353:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "23353:30:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "23343:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23343:41:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "23336:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23336:49:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23333:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "23312:5:84",
                            "type": ""
                          }
                        ],
                        "src": "23279:129:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_array_uint32_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let memPtr := mload(64)\n        let _1 := 512\n        let newFreePtr := add(memPtr, _1)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        let dst := memPtr\n        let src := offset\n        if gt(add(offset, _1), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            let value := mload(src)\n            validator_revert_uint32(value)\n            mstore(dst, value)\n            let _2 := 0x20\n            dst := add(dst, _2)\n            src := add(src, _2)\n        }\n        array := memPtr\n    }\n    function abi_decode_array_uint32_dyn_calldata(offset, end) -> arrayPos, length\n    {\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(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_uint104_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint32_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint32(value)\n    }\n    function abi_decode_uint8_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint32_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint32_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        let offset_1 := calldataload(add(headStart, 64))\n        if gt(offset_1, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset_1)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, length), 32), dataEnd) { revert(0, 0) }\n        value3 := add(_2, 32)\n        value4 := length\n    }\n    function abi_decode_tuple_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _2 := 0xffffffffffffffff\n        if gt(offset, _2) { revert(0, 0) }\n        let _3 := add(headStart, offset)\n        if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(0, 0) }\n        let _4 := calldataload(_3)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_4))\n        let dst_1 := dst\n        mstore(dst, _4)\n        dst := add(dst, _1)\n        let src := add(_3, _1)\n        if gt(add(add(_3, shl(5, _4)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _4) { i := add(i, 1) }\n        {\n            let innerOffset := calldataload(src)\n            if gt(innerOffset, _2) { revert(0, 0) }\n            let _5 := add(_3, innerOffset)\n            if iszero(slt(add(_5, 63), dataEnd)) { revert(0, 0) }\n            let _6 := calldataload(add(_5, _1))\n            let dst_2 := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_6))\n            let dst_3 := dst_2\n            mstore(dst_2, _6)\n            dst_2 := add(dst_2, _1)\n            let src_1 := add(_5, 64)\n            if gt(add(add(_5, shl(5, _6)), 64), dataEnd) { revert(0, 0) }\n            let i_1 := 0\n            for { } lt(i_1, _6) { i_1 := add(i_1, 1) }\n            {\n                let value := calldataload(src_1)\n                validator_revert_uint64(value)\n                mstore(dst_2, value)\n                dst_2 := add(dst_2, _1)\n                src_1 := add(src_1, _1)\n            }\n            mstore(dst, dst_3)\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        let _4 := 0xa0\n        if gt(add(add(_2, mul(_3, _4)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        let i_1 := i\n        for { } lt(i_1, _3) { i_1 := add(i_1, 1) }\n        {\n            if slt(sub(dataEnd, src), _4) { revert(i, i) }\n            let value := allocate_memory_4542()\n            mstore(value, mload(src))\n            let value_1 := mload(add(src, _1))\n            validator_revert_uint32(value_1)\n            mstore(add(value, _1), value_1)\n            let _5 := 64\n            let value_2 := mload(add(src, _5))\n            validator_revert_uint64(value_2)\n            mstore(add(value, _5), value_2)\n            let _6 := 96\n            let value_3 := mload(add(src, _6))\n            validator_revert_uint64(value_3)\n            mstore(add(value, _6), value_3)\n            let _7 := 128\n            let value_4 := mload(add(src, _7))\n            validator_revert_uint32(value_4)\n            mstore(add(value, _7), value_4)\n            mstore(dst, value)\n            dst := add(dst, _1)\n            src := add(src, _4)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        let _4 := 0x0300\n        if gt(add(add(_2, mul(_3, _4)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        let i_1 := i\n        for { } lt(i_1, _3) { i_1 := add(i_1, 1) }\n        {\n            if slt(sub(dataEnd, src), _4) { revert(i, i) }\n            let value := allocate_memory_4543()\n            mstore(value, abi_decode_uint8_fromMemory(src))\n            mstore(add(value, _1), abi_decode_uint8_fromMemory(add(src, _1)))\n            let _5 := 64\n            mstore(add(value, _5), abi_decode_uint32_fromMemory(add(src, _5)))\n            let _6 := 96\n            mstore(add(value, _6), abi_decode_uint32_fromMemory(add(src, _6)))\n            let _7 := 128\n            mstore(add(value, _7), abi_decode_uint32_fromMemory(add(src, _7)))\n            let _8 := 160\n            mstore(add(value, _8), abi_decode_uint32_fromMemory(add(src, _8)))\n            let _9 := 192\n            mstore(add(value, _9), abi_decode_uint104_fromMemory(add(src, _9)))\n            let _10 := 224\n            mstore(add(value, _10), abi_decode_array_uint32_fromMemory(add(src, _10), dataEnd))\n            mstore(add(value, 0x0100), mload(add(src, 736)))\n            mstore(dst, value)\n            dst := add(dst, _1)\n            src := add(src, _4)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        if gt(add(add(_2, shl(5, _3)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _3) { i := add(i, 1) }\n        {\n            mstore(dst, mload(src))\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value0 := dst_1\n    }\n    function abi_encode_array_uint256_dyn(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let _1 := 0x20\n        pos := add(pos, _1)\n        let srcPtr := add(value, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        end := pos\n    }\n    function abi_encode_array_uint64_dyn(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let _1 := 0x20\n        pos := add(pos, _1)\n        let srcPtr := add(value, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), 0xffffffffffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        end := pos\n    }\n    function abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        mstore(pos, and(shl(96, value0), 0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000))\n        end := add(pos, 20)\n    }\n    function abi_encode_tuple_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), 96)\n        let tail_1 := abi_encode_array_uint64_dyn(value1, add(headStart, 96))\n        mstore(add(headStart, 64), sub(tail_1, headStart))\n        tail := abi_encode_array_uint64_dyn(value2, tail_1)\n    }\n    function abi_encode_tuple_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__to_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let tail_2 := add(add(headStart, shl(5, length)), 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0))\n            tail_2 := abi_encode_array_uint256_dyn(mload(srcPtr), tail_2)\n            srcPtr := add(srcPtr, _1)\n            pos := add(pos, _1)\n        }\n        tail := tail_2\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_array_uint256_dyn(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_uint256_dyn(value0, add(headStart, 64))\n        let _1 := 32\n        mstore(add(headStart, _1), sub(tail_1, headStart))\n        let length := mload(value1)\n        mstore(tail_1, length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(tail_1, i), _1), mload(add(add(value1, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(tail_1, length), _1), 0)\n        }\n        tail := add(add(tail_1, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), _1)\n    }\n    function abi_encode_tuple_t_array$_t_uint32_$dyn_calldata_ptr__to_t_array$_t_uint32_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        mstore(tail_1, value1)\n        pos := add(headStart, 64)\n        let srcPtr := value0\n        let i := 0\n        for { } lt(i, value1) { i := add(i, 1) }\n        {\n            let value := calldataload(srcPtr)\n            validator_revert_uint32(value)\n            mstore(pos, and(value, 0xffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_uint64_dyn(value0, add(headStart, 64))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_array_uint64_dyn(value1, tail_1)\n    }\n    function abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IPrizeDistributionSource_$11503__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"DrawCalc/draw-expired\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"DrawCalc/invalid-pick-indices-le\")\n        mstore(add(headStart, 96), \"ngth\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"DrawCalc/exceeds-max-user-picks\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"DrawCalc/picks-ascending\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"DrawCalc/insufficient-user-picks\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function allocate_memory_4542() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xa0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory_4543() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0120)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function array_allocation_size_array_array_uint64_dyn_dyn(length) -> size\n    {\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        size := add(shl(5, length), 0x20)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint64(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint8(x, y) -> sum\n    {\n        let x_1 := and(x, 0xff)\n        let y_1 := and(y, 0xff)\n        if gt(x_1, sub(0xff, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function checked_exp_helper(_base, exponent) -> power, base\n    {\n        let power_1 := 1\n        power := power_1\n        base := _base\n        for { } gt(exponent, power_1) { }\n        {\n            if gt(base, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, base)) { panic_error_0x11() }\n            if and(exponent, power_1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(power_1, exponent)\n        }\n    }\n    function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, and(exponent, 0xff))\n    }\n    function checked_exp_unsigned(base, exponent) -> power\n    {\n        if iszero(exponent)\n        {\n            power := 1\n            leave\n        }\n        if iszero(base)\n        {\n            power := 0\n            leave\n        }\n        switch base\n        case 1 {\n            power := 1\n            leave\n        }\n        case 2 {\n            if gt(exponent, 255) { panic_error_0x11() }\n            power := shl(exponent, 1)\n            leave\n        }\n        if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n        {\n            power := exp(base, exponent)\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent)\n        if gt(power_1, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n        product := mul(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function checked_sub_t_uint8(x, y) -> diff\n    {\n        let x_1 := and(x, 0xff)\n        let y_1 := and(y, 0xff)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function increment_t_uint32(value) -> ret\n    {\n        let _1 := 0xffffffff\n        let value_1 := and(value, _1)\n        if eq(value_1, _1) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function increment_t_uint8(value) -> ret\n    {\n        let value_1 := and(value, 0xff)\n        if eq(value_1, 0xff) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint64(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "7580": [
                  {
                    "length": 32,
                    "start": 143
                  },
                  {
                    "length": 32,
                    "start": 403
                  },
                  {
                    "length": 32,
                    "start": 469
                  },
                  {
                    "length": 32,
                    "start": 1052
                  }
                ],
                "7584": [
                  {
                    "length": 32,
                    "start": 222
                  },
                  {
                    "length": 32,
                    "start": 2009
                  },
                  {
                    "length": 32,
                    "start": 2156
                  }
                ],
                "7588": [
                  {
                    "length": 32,
                    "start": 258
                  },
                  {
                    "length": 32,
                    "start": 364
                  },
                  {
                    "length": 32,
                    "start": 648
                  },
                  {
                    "length": 32,
                    "start": 1197
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100885760003560e01c8063aaca392e1161005b578063aaca392e14610146578063bcc18abc14610167578063ce343bb61461018e578063f8d0ca4c146101b557600080fd5b80634019f2d61461008d5780636cc25db7146100d9578063740e61a3146101005780638045fbcf14610126575b600080fd5b7f00000000000000000000000000000000000000000000000000000000000000005b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6100af7f000000000000000000000000000000000000000000000000000000000000000081565b7f00000000000000000000000000000000000000000000000000000000000000006100af565b6101396101343660046114db565b6101cf565b6040516100d09190611af8565b61015961015436600461152e565b61034e565b6040516100d0929190611b0b565b6100af7f000000000000000000000000000000000000000000000000000000000000000081565b6100af7f000000000000000000000000000000000000000000000000000000000000000081565b6101bd601081565b60405160ff90911681526020016100d0565b606060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0bb78f385856040518363ffffffff1660e01b815260040161022e929190611b70565b60006040518083038186803b15801561024657600080fd5b505afa15801561025a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261028291908101906116f9565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf86866040518363ffffffff1660e01b81526004016102e1929190611b70565b60006040518083038186803b1580156102f957600080fd5b505afa15801561030d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261033591908101906117f4565b90506103428683836105d9565b925050505b9392505050565b606080600061035f848601866115d9565b805190915086146103dc5760405162461bcd60e51b8152602060048201526024808201527f4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c6560448201527f6e6774680000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6040517fd0bb78f300000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063d0bb78f390610453908b908b90600401611b70565b60006040518083038186803b15801561046b57600080fd5b505afa15801561047f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104a791908101906116f9565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf8a8a6040518363ffffffff1660e01b8152600401610506929190611b70565b60006040518083038186803b15801561051e57600080fd5b505afa158015610532573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261055a91908101906117f4565b905060006105698b84846105d9565b6040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608e901b1660208201529091506000906034016040516020818303038152906040528051906020012090506105c68282868887610a44565b9650965050505050509550959350505050565b815160609060008167ffffffffffffffff8111156105f9576105f9611f04565b604051908082528060200260200182016040528015610622578160200160208202803683370190505b50905060008267ffffffffffffffff81111561064057610640611f04565b604051908082528060200260200182016040528015610669578160200160208202803683370190505b50905060005b838163ffffffff16101561079857858163ffffffff168151811061069557610695611eee565b60200260200101516040015163ffffffff16878263ffffffff16815181106106bf576106bf611eee565b60200260200101516040015103838263ffffffff16815181106106e4576106e4611eee565b602002602001019067ffffffffffffffff16908167ffffffffffffffff1681525050858163ffffffff168151811061071e5761071e611eee565b60200260200101516060015163ffffffff16878263ffffffff168151811061074857610748611eee565b60200260200101516040015103828263ffffffff168151811061076d5761076d611eee565b67ffffffffffffffff909216602092830291909101909101528061079081611e94565b91505061066f565b506040517f68c7fd5700000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906368c7fd5790610812908b9087908790600401611a2d565b60006040518083038186803b15801561082a57600080fd5b505afa15801561083e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526108669190810190611920565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638e6d536a85856040518363ffffffff1660e01b81526004016108c5929190611bbb565b60006040518083038186803b1580156108dd57600080fd5b505afa1580156108f1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109199190810190611920565b905060008567ffffffffffffffff81111561093657610936611f04565b60405190808252806020026020018201604052801561095f578160200160208202803683370190505b50905060005b86811015610a365782818151811061097f5761097f611eee565b6020026020010151600014156109b45760008282815181106109a3576109a3611eee565b602002602001018181525050610a24565b8281815181106109c6576109c6611eee565b60200260200101518482815181106109e0576109e0611eee565b6020026020010151670de0b6b3a76400006109fb9190611dfb565b610a059190611ceb565b828281518110610a1757610a17611eee565b6020026020010181815250505b80610a2e81611e79565b915050610965565b509998505050505050505050565b6060806000875167ffffffffffffffff811115610a6357610a63611f04565b604051908082528060200260200182016040528015610a8c578160200160208202803683370190505b5090506000885167ffffffffffffffff811115610aab57610aab611f04565b604051908082528060200260200182016040528015610ade57816020015b6060815260200190600190039081610ac95790505b5090504260005b88518163ffffffff161015610ccb57868163ffffffff1681518110610b0c57610b0c611eee565b602002602001015160a0015163ffffffff16898263ffffffff1681518110610b3657610b36611eee565b602002602001015160400151610b4c9190611c9a565b67ffffffffffffffff168267ffffffffffffffff1610610bae5760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d65787069726564000000000000000000000060448201526064016103d3565b6000610bf8888363ffffffff1681518110610bcb57610bcb611eee565b60200260200101518d8463ffffffff1681518110610beb57610beb611eee565b6020026020010151610cfe565b9050610c728a8363ffffffff1681518110610c1557610c15611eee565b6020026020010151600001518267ffffffffffffffff168d8c8663ffffffff1681518110610c4557610c45611eee565b60200260200101518c8763ffffffff1681518110610c6557610c65611eee565b6020026020010151610d3b565b868463ffffffff1681518110610c8a57610c8a611eee565b60200260200101868563ffffffff1681518110610ca957610ca9611eee565b6020908102919091010191909152525080610cc381611e94565b915050610ae5565b5081604051602001610cdd9190611a78565b60405160208183030381529060405293508294505050509550959350505050565b6000670de0b6b3a76400008360c001516cffffffffffffffffffffffffff1683610d289190611dfb565b610d329190611ceb565b90505b92915050565b600060606000610d4a846110c0565b85516040805160108082526102208201909252929350909160009160208201610200803683370190505090506000866080015163ffffffff168363ffffffff161115610dd85760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f657863656564732d6d61782d757365722d7069636b730060448201526064016103d3565b60005b8363ffffffff168163ffffffff161015610ff0578a898263ffffffff1681518110610e0857610e08611eee565b602002602001015167ffffffffffffffff1610610e675760405162461bcd60e51b815260206004820181905260248201527f4472617743616c632f696e73756666696369656e742d757365722d7069636b7360448201526064016103d3565b63ffffffff811615610f1e5788610e7f600183611e31565b63ffffffff1681518110610e9557610e95611eee565b602002602001015167ffffffffffffffff16898263ffffffff1681518110610ebf57610ebf611eee565b602002602001015167ffffffffffffffff1611610f1e5760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7069636b732d617363656e64696e67000000000000000060448201526064016103d3565b60008a8a8363ffffffff1681518110610f3957610f39611eee565b6020026020010151604051602001610f6592919091825267ffffffffffffffff16602082015260400190565b6040516020818303038152906040528051906020012060001c90506000610f8d828f896111c5565b9050601060ff82161015610fdb578360ff168160ff161115610fad578093505b848160ff1681518110610fc257610fc2611eee565b602002602001018051809190610fd790611e79565b9052505b50508080610fe890611e94565b915050610ddb565b50600080610ffe8984611264565b905060005b8360ff16811161108c57600085828151811061102157611021611eee565b6020026020010151111561107a5784818151811061104157611041611eee565b602002602001015182828151811061105b5761105b611eee565b602002602001015161106d9190611dfb565b6110779084611c82565b92505b8061108481611e79565b915050611003565b50633b9aca00896101000151836110a39190611dfb565b6110ad9190611ceb565b9d939c50929a5050505050505050505050565b60606000826020015160ff1667ffffffffffffffff8111156110e4576110e4611f04565b60405190808252806020026020018201604052801561110d578160200160208202803683370190505b508351909150600190611121906002611d50565b61112b9190611e1a565b8160008151811061113e5761113e611eee565b602090810291909101015260015b836020015160ff168160ff1610156111be57835160ff168261116f600184611e56565b60ff168151811061118257611182611eee565b6020026020010151901b828260ff16815181106111a1576111a1611eee565b6020908102919091010152806111b681611eb8565b91505061114c565b5092915050565b80516000908190815b8160ff168160ff161015611259576000858260ff16815181106111f3576111f3611eee565b6020026020010151905080871681891614611238578360ff168360ff161415611223576000945050505050610347565b61122d8484611e56565b945050505050610347565b8361124281611eb8565b94505050808061125190611eb8565b9150506111ce565b506103428282611e56565b60606000611273836001611cc6565b60ff1667ffffffffffffffff81111561128e5761128e611f04565b6040519080825280602002602001820160405280156112b7578160200160208202803683370190505b50905060005b8360ff168160ff1611611309576112d7858260ff16611311565b828260ff16815181106112ec576112ec611eee565b60209081029190910101528061130181611eb8565b9150506112bd565b509392505050565b6000808360e00151836010811061132a5761132a611eee565b602002015163ffffffff169050600061134785600001518561135c565b90506113538183611ceb565b95945050505050565b600081156113a25761136f600183611e1a565b61137c9060ff8516611dfb565b6001901b61138d8360ff8616611dfb565b6001901b61139b9190611e1a565b9050610d35565b506001610d35565b803573ffffffffffffffffffffffffffffffffffffffff811681146113ce57600080fd5b919050565b600082601f8301126113e457600080fd5b60405161020080820182811067ffffffffffffffff8211171561140957611409611f04565b604052818482810187101561141d57600080fd5b600092505b601083101561144b57805161143681611f1a565b82526001929092019160209182019101611422565b509195945050505050565b60008083601f84011261146857600080fd5b50813567ffffffffffffffff81111561148057600080fd5b6020830191508360208260051b850101111561149b57600080fd5b9250929050565b80516cffffffffffffffffffffffffff811681146113ce57600080fd5b80516113ce81611f1a565b805160ff811681146113ce57600080fd5b6000806000604084860312156114f057600080fd5b6114f9846113aa565b9250602084013567ffffffffffffffff81111561151557600080fd5b61152186828701611456565b9497909650939450505050565b60008060008060006060868803121561154657600080fd5b61154f866113aa565b9450602086013567ffffffffffffffff8082111561156c57600080fd5b61157889838a01611456565b9096509450604088013591508082111561159157600080fd5b818801915088601f8301126115a557600080fd5b8135818111156115b457600080fd5b8960208285010111156115c657600080fd5b9699959850939650602001949392505050565b600060208083850312156115ec57600080fd5b823567ffffffffffffffff8082111561160457600080fd5b818501915085601f83011261161857600080fd5b813561162b61162682611c5e565b611c2d565b80828252858201915085850189878560051b880101111561164b57600080fd5b60005b848110156116ea5781358681111561166557600080fd5b8701603f81018c1361167657600080fd5b8881013561168661162682611c5e565b808282528b82019150604084018f60408560051b87010111156116a857600080fd5b600094505b838510156116d45780356116c081611f2f565b835260019490940193918c01918c016116ad565b508752505050928701929087019060010161164e565b50909998505050505050505050565b6000602080838503121561170c57600080fd5b825167ffffffffffffffff81111561172357600080fd5b8301601f8101851361173457600080fd5b805161174261162682611c5e565b8181528381019083850160a0808502860187018a101561176157600080fd5b60009550855b858110156117e55781838c03121561177d578687fd5b611785611be0565b835181528884015161179681611f1a565b818a01526040848101516117a981611f2f565b908201526060848101516117bc81611f2f565b908201526080848101516117cf81611f1a565b9082015285529387019391810191600101611767565b50919998505050505050505050565b6000602080838503121561180757600080fd5b825167ffffffffffffffff81111561181e57600080fd5b8301601f8101851361182f57600080fd5b805161183d61162682611c5e565b81815283810190838501610300808502860187018a101561185d57600080fd5b60009550855b858110156117e55781838c031215611879578687fd5b611881611c09565b61188a846114ca565b81526118978985016114ca565b8982015260406118a88186016114bf565b9082015260606118b98582016114bf565b9082015260806118ca8582016114bf565b9082015260a06118db8582016114bf565b9082015260c06118ec8582016114a2565b9082015260e06118fe8d8683016113d3565b908201526102e084015161010082015285529387019391810191600101611863565b6000602080838503121561193357600080fd5b825167ffffffffffffffff81111561194a57600080fd5b8301601f8101851361195b57600080fd5b805161196961162682611c5e565b80828252848201915084840188868560051b870101111561198957600080fd5b600094505b838510156119ac57805183526001949094019391850191850161198e565b50979650505050505050565b600081518084526020808501945080840160005b838110156119e8578151875295820195908201906001016119cc565b509495945050505050565b600081518084526020808501945080840160005b838110156119e857815167ffffffffffffffff1687529582019590820190600101611a07565b73ffffffffffffffffffffffffffffffffffffffff84168152606060208201526000611a5c60608301856119f3565b8281036040840152611a6e81856119f3565b9695505050505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015611aeb577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452611ad98583516119b8565b94509285019290850190600101611a9f565b5092979650505050505050565b602081526000610d3260208301846119b8565b604081526000611b1e60408301856119b8565b602083820381850152845180835260005b81811015611b4a578681018301518482018401528201611b2f565b81811115611b5b5760008383860101525b50601f01601f19169190910101949350505050565b60208082528181018390526000908460408401835b86811015611bb0578235611b9881611f1a565b63ffffffff1682529183019190830190600101611b85565b509695505050505050565b604081526000611bce60408301856119f3565b828103602084015261135381856119f3565b60405160a0810167ffffffffffffffff81118282101715611c0357611c03611f04565b60405290565b604051610120810167ffffffffffffffff81118282101715611c0357611c03611f04565b604051601f8201601f1916810167ffffffffffffffff81118282101715611c5657611c56611f04565b604052919050565b600067ffffffffffffffff821115611c7857611c78611f04565b5060051b60200190565b60008219821115611c9557611c95611ed8565b500190565b600067ffffffffffffffff808316818516808303821115611cbd57611cbd611ed8565b01949350505050565b600060ff821660ff84168060ff03821115611ce357611ce3611ed8565b019392505050565b600082611d0857634e487b7160e01b600052601260045260246000fd5b500490565b600181815b80851115611d48578160001904821115611d2e57611d2e611ed8565b80851615611d3b57918102915b93841c9390800290611d12565b509250929050565b6000610d3260ff841683600082611d6957506001610d35565b81611d7657506000610d35565b8160018114611d8c5760028114611d9657611db2565b6001915050610d35565b60ff841115611da757611da7611ed8565b50506001821b610d35565b5060208310610133831016604e8410600b8410161715611dd5575081810a610d35565b611ddf8383611d0d565b8060001904821115611df357611df3611ed8565b029392505050565b6000816000190483118215151615611e1557611e15611ed8565b500290565b600082821015611e2c57611e2c611ed8565b500390565b600063ffffffff83811690831681811015611e4e57611e4e611ed8565b039392505050565b600060ff821660ff841680821015611e7057611e70611ed8565b90039392505050565b6000600019821415611e8d57611e8d611ed8565b5060010190565b600063ffffffff80831681811415611eae57611eae611ed8565b6001019392505050565b600060ff821660ff811415611ecf57611ecf611ed8565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b63ffffffff81168114611f2c57600080fd5b50565b67ffffffffffffffff81168114611f2c57600080fdfea2646970667358221220f2853d0d2295a363244a50df9962fece1368b6c2c299b27b0190124151281cba64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x88 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xAACA392E GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xAACA392E EQ PUSH2 0x146 JUMPI DUP1 PUSH4 0xBCC18ABC EQ PUSH2 0x167 JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x18E JUMPI DUP1 PUSH4 0xF8D0CA4C EQ PUSH2 0x1B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0xD9 JUMPI DUP1 PUSH4 0x740E61A3 EQ PUSH2 0x100 JUMPI DUP1 PUSH4 0x8045FBCF EQ PUSH2 0x126 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xAF PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH32 0x0 PUSH2 0xAF JUMP JUMPDEST PUSH2 0x139 PUSH2 0x134 CALLDATASIZE PUSH1 0x4 PUSH2 0x14DB JUMP JUMPDEST PUSH2 0x1CF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD0 SWAP2 SWAP1 PUSH2 0x1AF8 JUMP JUMPDEST PUSH2 0x159 PUSH2 0x154 CALLDATASIZE PUSH1 0x4 PUSH2 0x152E JUMP JUMPDEST PUSH2 0x34E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD0 SWAP3 SWAP2 SWAP1 PUSH2 0x1B0B JUMP JUMPDEST PUSH2 0xAF PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0xAF PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x1BD PUSH1 0x10 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xD0 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD0BB78F3 DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22E SWAP3 SWAP2 SWAP1 PUSH2 0x1B70 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x246 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x25A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x282 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x16F9 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP7 DUP7 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2E1 SWAP3 SWAP2 SWAP1 PUSH2 0x1B70 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x30D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x335 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x17F4 JUMP JUMPDEST SWAP1 POP PUSH2 0x342 DUP7 DUP4 DUP4 PUSH2 0x5D9 JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 PUSH2 0x35F DUP5 DUP7 ADD DUP7 PUSH2 0x15D9 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP DUP7 EQ PUSH2 0x3DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E76616C69642D7069636B2D696E64696365732D6C65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E67746800000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xD0BB78F300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0xD0BB78F3 SWAP1 PUSH2 0x453 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B70 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x46B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x47F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x4A7 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x16F9 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP11 DUP11 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x506 SWAP3 SWAP2 SWAP1 PUSH2 0x1B70 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x51E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x532 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x55A SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x17F4 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x569 DUP12 DUP5 DUP5 PUSH2 0x5D9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000 PUSH1 0x60 DUP15 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x34 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH2 0x5C6 DUP3 DUP3 DUP7 DUP9 DUP8 PUSH2 0xA44 JUMP JUMPDEST SWAP7 POP SWAP7 POP POP POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x60 SWAP1 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5F9 JUMPI PUSH2 0x5F9 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x622 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x640 JUMPI PUSH2 0x640 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x669 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x798 JUMPI DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x695 JUMPI PUSH2 0x695 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x6BF JUMPI PUSH2 0x6BF PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP4 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x6E4 JUMPI PUSH2 0x6E4 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x71E JUMPI PUSH2 0x71E PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x60 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x748 JUMPI PUSH2 0x748 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP3 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x76D JUMPI PUSH2 0x76D PUSH2 0x1EEE JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE DUP1 PUSH2 0x790 DUP2 PUSH2 0x1E94 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x66F JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x68C7FD5700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0x68C7FD57 SWAP1 PUSH2 0x812 SWAP1 DUP12 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x1A2D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x82A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x83E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x866 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1920 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x8E6D536A DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8C5 SWAP3 SWAP2 SWAP1 PUSH2 0x1BBB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8F1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x919 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1920 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x936 JUMPI PUSH2 0x936 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x95F JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0xA36 JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x97F JUMPI PUSH2 0x97F PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 EQ ISZERO PUSH2 0x9B4 JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x9A3 JUMPI PUSH2 0x9A3 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP PUSH2 0xA24 JUMP JUMPDEST DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x9C6 JUMPI PUSH2 0x9C6 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x9E0 JUMPI PUSH2 0x9E0 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xDE0B6B3A7640000 PUSH2 0x9FB SWAP2 SWAP1 PUSH2 0x1DFB JUMP JUMPDEST PUSH2 0xA05 SWAP2 SWAP1 PUSH2 0x1CEB JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xA17 JUMPI PUSH2 0xA17 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0xA2E DUP2 PUSH2 0x1E79 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x965 JUMP JUMPDEST POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 DUP8 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA63 JUMPI PUSH2 0xA63 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xA8C JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP9 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAAB JUMPI PUSH2 0xAAB PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xADE JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xAC9 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP9 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xCCB JUMPI DUP7 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xB0C JUMPI PUSH2 0xB0C PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xA0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xB36 JUMPI PUSH2 0xB36 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH2 0xB4C SWAP2 SWAP1 PUSH2 0x1C9A JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xBAE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F647261772D657870697265640000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D3 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBF8 DUP9 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xBCB JUMPI PUSH2 0xBCB PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP14 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xBEB JUMPI PUSH2 0xBEB PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xCFE JUMP JUMPDEST SWAP1 POP PUSH2 0xC72 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC15 JUMPI PUSH2 0xC15 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP14 DUP13 DUP7 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC45 JUMPI PUSH2 0xC45 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP13 DUP8 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC65 JUMPI PUSH2 0xC65 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xD3B JUMP JUMPDEST DUP7 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC8A JUMPI PUSH2 0xC8A PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP7 DUP6 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xCA9 JUMPI PUSH2 0xCA9 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD SWAP2 SWAP1 SWAP2 MSTORE MSTORE POP DUP1 PUSH2 0xCC3 DUP2 PUSH2 0x1E94 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xAE5 JUMP JUMPDEST POP DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xCDD SWAP2 SWAP1 PUSH2 0x1A78 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP DUP3 SWAP5 POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 DUP4 PUSH1 0xC0 ADD MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0xD28 SWAP2 SWAP1 PUSH2 0x1DFB JUMP JUMPDEST PUSH2 0xD32 SWAP2 SWAP1 PUSH2 0x1CEB JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 PUSH1 0x0 PUSH2 0xD4A DUP5 PUSH2 0x10C0 JUMP JUMPDEST DUP6 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x10 DUP1 DUP3 MSTORE PUSH2 0x220 DUP3 ADD SWAP1 SWAP3 MSTORE SWAP3 SWAP4 POP SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH1 0x20 DUP3 ADD PUSH2 0x200 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH1 0x0 DUP7 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0xDD8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F657863656564732D6D61782D757365722D7069636B7300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D3 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xFF0 JUMPI DUP11 DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xE08 JUMPI PUSH2 0xE08 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xE67 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E73756666696369656E742D757365722D7069636B73 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D3 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO PUSH2 0xF1E JUMPI DUP9 PUSH2 0xE7F PUSH1 0x1 DUP4 PUSH2 0x1E31 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xE95 JUMPI PUSH2 0xE95 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xEBF JUMPI PUSH2 0xEBF PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0xF1E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7069636B732D617363656E64696E670000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D3 JUMP JUMPDEST PUSH1 0x0 DUP11 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xF39 JUMPI PUSH2 0xF39 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xF65 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP PUSH1 0x0 PUSH2 0xF8D DUP3 DUP16 DUP10 PUSH2 0x11C5 JUMP JUMPDEST SWAP1 POP PUSH1 0x10 PUSH1 0xFF DUP3 AND LT ISZERO PUSH2 0xFDB JUMPI DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT ISZERO PUSH2 0xFAD JUMPI DUP1 SWAP4 POP JUMPDEST DUP5 DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFC2 JUMPI PUSH2 0xFC2 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP1 MLOAD DUP1 SWAP2 SWAP1 PUSH2 0xFD7 SWAP1 PUSH2 0x1E79 JUMP JUMPDEST SWAP1 MSTORE POP JUMPDEST POP POP DUP1 DUP1 PUSH2 0xFE8 SWAP1 PUSH2 0x1E94 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xDDB JUMP JUMPDEST POP PUSH1 0x0 DUP1 PUSH2 0xFFE DUP10 DUP5 PUSH2 0x1264 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 GT PUSH2 0x108C JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1021 JUMPI PUSH2 0x1021 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD GT ISZERO PUSH2 0x107A JUMPI DUP5 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x1041 JUMPI PUSH2 0x1041 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x105B JUMPI PUSH2 0x105B PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x106D SWAP2 SWAP1 PUSH2 0x1DFB JUMP JUMPDEST PUSH2 0x1077 SWAP1 DUP5 PUSH2 0x1C82 JUMP JUMPDEST SWAP3 POP JUMPDEST DUP1 PUSH2 0x1084 DUP2 PUSH2 0x1E79 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1003 JUMP JUMPDEST POP PUSH4 0x3B9ACA00 DUP10 PUSH2 0x100 ADD MLOAD DUP4 PUSH2 0x10A3 SWAP2 SWAP1 PUSH2 0x1DFB JUMP JUMPDEST PUSH2 0x10AD SWAP2 SWAP1 PUSH2 0x1CEB JUMP JUMPDEST SWAP14 SWAP4 SWAP13 POP SWAP3 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10E4 JUMPI PUSH2 0x10E4 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x110D JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP DUP4 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 SWAP1 PUSH2 0x1121 SWAP1 PUSH1 0x2 PUSH2 0x1D50 JUMP JUMPDEST PUSH2 0x112B SWAP2 SWAP1 PUSH2 0x1E1A JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x113E JUMPI PUSH2 0x113E PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 JUMPDEST DUP4 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x11BE JUMPI DUP4 MLOAD PUSH1 0xFF AND DUP3 PUSH2 0x116F PUSH1 0x1 DUP5 PUSH2 0x1E56 JUMP JUMPDEST PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1182 JUMPI PUSH2 0x1182 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 SHL DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x11A1 JUMPI PUSH2 0x11A1 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x11B6 DUP2 PUSH2 0x1EB8 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x114C JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x1259 JUMPI PUSH1 0x0 DUP6 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x11F3 JUMPI PUSH2 0x11F3 PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP DUP1 DUP8 AND DUP2 DUP10 AND EQ PUSH2 0x1238 JUMPI DUP4 PUSH1 0xFF AND DUP4 PUSH1 0xFF AND EQ ISZERO PUSH2 0x1223 JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0x347 JUMP JUMPDEST PUSH2 0x122D DUP5 DUP5 PUSH2 0x1E56 JUMP JUMPDEST SWAP5 POP POP POP POP POP PUSH2 0x347 JUMP JUMPDEST DUP4 PUSH2 0x1242 DUP2 PUSH2 0x1EB8 JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0x1251 SWAP1 PUSH2 0x1EB8 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x11CE JUMP JUMPDEST POP PUSH2 0x342 DUP3 DUP3 PUSH2 0x1E56 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x1273 DUP4 PUSH1 0x1 PUSH2 0x1CC6 JUMP JUMPDEST PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x128E JUMPI PUSH2 0x128E PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x12B7 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT PUSH2 0x1309 JUMPI PUSH2 0x12D7 DUP6 DUP3 PUSH1 0xFF AND PUSH2 0x1311 JUMP JUMPDEST DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x12EC JUMPI PUSH2 0x12EC PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x1301 DUP2 PUSH2 0x1EB8 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x12BD JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0xE0 ADD MLOAD DUP4 PUSH1 0x10 DUP2 LT PUSH2 0x132A JUMPI PUSH2 0x132A PUSH2 0x1EEE JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x1347 DUP6 PUSH1 0x0 ADD MLOAD DUP6 PUSH2 0x135C JUMP JUMPDEST SWAP1 POP PUSH2 0x1353 DUP2 DUP4 PUSH2 0x1CEB JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO PUSH2 0x13A2 JUMPI PUSH2 0x136F PUSH1 0x1 DUP4 PUSH2 0x1E1A JUMP JUMPDEST PUSH2 0x137C SWAP1 PUSH1 0xFF DUP6 AND PUSH2 0x1DFB JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x138D DUP4 PUSH1 0xFF DUP7 AND PUSH2 0x1DFB JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x139B SWAP2 SWAP1 PUSH2 0x1E1A JUMP JUMPDEST SWAP1 POP PUSH2 0xD35 JUMP JUMPDEST POP PUSH1 0x1 PUSH2 0xD35 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x13CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x13E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP1 DUP3 ADD DUP3 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1409 JUMPI PUSH2 0x1409 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP5 DUP3 DUP2 ADD DUP8 LT ISZERO PUSH2 0x141D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP3 POP JUMPDEST PUSH1 0x10 DUP4 LT ISZERO PUSH2 0x144B JUMPI DUP1 MLOAD PUSH2 0x1436 DUP2 PUSH2 0x1F1A JUMP JUMPDEST DUP3 MSTORE PUSH1 0x1 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x20 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x1422 JUMP JUMPDEST POP SWAP2 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x1468 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1480 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x149B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x13CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x13CE DUP2 PUSH2 0x1F1A JUMP JUMPDEST DUP1 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x13CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x14F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14F9 DUP5 PUSH2 0x13AA JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1515 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1521 DUP7 DUP3 DUP8 ADD PUSH2 0x1456 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1546 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x154F DUP7 PUSH2 0x13AA JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x156C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1578 DUP10 DUP4 DUP11 ADD PUSH2 0x1456 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x1591 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x15A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x15B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x15C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x15EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1604 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1618 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x162B PUSH2 0x1626 DUP3 PUSH2 0x1C5E JUMP JUMPDEST PUSH2 0x1C2D JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP6 DUP3 ADD SWAP2 POP DUP6 DUP6 ADD DUP10 DUP8 DUP6 PUSH1 0x5 SHL DUP9 ADD ADD GT ISZERO PUSH2 0x164B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x16EA JUMPI DUP2 CALLDATALOAD DUP7 DUP2 GT ISZERO PUSH2 0x1665 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 ADD PUSH1 0x3F DUP2 ADD DUP13 SGT PUSH2 0x1676 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 DUP2 ADD CALLDATALOAD PUSH2 0x1686 PUSH2 0x1626 DUP3 PUSH2 0x1C5E JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP12 DUP3 ADD SWAP2 POP PUSH1 0x40 DUP5 ADD DUP16 PUSH1 0x40 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x16A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x16D4 JUMPI DUP1 CALLDATALOAD PUSH2 0x16C0 DUP2 PUSH2 0x1F2F JUMP JUMPDEST DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP13 ADD SWAP2 DUP13 ADD PUSH2 0x16AD JUMP JUMPDEST POP DUP8 MSTORE POP POP POP SWAP3 DUP8 ADD SWAP3 SWAP1 DUP8 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x164E JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x170C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1723 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1734 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1742 PUSH2 0x1626 DUP3 PUSH2 0x1C5E JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH1 0xA0 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1761 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x17E5 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x177D JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1785 PUSH2 0x1BE0 JUMP JUMPDEST DUP4 MLOAD DUP2 MSTORE DUP9 DUP5 ADD MLOAD PUSH2 0x1796 DUP2 PUSH2 0x1F1A JUMP JUMPDEST DUP2 DUP11 ADD MSTORE PUSH1 0x40 DUP5 DUP2 ADD MLOAD PUSH2 0x17A9 DUP2 PUSH2 0x1F2F JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP5 DUP2 ADD MLOAD PUSH2 0x17BC DUP2 PUSH2 0x1F2F JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP5 DUP2 ADD MLOAD PUSH2 0x17CF DUP2 PUSH2 0x1F1A JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1767 JUMP JUMPDEST POP SWAP2 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1807 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x181E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x182F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x183D PUSH2 0x1626 DUP3 PUSH2 0x1C5E JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH2 0x300 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x185D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x17E5 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x1879 JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1881 PUSH2 0x1C09 JUMP JUMPDEST PUSH2 0x188A DUP5 PUSH2 0x14CA JUMP JUMPDEST DUP2 MSTORE PUSH2 0x1897 DUP10 DUP6 ADD PUSH2 0x14CA JUMP JUMPDEST DUP10 DUP3 ADD MSTORE PUSH1 0x40 PUSH2 0x18A8 DUP2 DUP7 ADD PUSH2 0x14BF JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 PUSH2 0x18B9 DUP6 DUP3 ADD PUSH2 0x14BF JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 PUSH2 0x18CA DUP6 DUP3 ADD PUSH2 0x14BF JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 PUSH2 0x18DB DUP6 DUP3 ADD PUSH2 0x14BF JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 PUSH2 0x18EC DUP6 DUP3 ADD PUSH2 0x14A2 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 PUSH2 0x18FE DUP14 DUP7 DUP4 ADD PUSH2 0x13D3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH2 0x2E0 DUP5 ADD MLOAD PUSH2 0x100 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1863 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1933 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x194A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x195B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1969 PUSH2 0x1626 DUP3 PUSH2 0x1C5E JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP5 DUP3 ADD SWAP2 POP DUP5 DUP5 ADD DUP9 DUP7 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x1989 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x19AC JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP6 ADD SWAP2 DUP6 ADD PUSH2 0x198E JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x19E8 JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x19CC JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x19E8 JUMPI DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1A07 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x1A5C PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x19F3 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x1A6E DUP2 DUP6 PUSH2 0x19F3 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 ADD DUP2 DUP5 MSTORE DUP1 DUP6 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP7 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP8 ADD ADD SWAP3 POP DUP4 DUP8 ADD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1AEB JUMPI PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x1AD9 DUP6 DUP4 MLOAD PUSH2 0x19B8 JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1A9F JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0xD32 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x19B8 JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1B1E PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x19B8 JUMP JUMPDEST PUSH1 0x20 DUP4 DUP3 SUB DUP2 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1B4A JUMPI DUP7 DUP2 ADD DUP4 ADD MLOAD DUP5 DUP3 ADD DUP5 ADD MSTORE DUP3 ADD PUSH2 0x1B2F JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x1B5B JUMPI PUSH1 0x0 DUP4 DUP4 DUP7 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP5 PUSH1 0x40 DUP5 ADD DUP4 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x1BB0 JUMPI DUP3 CALLDATALOAD PUSH2 0x1B98 DUP2 PUSH2 0x1F1A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 MSTORE SWAP2 DUP4 ADD SWAP2 SWAP1 DUP4 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1B85 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1BCE PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x19F3 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1353 DUP2 DUP6 PUSH2 0x19F3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C03 JUMPI PUSH2 0x1C03 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C03 JUMPI PUSH2 0x1C03 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C56 JUMPI PUSH2 0x1C56 PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1C78 JUMPI PUSH2 0x1C78 PUSH2 0x1F04 JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1C95 JUMPI PUSH2 0x1C95 PUSH2 0x1ED8 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1CBD JUMPI PUSH2 0x1CBD PUSH2 0x1ED8 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 PUSH1 0xFF SUB DUP3 GT ISZERO PUSH2 0x1CE3 JUMPI PUSH2 0x1CE3 PUSH2 0x1ED8 JUMP JUMPDEST ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1D08 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 JUMPDEST DUP1 DUP6 GT ISZERO PUSH2 0x1D48 JUMPI DUP2 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x1D2E JUMPI PUSH2 0x1D2E PUSH2 0x1ED8 JUMP JUMPDEST DUP1 DUP6 AND ISZERO PUSH2 0x1D3B JUMPI SWAP2 DUP2 MUL SWAP2 JUMPDEST SWAP4 DUP5 SHR SWAP4 SWAP1 DUP1 MUL SWAP1 PUSH2 0x1D12 JUMP JUMPDEST POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD32 PUSH1 0xFF DUP5 AND DUP4 PUSH1 0x0 DUP3 PUSH2 0x1D69 JUMPI POP PUSH1 0x1 PUSH2 0xD35 JUMP JUMPDEST DUP2 PUSH2 0x1D76 JUMPI POP PUSH1 0x0 PUSH2 0xD35 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x1D8C JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x1D96 JUMPI PUSH2 0x1DB2 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xD35 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x1DA7 JUMPI PUSH2 0x1DA7 PUSH2 0x1ED8 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0xD35 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x1DD5 JUMPI POP DUP2 DUP2 EXP PUSH2 0xD35 JUMP JUMPDEST PUSH2 0x1DDF DUP4 DUP4 PUSH2 0x1D0D JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x1DF3 JUMPI PUSH2 0x1DF3 PUSH2 0x1ED8 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1E15 JUMPI PUSH2 0x1E15 PUSH2 0x1ED8 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1E2C JUMPI PUSH2 0x1E2C PUSH2 0x1ED8 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1E4E JUMPI PUSH2 0x1E4E PUSH2 0x1ED8 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 DUP3 LT ISZERO PUSH2 0x1E70 JUMPI PUSH2 0x1E70 PUSH2 0x1ED8 JUMP JUMPDEST SWAP1 SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1E8D JUMPI PUSH2 0x1E8D PUSH2 0x1ED8 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP2 EQ ISZERO PUSH2 0x1EAE JUMPI PUSH2 0x1EAE PUSH2 0x1ED8 JUMP JUMPDEST PUSH1 0x1 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 EQ ISZERO PUSH2 0x1ECF JUMPI PUSH2 0x1ECF PUSH2 0x1ED8 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F2C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F2C JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLCODE DUP6 RETURNDATASIZE 0xD 0x22 SWAP6 LOG3 PUSH4 0x244A50DF SWAP10 PUSH3 0xFECE13 PUSH9 0xB6C2C299B27B019012 COINBASE MLOAD 0x28 SHR 0xBA PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "869:17445:32:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4619:95;4697:10;4619:95;;;15206:42:84;15194:55;;;15176:74;;15164:2;15149:18;4619:95:32;;;;;;;;1083:31;;;;;4836:162;4968:23;4836:162;;5232:464;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3231:1292::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;1213:65::-;;;;;983:39;;;;;1324;;1361:2;1324:39;;;;;17775:4:84;17763:17;;;17745:36;;17733:2;17718:18;1324:39:32;17700:87:84;5232:464:32;5363:16;5395:32;5430:10;:19;;;5450:8;;5430:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5430:29:32;;;;;;;;;;;;:::i;:::-;5395:64;;5469:71;5543:23;:58;;;5602:8;;5543:68;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5543:68:32;;;;;;;;;;;;:::i;:::-;5469:142;;5629:60;5654:5;5661:6;5669:19;5629:24;:60::i;:::-;5622:67;;;;5232:464;;;;;;:::o;3231:1292::-;3383:16;;3425:29;3457:47;;;;3468:20;3457:47;:::i;:::-;3522:18;;3425:79;;-1:-1:-1;3522:37:32;;3514:86;;;;-1:-1:-1;;;3514:86:32;;16326:2:84;3514:86:32;;;16308:21:84;16365:2;16345:18;;;16338:30;16404:34;16384:18;;;16377:62;16475:6;16455:18;;;16448:34;16499:19;;3514:86:32;;;;;;;;;3720:29;;;;;3686:31;;3720:19;:10;:19;;;;:29;;3740:8;;;;3720:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3720:29:32;;;;;;;;;;;;:::i;:::-;3686:63;;3845:71;3919:23;:58;;;3978:8;;3919:68;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3919:68:32;;;;;;;;;;;;:::i;:::-;3845:142;;4096:29;4128:59;4153:5;4160;4167:19;4128:24;:59::i;:::-;4281:23;;10852:66:84;10839:2;10835:15;;;10831:88;4281:23:32;;;10819:101:84;4096:91:32;;-1:-1:-1;4243:25:32;;10936:12:84;;4281:23:32;;;;;;;;;;;;4271:34;;;;;;4243:62;;4323:193;4366:12;4396:17;4431:5;4454:11;4483:19;4323:25;:193::i;:::-;4316:200;;;;;;;;;3231:1292;;;;;;;;:::o;8829:1699::-;9088:13;;9038:16;;9066:19;9088:13;9161:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9161:25:32;;9111:75;;9196:45;9257:11;9244:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9244:25:32;;9196:73;;9350:8;9345:366;9368:11;9364:1;:15;;;9345:366;;;9507:19;9527:1;9507:22;;;;;;;;;;:::i;:::-;;;;;;;:43;;;9485:65;;:6;9492:1;9485:9;;;;;;;;;;:::i;:::-;;;;;;;:19;;;:65;9428:31;9460:1;9428:34;;;;;;;;;;:::i;:::-;;;;;;:122;;;;;;;;;;;9645:19;9665:1;9645:22;;;;;;;;;;:::i;:::-;;;;;;;:41;;;9623:63;;:6;9630:1;9623:9;;;;;;;;;;:::i;:::-;;;;;;;:19;;;:63;9568:29;9598:1;9568:32;;;;;;;;;;:::i;:::-;:118;;;;:32;;;;;;;;;;;:118;9381:3;;;;:::i;:::-;;;;9345:366;;;-1:-1:-1;9749:149:32;;;;;9721:25;;9749:32;:6;:32;;;;:149;;9795:5;;9814:31;;9859:29;;9749:149;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9749:149:32;;;;;;;;;;;;:::i;:::-;9721:177;;9909:30;9942:6;:37;;;9993:31;10038:29;9942:135;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9942:135:32;;;;;;;;;;;;:::i;:::-;9909:168;;10088:35;10140:11;10126:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10126:26:32;;10088:64;;10225:9;10220:266;10244:11;10240:1;:15;10220:266;;;10279:13;10293:1;10279:16;;;;;;;;:::i;:::-;;;;;;;10299:1;10279:21;10276:200;;;10343:1;10319:18;10338:1;10319:21;;;;;;;;:::i;:::-;;;;;;:25;;;;;10276:200;;;10445:13;10459:1;10445:16;;;;;;;;:::i;:::-;;;;;;;10420:8;10429:1;10420:11;;;;;;;;:::i;:::-;;;;;;;10434:7;10420:21;;;;:::i;:::-;10419:42;;;;:::i;:::-;10395:18;10414:1;10395:21;;;;;;;;:::i;:::-;;;;;;:66;;;;;10276:200;10257:3;;;;:::i;:::-;;;;10220:266;;;-1:-1:-1;10503:18:32;8829:1699;-1:-1:-1;;;;;;;;;8829:1699:32:o;6230:1489::-;6550:32;6584:24;6621:33;6671:23;:30;6657:45;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6657:45:32;;6621:81;;6712:31;6762:23;:30;6746:47;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6712:81:32;-1:-1:-1;6828:15:32;6804:14;6914:706;6953:6;:13;6941:9;:25;;;6914:706;;;7043:19;7063:9;7043:30;;;;;;;;;;:::i;:::-;;;;;;;:45;;;7013:75;;:6;7020:9;7013:17;;;;;;;;;;:::i;:::-;;;;;;;:27;;;:75;;;;:::i;:::-;7003:85;;:7;:85;;;6995:119;;;;-1:-1:-1;;;6995:119:32;;15976:2:84;6995:119:32;;;15958:21:84;16015:2;15995:18;;;15988:30;16054:23;16034:18;;;16027:51;16095:18;;6995:119:32;15948:171:84;6995:119:32;7129:21;7153:141;7198:19;7218:9;7198:30;;;;;;;;;;:::i;:::-;;;;;;;7246:23;7270:9;7246:34;;;;;;;;;;:::i;:::-;;;;;;;7153:27;:141::i;:::-;7129:165;;7366:243;7394:6;7401:9;7394:17;;;;;;;;;;:::i;:::-;;;;;;;:37;;;7449:14;7366:243;;7481:17;7516:20;7537:9;7516:31;;;;;;;;;;:::i;:::-;;;;;;;7565:19;7585:9;7565:30;;;;;;;;;;:::i;:::-;;;;;;;7366:10;:243::i;:::-;7310:16;7327:9;7310:27;;;;;;;;;;:::i;:::-;;;;;;7339:12;7352:9;7339:23;;;;;;;;;;:::i;:::-;;;;;;;;;;7309:300;;;;;-1:-1:-1;6968:11:32;;;;:::i;:::-;;;;6914:706;;;;7655:12;7644:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;7630:38;;7696:16;7678:34;;6610:1109;;;6230:1489;;;;;;;;:::o;8180:293::-;8364:6;8458:7;8422:18;:32;;;8397:57;;:22;:57;;;;:::i;:::-;8396:69;;;;:::i;:::-;8382:84;;8180:293;;;;;:::o;11022:2698::-;11287:13;11302:28;11396:22;11421:35;11437:18;11421:15;:35::i;:::-;11494:13;;11550:46;;;11564:31;11550:46;;;;;;;;;11396:60;;-1:-1:-1;11494:13:32;;11466:18;;11550:46;;;;;;;;;;-1:-1:-1;11550:46:32;11518:78;;11607:25;11683:18;:34;;;11668:49;;:11;:49;;;;11647:127;;;;-1:-1:-1;;;11647:127:32;;16731:2:84;11647:127:32;;;16713:21:84;16770:2;16750:18;;;16743:30;16809:33;16789:18;;;16782:61;16860:18;;11647:127:32;16703:181:84;11647:127:32;11888:12;11883:937;11914:11;11906:19;;:5;:19;;;11883:937;;;11974:15;11958:6;11965:5;11958:13;;;;;;;;;;:::i;:::-;;;;;;;:31;;;11950:76;;;;-1:-1:-1;;;11950:76:32;;17444:2:84;11950:76:32;;;17426:21:84;;;17463:18;;;17456:30;17522:34;17502:18;;;17495:62;17574:18;;11950:76:32;17416:182:84;11950:76:32;12045:9;;;;12041:118;;12098:6;12105:9;12113:1;12105:5;:9;:::i;:::-;12098:17;;;;;;;;;;:::i;:::-;;;;;;;12082:33;;:6;12089:5;12082:13;;;;;;;;;;:::i;:::-;;;;;;;:33;;;12074:70;;;;-1:-1:-1;;;12074:70:32;;17091:2:84;12074:70:32;;;17073:21:84;17130:2;17110:18;;;17103:30;17169:26;17149:18;;;17142:54;17213:18;;12074:70:32;17063:174:84;12074:70:32;12236:28;12313:17;12332:6;12339:5;12332:13;;;;;;;;;;:::i;:::-;;;;;;;12302:44;;;;;;;;14905:25:84;;;14978:18;14966:31;14961:2;14946:18;;14939:59;14893:2;14878:18;;14860:144;12302:44:32;;;;;;;;;;;;;12292:55;;;;;;12267:94;;12236:125;;12376:16;12395:132;12432:20;12470;12508:5;12395:19;:132::i;:::-;12376:151;-1:-1:-1;1361:2:32;12596:25;;;;12592:218;;;12658:19;12645:32;;:10;:32;;;12641:111;;;12723:10;12701:32;;12641:111;12769:12;12782:10;12769:24;;;;;;;;;;:::i;:::-;;;;;;:26;;;;;;;;:::i;:::-;;;-1:-1:-1;12592:218:32;11936:884;;11927:7;;;;;:::i;:::-;;;;11883:937;;;;12887:21;12922:36;12961:103;13003:18;13035:19;12961:28;:103::i;:::-;12922:142;;13162:23;13144:360;13222:19;13203:38;;:15;:38;13144:360;;13333:1;13301:12;13314:15;13301:29;;;;;;;;:::i;:::-;;;;;;;:33;13297:197;;;13450:12;13463:15;13450:29;;;;;;;;:::i;:::-;;;;;;;13391:19;13411:15;13391:36;;;;;;;;:::i;:::-;;;;;;;:88;;;;:::i;:::-;13354:125;;;;:::i;:::-;;;13297:197;13255:17;;;;:::i;:::-;;;;13144:360;;;;13674:3;13646:18;:24;;;13630:13;:40;;;;:::i;:::-;13629:48;;;;:::i;:::-;13621:56;13701:12;;-1:-1:-1;11022:2698:32;;-1:-1:-1;;;;;;;;;;;11022:2698:32:o;15286:621::-;15428:16;15460:22;15499:18;:35;;;15485:50;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15485:50:32;-1:-1:-1;15561:31:32;;15460:75;;-1:-1:-1;15596:1:32;;15558:34;;:1;:34;:::i;:::-;15557:40;;;;:::i;:::-;15545:5;15551:1;15545:8;;;;;;;;:::i;:::-;;;;;;;;;;:52;15631:1;15608:270;15646:18;:35;;;15634:47;;:9;:47;;;15608:270;;;15836:31;;15812:55;;:5;15818:13;15830:1;15818:9;:13;:::i;:::-;15812:20;;;;;;;;;;:::i;:::-;;;;;;;:55;;15793:5;15799:9;15793:16;;;;;;;;;;:::i;:::-;;;;;;;;;;:74;15683:11;;;;:::i;:::-;;;;15608:270;;;-1:-1:-1;15895:5:32;15286:621;-1:-1:-1;;15286:621:32:o;14113:932::-;14359:13;;14281:5;;;;;14421:571;14461:11;14448:24;;:10;:24;;;14421:571;;;14502:12;14517:6;14524:10;14517:18;;;;;;;;;;:::i;:::-;;;;;;;14502:33;;14612:4;14589:20;:27;14579:4;14555:21;:28;14554:63;14550:362;;14749:15;14734:30;;:11;:30;;;14730:168;;;14795:1;14788:8;;;;;;;;14730:168;14850:29;14864:15;14850:11;:29;:::i;:::-;14843:36;;;;;;;;14730:168;14964:17;;;;:::i;:::-;;;;14488:504;14474:12;;;;;:::i;:::-;;;;14421:571;;;-1:-1:-1;15009:29:32;15023:15;15009:11;:29;:::i;17099:577::-;17279:16;17307:43;17380:23;:19;17402:1;17380:23;:::i;:::-;17353:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17353:60:32;;17307:106;;17429:7;17424:202;17447:19;17442:24;;:1;:24;;;17424:202;;17519:96;17564:18;17600:1;17519:96;;:27;:96::i;:::-;17487:26;17514:1;17487:29;;;;;;;;;;:::i;:::-;;;;;;;;;;:128;17468:3;;;;:::i;:::-;;;;17424:202;;;-1:-1:-1;17643:26:32;17099:577;-1:-1:-1;;;17099:577:32:o;16247:::-;16424:7;16492:21;16516:18;:24;;;16541:15;16516:41;;;;;;;:::i;:::-;;;;;16492:65;;;;16621:30;16654:107;16691:18;:31;;;16736:15;16654:23;:107::i;:::-;16621:140;-1:-1:-1;16779:38:32;16621:140;16779:13;:38;:::i;:::-;16772:45;16247:577;-1:-1:-1;;;;;16247:577:32:o;17972:340::-;18098:7;18125:19;;18121:185;;18234:19;18252:1;18234:15;:19;:::i;:::-;18217:37;;;;;;:::i;:::-;18212:1;:42;;18174:31;18190:15;18174:31;;;;:::i;:::-;18169:1;:36;;18167:89;;;;:::i;:::-;18160:96;;;;18121:185;-1:-1:-1;18294:1:32;18287:8;;14:196:84;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:781::-;275:5;328:3;321:4;313:6;309:17;305:27;295:2;;346:1;343;336:12;295:2;379;373:9;401:3;443:2;435:6;431:15;512:6;500:10;497:22;476:18;464:10;461:34;458:62;455:2;;;523:18;;:::i;:::-;559:2;552:22;594:6;620;641:15;;;638:24;-1:-1:-1;635:2:84;;;675:1;672;665:12;635:2;697:1;688:10;;707:259;721:4;718:1;715:11;707:259;;;787:3;781:10;804:30;828:5;804:30;:::i;:::-;847:18;;741:1;734:9;;;;;888:4;912:12;;;;944;707:259;;;-1:-1:-1;984:6:84;;285:711;-1:-1:-1;;;;;285:711:84:o;1001:366::-;1063:8;1073:6;1127:3;1120:4;1112:6;1108:17;1104:27;1094:2;;1145:1;1142;1135:12;1094:2;-1:-1:-1;1168:20:84;;1211:18;1200:30;;1197:2;;;1243:1;1240;1233:12;1197:2;1280:4;1272:6;1268:17;1256:29;;1340:3;1333:4;1323:6;1320:1;1316:14;1308:6;1304:27;1300:38;1297:47;1294:2;;;1357:1;1354;1347:12;1294:2;1084:283;;;;;:::o;1372:186::-;1451:13;;1504:28;1493:40;;1483:51;;1473:2;;1548:1;1545;1538:12;1563:136;1641:13;;1663:30;1641:13;1663:30;:::i;1704:160::-;1781:13;;1834:4;1823:16;;1813:27;;1803:2;;1854:1;1851;1844:12;1869:509;1963:6;1971;1979;2032:2;2020:9;2011:7;2007:23;2003:32;2000:2;;;2048:1;2045;2038:12;2000:2;2071:29;2090:9;2071:29;:::i;:::-;2061:39;;2151:2;2140:9;2136:18;2123:32;2178:18;2170:6;2167:30;2164:2;;;2210:1;2207;2200:12;2164:2;2249:69;2310:7;2301:6;2290:9;2286:22;2249:69;:::i;:::-;1990:388;;2337:8;;-1:-1:-1;2223:95:84;;-1:-1:-1;;;;1990:388:84:o;2383:978::-;2497:6;2505;2513;2521;2529;2582:2;2570:9;2561:7;2557:23;2553:32;2550:2;;;2598:1;2595;2588:12;2550:2;2621:29;2640:9;2621:29;:::i;:::-;2611:39;;2701:2;2690:9;2686:18;2673:32;2724:18;2765:2;2757:6;2754:14;2751:2;;;2781:1;2778;2771:12;2751:2;2820:69;2881:7;2872:6;2861:9;2857:22;2820:69;:::i;:::-;2908:8;;-1:-1:-1;2794:95:84;-1:-1:-1;2996:2:84;2981:18;;2968:32;;-1:-1:-1;3012:16:84;;;3009:2;;;3041:1;3038;3031:12;3009:2;3079:8;3068:9;3064:24;3054:34;;3126:7;3119:4;3115:2;3111:13;3107:27;3097:2;;3148:1;3145;3138:12;3097:2;3188;3175:16;3214:2;3206:6;3203:14;3200:2;;;3230:1;3227;3220:12;3200:2;3275:7;3270:2;3261:6;3257:2;3253:15;3249:24;3246:37;3243:2;;;3296:1;3293;3286:12;3243:2;2540:821;;;;-1:-1:-1;2540:821:84;;-1:-1:-1;3327:2:84;3319:11;;3349:6;2540:821;-1:-1:-1;;;2540:821:84:o;3366:1826::-;3474:6;3505:2;3548;3536:9;3527:7;3523:23;3519:32;3516:2;;;3564:1;3561;3554:12;3516:2;3604:9;3591:23;3633:18;3674:2;3666:6;3663:14;3660:2;;;3690:1;3687;3680:12;3660:2;3728:6;3717:9;3713:22;3703:32;;3773:7;3766:4;3762:2;3758:13;3754:27;3744:2;;3795:1;3792;3785:12;3744:2;3831;3818:16;3854:69;3870:52;3919:2;3870:52;:::i;:::-;3854:69;:::i;:::-;3945:3;3969:2;3964:3;3957:15;3997:2;3992:3;3988:12;3981:19;;4028:2;4024;4020:11;4076:7;4071:2;4065;4062:1;4058:10;4054:2;4050:19;4046:28;4043:41;4040:2;;;4097:1;4094;4087:12;4040:2;4119:1;4129:1033;4143:2;4140:1;4137:9;4129:1033;;;4220:3;4207:17;4256:2;4243:11;4240:19;4237:2;;;4272:1;4269;4262:12;4237:2;4299:20;;4354:2;4346:11;;4342:25;-1:-1:-1;4332:2:84;;4381:1;4378;4371:12;4332:2;4429;4425;4421:11;4408:25;4459:69;4475:52;4524:2;4475:52;:::i;4459:69::-;4554:5;4586:2;4579:5;4572:17;4622:2;4615:5;4611:14;4602:23;;4659:2;4655;4651:11;4711:7;4706:2;4700;4697:1;4693:10;4689:2;4685:19;4681:28;4678:41;4675:2;;;4732:1;4729;4722:12;4675:2;4760:1;4749:12;;4774:283;4790:2;4785:3;4782:11;4774:283;;;4873:5;4860:19;4896:30;4920:5;4896:30;:::i;:::-;4943:20;;4812:1;4803:11;;;;;4989:14;;;;5029;;4774:283;;;-1:-1:-1;5070:18:84;;-1:-1:-1;;;5108:12:84;;;;5140;;;;4161:1;4154:9;4129:1033;;;-1:-1:-1;5181:5:84;;3485:1707;-1:-1:-1;;;;;;;;;3485:1707:84:o;5197:1735::-;5315:6;5346:2;5389;5377:9;5368:7;5364:23;5360:32;5357:2;;;5405:1;5402;5395:12;5357:2;5438:9;5432:16;5471:18;5463:6;5460:30;5457:2;;;5503:1;5500;5493:12;5457:2;5526:22;;5579:4;5571:13;;5567:27;-1:-1:-1;5557:2:84;;5608:1;5605;5598:12;5557:2;5637;5631:9;5660:69;5676:52;5725:2;5676:52;:::i;5660:69::-;5763:15;;;5794:12;;;;5826:11;;;5856:4;5887:11;;;5879:20;;5875:29;;5872:42;-1:-1:-1;5869:2:84;;;5927:1;5924;5917:12;5869:2;5949:1;5940:10;;5970:1;5980:922;5996:2;5991:3;5988:11;5980:922;;;6071:2;6065:3;6056:7;6052:17;6048:26;6045:2;;;6087:1;6084;6077:12;6045:2;6117:22;;:::i;:::-;6172:3;6166:10;6159:5;6152:25;6220:2;6215:3;6211:12;6205:19;6237:32;6261:7;6237:32;:::i;:::-;6289:14;;;6282:31;6336:2;6372:12;;;6366:19;6398:32;6366:19;6398:32;:::i;:::-;6450:14;;;6443:31;6497:2;6533:12;;;6527:19;6559:32;6527:19;6559:32;:::i;:::-;6611:14;;;6604:31;6658:3;6695:12;;;6689:19;6721:32;6689:19;6721:32;:::i;:::-;6773:14;;;6766:31;6810:18;;6848:12;;;;6880;;;;6018:1;6009:11;5980:922;;;-1:-1:-1;6921:5:84;;5326:1606;-1:-1:-1;;;;;;;;;5326:1606:84:o;6937:1938::-;7068:6;7099:2;7142;7130:9;7121:7;7117:23;7113:32;7110:2;;;7158:1;7155;7148:12;7110:2;7191:9;7185:16;7224:18;7216:6;7213:30;7210:2;;;7256:1;7253;7246:12;7210:2;7279:22;;7332:4;7324:13;;7320:27;-1:-1:-1;7310:2:84;;7361:1;7358;7351:12;7310:2;7390;7384:9;7413:69;7429:52;7478:2;7429:52;:::i;7413:69::-;7516:15;;;7547:12;;;;7579:11;;;7609:6;7642:11;;;7634:20;;7630:29;;7627:42;-1:-1:-1;7624:2:84;;;7682:1;7679;7672:12;7624:2;7704:1;7695:10;;7725:1;7735:1110;7751:2;7746:3;7743:11;7735:1110;;;7826:2;7820:3;7811:7;7807:17;7803:26;7800:2;;;7842:1;7839;7832:12;7800:2;7872:22;;:::i;:::-;7921:32;7949:3;7921:32;:::i;:::-;7914:5;7907:47;7990:41;8027:2;8022:3;8018:12;7990:41;:::i;:::-;7985:2;7978:5;7974:14;7967:65;8055:2;8093:42;8131:2;8126:3;8122:12;8093:42;:::i;:::-;8077:14;;;8070:66;8159:2;8197:42;8226:12;;;8197:42;:::i;:::-;8181:14;;;8174:66;8263:3;8302:42;8331:12;;;8302:42;:::i;:::-;8286:14;;;8279:66;8368:3;8407:42;8436:12;;;8407:42;:::i;:::-;8391:14;;;8384:66;8473:3;8512:43;8542:12;;;8512:43;:::i;:::-;8496:14;;;8489:67;8580:3;8620:58;8670:7;8655:13;;;8620:58;:::i;:::-;8603:15;;;8596:83;8734:3;8725:13;;8719:20;8710:6;8699:18;;8692:48;8753:18;;8791:12;;;;8823;;;;7773:1;7764:11;7735:1110;;8880:901;8975:6;9006:2;9049;9037:9;9028:7;9024:23;9020:32;9017:2;;;9065:1;9062;9055:12;9017:2;9098:9;9092:16;9131:18;9123:6;9120:30;9117:2;;;9163:1;9160;9153:12;9117:2;9186:22;;9239:4;9231:13;;9227:27;-1:-1:-1;9217:2:84;;9268:1;9265;9258:12;9217:2;9297;9291:9;9320:69;9336:52;9385:2;9336:52;:::i;9320:69::-;9411:3;9435:2;9430:3;9423:15;9463:2;9458:3;9454:12;9447:19;;9494:2;9490;9486:11;9542:7;9537:2;9531;9528:1;9524:10;9520:2;9516:19;9512:28;9509:41;9506:2;;;9563:1;9560;9553:12;9506:2;9585:1;9576:10;;9595:156;9609:2;9606:1;9603:9;9595:156;;;9666:10;;9654:23;;9627:1;9620:9;;;;;9697:12;;;;9729;;9595:156;;;-1:-1:-1;9770:5:84;8986:795;-1:-1:-1;;;;;;;8986:795:84:o;9786:435::-;9839:3;9877:5;9871:12;9904:6;9899:3;9892:19;9930:4;9959:2;9954:3;9950:12;9943:19;;9996:2;9989:5;9985:14;10017:1;10027:169;10041:6;10038:1;10035:13;10027:169;;;10102:13;;10090:26;;10136:12;;;;10171:15;;;;10063:1;10056:9;10027:169;;;-1:-1:-1;10212:3:84;;9847:374;-1:-1:-1;;;;;9847:374:84:o;10226:459::-;10278:3;10316:5;10310:12;10343:6;10338:3;10331:19;10369:4;10398:2;10393:3;10389:12;10382:19;;10435:2;10428:5;10424:14;10456:1;10466:194;10480:6;10477:1;10474:13;10466:194;;;10545:13;;10560:18;10541:38;10529:51;;10600:12;;;;10635:15;;;;10502:1;10495:9;10466:194;;10959:579;11252:42;11244:6;11240:55;11229:9;11222:74;11332:2;11327;11316:9;11312:18;11305:30;11203:4;11358:55;11409:2;11398:9;11394:18;11386:6;11358:55;:::i;:::-;11461:9;11453:6;11449:22;11444:2;11433:9;11429:18;11422:50;11489:43;11525:6;11517;11489:43;:::i;:::-;11481:51;11212:326;-1:-1:-1;;;;;;11212:326:84:o;11543:903::-;11735:4;11764:2;11804;11793:9;11789:18;11834:2;11823:9;11816:21;11857:6;11892;11886:13;11923:6;11915;11908:22;11961:2;11950:9;11946:18;11939:25;;12023:2;12013:6;12010:1;12006:14;11995:9;11991:30;11987:39;11973:53;;12061:2;12053:6;12049:15;12082:1;12092:325;12106:6;12103:1;12100:13;12092:325;;;12195:66;12183:9;12175:6;12171:22;12167:95;12162:3;12155:108;12286:51;12330:6;12321;12315:13;12286:51;:::i;:::-;12276:61;-1:-1:-1;12395:12:84;;;;12360:15;;;;12128:1;12121:9;12092:325;;;-1:-1:-1;12434:6:84;;11744:702;-1:-1:-1;;;;;;;11744:702:84:o;12451:261::-;12630:2;12619:9;12612:21;12593:4;12650:56;12702:2;12691:9;12687:18;12679:6;12650:56;:::i;12717:849::-;12942:2;12931:9;12924:21;12905:4;12968:56;13020:2;13009:9;13005:18;12997:6;12968:56;:::i;:::-;13043:2;13093:9;13085:6;13081:22;13076:2;13065:9;13061:18;13054:50;13133:6;13127:13;13164:6;13156;13149:22;13189:1;13199:137;13213:6;13210:1;13207:13;13199:137;;;13305:14;;;13301:23;;13295:30;13274:14;;;13270:23;;13263:63;13228:10;;13199:137;;;13354:6;13351:1;13348:13;13345:2;;;13421:1;13416:2;13407:6;13399;13395:19;13391:28;13384:39;13345:2;-1:-1:-1;13482:2:84;13470:15;-1:-1:-1;;13466:88:84;13454:101;;;;13450:110;;12914:652;-1:-1:-1;;;;12914:652:84:o;13571:693::-;13750:2;13802:21;;;13775:18;;;13858:22;;;13721:4;;13937:6;13911:2;13896:18;;13721:4;13971:267;13985:6;13982:1;13979:13;13971:267;;;14060:6;14047:20;14080:30;14104:5;14080:30;:::i;:::-;14146:10;14135:22;14123:35;;14213:15;;;;14178:12;;;;14007:1;14000:9;13971:267;;;-1:-1:-1;14255:3:84;13730:534;-1:-1:-1;;;;;;13730:534:84:o;14269:459::-;14522:2;14511:9;14504:21;14485:4;14548:55;14599:2;14588:9;14584:18;14576:6;14548:55;:::i;:::-;14651:9;14643:6;14639:22;14634:2;14623:9;14619:18;14612:50;14679:43;14715:6;14707;14679:43;:::i;17792:253::-;17864:2;17858:9;17906:4;17894:17;;17941:18;17926:34;;17962:22;;;17923:62;17920:2;;;17988:18;;:::i;:::-;18024:2;18017:22;17838:207;:::o;18050:255::-;18122:2;18116:9;18164:6;18152:19;;18201:18;18186:34;;18222:22;;;18183:62;18180:2;;;18248:18;;:::i;18310:334::-;18381:2;18375:9;18437:2;18427:13;;-1:-1:-1;;18423:86:84;18411:99;;18540:18;18525:34;;18561:22;;;18522:62;18519:2;;;18587:18;;:::i;:::-;18623:2;18616:22;18355:289;;-1:-1:-1;18355:289:84:o;18649:192::-;18718:4;18751:18;18743:6;18740:30;18737:2;;;18773:18;;:::i;:::-;-1:-1:-1;18818:1:84;18814:14;18830:4;18810:25;;18727:114::o;18846:128::-;18886:3;18917:1;18913:6;18910:1;18907:13;18904:2;;;18923:18;;:::i;:::-;-1:-1:-1;18959:9:84;;18894:80::o;18979:236::-;19018:3;19046:18;19091:2;19088:1;19084:10;19121:2;19118:1;19114:10;19152:3;19148:2;19144:12;19139:3;19136:21;19133:2;;;19160:18;;:::i;:::-;19196:13;;19026:189;-1:-1:-1;;;;19026:189:84:o;19220:204::-;19258:3;19294:4;19291:1;19287:12;19326:4;19323:1;19319:12;19361:3;19355:4;19351:14;19346:3;19343:23;19340:2;;;19369:18;;:::i;:::-;19405:13;;19266:158;-1:-1:-1;;;19266:158:84:o;19429:274::-;19469:1;19495;19485:2;;-1:-1:-1;;;19527:1:84;19520:88;19631:4;19628:1;19621:15;19659:4;19656:1;19649:15;19485:2;-1:-1:-1;19688:9:84;;19475:228::o;19708:482::-;19797:1;19840:5;19797:1;19854:330;19875:7;19865:8;19862:21;19854:330;;;19994:4;-1:-1:-1;;19922:77:84;19916:4;19913:87;19910:2;;;20003:18;;:::i;:::-;20053:7;20043:8;20039:22;20036:2;;;20073:16;;;;20036:2;20152:22;;;;20112:15;;;;19854:330;;;19858:3;19772:418;;;;;:::o;20195:140::-;20253:5;20282:47;20323:4;20313:8;20309:19;20303:4;20389:5;20419:8;20409:2;;-1:-1:-1;20460:1:84;20474:5;;20409:2;20508:4;20498:2;;-1:-1:-1;20545:1:84;20559:5;;20498:2;20590:4;20608:1;20603:59;;;;20676:1;20671:130;;;;20583:218;;20603:59;20633:1;20624:10;;20647:5;;;20671:130;20708:3;20698:8;20695:17;20692:2;;;20715:18;;:::i;:::-;-1:-1:-1;;20771:1:84;20757:16;;20786:5;;20583:218;;20885:2;20875:8;20872:16;20866:3;20860:4;20857:13;20853:36;20847:2;20837:8;20834:16;20829:2;20823:4;20820:12;20816:35;20813:77;20810:2;;;-1:-1:-1;20922:19:84;;;20954:5;;20810:2;21001:34;21026:8;21020:4;21001:34;:::i;:::-;21131:6;-1:-1:-1;;21059:79:84;21050:7;21047:92;21044:2;;;21142:18;;:::i;:::-;21180:20;;20399:807;-1:-1:-1;;;20399:807:84:o;21211:228::-;21251:7;21377:1;-1:-1:-1;;21305:74:84;21302:1;21299:81;21294:1;21287:9;21280:17;21276:105;21273:2;;;21384:18;;:::i;:::-;-1:-1:-1;21424:9:84;;21263:176::o;21444:125::-;21484:4;21512:1;21509;21506:8;21503:2;;;21517:18;;:::i;:::-;-1:-1:-1;21554:9:84;;21493:76::o;21574:221::-;21613:4;21642:10;21702;;;;21672;;21724:12;;;21721:2;;;21739:18;;:::i;:::-;21776:13;;21622:173;-1:-1:-1;;;21622:173:84:o;21800:195::-;21838:4;21875;21872:1;21868:12;21907:4;21904:1;21900:12;21932:3;21927;21924:12;21921:2;;;21939:18;;:::i;:::-;21976:13;;;21847:148;-1:-1:-1;;;21847:148:84:o;22000:195::-;22039:3;-1:-1:-1;;22063:5:84;22060:77;22057:2;;;22140:18;;:::i;:::-;-1:-1:-1;22187:1:84;22176:13;;22047:148::o;22200:201::-;22238:3;22266:10;22311:2;22304:5;22300:14;22338:2;22329:7;22326:15;22323:2;;;22344:18;;:::i;:::-;22393:1;22380:15;;22246:155;-1:-1:-1;;;22246:155:84:o;22406:175::-;22443:3;22487:4;22480:5;22476:16;22516:4;22507:7;22504:17;22501:2;;;22524:18;;:::i;:::-;22573:1;22560:15;;22451:130;-1:-1:-1;;22451:130:84:o;22586:184::-;-1:-1:-1;;;22635:1:84;22628:88;22735:4;22732:1;22725:15;22759:4;22756:1;22749:15;22775:184;-1:-1:-1;;;22824:1:84;22817:88;22924:4;22921:1;22914:15;22948:4;22945:1;22938:15;22964:184;-1:-1:-1;;;23013:1:84;23006:88;23113:4;23110:1;23103:15;23137:4;23134:1;23127:15;23153:121;23238:10;23231:5;23227:22;23220:5;23217:33;23207:2;;23264:1;23261;23254:12;23207:2;23197:77;:::o;23279:129::-;23364:18;23357:5;23353:30;23346:5;23343:41;23333:2;;23398:1;23395;23388:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1611800",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "TIERS_LENGTH()": "270",
                "calculate(address,uint32[],bytes)": "infinite",
                "drawBuffer()": "infinite",
                "getDrawBuffer()": "infinite",
                "getNormalizedBalancesForDrawIds(address,uint32[])": "infinite",
                "getPrizeDistributionSource()": "infinite",
                "prizeDistributionSource()": "infinite",
                "ticket()": "infinite"
              },
              "internal": {
                "_calculate(uint256,uint256,bytes32,uint64[] memory,struct IPrizeDistributionSource.PrizeDistribution memory)": "infinite",
                "_calculateNumberOfUserPicks(struct IPrizeDistributionSource.PrizeDistribution memory,uint256)": "infinite",
                "_calculatePrizeTierFraction(struct IPrizeDistributionSource.PrizeDistribution memory,uint256)": "infinite",
                "_calculatePrizeTierFractions(struct IPrizeDistributionSource.PrizeDistribution memory,uint8)": "infinite",
                "_calculatePrizesAwardable(uint256[] memory,bytes32,struct IDrawBeacon.Draw memory[] memory,uint64[] memory[] memory,struct IPrizeDistributionSource.PrizeDistribution memory[] memory)": "infinite",
                "_calculateTierIndex(uint256,uint256,uint256[] memory)": "infinite",
                "_createBitMasks(struct IPrizeDistributionSource.PrizeDistribution memory)": "infinite",
                "_getNormalizedBalancesAt(address,struct IDrawBeacon.Draw memory[] memory,struct IPrizeDistributionSource.PrizeDistribution memory[] memory)": "infinite",
                "_numberOfPrizesForIndex(uint8,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "TIERS_LENGTH()": "f8d0ca4c",
              "calculate(address,uint32[],bytes)": "aaca392e",
              "drawBuffer()": "ce343bb6",
              "getDrawBuffer()": "4019f2d6",
              "getNormalizedBalancesForDrawIds(address,uint32[])": "8045fbcf",
              "getPrizeDistributionSource()": "740e61a3",
              "prizeDistributionSource()": "bcc18abc",
              "ticket()": "6cc25db7"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_ticket\",\"type\":\"address\"},{\"internalType\":\"contract IDrawBuffer\",\"name\":\"_drawBuffer\",\"type\":\"address\"},{\"internalType\":\"contract IPrizeDistributionSource\",\"name\":\"_prizeDistributionSource\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IDrawBuffer\",\"name\":\"drawBuffer\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IPrizeDistributionSource\",\"name\":\"prizeDistributionSource\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract PrizeDistributor\",\"name\":\"prizeDistributor\",\"type\":\"address\"}],\"name\":\"PrizeDistributorSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"TIERS_LENGTH\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"},{\"internalType\":\"bytes\",\"name\":\"_pickIndicesForDraws\",\"type\":\"bytes\"}],\"name\":\"calculate\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"drawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getNormalizedBalancesForDrawIds\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeDistributionSource\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionSource\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"prizeDistributionSource\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionSource\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ticket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"calculate(address,uint32[],bytes)\":{\"params\":{\"_drawIds\":\"drawId array for which to calculate prize amounts for.\",\"_pickIndicesForDraws\":\"The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\",\"_user\":\"User for which to calculate prize amount.\"},\"returns\":{\"_0\":\"List of awardable prize amounts ordered by drawId.\"}},\"constructor\":{\"params\":{\"_drawBuffer\":\"The address of the draw buffer to push draws to\",\"_prizeDistributionSource\":\"PrizeDistributionSource address\",\"_ticket\":\"Ticket associated with this DrawCalculator\"}},\"getDrawBuffer()\":{\"returns\":{\"_0\":\"IDrawBuffer\"}},\"getNormalizedBalancesForDrawIds(address,uint32[])\":{\"params\":{\"_drawIds\":\"The drawIds to consider\",\"_user\":\"The users address\"},\"returns\":{\"_0\":\"Array of balances\"}},\"getPrizeDistributionSource()\":{\"returns\":{\"_0\":\"IPrizeDistributionSource\"}}},\"title\":\"PoolTogether V4 DrawCalculatorV2\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address,address)\":{\"notice\":\"Emitted when the contract is initialized\"},\"PrizeDistributorSet(address)\":{\"notice\":\"Emitted when the prizeDistributor is set/updated\"}},\"kind\":\"user\",\"methods\":{\"TIERS_LENGTH()\":{\"notice\":\"The tiers array length\"},\"calculate(address,uint32[],bytes)\":{\"notice\":\"Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\"},\"constructor\":{\"notice\":\"Constructor for DrawCalculator\"},\"drawBuffer()\":{\"notice\":\"DrawBuffer address\"},\"getDrawBuffer()\":{\"notice\":\"Read global DrawBuffer variable.\"},\"getNormalizedBalancesForDrawIds(address,uint32[])\":{\"notice\":\"Returns a users balances expressed as a fraction of the total supply over time.\"},\"getPrizeDistributionSource()\":{\"notice\":\"Read global prizeDistributionSource variable.\"},\"prizeDistributionSource()\":{\"notice\":\"The source in which the history of draw settings are stored as ring buffer.\"},\"ticket()\":{\"notice\":\"Ticket associated with DrawCalculator\"}},\"notice\":\"The DrawCalculator calculates a user's prize by matching a winning random number against their picks. A users picks are generated deterministically based on their address and balance of tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc... A user with a higher average weighted balance (during each draw period) will be given a large number of picks to choose from, and thus a higher chance to match the winning numbers.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/DrawCalculatorV2.sol\":\"DrawCalculatorV2\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Random Number Generator Interface\\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\n */\\ninterface RNGInterface {\\n  /**\\n   * @notice Emitted when a new request for a random number has been submitted\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param sender The indexed address of the sender of the request\\n   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /**\\n   * @notice Emitted when an existing request for a random number has been completed\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param randomNumber The random number produced by the 3rd-party service\\n   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /**\\n   * @notice Gets the last request id used by the RNG service\\n   * @return requestId The last request id used in the last request\\n   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /**\\n   * @notice Gets the Fee for making a Request against an RNG service\\n   * @return feeToken The address of the token that is used to pay fees\\n   * @return requestFee The fee required to be paid to make a request\\n   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /**\\n   * @notice Sends a request for a random number to the 3rd-party service\\n   * @dev Some services will complete the request immediately, others may have a time-delay\\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n   * @return requestId The ID of the request used to get the results of the RNG service\\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /**\\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\\n   * @dev For time-delayed requests, this function is used to check/confirm completion\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\\n   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /**\\n   * @notice Gets the random number produced by the 3rd-party service\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return randomNum The random number\\n   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"},\"contracts/DrawCalculatorV2.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./interfaces/ITicket.sol\\\";\\nimport \\\"./interfaces/IDrawBuffer.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionSource.sol\\\";\\nimport \\\"./interfaces/IDrawBeacon.sol\\\";\\n\\nimport \\\"./PrizeDistributor.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 DrawCalculatorV2\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawCalculator calculates a user's prize by matching a winning random number against\\n            their picks. A users picks are generated deterministically based on their address and balance\\n            of tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc...\\n            A user with a higher average weighted balance (during each draw period) will be given a large number of\\n            picks to choose from, and thus a higher chance to match the winning numbers.\\n*/\\ncontract DrawCalculatorV2 {\\n    /* ============ Variables ============ */\\n\\n    /// @notice DrawBuffer address\\n    IDrawBuffer public immutable drawBuffer;\\n\\n    /// @notice Ticket associated with DrawCalculator\\n    ITicket public immutable ticket;\\n\\n    /// @notice The source in which the history of draw settings are stored as ring buffer.\\n    IPrizeDistributionSource public immutable prizeDistributionSource;\\n\\n    /// @notice The tiers array length\\n    uint8 public constant TIERS_LENGTH = 16;\\n\\n    /* ============ Events ============ */\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionSource indexed prizeDistributionSource\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for DrawCalculator\\n     * @param _ticket Ticket associated with this DrawCalculator\\n     * @param _drawBuffer The address of the draw buffer to push draws to\\n     * @param _prizeDistributionSource PrizeDistributionSource address\\n    */\\n    constructor(\\n        ITicket _ticket,\\n        IDrawBuffer _drawBuffer,\\n        IPrizeDistributionSource _prizeDistributionSource\\n    ) {\\n        require(address(_ticket) != address(0), \\\"DrawCalc/ticket-not-zero\\\");\\n        require(address(_prizeDistributionSource) != address(0), \\\"DrawCalc/pdb-not-zero\\\");\\n        require(address(_drawBuffer) != address(0), \\\"DrawCalc/dh-not-zero\\\");\\n\\n        ticket = _ticket;\\n        drawBuffer = _drawBuffer;\\n        prizeDistributionSource = _prizeDistributionSource;\\n\\n        emit Deployed(_ticket, _drawBuffer, _prizeDistributionSource);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param _user User for which to calculate prize amount.\\n     * @param _drawIds drawId array for which to calculate prize amounts for.\\n     * @param _pickIndicesForDraws The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n    */\\n    function calculate(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _pickIndicesForDraws\\n    ) external view returns (uint256[] memory, bytes memory) {\\n        uint64[][] memory pickIndices = abi.decode(_pickIndicesForDraws, (uint64 [][]));\\n        require(pickIndices.length == _drawIds.length, \\\"DrawCalc/invalid-pick-indices-length\\\");\\n\\n        // READ list of IDrawBeacon.Draw using the drawIds from drawBuffer\\n        IDrawBeacon.Draw[] memory draws = drawBuffer.getDraws(_drawIds);\\n\\n        // READ list of IPrizeDistributionSource.PrizeDistribution using the drawIds\\n        IPrizeDistributionSource.PrizeDistribution[] memory _prizeDistributions = prizeDistributionSource\\n            .getPrizeDistributions(_drawIds);\\n\\n        // The userBalances are fractions representing their portion of the liquidity for a draw.\\n        uint256[] memory userBalances = _getNormalizedBalancesAt(_user, draws, _prizeDistributions);\\n\\n        // The users address is hashed once.\\n        bytes32 _userRandomNumber = keccak256(abi.encodePacked(_user));\\n\\n        return _calculatePrizesAwardable(\\n                userBalances,\\n                _userRandomNumber,\\n                draws,\\n                pickIndices,\\n                _prizeDistributions\\n            );\\n    }\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n    */\\n    function getDrawBuffer() external view returns (IDrawBuffer) {\\n        return drawBuffer;\\n    }\\n\\n    /**\\n     * @notice Read global prizeDistributionSource variable.\\n     * @return IPrizeDistributionSource\\n    */\\n    function getPrizeDistributionSource()\\n        external\\n        view\\n        returns (IPrizeDistributionSource)\\n    {\\n        return prizeDistributionSource;\\n    }\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param _user The users address\\n     * @param _drawIds The drawIds to consider\\n     * @return Array of balances\\n    */\\n    function getNormalizedBalancesForDrawIds(address _user, uint32[] calldata _drawIds)\\n        external\\n        view\\n        returns (uint256[] memory)\\n    {\\n        IDrawBeacon.Draw[] memory _draws = drawBuffer.getDraws(_drawIds);\\n        IPrizeDistributionSource.PrizeDistribution[] memory _prizeDistributions = prizeDistributionSource\\n            .getPrizeDistributions(_drawIds);\\n\\n        return _getNormalizedBalancesAt(_user, _draws, _prizeDistributions);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates the prizes awardable for each Draw passed.\\n     * @param _normalizedUserBalances Fractions representing the user's portion of the liquidity for each draw.\\n     * @param _userRandomNumber       Random number of the user to consider over draws\\n     * @param _draws                  List of Draws\\n     * @param _pickIndicesForDraws    Pick indices for each Draw\\n     * @param _prizeDistributions     PrizeDistribution for each Draw\\n\\n     */\\n    function _calculatePrizesAwardable(\\n        uint256[] memory _normalizedUserBalances,\\n        bytes32 _userRandomNumber,\\n        IDrawBeacon.Draw[] memory _draws,\\n        uint64[][] memory _pickIndicesForDraws,\\n        IPrizeDistributionSource.PrizeDistribution[] memory _prizeDistributions\\n    ) internal view returns (uint256[] memory prizesAwardable, bytes memory prizeCounts) {\\n\\n        uint256[] memory _prizesAwardable = new uint256[](_normalizedUserBalances.length);\\n        uint256[][] memory _prizeCounts = new uint256[][](_normalizedUserBalances.length);\\n\\n        uint64 timeNow = uint64(block.timestamp);\\n\\n        // calculate prizes awardable for each Draw passed\\n        for (uint32 drawIndex = 0; drawIndex < _draws.length; drawIndex++) {\\n            require(timeNow < _draws[drawIndex].timestamp + _prizeDistributions[drawIndex].expiryDuration, \\\"DrawCalc/draw-expired\\\");\\n\\n            uint64 totalUserPicks = _calculateNumberOfUserPicks(\\n                _prizeDistributions[drawIndex],\\n                _normalizedUserBalances[drawIndex]\\n            );\\n\\n            (_prizesAwardable[drawIndex], _prizeCounts[drawIndex]) = _calculate(\\n                _draws[drawIndex].winningRandomNumber,\\n                totalUserPicks,\\n                _userRandomNumber,\\n                _pickIndicesForDraws[drawIndex],\\n                _prizeDistributions[drawIndex]\\n            );\\n        }\\n\\n        prizeCounts = abi.encode(_prizeCounts);\\n        prizesAwardable = _prizesAwardable;\\n    }\\n\\n    /**\\n     * @notice Calculates the number of picks a user gets for a Draw, considering the normalized user balance and the PrizeDistribution.\\n     * @dev Divided by 1e18 since the normalized user balance is stored as a fixed point 18 number\\n     * @param _prizeDistribution The PrizeDistribution to consider\\n     * @param _normalizedUserBalance The normalized user balances to consider\\n     * @return The number of picks a user gets for a Draw\\n     */\\n    function _calculateNumberOfUserPicks(\\n        IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution,\\n        uint256 _normalizedUserBalance\\n    ) internal pure returns (uint64) {\\n        return uint64((_normalizedUserBalance * _prizeDistribution.numberOfPicks) / 1 ether);\\n    }\\n\\n    /**\\n     * @notice Calculates the normalized balance of a user against the total supply for timestamps\\n     * @param _user The user to consider\\n     * @param _draws The draws we are looking at\\n     * @param _prizeDistributions The prize tiers to consider (needed for draw timestamp offsets)\\n     * @return An array of normalized balances\\n     */\\n    function _getNormalizedBalancesAt(\\n        address _user,\\n        IDrawBeacon.Draw[] memory _draws,\\n        IPrizeDistributionSource.PrizeDistribution[] memory _prizeDistributions\\n    ) internal view returns (uint256[] memory) {\\n        uint256 drawsLength = _draws.length;\\n        uint64[] memory _timestampsWithStartCutoffTimes = new uint64[](drawsLength);\\n        uint64[] memory _timestampsWithEndCutoffTimes = new uint64[](drawsLength);\\n\\n        // generate timestamps with draw cutoff offsets included\\n        for (uint32 i = 0; i < drawsLength; i++) {\\n            unchecked {\\n                _timestampsWithStartCutoffTimes[i] =\\n                    _draws[i].timestamp - _prizeDistributions[i].startTimestampOffset;\\n                _timestampsWithEndCutoffTimes[i] =\\n                    _draws[i].timestamp - _prizeDistributions[i].endTimestampOffset;\\n            }\\n        }\\n\\n        uint256[] memory balances = ticket.getAverageBalancesBetween(\\n            _user,\\n            _timestampsWithStartCutoffTimes,\\n            _timestampsWithEndCutoffTimes\\n        );\\n\\n        uint256[] memory totalSupplies = ticket.getAverageTotalSuppliesBetween(\\n            _timestampsWithStartCutoffTimes,\\n            _timestampsWithEndCutoffTimes\\n        );\\n\\n        uint256[] memory normalizedBalances = new uint256[](drawsLength);\\n\\n        // divide balances by total supplies (normalize)\\n        for (uint256 i = 0; i < drawsLength; i++) {\\n            if(totalSupplies[i] == 0){\\n                normalizedBalances[i] = 0;\\n            }\\n            else {\\n                normalizedBalances[i] = (balances[i] * 1 ether) / totalSupplies[i];\\n            }\\n        }\\n\\n        return normalizedBalances;\\n    }\\n\\n    /**\\n     * @notice Calculates the prize amount for a PrizeDistribution over given picks\\n     * @param _winningRandomNumber Draw's winningRandomNumber\\n     * @param _totalUserPicks      number of picks the user gets for the Draw\\n     * @param _userRandomNumber    users randomNumber for that draw\\n     * @param _picks               users picks for that draw\\n     * @param _prizeDistribution   PrizeDistribution for that draw\\n     * @return prize (if any), prizeCounts (if any)\\n     */\\n    function _calculate(\\n        uint256 _winningRandomNumber,\\n        uint256 _totalUserPicks,\\n        bytes32 _userRandomNumber,\\n        uint64[] memory _picks,\\n        IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution\\n    ) internal pure returns (uint256 prize, uint256[] memory prizeCounts) {\\n\\n        // create bitmasks for the PrizeDistribution\\n        uint256[] memory masks = _createBitMasks(_prizeDistribution);\\n        uint32 picksLength = uint32(_picks.length);\\n        uint256[] memory _prizeCounts = new uint256[](_prizeDistribution.tiers.length);\\n\\n        uint8 maxWinningTierIndex = 0;\\n\\n        require(\\n            picksLength <= _prizeDistribution.maxPicksPerUser,\\n            \\\"DrawCalc/exceeds-max-user-picks\\\"\\n        );\\n\\n        // for each pick, find number of matching numbers and calculate prize distributions index\\n        for (uint32 index = 0; index < picksLength; index++) {\\n            require(_picks[index] < _totalUserPicks, \\\"DrawCalc/insufficient-user-picks\\\");\\n\\n            if (index > 0) {\\n                require(_picks[index] > _picks[index - 1], \\\"DrawCalc/picks-ascending\\\");\\n            }\\n\\n            // hash the user random number with the pick value\\n            uint256 randomNumberThisPick = uint256(\\n                keccak256(abi.encode(_userRandomNumber, _picks[index]))\\n            );\\n\\n            uint8 tiersIndex = _calculateTierIndex(\\n                randomNumberThisPick,\\n                _winningRandomNumber,\\n                masks\\n            );\\n\\n            // there is prize for this tier index\\n            if (tiersIndex < TIERS_LENGTH) {\\n                if (tiersIndex > maxWinningTierIndex) {\\n                    maxWinningTierIndex = tiersIndex;\\n                }\\n                _prizeCounts[tiersIndex]++;\\n            }\\n        }\\n\\n        // now calculate prizeFraction given prizeCounts\\n        uint256 prizeFraction = 0;\\n        uint256[] memory prizeTiersFractions = _calculatePrizeTierFractions(\\n            _prizeDistribution,\\n            maxWinningTierIndex\\n        );\\n\\n        // multiple the fractions by the prizeCounts and add them up\\n        for (\\n            uint256 prizeCountIndex = 0;\\n            prizeCountIndex <= maxWinningTierIndex;\\n            prizeCountIndex++\\n        ) {\\n            if (_prizeCounts[prizeCountIndex] > 0) {\\n                prizeFraction +=\\n                    prizeTiersFractions[prizeCountIndex] *\\n                    _prizeCounts[prizeCountIndex];\\n            }\\n        }\\n\\n        // return the absolute amount of prize awardable\\n        // div by 1e9 as prize tiers are base 1e9\\n        prize = (prizeFraction * _prizeDistribution.prize) / 1e9;\\n        prizeCounts = _prizeCounts;\\n    }\\n\\n    ///@notice Calculates the tier index given the random numbers and masks\\n    ///@param _randomNumberThisPick users random number for this Pick\\n    ///@param _winningRandomNumber The winning number for this draw\\n    ///@param _masks The pre-calculate bitmasks for the prizeDistributions\\n    ///@return The position within the prize tier array (0 = top prize, 1 = runner-up prize, etc)\\n    function _calculateTierIndex(\\n        uint256 _randomNumberThisPick,\\n        uint256 _winningRandomNumber,\\n        uint256[] memory _masks\\n    ) internal pure returns (uint8) {\\n        uint8 numberOfMatches = 0;\\n        uint8 masksLength = uint8(_masks.length);\\n\\n        // main number matching loop\\n        for (uint8 matchIndex = 0; matchIndex < masksLength; matchIndex++) {\\n            uint256 mask = _masks[matchIndex];\\n\\n            if ((_randomNumberThisPick & mask) != (_winningRandomNumber & mask)) {\\n                // there are no more sequential matches since this comparison is not a match\\n                if (masksLength == numberOfMatches) {\\n                    return 0;\\n                } else {\\n                    return masksLength - numberOfMatches;\\n                }\\n            }\\n\\n            // else there was a match\\n            numberOfMatches++;\\n        }\\n\\n        return masksLength - numberOfMatches;\\n    }\\n\\n    /**\\n     * @notice Create an array of bitmasks equal to the PrizeDistribution.matchCardinality length\\n     * @param _prizeDistribution The PrizeDistribution to use to calculate the masks\\n     * @return An array of bitmasks\\n     */\\n    function _createBitMasks(IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution)\\n        internal\\n        pure\\n        returns (uint256[] memory)\\n    {\\n        uint256[] memory masks = new uint256[](_prizeDistribution.matchCardinality);\\n        masks[0] =  (2**_prizeDistribution.bitRangeSize) - 1;\\n\\n        for (uint8 maskIndex = 1; maskIndex < _prizeDistribution.matchCardinality; maskIndex++) {\\n            // shift mask bits to correct position and insert in result mask array\\n            masks[maskIndex] = masks[maskIndex - 1] << _prizeDistribution.bitRangeSize;\\n        }\\n\\n        return masks;\\n    }\\n\\n    /**\\n     * @notice Calculates the expected prize fraction per PrizeDistributions and distributionIndex\\n     * @param _prizeDistribution prizeDistribution struct for Draw\\n     * @param _prizeTierIndex Index of the prize tiers array to calculate\\n     * @return returns the fraction of the total prize (fixed point 9 number)\\n     */\\n    function _calculatePrizeTierFraction(\\n        IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution,\\n        uint256 _prizeTierIndex\\n    ) internal pure returns (uint256) {\\n         // get the prize fraction at that index\\n        uint256 prizeFraction = _prizeDistribution.tiers[_prizeTierIndex];\\n\\n        // calculate number of prizes for that index\\n        uint256 numberOfPrizesForIndex = _numberOfPrizesForIndex(\\n            _prizeDistribution.bitRangeSize,\\n            _prizeTierIndex\\n        );\\n\\n        return prizeFraction / numberOfPrizesForIndex;\\n    }\\n\\n    /**\\n     * @notice Generates an array of prize tiers fractions\\n     * @param _prizeDistribution prizeDistribution struct for Draw\\n     * @param maxWinningTierIndex Max length of the prize tiers array\\n     * @return returns an array of prize tiers fractions\\n     */\\n    function _calculatePrizeTierFractions(\\n        IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution,\\n        uint8 maxWinningTierIndex\\n    ) internal pure returns (uint256[] memory) {\\n        uint256[] memory prizeDistributionFractions = new uint256[](\\n            maxWinningTierIndex + 1\\n        );\\n\\n        for (uint8 i = 0; i <= maxWinningTierIndex; i++) {\\n            prizeDistributionFractions[i] = _calculatePrizeTierFraction(\\n                _prizeDistribution,\\n                i\\n            );\\n        }\\n\\n        return prizeDistributionFractions;\\n    }\\n\\n    /**\\n     * @notice Calculates the number of prizes for a given prizeDistributionIndex\\n     * @param _bitRangeSize Bit range size for Draw\\n     * @param _prizeTierIndex Index of the prize tier array to calculate\\n     * @return returns the fraction of the total prize (base 1e18)\\n     */\\n    function _numberOfPrizesForIndex(uint8 _bitRangeSize, uint256 _prizeTierIndex)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_prizeTierIndex > 0) {\\n            return ( 1 << _bitRangeSize * _prizeTierIndex ) - ( 1 << _bitRangeSize * (_prizeTierIndex - 1) );\\n        } else {\\n            return 1;\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xa4781a1240dc9b3cc411e46e8cb4e25b1c0154dddc2a04f3081df7539563ac8a\",\"license\":\"GPL-3.0\"},\"contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionSource\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"license\":\"GPL-3.0\"},\"contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawIds to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valid drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "Deployed(address,address,address)": {
                "notice": "Emitted when the contract is initialized"
              },
              "PrizeDistributorSet(address)": {
                "notice": "Emitted when the prizeDistributor is set/updated"
              }
            },
            "kind": "user",
            "methods": {
              "TIERS_LENGTH()": {
                "notice": "The tiers array length"
              },
              "calculate(address,uint32[],bytes)": {
                "notice": "Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor."
              },
              "constructor": {
                "notice": "Constructor for DrawCalculator"
              },
              "drawBuffer()": {
                "notice": "DrawBuffer address"
              },
              "getDrawBuffer()": {
                "notice": "Read global DrawBuffer variable."
              },
              "getNormalizedBalancesForDrawIds(address,uint32[])": {
                "notice": "Returns a users balances expressed as a fraction of the total supply over time."
              },
              "getPrizeDistributionSource()": {
                "notice": "Read global prizeDistributionSource variable."
              },
              "prizeDistributionSource()": {
                "notice": "The source in which the history of draw settings are stored as ring buffer."
              },
              "ticket()": {
                "notice": "Ticket associated with DrawCalculator"
              }
            },
            "notice": "The DrawCalculator calculates a user's prize by matching a winning random number against their picks. A users picks are generated deterministically based on their address and balance of tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc... A user with a higher average weighted balance (during each draw period) will be given a large number of picks to choose from, and thus a higher chance to match the winning numbers.",
            "version": 1
          }
        }
      },
      "contracts/PrizeDistributionBuffer.sol": {
        "PrizeDistributionBuffer": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "uint8",
                  "name": "_cardinality",
                  "type": "uint8"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint8",
                  "name": "cardinality",
                  "type": "uint8"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "PrizeDistributionSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBufferCardinality",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getNewestPrizeDistribution",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                },
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getOldestPrizeDistribution",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                },
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                }
              ],
              "name": "getPrizeDistribution",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeDistributionCount",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getPrizeDistributions",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "_prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "pushPrizeDistribution",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "_prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "setPrizeDistribution",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "Deployed(uint8)": {
                "params": {
                  "cardinality": "The maximum number of records in the buffer before they begin to expire."
                }
              }
            },
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_cardinality": "Cardinality of the `bufferMetadata`",
                  "_owner": "Address of the PrizeDistributionBuffer owner"
                }
              },
              "getBufferCardinality()": {
                "returns": {
                  "_0": "Ring buffer cardinality"
                }
              },
              "getNewestPrizeDistribution()": {
                "details": "Uses nextDrawIndex to calculate the most recently added PrizeDistribution.",
                "returns": {
                  "drawId": "drawId",
                  "prizeDistribution": "prizeDistribution"
                }
              },
              "getOldestPrizeDistribution()": {
                "details": "Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId",
                "returns": {
                  "drawId": "drawId",
                  "prizeDistribution": "prizeDistribution"
                }
              },
              "getPrizeDistribution(uint32)": {
                "params": {
                  "drawId": "drawId"
                },
                "returns": {
                  "_0": "prizeDistribution"
                }
              },
              "getPrizeDistributionCount()": {
                "details": "If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestPrizeDistribution index + 1.",
                "returns": {
                  "_0": "Number of PrizeDistributions stored in the prize distributions ring buffer."
                }
              },
              "getPrizeDistributions(uint32[])": {
                "params": {
                  "drawIds": "drawIds to get PrizeDistribution for"
                },
                "returns": {
                  "_0": "prizeDistributionList"
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "details": "Only callable by the owner or manager",
                "params": {
                  "drawId": "Draw ID linked to PrizeDistribution parameters",
                  "prizeDistribution": "PrizeDistribution parameters struct"
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "details": "Retroactively updates an existing PrizeDistribution and should be thought of as a \"safety\" fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update the invalid parameters with correct parameters.",
                "returns": {
                  "_0": "drawId"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "stateVariables": {
              "MAX_CARDINALITY": {
                "details": "even with daily draws, 256 will give us over 8 months of history."
              },
              "TIERS_CEILING": {
                "details": "It's fixed point 9 because 1e9 is the largest \"1\" that fits into 2**32"
              }
            },
            "title": "PoolTogether V4 PrizeDistributionBuffer",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_3961": {
                  "entryPoint": null,
                  "id": 3961,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_8669": {
                  "entryPoint": null,
                  "id": 8669,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 162,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_uint8_fromMemory": {
                  "entryPoint": 242,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:653:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "110:352:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "156:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "165:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "168:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "158:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "158:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "158:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "131:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "140:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "127:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "127:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "152:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "123:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "123:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "120:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "181:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "200:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "185:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "273:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "282:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "285:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "275:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "275:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "275:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "232:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "243:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "258:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "263:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "254:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "254:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "267:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "250:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "250:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "239:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "239:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "229:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "229:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "222:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "222:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "219:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "298:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "308:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "322:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "347:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "358:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "343:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "343:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "337:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "337:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "326:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "414:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "423:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "426:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "416:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "416:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "416:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "384:7:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "397:7:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "406:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "393:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "393:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "381:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "381:31:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "374:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "374:39:84"
                              },
                              "nodeType": "YulIf",
                              "src": "371:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "439:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "449:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "439:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "68:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "79:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "91:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "99:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:448:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "564:87:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "574:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "586:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "597:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "582:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "582:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "616:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "631:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "639:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "627:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "627:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "609:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "609:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "609:36:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "533:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "544:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "555:4:84",
                            "type": ""
                          }
                        ],
                        "src": "467:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_uint8_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        if iszero(eq(value_1, and(value_1, 0xff))) { revert(0, 0) }\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b50604051620020b2380380620020b28339810160408190526200003491620000f2565b816200004081620000a2565b50610403805463ffffffff60401b191660ff8316680100000000000000008102919091179091556040519081527f7da7688769fade6088b3de366e63c95090bc5b0db6e9b43f043dee741d7544fe9060200160405180910390a1505062000141565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156200010657600080fd5b82516001600160a01b03811681146200011e57600080fd5b602084015190925060ff811681146200013657600080fd5b809150509250929050565b611f6180620001516000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063d0ebdbe711610066578063d0ebdbe7146101f3578063d30a5daf14610206578063e30c397814610226578063f2fde38b1461023757600080fd5b8063715018a6146101ac5780638da5cb5b146101b4578063caeef7ec146101c5578063ce336ce9146101e057600080fd5b806324c21446116100d357806324c21446146101555780633cd8e2d51461015d578063481c6a751461017d5780634e71e0c8146101a257600080fd5b80631124e1dc146100fa57806321e98ad9146101225780632439093a1461013f575b600080fd5b61010d610108366004611822565b61024a565b60405190151581526020015b60405180910390f35b61012a610317565b60405163ffffffff9091168152602001610119565b61014761039e565b604051610119929190611adb565b610147610671565b61017061016b366004611805565b610804565b6040516101199190611acc565b6002546001600160a01b03165b6040516001600160a01b039091168152602001610119565b6101aa610852565b005b6101aa6108e0565b6000546001600160a01b031661018a565b6104035468010000000000000000900463ffffffff1661012a565b61012a6101ee366004611822565b610955565b61010d610201366004611760565b610a84565b610219610214366004611790565b610afd565b60405161011991906119b9565b6001546001600160a01b031661018a565b6101aa610245366004611760565b610c08565b60003361025f6002546001600160a01b031690565b6001600160a01b0316148061028d5750336102826000546001600160a01b031690565b6001600160a01b0316145b6103045760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61030e8383610d44565b90505b92915050565b604080516060810182526104035463ffffffff80821680845264010000000083048216602085015268010000000000000000909204169282019290925260009161036357600091505090565b6020810151600363ffffffff8216610100811061038257610382611c7d565b6004020154610100900460ff1615610311575060400151919050565b6103a66116cd565b604080516060810182526104035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925260009160039061010081106103fb576103fb611c7d565b604080516101208101825260049290920292909201805460ff8082168452610100820416602084015262010000810463ffffffff9081168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a0840152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c083015282516102008101938490529192909160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116104bf5750505092845250505060039190910154602090910152815190935063ffffffff166105275760009150509091565b825160ff1661065f5760408051610120810182526003805460ff8082168452610100820416602084015263ffffffff62010000820481168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a08401526cffffffffffffffffffffffffff72010000000000000000000000000000000000009091041660c083015282516102008101938490529192909160e0840191600490601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116105ea575050509284525050506003919091015460209182015282015182519194509061064e906001611b16565b6106589190611b76565b9150509091565b6040810151815161064e906001611b16565b6106796116cd565b604080516060810182526104035463ffffffff808216808452640100000000830482166020850152680100000000000000009092048116938301939093526000926003916106ca9184919061119916565b63ffffffff1661010081106106e1576106e1611c7d565b8251604080516101208101825260049390930293909301805460ff8082168552610100820416602085015262010000810463ffffffff9081168587015266010000000000008204811660608601526a01000000000000000000008204811660808601526e01000000000000000000000000000082041660a0850152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c084015283516102008101948590529093919291849160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116107aa57905050505050508152602001600382015481525050915092509250509091565b61080c6116cd565b604080516060810182526104035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915261031190836112c9565b6001546001600160a01b031633146108ac5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016102fb565b6001546108c1906001600160a01b031661140f565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336108f36000546001600160a01b031690565b6001600160a01b0316146109495760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b610953600061140f565b565b60003361096a6000546001600160a01b031690565b6001600160a01b0316146109c05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b604080516060810182526104035463ffffffff80821683526401000000008204811660208401526801000000000000000090910481169282019290925290600090610a0f908390879061119916565b90508360038263ffffffff166101008110610a2c57610a2c611c7d565b60040201610a3a8282611cc3565b9050508463ffffffff167f2d81da839b2f3db2ed762907f74df3acecdc30461dba4813694c225ba911e1f685604051610a739190611a08565b60405180910390a250929392505050565b600033610a996000546001600160a01b031690565b6001600160a01b031614610aef5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b6103118261146c565b919050565b60408051606081810183526104035463ffffffff8082168452640100000000820481166020850152680100000000000000009091041692820192909252829060008267ffffffffffffffff811115610b5757610b57611c93565b604051908082528060200260200182016040528015610b9057816020015b610b7d6116cd565b815260200190600190039081610b755790505b50905060005b83811015610bfe57610bce83888884818110610bb457610bb4611c7d565b9050602002016020810190610bc99190611805565b6112c9565b828281518110610be057610be0611c7d565b60200260200101819052508080610bf690611c04565b915050610b96565b5095945050505050565b33610c1b6000546001600160a01b031690565b6001600160a01b031614610c715760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b6001600160a01b038116610ced5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016102fb565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6000808363ffffffff1611610d9b5760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d69642d67742d30000000000000000000000060448201526064016102fb565b6000610dad6040840160208501611883565b60ff1611610dfd5760405162461bcd60e51b815260206004820152601e60248201527f4472617743616c632f6d6174636843617264696e616c6974792d67742d30000060448201526064016102fb565b610e0d6040830160208401611883565b610e1c9060ff16610100611b3e565b61ffff16610e2d6020840184611883565b60ff161115610e7e5760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f62697452616e676553697a652d746f6f2d6c617267650060448201526064016102fb565b6000610e8d6020840184611883565b60ff1611610edd5760405162461bcd60e51b815260206004820152601a60248201527f4472617743616c632f62697452616e676553697a652d67742d3000000000000060448201526064016102fb565b6000610eef60a0840160808501611805565b63ffffffff1611610f425760405162461bcd60e51b815260206004820152601d60248201527f4472617743616c632f6d61785069636b73506572557365722d67742d3000000060448201526064016102fb565b6000610f5460c0840160a08501611805565b63ffffffff1611610fa75760405162461bcd60e51b815260206004820152601c60248201527f4472617743616c632f6578706972794475726174696f6e2d67742d300000000060448201526064016102fb565b60006010815b818110156110075760008560e0018260108110610fcc57610fcc611c7d565b602002016020810190610fdf9190611805565b63ffffffff169050610ff18185611afe565b9350508080610fff90611c04565b915050610fad565b50633b9aca0082111561105c5760405162461bcd60e51b815260206004820152601660248201527f4472617743616c632f74696572732d67742d313030250000000000000000000060448201526064016102fb565b604080516060810182526104035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925290859060039061010081106110b1576110b1611c7d565b600402016110bf8282611cc3565b506110cc90508187611558565b80516104038054602084015160409485015163ffffffff90811668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff928216640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000009094169582169590951792909217169290921790559051908716907f2d81da839b2f3db2ed762907f74df3acecdc30461dba4813694c225ba911e1f690611185908890611a08565b60405180910390a250600195945050505050565b60006111a483611643565b80156111c05750826000015163ffffffff168263ffffffff1611155b61120c5760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d64726177000000000000000000000000000000000060448201526064016102fb565b825160009061121c908490611b76565b9050836040015163ffffffff168163ffffffff161061127d5760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d647261770000000000000000000000000000000060448201526064016102fb565b600061129d856020015163ffffffff16866040015163ffffffff1661166b565b90506112c08163ffffffff168363ffffffff16876040015163ffffffff16611699565b95945050505050565b6112d16116cd565b60036112dd8484611199565b63ffffffff1661010081106112f4576112f4611c7d565b604080516101208101825260049290920292909201805460ff8082168452610100820416602084015262010000810463ffffffff9081168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a0840152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c083015282516102008101938490529192909160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116113b857905050505050508152602001600382015481525050905092915050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156114f55760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016102fb565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b604080516060810182526000808252602082018190529181019190915261157e83611643565b15806115a157508251611592906001611b16565b63ffffffff168263ffffffff16145b6115ed5760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e746967000000000000000000000000000060448201526064016102fb565b60405180606001604052808363ffffffff168152602001611622856020015163ffffffff16866040015163ffffffff166116b1565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156116645750815163ffffffff16155b1592915050565b60008161167a57506000610311565b61030e60016116898486611afe565b6116939190611b5f565b836116c1565b60006116a9836116898487611afe565b949350505050565b600061030e611693846001611afe565b600061030e8284611c3d565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915260e08101611713611720565b8152602001600081525090565b6040518061020001604052806010906020820280368337509192915050565b8035610af881611eec565b8035610af881611f0a565b8035610af881611f1c565b60006020828403121561177257600080fd5b81356001600160a01b038116811461178957600080fd5b9392505050565b600080602083850312156117a357600080fd5b823567ffffffffffffffff808211156117bb57600080fd5b818501915085601f8301126117cf57600080fd5b8135818111156117de57600080fd5b8660208260051b85010111156117f357600080fd5b60209290920196919550909350505050565b60006020828403121561181757600080fd5b813561178981611f0a565b60008082840361032081121561183757600080fd5b833561184281611f0a565b92506103007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08201121561187557600080fd5b506020830190509250929050565b60006020828403121561189557600080fd5b813561178981611f1c565b8060005b60108110156118d35781356118b881611f0a565b63ffffffff16845260209384019391909101906001016118a4565b50505050565b8060005b60108110156118d357815163ffffffff168452602093840193909101906001016118dd565b60ff815116825260ff6020820151166020830152604081015161192d604084018263ffffffff169052565b506060810151611945606084018263ffffffff169052565b50608081015161195d608084018263ffffffff169052565b5060a081015161197560a084018263ffffffff169052565b5060c081015161199660c08401826cffffffffffffffffffffffffff169052565b5060e08101516119a960e08401826118d9565b5061010001516102e09190910152565b6020808252825182820181905260009190848201906040850190845b818110156119fc576119e8838551611902565b9284019261030092909201916001016119d5565b50909695505050505050565b61030081018235611a1881611f1c565b60ff168252611a2960208401611755565b60ff166020830152611a3d6040840161174a565b63ffffffff166040830152611a546060840161174a565b63ffffffff166060830152611a6b6080840161174a565b63ffffffff166080830152611a8260a0840161174a565b63ffffffff1660a0830152611a9960c0840161173f565b6cffffffffffffffffffffffffff1660c0830152611abd60e08084019085016118a0565b6102e092830135919092015290565b61030081016103118284611902565b6103208101611aea8285611902565b63ffffffff83166103008301529392505050565b60008219821115611b1157611b11611c51565b500190565b600063ffffffff808316818516808303821115611b3557611b35611c51565b01949350505050565b600061ffff80841680611b5357611b53611c67565b92169190910492915050565b600082821015611b7157611b71611c51565b500390565b600063ffffffff83811690831681811015611b9357611b93611c51565b039392505050565b81816000805b6010811015611bfc578335611bb581611f0a565b835463ffffffff600385901b81811b801990931693909116901b1617835560209390930192600490910190601c821115611bf457600091506001830192505b600101611ba1565b505050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611c3657611c36611c51565b5060010190565b600082611c4c57611c4c611c67565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6000813561031181611eec565b6000813561031181611f0a565b8135611cce81611f1c565b60ff811690508154817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082161783556020840135611d0b81611f1c565b61ff008160081b16837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000841617178455505050611d84611d4d60408401611cb6565b82547fffffffffffffffffffffffffffffffffffffffffffffffffffff00000000ffff1660109190911b65ffffffff000016178255565b611dce611d9360608401611cb6565b82547fffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffffff1660309190911b69ffffffff00000000000016178255565b611e1c611ddd60808401611cb6565b82547fffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffffff1660509190911b6dffffffff0000000000000000000016178255565b611e6e611e2b60a08401611cb6565b82547fffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffffff1660709190911b71ffffffff000000000000000000000000000016178255565b611ecd611e7d60c08401611ca9565b82547fff00000000000000000000000000ffffffffffffffffffffffffffffffffffff1660909190911b7effffffffffffffffffffffffff00000000000000000000000000000000000016178255565b611edd60e0830160018301611b9b565b6102e082013560038201555050565b6cffffffffffffffffffffffffff81168114611f0757600080fd5b50565b63ffffffff81168114611f0757600080fd5b60ff81168114611f0757600080fdfea2646970667358221220132fa1799f3f662436d462c6e531bb3bab5097313ee0d229d38502db694a319e64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x20B2 CODESIZE SUB DUP1 PUSH3 0x20B2 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0xF2 JUMP JUMPDEST DUP2 PUSH3 0x40 DUP2 PUSH3 0xA2 JUMP JUMPDEST POP PUSH2 0x403 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0x40 SHL NOT AND PUSH1 0xFF DUP4 AND PUSH9 0x10000000000000000 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x7DA7688769FADE6088B3DE366E63C95090BC5B0DB6E9B43F043DEE741D7544FE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP PUSH3 0x141 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x106 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x11E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0x136 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x1F61 DUP1 PUSH3 0x151 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 0xF5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x1F3 JUMPI DUP1 PUSH4 0xD30A5DAF EQ PUSH2 0x206 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x226 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x237 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1AC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1B4 JUMPI DUP1 PUSH4 0xCAEEF7EC EQ PUSH2 0x1C5 JUMPI DUP1 PUSH4 0xCE336CE9 EQ PUSH2 0x1E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x24C21446 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x24C21446 EQ PUSH2 0x155 JUMPI DUP1 PUSH4 0x3CD8E2D5 EQ PUSH2 0x15D JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x1A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1124E1DC EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x21E98AD9 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x2439093A EQ PUSH2 0x13F JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10D PUSH2 0x108 CALLDATASIZE PUSH1 0x4 PUSH2 0x1822 JUMP JUMPDEST PUSH2 0x24A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x12A PUSH2 0x317 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0x147 PUSH2 0x39E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP3 SWAP2 SWAP1 PUSH2 0x1ADB JUMP JUMPDEST PUSH2 0x147 PUSH2 0x671 JUMP JUMPDEST PUSH2 0x170 PUSH2 0x16B CALLDATASIZE PUSH1 0x4 PUSH2 0x1805 JUMP JUMPDEST PUSH2 0x804 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x1ACC JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0x1AA PUSH2 0x852 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1AA PUSH2 0x8E0 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST PUSH2 0x403 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x12A JUMP JUMPDEST PUSH2 0x12A PUSH2 0x1EE CALLDATASIZE PUSH1 0x4 PUSH2 0x1822 JUMP JUMPDEST PUSH2 0x955 JUMP JUMPDEST PUSH2 0x10D PUSH2 0x201 CALLDATASIZE PUSH1 0x4 PUSH2 0x1760 JUMP JUMPDEST PUSH2 0xA84 JUMP JUMPDEST PUSH2 0x219 PUSH2 0x214 CALLDATASIZE PUSH1 0x4 PUSH2 0x1790 JUMP JUMPDEST PUSH2 0xAFD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x19B9 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST PUSH2 0x1AA PUSH2 0x245 CALLDATASIZE PUSH1 0x4 PUSH2 0x1760 JUMP JUMPDEST PUSH2 0xC08 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x25F PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x28D JUMPI POP CALLER PUSH2 0x282 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x304 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x30E DUP4 DUP4 PUSH2 0xD44 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH5 0x100000000 DUP4 DIV DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH2 0x363 JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x3 PUSH4 0xFFFFFFFF DUP3 AND PUSH2 0x100 DUP2 LT PUSH2 0x382 JUMPI PUSH2 0x382 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x4 MUL ADD SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x311 JUMPI POP PUSH1 0x40 ADD MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3A6 PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0x3FB JUMPI PUSH2 0x3FB PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP5 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x10000 DUP2 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP5 DUP7 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH19 0x1000000000000000000000000000000000000 SWAP1 DIV PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP4 ADD MSTORE DUP3 MLOAD PUSH2 0x200 DUP2 ADD SWAP4 DUP5 SWAP1 MSTORE SWAP2 SWAP3 SWAP1 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x1 DUP5 ADD SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x4BF JUMPI POP POP POP SWAP3 DUP5 MSTORE POP POP POP PUSH1 0x3 SWAP2 SWAP1 SWAP2 ADD SLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MSTORE DUP2 MLOAD SWAP1 SWAP4 POP PUSH4 0xFFFFFFFF AND PUSH2 0x527 JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 SWAP2 JUMP JUMPDEST DUP3 MLOAD PUSH1 0xFF AND PUSH2 0x65F JUMPI PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x3 DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP5 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP5 ADD MSTORE PUSH4 0xFFFFFFFF PUSH3 0x10000 DUP3 DIV DUP2 AND DUP5 DUP7 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH19 0x1000000000000000000000000000000000000 SWAP1 SWAP2 DIV AND PUSH1 0xC0 DUP4 ADD MSTORE DUP3 MLOAD PUSH2 0x200 DUP2 ADD SWAP4 DUP5 SWAP1 MSTORE SWAP2 SWAP3 SWAP1 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x4 SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x5EA JUMPI POP POP POP SWAP3 DUP5 MSTORE POP POP POP PUSH1 0x3 SWAP2 SWAP1 SWAP2 ADD SLOAD PUSH1 0x20 SWAP2 DUP3 ADD MSTORE DUP3 ADD MLOAD DUP3 MLOAD SWAP2 SWAP5 POP SWAP1 PUSH2 0x64E SWAP1 PUSH1 0x1 PUSH2 0x1B16 JUMP JUMPDEST PUSH2 0x658 SWAP2 SWAP1 PUSH2 0x1B76 JUMP JUMPDEST SWAP2 POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0x64E SWAP1 PUSH1 0x1 PUSH2 0x1B16 JUMP JUMPDEST PUSH2 0x679 PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH5 0x100000000 DUP4 DIV DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV DUP2 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x0 SWAP3 PUSH1 0x3 SWAP2 PUSH2 0x6CA SWAP2 DUP5 SWAP2 SWAP1 PUSH2 0x1199 AND JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x6E1 JUMPI PUSH2 0x6E1 PUSH2 0x1C7D JUMP JUMPDEST DUP3 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP4 SWAP1 SWAP4 MUL SWAP4 SWAP1 SWAP4 ADD DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP6 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP6 ADD MSTORE PUSH3 0x10000 DUP2 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP6 DUP8 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP7 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP7 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP6 ADD MSTORE PUSH19 0x1000000000000000000000000000000000000 SWAP1 DIV PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP5 ADD MSTORE DUP4 MLOAD PUSH2 0x200 DUP2 ADD SWAP5 DUP6 SWAP1 MSTORE SWAP1 SWAP4 SWAP2 SWAP3 SWAP2 DUP5 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x1 DUP5 ADD SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x7AA JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP2 POP SWAP3 POP SWAP3 POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH2 0x80C PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x311 SWAP1 DUP4 PUSH2 0x12C9 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x8AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x8C1 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x140F JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x8F3 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x949 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH2 0x953 PUSH1 0x0 PUSH2 0x140F JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x96A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV DUP2 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 PUSH1 0x0 SWAP1 PUSH2 0xA0F SWAP1 DUP4 SWAP1 DUP8 SWAP1 PUSH2 0x1199 AND JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x3 DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0xA2C JUMPI PUSH2 0xA2C PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x4 MUL ADD PUSH2 0xA3A DUP3 DUP3 PUSH2 0x1CC3 JUMP JUMPDEST SWAP1 POP POP DUP5 PUSH4 0xFFFFFFFF AND PUSH32 0x2D81DA839B2F3DB2ED762907F74DF3ACECDC30461DBA4813694C225BA911E1F6 DUP6 PUSH1 0x40 MLOAD PUSH2 0xA73 SWAP2 SWAP1 PUSH2 0x1A08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP SWAP3 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xA99 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xAEF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH2 0x311 DUP3 PUSH2 0x146C JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 DUP2 ADD DUP4 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP5 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP3 SWAP1 PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB57 JUMPI PUSH2 0xB57 PUSH2 0x1C93 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xB90 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0xB7D PUSH2 0x16CD JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xB75 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xBFE JUMPI PUSH2 0xBCE DUP4 DUP9 DUP9 DUP5 DUP2 DUP2 LT PUSH2 0xBB4 JUMPI PUSH2 0xBB4 PUSH2 0x1C7D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xBC9 SWAP2 SWAP1 PUSH2 0x1805 JUMP JUMPDEST PUSH2 0x12C9 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xBE0 JUMPI PUSH2 0xBE0 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0xBF6 SWAP1 PUSH2 0x1C04 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xB96 JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST CALLER PUSH2 0xC1B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC71 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xCED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH4 0xFFFFFFFF AND GT PUSH2 0xD9B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F647261772D69642D67742D300000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDAD PUSH1 0x40 DUP5 ADD PUSH1 0x20 DUP6 ADD PUSH2 0x1883 JUMP JUMPDEST PUSH1 0xFF AND GT PUSH2 0xDFD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F6D6174636843617264696E616C6974792D67742D300000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH2 0xE0D PUSH1 0x40 DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0x1883 JUMP JUMPDEST PUSH2 0xE1C SWAP1 PUSH1 0xFF AND PUSH2 0x100 PUSH2 0x1B3E JUMP JUMPDEST PUSH2 0xFFFF AND PUSH2 0xE2D PUSH1 0x20 DUP5 ADD DUP5 PUSH2 0x1883 JUMP JUMPDEST PUSH1 0xFF AND GT ISZERO PUSH2 0xE7E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F62697452616E676553697A652D746F6F2D6C6172676500 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE8D PUSH1 0x20 DUP5 ADD DUP5 PUSH2 0x1883 JUMP JUMPDEST PUSH1 0xFF AND GT PUSH2 0xEDD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F62697452616E676553697A652D67742D30000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEEF PUSH1 0xA0 DUP5 ADD PUSH1 0x80 DUP6 ADD PUSH2 0x1805 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND GT PUSH2 0xF42 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F6D61785069636B73506572557365722D67742D30000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF54 PUSH1 0xC0 DUP5 ADD PUSH1 0xA0 DUP6 ADD PUSH2 0x1805 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND GT PUSH2 0xFA7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F6578706972794475726174696F6E2D67742D3000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x10 DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1007 JUMPI PUSH1 0x0 DUP6 PUSH1 0xE0 ADD DUP3 PUSH1 0x10 DUP2 LT PUSH2 0xFCC JUMPI PUSH2 0xFCC PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xFDF SWAP2 SWAP1 PUSH2 0x1805 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH2 0xFF1 DUP2 DUP6 PUSH2 0x1AFE JUMP JUMPDEST SWAP4 POP POP DUP1 DUP1 PUSH2 0xFFF SWAP1 PUSH2 0x1C04 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xFAD JUMP JUMPDEST POP PUSH4 0x3B9ACA00 DUP3 GT ISZERO PUSH2 0x105C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F74696572732D67742D3130302500000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP6 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0x10B1 JUMPI PUSH2 0x10B1 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x4 MUL ADD PUSH2 0x10BF DUP3 DUP3 PUSH2 0x1CC3 JUMP JUMPDEST POP PUSH2 0x10CC SWAP1 POP DUP2 DUP8 PUSH2 0x1558 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x403 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP5 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP3 DUP3 AND PUSH5 0x100000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000 SWAP1 SWAP5 AND SWAP6 DUP3 AND SWAP6 SWAP1 SWAP6 OR SWAP3 SWAP1 SWAP3 OR AND SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE SWAP1 MLOAD SWAP1 DUP8 AND SWAP1 PUSH32 0x2D81DA839B2F3DB2ED762907F74DF3ACECDC30461DBA4813694C225BA911E1F6 SWAP1 PUSH2 0x1185 SWAP1 DUP9 SWAP1 PUSH2 0x1A08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11A4 DUP4 PUSH2 0x1643 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x11C0 JUMPI POP DUP3 PUSH1 0x0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x120C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6675747572652D647261770000000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST DUP3 MLOAD PUSH1 0x0 SWAP1 PUSH2 0x121C SWAP1 DUP5 SWAP1 PUSH2 0x1B76 JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x127D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F657870697265642D6472617700000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0x129D DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x166B JUMP JUMPDEST SWAP1 POP PUSH2 0x12C0 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x1699 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x12D1 PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x3 PUSH2 0x12DD DUP5 DUP5 PUSH2 0x1199 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x12F4 JUMPI PUSH2 0x12F4 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP5 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x10000 DUP2 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP5 DUP7 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH19 0x1000000000000000000000000000000000000 SWAP1 DIV PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP4 ADD MSTORE DUP3 MLOAD PUSH2 0x200 DUP2 ADD SWAP4 DUP5 SWAP1 MSTORE SWAP2 SWAP3 SWAP1 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x1 DUP5 ADD SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x13B8 JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x14F5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x157E DUP4 PUSH2 0x1643 JUMP JUMPDEST ISZERO DUP1 PUSH2 0x15A1 JUMPI POP DUP3 MLOAD PUSH2 0x1592 SWAP1 PUSH1 0x1 PUSH2 0x1B16 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND EQ JUMPDEST PUSH2 0x15ED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6D7573742D62652D636F6E7469670000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1622 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x16B1 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x0 EQ DUP1 ISZERO PUSH2 0x1664 JUMPI POP DUP2 MLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x167A JUMPI POP PUSH1 0x0 PUSH2 0x311 JUMP JUMPDEST PUSH2 0x30E PUSH1 0x1 PUSH2 0x1689 DUP5 DUP7 PUSH2 0x1AFE JUMP JUMPDEST PUSH2 0x1693 SWAP2 SWAP1 PUSH2 0x1B5F JUMP JUMPDEST DUP4 PUSH2 0x16C1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16A9 DUP4 PUSH2 0x1689 DUP5 DUP8 PUSH2 0x1AFE JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30E PUSH2 0x1693 DUP5 PUSH1 0x1 PUSH2 0x1AFE JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30E DUP3 DUP5 PUSH2 0x1C3D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xC0 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xE0 DUP2 ADD PUSH2 0x1713 PUSH2 0x1720 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x200 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x10 SWAP1 PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP SWAP2 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0xAF8 DUP2 PUSH2 0x1EEC JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0xAF8 DUP2 PUSH2 0x1F0A JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0xAF8 DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1772 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1789 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x17A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x17BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x17CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x17DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x17F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1817 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1789 DUP2 PUSH2 0x1F0A JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 SUB PUSH2 0x320 DUP2 SLT ISZERO PUSH2 0x1837 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x1842 DUP2 PUSH2 0x1F0A JUMP JUMPDEST SWAP3 POP PUSH2 0x300 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 DUP3 ADD SLT ISZERO PUSH2 0x1875 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1895 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1789 DUP2 PUSH2 0x1F1C JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x18D3 JUMPI DUP2 CALLDATALOAD PUSH2 0x18B8 DUP2 PUSH2 0x1F0A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x18A4 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x18D3 JUMPI DUP2 MLOAD PUSH4 0xFFFFFFFF AND DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x18DD JUMP JUMPDEST PUSH1 0xFF DUP2 MLOAD AND DUP3 MSTORE PUSH1 0xFF PUSH1 0x20 DUP3 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x192D PUSH1 0x40 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x1945 PUSH1 0x60 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x80 DUP2 ADD MLOAD PUSH2 0x195D PUSH1 0x80 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xA0 DUP2 ADD MLOAD PUSH2 0x1975 PUSH1 0xA0 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xC0 DUP2 ADD MLOAD PUSH2 0x1996 PUSH1 0xC0 DUP5 ADD DUP3 PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x19A9 PUSH1 0xE0 DUP5 ADD DUP3 PUSH2 0x18D9 JUMP JUMPDEST POP PUSH2 0x100 ADD MLOAD PUSH2 0x2E0 SWAP2 SWAP1 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x19FC JUMPI PUSH2 0x19E8 DUP4 DUP6 MLOAD PUSH2 0x1902 JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH2 0x300 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x19D5 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD DUP3 CALLDATALOAD PUSH2 0x1A18 DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH1 0xFF AND DUP3 MSTORE PUSH2 0x1A29 PUSH1 0x20 DUP5 ADD PUSH2 0x1755 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1A3D PUSH1 0x40 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x1A54 PUSH1 0x60 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1A6B PUSH1 0x80 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x1A82 PUSH1 0xA0 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0xA0 DUP4 ADD MSTORE PUSH2 0x1A99 PUSH1 0xC0 DUP5 ADD PUSH2 0x173F JUMP JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP4 ADD MSTORE PUSH2 0x1ABD PUSH1 0xE0 DUP1 DUP5 ADD SWAP1 DUP6 ADD PUSH2 0x18A0 JUMP JUMPDEST PUSH2 0x2E0 SWAP3 DUP4 ADD CALLDATALOAD SWAP2 SWAP1 SWAP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0x311 DUP3 DUP5 PUSH2 0x1902 JUMP JUMPDEST PUSH2 0x320 DUP2 ADD PUSH2 0x1AEA DUP3 DUP6 PUSH2 0x1902 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP4 AND PUSH2 0x300 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1B11 JUMPI PUSH2 0x1B11 PUSH2 0x1C51 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1B35 JUMPI PUSH2 0x1B35 PUSH2 0x1C51 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFFFF DUP1 DUP5 AND DUP1 PUSH2 0x1B53 JUMPI PUSH2 0x1B53 PUSH2 0x1C67 JUMP JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1B71 JUMPI PUSH2 0x1B71 PUSH2 0x1C51 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1B93 JUMPI PUSH2 0x1B93 PUSH2 0x1C51 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP2 DUP2 PUSH1 0x0 DUP1 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x1BFC JUMPI DUP4 CALLDATALOAD PUSH2 0x1BB5 DUP2 PUSH2 0x1F0A JUMP JUMPDEST DUP4 SLOAD PUSH4 0xFFFFFFFF PUSH1 0x3 DUP6 SWAP1 SHL DUP2 DUP2 SHL DUP1 NOT SWAP1 SWAP4 AND SWAP4 SWAP1 SWAP2 AND SWAP1 SHL AND OR DUP4 SSTORE PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD SWAP3 PUSH1 0x4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1C DUP3 GT ISZERO PUSH2 0x1BF4 JUMPI PUSH1 0x0 SWAP2 POP PUSH1 0x1 DUP4 ADD SWAP3 POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x1BA1 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1C36 JUMPI PUSH2 0x1C36 PUSH2 0x1C51 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1C4C JUMPI PUSH2 0x1C4C PUSH2 0x1C67 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD PUSH2 0x311 DUP2 PUSH2 0x1EEC JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD PUSH2 0x311 DUP2 PUSH2 0x1F0A JUMP JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1CCE DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH1 0xFF DUP2 AND SWAP1 POP DUP2 SLOAD DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 DUP3 AND OR DUP4 SSTORE PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x1D0B DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH2 0xFF00 DUP2 PUSH1 0x8 SHL AND DUP4 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000 DUP5 AND OR OR DUP5 SSTORE POP POP POP PUSH2 0x1D84 PUSH2 0x1D4D PUSH1 0x40 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFF AND PUSH1 0x10 SWAP2 SWAP1 SWAP2 SHL PUSH6 0xFFFFFFFF0000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1DCE PUSH2 0x1D93 PUSH1 0x60 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFF AND PUSH1 0x30 SWAP2 SWAP1 SWAP2 SHL PUSH10 0xFFFFFFFF000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1E1C PUSH2 0x1DDD PUSH1 0x80 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFF AND PUSH1 0x50 SWAP2 SWAP1 SWAP2 SHL PUSH14 0xFFFFFFFF00000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1E6E PUSH2 0x1E2B PUSH1 0xA0 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x70 SWAP2 SWAP1 SWAP2 SHL PUSH18 0xFFFFFFFF0000000000000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1ECD PUSH2 0x1E7D PUSH1 0xC0 DUP5 ADD PUSH2 0x1CA9 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFF00000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x90 SWAP2 SWAP1 SWAP2 SHL PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1EDD PUSH1 0xE0 DUP4 ADD PUSH1 0x1 DUP4 ADD PUSH2 0x1B9B JUMP JUMPDEST PUSH2 0x2E0 DUP3 ADD CALLDATALOAD PUSH1 0x3 DUP3 ADD SSTORE POP POP JUMP JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F07 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F07 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1F07 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SGT 0x2F LOG1 PUSH26 0x9F3F662436D462C6E531BB3BAB5097313EE0D229D38502DB694A BALANCE SWAP15 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "904:8038:33:-:0;;;2191:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2247:6;1648:24:22;2247:6:33;1648:9:22;:24::i;:::-;-1:-1:-1;2265:14:33::1;:41:::0;;-1:-1:-1;;;;2265:41:33::1;;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;2321:22:::1;::::0;609:36:84;;;2321:22:33::1;::::0;597:2:84;582:18;2321:22:33::1;;;;;;;2191:159:::0;;904:8038;;3470:174:22;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;;;;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:448:84:-;91:6;99;152:2;140:9;131:7;127:23;123:32;120:2;;;168:1;165;158:12;120:2;194:16;;-1:-1:-1;;;;;239:31:84;;229:42;;219:2;;285:1;282;275:12;219:2;358;343:18;;337:25;308:5;;-1:-1:-1;406:4:84;393:18;;381:31;;371:2;;426:1;423;416:12;371:2;449:7;439:17;;;110:352;;;;;:::o;564:87::-;904:8038:33;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_getPrizeDistribution_8982": {
                  "entryPoint": 4809,
                  "id": 8982,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_pushPrizeDistribution_9112": {
                  "entryPoint": 3396,
                  "id": 9112,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_setManager_3896": {
                  "entryPoint": 5228,
                  "id": 3896,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_4058": {
                  "entryPoint": 5135,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_4038": {
                  "entryPoint": 2130,
                  "id": 4038,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getBufferCardinality_8680": {
                  "entryPoint": null,
                  "id": 8680,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getIndex_12353": {
                  "entryPoint": 4505,
                  "id": 12353,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getNewestPrizeDistribution_8830": {
                  "entryPoint": 1649,
                  "id": 8830,
                  "parameterSlots": 0,
                  "returnSlots": 2
                },
                "@getOldestPrizeDistribution_8900": {
                  "entryPoint": 926,
                  "id": 8900,
                  "parameterSlots": 0,
                  "returnSlots": 2
                },
                "@getPrizeDistributionCount_8801": {
                  "entryPoint": 791,
                  "id": 8801,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizeDistribution_8696": {
                  "entryPoint": 2052,
                  "id": 8696,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getPrizeDistributions_8759": {
                  "entryPoint": 2813,
                  "id": 8759,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@isInitialized_12246": {
                  "entryPoint": 5699,
                  "id": 12246,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@manager_3850": {
                  "entryPoint": null,
                  "id": 3850,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@newestIndex_12830": {
                  "entryPoint": 5739,
                  "id": 12830,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nextIndex_12848": {
                  "entryPoint": 5809,
                  "id": 12848,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@offset_12803": {
                  "entryPoint": 5785,
                  "id": 12803,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@owner_3970": {
                  "entryPoint": null,
                  "id": 3970,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3979": {
                  "entryPoint": null,
                  "id": 3979,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pushPrizeDistribution_8920": {
                  "entryPoint": 586,
                  "id": 8920,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@push_12290": {
                  "entryPoint": 5464,
                  "id": 12290,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@renounceOwnership_3993": {
                  "entryPoint": 2272,
                  "id": 3993,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setManager_3865": {
                  "entryPoint": 2692,
                  "id": 3865,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setPrizeDistribution_8962": {
                  "entryPoint": 2389,
                  "id": 8962,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@transferOwnership_4020": {
                  "entryPoint": 3080,
                  "id": 4020,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@wrap_12781": {
                  "entryPoint": 5825,
                  "id": 12781,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 5984,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr": {
                  "entryPoint": 6032,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint32": {
                  "entryPoint": 6149,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32t_struct$_PrizeDistribution_$11491_calldata_ptr": {
                  "entryPoint": 6178,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint8": {
                  "entryPoint": 6275,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint104": {
                  "entryPoint": 5951,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint32": {
                  "entryPoint": 5962,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint8": {
                  "entryPoint": 5973,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_array_uint32": {
                  "entryPoint": 6361,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_array_uint32_calldata": {
                  "entryPoint": 6304,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_struct_PrizeDistribution": {
                  "entryPoint": 6402,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6585,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1bc7b5f9a3e52be66e1bae40b5347daec05c71148e3f246fa48afaba5869a377__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_32188c2fb9458b9b04ecd2ddd4a1cbda73bdc5968bafea54a4dcec20c7e49c08__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3e244583f2350f45bf6794161f3c9cb628d7d43da05a7064d2adf7a404a03a5b__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6b68b17181f2f490640a09147a6076477f33dd49ea7fd8e2efdb9f888b23e742__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8b507ddce75cdc34f90fa301a75f6fd1f75fa27a9f9dbdf6fd484dc84d5dad03__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_97c809ce43113f425cd71edfa67f5c73daca158347912ba9abee6a2d18a62d38__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b2ca6e48351b23d5b5f68ad1fc621ced7f4d101632cc01f2530db3cc6923f1ac__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeDistribution_$11491_calldata_ptr__to_t_struct$_PrizeDistribution_$11491_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6664,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptr__to_t_struct$_PrizeDistribution_$11491_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6860,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptr_t_uint32__to_t_struct$_PrizeDistribution_$11491_memory_ptr_t_uint32__fromStack_reversed": {
                  "entryPoint": 6875,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_uint104": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_uint8": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "checked_add_t_uint256": {
                  "entryPoint": 6910,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint32": {
                  "entryPoint": 6934,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint16": {
                  "entryPoint": 6974,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 7007,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 7030,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_array_to_storage_from_array_uint32_calldata_to_array_uint": {
                  "entryPoint": 7067,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "increment_t_uint256": {
                  "entryPoint": 7172,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "mod_t_uint256": {
                  "entryPoint": 7229,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 7249,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x12": {
                  "entryPoint": 7271,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 7293,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 7315,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "read_from_calldatat_uint104": {
                  "entryPoint": 7337,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "read_from_calldatat_uint32": {
                  "entryPoint": 7350,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "update_storage_value_offset_0t_struct$_PrizeDistribution_$11491_calldata_ptr_to_t_struct$_PrizeDistribution_$11491_storage": {
                  "entryPoint": 7363,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "update_storage_value_offset_10t_uint32_to_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "update_storage_value_offset_2t_uint32_to_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "update_storage_value_offsett_uint104_to_uint104": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "update_storage_value_offsett_uint32_to_t_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "update_storage_value_offsett_uint32_to_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "validator_revert_uint104": {
                  "entryPoint": 7916,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint32": {
                  "entryPoint": 7946,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint8": {
                  "entryPoint": 7964,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:19379:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:85:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "136:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "111:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "111:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "111:31:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:134:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "201:84:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "211:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "233:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "220:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "220:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "211:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "273:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "249:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "249:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "249:30:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "180:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "191:5:84",
                            "type": ""
                          }
                        ],
                        "src": "153:132:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "337:83:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "347:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "369:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "356:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "347:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "408:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "385:22:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "385:29:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "385:29:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "316:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "327:5:84",
                            "type": ""
                          }
                        ],
                        "src": "290:130:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "495:239:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "541:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "550:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "553:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "543:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "543:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "543:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "516:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "525:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "512:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "512:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "537:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "508:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "508:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "505:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "566:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "592:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "579:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "579:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "570:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "688:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "697:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "700:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "690:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "690:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "690:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "624:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "635:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "642:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "631:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "631:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "621:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "621:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "614:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "614:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "611:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "713:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "723:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "713:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "461:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "472:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "484:6:84",
                            "type": ""
                          }
                        ],
                        "src": "425:309:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "843:510:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "889:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "898:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "901:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "891:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "891:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "891:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "864:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "873:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "860:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "860:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "885:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "853:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "914:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "941:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "928:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "928:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "918:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "960:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "970:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "964:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1015:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1024:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1027:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1017:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1017:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1017:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1003:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1011:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1000:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1000:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "997:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1040:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1054:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1065:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1050:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1050:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1044:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1120:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1129:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1132:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1122:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1122:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1122:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1099:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1103:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1095:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1095:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1110:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1091:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1091:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1084:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1084:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1081:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1145:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1172:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1159:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1159:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1149:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1202:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1211:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1214:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1204:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1204:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1204:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1190:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1198:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1187:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1187:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1184:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1276:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1285:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1288:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1278:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1278:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1278:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1241:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1249:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1252:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1245:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1245:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1237:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1237:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1262:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:32:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1267:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1230:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1230:45:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1227:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1301:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1315:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1319:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1311:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1311:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1301:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1331:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1341:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1331:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "801:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "812:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "824:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "832:6:84",
                            "type": ""
                          }
                        ],
                        "src": "739:614:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1427:176:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1473:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1482:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1485:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1475:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1475:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1475:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1448:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1457:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1444:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1444:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1469:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1440:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1440:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1437:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1498:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1524:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1511:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1511:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1502:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1567:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1543:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1543:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1543:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1582:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1592:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1582:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1393:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1404:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1416:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1358:245:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1732:349:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1742:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1756:7:84"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1765:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1752:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1752:23:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1746:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1800:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1809:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1812:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1802:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1802:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1802:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1791:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1795:3:84",
                                    "type": "",
                                    "value": "800"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1787:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1787:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1784:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1825:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1851:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1838:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1838:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1829:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1894:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1870:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1870:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1870:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1909:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1919:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1909:6:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2022:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2031:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2034:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2024:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2024:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2024:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1944:2:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1948:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1940:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1940:75:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2017:3:84",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1936:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1936:85:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1933:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2047:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2061:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2072:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2057:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2057:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2047:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_struct$_PrizeDistribution_$11491_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1690:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1701:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1713:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1721:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1608:473:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2154:175:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2200:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2209:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2212:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2202:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2202:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2202:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2175:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2184:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2171:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2171:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2196:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2167:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2167:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2164:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2225:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2251:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2238:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2238:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2229:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2293:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "2270:22:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2270:29:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2270:29:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2308:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2318:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2308:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2120:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2131:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2143:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2086:243:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2392:380:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2402:10:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "2409:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "2402:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2421:19:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2435:5:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "2425:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2449:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2458:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "2453:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2515:251:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "2529:35:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "2557:6:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "2544:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2544:20:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulTypedName",
                                        "src": "2533:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2601:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "2577:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2577:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2577:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "2629:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "value_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "2638:7:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2647:10:84",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "2634:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2634:24:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2622:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2622:37:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2622:37:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "2672:14:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "2682:4:84",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "2676:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2699:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "2710:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2715:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2706:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2706:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2699:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2731:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "2745:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2753:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2741:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2741:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2731:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "2479:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2482:4:84",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2476:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2476:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "2488:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2490:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "2499:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2502:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2495:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2495:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "2490:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "2472:3:84",
                                "statements": []
                              },
                              "src": "2468:298:84"
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint32_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2376:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2383:3:84",
                            "type": ""
                          }
                        ],
                        "src": "2334:438:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2826:293:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2836:10:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "2843:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "2836:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2855:19:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2869:5:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "2859:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2883:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2892:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "2887:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2949:164:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "2970:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2985:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "2979:5:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "2979:13:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2994:10:84",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "2975:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2975:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2963:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2963:43:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2963:43:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "3019:14:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "3029:4:84",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "3023:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3046:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "3057:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3062:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3053:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3053:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3046:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3078:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "3092:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3100:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3088:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3088:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3078:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "2913:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2916:4:84",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2910:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2910:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "2922:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2924:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "2933:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2936:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2929:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2929:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "2924:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "2906:3:84",
                                "statements": []
                              },
                              "src": "2902:211:84"
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2810:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2817:3:84",
                            "type": ""
                          }
                        ],
                        "src": "2777:342:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3185:854:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3202:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "3217:5:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3211:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3211:12:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3225:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3207:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3207:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3195:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3195:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3195:36:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3251:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3256:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3247:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3247:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3277:5:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3284:4:84",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3273:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3273:16:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3267:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3267:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3292:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3263:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3263:34:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3240:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3240:58:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3240:58:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3307:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3337:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3344:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3333:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3333:16:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3327:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3327:23:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "3311:12:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3377:12:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3395:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3400:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3391:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3391:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3359:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3359:47:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3359:47:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3415:45:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3447:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3454:4:84",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3443:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3443:16:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3437:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3437:23:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3419:14:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3487:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3507:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3512:4:84",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3503:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3503:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3469:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3469:49:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3469:49:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3527:45:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3559:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3566:4:84",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3555:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3555:16:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3549:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3549:23:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3531:14:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3599:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3619:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3624:4:84",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3615:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3615:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3581:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3581:49:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3581:49:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3639:45:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3671:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3678:4:84",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3667:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3667:16:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3661:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3661:23:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_3",
                                  "nodeType": "YulTypedName",
                                  "src": "3643:14:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3711:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3731:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3736:4:84",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3727:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3727:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3693:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3693:49:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3693:49:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3751:45:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3783:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3790:4:84",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3779:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3779:16:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3773:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3773:23:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_4",
                                  "nodeType": "YulTypedName",
                                  "src": "3755:14:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3824:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3844:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3849:4:84",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3840:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3840:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "3805:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3805:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3805:50:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3864:45:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3896:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3903:4:84",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3892:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3892:16:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3886:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3886:23:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_5",
                                  "nodeType": "YulTypedName",
                                  "src": "3868:14:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_5",
                                    "nodeType": "YulIdentifier",
                                    "src": "3942:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3962:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3967:4:84",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3958:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3958:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3918:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3918:55:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3918:55:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3993:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3998:6:84",
                                        "type": "",
                                        "value": "0x02e0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3989:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3989:16:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4017:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4024:6:84",
                                            "type": "",
                                            "value": "0x0100"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4013:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4013:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "4007:5:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4007:25:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3982:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3982:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3982:51:84"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_PrizeDistribution",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3169:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3176:3:84",
                            "type": ""
                          }
                        ],
                        "src": "3124:915:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4088:69:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4105:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4114:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4121:28:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4110:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4110:40:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4098:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4098:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4098:53:84"
                            }
                          ]
                        },
                        "name": "abi_encode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4072:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4079:3:84",
                            "type": ""
                          }
                        ],
                        "src": "4044:113:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4205:51:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4222:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4231:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4238:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4227:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4227:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4215:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4215:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4215:35:84"
                            }
                          ]
                        },
                        "name": "abi_encode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4189:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4196:3:84",
                            "type": ""
                          }
                        ],
                        "src": "4162:94:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4303:33:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4312:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4321:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4328:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4317:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4317:16:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4305:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4305:29:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4305:29:84"
                            }
                          ]
                        },
                        "name": "abi_encode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4287:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4294:3:84",
                            "type": ""
                          }
                        ],
                        "src": "4261:75:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4442:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4452:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4464:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4475:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4460:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4460:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4452:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4494:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4509:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4517:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4505:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4505:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4487:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4487:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4487:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4411:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4422:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4433:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4341:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4795:514:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4805:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4815:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4809:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4826:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4844:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4855:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4840:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4840:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4830:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4874:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4885:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4867:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4867:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4867:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4897:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "4908:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "4901:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4923:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4943:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4937:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4937:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4927:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4966:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4974:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4959:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4959:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4959:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4990:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5001:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5012:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4997:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4997:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "4990:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5024:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5042:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5050:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5038:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5038:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "5028:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5062:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5071:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "5066:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5130:153:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "5186:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "5180:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5180:13:84"
                                        },
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "5195:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_struct_PrizeDistribution",
                                        "nodeType": "YulIdentifier",
                                        "src": "5144:35:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5144:55:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5144:55:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5212:23:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "5223:3:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5228:6:84",
                                          "type": "",
                                          "value": "0x0300"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5219:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5219:16:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5212:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5248:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "5262:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5270:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5258:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5258:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "5248:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "5092:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5095:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5089:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5089:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "5103:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5105:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "5114:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5117:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5110:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5110:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "5105:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "5085:3:84",
                                "statements": []
                              },
                              "src": "5081:202:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5292:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "5300:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5292:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4764:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4775:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4786:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4572:737:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5409:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5419:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5431:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5442:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5427:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5427:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5419:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5461:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "5486:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "5479:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5479:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "5472:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5472:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5454:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5454:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5454:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5378:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5389:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5400:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5314:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5680:176:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5697:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5708:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5690:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5690:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5690:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5731:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5742:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5727:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5727:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5747:2:84",
                                    "type": "",
                                    "value": "26"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5720:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5720:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5720:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5770:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5781:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5766:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5766:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f62697452616e676553697a652d67742d30",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5786:28:84",
                                    "type": "",
                                    "value": "DrawCalc/bitRangeSize-gt-0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5759:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5759:56:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5759:56:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5824:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5836:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5847:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5832:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5832:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5824:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1bc7b5f9a3e52be66e1bae40b5347daec05c71148e3f246fa48afaba5869a377__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5657:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5671:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5506:350:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6035:172:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6052:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6063:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6045:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6045:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6045:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6086:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6097:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6082:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6082:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6102:2:84",
                                    "type": "",
                                    "value": "22"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6075:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6075:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6075:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6125:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6136:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6121:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6121:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f74696572732d67742d31303025",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6141:24:84",
                                    "type": "",
                                    "value": "DrawCalc/tiers-gt-100%"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6114:52:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6114:52:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6175:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6187:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6198:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6183:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6183:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6175:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_32188c2fb9458b9b04ecd2ddd4a1cbda73bdc5968bafea54a4dcec20c7e49c08__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6012:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6026:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5861:346:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6386:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6403:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6414:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6396:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6396:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6396:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6437:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6448:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6433:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6433:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6453:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6426:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6426:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6426:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6476:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6487:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6472:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6472:18:84"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6492:34:84",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6465:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6465:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6465:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6547:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6558:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6543:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6543:18:84"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6563:5:84",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6536:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6536:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6536:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6578:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6590:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6601:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6586:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6586:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6578:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6363:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6377:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6212:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6790:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6807:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6818:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6800:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6800:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6800:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6841:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6852:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6837:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6837:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6857:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6830:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6830:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6830:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6880:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6891:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6876:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6876:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f62697452616e676553697a652d746f6f2d6c61726765",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6896:33:84",
                                    "type": "",
                                    "value": "DrawCalc/bitRangeSize-too-large"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6869:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6869:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6869:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6939:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6951:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6962:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6947:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6947:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6939:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3e244583f2350f45bf6794161f3c9cb628d7d43da05a7064d2adf7a404a03a5b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6767:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6781:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6616:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7150:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7167:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7178:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7160:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7160:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7160:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7201:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7212:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7197:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7197:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7217:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7190:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7190:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7190:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7240:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7251:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7236:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7236:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7256:26:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7229:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7229:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7229:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7292:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7304:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7315:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7300:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7300:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7292:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7127:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7141:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6976:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7503:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7520:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7531:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7513:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7513:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7513:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7554:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7565:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7550:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7550:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7570:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7543:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7543:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7543:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7593:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7604:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7589:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7589:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f6d61785069636b73506572557365722d67742d30",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7609:31:84",
                                    "type": "",
                                    "value": "DrawCalc/maxPicksPerUser-gt-0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7582:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7582:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7582:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7650:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7662:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7673:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7658:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7658:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7650:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6b68b17181f2f490640a09147a6076477f33dd49ea7fd8e2efdb9f888b23e742__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7480:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7494:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7329:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7861:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7878:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7889:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7871:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7871:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7871:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7912:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7923:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7908:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7908:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7928:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7901:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7901:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7901:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7951:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7962:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7947:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7947:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7967:33:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7940:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7940:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7940:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8010:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8022:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8033:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8018:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8018:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8010:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7838:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7852:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7687:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8221:165:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8238:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8249:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8231:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8231:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8231:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8272:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8283:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8268:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8268:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8288:2:84",
                                    "type": "",
                                    "value": "15"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8261:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8261:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8261:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8311:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8322:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8307:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8307:18:84"
                                  },
                                  {
                                    "hexValue": "4452422f6675747572652d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8327:17:84",
                                    "type": "",
                                    "value": "DRB/future-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8300:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8300:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8300:45:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8354:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8366:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8377:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8362:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8362:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8354:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8198:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8212:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8047:339:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8565:171:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8582:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8593:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8575:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8575:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8575:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8616:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8627:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8612:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8612:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8632:2:84",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8605:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8605:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8605:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8655:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8666:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8651:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8651:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f647261772d69642d67742d30",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8671:23:84",
                                    "type": "",
                                    "value": "DrawCalc/draw-id-gt-0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8644:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8644:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8644:51:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8704:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8716:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8727:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8712:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8712:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8704:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8b507ddce75cdc34f90fa301a75f6fd1f75fa27a9f9dbdf6fd484dc84d5dad03__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8542:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8556:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8391:345:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8915:178:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8932:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8943:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8925:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8925:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8925:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8966:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8977:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8962:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8962:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8982:2:84",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8955:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8955:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8955:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9005:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9016:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9001:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9001:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f6578706972794475726174696f6e2d67742d30",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9021:30:84",
                                    "type": "",
                                    "value": "DrawCalc/expiryDuration-gt-0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8994:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8994:58:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8994:58:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9061:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9073:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9084:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9069:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9069:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9061:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_97c809ce43113f425cd71edfa67f5c73daca158347912ba9abee6a2d18a62d38__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8892:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8906:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8741:352:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9272:180:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9289:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9300:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9282:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9282:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9282:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9323:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9334:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9319:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9319:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9339:2:84",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9312:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9312:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9312:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9362:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9373:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9358:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9358:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f6d6174636843617264696e616c6974792d67742d30",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9378:32:84",
                                    "type": "",
                                    "value": "DrawCalc/matchCardinality-gt-0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9351:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9351:60:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9351:60:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9420:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9432:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9443:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9428:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9428:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9420:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b2ca6e48351b23d5b5f68ad1fc621ced7f4d101632cc01f2530db3cc6923f1ac__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9249:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9263:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9098:354:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9631:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9648:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9659:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9641:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9641:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9641:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9682:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9693:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9678:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9678:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9698:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9671:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9671:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9671:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9721:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9732:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9717:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9717:18:84"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9737:34:84",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9710:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9710:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9710:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9792:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9803:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9788:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9788:18:84"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9808:8:84",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9781:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9781:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9781:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9826:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9838:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9849:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9834:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9834:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9826:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9608:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9622:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9457:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10038:166:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10055:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10066:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10048:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10048:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10048:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10089:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10100:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10085:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10085:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10105:2:84",
                                    "type": "",
                                    "value": "16"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10078:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10078:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10078:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10128:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10139:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10124:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10124:18:84"
                                  },
                                  {
                                    "hexValue": "4452422f657870697265642d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10144:18:84",
                                    "type": "",
                                    "value": "DRB/expired-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10117:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10117:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10117:46:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10172:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10184:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10195:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10180:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10180:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10172:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10015:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10029:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9864:340:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10383:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10400:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10411:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10393:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10393:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10393:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10434:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10445:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10430:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10430:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10450:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10423:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10423:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10423:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10473:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10484:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10469:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10469:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10489:34:84",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10462:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10462:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10462:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10544:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10555:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10540:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10540:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10560:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10533:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10533:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10533:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10577:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10589:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10600:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10585:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10585:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10577:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10360:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10374:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10209:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10789:168:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10806:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10817:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10799:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10799:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10799:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10840:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10851:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10836:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10836:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10856:2:84",
                                    "type": "",
                                    "value": "18"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10829:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10829:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10829:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10879:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10890:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10875:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10875:18:84"
                                  },
                                  {
                                    "hexValue": "4452422f6d7573742d62652d636f6e746967",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10895:20:84",
                                    "type": "",
                                    "value": "DRB/must-be-contig"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10868:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10868:48:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10868:48:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10925:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10937:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10948:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10933:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10933:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10925:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10766:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10780:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10615:342:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11137:1042:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11147:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11159:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11170:3:84",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11155:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11155:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11147:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11183:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11209:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11196:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11196:20:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "11187:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "11248:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "11225:22:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11225:29:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11225:29:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11270:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "11285:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11292:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11281:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11281:16:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11263:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11263:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11263:35:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11307:50:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11343:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11351:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11339:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11339:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "11322:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11322:35:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11311:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11383:7:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11396:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11407:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11392:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11392:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "11366:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11366:47:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11366:47:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11422:51:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11459:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11467:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11455:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11455:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11437:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11437:36:84"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "11426:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "11500:7:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11513:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11524:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11509:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11509:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11482:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11482:48:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11482:48:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11539:51:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11576:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11584:4:84",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11572:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11572:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11554:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11554:36:84"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "11543:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "11617:7:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11630:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11641:4:84",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11626:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11626:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11599:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11599:48:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11599:48:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11656:51:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11693:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11701:4:84",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11689:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11689:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11671:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11671:36:84"
                              },
                              "variables": [
                                {
                                  "name": "value_4",
                                  "nodeType": "YulTypedName",
                                  "src": "11660:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "11734:7:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11747:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11758:4:84",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11743:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11743:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11716:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11716:48:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11716:48:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11773:51:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11810:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11818:4:84",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11806:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11806:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11788:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11788:36:84"
                              },
                              "variables": [
                                {
                                  "name": "value_5",
                                  "nodeType": "YulTypedName",
                                  "src": "11777:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_5",
                                    "nodeType": "YulIdentifier",
                                    "src": "11851:7:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11864:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11875:4:84",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11860:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11860:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11833:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11833:48:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11833:48:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11890:52:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11928:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11936:4:84",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11924:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11924:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "11905:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11905:37:84"
                              },
                              "variables": [
                                {
                                  "name": "value_6",
                                  "nodeType": "YulTypedName",
                                  "src": "11894:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_6",
                                    "nodeType": "YulIdentifier",
                                    "src": "11970:7:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11983:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11994:4:84",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11979:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11979:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "11951:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11951:49:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11951:49:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12046:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12054:4:84",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12042:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12042:17:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12065:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12076:4:84",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12061:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12061:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint32_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "12009:32:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12009:73:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12009:73:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12091:16:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12101:6:84",
                                "type": "",
                                "value": "0x02e0"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12095:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12127:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12138:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12123:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12123:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "12160:6:84"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "12168:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "12156:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "12156:15:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "12143:12:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12143:29:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12116:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12116:57:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12116:57:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeDistribution_$11491_calldata_ptr__to_t_struct$_PrizeDistribution_$11491_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11106:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11117:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11128:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10962:1217:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12357:106:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12367:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12379:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12390:3:84",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12375:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12375:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12367:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12439:6:84"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12447:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "12403:35:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12403:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12403:54:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptr__to_t_struct$_PrizeDistribution_$11491_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12326:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12337:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12348:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12184:279:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12667:167:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12677:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12689:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12700:3:84",
                                    "type": "",
                                    "value": "800"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12685:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12685:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12677:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12749:6:84"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12757:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "12713:35:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12713:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12713:54:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12787:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12798:3:84",
                                        "type": "",
                                        "value": "768"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12783:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12783:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12808:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12816:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12804:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12804:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12776:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12776:52:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12776:52:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptr_t_uint32__to_t_struct$_PrizeDistribution_$11491_memory_ptr_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12628:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "12639:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12647:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12658:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12468:366:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12938:93:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12948:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12960:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12971:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12956:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12956:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12948:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12990:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "13005:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13013:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "13001:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13001:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12983:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12983:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12983:42:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12907:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12918:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12929:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12839:192:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13084:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13111:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13113:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13113:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13113:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13100:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "13107:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "13103:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13103:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13097:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13097:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13094:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13142:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13153:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13156:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13149:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13149:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "13142:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13067:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13070:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "13076:3:84",
                            "type": ""
                          }
                        ],
                        "src": "13036:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13216:181:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13226:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13236:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13230:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13255:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13270:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13273:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13266:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13266:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13259:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13285:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13300:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13303:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13296:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13296:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13289:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13340:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13342:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13342:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13342:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13321:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13330:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13334:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "13326:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13326:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13318:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13318:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13315:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13371:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13382:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13387:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13378:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13378:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "13371:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13199:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13202:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "13208:3:84",
                            "type": ""
                          }
                        ],
                        "src": "13169:228:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13447:142:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13457:16:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13467:6:84",
                                "type": "",
                                "value": "0xffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13461:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13482:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13497:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13500:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13493:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13493:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13486:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13527:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "13529:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13529:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13529:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13522:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "13515:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13515:11:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13512:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13558:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "x",
                                        "nodeType": "YulIdentifier",
                                        "src": "13571:1:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13574:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "13567:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13567:10:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13579:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "13563:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13563:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "13558:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint16",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13432:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13435:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "13441:1:84",
                            "type": ""
                          }
                        ],
                        "src": "13402:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13643:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13665:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13667:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13667:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13667:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13659:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13662:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13656:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13656:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13653:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13696:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13708:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13711:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "13704:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13704:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "13696:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13625:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13628:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "13634:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13594:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13772:173:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13782:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13792:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13786:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13811:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13826:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13829:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13822:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13822:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13815:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13841:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13856:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13859:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13852:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13852:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13845:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13887:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13889:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13889:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13889:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13877:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13882:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13874:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13874:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13871:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13918:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13930:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13935:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "13926:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13926:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "13918:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13754:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13757:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "13763:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13724:221:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14039:798:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14049:19:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "14063:5:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "14053:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14077:23:84",
                              "value": {
                                "name": "slot",
                                "nodeType": "YulIdentifier",
                                "src": "14096:4:84"
                              },
                              "variables": [
                                {
                                  "name": "elementSlot",
                                  "nodeType": "YulTypedName",
                                  "src": "14081:11:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14109:22:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "14130:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "elementOffset",
                                  "nodeType": "YulTypedName",
                                  "src": "14113:13:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14140:22:84",
                              "value": {
                                "name": "elementOffset",
                                "nodeType": "YulIdentifier",
                                "src": "14149:13:84"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "14144:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14218:613:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14232:35:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14260:6:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "14247:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14247:20:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulTypedName",
                                        "src": "14236:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14304:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "14280:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14280:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14280:32:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14325:20:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "14335:10:84",
                                      "type": "",
                                      "value": "0xffffffff"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "14329:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14358:28:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "elementSlot",
                                          "nodeType": "YulIdentifier",
                                          "src": "14374:11:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "sload",
                                        "nodeType": "YulIdentifier",
                                        "src": "14368:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14368:18:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "_2",
                                        "nodeType": "YulTypedName",
                                        "src": "14362:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14399:38:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14420:1:84",
                                          "type": "",
                                          "value": "3"
                                        },
                                        {
                                          "name": "elementOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "14423:13:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "shl",
                                        "nodeType": "YulIdentifier",
                                        "src": "14416:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14416:21:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "shiftBits",
                                        "nodeType": "YulTypedName",
                                        "src": "14403:9:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14450:30:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "shiftBits",
                                          "nodeType": "YulIdentifier",
                                          "src": "14466:9:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14477:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "shl",
                                        "nodeType": "YulIdentifier",
                                        "src": "14462:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14462:18:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "mask",
                                        "nodeType": "YulTypedName",
                                        "src": "14454:4:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "elementSlot",
                                          "nodeType": "YulIdentifier",
                                          "src": "14500:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_2",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14520:2:84"
                                                },
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "mask",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "14528:4:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "not",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "14524:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "14524:9:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "and",
                                                "nodeType": "YulIdentifier",
                                                "src": "14516:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "14516:18:84"
                                            },
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "shiftBits",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "14544:9:84"
                                                    },
                                                    {
                                                      "arguments": [
                                                        {
                                                          "name": "value_1",
                                                          "nodeType": "YulIdentifier",
                                                          "src": "14559:7:84"
                                                        },
                                                        {
                                                          "name": "_1",
                                                          "nodeType": "YulIdentifier",
                                                          "src": "14568:2:84"
                                                        }
                                                      ],
                                                      "functionName": {
                                                        "name": "and",
                                                        "nodeType": "YulIdentifier",
                                                        "src": "14555:3:84"
                                                      },
                                                      "nodeType": "YulFunctionCall",
                                                      "src": "14555:16:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "shl",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "14540:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "14540:32:84"
                                                },
                                                {
                                                  "name": "mask",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14574:4:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "and",
                                                "nodeType": "YulIdentifier",
                                                "src": "14536:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "14536:43:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "or",
                                            "nodeType": "YulIdentifier",
                                            "src": "14513:2:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14513:67:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "sstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14493:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14493:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14493:88:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14594:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14608:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14616:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14604:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14604:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "14594:6:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14632:38:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "elementOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "14653:13:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14668:1:84",
                                          "type": "",
                                          "value": "4"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14649:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14649:21:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "elementOffset",
                                        "nodeType": "YulIdentifier",
                                        "src": "14632:13:84"
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "14720:101:84",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "14738:18:84",
                                          "value": {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14755:1:84",
                                            "type": "",
                                            "value": "0"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "elementOffset",
                                              "nodeType": "YulIdentifier",
                                              "src": "14738:13:84"
                                            }
                                          ]
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "14773:34:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "elementSlot",
                                                "nodeType": "YulIdentifier",
                                                "src": "14792:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "14805:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "14788:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "14788:19:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "elementSlot",
                                              "nodeType": "YulIdentifier",
                                              "src": "14773:11:84"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "elementOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "14689:13:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14704:2:84",
                                          "type": "",
                                          "value": "28"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "14686:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14686:21:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "14683:2:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14182:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14185:4:84",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14179:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14179:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "14191:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14193:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14202:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14205:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14198:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14198:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "14193:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "14175:3:84",
                                "statements": []
                              },
                              "src": "14171:660:84"
                            }
                          ]
                        },
                        "name": "copy_array_to_storage_from_array_uint32_calldata_to_array_uint",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "14022:4:84",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14028:5:84",
                            "type": ""
                          }
                        ],
                        "src": "13950:887:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14889:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14980:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "14982:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14982:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14982:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "14905:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14912:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "14902:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14902:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "14899:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15011:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "15022:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15029:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15018:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15018:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "15011:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14871:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "14881:3:84",
                            "type": ""
                          }
                        ],
                        "src": "14842:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15080:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15103:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "15105:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15105:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15105:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15100:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "15093:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15093:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "15090:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15134:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15143:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15146:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "15139:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15139:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "15134:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "15065:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "15068:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "15074:1:84",
                            "type": ""
                          }
                        ],
                        "src": "15042:112:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15191:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15208:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15211:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15201:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15201:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15201:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15305:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15308:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15298:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15298:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15298:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15329:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15332:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "15322:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15322:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15322:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15159:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15380:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15397:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15400:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15390:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15390:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15390:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15494:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15497:4:84",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15487:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15487:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15487:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15518:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15521:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "15511:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15511:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15511:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15348:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15569:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15586:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15589:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15579:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15579:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15579:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15683:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15686:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15676:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15676:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15676:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15707:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15710:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "15700:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15700:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15700:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15537:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15758:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15775:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15778:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15768:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15768:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15768:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15872:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15875:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15865:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15865:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15865:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15896:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15899:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "15889:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15889:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15889:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15726:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15976:115:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "15986:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "ptr",
                                    "nodeType": "YulIdentifier",
                                    "src": "16012:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "15999:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15999:17:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "15990:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "16050:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "16025:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16025:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16025:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16065:20:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "16080:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "returnValue",
                                  "nodeType": "YulIdentifier",
                                  "src": "16065:11:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "read_from_calldatat_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "ptr",
                            "nodeType": "YulTypedName",
                            "src": "15952:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "returnValue",
                            "nodeType": "YulTypedName",
                            "src": "15960:11:84",
                            "type": ""
                          }
                        ],
                        "src": "15915:176:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16156:114:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16166:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "ptr",
                                    "nodeType": "YulIdentifier",
                                    "src": "16192:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "16179:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16179:17:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "16170:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "16229:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "16205:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16205:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16205:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16244:20:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "16259:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "returnValue",
                                  "nodeType": "YulIdentifier",
                                  "src": "16244:11:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "read_from_calldatat_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "ptr",
                            "nodeType": "YulTypedName",
                            "src": "16132:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "returnValue",
                            "nodeType": "YulTypedName",
                            "src": "16140:11:84",
                            "type": ""
                          }
                        ],
                        "src": "16096:174:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16424:1189:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16434:34:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "16462:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "16449:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16449:19:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "16438:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16500:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "16477:22:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16477:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16477:31:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16517:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16531:7:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16540:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "16527:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16527:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "16521:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16554:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "16570:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "16564:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16564:11:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "16558:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "16591:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "16604:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "16608:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "16600:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16600:75:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "16677:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "16597:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16597:83:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16584:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16584:97:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16584:97:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16690:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "16722:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16729:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16718:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16718:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "16705:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16705:28:84"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "16694:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "16765:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "16742:22:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16742:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16742:31:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "16789:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "16805:2:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "16809:66:84",
                                                "type": "",
                                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "16801:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "16801:75:84"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "16878:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "or",
                                          "nodeType": "YulIdentifier",
                                          "src": "16798:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16798:83:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "16891:1:84",
                                                "type": "",
                                                "value": "8"
                                              },
                                              {
                                                "name": "value_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "16894:7:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "16887:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "16887:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "16904:5:84",
                                            "type": "",
                                            "value": "65280"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "16883:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16883:27:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "16795:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16795:116:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16782:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16782:130:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16782:130:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "16969:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17006:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17013:2:84",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17002:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17002:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "16975:26:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16975:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offset_2t_uint32_to_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "16921:47:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16921:97:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16921:97:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17075:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17112:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17119:2:84",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17108:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17108:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "17081:26:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17081:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offsett_uint32_to_t_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "17027:47:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17027:97:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17027:97:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17182:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17219:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17226:3:84",
                                            "type": "",
                                            "value": "128"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17215:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17215:15:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "17188:26:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17188:43:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offset_10t_uint32_to_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "17133:48:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17133:99:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17133:99:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17287:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17324:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17331:3:84",
                                            "type": "",
                                            "value": "160"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17320:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17320:15:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "17293:26:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17293:43:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offsett_uint32_to_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "17241:45:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17241:96:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17241:96:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17394:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17432:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17439:3:84",
                                            "type": "",
                                            "value": "192"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17428:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17428:15:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint104",
                                      "nodeType": "YulIdentifier",
                                      "src": "17400:27:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17400:44:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offsett_uint104_to_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "17346:47:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17346:99:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17346:99:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "slot",
                                        "nodeType": "YulIdentifier",
                                        "src": "17521:4:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17527:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17517:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17517:12:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "17535:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17542:3:84",
                                        "type": "",
                                        "value": "224"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17531:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17531:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_array_to_storage_from_array_uint32_calldata_to_array_uint",
                                  "nodeType": "YulIdentifier",
                                  "src": "17454:62:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17454:93:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17454:93:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "slot",
                                        "nodeType": "YulIdentifier",
                                        "src": "17567:4:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17573:1:84",
                                        "type": "",
                                        "value": "3"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17563:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17563:12:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17594:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17601:3:84",
                                            "type": "",
                                            "value": "736"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17590:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17590:15:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "17577:12:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17577:29:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17556:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17556:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17556:51:84"
                            }
                          ]
                        },
                        "name": "update_storage_value_offset_0t_struct$_PrizeDistribution_$11491_calldata_ptr_to_t_struct$_PrizeDistribution_$11491_storage",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "16407:4:84",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "16413:5:84",
                            "type": ""
                          }
                        ],
                        "src": "16275:1338:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17693:192:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17703:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17719:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "17713:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17713:11:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "17707:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17740:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "17753:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17757:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "17749:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17749:75:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "17834:2:84",
                                                "type": "",
                                                "value": "80"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "17838:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "17830:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "17830:14:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17846:30:84",
                                            "type": "",
                                            "value": "0xffffffff00000000000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "17826:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17826:51:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "17746:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17746:132:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17733:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17733:146:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17733:146:84"
                            }
                          ]
                        },
                        "name": "update_storage_value_offset_10t_uint32_to_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "17676:4:84",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "17682:5:84",
                            "type": ""
                          }
                        ],
                        "src": "17618:267:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17962:201:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17972:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17988:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "17982:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17982:11:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "17976:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18009:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "18022:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18026:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18018:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18018:75:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "18103:3:84",
                                                "type": "",
                                                "value": "112"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "18108:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "18099:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "18099:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18116:38:84",
                                            "type": "",
                                            "value": "0xffffffff0000000000000000000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18095:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18095:60:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "18015:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18015:141:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18002:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18002:155:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18002:155:84"
                            }
                          ]
                        },
                        "name": "update_storage_value_offsett_uint32_to_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "17945:4:84",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "17951:5:84",
                            "type": ""
                          }
                        ],
                        "src": "17890:273:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18242:227:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18252:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18268:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18262:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18262:11:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18256:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18289:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "18302:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18306:66:84",
                                            "type": "",
                                            "value": "0xff00000000000000000000000000ffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18298:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18298:75:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "18383:3:84",
                                                "type": "",
                                                "value": "144"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "18388:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "18379:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "18379:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18396:64:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff000000000000000000000000000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18375:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18375:86:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "18295:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18295:167:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18282:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18282:181:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18282:181:84"
                            }
                          ]
                        },
                        "name": "update_storage_value_offsett_uint104_to_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "18225:4:84",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "18231:5:84",
                            "type": ""
                          }
                        ],
                        "src": "18168:301:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18548:176:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18558:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18574:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18568:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18568:11:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18562:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18595:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "18608:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18612:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff00000000ffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18604:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18604:75:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "18689:2:84",
                                                "type": "",
                                                "value": "16"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "18693:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "18685:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "18685:14:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18701:14:84",
                                            "type": "",
                                            "value": "0xffffffff0000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18681:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18681:35:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "18601:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18601:116:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18588:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18588:130:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18588:130:84"
                            }
                          ]
                        },
                        "name": "update_storage_value_offset_2t_uint32_to_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "18531:4:84",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "18537:5:84",
                            "type": ""
                          }
                        ],
                        "src": "18474:250:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18803:184:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18813:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18829:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18823:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18823:11:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18817:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18850:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "18863:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18867:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18859:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18859:75:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "18944:2:84",
                                                "type": "",
                                                "value": "48"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "18948:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "18940:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "18940:14:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18956:22:84",
                                            "type": "",
                                            "value": "0xffffffff000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18936:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18936:43:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "18856:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18856:124:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18843:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18843:138:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18843:138:84"
                            }
                          ]
                        },
                        "name": "update_storage_value_offsett_uint32_to_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "18786:4:84",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "18792:5:84",
                            "type": ""
                          }
                        ],
                        "src": "18729:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19037:95:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19110:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19119:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19122:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "19112:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19112:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19112:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "19060:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "19071:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "19078:28:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "19067:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19067:40:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "19057:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19057:51:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "19050:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19050:59:84"
                              },
                              "nodeType": "YulIf",
                              "src": "19047:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "19026:5:84",
                            "type": ""
                          }
                        ],
                        "src": "18992:140:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19181:77:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19236:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19245:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19248:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "19238:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19238:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19238:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "19204:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "19215:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "19222:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "19211:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19211:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "19201:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19201:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "19194:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19194:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "19191:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "19170:5:84",
                            "type": ""
                          }
                        ],
                        "src": "19137:121:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19306:71:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19355:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19364:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19367:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "19357:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19357:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19357:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "19329:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "19340:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "19347:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "19336:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19336:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "19326:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19326:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "19319:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19319:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "19316:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "19295:5:84",
                            "type": ""
                          }
                        ],
                        "src": "19263:114:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_uint104(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint104(value)\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint32(value)\n    }\n    function abi_decode_uint8(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint8(value)\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_2, 32)\n        value1 := length\n    }\n    function abi_decode_tuple_t_uint32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint32t_struct$_PrizeDistribution_$11491_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        let _1 := sub(dataEnd, headStart)\n        if slt(_1, 800) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n        if slt(add(_1, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0), 768) { revert(0, 0) }\n        value1 := add(headStart, 32)\n    }\n    function abi_decode_tuple_t_uint8(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint8(value)\n        value0 := value\n    }\n    function abi_encode_array_uint32_calldata(value, pos)\n    {\n        pos := pos\n        let srcPtr := value\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            let value_1 := calldataload(srcPtr)\n            validator_revert_uint32(value_1)\n            mstore(pos, and(value_1, 0xffffffff))\n            let _1 := 0x20\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n    }\n    function abi_encode_array_uint32(value, pos)\n    {\n        pos := pos\n        let srcPtr := value\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), 0xffffffff))\n            let _1 := 0x20\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n    }\n    function abi_encode_struct_PrizeDistribution(value, pos)\n    {\n        mstore(pos, and(mload(value), 0xff))\n        mstore(add(pos, 0x20), and(mload(add(value, 0x20)), 0xff))\n        let memberValue0 := mload(add(value, 0x40))\n        abi_encode_uint32(memberValue0, add(pos, 0x40))\n        let memberValue0_1 := mload(add(value, 0x60))\n        abi_encode_uint32(memberValue0_1, add(pos, 0x60))\n        let memberValue0_2 := mload(add(value, 0x80))\n        abi_encode_uint32(memberValue0_2, add(pos, 0x80))\n        let memberValue0_3 := mload(add(value, 0xa0))\n        abi_encode_uint32(memberValue0_3, add(pos, 0xa0))\n        let memberValue0_4 := mload(add(value, 0xc0))\n        abi_encode_uint104(memberValue0_4, add(pos, 0xc0))\n        let memberValue0_5 := mload(add(value, 0xe0))\n        abi_encode_array_uint32(memberValue0_5, add(pos, 0xe0))\n        mstore(add(pos, 0x02e0), mload(add(value, 0x0100)))\n    }\n    function abi_encode_uint104(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffffffffffffffffffff))\n    }\n    function abi_encode_uint32(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffff))\n    }\n    function abi_encode_uint8(value, pos)\n    { mstore(pos, and(value, 0xff)) }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            abi_encode_struct_PrizeDistribution(mload(srcPtr), pos)\n            pos := add(pos, 0x0300)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_stringliteral_1bc7b5f9a3e52be66e1bae40b5347daec05c71148e3f246fa48afaba5869a377__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 26)\n        mstore(add(headStart, 64), \"DrawCalc/bitRangeSize-gt-0\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_32188c2fb9458b9b04ecd2ddd4a1cbda73bdc5968bafea54a4dcec20c7e49c08__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 22)\n        mstore(add(headStart, 64), \"DrawCalc/tiers-gt-100%\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_3e244583f2350f45bf6794161f3c9cb628d7d43da05a7064d2adf7a404a03a5b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"DrawCalc/bitRangeSize-too-large\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6b68b17181f2f490640a09147a6076477f33dd49ea7fd8e2efdb9f888b23e742__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"DrawCalc/maxPicksPerUser-gt-0\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 15)\n        mstore(add(headStart, 64), \"DRB/future-draw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8b507ddce75cdc34f90fa301a75f6fd1f75fa27a9f9dbdf6fd484dc84d5dad03__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"DrawCalc/draw-id-gt-0\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_97c809ce43113f425cd71edfa67f5c73daca158347912ba9abee6a2d18a62d38__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"DrawCalc/expiryDuration-gt-0\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_b2ca6e48351b23d5b5f68ad1fc621ced7f4d101632cc01f2530db3cc6923f1ac__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"DrawCalc/matchCardinality-gt-0\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 16)\n        mstore(add(headStart, 64), \"DRB/expired-draw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 18)\n        mstore(add(headStart, 64), \"DRB/must-be-contig\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_PrizeDistribution_$11491_calldata_ptr__to_t_struct$_PrizeDistribution_$11491_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 768)\n        let value := calldataload(value0)\n        validator_revert_uint8(value)\n        mstore(headStart, and(value, 0xff))\n        let value_1 := abi_decode_uint8(add(value0, 0x20))\n        abi_encode_uint8(value_1, add(headStart, 0x20))\n        let value_2 := abi_decode_uint32(add(value0, 0x40))\n        abi_encode_uint32(value_2, add(headStart, 0x40))\n        let value_3 := abi_decode_uint32(add(value0, 0x60))\n        abi_encode_uint32(value_3, add(headStart, 0x60))\n        let value_4 := abi_decode_uint32(add(value0, 0x80))\n        abi_encode_uint32(value_4, add(headStart, 0x80))\n        let value_5 := abi_decode_uint32(add(value0, 0xa0))\n        abi_encode_uint32(value_5, add(headStart, 0xa0))\n        let value_6 := abi_decode_uint104(add(value0, 0xc0))\n        abi_encode_uint104(value_6, add(headStart, 0xc0))\n        abi_encode_array_uint32_calldata(add(value0, 0xe0), add(headStart, 0xe0))\n        let _1 := 0x02e0\n        mstore(add(headStart, _1), calldataload(add(value0, _1)))\n    }\n    function abi_encode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptr__to_t_struct$_PrizeDistribution_$11491_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 768)\n        abi_encode_struct_PrizeDistribution(value0, headStart)\n    }\n    function abi_encode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptr_t_uint32__to_t_struct$_PrizeDistribution_$11491_memory_ptr_t_uint32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 800)\n        abi_encode_struct_PrizeDistribution(value0, headStart)\n        mstore(add(headStart, 768), and(value1, 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint32(x, y) -> sum\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint16(x, y) -> r\n    {\n        let _1 := 0xffff\n        let y_1 := and(y, _1)\n        if iszero(y_1) { panic_error_0x12() }\n        r := div(and(x, _1), y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function copy_array_to_storage_from_array_uint32_calldata_to_array_uint(slot, value)\n    {\n        let srcPtr := value\n        let elementSlot := slot\n        let elementOffset := 0\n        let i := elementOffset\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            let value_1 := calldataload(srcPtr)\n            validator_revert_uint32(value_1)\n            let _1 := 0xffffffff\n            let _2 := sload(elementSlot)\n            let shiftBits := shl(3, elementOffset)\n            let mask := shl(shiftBits, _1)\n            sstore(elementSlot, or(and(_2, not(mask)), and(shl(shiftBits, and(value_1, _1)), mask)))\n            srcPtr := add(srcPtr, 32)\n            elementOffset := add(elementOffset, 4)\n            if gt(elementOffset, 28)\n            {\n                elementOffset := 0\n                elementSlot := add(elementSlot, 1)\n            }\n        }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function read_from_calldatat_uint104(ptr) -> returnValue\n    {\n        let value := calldataload(ptr)\n        validator_revert_uint104(value)\n        returnValue := value\n    }\n    function read_from_calldatat_uint32(ptr) -> returnValue\n    {\n        let value := calldataload(ptr)\n        validator_revert_uint32(value)\n        returnValue := value\n    }\n    function update_storage_value_offset_0t_struct$_PrizeDistribution_$11491_calldata_ptr_to_t_struct$_PrizeDistribution_$11491_storage(slot, value)\n    {\n        let value_1 := calldataload(value)\n        validator_revert_uint8(value_1)\n        let _1 := and(value_1, 0xff)\n        let _2 := sload(slot)\n        sstore(slot, or(and(_2, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00), _1))\n        let value_2 := calldataload(add(value, 32))\n        validator_revert_uint8(value_2)\n        sstore(slot, or(or(and(_2, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000), _1), and(shl(8, value_2), 65280)))\n        update_storage_value_offset_2t_uint32_to_uint32(slot, read_from_calldatat_uint32(add(value, 64)))\n        update_storage_value_offsett_uint32_to_t_uint32(slot, read_from_calldatat_uint32(add(value, 96)))\n        update_storage_value_offset_10t_uint32_to_uint32(slot, read_from_calldatat_uint32(add(value, 128)))\n        update_storage_value_offsett_uint32_to_uint32(slot, read_from_calldatat_uint32(add(value, 160)))\n        update_storage_value_offsett_uint104_to_uint104(slot, read_from_calldatat_uint104(add(value, 192)))\n        copy_array_to_storage_from_array_uint32_calldata_to_array_uint(add(slot, 1), add(value, 224))\n        sstore(add(slot, 3), calldataload(add(value, 736)))\n    }\n    function update_storage_value_offset_10t_uint32_to_uint32(slot, value)\n    {\n        let _1 := sload(slot)\n        sstore(slot, or(and(_1, 0xffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffffff), and(shl(80, value), 0xffffffff00000000000000000000)))\n    }\n    function update_storage_value_offsett_uint32_to_uint32(slot, value)\n    {\n        let _1 := sload(slot)\n        sstore(slot, or(and(_1, 0xffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffffff), and(shl(112, value), 0xffffffff0000000000000000000000000000)))\n    }\n    function update_storage_value_offsett_uint104_to_uint104(slot, value)\n    {\n        let _1 := sload(slot)\n        sstore(slot, or(and(_1, 0xff00000000000000000000000000ffffffffffffffffffffffffffffffffffff), and(shl(144, value), 0xffffffffffffffffffffffffff000000000000000000000000000000000000)))\n    }\n    function update_storage_value_offset_2t_uint32_to_uint32(slot, value)\n    {\n        let _1 := sload(slot)\n        sstore(slot, or(and(_1, 0xffffffffffffffffffffffffffffffffffffffffffffffffffff00000000ffff), and(shl(16, value), 0xffffffff0000)))\n    }\n    function update_storage_value_offsett_uint32_to_t_uint32(slot, value)\n    {\n        let _1 := sload(slot)\n        sstore(slot, or(and(_1, 0xffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffffff), and(shl(48, value), 0xffffffff000000000000)))\n    }\n    function validator_revert_uint104(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint8(value)\n    {\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063d0ebdbe711610066578063d0ebdbe7146101f3578063d30a5daf14610206578063e30c397814610226578063f2fde38b1461023757600080fd5b8063715018a6146101ac5780638da5cb5b146101b4578063caeef7ec146101c5578063ce336ce9146101e057600080fd5b806324c21446116100d357806324c21446146101555780633cd8e2d51461015d578063481c6a751461017d5780634e71e0c8146101a257600080fd5b80631124e1dc146100fa57806321e98ad9146101225780632439093a1461013f575b600080fd5b61010d610108366004611822565b61024a565b60405190151581526020015b60405180910390f35b61012a610317565b60405163ffffffff9091168152602001610119565b61014761039e565b604051610119929190611adb565b610147610671565b61017061016b366004611805565b610804565b6040516101199190611acc565b6002546001600160a01b03165b6040516001600160a01b039091168152602001610119565b6101aa610852565b005b6101aa6108e0565b6000546001600160a01b031661018a565b6104035468010000000000000000900463ffffffff1661012a565b61012a6101ee366004611822565b610955565b61010d610201366004611760565b610a84565b610219610214366004611790565b610afd565b60405161011991906119b9565b6001546001600160a01b031661018a565b6101aa610245366004611760565b610c08565b60003361025f6002546001600160a01b031690565b6001600160a01b0316148061028d5750336102826000546001600160a01b031690565b6001600160a01b0316145b6103045760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61030e8383610d44565b90505b92915050565b604080516060810182526104035463ffffffff80821680845264010000000083048216602085015268010000000000000000909204169282019290925260009161036357600091505090565b6020810151600363ffffffff8216610100811061038257610382611c7d565b6004020154610100900460ff1615610311575060400151919050565b6103a66116cd565b604080516060810182526104035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925260009160039061010081106103fb576103fb611c7d565b604080516101208101825260049290920292909201805460ff8082168452610100820416602084015262010000810463ffffffff9081168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a0840152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c083015282516102008101938490529192909160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116104bf5750505092845250505060039190910154602090910152815190935063ffffffff166105275760009150509091565b825160ff1661065f5760408051610120810182526003805460ff8082168452610100820416602084015263ffffffff62010000820481168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a08401526cffffffffffffffffffffffffff72010000000000000000000000000000000000009091041660c083015282516102008101938490529192909160e0840191600490601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116105ea575050509284525050506003919091015460209182015282015182519194509061064e906001611b16565b6106589190611b76565b9150509091565b6040810151815161064e906001611b16565b6106796116cd565b604080516060810182526104035463ffffffff808216808452640100000000830482166020850152680100000000000000009092048116938301939093526000926003916106ca9184919061119916565b63ffffffff1661010081106106e1576106e1611c7d565b8251604080516101208101825260049390930293909301805460ff8082168552610100820416602085015262010000810463ffffffff9081168587015266010000000000008204811660608601526a01000000000000000000008204811660808601526e01000000000000000000000000000082041660a0850152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c084015283516102008101948590529093919291849160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116107aa57905050505050508152602001600382015481525050915092509250509091565b61080c6116cd565b604080516060810182526104035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915261031190836112c9565b6001546001600160a01b031633146108ac5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016102fb565b6001546108c1906001600160a01b031661140f565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336108f36000546001600160a01b031690565b6001600160a01b0316146109495760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b610953600061140f565b565b60003361096a6000546001600160a01b031690565b6001600160a01b0316146109c05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b604080516060810182526104035463ffffffff80821683526401000000008204811660208401526801000000000000000090910481169282019290925290600090610a0f908390879061119916565b90508360038263ffffffff166101008110610a2c57610a2c611c7d565b60040201610a3a8282611cc3565b9050508463ffffffff167f2d81da839b2f3db2ed762907f74df3acecdc30461dba4813694c225ba911e1f685604051610a739190611a08565b60405180910390a250929392505050565b600033610a996000546001600160a01b031690565b6001600160a01b031614610aef5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b6103118261146c565b919050565b60408051606081810183526104035463ffffffff8082168452640100000000820481166020850152680100000000000000009091041692820192909252829060008267ffffffffffffffff811115610b5757610b57611c93565b604051908082528060200260200182016040528015610b9057816020015b610b7d6116cd565b815260200190600190039081610b755790505b50905060005b83811015610bfe57610bce83888884818110610bb457610bb4611c7d565b9050602002016020810190610bc99190611805565b6112c9565b828281518110610be057610be0611c7d565b60200260200101819052508080610bf690611c04565b915050610b96565b5095945050505050565b33610c1b6000546001600160a01b031690565b6001600160a01b031614610c715760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b6001600160a01b038116610ced5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016102fb565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6000808363ffffffff1611610d9b5760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d69642d67742d30000000000000000000000060448201526064016102fb565b6000610dad6040840160208501611883565b60ff1611610dfd5760405162461bcd60e51b815260206004820152601e60248201527f4472617743616c632f6d6174636843617264696e616c6974792d67742d30000060448201526064016102fb565b610e0d6040830160208401611883565b610e1c9060ff16610100611b3e565b61ffff16610e2d6020840184611883565b60ff161115610e7e5760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f62697452616e676553697a652d746f6f2d6c617267650060448201526064016102fb565b6000610e8d6020840184611883565b60ff1611610edd5760405162461bcd60e51b815260206004820152601a60248201527f4472617743616c632f62697452616e676553697a652d67742d3000000000000060448201526064016102fb565b6000610eef60a0840160808501611805565b63ffffffff1611610f425760405162461bcd60e51b815260206004820152601d60248201527f4472617743616c632f6d61785069636b73506572557365722d67742d3000000060448201526064016102fb565b6000610f5460c0840160a08501611805565b63ffffffff1611610fa75760405162461bcd60e51b815260206004820152601c60248201527f4472617743616c632f6578706972794475726174696f6e2d67742d300000000060448201526064016102fb565b60006010815b818110156110075760008560e0018260108110610fcc57610fcc611c7d565b602002016020810190610fdf9190611805565b63ffffffff169050610ff18185611afe565b9350508080610fff90611c04565b915050610fad565b50633b9aca0082111561105c5760405162461bcd60e51b815260206004820152601660248201527f4472617743616c632f74696572732d67742d313030250000000000000000000060448201526064016102fb565b604080516060810182526104035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925290859060039061010081106110b1576110b1611c7d565b600402016110bf8282611cc3565b506110cc90508187611558565b80516104038054602084015160409485015163ffffffff90811668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff928216640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000009094169582169590951792909217169290921790559051908716907f2d81da839b2f3db2ed762907f74df3acecdc30461dba4813694c225ba911e1f690611185908890611a08565b60405180910390a250600195945050505050565b60006111a483611643565b80156111c05750826000015163ffffffff168263ffffffff1611155b61120c5760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d64726177000000000000000000000000000000000060448201526064016102fb565b825160009061121c908490611b76565b9050836040015163ffffffff168163ffffffff161061127d5760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d647261770000000000000000000000000000000060448201526064016102fb565b600061129d856020015163ffffffff16866040015163ffffffff1661166b565b90506112c08163ffffffff168363ffffffff16876040015163ffffffff16611699565b95945050505050565b6112d16116cd565b60036112dd8484611199565b63ffffffff1661010081106112f4576112f4611c7d565b604080516101208101825260049290920292909201805460ff8082168452610100820416602084015262010000810463ffffffff9081168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a0840152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c083015282516102008101938490529192909160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116113b857905050505050508152602001600382015481525050905092915050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156114f55760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016102fb565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b604080516060810182526000808252602082018190529181019190915261157e83611643565b15806115a157508251611592906001611b16565b63ffffffff168263ffffffff16145b6115ed5760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e746967000000000000000000000000000060448201526064016102fb565b60405180606001604052808363ffffffff168152602001611622856020015163ffffffff16866040015163ffffffff166116b1565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156116645750815163ffffffff16155b1592915050565b60008161167a57506000610311565b61030e60016116898486611afe565b6116939190611b5f565b836116c1565b60006116a9836116898487611afe565b949350505050565b600061030e611693846001611afe565b600061030e8284611c3d565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915260e08101611713611720565b8152602001600081525090565b6040518061020001604052806010906020820280368337509192915050565b8035610af881611eec565b8035610af881611f0a565b8035610af881611f1c565b60006020828403121561177257600080fd5b81356001600160a01b038116811461178957600080fd5b9392505050565b600080602083850312156117a357600080fd5b823567ffffffffffffffff808211156117bb57600080fd5b818501915085601f8301126117cf57600080fd5b8135818111156117de57600080fd5b8660208260051b85010111156117f357600080fd5b60209290920196919550909350505050565b60006020828403121561181757600080fd5b813561178981611f0a565b60008082840361032081121561183757600080fd5b833561184281611f0a565b92506103007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08201121561187557600080fd5b506020830190509250929050565b60006020828403121561189557600080fd5b813561178981611f1c565b8060005b60108110156118d35781356118b881611f0a565b63ffffffff16845260209384019391909101906001016118a4565b50505050565b8060005b60108110156118d357815163ffffffff168452602093840193909101906001016118dd565b60ff815116825260ff6020820151166020830152604081015161192d604084018263ffffffff169052565b506060810151611945606084018263ffffffff169052565b50608081015161195d608084018263ffffffff169052565b5060a081015161197560a084018263ffffffff169052565b5060c081015161199660c08401826cffffffffffffffffffffffffff169052565b5060e08101516119a960e08401826118d9565b5061010001516102e09190910152565b6020808252825182820181905260009190848201906040850190845b818110156119fc576119e8838551611902565b9284019261030092909201916001016119d5565b50909695505050505050565b61030081018235611a1881611f1c565b60ff168252611a2960208401611755565b60ff166020830152611a3d6040840161174a565b63ffffffff166040830152611a546060840161174a565b63ffffffff166060830152611a6b6080840161174a565b63ffffffff166080830152611a8260a0840161174a565b63ffffffff1660a0830152611a9960c0840161173f565b6cffffffffffffffffffffffffff1660c0830152611abd60e08084019085016118a0565b6102e092830135919092015290565b61030081016103118284611902565b6103208101611aea8285611902565b63ffffffff83166103008301529392505050565b60008219821115611b1157611b11611c51565b500190565b600063ffffffff808316818516808303821115611b3557611b35611c51565b01949350505050565b600061ffff80841680611b5357611b53611c67565b92169190910492915050565b600082821015611b7157611b71611c51565b500390565b600063ffffffff83811690831681811015611b9357611b93611c51565b039392505050565b81816000805b6010811015611bfc578335611bb581611f0a565b835463ffffffff600385901b81811b801990931693909116901b1617835560209390930192600490910190601c821115611bf457600091506001830192505b600101611ba1565b505050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611c3657611c36611c51565b5060010190565b600082611c4c57611c4c611c67565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6000813561031181611eec565b6000813561031181611f0a565b8135611cce81611f1c565b60ff811690508154817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082161783556020840135611d0b81611f1c565b61ff008160081b16837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000841617178455505050611d84611d4d60408401611cb6565b82547fffffffffffffffffffffffffffffffffffffffffffffffffffff00000000ffff1660109190911b65ffffffff000016178255565b611dce611d9360608401611cb6565b82547fffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffffff1660309190911b69ffffffff00000000000016178255565b611e1c611ddd60808401611cb6565b82547fffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffffff1660509190911b6dffffffff0000000000000000000016178255565b611e6e611e2b60a08401611cb6565b82547fffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffffff1660709190911b71ffffffff000000000000000000000000000016178255565b611ecd611e7d60c08401611ca9565b82547fff00000000000000000000000000ffffffffffffffffffffffffffffffffffff1660909190911b7effffffffffffffffffffffffff00000000000000000000000000000000000016178255565b611edd60e0830160018301611b9b565b6102e082013560038201555050565b6cffffffffffffffffffffffffff81168114611f0757600080fd5b50565b63ffffffff81168114611f0757600080fd5b60ff81168114611f0757600080fdfea2646970667358221220132fa1799f3f662436d462c6e531bb3bab5097313ee0d229d38502db694a319e64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xF5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x1F3 JUMPI DUP1 PUSH4 0xD30A5DAF EQ PUSH2 0x206 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x226 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x237 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1AC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1B4 JUMPI DUP1 PUSH4 0xCAEEF7EC EQ PUSH2 0x1C5 JUMPI DUP1 PUSH4 0xCE336CE9 EQ PUSH2 0x1E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x24C21446 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x24C21446 EQ PUSH2 0x155 JUMPI DUP1 PUSH4 0x3CD8E2D5 EQ PUSH2 0x15D JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x1A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1124E1DC EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x21E98AD9 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x2439093A EQ PUSH2 0x13F JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10D PUSH2 0x108 CALLDATASIZE PUSH1 0x4 PUSH2 0x1822 JUMP JUMPDEST PUSH2 0x24A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x12A PUSH2 0x317 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0x147 PUSH2 0x39E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP3 SWAP2 SWAP1 PUSH2 0x1ADB JUMP JUMPDEST PUSH2 0x147 PUSH2 0x671 JUMP JUMPDEST PUSH2 0x170 PUSH2 0x16B CALLDATASIZE PUSH1 0x4 PUSH2 0x1805 JUMP JUMPDEST PUSH2 0x804 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x1ACC JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0x1AA PUSH2 0x852 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1AA PUSH2 0x8E0 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST PUSH2 0x403 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x12A JUMP JUMPDEST PUSH2 0x12A PUSH2 0x1EE CALLDATASIZE PUSH1 0x4 PUSH2 0x1822 JUMP JUMPDEST PUSH2 0x955 JUMP JUMPDEST PUSH2 0x10D PUSH2 0x201 CALLDATASIZE PUSH1 0x4 PUSH2 0x1760 JUMP JUMPDEST PUSH2 0xA84 JUMP JUMPDEST PUSH2 0x219 PUSH2 0x214 CALLDATASIZE PUSH1 0x4 PUSH2 0x1790 JUMP JUMPDEST PUSH2 0xAFD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x19B9 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST PUSH2 0x1AA PUSH2 0x245 CALLDATASIZE PUSH1 0x4 PUSH2 0x1760 JUMP JUMPDEST PUSH2 0xC08 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x25F PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x28D JUMPI POP CALLER PUSH2 0x282 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x304 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x30E DUP4 DUP4 PUSH2 0xD44 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH5 0x100000000 DUP4 DIV DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH2 0x363 JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x3 PUSH4 0xFFFFFFFF DUP3 AND PUSH2 0x100 DUP2 LT PUSH2 0x382 JUMPI PUSH2 0x382 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x4 MUL ADD SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x311 JUMPI POP PUSH1 0x40 ADD MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3A6 PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0x3FB JUMPI PUSH2 0x3FB PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP5 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x10000 DUP2 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP5 DUP7 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH19 0x1000000000000000000000000000000000000 SWAP1 DIV PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP4 ADD MSTORE DUP3 MLOAD PUSH2 0x200 DUP2 ADD SWAP4 DUP5 SWAP1 MSTORE SWAP2 SWAP3 SWAP1 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x1 DUP5 ADD SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x4BF JUMPI POP POP POP SWAP3 DUP5 MSTORE POP POP POP PUSH1 0x3 SWAP2 SWAP1 SWAP2 ADD SLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MSTORE DUP2 MLOAD SWAP1 SWAP4 POP PUSH4 0xFFFFFFFF AND PUSH2 0x527 JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 SWAP2 JUMP JUMPDEST DUP3 MLOAD PUSH1 0xFF AND PUSH2 0x65F JUMPI PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x3 DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP5 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP5 ADD MSTORE PUSH4 0xFFFFFFFF PUSH3 0x10000 DUP3 DIV DUP2 AND DUP5 DUP7 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH19 0x1000000000000000000000000000000000000 SWAP1 SWAP2 DIV AND PUSH1 0xC0 DUP4 ADD MSTORE DUP3 MLOAD PUSH2 0x200 DUP2 ADD SWAP4 DUP5 SWAP1 MSTORE SWAP2 SWAP3 SWAP1 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x4 SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x5EA JUMPI POP POP POP SWAP3 DUP5 MSTORE POP POP POP PUSH1 0x3 SWAP2 SWAP1 SWAP2 ADD SLOAD PUSH1 0x20 SWAP2 DUP3 ADD MSTORE DUP3 ADD MLOAD DUP3 MLOAD SWAP2 SWAP5 POP SWAP1 PUSH2 0x64E SWAP1 PUSH1 0x1 PUSH2 0x1B16 JUMP JUMPDEST PUSH2 0x658 SWAP2 SWAP1 PUSH2 0x1B76 JUMP JUMPDEST SWAP2 POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0x64E SWAP1 PUSH1 0x1 PUSH2 0x1B16 JUMP JUMPDEST PUSH2 0x679 PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH5 0x100000000 DUP4 DIV DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV DUP2 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x0 SWAP3 PUSH1 0x3 SWAP2 PUSH2 0x6CA SWAP2 DUP5 SWAP2 SWAP1 PUSH2 0x1199 AND JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x6E1 JUMPI PUSH2 0x6E1 PUSH2 0x1C7D JUMP JUMPDEST DUP3 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP4 SWAP1 SWAP4 MUL SWAP4 SWAP1 SWAP4 ADD DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP6 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP6 ADD MSTORE PUSH3 0x10000 DUP2 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP6 DUP8 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP7 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP7 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP6 ADD MSTORE PUSH19 0x1000000000000000000000000000000000000 SWAP1 DIV PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP5 ADD MSTORE DUP4 MLOAD PUSH2 0x200 DUP2 ADD SWAP5 DUP6 SWAP1 MSTORE SWAP1 SWAP4 SWAP2 SWAP3 SWAP2 DUP5 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x1 DUP5 ADD SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x7AA JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP2 POP SWAP3 POP SWAP3 POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH2 0x80C PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x311 SWAP1 DUP4 PUSH2 0x12C9 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x8AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x8C1 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x140F JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x8F3 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x949 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH2 0x953 PUSH1 0x0 PUSH2 0x140F JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x96A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV DUP2 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 PUSH1 0x0 SWAP1 PUSH2 0xA0F SWAP1 DUP4 SWAP1 DUP8 SWAP1 PUSH2 0x1199 AND JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x3 DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0xA2C JUMPI PUSH2 0xA2C PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x4 MUL ADD PUSH2 0xA3A DUP3 DUP3 PUSH2 0x1CC3 JUMP JUMPDEST SWAP1 POP POP DUP5 PUSH4 0xFFFFFFFF AND PUSH32 0x2D81DA839B2F3DB2ED762907F74DF3ACECDC30461DBA4813694C225BA911E1F6 DUP6 PUSH1 0x40 MLOAD PUSH2 0xA73 SWAP2 SWAP1 PUSH2 0x1A08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP SWAP3 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xA99 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xAEF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH2 0x311 DUP3 PUSH2 0x146C JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 DUP2 ADD DUP4 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP5 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP3 SWAP1 PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB57 JUMPI PUSH2 0xB57 PUSH2 0x1C93 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xB90 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0xB7D PUSH2 0x16CD JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xB75 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xBFE JUMPI PUSH2 0xBCE DUP4 DUP9 DUP9 DUP5 DUP2 DUP2 LT PUSH2 0xBB4 JUMPI PUSH2 0xBB4 PUSH2 0x1C7D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xBC9 SWAP2 SWAP1 PUSH2 0x1805 JUMP JUMPDEST PUSH2 0x12C9 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xBE0 JUMPI PUSH2 0xBE0 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0xBF6 SWAP1 PUSH2 0x1C04 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xB96 JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST CALLER PUSH2 0xC1B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC71 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xCED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH4 0xFFFFFFFF AND GT PUSH2 0xD9B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F647261772D69642D67742D300000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDAD PUSH1 0x40 DUP5 ADD PUSH1 0x20 DUP6 ADD PUSH2 0x1883 JUMP JUMPDEST PUSH1 0xFF AND GT PUSH2 0xDFD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F6D6174636843617264696E616C6974792D67742D300000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH2 0xE0D PUSH1 0x40 DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0x1883 JUMP JUMPDEST PUSH2 0xE1C SWAP1 PUSH1 0xFF AND PUSH2 0x100 PUSH2 0x1B3E JUMP JUMPDEST PUSH2 0xFFFF AND PUSH2 0xE2D PUSH1 0x20 DUP5 ADD DUP5 PUSH2 0x1883 JUMP JUMPDEST PUSH1 0xFF AND GT ISZERO PUSH2 0xE7E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F62697452616E676553697A652D746F6F2D6C6172676500 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE8D PUSH1 0x20 DUP5 ADD DUP5 PUSH2 0x1883 JUMP JUMPDEST PUSH1 0xFF AND GT PUSH2 0xEDD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F62697452616E676553697A652D67742D30000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEEF PUSH1 0xA0 DUP5 ADD PUSH1 0x80 DUP6 ADD PUSH2 0x1805 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND GT PUSH2 0xF42 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F6D61785069636B73506572557365722D67742D30000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF54 PUSH1 0xC0 DUP5 ADD PUSH1 0xA0 DUP6 ADD PUSH2 0x1805 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND GT PUSH2 0xFA7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F6578706972794475726174696F6E2D67742D3000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x10 DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1007 JUMPI PUSH1 0x0 DUP6 PUSH1 0xE0 ADD DUP3 PUSH1 0x10 DUP2 LT PUSH2 0xFCC JUMPI PUSH2 0xFCC PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xFDF SWAP2 SWAP1 PUSH2 0x1805 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH2 0xFF1 DUP2 DUP6 PUSH2 0x1AFE JUMP JUMPDEST SWAP4 POP POP DUP1 DUP1 PUSH2 0xFFF SWAP1 PUSH2 0x1C04 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xFAD JUMP JUMPDEST POP PUSH4 0x3B9ACA00 DUP3 GT ISZERO PUSH2 0x105C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F74696572732D67742D3130302500000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP6 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0x10B1 JUMPI PUSH2 0x10B1 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x4 MUL ADD PUSH2 0x10BF DUP3 DUP3 PUSH2 0x1CC3 JUMP JUMPDEST POP PUSH2 0x10CC SWAP1 POP DUP2 DUP8 PUSH2 0x1558 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x403 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP5 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP3 DUP3 AND PUSH5 0x100000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000 SWAP1 SWAP5 AND SWAP6 DUP3 AND SWAP6 SWAP1 SWAP6 OR SWAP3 SWAP1 SWAP3 OR AND SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE SWAP1 MLOAD SWAP1 DUP8 AND SWAP1 PUSH32 0x2D81DA839B2F3DB2ED762907F74DF3ACECDC30461DBA4813694C225BA911E1F6 SWAP1 PUSH2 0x1185 SWAP1 DUP9 SWAP1 PUSH2 0x1A08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11A4 DUP4 PUSH2 0x1643 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x11C0 JUMPI POP DUP3 PUSH1 0x0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x120C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6675747572652D647261770000000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST DUP3 MLOAD PUSH1 0x0 SWAP1 PUSH2 0x121C SWAP1 DUP5 SWAP1 PUSH2 0x1B76 JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x127D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F657870697265642D6472617700000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0x129D DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x166B JUMP JUMPDEST SWAP1 POP PUSH2 0x12C0 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x1699 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x12D1 PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x3 PUSH2 0x12DD DUP5 DUP5 PUSH2 0x1199 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x12F4 JUMPI PUSH2 0x12F4 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP5 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x10000 DUP2 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP5 DUP7 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH19 0x1000000000000000000000000000000000000 SWAP1 DIV PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP4 ADD MSTORE DUP3 MLOAD PUSH2 0x200 DUP2 ADD SWAP4 DUP5 SWAP1 MSTORE SWAP2 SWAP3 SWAP1 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x1 DUP5 ADD SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x13B8 JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x14F5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x157E DUP4 PUSH2 0x1643 JUMP JUMPDEST ISZERO DUP1 PUSH2 0x15A1 JUMPI POP DUP3 MLOAD PUSH2 0x1592 SWAP1 PUSH1 0x1 PUSH2 0x1B16 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND EQ JUMPDEST PUSH2 0x15ED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6D7573742D62652D636F6E7469670000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1622 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x16B1 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x0 EQ DUP1 ISZERO PUSH2 0x1664 JUMPI POP DUP2 MLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x167A JUMPI POP PUSH1 0x0 PUSH2 0x311 JUMP JUMPDEST PUSH2 0x30E PUSH1 0x1 PUSH2 0x1689 DUP5 DUP7 PUSH2 0x1AFE JUMP JUMPDEST PUSH2 0x1693 SWAP2 SWAP1 PUSH2 0x1B5F JUMP JUMPDEST DUP4 PUSH2 0x16C1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16A9 DUP4 PUSH2 0x1689 DUP5 DUP8 PUSH2 0x1AFE JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30E PUSH2 0x1693 DUP5 PUSH1 0x1 PUSH2 0x1AFE JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30E DUP3 DUP5 PUSH2 0x1C3D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xC0 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xE0 DUP2 ADD PUSH2 0x1713 PUSH2 0x1720 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x200 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x10 SWAP1 PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP SWAP2 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0xAF8 DUP2 PUSH2 0x1EEC JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0xAF8 DUP2 PUSH2 0x1F0A JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0xAF8 DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1772 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1789 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x17A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x17BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x17CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x17DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x17F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1817 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1789 DUP2 PUSH2 0x1F0A JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 SUB PUSH2 0x320 DUP2 SLT ISZERO PUSH2 0x1837 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x1842 DUP2 PUSH2 0x1F0A JUMP JUMPDEST SWAP3 POP PUSH2 0x300 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 DUP3 ADD SLT ISZERO PUSH2 0x1875 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1895 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1789 DUP2 PUSH2 0x1F1C JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x18D3 JUMPI DUP2 CALLDATALOAD PUSH2 0x18B8 DUP2 PUSH2 0x1F0A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x18A4 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x18D3 JUMPI DUP2 MLOAD PUSH4 0xFFFFFFFF AND DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x18DD JUMP JUMPDEST PUSH1 0xFF DUP2 MLOAD AND DUP3 MSTORE PUSH1 0xFF PUSH1 0x20 DUP3 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x192D PUSH1 0x40 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x1945 PUSH1 0x60 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x80 DUP2 ADD MLOAD PUSH2 0x195D PUSH1 0x80 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xA0 DUP2 ADD MLOAD PUSH2 0x1975 PUSH1 0xA0 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xC0 DUP2 ADD MLOAD PUSH2 0x1996 PUSH1 0xC0 DUP5 ADD DUP3 PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x19A9 PUSH1 0xE0 DUP5 ADD DUP3 PUSH2 0x18D9 JUMP JUMPDEST POP PUSH2 0x100 ADD MLOAD PUSH2 0x2E0 SWAP2 SWAP1 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x19FC JUMPI PUSH2 0x19E8 DUP4 DUP6 MLOAD PUSH2 0x1902 JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH2 0x300 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x19D5 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD DUP3 CALLDATALOAD PUSH2 0x1A18 DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH1 0xFF AND DUP3 MSTORE PUSH2 0x1A29 PUSH1 0x20 DUP5 ADD PUSH2 0x1755 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1A3D PUSH1 0x40 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x1A54 PUSH1 0x60 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1A6B PUSH1 0x80 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x1A82 PUSH1 0xA0 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0xA0 DUP4 ADD MSTORE PUSH2 0x1A99 PUSH1 0xC0 DUP5 ADD PUSH2 0x173F JUMP JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP4 ADD MSTORE PUSH2 0x1ABD PUSH1 0xE0 DUP1 DUP5 ADD SWAP1 DUP6 ADD PUSH2 0x18A0 JUMP JUMPDEST PUSH2 0x2E0 SWAP3 DUP4 ADD CALLDATALOAD SWAP2 SWAP1 SWAP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0x311 DUP3 DUP5 PUSH2 0x1902 JUMP JUMPDEST PUSH2 0x320 DUP2 ADD PUSH2 0x1AEA DUP3 DUP6 PUSH2 0x1902 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP4 AND PUSH2 0x300 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1B11 JUMPI PUSH2 0x1B11 PUSH2 0x1C51 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1B35 JUMPI PUSH2 0x1B35 PUSH2 0x1C51 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFFFF DUP1 DUP5 AND DUP1 PUSH2 0x1B53 JUMPI PUSH2 0x1B53 PUSH2 0x1C67 JUMP JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1B71 JUMPI PUSH2 0x1B71 PUSH2 0x1C51 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1B93 JUMPI PUSH2 0x1B93 PUSH2 0x1C51 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP2 DUP2 PUSH1 0x0 DUP1 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x1BFC JUMPI DUP4 CALLDATALOAD PUSH2 0x1BB5 DUP2 PUSH2 0x1F0A JUMP JUMPDEST DUP4 SLOAD PUSH4 0xFFFFFFFF PUSH1 0x3 DUP6 SWAP1 SHL DUP2 DUP2 SHL DUP1 NOT SWAP1 SWAP4 AND SWAP4 SWAP1 SWAP2 AND SWAP1 SHL AND OR DUP4 SSTORE PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD SWAP3 PUSH1 0x4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1C DUP3 GT ISZERO PUSH2 0x1BF4 JUMPI PUSH1 0x0 SWAP2 POP PUSH1 0x1 DUP4 ADD SWAP3 POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x1BA1 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1C36 JUMPI PUSH2 0x1C36 PUSH2 0x1C51 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1C4C JUMPI PUSH2 0x1C4C PUSH2 0x1C67 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD PUSH2 0x311 DUP2 PUSH2 0x1EEC JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD PUSH2 0x311 DUP2 PUSH2 0x1F0A JUMP JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1CCE DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH1 0xFF DUP2 AND SWAP1 POP DUP2 SLOAD DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 DUP3 AND OR DUP4 SSTORE PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x1D0B DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH2 0xFF00 DUP2 PUSH1 0x8 SHL AND DUP4 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000 DUP5 AND OR OR DUP5 SSTORE POP POP POP PUSH2 0x1D84 PUSH2 0x1D4D PUSH1 0x40 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFF AND PUSH1 0x10 SWAP2 SWAP1 SWAP2 SHL PUSH6 0xFFFFFFFF0000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1DCE PUSH2 0x1D93 PUSH1 0x60 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFF AND PUSH1 0x30 SWAP2 SWAP1 SWAP2 SHL PUSH10 0xFFFFFFFF000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1E1C PUSH2 0x1DDD PUSH1 0x80 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFF AND PUSH1 0x50 SWAP2 SWAP1 SWAP2 SHL PUSH14 0xFFFFFFFF00000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1E6E PUSH2 0x1E2B PUSH1 0xA0 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x70 SWAP2 SWAP1 SWAP2 SHL PUSH18 0xFFFFFFFF0000000000000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1ECD PUSH2 0x1E7D PUSH1 0xC0 DUP5 ADD PUSH2 0x1CA9 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFF00000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x90 SWAP2 SWAP1 SWAP2 SHL PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1EDD PUSH1 0xE0 DUP4 ADD PUSH1 0x1 DUP4 ADD PUSH2 0x1B9B JUMP JUMPDEST PUSH2 0x2E0 DUP3 ADD CALLDATALOAD PUSH1 0x3 DUP3 ADD SSTORE POP POP JUMP JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F07 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F07 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1F07 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SGT 0x2F LOG1 PUSH26 0x9F3F662436D462C6E531BB3BAB5097313EE0D229D38502DB694A BALANCE SWAP15 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "904:8038:33:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5884:268;;;;;;:::i;:::-;;:::i;:::-;;;5479:14:84;;5472:22;5454:41;;5442:2;5427:18;5884:268:33;;;;;;;;3640:539;;;:::i;:::-;;;13013:10:84;13001:23;;;12983:42;;12971:2;12956:18;3640:539:33;12938:93:84;4645:1188:33;;;:::i;:::-;;;;;;;;:::i;4230:364::-;;;:::i;2630:235::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1403:89:21:-;1477:8;;-1:-1:-1;;;;;1477:8:21;1403:89;;;-1:-1:-1;;;;;4505:55:84;;;4487:74;;4475:2;4460:18;1403:89:21;4442:125:84;3147:129:22;;;:::i;:::-;;2508:94;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:22;1814:85;;2457:122:33;2546:14;:26;;;;;;2457:122;;6203:461;;;;;;:::i;:::-;;:::i;1744:123:21:-;;;;;;:::i;:::-;;:::i;2916:673:33:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2014:101:22:-;2095:13;;-1:-1:-1;;;;;2095:13:22;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;5884:268:33:-;6071:4;2861:10:21;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:21;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:21;;:48;;;-1:-1:-1;2886:10:21;2875:7;1860::22;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;2875:7:21;-1:-1:-1;;;;;2875:21:21;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:21;;9659:2:84;2840:99:21;;;9641:21:84;9698:2;9678:18;;;9671:30;9737:34;9717:18;;;9710:62;9808:8;9788:18;;;9781:36;9834:19;;2840:99:21;;;;;;;;;6094:51:33::1;6117:7;6126:18;6094:22;:51::i;:::-;6087:58;;2949:1:21;5884:268:33::0;;;;:::o;3640:539::-;3727:55;;;;;;;;3768:14;3727:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3709:6;;3793:61;;3842:1;3835:8;;;3640:539;:::o;3793:61::-;3889:16;;;;4002:27;:44;;;;;;;;;;:::i;:::-;;;;:61;;;;;;:66;3998:175;;-1:-1:-1;4091:18:33;;;;3640:539;-1:-1:-1;3640:539:33:o;4645:1188::-;4747:67;;:::i;:::-;4845:55;;;;;;;;4886:14;4845:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4816:13;;5001:27;;4845:55;5001:45;;;;;;:::i;:::-;4981:65;;;;;;;;5001:45;;;;;;;;;4981:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5001:45;;4981:65;;;;;;;;;;;-1:-1:-1;4981:65:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4981:65:33;;;-1:-1:-1;;;4981:65:33;;;;;;;;;;;5149:17;;4981:65;;-1:-1:-1;5149:22:33;;5145:682;;5196:1;5187:10;;4835:998;4645:1188;;:::o;5145:682::-;5283:30;;:35;;5279:548;;5469:50;;;;;;;;5489:27;5469:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5489:27;;5469:50;;;;5489:30;;5469:50;;5489:30;5517:1;5469:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5469:50:33;;;-1:-1:-1;;;5469:50:33;;;;;;;;;;;5568:16;;;5543:17;;5469:50;;-1:-1:-1;5568:16:33;5543:21;;5563:1;5543:21;:::i;:::-;5542:42;;;;:::i;:::-;5533:51;;4835:998;4645:1188;;:::o;5279:548::-;5798:18;;;;5773:17;;:21;;5793:1;5773:21;:::i;4230:364::-;4332:67;;:::i;:::-;4430:55;;;;;;;;4471:14;4430:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4401:13;;4504:27;;4532:34;;4430:55;;;4532:15;:34;:::i;:::-;4504:63;;;;;;;;;:::i;:::-;4569:17;;4496:91;;;;;;;;4504:63;;;;;;;;;4496:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4504:63;;4569:17;;4496:91;4504:63;;4496:91;;;;;;;;;;;-1:-1:-1;4496:91:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4230:364;;:::o;2630:235::-;2740:49;;:::i;:::-;2812:46;;;;;;;;2834:14;2812:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2850:7;2812:21;:46::i;3147:129:22:-;4050:13;;-1:-1:-1;;;;;4050:13:22;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:22;;7889:2:84;4028:71:22;;;7871:21:84;7928:2;7908:18;;;7901:30;7967:33;7947:18;;;7940:61;8018:18;;4028:71:22;7861:181:84;4028:71:22;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:22::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:22::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7178:2:84;3819:58:22;;;7160:21:84;7217:2;7197:18;;;7190:30;7256:26;7236:18;;;7229:54;7300:18;;3819:58:22;7150:174:84;3819:58:22;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;6203:461:33:-;6380:6;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7178:2:84;3819:58:22;;;7160:21:84;7217:2;7197:18;;;7190:30;7256:26;7236:18;;;7229:54;7300:18;;3819:58:22;7150:174:84;3819:58:22;6398:55:33::1;::::0;;::::1;::::0;::::1;::::0;;6439:14:::1;6398:55:::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;;::::0;::::1;::::0;;;;::::1;::::0;::::1;::::0;;;;;;;;:38:::1;::::0;6478:24:::1;::::0;6398:55;;6494:7;;6478:15:::1;:24;:::i;:::-;6463:39;;6549:18;6512:27;6540:5;6512:34;;;;;;;;;:::i;:::-;;;;:55;::::0;:34;:55:::1;:::i;:::-;;;;6604:7;6583:49;;;6613:18;6583:49;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;6650:7:33;;6203:461;-1:-1:-1;;;6203:461:33:o;1744:123:21:-;1813:4;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7178:2:84;3819:58:22;;;7160:21:84;7217:2;7197:18;;;7190:30;7256:26;7236:18;;;7229:54;7300:18;;3819:58:22;7150:174:84;3819:58:22;1836:24:21::1;1848:11;1836;:24::i;3887:1:22:-;1744:123:21::0;;;:::o;2916:673:33:-;3155:55;;;3039:51;3155:55;;;;;3196:14;3155:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;3130:8;;3106:21;3130:8;3306:93;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;3220:179;;3415:9;3410:136;3434:13;3430:1;:17;3410:136;;;3493:42;3515:6;3523:8;;3532:1;3523:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3493:21;:42::i;:::-;3468:19;3488:1;3468:22;;;;;;;;:::i;:::-;;;;;;:67;;;;3449:3;;;;;:::i;:::-;;;;3410:136;;;-1:-1:-1;3563:19:33;2916:673;-1:-1:-1;;;;;2916:673:33:o;2751:234:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7178:2:84;3819:58:22;;;7160:21:84;7217:2;7197:18;;;7190:30;7256:26;7236:18;;;7229:54;7300:18;;3819:58:22;7150:174:84;3819:58:22;-1:-1:-1;;;;;2834:23:22;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:22;;10411:2:84;2826:73:22::1;::::0;::::1;10393:21:84::0;10450:2;10430:18;;;10423:30;10489:34;10469:18;;;10462:62;10560:7;10540:18;;;10533:35;10585:19;;2826:73:22::1;10383:227:84::0;2826:73:22::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:22::1;-1:-1:-1::0;;;;;2910:25:22;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:22::1;2751:234:::0;:::o;7342:1598:33:-;7502:4;7536:1;7526:7;:11;;;7518:45;;;;-1:-1:-1;;;7518:45:33;;8593:2:84;7518:45:33;;;8575:21:84;8632:2;8612:18;;;8605:30;8671:23;8651:18;;;8644:51;8712:18;;7518:45:33;8565:171:84;7518:45:33;7619:1;7581:35;;;;;;;;:::i;:::-;:39;;;7573:82;;;;-1:-1:-1;;;7573:82:33;;9300:2:84;7573:82:33;;;9282:21:84;9339:2;9319:18;;;9312:30;9378:32;9358:18;;;9351:60;9428:18;;7573:82:33;9272:180:84;7573:82:33;7727:35;;;;;;;;:::i;:::-;7721:41;;;;:3;:41;:::i;:::-;7686:76;;:31;;;;:18;:31;:::i;:::-;:76;;;;7665:154;;;;-1:-1:-1;;;7665:154:33;;6818:2:84;7665:154:33;;;6800:21:84;6857:2;6837:18;;;6830:30;6896:33;6876:18;;;6869:61;6947:18;;7665:154:33;6790:181:84;7665:154:33;7872:1;7838:31;;;;:18;:31;:::i;:::-;:35;;;7830:74;;;;-1:-1:-1;;;7830:74:33;;5708:2:84;7830:74:33;;;5690:21:84;5747:2;5727:18;;;5720:30;5786:28;5766:18;;;5759:56;5832:18;;7830:74:33;5680:176:84;7830:74:33;7959:1;7922:34;;;;;;;;:::i;:::-;:38;;;7914:80;;;;-1:-1:-1;;;7914:80:33;;7531:2:84;7914:80:33;;;7513:21:84;7570:2;7550:18;;;7543:30;7609:31;7589:18;;;7582:59;7658:18;;7914:80:33;7503:179:84;7914:80:33;8048:1;8012:33;;;;;;;;:::i;:::-;:37;;;8004:78;;;;-1:-1:-1;;;8004:78:33;;8943:2:84;8004:78:33;;;8925:21:84;8982:2;8962:18;;;8955:30;9021;9001:18;;;8994:58;9069:18;;8004:78:33;8915:178:84;8004:78:33;8153:21;8210:31;8153:21;8252:160;8284:11;8276:5;:19;8252:160;;;8320:12;8335:18;:24;;8360:5;8335:31;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;8320:46;;;-1:-1:-1;8380:21:33;8320:46;8380:21;;:::i;:::-;;;8306:106;8297:7;;;;;:::i;:::-;;;;8252:160;;;;1446:3;8501:13;:30;;8493:65;;;;-1:-1:-1;;;8493:65:33;;6063:2:84;8493:65:33;;;6045:21:84;6102:2;6082:18;;;6075:30;6141:24;6121:18;;;6114:52;6183:18;;8493:65:33;6035:172:84;8493:65:33;8569:55;;;;;;;;8610:14;8569:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8741:18;;8693:27;;8569:55;8693:45;;;;;;:::i;:::-;;;;:66;;:45;:66;:::i;:::-;-1:-1:-1;8826:20:33;;-1:-1:-1;8826:6:33;8838:7;8826:11;:20::i;:::-;8809:37;;:14;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8862:49;;;;;;;;;;8892:18;;8862:49;:::i;:::-;;;;;;;;-1:-1:-1;8929:4:33;;7342:1598;-1:-1:-1;;;;;7342:1598:33:o;1587:517:52:-;1667:6;1693:22;1707:7;1693:13;:22::i;:::-;:55;;;;;1730:7;:18;;;1719:29;;:7;:29;;;;1693:55;1685:83;;;;-1:-1:-1;;;1685:83:52;;8249:2:84;1685:83:52;;;8231:21:84;8288:2;8268:18;;;8261:30;8327:17;8307:18;;;8300:45;8362:18;;1685:83:52;8221:165:84;1685:83:52;1800:18;;1779;;1800:28;;1821:7;;1800:28;:::i;:::-;1779:49;;1860:7;:19;;;1846:33;;:11;:33;;;1838:62;;;;-1:-1:-1;;;1838:62:52;;10066:2:84;1838:62:52;;;10048:21:84;10105:2;10085:18;;;10078:30;10144:18;10124;;;10117:46;10180:18;;1838:62:52;10038:166:84;1838:62:52;1911:18;1932:65;1958:7;:17;;;1932:65;;1977:7;:19;;;1932:65;;:25;:65::i;:::-;1911:86;;2022:74;2050:10;2022:74;;2063:11;2022:74;;2076:7;:19;;;2022:74;;:20;:74::i;:::-;2008:89;1587:517;-1:-1:-1;;;;;1587:517:52:o;6879:268:33:-;7014:49;;:::i;:::-;7086:27;7114:25;:7;7131;7114:16;:25::i;:::-;7086:54;;;;;;;;;:::i;:::-;7079:61;;;;;;;;7086:54;;;;;;;;;7079:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7086:54;;7079:61;;;;;;;;;;;-1:-1:-1;7079:61:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6879:268;;;;:::o;3470:174:22:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;2109:326:21:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:21;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:21;;6414:2:84;2230:79:21;;;6396:21:84;6453:2;6433:18;;;6426:30;6492:34;6472:18;;;6465:62;6563:5;6543:18;;;6536:33;6586:19;;2230:79:21;6386:225:84;2230:79:21;2320:8;:22;;-1:-1:-1;;2320:22:21;-1:-1:-1;;;;;2320:22:21;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:21;-1:-1:-1;2424:4:21;;2109:326;-1:-1:-1;;2109:326:21:o;919:438:52:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;1029:22:52;1043:7;1029:13;:22::i;:::-;1028:23;:60;;;-1:-1:-1;1066:18:52;;:22;;1087:1;1066:22;:::i;:::-;1055:33;;:7;:33;;;1028:60;1020:91;;;;-1:-1:-1;;;1020:91:52;;10817:2:84;1020:91:52;;;10799:21:84;10856:2;10836:18;;;10829:30;10895:20;10875:18;;;10868:48;10933:18;;1020:91:52;10789:168:84;1020:91:52;1141:209;;;;;;;;1178:7;1141:209;;;;;;1221:63;1245:7;:17;;;1221:63;;1264:7;:19;;;1221:63;;:23;:63::i;:::-;1141:209;;;;;;1316:7;:19;;;1141:209;;;;;1122:228;;919:438;;;;:::o;598:151::-;667:4;692:7;:17;;;:22;;713:1;692:22;:49;;;;-1:-1:-1;718:18:52;;:23;;;692:49;690:52;;598:151;-1:-1:-1;;598:151:52:o;1666:262:56:-;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:56;1836:8;;1799:56;1872:49;1905:1;1877:25;1890:12;1877:10;:25;:::i;:::-;:29;;;;:::i;:::-;1908:12;1872:4;:49::i;1186:208::-;1310:7;1336:51;1365:7;1341:21;1350:12;1341:6;:21;:::i;1336:51::-;1329:58;1186:208;-1:-1:-1;;;;1186:208:56:o;2263:171::-;2367:7;2397:30;2402:10;:6;2411:1;2402:10;:::i;580:129::-;655:7;681:21;690:12;681:6;:21;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:134:84:-;82:20;;111:31;82:20;111:31;:::i;153:132::-;220:20;;249:30;220:20;249:30;:::i;290:130::-;356:20;;385:29;356:20;385:29;:::i;425:309::-;484:6;537:2;525:9;516:7;512:23;508:32;505:2;;;553:1;550;543:12;505:2;592:9;579:23;-1:-1:-1;;;;;635:5:84;631:54;624:5;621:65;611:2;;700:1;697;690:12;611:2;723:5;495:239;-1:-1:-1;;;495:239:84:o;739:614::-;824:6;832;885:2;873:9;864:7;860:23;856:32;853:2;;;901:1;898;891:12;853:2;941:9;928:23;970:18;1011:2;1003:6;1000:14;997:2;;;1027:1;1024;1017:12;997:2;1065:6;1054:9;1050:22;1040:32;;1110:7;1103:4;1099:2;1095:13;1091:27;1081:2;;1132:1;1129;1122:12;1081:2;1172;1159:16;1198:2;1190:6;1187:14;1184:2;;;1214:1;1211;1204:12;1184:2;1267:7;1262:2;1252:6;1249:1;1245:14;1241:2;1237:23;1233:32;1230:45;1227:2;;;1288:1;1285;1278:12;1227:2;1319;1311:11;;;;;1341:6;;-1:-1:-1;843:510:84;;-1:-1:-1;;;;843:510:84:o;1358:245::-;1416:6;1469:2;1457:9;1448:7;1444:23;1440:32;1437:2;;;1485:1;1482;1475:12;1437:2;1524:9;1511:23;1543:30;1567:5;1543:30;:::i;1608:473::-;1713:6;1721;1765:9;1756:7;1752:23;1795:3;1791:2;1787:12;1784:2;;;1812:1;1809;1802:12;1784:2;1851:9;1838:23;1870:30;1894:5;1870:30;:::i;:::-;1919:5;-1:-1:-1;2017:3:84;1948:66;1940:75;;1936:85;1933:2;;;2034:1;2031;2024:12;1933:2;;2072;2061:9;2057:18;2047:28;;1732:349;;;;;:::o;2086:243::-;2143:6;2196:2;2184:9;2175:7;2171:23;2167:32;2164:2;;;2212:1;2209;2202:12;2164:2;2251:9;2238:23;2270:29;2293:5;2270:29;:::i;2334:438::-;2435:5;2458:1;2468:298;2482:4;2479:1;2476:11;2468:298;;;2557:6;2544:20;2577:32;2601:7;2577:32;:::i;:::-;2647:10;2634:24;2622:37;;2682:4;2706:12;;;;2741:15;;;;;2502:1;2495:9;2468:298;;;2472:3;;2392:380;;:::o;2777:342::-;2869:5;2892:1;2902:211;2916:4;2913:1;2910:11;2902:211;;;2979:13;;2994:10;2975:30;2963:43;;3029:4;3053:12;;;;3088:15;;;;2936:1;2929:9;2902:211;;3124:915;3225:4;3217:5;3211:12;3207:23;3202:3;3195:36;3292:4;3284;3277:5;3273:16;3267:23;3263:34;3256:4;3251:3;3247:14;3240:58;3344:4;3337:5;3333:16;3327:23;3359:47;3400:4;3395:3;3391:14;3377:12;4238:10;4227:22;4215:35;;4205:51;3359:47;;3454:4;3447:5;3443:16;3437:23;3469:49;3512:4;3507:3;3503:14;3487;4238:10;4227:22;4215:35;;4205:51;3469:49;;3566:4;3559:5;3555:16;3549:23;3581:49;3624:4;3619:3;3615:14;3599;4238:10;4227:22;4215:35;;4205:51;3581:49;;3678:4;3671:5;3667:16;3661:23;3693:49;3736:4;3731:3;3727:14;3711;4238:10;4227:22;4215:35;;4205:51;3693:49;;3790:4;3783:5;3779:16;3773:23;3805:50;3849:4;3844:3;3840:14;3824;4121:28;4110:40;4098:53;;4088:69;3805:50;;3903:4;3896:5;3892:16;3886:23;3918:55;3967:4;3962:3;3958:14;3942;3918:55;:::i;:::-;-1:-1:-1;4024:6:84;4013:18;4007:25;3998:6;3989:16;;;;3982:51;3185:854::o;4572:737::-;4815:2;4867:21;;;4937:13;;4840:18;;;4959:22;;;4786:4;;4815:2;5038:15;;;;5012:2;4997:18;;;4786:4;5081:202;5095:6;5092:1;5089:13;5081:202;;;5144:55;5195:3;5186:6;5180:13;5144:55;:::i;:::-;5258:15;;;;5228:6;5219:16;;;;;5117:1;5110:9;5081:202;;;-1:-1:-1;5300:3:84;;4795:514;-1:-1:-1;;;;;;4795:514:84:o;10962:1217::-;11170:3;11155:19;;11196:20;;11225:29;11196:20;11225:29;:::i;:::-;11292:4;11281:16;11263:35;;11322;11351:4;11339:17;;11322:35;:::i;:::-;4328:4;4317:16;11407:4;11392:20;;4305:29;11437:36;11467:4;11455:17;;11437:36;:::i;:::-;4238:10;4227:22;11524:4;11509:20;;4215:35;11554:36;11584:4;11572:17;;11554:36;:::i;:::-;4238:10;4227:22;11641:4;11626:20;;4215:35;11671:36;11701:4;11689:17;;11671:36;:::i;:::-;4238:10;4227:22;11758:4;11743:20;;4215:35;11788:36;11818:4;11806:17;;11788:36;:::i;:::-;4238:10;4227:22;11875:4;11860:20;;4215:35;11905:37;11936:4;11924:17;;11905:37;:::i;:::-;4121:28;4110:40;11994:4;11979:20;;4098:53;12009:73;12076:4;12061:20;;;;12042:17;;12009:73;:::i;:::-;12101:6;12156:15;;;12143:29;12123:18;;;;12116:57;11137:1042;:::o;12184:279::-;12390:3;12375:19;;12403:54;12379:9;12439:6;12403:54;:::i;12468:366::-;12700:3;12685:19;;12713:54;12689:9;12749:6;12713:54;:::i;:::-;12816:10;12808:6;12804:23;12798:3;12787:9;12783:19;12776:52;12667:167;;;;;:::o;13036:128::-;13076:3;13107:1;13103:6;13100:1;13097:13;13094:2;;;13113:18;;:::i;:::-;-1:-1:-1;13149:9:84;;13084:80::o;13169:228::-;13208:3;13236:10;13273:2;13270:1;13266:10;13303:2;13300:1;13296:10;13334:3;13330:2;13326:12;13321:3;13318:21;13315:2;;;13342:18;;:::i;:::-;13378:13;;13216:181;-1:-1:-1;;;;13216:181:84:o;13402:187::-;13441:1;13467:6;13500:2;13497:1;13493:10;13522:3;13512:2;;13529:18;;:::i;:::-;13567:10;;13563:20;;;;;13447:142;-1:-1:-1;;13447:142:84:o;13594:125::-;13634:4;13662:1;13659;13656:8;13653:2;;;13667:18;;:::i;:::-;-1:-1:-1;13704:9:84;;13643:76::o;13724:221::-;13763:4;13792:10;13852;;;;13822;;13874:12;;;13871:2;;;13889:18;;:::i;:::-;13926:13;;13772:173;-1:-1:-1;;;13772:173:84:o;13950:887::-;14063:5;14096:4;14130:1;14149:13;14171:660;14185:4;14182:1;14179:11;14171:660;;;14260:6;14247:20;14280:32;14304:7;14280:32;:::i;:::-;14368:18;;14335:10;14420:1;14416:21;;;14462:18;;;14524:9;;14516:18;;;14555:16;;;;14540:32;;14536:43;14513:67;14493:88;;14616:2;14604:15;;;;;14668:1;14649:21;;;;14704:2;14686:21;;14683:2;;;14755:1;14738:18;;14805:1;14792:11;14788:19;14773:34;;14683:2;14205:1;14198:9;14171:660;;;14175:3;;;;14039:798;;:::o;14842:195::-;14881:3;14912:66;14905:5;14902:77;14899:2;;;14982:18;;:::i;:::-;-1:-1:-1;15029:1:84;15018:13;;14889:148::o;15042:112::-;15074:1;15100;15090:2;;15105:18;;:::i;:::-;-1:-1:-1;15139:9:84;;15080:74::o;15159:184::-;-1:-1:-1;;;15208:1:84;15201:88;15308:4;15305:1;15298:15;15332:4;15329:1;15322:15;15348:184;-1:-1:-1;;;15397:1:84;15390:88;15497:4;15494:1;15487:15;15521:4;15518:1;15511:15;15537:184;-1:-1:-1;;;15586:1:84;15579:88;15686:4;15683:1;15676:15;15710:4;15707:1;15700:15;15726:184;-1:-1:-1;;;15775:1:84;15768:88;15875:4;15872:1;15865:15;15899:4;15896:1;15889:15;15915:176;15960:11;16012:3;15999:17;16025:31;16050:5;16025:31;:::i;16096:174::-;16140:11;16192:3;16179:17;16205:30;16229:5;16205:30;:::i;16275:1338::-;16462:5;16449:19;16477:31;16500:7;16477:31;:::i;:::-;16540:4;16531:7;16527:18;16517:28;;16570:4;16564:11;16677:2;16608:66;16604:2;16600:75;16597:83;16591:4;16584:97;16729:2;16722:5;16718:14;16705:28;16742:31;16765:7;16742:31;:::i;:::-;16904:5;16894:7;16891:1;16887:15;16883:27;16878:2;16809:66;16805:2;16801:75;16798:83;16795:116;16789:4;16782:130;;;;16921:97;16975:42;17013:2;17006:5;17002:14;16975:42;:::i;:::-;18568:11;;18612:66;18604:75;18689:2;18685:14;;;;18701;18681:35;18601:116;18588:130;;18548:176;16921:97;17027;17081:42;17119:2;17112:5;17108:14;17081:42;:::i;:::-;18823:11;;18867:66;18859:75;18944:2;18940:14;;;;18956:22;18936:43;18856:124;18843:138;;18803:184;17027:97;17133:99;17188:43;17226:3;17219:5;17215:15;17188:43;:::i;:::-;17713:11;;17757:66;17749:75;17834:2;17830:14;;;;17846:30;17826:51;17746:132;17733:146;;17693:192;17133:99;17241:96;17293:43;17331:3;17324:5;17320:15;17293:43;:::i;:::-;17982:11;;18026:66;18018:75;18103:3;18099:15;;;;18116:38;18095:60;18015:141;18002:155;;17962:201;17241:96;17346:99;17400:44;17439:3;17432:5;17428:15;17400:44;:::i;:::-;18262:11;;18306:66;18298:75;18383:3;18379:15;;;;18396:64;18375:86;18295:167;18282:181;;18242:227;17346:99;17454:93;17542:3;17535:5;17531:15;17527:1;17521:4;17517:12;17454:93;:::i;:::-;17601:3;17594:5;17590:15;17577:29;17573:1;17567:4;17563:12;17556:51;16424:1189;;:::o;18992:140::-;19078:28;19071:5;19067:40;19060:5;19057:51;19047:2;;19122:1;19119;19112:12;19047:2;19037:95;:::o;19137:121::-;19222:10;19215:5;19211:22;19204:5;19201:33;19191:2;;19248:1;19245;19238:12;19263:114;19347:4;19340:5;19336:16;19329:5;19326:27;19316:2;;19367:1;19364;19357:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1606600",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "claimOwnership()": "54530",
                "getBufferCardinality()": "2385",
                "getNewestPrizeDistribution()": "infinite",
                "getOldestPrizeDistribution()": "infinite",
                "getPrizeDistribution(uint32)": "infinite",
                "getPrizeDistributionCount()": "4710",
                "getPrizeDistributions(uint32[])": "infinite",
                "manager()": "2387",
                "owner()": "2376",
                "pendingOwner()": "2397",
                "pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "infinite",
                "renounceOwnership()": "28158",
                "setManager(address)": "30521",
                "setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "infinite",
                "transferOwnership(address)": "27959"
              },
              "internal": {
                "_getPrizeDistribution(struct DrawRingBufferLib.Buffer memory,uint32)": "infinite",
                "_pushPrizeDistribution(uint32,struct IPrizeDistributionSource.PrizeDistribution calldata)": "infinite"
              }
            },
            "methodIdentifiers": {
              "claimOwnership()": "4e71e0c8",
              "getBufferCardinality()": "caeef7ec",
              "getNewestPrizeDistribution()": "24c21446",
              "getOldestPrizeDistribution()": "2439093a",
              "getPrizeDistribution(uint32)": "3cd8e2d5",
              "getPrizeDistributionCount()": "21e98ad9",
              "getPrizeDistributions(uint32[])": "d30a5daf",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "1124e1dc",
              "renounceOwnership()": "715018a6",
              "setManager(address)": "d0ebdbe7",
              "setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "ce336ce9",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"uint8\",\"name\":\"_cardinality\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"cardinality\",\"type\":\"uint8\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"indexed\":false,\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"PrizeDistributionSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBufferCardinality\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNewestPrizeDistribution\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getOldestPrizeDistribution\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"}],\"name\":\"getPrizeDistribution\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeDistributionCount\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getPrizeDistributions\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"_prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"pushPrizeDistribution\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"_prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"setPrizeDistribution\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"Deployed(uint8)\":{\"params\":{\"cardinality\":\"The maximum number of records in the buffer before they begin to expire.\"}}},\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_cardinality\":\"Cardinality of the `bufferMetadata`\",\"_owner\":\"Address of the PrizeDistributionBuffer owner\"}},\"getBufferCardinality()\":{\"returns\":{\"_0\":\"Ring buffer cardinality\"}},\"getNewestPrizeDistribution()\":{\"details\":\"Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\",\"returns\":{\"drawId\":\"drawId\",\"prizeDistribution\":\"prizeDistribution\"}},\"getOldestPrizeDistribution()\":{\"details\":\"Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\",\"returns\":{\"drawId\":\"drawId\",\"prizeDistribution\":\"prizeDistribution\"}},\"getPrizeDistribution(uint32)\":{\"params\":{\"drawId\":\"drawId\"},\"returns\":{\"_0\":\"prizeDistribution\"}},\"getPrizeDistributionCount()\":{\"details\":\"If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestPrizeDistribution index + 1.\",\"returns\":{\"_0\":\"Number of PrizeDistributions stored in the prize distributions ring buffer.\"}},\"getPrizeDistributions(uint32[])\":{\"params\":{\"drawIds\":\"drawIds to get PrizeDistribution for\"},\"returns\":{\"_0\":\"prizeDistributionList\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"details\":\"Only callable by the owner or manager\",\"params\":{\"drawId\":\"Draw ID linked to PrizeDistribution parameters\",\"prizeDistribution\":\"PrizeDistribution parameters struct\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"details\":\"Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\" fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update the invalid parameters with correct parameters.\",\"returns\":{\"_0\":\"drawId\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"stateVariables\":{\"MAX_CARDINALITY\":{\"details\":\"even with daily draws, 256 will give us over 8 months of history.\"},\"TIERS_CEILING\":{\"details\":\"It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\"}},\"title\":\"PoolTogether V4 PrizeDistributionBuffer\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(uint8)\":{\"notice\":\"Emitted when the contract is deployed.\"},\"PrizeDistributionSet(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Emit when PrizeDistribution is set.\"}},\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Constructor for PrizeDistributionBuffer\"},\"getBufferCardinality()\":{\"notice\":\"Read a ring buffer cardinality\"},\"getNewestPrizeDistribution()\":{\"notice\":\"Read newest PrizeDistribution from prize distributions ring buffer.\"},\"getOldestPrizeDistribution()\":{\"notice\":\"Read oldest PrizeDistribution from prize distributions ring buffer.\"},\"getPrizeDistribution(uint32)\":{\"notice\":\"Gets the PrizeDistributionBuffer for a drawId\"},\"getPrizeDistributionCount()\":{\"notice\":\"Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\"},\"getPrizeDistributions(uint32[])\":{\"notice\":\"Gets PrizeDistribution list from array of drawIds\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Adds new PrizeDistribution record to ring buffer storage.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to validate the incoming parameters.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/PrizeDistributionBuffer.sol\":\"PrizeDistributionBuffer\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionSource\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"license\":\"GPL-3.0\"},\"contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3834,
                "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 8643,
                "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                "label": "prizeDistributionRingBuffer",
                "offset": 0,
                "slot": "3",
                "type": "t_array(t_struct(PrizeDistribution)11491_storage)256_storage"
              },
              {
                "astId": 8647,
                "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                "label": "bufferMetadata",
                "offset": 0,
                "slot": "1027",
                "type": "t_struct(Buffer)12224_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(PrizeDistribution)11491_storage)256_storage": {
                "base": "t_struct(PrizeDistribution)11491_storage",
                "encoding": "inplace",
                "label": "struct IPrizeDistributionSource.PrizeDistribution[256]",
                "numberOfBytes": "32768"
              },
              "t_array(t_uint32)16_storage": {
                "base": "t_uint32",
                "encoding": "inplace",
                "label": "uint32[16]",
                "numberOfBytes": "64"
              },
              "t_struct(Buffer)12224_storage": {
                "encoding": "inplace",
                "label": "struct DrawRingBufferLib.Buffer",
                "members": [
                  {
                    "astId": 12219,
                    "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "lastDrawId",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 12221,
                    "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "nextIndex",
                    "offset": 4,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 12223,
                    "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "cardinality",
                    "offset": 8,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(PrizeDistribution)11491_storage": {
                "encoding": "inplace",
                "label": "struct IPrizeDistributionSource.PrizeDistribution",
                "members": [
                  {
                    "astId": 11472,
                    "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "bitRangeSize",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint8"
                  },
                  {
                    "astId": 11474,
                    "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "matchCardinality",
                    "offset": 1,
                    "slot": "0",
                    "type": "t_uint8"
                  },
                  {
                    "astId": 11476,
                    "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "startTimestampOffset",
                    "offset": 2,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 11478,
                    "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "endTimestampOffset",
                    "offset": 6,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 11480,
                    "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "maxPicksPerUser",
                    "offset": 10,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 11482,
                    "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "expiryDuration",
                    "offset": 14,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 11484,
                    "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "numberOfPicks",
                    "offset": 18,
                    "slot": "0",
                    "type": "t_uint104"
                  },
                  {
                    "astId": 11488,
                    "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "tiers",
                    "offset": 0,
                    "slot": "1",
                    "type": "t_array(t_uint32)16_storage"
                  },
                  {
                    "astId": 11490,
                    "contract": "contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "prize",
                    "offset": 0,
                    "slot": "3",
                    "type": "t_uint256"
                  }
                ],
                "numberOfBytes": "128"
              },
              "t_uint104": {
                "encoding": "inplace",
                "label": "uint104",
                "numberOfBytes": "13"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              },
              "t_uint8": {
                "encoding": "inplace",
                "label": "uint8",
                "numberOfBytes": "1"
              }
            }
          },
          "userdoc": {
            "events": {
              "Deployed(uint8)": {
                "notice": "Emitted when the contract is deployed."
              },
              "PrizeDistributionSet(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Emit when PrizeDistribution is set."
              }
            },
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Constructor for PrizeDistributionBuffer"
              },
              "getBufferCardinality()": {
                "notice": "Read a ring buffer cardinality"
              },
              "getNewestPrizeDistribution()": {
                "notice": "Read newest PrizeDistribution from prize distributions ring buffer."
              },
              "getOldestPrizeDistribution()": {
                "notice": "Read oldest PrizeDistribution from prize distributions ring buffer."
              },
              "getPrizeDistribution(uint32)": {
                "notice": "Gets the PrizeDistributionBuffer for a drawId"
              },
              "getPrizeDistributionCount()": {
                "notice": "Gets the number of PrizeDistributions stored in the prize distributions ring buffer."
              },
              "getPrizeDistributions(uint32[])": {
                "notice": "Gets PrizeDistribution list from array of drawIds"
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Adds new PrizeDistribution record to ring buffer storage."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to validate the incoming parameters.",
            "version": 1
          }
        }
      },
      "contracts/PrizeDistributor.sol": {
        "PrizeDistributor": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IERC20",
                  "name": "_token",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "_drawCalculator",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "payout",
                  "type": "uint256"
                }
              ],
              "name": "ClaimedDraw",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IDrawCalculator",
                  "name": "calculator",
                  "type": "address"
                }
              ],
              "name": "DrawCalculatorSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IERC20",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "ERC20Withdrawn",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IERC20",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "TokenSet",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                },
                {
                  "internalType": "bytes",
                  "name": "_data",
                  "type": "bytes"
                }
              ],
              "name": "claim",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawCalculator",
              "outputs": [
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                }
              ],
              "name": "getDrawPayoutBalanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "_newCalculator",
                  "type": "address"
                }
              ],
              "name": "setDrawCalculator",
              "outputs": [
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "_erc20Token",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawERC20",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "claim(address,uint32[],bytes)": {
                "details": "The claim function is public and any wallet may execute claim on behalf of another user. Prizes are always paid out to the designated user account and not the caller (msg.sender). Claiming prizes is not limited to a single transaction. Reclaiming can be executed subsequentially if an \"optimal\" prize was not included in previous claim pick indices. The payout difference for the new claim is calculated during the award process and transfered to user.",
                "params": {
                  "data": "The data to pass to the draw calculator",
                  "drawIds": "Draw IDs from global DrawBuffer reference",
                  "user": "Address of user to claim awards for. Does NOT need to be msg.sender"
                },
                "returns": {
                  "_0": "Total claim payout. May include calcuations from multiple draws."
                }
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_drawCalculator": "DrawCalculator address",
                  "_owner": "Owner address",
                  "_token": "Token address"
                }
              },
              "getDrawCalculator()": {
                "returns": {
                  "_0": "IDrawCalculator"
                }
              },
              "getDrawPayoutBalanceOf(address,uint32)": {
                "params": {
                  "drawId": "Draw ID",
                  "user": "User address"
                }
              },
              "getToken()": {
                "returns": {
                  "_0": "IERC20"
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setDrawCalculator(address)": {
                "params": {
                  "newCalculator": "DrawCalculator address"
                },
                "returns": {
                  "_0": "New DrawCalculator address"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              },
              "withdrawERC20(address,address,uint256)": {
                "details": "Only callable by contract owner.",
                "params": {
                  "amount": "Amount of tokens to transfer.",
                  "to": "Recipient of the tokens.",
                  "token": "ERC20 token to transfer."
                },
                "returns": {
                  "_0": "true if operation is successful."
                }
              }
            },
            "title": "PoolTogether V4 PrizeDistributor",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_3961": {
                  "entryPoint": null,
                  "id": 3961,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_9185": {
                  "entryPoint": null,
                  "id": 9185,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_setDrawCalculator_9469": {
                  "entryPoint": 343,
                  "id": 9469,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 263,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IERC20_$663t_contract$_IDrawCalculator_$11391_fromMemory": {
                  "entryPoint": 505,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_encode_tuple_t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b09861a6e3472a0ae06dbc1049ae23a78f713c98749e48e17d9e49fc97adfcdd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 589,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1477:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "168:404:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "214:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "223:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "226:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "216:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "216:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "216:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "189:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "198:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "185:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "185:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "181:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "181:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "178:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "239:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "258:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "252:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "252:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "243:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "302:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "277:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "277:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "277:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "317:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "327:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "317:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "341:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "366:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "377:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "362:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "362:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "356:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "345:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "415:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "390:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "390:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "390:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "432:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "442:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "432:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "458:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "483:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "494:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "479:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "479:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "473:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "473:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "462:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "532:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "507:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "507:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "507:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "549:17:84",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "559:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "549:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IERC20_$663t_contract$_IDrawCalculator_$11391_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "118:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "129:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "141:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "149:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "157:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:558:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "751:180:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "768:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "779:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "761:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "761:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "761:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "802:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "813:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "798:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "798:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "818:2:84",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "791:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "791:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "791:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "841:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "852:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "837:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "837:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "857:32:84",
                                    "type": "",
                                    "value": "PrizeDistributor/calc-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "830:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "830:60:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "830:60:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "899:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "911:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "922:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "907:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "907:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "899:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "728:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "742:4:84",
                            "type": ""
                          }
                        ],
                        "src": "577:354:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1110:229:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1127:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1138:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1120:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1120:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1120:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1161:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1172:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1157:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1157:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1177:2:84",
                                    "type": "",
                                    "value": "39"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1150:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1150:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1150:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1200:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1211:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1196:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1196:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f746f6b656e2d6e6f742d7a65726f2d",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1216:34:84",
                                    "type": "",
                                    "value": "PrizeDistributor/token-not-zero-"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1189:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1189:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1189:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1271:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1282:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1267:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1267:18:84"
                                  },
                                  {
                                    "hexValue": "61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1287:9:84",
                                    "type": "",
                                    "value": "address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1260:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1260:37:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1260:37:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1306:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1318:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1329:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1314:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1314:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1306:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b09861a6e3472a0ae06dbc1049ae23a78f713c98749e48e17d9e49fc97adfcdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1087:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1101:4:84",
                            "type": ""
                          }
                        ],
                        "src": "936:403:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1389:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1453:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1462:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1465:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1455:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1455:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1455:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1412:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1423:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1438:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1443:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1434:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1434:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1447:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1430:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1430:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1419:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1419:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1409:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1409:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1402:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1402:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1399:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1378:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1344:131:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IERC20_$663t_contract$_IDrawCalculator_$11391_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"PrizeDistributor/calc-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_b09861a6e3472a0ae06dbc1049ae23a78f713c98749e48e17d9e49fc97adfcdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 39)\n        mstore(add(headStart, 64), \"PrizeDistributor/token-not-zero-\")\n        mstore(add(headStart, 96), \"address\")\n        tail := add(headStart, 128)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b50604051620014b5380380620014b58339810160408190526200003491620001f9565b82620000408162000107565b506200004c8162000157565b6001600160a01b038216620000b85760405162461bcd60e51b815260206004820152602760248201527f5072697a654469737472696275746f722f746f6b656e2d6e6f742d7a65726f2d6044820152666164647265737360c81b60648201526084015b60405180910390fd5b6001600160601b0319606083901b166080526040516001600160a01b038316907fa07c91c183e42229e705a9795a1c06d76528b673788b849597364528c96eefb790600090a250505062000266565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038116620001af5760405162461bcd60e51b815260206004820152601e60248201527f5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f00006044820152606401620000af565b600280546001600160a01b0319166001600160a01b0383169081179091556040517fff37eafdc3779d387d79dcf458fdc36536d857426f03a53204694f8fbb0d8a6b90600090a250565b6000806000606084860312156200020f57600080fd5b83516200021c816200024d565b60208501519093506200022f816200024d565b604085015190925062000242816200024d565b809150509250925092565b6001600160a01b03811681146200026357600080fd5b50565b60805160601c61122a6200028b6000396000818160d00152610a5f015261122a6000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c8063715018a611610081578063bb7d4e2d1161005b578063bb7d4e2d14610198578063e30c3978146101ab578063f2fde38b146101bc57600080fd5b8063715018a61461015e5780638da5cb5b14610166578063b7f892d11461017757600080fd5b806344004cc1116100b257806344004cc11461011e578063454a8140146101415780634e71e0c81461015457600080fd5b806321df0da7146100ce5780632d680cfa1461010d575b600080fd5b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b03166100f0565b61013161012c366004610fb9565b6101cf565b6040519015158152602001610104565b6100f061014f366004610dbf565b6103a3565b61015c61041f565b005b61015c6104ad565b6000546001600160a01b03166100f0565b61018a610185366004610e90565b610522565b604051908152602001610104565b61018a6101a6366004610ddc565b610551565b6001546001600160a01b03166100f0565b61015c6101ca366004610dbf565b610787565b6000336101e46000546001600160a01b031690565b6001600160a01b03161461023f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b6001600160a01b0383166102bb5760405162461bcd60e51b815260206004820152602b60248201527f5072697a654469737472696275746f722f726563697069656e742d6e6f742d7a60448201527f65726f2d616464726573730000000000000000000000000000000000000000006064820152608401610236565b6001600160a01b0384166103375760405162461bcd60e51b815260206004820152602760248201527f5072697a654469737472696275746f722f45524332302d6e6f742d7a65726f2d60448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610236565b61034b6001600160a01b03851684846108c3565b826001600160a01b0316846001600160a01b03167fbfed55bdcd242e3dd0f60ddd7d1e87c67f61c34cd9527b3e6455d841b10253628460405161039091815260200190565b60405180910390a35060015b9392505050565b6000336103b86000546001600160a01b031690565b6001600160a01b03161461040e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b61041782610948565b50805b919050565b6001546001600160a01b031633146104795760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610236565b60015461048e906001600160a01b03166109f5565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336104c06000546001600160a01b031690565b6001600160a01b0316146105165760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b61052060006109f5565b565b6001600160a01b038216600090815260036020908152604080832063ffffffff8516845290915281205461039c565b6002546040517faaca392e000000000000000000000000000000000000000000000000000000008152600091829182916001600160a01b03169063aaca392e906105a7908b908b908b908b908b90600401611031565b60006040518083038186803b1580156105bf57600080fd5b505afa1580156105d3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105fb9190810190610ec5565b50805190915060005b8181101561076f576000898983818110610620576106206111b0565b90506020020160208101906106359190610ffa565b9050600084838151811061064b5761064b6111b0565b6020908102919091018101516001600160a01b038e16600090815260038352604080822063ffffffff8716835290935291822054909250908183116106d25760405162461bcd60e51b815260206004820152601c60248201527f5072697a654469737472696275746f722f7a65726f2d7061796f7574000000006044820152606401610236565b506001600160a01b038d16600090815260036020908152604080832063ffffffff87168452909152902082905580820361070c8189611119565b97508363ffffffff168e6001600160a01b03167fda18d31fbb73ed04b84307ef1bc6602e02c855af9f65b53ed10ba43e8d35b7dd8360405161075091815260200190565b60405180910390a350505050808061076790611161565b915050610604565b5061077a8984610a52565b5090979650505050505050565b3361079a6000546001600160a01b031690565b6001600160a01b0316146107f05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b6001600160a01b03811661086c5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610236565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610943908490610a8a565b505050565b6001600160a01b03811661099e5760405162461bcd60e51b815260206004820152601e60248201527f5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f00006044820152606401610236565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517fff37eafdc3779d387d79dcf458fdc36536d857426f03a53204694f8fbb0d8a6b90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a866001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001683836108c3565b5050565b6000610adf826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b6f9092919063ffffffff16565b8051909150156109435780806020019051810190610afd9190610f97565b6109435760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610236565b6060610b7e8484600085610b86565b949350505050565b606082471015610bfe5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610236565b843b610c4c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610236565b600080866001600160a01b03168587604051610c689190611015565b60006040518083038185875af1925050503d8060008114610ca5576040519150601f19603f3d011682016040523d82523d6000602084013e610caa565b606091505b5091509150610cba828286610cc5565b979650505050505050565b60608315610cd457508161039c565b825115610ce45782518084602001fd5b8160405162461bcd60e51b815260040161023691906110b5565b60008083601f840112610d1057600080fd5b50813567ffffffffffffffff811115610d2857600080fd5b602083019150836020828501011115610d4057600080fd5b9250929050565b600082601f830112610d5857600080fd5b815167ffffffffffffffff811115610d7257610d726111c6565b610d856020601f19601f840116016110e8565b818152846020838601011115610d9a57600080fd5b610b7e826020830160208701611131565b803563ffffffff8116811461041a57600080fd5b600060208284031215610dd157600080fd5b813561039c816111dc565b600080600080600060608688031215610df457600080fd5b8535610dff816111dc565b9450602086013567ffffffffffffffff80821115610e1c57600080fd5b818801915088601f830112610e3057600080fd5b813581811115610e3f57600080fd5b8960208260051b8501011115610e5457600080fd5b602083019650809550506040880135915080821115610e7257600080fd5b50610e7f88828901610cfe565b969995985093965092949392505050565b60008060408385031215610ea357600080fd5b8235610eae816111dc565b9150610ebc60208401610dab565b90509250929050565b60008060408385031215610ed857600080fd5b825167ffffffffffffffff80821115610ef057600080fd5b818501915085601f830112610f0457600080fd5b8151602082821115610f1857610f186111c6565b8160051b610f278282016110e8565b8381528281019086840183880185018c1015610f4257600080fd5b600097505b85881015610f65578051835260019790970196918401918401610f47565b509289015192975091945050505080821115610f8057600080fd5b50610f8d85828601610d47565b9150509250929050565b600060208284031215610fa957600080fd5b8151801515811461039c57600080fd5b600080600060608486031215610fce57600080fd5b8335610fd9816111dc565b92506020840135610fe9816111dc565b929592945050506040919091013590565b60006020828403121561100c57600080fd5b61039c82610dab565b60008251611027818460208701611131565b9190910192915050565b6001600160a01b038616815260606020808301829052908201859052600090869060808401835b888110156110815763ffffffff61106e85610dab565b1682529282019290820190600101611058565b5084810360408601528581528587838301376000818701830152601f909501601f1916909401909301979650505050505050565b60208152600082518060208401526110d4816040850160208701611131565b601f01601f19169190910160400192915050565b604051601f8201601f1916810167ffffffffffffffff81118282101715611111576111116111c6565b604052919050565b6000821982111561112c5761112c61119a565b500190565b60005b8381101561114c578181015183820152602001611134565b8381111561115b576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156111935761119361119a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146111f157600080fd5b5056fea264697066735822122054ea875b814e9a1a718e97bbbccdee17d6a66812561dbabd59e8ad1e5321bb0a64736f6c63430008060033",
              "opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x14B5 CODESIZE SUB DUP1 PUSH3 0x14B5 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1F9 JUMP JUMPDEST DUP3 PUSH3 0x40 DUP2 PUSH3 0x107 JUMP JUMPDEST POP PUSH3 0x4C DUP2 PUSH3 0x157 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0xB8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F746F6B656E2D6E6F742D7A65726F2D PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x61646472657373 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP4 SWAP1 SHL AND PUSH1 0x80 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xA07C91C183E42229E705A9795A1C06D76528B673788B849597364528C96EEFB7 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP PUSH3 0x266 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0x1AF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F63616C632D6E6F742D7A65726F0000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0xAF JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xFF37EAFDC3779D387D79DCF458FDC36536D857426F03A53204694F8FBB0D8A6B SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x20F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH3 0x21C DUP2 PUSH3 0x24D JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH3 0x22F DUP2 PUSH3 0x24D JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x242 DUP2 PUSH3 0x24D JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x263 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH2 0x122A PUSH3 0x28B PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH1 0xD0 ADD MSTORE PUSH2 0xA5F ADD MSTORE PUSH2 0x122A 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 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xBB7D4E2D GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xBB7D4E2D EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1AB JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x166 JUMPI DUP1 PUSH4 0xB7F892D1 EQ PUSH2 0x177 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x44004CC1 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x44004CC1 EQ PUSH2 0x11E JUMPI DUP1 PUSH4 0x454A8140 EQ PUSH2 0x141 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x154 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x2D680CFA EQ PUSH2 0x10D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF0 JUMP JUMPDEST PUSH2 0x131 PUSH2 0x12C CALLDATASIZE PUSH1 0x4 PUSH2 0xFB9 JUMP JUMPDEST PUSH2 0x1CF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0xF0 PUSH2 0x14F CALLDATASIZE PUSH1 0x4 PUSH2 0xDBF JUMP JUMPDEST PUSH2 0x3A3 JUMP JUMPDEST PUSH2 0x15C PUSH2 0x41F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x15C PUSH2 0x4AD JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF0 JUMP JUMPDEST PUSH2 0x18A PUSH2 0x185 CALLDATASIZE PUSH1 0x4 PUSH2 0xE90 JUMP JUMPDEST PUSH2 0x522 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x18A PUSH2 0x1A6 CALLDATASIZE PUSH1 0x4 PUSH2 0xDDC JUMP JUMPDEST PUSH2 0x551 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF0 JUMP JUMPDEST PUSH2 0x15C PUSH2 0x1CA CALLDATASIZE PUSH1 0x4 PUSH2 0xDBF JUMP JUMPDEST PUSH2 0x787 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x1E4 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x23F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2BB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F726563697069656E742D6E6F742D7A PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x65726F2D61646472657373000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x337 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F45524332302D6E6F742D7A65726F2D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6164647265737300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH2 0x34B PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 DUP5 PUSH2 0x8C3 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xBFED55BDCD242E3DD0F60DDD7D1E87C67F61C34CD9527B3E6455D841B1025362 DUP5 PUSH1 0x40 MLOAD PUSH2 0x390 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x3B8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x40E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH2 0x417 DUP3 PUSH2 0x948 JUMP JUMPDEST POP DUP1 JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x479 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x48E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9F5 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x4C0 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x516 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH2 0x520 PUSH1 0x0 PUSH2 0x9F5 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH4 0xFFFFFFFF DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x39C JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD PUSH32 0xAACA392E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xAACA392E SWAP1 PUSH2 0x5A7 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x1031 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5BF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5D3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x5FB SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0xEC5 JUMP JUMPDEST POP DUP1 MLOAD SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x76F JUMPI PUSH1 0x0 DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x620 JUMPI PUSH2 0x620 PUSH2 0x11B0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x635 SWAP2 SWAP1 PUSH2 0xFFA JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x64B JUMPI PUSH2 0x64B PUSH2 0x11B0 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 PUSH4 0xFFFFFFFF DUP8 AND DUP4 MSTORE SWAP1 SWAP4 MSTORE SWAP2 DUP3 KECCAK256 SLOAD SWAP1 SWAP3 POP SWAP1 DUP2 DUP4 GT PUSH2 0x6D2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F7A65726F2D7061796F757400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH4 0xFFFFFFFF DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP3 SWAP1 SSTORE DUP1 DUP3 SUB PUSH2 0x70C DUP2 DUP10 PUSH2 0x1119 JUMP JUMPDEST SWAP8 POP DUP4 PUSH4 0xFFFFFFFF AND DUP15 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDA18D31FBB73ED04B84307EF1BC6602E02C855AF9F65B53ED10BA43E8D35B7DD DUP4 PUSH1 0x40 MLOAD PUSH2 0x750 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP DUP1 DUP1 PUSH2 0x767 SWAP1 PUSH2 0x1161 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x604 JUMP JUMPDEST POP PUSH2 0x77A DUP10 DUP5 PUSH2 0xA52 JUMP JUMPDEST POP SWAP1 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH2 0x79A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x86C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE PUSH2 0x943 SWAP1 DUP5 SWAP1 PUSH2 0xA8A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x99E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F63616C632D6E6F742D7A65726F0000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xFF37EAFDC3779D387D79DCF458FDC36536D857426F03A53204694F8FBB0D8A6B SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0xA86 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP4 DUP4 PUSH2 0x8C3 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xADF DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB6F SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x943 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0xAFD SWAP2 SWAP1 PUSH2 0xF97 JUMP JUMPDEST PUSH2 0x943 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x60 PUSH2 0xB7E DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0xB86 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0xBFE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0xC4C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0xC68 SWAP2 SWAP1 PUSH2 0x1015 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xCA5 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xCAA JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0xCBA DUP3 DUP3 DUP7 PUSH2 0xCC5 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0xCD4 JUMPI POP DUP2 PUSH2 0x39C JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0xCE4 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0xD10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD28 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xD40 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xD58 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD72 JUMPI PUSH2 0xD72 PUSH2 0x11C6 JUMP JUMPDEST PUSH2 0xD85 PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP5 ADD AND ADD PUSH2 0x10E8 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 PUSH1 0x20 DUP4 DUP7 ADD ADD GT ISZERO PUSH2 0xD9A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB7E DUP3 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1131 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x41A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDD1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x39C DUP2 PUSH2 0x11DC JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xDF4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0xDFF DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xE1C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xE30 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xE3F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xE54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP7 POP DUP1 SWAP6 POP POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0xE72 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE7F DUP9 DUP3 DUP10 ADD PUSH2 0xCFE JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEA3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0xEAE DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP2 POP PUSH2 0xEBC PUSH1 0x20 DUP5 ADD PUSH2 0xDAB JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xED8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xEF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xF04 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x20 DUP3 DUP3 GT ISZERO PUSH2 0xF18 JUMPI PUSH2 0xF18 PUSH2 0x11C6 JUMP JUMPDEST DUP2 PUSH1 0x5 SHL PUSH2 0xF27 DUP3 DUP3 ADD PUSH2 0x10E8 JUMP JUMPDEST DUP4 DUP2 MSTORE DUP3 DUP2 ADD SWAP1 DUP7 DUP5 ADD DUP4 DUP9 ADD DUP6 ADD DUP13 LT ISZERO PUSH2 0xF42 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP8 POP JUMPDEST DUP6 DUP9 LT ISZERO PUSH2 0xF65 JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP8 SWAP1 SWAP8 ADD SWAP7 SWAP2 DUP5 ADD SWAP2 DUP5 ADD PUSH2 0xF47 JUMP JUMPDEST POP SWAP3 DUP10 ADD MLOAD SWAP3 SWAP8 POP SWAP2 SWAP5 POP POP POP POP DUP1 DUP3 GT ISZERO PUSH2 0xF80 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xF8D DUP6 DUP3 DUP7 ADD PUSH2 0xD47 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFA9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x39C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xFCE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0xFD9 DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0xFE9 DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x100C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x39C DUP3 PUSH2 0xDAB JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1027 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x1131 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP1 DUP3 ADD DUP6 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP7 SWAP1 PUSH1 0x80 DUP5 ADD DUP4 JUMPDEST DUP9 DUP2 LT ISZERO PUSH2 0x1081 JUMPI PUSH4 0xFFFFFFFF PUSH2 0x106E DUP6 PUSH2 0xDAB JUMP JUMPDEST AND DUP3 MSTORE SWAP3 DUP3 ADD SWAP3 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1058 JUMP JUMPDEST POP DUP5 DUP2 SUB PUSH1 0x40 DUP7 ADD MSTORE DUP6 DUP2 MSTORE DUP6 DUP8 DUP4 DUP4 ADD CALLDATACOPY PUSH1 0x0 DUP2 DUP8 ADD DUP4 ADD MSTORE PUSH1 0x1F SWAP1 SWAP6 ADD PUSH1 0x1F NOT AND SWAP1 SWAP5 ADD SWAP1 SWAP4 ADD SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x10D4 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1131 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1111 JUMPI PUSH2 0x1111 PUSH2 0x11C6 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x112C JUMPI PUSH2 0x112C PUSH2 0x119A JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x114C JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1134 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x115B JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1193 JUMPI PUSH2 0x1193 PUSH2 0x119A JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x11F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SLOAD 0xEA DUP8 JUMPDEST DUP2 0x4E SWAP11 BYTE PUSH18 0x8E97BBBCCDEE17D6A66812561DBABD59E8AD 0x1E MSTORE8 0x21 0xBB EXP PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1034:4740:34:-:0;;;1736:320;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1850:6;1648:24:22;1850:6:34;1648:9:22;:24::i;:::-;-1:-1:-1;1868:35:34::1;1887:15:::0;1868:18:::1;:35::i;:::-;-1:-1:-1::0;;;;;1921:29:34;::::1;1913:81;;;::::0;-1:-1:-1;;;1913:81:34;;1138:2:84;1913:81:34::1;::::0;::::1;1120:21:84::0;1177:2;1157:18;;;1150:30;1216:34;1196:18;;;1189:62;-1:-1:-1;;;1267:18:84;;;1260:37;1314:19;;1913:81:34::1;;;;;;;;;-1:-1:-1::0;;;;;;2004:14:34::1;::::0;;;;::::1;::::0;2033:16:::1;::::0;-1:-1:-1;;;;;2004:14:34;::::1;::::0;2033:16:::1;::::0;;;::::1;1736:320:::0;;;1034:4740;;3470:174:22;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;;;;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;5246:256:34:-;-1:-1:-1;;;;;5333:37:34;;5325:80;;;;-1:-1:-1;;;5325:80:34;;779:2:84;5325:80:34;;;761:21:84;818:2;798:18;;;791:30;857:32;837:18;;;830:60;907:18;;5325:80:34;751:180:84;5325:80:34;5415:14;:31;;-1:-1:-1;;;;;;5415:31:34;-1:-1:-1;;;;;5415:31:34;;;;;;;;5462:33;;;;-1:-1:-1;;5462:33:34;5246:256;:::o;14:558:84:-;141:6;149;157;210:2;198:9;189:7;185:23;181:32;178:2;;;226:1;223;216:12;178:2;258:9;252:16;277:31;302:5;277:31;:::i;:::-;377:2;362:18;;356:25;327:5;;-1:-1:-1;390:33:84;356:25;390:33;:::i;:::-;494:2;479:18;;473:25;442:7;;-1:-1:-1;507:33:84;473:25;507:33;:::i;:::-;559:7;549:17;;;168:404;;;;;:::o;1344:131::-;-1:-1:-1;;;;;1419:31:84;;1409:42;;1399:2;;1465:1;1462;1455:12;1399:2;1389:86;:::o;:::-;1034:4740:34;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_awardPayout_9485": {
                  "entryPoint": 2642,
                  "id": 9485,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_callOptionalReturn_1116": {
                  "entryPoint": 2698,
                  "id": 1116,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_getDrawPayoutBalanceOf_9422": {
                  "entryPoint": null,
                  "id": 9422,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_setDrawCalculator_9469": {
                  "entryPoint": 2376,
                  "id": 9469,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setDrawPayoutBalanceOf_9440": {
                  "entryPoint": null,
                  "id": 9440,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 2549,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_4038": {
                  "entryPoint": 1055,
                  "id": 4038,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@claim_9292": {
                  "entryPoint": 1361,
                  "id": 9292,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@functionCallWithValue_2255": {
                  "entryPoint": 2950,
                  "id": 2255,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_2185": {
                  "entryPoint": 2927,
                  "id": 2185,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getDrawCalculator_9358": {
                  "entryPoint": null,
                  "id": 9358,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDrawPayoutBalanceOf_9375": {
                  "entryPoint": 1314,
                  "id": 9375,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getToken_9386": {
                  "entryPoint": null,
                  "id": 9386,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_2114": {
                  "entryPoint": null,
                  "id": 2114,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@owner_3970": {
                  "entryPoint": null,
                  "id": 3970,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3979": {
                  "entryPoint": null,
                  "id": 3979,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3993": {
                  "entryPoint": 1197,
                  "id": 3993,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeTransfer_924": {
                  "entryPoint": 2243,
                  "id": 924,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setDrawCalculator_9406": {
                  "entryPoint": 931,
                  "id": 9406,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@transferOwnership_4020": {
                  "entryPoint": 1927,
                  "id": 4020,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_2390": {
                  "entryPoint": 3269,
                  "id": 2390,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@withdrawERC20_9347": {
                  "entryPoint": 463,
                  "id": 9347,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_bytes_calldata": {
                  "entryPoint": 3326,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_bytes_fromMemory": {
                  "entryPoint": 3399,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 3519,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr": {
                  "entryPoint": 3548,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_addresst_uint32": {
                  "entryPoint": 3728,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr_fromMemory": {
                  "entryPoint": 3781,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 3991,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_IDrawCalculator_$11391": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_IERC20_$663t_addresst_uint256": {
                  "entryPoint": 4025,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_uint32": {
                  "entryPoint": 4090,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint32": {
                  "entryPoint": 3499,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 4117,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_array$_t_uint32_$dyn_calldata_ptr_t_bytes_calldata_ptr__to_t_address_t_array$_t_uint32_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed": {
                  "entryPoint": 4145,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawCalculator_$11391__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IERC20_$663__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 4277,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2c805cde282169c73a3ef40c45bfc372741317bb5df0479880c6224616953113__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_5e9c21b3ab066ee6718747f9a9d142fb59b132e00e6d2d77cd842d397552abe3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c3c1c5a9485c31eb22e3896f76db76d5b6b9e87350b8d12dde12857181904473__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "allocate_memory": {
                  "entryPoint": 4328,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 4377,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 4401,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "increment_t_uint256": {
                  "entryPoint": 4449,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 4506,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 4528,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 4550,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 4572,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:13803:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "86:275:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "135:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "144:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "147:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "137:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "137:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "137:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "114:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "122:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "110:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "110:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "106:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "106:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "99:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "99:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "96:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "160:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "183:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "170:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "170:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "160:6:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "233:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "242:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "245:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "235:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "235:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "235:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "205:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "213:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "202:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "202:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "199:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "258:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "274:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "282:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "270:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "270:17:84"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "258:8:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "339:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "348:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "351:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "341:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "341:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "341:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "310:6:84"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "318:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "306:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "306:19:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "327:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:30:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "334:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "299:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "299:39:84"
                              },
                              "nodeType": "YulIf",
                              "src": "296:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_bytes_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "49:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "57:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "65:8:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "75:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:347:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "429:492:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "478:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "487:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "490:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "480:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "480:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "480:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "457:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "465:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "453:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "453:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "472:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "449:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "449:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "442:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "442:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "439:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "503:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "519:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "513:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "513:13:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "507:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "565:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "567:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "567:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "567:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "541:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "545:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "538:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "538:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "535:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "596:129:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "639:2:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "643:4:84",
                                                "type": "",
                                                "value": "0x1f"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "635:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "635:13:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "650:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "631:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "631:86:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "719:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "627:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "627:97:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "611:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "611:114:84"
                              },
                              "variables": [
                                {
                                  "name": "array_1",
                                  "nodeType": "YulTypedName",
                                  "src": "600:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "array_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "741:7:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "750:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "734:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "734:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "734:19:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "801:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "810:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "813:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "803:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "803:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "803:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "776:6:84"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "784:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "772:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "772:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "789:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "768:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "768:26:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "796:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "765:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "765:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "762:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "852:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "860:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "848:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "848:17:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "array_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "871:7:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "880:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "867:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "867:18:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "887:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "826:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "826:64:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "826:64:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "899:16:84",
                              "value": {
                                "name": "array_1",
                                "nodeType": "YulIdentifier",
                                "src": "908:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "899:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_bytes_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "403:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "411:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "419:5:84",
                            "type": ""
                          }
                        ],
                        "src": "366:555:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "974:115:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "984:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1006:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "993:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "993:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "984:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1067:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1076:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1079:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1069:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1069:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1069:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1035:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1046:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1053:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1042:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1042:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1032:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1032:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1025:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1025:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1022:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "953:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "964:5:84",
                            "type": ""
                          }
                        ],
                        "src": "926:163:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1164:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1210:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1219:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1222:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1212:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1212:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1212:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1185:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1194:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1181:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1181:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1206:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1177:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1177:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1174:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1235:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1261:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1248:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1248:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1239:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1305:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1280:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1280:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1280:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1320:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1330:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1320:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1130:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1141:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1153:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1094:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1503:879:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1549:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1558:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1561:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1551:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1551:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1551:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1524:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1533:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1520:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1520:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1545:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1516:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1516:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1513:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1574:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1600:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1587:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1587:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1578:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1644:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1619:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1619:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1619:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1659:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1669:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1659:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1683:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1714:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1725:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1710:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1710:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1697:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1697:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1687:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1738:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1748:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1742:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1793:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1802:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1805:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1795:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1795:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1795:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1781:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1789:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1778:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1778:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1775:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1818:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1832:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1843:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1828:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1828:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1822:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1898:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1907:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1910:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1900:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1900:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1900:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1877:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1881:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1873:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1873:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1888:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1869:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1869:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1862:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1862:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1859:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1923:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1950:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1937:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1937:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1927:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1980:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1989:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1992:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1982:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1982:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1982:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1968:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1976:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1965:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1965:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1962:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2054:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2063:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2066:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2056:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2056:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2056:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2019:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2027:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "2030:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "2023:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2023:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2015:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2015:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2040:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2011:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2011:32:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2045:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2008:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2008:45:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2005:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2079:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2093:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2097:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2089:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2089:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2079:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2109:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "2119:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2109:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2134:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2167:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2178:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2163:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2163:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2150:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2150:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2138:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2211:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2220:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2223:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2213:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2213:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2213:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2197:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2207:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2194:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2194:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2191:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2236:86:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2292:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2303:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2288:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2288:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2314:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_bytes_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2262:25:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2262:60:84"
                              },
                              "variables": [
                                {
                                  "name": "value3_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2240:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value4_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2250:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2331:18:84",
                              "value": {
                                "name": "value3_1",
                                "nodeType": "YulIdentifier",
                                "src": "2341:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2331:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2358:18:84",
                              "value": {
                                "name": "value4_1",
                                "nodeType": "YulIdentifier",
                                "src": "2368:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2358:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1437:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1448:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1460:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1468:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1476:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1484:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1492:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1346:1036:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2473:233:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2519:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2528:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2531:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2521:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2521:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2521:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2494:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2503:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2490:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2490:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2515:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2486:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2486:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2483:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2544:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2570:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2557:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2557:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2548:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2614:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2589:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2589:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2589:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2629:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2639:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2629:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2653:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2685:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2696:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2681:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2681:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2663:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2663:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2653:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2431:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2442:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2454:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2462:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2387:319:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2843:1019:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2889:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2898:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2901:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2891:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2891:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2891:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2864:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2873:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2860:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2860:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2885:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2856:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2856:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2853:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2914:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2934:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2928:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2928:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2918:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2953:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2963:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2957:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3008:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3017:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3020:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3010:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3010:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3010:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2996:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3004:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2993:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2993:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2990:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3033:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3047:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3058:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3043:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3043:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3037:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3113:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3122:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3125:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3115:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3115:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3115:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3092:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3096:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3088:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3088:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3103:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3084:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3084:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3077:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3077:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3074:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3138:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3154:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3148:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3148:9:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "3142:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3166:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3176:4:84",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "3170:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3203:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "3205:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3205:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3205:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3195:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3199:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3192:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3192:10:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3189:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3234:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3248:1:84",
                                    "type": "",
                                    "value": "5"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3251:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shl",
                                  "nodeType": "YulIdentifier",
                                  "src": "3244:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3244:10:84"
                              },
                              "variables": [
                                {
                                  "name": "_5",
                                  "nodeType": "YulTypedName",
                                  "src": "3238:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3263:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulIdentifier",
                                        "src": "3294:2:84"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3298:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3290:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3290:11:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3274:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3274:28:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "3267:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3311:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "3324:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3315:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3343:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3348:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3336:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3336:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3336:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3360:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3371:3:84"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3376:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3367:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3367:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "3360:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3388:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3403:2:84"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3407:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3399:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3399:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "3392:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3456:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3465:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3468:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3458:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3458:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3458:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3433:2:84"
                                          },
                                          {
                                            "name": "_5",
                                            "nodeType": "YulIdentifier",
                                            "src": "3437:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3429:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3429:11:84"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3442:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3425:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3425:20:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3447:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3422:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3422:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3419:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3481:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3490:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3485:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3545:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "3566:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "3577:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3571:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3571:10:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3559:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3559:23:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3559:23:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3595:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "3606:3:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "3611:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3602:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3602:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "3595:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3627:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "3638:3:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "3643:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3634:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3634:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "3627:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3511:1:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3514:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3508:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3508:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3518:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3520:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3529:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3532:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3525:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3525:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3520:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3504:3:84",
                                "statements": []
                              },
                              "src": "3500:156:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3665:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "3675:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3665:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3689:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3715:9:84"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3726:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3711:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3711:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3705:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3705:25:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3693:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3759:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3768:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3771:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3761:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3761:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3761:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3745:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3755:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3742:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3742:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3739:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3784:72:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3826:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3837:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3822:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3822:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3848:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_bytes_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3794:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3794:62:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3784:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2801:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2812:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2824:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2832:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2711:1151:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3945:199:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3991:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4000:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4003:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3993:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3993:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3993:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3966:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3975:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3962:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3962:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3987:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3958:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3958:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3955:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4016:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4035:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4029:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4029:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4020:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4098:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4107:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4110:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4100:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4100:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4100:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4067:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4088:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "4081:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4081:13:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "4074:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4074:21:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "4064:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4064:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4057:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4057:40:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4054:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4123:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4133:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4123:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3911:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3922:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3934:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3867:277:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4244:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4290:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4299:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4302:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4292:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4292:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4292:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4265:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4274:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4261:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4261:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4286:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4257:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4257:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4254:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4315:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4341:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4328:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4328:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4319:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4385:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4360:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4360:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4360:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4400:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4410:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4400:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IDrawCalculator_$11391",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4210:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4221:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4233:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4149:272:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4544:352:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4590:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4599:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4602:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4592:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4592:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4592:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4565:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4574:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4561:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4561:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4586:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4557:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4557:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4554:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4615:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4641:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4628:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4628:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4619:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4685:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4660:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4660:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4660:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4700:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4710:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4700:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4724:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4756:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4767:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4752:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4752:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4739:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4739:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4728:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4805:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4780:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4780:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4780:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4822:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "4832:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4822:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4848:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4875:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4886:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4871:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4871:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4858:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4858:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "4848:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IERC20_$663t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4494:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4505:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4517:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4525:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "4533:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4426:470:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4970:115:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5016:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5025:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5028:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5018:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5018:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5018:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4991:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5000:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4987:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4987:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5012:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4983:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4983:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4980:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5041:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5069:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5051:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5051:28:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5041:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4936:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4947:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4959:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4901:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5227:137:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5237:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5257:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5251:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5251:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "5241:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5299:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5307:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5295:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5295:17:84"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5314:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5319:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5273:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5273:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5273:53:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5335:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5346:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5351:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5342:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5342:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "5335:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "5203:3:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5208:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "5219:3:84",
                            "type": ""
                          }
                        ],
                        "src": "5090:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5470:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5480:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5492:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5503:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5488:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5488:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5480:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5522:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5537:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5545:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5533:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5533:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5515:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5515:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5515:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5439:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5450:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5461:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5369:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5843:842:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5853:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5871:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5882:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5867:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5867:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5857:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5901:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5916:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5924:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5912:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5912:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5894:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5894:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5894:74:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5977:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5987:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5981:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6009:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6020:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6005:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6005:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6025:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5998:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5998:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5998:30:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6037:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "6048:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "6041:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6070:6:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6078:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6063:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6063:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6063:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6094:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6105:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6116:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6101:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6101:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "6094:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6129:20:84",
                              "value": {
                                "name": "value1",
                                "nodeType": "YulIdentifier",
                                "src": "6143:6:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "6133:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6158:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6167:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "6162:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6226:149:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "6247:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "6274:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "abi_decode_uint32",
                                                "nodeType": "YulIdentifier",
                                                "src": "6256:17:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "6256:25:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "6283:10:84",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "6252:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6252:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6240:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6240:55:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6240:55:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6308:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "6319:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6324:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6315:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6315:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6308:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6340:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "6354:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6362:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6350:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6350:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "6340:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "6188:1:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6191:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6185:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6185:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "6199:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6201:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "6210:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6213:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6206:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6206:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "6201:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "6181:3:84",
                                "statements": []
                              },
                              "src": "6177:198:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6395:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6406:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6391:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6391:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6415:3:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6420:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6411:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6411:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6384:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6384:47:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6384:47:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "6447:3:84"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "6452:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6440:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6440:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6440:19:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6485:3:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6490:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6481:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6481:12:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "6495:6:84"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "6503:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldatacopy",
                                  "nodeType": "YulIdentifier",
                                  "src": "6468:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6468:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6468:42:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "pos",
                                            "nodeType": "YulIdentifier",
                                            "src": "6534:3:84"
                                          },
                                          {
                                            "name": "value4",
                                            "nodeType": "YulIdentifier",
                                            "src": "6539:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "6530:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "6530:16:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6548:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6526:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6526:25:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6553:1:84",
                                    "type": "",
                                    "value": "0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6519:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6519:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6519:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6564:115:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6580:3:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value4",
                                                "nodeType": "YulIdentifier",
                                                "src": "6593:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6601:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "6589:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6589:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "6606:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "6585:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "6585:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6576:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6576:98:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6676:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6572:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6572:107:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6564:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_array$_t_uint32_$dyn_calldata_ptr_t_bytes_calldata_ptr__to_t_address_t_array$_t_uint32_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5780:9:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "5791:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "5799:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5807:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5815:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5823:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5834:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5600:1085:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6819:168:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6829:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6841:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6852:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6837:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6837:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6829:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6871:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6886:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6894:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6882:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6882:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6864:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6864:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6864:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6958:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6969:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6954:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6954:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6974:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6947:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6947:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6947:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6780:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6791:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6799:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6810:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6690:297:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7087:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7097:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7109:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7120:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7105:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7105:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7097:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7139:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "7164:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "7157:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7157:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "7150:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7150:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7132:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7132:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7132:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7056:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7067:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7078:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6992:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7310:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7320:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7332:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7343:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7328:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7328:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7320:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7362:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7377:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7385:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7373:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7373:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7355:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7355:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7355:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawCalculator_$11391__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7279:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7290:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7301:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7184:251:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7555:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7565:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7577:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7588:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7573:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7573:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7565:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7607:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7622:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7630:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7618:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7618:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7600:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7600:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7600:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IERC20_$663__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7524:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7535:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7546:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7440:240:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7806:321:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7823:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7834:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7816:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7816:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7816:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7846:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7866:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7860:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7860:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "7850:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7893:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7904:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7889:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7889:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7909:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7882:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7882:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7882:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7951:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7959:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7947:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7947:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7968:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7979:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7964:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7964:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7984:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "7925:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7925:66:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7925:66:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8000:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8016:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "8035:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "8043:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "8031:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "8031:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "8048:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "8027:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8027:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8012:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8012:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8118:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8008:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8008:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8000:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7775:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7786:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7797:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7685:442:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8306:178:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8323:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8334:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8316:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8316:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8316:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8357:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8368:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8353:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8353:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8373:2:84",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8346:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8346:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8346:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8396:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8407:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8392:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8392:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f7a65726f2d7061796f7574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8412:30:84",
                                    "type": "",
                                    "value": "PrizeDistributor/zero-payout"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8385:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8385:58:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8385:58:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8452:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8464:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8475:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8460:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8460:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8452:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2c805cde282169c73a3ef40c45bfc372741317bb5df0479880c6224616953113__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8283:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8297:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8132:352:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8663:180:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8680:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8691:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8673:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8673:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8673:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8714:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8725:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8710:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8710:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8730:2:84",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8703:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8703:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8703:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8753:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8764:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8749:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8749:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8769:32:84",
                                    "type": "",
                                    "value": "PrizeDistributor/calc-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8742:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8742:60:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8742:60:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8811:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8823:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8834:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8819:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8819:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8811:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8640:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8654:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8489:354:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9022:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9039:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9050:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9032:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9032:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9032:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9073:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9084:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9069:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9069:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9089:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9062:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9062:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9062:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9112:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9123:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9108:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9108:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9128:34:84",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9101:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9101:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9101:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9183:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9194:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9179:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9179:18:84"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9199:8:84",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9172:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9172:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9172:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9217:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9229:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9240:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9225:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9225:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9217:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8999:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9013:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8848:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9429:229:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9446:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9457:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9439:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9439:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9439:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9480:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9491:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9476:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9476:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9496:2:84",
                                    "type": "",
                                    "value": "39"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9469:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9469:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9469:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9519:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9530:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9515:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9515:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f45524332302d6e6f742d7a65726f2d",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9535:34:84",
                                    "type": "",
                                    "value": "PrizeDistributor/ERC20-not-zero-"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9508:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9508:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9508:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9590:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9601:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9586:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9586:18:84"
                                  },
                                  {
                                    "hexValue": "61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9606:9:84",
                                    "type": "",
                                    "value": "address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9579:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9579:37:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9579:37:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9625:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9637:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9648:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9633:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9633:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9625:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_5e9c21b3ab066ee6718747f9a9d142fb59b132e00e6d2d77cd842d397552abe3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9406:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9420:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9255:403:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9837:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9854:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9865:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9847:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9847:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9847:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9888:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9899:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9884:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9884:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9904:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9877:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9877:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9877:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9927:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9938:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9923:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9923:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9943:26:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9916:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9916:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9916:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9979:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9991:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10002:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9987:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9987:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9979:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9814:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9828:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9663:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10190:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10207:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10218:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10200:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10200:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10200:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10241:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10252:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10237:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10237:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10257:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10230:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10230:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10230:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10280:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10291:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10276:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10276:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10296:33:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10269:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10269:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10269:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10339:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10351:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10362:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10347:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10347:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10339:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10167:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10181:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10016:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10550:233:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10567:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10578:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10560:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10560:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10560:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10601:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10612:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10597:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10597:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10617:2:84",
                                    "type": "",
                                    "value": "43"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10590:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10590:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10590:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10640:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10651:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10636:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10636:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f726563697069656e742d6e6f742d7a",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10656:34:84",
                                    "type": "",
                                    "value": "PrizeDistributor/recipient-not-z"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10629:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10629:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10629:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10711:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10722:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10707:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10707:18:84"
                                  },
                                  {
                                    "hexValue": "65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10727:13:84",
                                    "type": "",
                                    "value": "ero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10700:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10700:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10700:41:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10750:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10762:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10773:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10758:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10758:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10750:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c3c1c5a9485c31eb22e3896f76db76d5b6b9e87350b8d12dde12857181904473__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10527:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10541:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10376:407:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10962:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10979:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10990:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10972:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10972:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10972:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11013:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11024:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11009:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11009:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11029:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11002:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11002:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11002:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11052:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11063:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11048:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11048:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11068:31:84",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11041:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11041:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11041:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11109:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11121:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11132:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11117:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11117:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11109:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10939:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10953:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10788:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11320:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11337:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11348:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11330:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11330:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11330:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11371:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11382:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11367:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11367:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11387:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11360:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11360:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11360:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11410:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11421:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11406:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11406:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11426:34:84",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11399:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11399:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11399:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11481:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11492:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11477:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11477:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11497:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11470:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11470:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11470:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11514:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11526:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11537:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11522:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11522:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11514:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11297:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11311:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11146:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11726:232:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11743:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11754:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11736:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11736:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11736:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11777:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11788:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11773:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11773:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11793:2:84",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11766:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11766:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11766:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11816:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11827:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11812:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11812:18:84"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11832:34:84",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11805:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11805:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11805:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11887:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11898:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11883:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11883:18:84"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11903:12:84",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11876:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11876:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11876:40:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11925:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11937:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11948:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11933:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11933:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11925:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11703:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11717:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11552:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12064:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12074:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12086:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12097:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12082:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12082:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12074:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12116:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12127:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12109:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12109:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12109:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12033:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12044:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12055:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11963:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12190:289:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12200:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12216:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "12210:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12210:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "12200:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12228:117:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "12250:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "12266:4:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "12272:2:84",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "12262:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "12262:13:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12277:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12258:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12258:86:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12246:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12246:99:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "12232:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12420:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "12422:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12422:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12422:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "12363:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12375:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "12360:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12360:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "12399:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "12411:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "12396:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12396:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "12357:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12357:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12354:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12458:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "12462:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12451:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12451:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12451:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "12170:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "12179:6:84",
                            "type": ""
                          }
                        ],
                        "src": "12145:334:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12532:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12559:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12561:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12561:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12561:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12548:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "12555:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "12551:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12551:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12545:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12545:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12542:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12590:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12601:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12604:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12597:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12597:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "12590:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12515:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12518:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12524:3:84",
                            "type": ""
                          }
                        ],
                        "src": "12484:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12670:205:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12680:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12689:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "12684:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12749:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "12774:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "12779:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "12770:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12770:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "12793:3:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "12798:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "12789:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "12789:11:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "12783:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12783:18:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12763:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12763:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12763:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "12710:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "12713:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12707:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12707:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "12721:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12723:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "12732:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12735:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12728:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12728:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "12723:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "12703:3:84",
                                "statements": []
                              },
                              "src": "12699:113:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12838:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "12851:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "12856:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "12847:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12847:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12865:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12840:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12840:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12840:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "12827:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "12830:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12824:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12824:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12821:2:84"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "12648:3:84",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "12653:3:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "12658:6:84",
                            "type": ""
                          }
                        ],
                        "src": "12617:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12927:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13018:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13020:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13020:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13020:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "12943:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12950:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "12940:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12940:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12937:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13049:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "13060:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13067:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13056:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13056:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "13049:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "12909:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "12919:3:84",
                            "type": ""
                          }
                        ],
                        "src": "12880:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13112:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13129:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13132:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13122:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13122:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13122:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13226:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13229:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13219:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13219:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13219:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13250:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13253:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13243:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13243:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13243:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "13080:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13301:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13318:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13321:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13311:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13311:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13311:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13415:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13418:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13408:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13408:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13408:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13439:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13442:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13432:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13432:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13432:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "13269:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13490:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13507:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13510:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13500:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13500:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13500:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13604:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13607:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13597:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13597:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13597:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13628:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13631:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13621:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13621:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13621:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "13458:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13692:109:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13779:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13788:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13791:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13781:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13781:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13781:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "13715:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "13726:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13733:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "13722:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13722:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "13712:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13712:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "13705:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13705:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13702:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "13681:5:84",
                            "type": ""
                          }
                        ],
                        "src": "13647:154:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_bytes_calldata(offset, end) -> arrayPos, length\n    {\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(add(offset, length), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_bytes_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        if gt(_1, 0xffffffffffffffff) { panic_error_0x41() }\n        let array_1 := allocate_memory(add(and(add(_1, 0x1f), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0), 0x20))\n        mstore(array_1, _1)\n        if gt(add(add(offset, _1), 0x20), end) { revert(0, 0) }\n        copy_memory_to_memory(add(offset, 0x20), add(array_1, 0x20), _1)\n        array := array_1\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value1 := add(_2, 32)\n        value2 := length\n        let offset_1 := calldataload(add(headStart, 64))\n        if gt(offset_1, _1) { revert(0, 0) }\n        let value3_1, value4_1 := abi_decode_bytes_calldata(add(headStart, offset_1), dataEnd)\n        value3 := value3_1\n        value4 := value4_1\n    }\n    function abi_decode_tuple_t_addresst_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := abi_decode_uint32(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let _4 := 0x20\n        if gt(_3, _1) { panic_error_0x41() }\n        let _5 := shl(5, _3)\n        let dst := allocate_memory(add(_5, _4))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _4)\n        let src := add(_2, _4)\n        if gt(add(add(_2, _5), _4), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _3) { i := add(i, 1) }\n        {\n            mstore(dst, mload(src))\n            dst := add(dst, _4)\n            src := add(src, _4)\n        }\n        value0 := dst_1\n        let offset_1 := mload(add(headStart, _4))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_bytes_fromMemory(add(headStart, offset_1), dataEnd)\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IDrawCalculator_$11391(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IERC20_$663t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_uint32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint32(headStart)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_array$_t_uint32_$dyn_calldata_ptr_t_bytes_calldata_ptr__to_t_address_t_array$_t_uint32_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        let tail_1 := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        let _1 := 32\n        mstore(add(headStart, _1), 96)\n        let pos := tail_1\n        mstore(tail_1, value2)\n        pos := add(headStart, 128)\n        let srcPtr := value1\n        let i := 0\n        for { } lt(i, value2) { i := add(i, 1) }\n        {\n            mstore(pos, and(abi_decode_uint32(srcPtr), 0xffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        mstore(add(headStart, 64), sub(pos, headStart))\n        mstore(pos, value4)\n        calldatacopy(add(pos, _1), value3, value4)\n        mstore(add(add(pos, value4), _1), 0)\n        tail := add(add(pos, and(add(value4, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), _1)\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IDrawCalculator_$11391__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IERC20_$663__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_2c805cde282169c73a3ef40c45bfc372741317bb5df0479880c6224616953113__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"PrizeDistributor/zero-payout\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"PrizeDistributor/calc-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Address: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r call\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_5e9c21b3ab066ee6718747f9a9d142fb59b132e00e6d2d77cd842d397552abe3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 39)\n        mstore(add(headStart, 64), \"PrizeDistributor/ERC20-not-zero-\")\n        mstore(add(headStart, 96), \"address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c3c1c5a9485c31eb22e3896f76db76d5b6b9e87350b8d12dde12857181904473__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 43)\n        mstore(add(headStart, 64), \"PrizeDistributor/recipient-not-z\")\n        mstore(add(headStart, 96), \"ero-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"Address: call to non-contract\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"SafeERC20: ERC20 operation did n\")\n        mstore(add(headStart, 96), \"ot succeed\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\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) { mstore(add(dst, length), 0) }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "9137": [
                  {
                    "length": 32,
                    "start": 208
                  },
                  {
                    "length": 32,
                    "start": 2655
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100c95760003560e01c8063715018a611610081578063bb7d4e2d1161005b578063bb7d4e2d14610198578063e30c3978146101ab578063f2fde38b146101bc57600080fd5b8063715018a61461015e5780638da5cb5b14610166578063b7f892d11461017757600080fd5b806344004cc1116100b257806344004cc11461011e578063454a8140146101415780634e71e0c81461015457600080fd5b806321df0da7146100ce5780632d680cfa1461010d575b600080fd5b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b03166100f0565b61013161012c366004610fb9565b6101cf565b6040519015158152602001610104565b6100f061014f366004610dbf565b6103a3565b61015c61041f565b005b61015c6104ad565b6000546001600160a01b03166100f0565b61018a610185366004610e90565b610522565b604051908152602001610104565b61018a6101a6366004610ddc565b610551565b6001546001600160a01b03166100f0565b61015c6101ca366004610dbf565b610787565b6000336101e46000546001600160a01b031690565b6001600160a01b03161461023f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b6001600160a01b0383166102bb5760405162461bcd60e51b815260206004820152602b60248201527f5072697a654469737472696275746f722f726563697069656e742d6e6f742d7a60448201527f65726f2d616464726573730000000000000000000000000000000000000000006064820152608401610236565b6001600160a01b0384166103375760405162461bcd60e51b815260206004820152602760248201527f5072697a654469737472696275746f722f45524332302d6e6f742d7a65726f2d60448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610236565b61034b6001600160a01b03851684846108c3565b826001600160a01b0316846001600160a01b03167fbfed55bdcd242e3dd0f60ddd7d1e87c67f61c34cd9527b3e6455d841b10253628460405161039091815260200190565b60405180910390a35060015b9392505050565b6000336103b86000546001600160a01b031690565b6001600160a01b03161461040e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b61041782610948565b50805b919050565b6001546001600160a01b031633146104795760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610236565b60015461048e906001600160a01b03166109f5565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336104c06000546001600160a01b031690565b6001600160a01b0316146105165760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b61052060006109f5565b565b6001600160a01b038216600090815260036020908152604080832063ffffffff8516845290915281205461039c565b6002546040517faaca392e000000000000000000000000000000000000000000000000000000008152600091829182916001600160a01b03169063aaca392e906105a7908b908b908b908b908b90600401611031565b60006040518083038186803b1580156105bf57600080fd5b505afa1580156105d3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105fb9190810190610ec5565b50805190915060005b8181101561076f576000898983818110610620576106206111b0565b90506020020160208101906106359190610ffa565b9050600084838151811061064b5761064b6111b0565b6020908102919091018101516001600160a01b038e16600090815260038352604080822063ffffffff8716835290935291822054909250908183116106d25760405162461bcd60e51b815260206004820152601c60248201527f5072697a654469737472696275746f722f7a65726f2d7061796f7574000000006044820152606401610236565b506001600160a01b038d16600090815260036020908152604080832063ffffffff87168452909152902082905580820361070c8189611119565b97508363ffffffff168e6001600160a01b03167fda18d31fbb73ed04b84307ef1bc6602e02c855af9f65b53ed10ba43e8d35b7dd8360405161075091815260200190565b60405180910390a350505050808061076790611161565b915050610604565b5061077a8984610a52565b5090979650505050505050565b3361079a6000546001600160a01b031690565b6001600160a01b0316146107f05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b6001600160a01b03811661086c5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610236565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610943908490610a8a565b505050565b6001600160a01b03811661099e5760405162461bcd60e51b815260206004820152601e60248201527f5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f00006044820152606401610236565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517fff37eafdc3779d387d79dcf458fdc36536d857426f03a53204694f8fbb0d8a6b90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a866001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001683836108c3565b5050565b6000610adf826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b6f9092919063ffffffff16565b8051909150156109435780806020019051810190610afd9190610f97565b6109435760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610236565b6060610b7e8484600085610b86565b949350505050565b606082471015610bfe5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610236565b843b610c4c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610236565b600080866001600160a01b03168587604051610c689190611015565b60006040518083038185875af1925050503d8060008114610ca5576040519150601f19603f3d011682016040523d82523d6000602084013e610caa565b606091505b5091509150610cba828286610cc5565b979650505050505050565b60608315610cd457508161039c565b825115610ce45782518084602001fd5b8160405162461bcd60e51b815260040161023691906110b5565b60008083601f840112610d1057600080fd5b50813567ffffffffffffffff811115610d2857600080fd5b602083019150836020828501011115610d4057600080fd5b9250929050565b600082601f830112610d5857600080fd5b815167ffffffffffffffff811115610d7257610d726111c6565b610d856020601f19601f840116016110e8565b818152846020838601011115610d9a57600080fd5b610b7e826020830160208701611131565b803563ffffffff8116811461041a57600080fd5b600060208284031215610dd157600080fd5b813561039c816111dc565b600080600080600060608688031215610df457600080fd5b8535610dff816111dc565b9450602086013567ffffffffffffffff80821115610e1c57600080fd5b818801915088601f830112610e3057600080fd5b813581811115610e3f57600080fd5b8960208260051b8501011115610e5457600080fd5b602083019650809550506040880135915080821115610e7257600080fd5b50610e7f88828901610cfe565b969995985093965092949392505050565b60008060408385031215610ea357600080fd5b8235610eae816111dc565b9150610ebc60208401610dab565b90509250929050565b60008060408385031215610ed857600080fd5b825167ffffffffffffffff80821115610ef057600080fd5b818501915085601f830112610f0457600080fd5b8151602082821115610f1857610f186111c6565b8160051b610f278282016110e8565b8381528281019086840183880185018c1015610f4257600080fd5b600097505b85881015610f65578051835260019790970196918401918401610f47565b509289015192975091945050505080821115610f8057600080fd5b50610f8d85828601610d47565b9150509250929050565b600060208284031215610fa957600080fd5b8151801515811461039c57600080fd5b600080600060608486031215610fce57600080fd5b8335610fd9816111dc565b92506020840135610fe9816111dc565b929592945050506040919091013590565b60006020828403121561100c57600080fd5b61039c82610dab565b60008251611027818460208701611131565b9190910192915050565b6001600160a01b038616815260606020808301829052908201859052600090869060808401835b888110156110815763ffffffff61106e85610dab565b1682529282019290820190600101611058565b5084810360408601528581528587838301376000818701830152601f909501601f1916909401909301979650505050505050565b60208152600082518060208401526110d4816040850160208701611131565b601f01601f19169190910160400192915050565b604051601f8201601f1916810167ffffffffffffffff81118282101715611111576111116111c6565b604052919050565b6000821982111561112c5761112c61119a565b500190565b60005b8381101561114c578181015183820152602001611134565b8381111561115b576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156111935761119361119a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146111f157600080fd5b5056fea264697066735822122054ea875b814e9a1a718e97bbbccdee17d6a66812561dbabd59e8ad1e5321bb0a64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xBB7D4E2D GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xBB7D4E2D EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1AB JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x166 JUMPI DUP1 PUSH4 0xB7F892D1 EQ PUSH2 0x177 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x44004CC1 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x44004CC1 EQ PUSH2 0x11E JUMPI DUP1 PUSH4 0x454A8140 EQ PUSH2 0x141 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x154 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x2D680CFA EQ PUSH2 0x10D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF0 JUMP JUMPDEST PUSH2 0x131 PUSH2 0x12C CALLDATASIZE PUSH1 0x4 PUSH2 0xFB9 JUMP JUMPDEST PUSH2 0x1CF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0xF0 PUSH2 0x14F CALLDATASIZE PUSH1 0x4 PUSH2 0xDBF JUMP JUMPDEST PUSH2 0x3A3 JUMP JUMPDEST PUSH2 0x15C PUSH2 0x41F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x15C PUSH2 0x4AD JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF0 JUMP JUMPDEST PUSH2 0x18A PUSH2 0x185 CALLDATASIZE PUSH1 0x4 PUSH2 0xE90 JUMP JUMPDEST PUSH2 0x522 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x18A PUSH2 0x1A6 CALLDATASIZE PUSH1 0x4 PUSH2 0xDDC JUMP JUMPDEST PUSH2 0x551 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF0 JUMP JUMPDEST PUSH2 0x15C PUSH2 0x1CA CALLDATASIZE PUSH1 0x4 PUSH2 0xDBF JUMP JUMPDEST PUSH2 0x787 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x1E4 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x23F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2BB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F726563697069656E742D6E6F742D7A PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x65726F2D61646472657373000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x337 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F45524332302D6E6F742D7A65726F2D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6164647265737300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH2 0x34B PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 DUP5 PUSH2 0x8C3 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xBFED55BDCD242E3DD0F60DDD7D1E87C67F61C34CD9527B3E6455D841B1025362 DUP5 PUSH1 0x40 MLOAD PUSH2 0x390 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x3B8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x40E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH2 0x417 DUP3 PUSH2 0x948 JUMP JUMPDEST POP DUP1 JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x479 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x48E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9F5 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x4C0 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x516 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH2 0x520 PUSH1 0x0 PUSH2 0x9F5 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH4 0xFFFFFFFF DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x39C JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD PUSH32 0xAACA392E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xAACA392E SWAP1 PUSH2 0x5A7 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x1031 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5BF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5D3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x5FB SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0xEC5 JUMP JUMPDEST POP DUP1 MLOAD SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x76F JUMPI PUSH1 0x0 DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x620 JUMPI PUSH2 0x620 PUSH2 0x11B0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x635 SWAP2 SWAP1 PUSH2 0xFFA JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x64B JUMPI PUSH2 0x64B PUSH2 0x11B0 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 PUSH4 0xFFFFFFFF DUP8 AND DUP4 MSTORE SWAP1 SWAP4 MSTORE SWAP2 DUP3 KECCAK256 SLOAD SWAP1 SWAP3 POP SWAP1 DUP2 DUP4 GT PUSH2 0x6D2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F7A65726F2D7061796F757400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH4 0xFFFFFFFF DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP3 SWAP1 SSTORE DUP1 DUP3 SUB PUSH2 0x70C DUP2 DUP10 PUSH2 0x1119 JUMP JUMPDEST SWAP8 POP DUP4 PUSH4 0xFFFFFFFF AND DUP15 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDA18D31FBB73ED04B84307EF1BC6602E02C855AF9F65B53ED10BA43E8D35B7DD DUP4 PUSH1 0x40 MLOAD PUSH2 0x750 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP DUP1 DUP1 PUSH2 0x767 SWAP1 PUSH2 0x1161 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x604 JUMP JUMPDEST POP PUSH2 0x77A DUP10 DUP5 PUSH2 0xA52 JUMP JUMPDEST POP SWAP1 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH2 0x79A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x86C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE PUSH2 0x943 SWAP1 DUP5 SWAP1 PUSH2 0xA8A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x99E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F63616C632D6E6F742D7A65726F0000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xFF37EAFDC3779D387D79DCF458FDC36536D857426F03A53204694F8FBB0D8A6B SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0xA86 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP4 DUP4 PUSH2 0x8C3 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xADF DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB6F SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x943 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0xAFD SWAP2 SWAP1 PUSH2 0xF97 JUMP JUMPDEST PUSH2 0x943 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x60 PUSH2 0xB7E DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0xB86 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0xBFE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0xC4C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0xC68 SWAP2 SWAP1 PUSH2 0x1015 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xCA5 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xCAA JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0xCBA DUP3 DUP3 DUP7 PUSH2 0xCC5 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0xCD4 JUMPI POP DUP2 PUSH2 0x39C JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0xCE4 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0xD10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD28 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xD40 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xD58 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD72 JUMPI PUSH2 0xD72 PUSH2 0x11C6 JUMP JUMPDEST PUSH2 0xD85 PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP5 ADD AND ADD PUSH2 0x10E8 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 PUSH1 0x20 DUP4 DUP7 ADD ADD GT ISZERO PUSH2 0xD9A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB7E DUP3 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1131 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x41A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDD1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x39C DUP2 PUSH2 0x11DC JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xDF4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0xDFF DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xE1C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xE30 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xE3F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xE54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP7 POP DUP1 SWAP6 POP POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0xE72 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE7F DUP9 DUP3 DUP10 ADD PUSH2 0xCFE JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEA3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0xEAE DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP2 POP PUSH2 0xEBC PUSH1 0x20 DUP5 ADD PUSH2 0xDAB JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xED8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xEF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xF04 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x20 DUP3 DUP3 GT ISZERO PUSH2 0xF18 JUMPI PUSH2 0xF18 PUSH2 0x11C6 JUMP JUMPDEST DUP2 PUSH1 0x5 SHL PUSH2 0xF27 DUP3 DUP3 ADD PUSH2 0x10E8 JUMP JUMPDEST DUP4 DUP2 MSTORE DUP3 DUP2 ADD SWAP1 DUP7 DUP5 ADD DUP4 DUP9 ADD DUP6 ADD DUP13 LT ISZERO PUSH2 0xF42 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP8 POP JUMPDEST DUP6 DUP9 LT ISZERO PUSH2 0xF65 JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP8 SWAP1 SWAP8 ADD SWAP7 SWAP2 DUP5 ADD SWAP2 DUP5 ADD PUSH2 0xF47 JUMP JUMPDEST POP SWAP3 DUP10 ADD MLOAD SWAP3 SWAP8 POP SWAP2 SWAP5 POP POP POP POP DUP1 DUP3 GT ISZERO PUSH2 0xF80 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xF8D DUP6 DUP3 DUP7 ADD PUSH2 0xD47 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFA9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x39C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xFCE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0xFD9 DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0xFE9 DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x100C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x39C DUP3 PUSH2 0xDAB JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1027 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x1131 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP1 DUP3 ADD DUP6 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP7 SWAP1 PUSH1 0x80 DUP5 ADD DUP4 JUMPDEST DUP9 DUP2 LT ISZERO PUSH2 0x1081 JUMPI PUSH4 0xFFFFFFFF PUSH2 0x106E DUP6 PUSH2 0xDAB JUMP JUMPDEST AND DUP3 MSTORE SWAP3 DUP3 ADD SWAP3 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1058 JUMP JUMPDEST POP DUP5 DUP2 SUB PUSH1 0x40 DUP7 ADD MSTORE DUP6 DUP2 MSTORE DUP6 DUP8 DUP4 DUP4 ADD CALLDATACOPY PUSH1 0x0 DUP2 DUP8 ADD DUP4 ADD MSTORE PUSH1 0x1F SWAP1 SWAP6 ADD PUSH1 0x1F NOT AND SWAP1 SWAP5 ADD SWAP1 SWAP4 ADD SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x10D4 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1131 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1111 JUMPI PUSH2 0x1111 PUSH2 0x11C6 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x112C JUMPI PUSH2 0x112C PUSH2 0x119A JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x114C JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1134 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x115B JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1193 JUMPI PUSH2 0x1193 PUSH2 0x119A JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x11F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SLOAD 0xEA DUP8 JUMPDEST DUP2 0x4E SWAP11 BYTE PUSH18 0x8E97BBBCCDEE17D6A66812561DBABD59E8AD 0x1E MSTORE8 0x21 0xBB EXP PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1034:4740:34:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4313:89;4390:5;4313:89;;;-1:-1:-1;;;;;5533:55:84;;;5515:74;;5503:2;5488:18;4313:89:34;;;;;;;;3906:116;4001:14;;-1:-1:-1;;;;;4001:14:34;3906:116;;3402:460;;;;;;:::i;:::-;;:::i;:::-;;;7157:14:84;;7150:22;7132:41;;7120:2;7105:18;3402:460:34;7087:92:84;4446:231:34;;;;;;:::i;:::-;;:::i;3147:129:22:-;;;:::i;:::-;;2508:94;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:22;1814:85;;4066:203:34;;;;;;:::i;:::-;;:::i;:::-;;;12109:25:84;;;12097:2;12082:18;4066:203:34;12064:76:84;2156:1202:34;;;;;;:::i;:::-;;:::i;2014:101:22:-;2095:13;;-1:-1:-1;;;;;2095:13:22;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;3402:460:34:-;3542:4;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;9865:2:84;3819:58:22;;;9847:21:84;9904:2;9884:18;;;9877:30;9943:26;9923:18;;;9916:54;9987:18;;3819:58:22;;;;;;;;;-1:-1:-1;;;;;3566:17:34;::::1;3558:73;;;::::0;-1:-1:-1;;;3558:73:34;;10578:2:84;3558:73:34::1;::::0;::::1;10560:21:84::0;10617:2;10597:18;;;10590:30;10656:34;10636:18;;;10629:62;10727:13;10707:18;;;10700:41;10758:19;;3558:73:34::1;10550:233:84::0;3558:73:34::1;-1:-1:-1::0;;;;;3649:34:34;::::1;3641:86;;;::::0;-1:-1:-1;;;3641:86:34;;9457:2:84;3641:86:34::1;::::0;::::1;9439:21:84::0;9496:2;9476:18;;;9469:30;9535:34;9515:18;;;9508:62;9606:9;9586:18;;;9579:37;9633:19;;3641:86:34::1;9429:229:84::0;3641:86:34::1;3738:38;-1:-1:-1::0;;;;;3738:24:34;::::1;3763:3:::0;3768:7;3738:24:::1;:38::i;:::-;3820:3;-1:-1:-1::0;;;;;3792:41:34::1;3807:11;-1:-1:-1::0;;;;;3792:41:34::1;;3825:7;3792:41;;;;12109:25:84::0;;12097:2;12082:18;;12064:76;3792:41:34::1;;;;;;;;-1:-1:-1::0;3851:4:34::1;3887:1:22;3402:460:34::0;;;;;:::o;4446:231::-;4574:15;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;9865:2:84;3819:58:22;;;9847:21:84;9904:2;9884:18;;;9877:30;9943:26;9923:18;;;9916:54;9987:18;;3819:58:22;9837:174:84;3819:58:22;4605:34:34::1;4624:14;4605:18;:34::i;:::-;-1:-1:-1::0;4656:14:34;3887:1:22::1;4446:231:34::0;;;:::o;3147:129:22:-;4050:13;;-1:-1:-1;;;;;4050:13:22;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:22;;10218:2:84;4028:71:22;;;10200:21:84;10257:2;10237:18;;;10230:30;10296:33;10276:18;;;10269:61;10347:18;;4028:71:22;10190:181:84;4028:71:22;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:22::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:22::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;9865:2:84;3819:58:22;;;9847:21:84;9904:2;9884:18;;;9877:30;9943:26;9923:18;;;9916:54;9987:18;;3819:58:22;9837:174:84;3819:58:22;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;4066:203:34:-;-1:-1:-1;;;;;4880:22:34;;4193:7;4880:22;;;:15;:22;;;;;;;;:31;;;;;;;;;;;4223:39;4739:179;2156:1202;2394:14;;:48;;;;;2293:7;;;;;;-1:-1:-1;;;;;2394:14:34;;:24;;:48;;2419:5;;2426:8;;;;2436:5;;;;2394:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2394:48:34;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2549:18:34;;2359:83;;-1:-1:-1;2521:25:34;2577:703;2621:17;2607:11;:31;2577:703;;;2669:13;2685:8;;2694:11;2685:21;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;2669:37;;2720:14;2737:11;2749;2737:24;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;4880:22:34;;2775:17;4880:22;;;:15;:22;;;;;;:31;;;;;;;;;;;;2737:24;;-1:-1:-1;4880:31:34;2971:18;;;2963:59;;;;-1:-1:-1;;;2963:59:34;;8334:2:84;2963:59:34;;;8316:21:84;8373:2;8353:18;;;8346:30;8412;8392:18;;;8385:58;8460:18;;2963:59:34;8306:178:84;2963:59:34;-1:-1:-1;;;;;;5054:22:34;;;;;;:15;:22;;;;;;;;:31;;;;;;;;;;:41;;;3078:18;;;3186:25;3201:10;3186:25;;:::i;:::-;;;3250:6;3231:38;;3243:5;-1:-1:-1;;;;;3231:38:34;;3258:10;3231:38;;;;12109:25:84;;12097:2;12082:18;;12064:76;3231:38:34;;;;;;;;2655:625;;;;2640:13;;;;;:::i;:::-;;;;2577:703;;;;3290:32;3303:5;3310:11;3290:12;:32::i;:::-;-1:-1:-1;3340:11:34;;2156:1202;-1:-1:-1;;;;;;;2156:1202:34:o;2751:234:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;9865:2:84;3819:58:22;;;9847:21:84;9904:2;9884:18;;;9877:30;9943:26;9923:18;;;9916:54;9987:18;;3819:58:22;9837:174:84;3819:58:22;-1:-1:-1;;;;;2834:23:22;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:22;;11348:2:84;2826:73:22::1;::::0;::::1;11330:21:84::0;11387:2;11367:18;;;11360:30;11426:34;11406:18;;;11399:62;11497:7;11477:18;;;11470:35;11522:19;;2826:73:22::1;11320:227:84::0;2826:73:22::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:22::1;-1:-1:-1::0;;;;;2910:25:22;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:22::1;2751:234:::0;:::o;634:205:6:-;773:58;;;-1:-1:-1;;;;;6882:55:84;;773:58:6;;;6864:74:84;6954:18;;;;6947:34;;;773:58:6;;;;;;;;;;6837:18:84;;;;773:58:6;;;;;;;;;;796:23;773:58;;;746:86;;766:5;;746:19;:86::i;:::-;634:205;;;:::o;5246:256:34:-;-1:-1:-1;;;;;5333:37:34;;5325:80;;;;-1:-1:-1;;;5325:80:34;;8691:2:84;5325:80:34;;;8673:21:84;8730:2;8710:18;;;8703:30;8769:32;8749:18;;;8742:60;8819:18;;5325:80:34;8663:180:84;5325:80:34;5415:14;:31;;-1:-1:-1;;5415:31:34;-1:-1:-1;;;;;5415:31:34;;;;;;;;5462:33;;;;-1:-1:-1;;5462:33:34;5246:256;:::o;3470:174:22:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;5661:110:34:-;5732:32;-1:-1:-1;;;;;5732:5:34;:18;5751:3;5756:7;5732:18;:32::i;:::-;5661:110;;:::o;3140:706:6:-;3559:23;3585:69;3613:4;3585:69;;;;;;;;;;;;;;;;;3593:5;-1:-1:-1;;;;;3585:27:6;;;:69;;;;;:::i;:::-;3668:17;;3559:95;;-1:-1:-1;3668:21:6;3664:176;;3763:10;3752:30;;;;;;;;;;;;:::i;:::-;3744:85;;;;-1:-1:-1;;;3744:85:6;;11754:2:84;3744:85:6;;;11736:21:84;11793:2;11773:18;;;11766:30;11832:34;11812:18;;;11805:62;11903:12;11883:18;;;11876:40;11933:19;;3744:85:6;11726:232:84;3461:223:11;3594:12;3625:52;3647:6;3655:4;3661:1;3664:12;3625:21;:52::i;:::-;3618:59;3461:223;-1:-1:-1;;;;3461:223:11:o;4548:499::-;4713:12;4770:5;4745:21;:30;;4737:81;;;;-1:-1:-1;;;4737:81:11;;9050:2:84;4737:81:11;;;9032:21:84;9089:2;9069:18;;;9062:30;9128:34;9108:18;;;9101:62;9199:8;9179:18;;;9172:36;9225:19;;4737:81:11;9022:228:84;4737:81:11;1034:20;;4828:60;;;;-1:-1:-1;;;4828:60:11;;10990:2:84;4828:60:11;;;10972:21:84;11029:2;11009:18;;;11002:30;11068:31;11048:18;;;11041:59;11117:18;;4828:60:11;10962:179:84;4828:60:11;4900:12;4914:23;4941:6;-1:-1:-1;;;;;4941:11:11;4960:5;4967:4;4941:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4899:73;;;;4989:51;5006:7;5015:10;5027:12;4989:16;:51::i;:::-;4982:58;4548:499;-1:-1:-1;;;;;;;4548:499:11:o;7161:692::-;7307:12;7335:7;7331:516;;;-1:-1:-1;7365:10:11;7358:17;;7331:516;7476:17;;:21;7472:365;;7670:10;7664:17;7730:15;7717:10;7713:2;7709:19;7702:44;7472:365;7809:12;7802:20;;-1:-1:-1;;;7802:20:11;;;;;;;;:::i;14:347:84:-;65:8;75:6;129:3;122:4;114:6;110:17;106:27;96:2;;147:1;144;137:12;96:2;-1:-1:-1;170:20:84;;213:18;202:30;;199:2;;;245:1;242;235:12;199:2;282:4;274:6;270:17;258:29;;334:3;327:4;318:6;310;306:19;302:30;299:39;296:2;;;351:1;348;341:12;296:2;86:275;;;;;:::o;366:555::-;419:5;472:3;465:4;457:6;453:17;449:27;439:2;;490:1;487;480:12;439:2;519:6;513:13;545:18;541:2;538:26;535:2;;;567:18;;:::i;:::-;611:114;719:4;-1:-1:-1;;643:4:84;639:2;635:13;631:86;627:97;611:114;:::i;:::-;750:2;741:7;734:19;796:3;789:4;784:2;776:6;772:15;768:26;765:35;762:2;;;813:1;810;803:12;762:2;826:64;887:2;880:4;871:7;867:18;860:4;852:6;848:17;826:64;:::i;926:163::-;993:20;;1053:10;1042:22;;1032:33;;1022:2;;1079:1;1076;1069:12;1094:247;1153:6;1206:2;1194:9;1185:7;1181:23;1177:32;1174:2;;;1222:1;1219;1212:12;1174:2;1261:9;1248:23;1280:31;1305:5;1280:31;:::i;1346:1036::-;1460:6;1468;1476;1484;1492;1545:2;1533:9;1524:7;1520:23;1516:32;1513:2;;;1561:1;1558;1551:12;1513:2;1600:9;1587:23;1619:31;1644:5;1619:31;:::i;:::-;1669:5;-1:-1:-1;1725:2:84;1710:18;;1697:32;1748:18;1778:14;;;1775:2;;;1805:1;1802;1795:12;1775:2;1843:6;1832:9;1828:22;1818:32;;1888:7;1881:4;1877:2;1873:13;1869:27;1859:2;;1910:1;1907;1900:12;1859:2;1950;1937:16;1976:2;1968:6;1965:14;1962:2;;;1992:1;1989;1982:12;1962:2;2045:7;2040:2;2030:6;2027:1;2023:14;2019:2;2015:23;2011:32;2008:45;2005:2;;;2066:1;2063;2056:12;2005:2;2097;2093;2089:11;2079:21;;2119:6;2109:16;;;2178:2;2167:9;2163:18;2150:32;2134:48;;2207:2;2197:8;2194:16;2191:2;;;2223:1;2220;2213:12;2191:2;;2262:60;2314:7;2303:8;2292:9;2288:24;2262:60;:::i;:::-;1503:879;;;;-1:-1:-1;1503:879:84;;-1:-1:-1;2341:8:84;;2236:86;1503:879;-1:-1:-1;;;1503:879:84:o;2387:319::-;2454:6;2462;2515:2;2503:9;2494:7;2490:23;2486:32;2483:2;;;2531:1;2528;2521:12;2483:2;2570:9;2557:23;2589:31;2614:5;2589:31;:::i;:::-;2639:5;-1:-1:-1;2663:37:84;2696:2;2681:18;;2663:37;:::i;:::-;2653:47;;2473:233;;;;;:::o;2711:1151::-;2824:6;2832;2885:2;2873:9;2864:7;2860:23;2856:32;2853:2;;;2901:1;2898;2891:12;2853:2;2934:9;2928:16;2963:18;3004:2;2996:6;2993:14;2990:2;;;3020:1;3017;3010:12;2990:2;3058:6;3047:9;3043:22;3033:32;;3103:7;3096:4;3092:2;3088:13;3084:27;3074:2;;3125:1;3122;3115:12;3074:2;3154;3148:9;3176:4;3199:2;3195;3192:10;3189:2;;;3205:18;;:::i;:::-;3251:2;3248:1;3244:10;3274:28;3298:2;3294;3290:11;3274:28;:::i;:::-;3336:15;;;3367:12;;;;3399:11;;;3429;;;3425:20;;3422:33;-1:-1:-1;3419:2:84;;;3468:1;3465;3458:12;3419:2;3490:1;3481:10;;3500:156;3514:2;3511:1;3508:9;3500:156;;;3571:10;;3559:23;;3532:1;3525:9;;;;;3602:12;;;;3634;;3500:156;;;-1:-1:-1;3711:18:84;;;3705:25;3675:5;;-1:-1:-1;3705:25:84;;-1:-1:-1;;;;3742:16:84;;;3739:2;;;3771:1;3768;3761:12;3739:2;;3794:62;3848:7;3837:8;3826:9;3822:24;3794:62;:::i;:::-;3784:72;;;2843:1019;;;;;:::o;3867:277::-;3934:6;3987:2;3975:9;3966:7;3962:23;3958:32;3955:2;;;4003:1;4000;3993:12;3955:2;4035:9;4029:16;4088:5;4081:13;4074:21;4067:5;4064:32;4054:2;;4110:1;4107;4100:12;4426:470;4517:6;4525;4533;4586:2;4574:9;4565:7;4561:23;4557:32;4554:2;;;4602:1;4599;4592:12;4554:2;4641:9;4628:23;4660:31;4685:5;4660:31;:::i;:::-;4710:5;-1:-1:-1;4767:2:84;4752:18;;4739:32;4780:33;4739:32;4780:33;:::i;:::-;4544:352;;4832:7;;-1:-1:-1;;;4886:2:84;4871:18;;;;4858:32;;4544:352::o;4901:184::-;4959:6;5012:2;5000:9;4991:7;4987:23;4983:32;4980:2;;;5028:1;5025;5018:12;4980:2;5051:28;5069:9;5051:28;:::i;5090:274::-;5219:3;5257:6;5251:13;5273:53;5319:6;5314:3;5307:4;5299:6;5295:17;5273:53;:::i;:::-;5342:16;;;;;5227:137;-1:-1:-1;;5227:137:84:o;5600:1085::-;-1:-1:-1;;;;;5912:55:84;;5894:74;;5882:2;5987;6005:18;;;5998:30;;;5867:18;;;6063:22;;;5834:4;;6143:6;;6116:3;6101:19;;5834:4;6177:198;6191:6;6188:1;6185:13;6177:198;;;6283:10;6256:25;6274:6;6256:25;:::i;:::-;6252:42;6240:55;;6350:15;;;;6315:12;;;;6213:1;6206:9;6177:198;;;6181:3;6420:9;6415:3;6411:19;6406:2;6395:9;6391:18;6384:47;6452:6;6447:3;6440:19;6503:6;6495;6490:2;6485:3;6481:12;6468:42;6553:1;6530:16;;;6526:25;;6519:36;6601:2;6589:15;;;-1:-1:-1;;6585:88:84;6576:98;;;6572:107;;;;5843:842;-1:-1:-1;;;;;;;5843:842:84:o;7685:442::-;7834:2;7823:9;7816:21;7797:4;7866:6;7860:13;7909:6;7904:2;7893:9;7889:18;7882:34;7925:66;7984:6;7979:2;7968:9;7964:18;7959:2;7951:6;7947:15;7925:66;:::i;:::-;8043:2;8031:15;-1:-1:-1;;8027:88:84;8012:104;;;;8118:2;8008:113;;7806:321;-1:-1:-1;;7806:321:84:o;12145:334::-;12216:2;12210:9;12272:2;12262:13;;-1:-1:-1;;12258:86:84;12246:99;;12375:18;12360:34;;12396:22;;;12357:62;12354:2;;;12422:18;;:::i;:::-;12458:2;12451:22;12190:289;;-1:-1:-1;12190:289:84:o;12484:128::-;12524:3;12555:1;12551:6;12548:1;12545:13;12542:2;;;12561:18;;:::i;:::-;-1:-1:-1;12597:9:84;;12532:80::o;12617:258::-;12689:1;12699:113;12713:6;12710:1;12707:13;12699:113;;;12789:11;;;12783:18;12770:11;;;12763:39;12735:2;12728:10;12699:113;;;12830:6;12827:1;12824:13;12821:2;;;12865:1;12856:6;12851:3;12847:16;12840:27;12821:2;;12670:205;;;:::o;12880:195::-;12919:3;12950:66;12943:5;12940:77;12937:2;;;13020:18;;:::i;:::-;-1:-1:-1;13067:1:84;13056:13;;12927:148::o;13080:184::-;-1:-1:-1;;;13129:1:84;13122:88;13229:4;13226:1;13219:15;13253:4;13250:1;13243:15;13269:184;-1:-1:-1;;;13318:1:84;13311:88;13418:4;13415:1;13408:15;13442:4;13439:1;13432:15;13458:184;-1:-1:-1;;;13507:1:84;13500:88;13607:4;13604:1;13597:15;13631:4;13628:1;13621:15;13647:154;-1:-1:-1;;;;;13726:5:84;13722:54;13715:5;13712:65;13702:2;;13791:1;13788;13781:12;13702:2;13692:109;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "930000",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "claim(address,uint32[],bytes)": "infinite",
                "claimOwnership()": "54508",
                "getDrawCalculator()": "2366",
                "getDrawPayoutBalanceOf(address,uint32)": "2802",
                "getToken()": "infinite",
                "owner()": "2365",
                "pendingOwner()": "2364",
                "renounceOwnership()": "28158",
                "setDrawCalculator(address)": "28056",
                "transferOwnership(address)": "27966",
                "withdrawERC20(address,address,uint256)": "infinite"
              },
              "internal": {
                "_awardPayout(address,uint256)": "infinite",
                "_getDrawPayoutBalanceOf(address,uint32)": "infinite",
                "_setDrawCalculator(contract IDrawCalculator)": "infinite",
                "_setDrawPayoutBalanceOf(address,uint32,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "claim(address,uint32[],bytes)": "bb7d4e2d",
              "claimOwnership()": "4e71e0c8",
              "getDrawCalculator()": "2d680cfa",
              "getDrawPayoutBalanceOf(address,uint32)": "b7f892d1",
              "getToken()": "21df0da7",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setDrawCalculator(address)": "454a8140",
              "transferOwnership(address)": "f2fde38b",
              "withdrawERC20(address,address,uint256)": "44004cc1"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IERC20\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"contract IDrawCalculator\",\"name\":\"_drawCalculator\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"ClaimedDraw\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IDrawCalculator\",\"name\":\"calculator\",\"type\":\"address\"}],\"name\":\"DrawCalculatorSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"ERC20Withdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"TokenSet\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"name\":\"claim\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawCalculator\",\"outputs\":[{\"internalType\":\"contract IDrawCalculator\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"}],\"name\":\"getDrawPayoutBalanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IDrawCalculator\",\"name\":\"_newCalculator\",\"type\":\"address\"}],\"name\":\"setDrawCalculator\",\"outputs\":[{\"internalType\":\"contract IDrawCalculator\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"_erc20Token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawERC20\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"claim(address,uint32[],bytes)\":{\"details\":\"The claim function is public and any wallet may execute claim on behalf of another user. Prizes are always paid out to the designated user account and not the caller (msg.sender). Claiming prizes is not limited to a single transaction. Reclaiming can be executed subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The payout difference for the new claim is calculated during the award process and transfered to user.\",\"params\":{\"data\":\"The data to pass to the draw calculator\",\"drawIds\":\"Draw IDs from global DrawBuffer reference\",\"user\":\"Address of user to claim awards for. Does NOT need to be msg.sender\"},\"returns\":{\"_0\":\"Total claim payout. May include calcuations from multiple draws.\"}},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_drawCalculator\":\"DrawCalculator address\",\"_owner\":\"Owner address\",\"_token\":\"Token address\"}},\"getDrawCalculator()\":{\"returns\":{\"_0\":\"IDrawCalculator\"}},\"getDrawPayoutBalanceOf(address,uint32)\":{\"params\":{\"drawId\":\"Draw ID\",\"user\":\"User address\"}},\"getToken()\":{\"returns\":{\"_0\":\"IERC20\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setDrawCalculator(address)\":{\"params\":{\"newCalculator\":\"DrawCalculator address\"},\"returns\":{\"_0\":\"New DrawCalculator address\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}},\"withdrawERC20(address,address,uint256)\":{\"details\":\"Only callable by contract owner.\",\"params\":{\"amount\":\"Amount of tokens to transfer.\",\"to\":\"Recipient of the tokens.\",\"token\":\"ERC20 token to transfer.\"},\"returns\":{\"_0\":\"true if operation is successful.\"}}},\"title\":\"PoolTogether V4 PrizeDistributor\",\"version\":1},\"userdoc\":{\"events\":{\"ClaimedDraw(address,uint32,uint256)\":{\"notice\":\"Emit when user has claimed token from the PrizeDistributor.\"},\"DrawCalculatorSet(address)\":{\"notice\":\"Emit when DrawCalculator is set.\"},\"ERC20Withdrawn(address,address,uint256)\":{\"notice\":\"Emit when ERC20 tokens are withdrawn.\"},\"TokenSet(address)\":{\"notice\":\"Emit when Token is set.\"}},\"kind\":\"user\",\"methods\":{\"claim(address,uint32[],bytes)\":{\"notice\":\"Claim prize payout(s) by submitting valid drawId(s) and winning pick indice(s). The user address is used as the \\\"seed\\\" phrase to generate random numbers.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Initialize PrizeDistributor smart contract.\"},\"getDrawCalculator()\":{\"notice\":\"Read global DrawCalculator address.\"},\"getDrawPayoutBalanceOf(address,uint32)\":{\"notice\":\"Get the amount that a user has already been paid out for a draw\"},\"getToken()\":{\"notice\":\"Read global Ticket address.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setDrawCalculator(address)\":{\"notice\":\"Sets DrawCalculator reference contract.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"},\"withdrawERC20(address,address,uint256)\":{\"notice\":\"Transfer ERC20 tokens out of contract to recipient address.\"}},\"notice\":\"The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims. PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users  from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then the previous prize distributor claim payout.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/PrizeDistributor.sol\":\"PrizeDistributor\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Random Number Generator Interface\\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\n */\\ninterface RNGInterface {\\n  /**\\n   * @notice Emitted when a new request for a random number has been submitted\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param sender The indexed address of the sender of the request\\n   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /**\\n   * @notice Emitted when an existing request for a random number has been completed\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param randomNumber The random number produced by the 3rd-party service\\n   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /**\\n   * @notice Gets the last request id used by the RNG service\\n   * @return requestId The last request id used in the last request\\n   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /**\\n   * @notice Gets the Fee for making a Request against an RNG service\\n   * @return feeToken The address of the token that is used to pay fees\\n   * @return requestFee The fee required to be paid to make a request\\n   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /**\\n   * @notice Sends a request for a random number to the 3rd-party service\\n   * @dev Some services will complete the request immediately, others may have a time-delay\\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n   * @return requestId The ID of the request used to get the results of the RNG service\\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /**\\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\\n   * @dev For time-delayed requests, this function is used to check/confirm completion\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\\n   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /**\\n   * @notice Gets the random number produced by the 3rd-party service\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return randomNum The random number\\n   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"},\"contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionSource\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"license\":\"GPL-3.0\"},\"contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawIds to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valid drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/PrizeDistributor.sol:PrizeDistributor",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/PrizeDistributor.sol:PrizeDistributor",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 9133,
                "contract": "contracts/PrizeDistributor.sol:PrizeDistributor",
                "label": "drawCalculator",
                "offset": 0,
                "slot": "2",
                "type": "t_contract(IDrawCalculator)11391"
              },
              {
                "astId": 9144,
                "contract": "contracts/PrizeDistributor.sol:PrizeDistributor",
                "label": "userDrawPayouts",
                "offset": 0,
                "slot": "3",
                "type": "t_mapping(t_address,t_mapping(t_uint256,t_uint256))"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(IDrawCalculator)11391": {
                "encoding": "inplace",
                "label": "contract IDrawCalculator",
                "numberOfBytes": "20"
              },
              "t_mapping(t_address,t_mapping(t_uint256,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(uint256 => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_uint256,t_uint256)"
              },
              "t_mapping(t_uint256,t_uint256)": {
                "encoding": "mapping",
                "key": "t_uint256",
                "label": "mapping(uint256 => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "events": {
              "ClaimedDraw(address,uint32,uint256)": {
                "notice": "Emit when user has claimed token from the PrizeDistributor."
              },
              "DrawCalculatorSet(address)": {
                "notice": "Emit when DrawCalculator is set."
              },
              "ERC20Withdrawn(address,address,uint256)": {
                "notice": "Emit when ERC20 tokens are withdrawn."
              },
              "TokenSet(address)": {
                "notice": "Emit when Token is set."
              }
            },
            "kind": "user",
            "methods": {
              "claim(address,uint32[],bytes)": {
                "notice": "Claim prize payout(s) by submitting valid drawId(s) and winning pick indice(s). The user address is used as the \"seed\" phrase to generate random numbers."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Initialize PrizeDistributor smart contract."
              },
              "getDrawCalculator()": {
                "notice": "Read global DrawCalculator address."
              },
              "getDrawPayoutBalanceOf(address,uint32)": {
                "notice": "Get the amount that a user has already been paid out for a draw"
              },
              "getToken()": {
                "notice": "Read global Ticket address."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setDrawCalculator(address)": {
                "notice": "Sets DrawCalculator reference contract."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              },
              "withdrawERC20(address,address,uint256)": {
                "notice": "Transfer ERC20 tokens out of contract to recipient address."
              }
            },
            "notice": "The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims. PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users  from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur if an \"optimal\" prize was not included in previous claim pick indices and the new claims updated payout is greater then the previous prize distributor claim payout.",
            "version": 1
          }
        }
      },
      "contracts/Reserve.sol": {
        "Reserve": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IERC20",
                  "name": "_token",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "reserveAccumulated",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "withdrawAccumulated",
                  "type": "uint256"
                }
              ],
              "name": "Checkpoint",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IERC20",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Withdrawn",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "checkpoint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_startTimestamp",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "_endTimestamp",
                  "type": "uint32"
                }
              ],
              "name": "getReserveAccumulatedBetween",
              "outputs": [
                {
                  "internalType": "uint224",
                  "name": "",
                  "type": "uint224"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "token",
              "outputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "withdrawAccumulator",
              "outputs": [
                {
                  "internalType": "uint224",
                  "name": "",
                  "type": "uint224"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "details": "By calculating the total held tokens in a specific time range, contracts that require knowledge  of captured interest during a draw period, can easily call into the Reserve and deterministically determine the newly aqcuired tokens for that time range. ",
            "kind": "dev",
            "methods": {
              "checkpoint()": {
                "details": "Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint."
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_owner": "Owner address",
                  "_token": "ERC20 address"
                }
              },
              "getReserveAccumulatedBetween(uint32,uint32)": {
                "details": "Search the ring buffer for two checkpoint observations and diffs accumulator amount.",
                "params": {
                  "endTimestamp": "Transfer amount",
                  "startTimestamp": "Account address"
                }
              },
              "getToken()": {
                "returns": {
                  "_0": "IERC20"
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              },
              "withdrawTo(address,uint256)": {
                "details": "Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.",
                "params": {
                  "amount": "Transfer amount",
                  "recipient": "Account address"
                }
              }
            },
            "title": "PoolTogether V4 Reserve",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_3961": {
                  "entryPoint": null,
                  "id": 3961,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_9551": {
                  "entryPoint": null,
                  "id": 9551,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 143,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IERC20_$663_fromMemory": {
                  "entryPoint": 223,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "validator_revert_address": {
                  "entryPoint": 286,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:551:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "126:287:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "172:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "181:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "184:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "174:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "174:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "174:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "147:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "156:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "143:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "143:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "168:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "139:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "139:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "136:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "197:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "216:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "210:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "210:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "201:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "260:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "235:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "235:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "235:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "275:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "285:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "275:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "299:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "324:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "335:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "320:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "320:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "314:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "314:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "303:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "373:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "348:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "348:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "348:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "390:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "400:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "390:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IERC20_$663_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "84:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "95:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "107:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "115:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "463:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "527:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "536:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "539:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "529:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "529:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "529:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "486:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "497:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "512:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "517:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "508:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "508:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "521:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "504:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "504:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "493:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "493:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "483:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "483:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "476:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "476:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "473:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "452:5:84",
                            "type": ""
                          }
                        ],
                        "src": "418:131:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IERC20_$663_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b50604051620016ee380380620016ee8339810160408190526200003491620000df565b8162000040816200008f565b506001600160601b0319606082901b166080526040516001600160a01b038216907ff40fcec21964ffb566044d083b4073f29f7f7929110ea19e1b3ebe375d89055e90600090a2505062000137565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060408385031215620000f357600080fd5b825162000100816200011e565b602084015190925062000113816200011e565b809150509250929050565b6001600160a01b03811681146200013457600080fd5b50565b60805160601c6115846200016a6000396000818160fb015281816101fc01528181610327015261078601526115846000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c80638da5cb5b1161008c578063d0ebdbe711610066578063d0ebdbe7146101b0578063e30c3978146101d3578063f2fde38b146101e4578063fc0c546a146101f757600080fd5b80638da5cb5b14610184578063af6a940014610195578063c2c4c5c1146101a857600080fd5b8063481c6a75116100bd578063481c6a75146101635780634e71e0c814610174578063715018a61461017c57600080fd5b8063205c2878146100e457806321df0da7146100f95780632d00ddda14610138575b600080fd5b6100f76100f23660046112ef565b61021e565b005b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b60035461014b906001600160e01b031681565b6040516001600160e01b03909116815260200161012f565b6002546001600160a01b031661011b565b6100f76103a5565b6100f7610433565b6000546001600160a01b031661011b565b61014b6101a3366004611354565b6104a8565b6100f7610576565b6101c36101be3660046112d4565b61057e565b604051901515815260200161012f565b6001546001600160a01b031661011b565b6100f76101f23660046112d4565b6105fa565b61011b7f000000000000000000000000000000000000000000000000000000000000000081565b336102316002546001600160a01b031690565b6001600160a01b0316148061025f5750336102546000546001600160a01b031690565b6001600160a01b0316145b6102d65760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6102de610736565b600380548291906000906102fc9084906001600160e01b03166113f4565b92506101000a8154816001600160e01b0302191690836001600160e01b0316021790555061035e82827f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166109fd9092919063ffffffff16565b816001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d58260405161039991815260200190565b60405180910390a25050565b6001546001600160a01b031633146103ff5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016102cd565b600154610414906001600160a01b0316610a6d565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336104466000546001600160a01b031690565b6001600160a01b03161461049c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6104a66000610a6d565b565b60008163ffffffff168363ffffffff16106105055760405162461bcd60e51b815260206004820152601b60248201527f526573657276652f73746172742d6c6573732d7468616e2d656e64000000000060448201526064016102cd565b60045462ffffff630100000082048116911660008061052383610aca565b9150915060008061053385610b40565b915091506000610547848387868b8f610bb3565b90506000610559858488878c8f610bb3565b90506105658282611489565b985050505050505050505b92915050565b6104a6610736565b6000336105936000546001600160a01b031690565b6001600160a01b0316146105e95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6105f282610c5a565b90505b919050565b3361060d6000546001600160a01b031690565b6001600160a01b0316146106635760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6001600160a01b0381166106df5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016102cd565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600480546040517f70a08231000000000000000000000000000000000000000000000000000000008152309281019290925262ffffff630100000082048116929116906000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b1580156107c857600080fd5b505afa1580156107dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610800919061133b565b6003549091506001600160e01b031660008061081b85610aca565b9150915080600001516001600160e01b0316836001600160e01b031685610842919061143d565b11156109f55742600061085585876113f4565b90508163ffffffff16836020015163ffffffff161461094a576040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058862ffffff1662ffffff81106108ac576108ac611538565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556108e262ffffff80891690610d46565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000001662ffffff92831617905588811610156109455761092688600161141f565b600460036101000a81548162ffffff021916908362ffffff1602179055505b6109af565b6040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058562ffffff1662ffffff811061098857610988611538565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101555b604080516001600160e01b038084168252871660208201527f21d81d5d656869e8ce3ba8d65526a2f0dbbcd3d36f5f9999eb7c84360e45eced910160405180910390a150505b505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b03167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610a68908490610d63565b505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805180820190915260008082526020820181905290610af162ffffff80851690610e48565b915060058262ffffff1662ffffff8110610b0d57610b0d611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919391925050565b60408051808201909152600080825260208201528190600562ffffff808416908110610b6e57610b6e611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201819052909150610bae5760009150600582610b0d565b915091565b60004262ffffff8416610bca576000915050610c50565b8263ffffffff16876020015163ffffffff161115610bec576000915050610c50565b8263ffffffff16886020015163ffffffff1611610c0c5750508551610c50565b600080610c1e60058989888a88610e70565b915091508463ffffffff16816020015163ffffffff161415610c4557519250610c50915050565b50519150610c509050565b9695505050505050565b6002546000906001600160a01b03908116908316811415610ce35760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016102cd565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b6000610d5c610d5684600161143d565b8361103d565b9392505050565b6000610db8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166110499092919063ffffffff16565b805190915015610a685780806020019051810190610dd69190611319565b610a685760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016102cd565b600081610e5757506000610570565b610d5c6001610e66848661143d565b610d5691906114b1565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff1610610ebb578862ffffff16610ed6565b6001610ecc62ffffff88168461143d565b610ed691906114b1565b905060005b6002610ee7838561143d565b610ef19190611475565b90508a610f03828962ffffff1661103d565b62ffffff1662ffffff8110610f1a57610f1a611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290955080610f6257610f5a82600161143d565b935050610edb565b8b610f72838a62ffffff16610d46565b62ffffff1662ffffff8110610f8957610f89611538565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b90910481166020830152909550600090610fce90838116908c908b9061106016565b9050808015610ff75750610ff78660200151898c63ffffffff166110609092919063ffffffff16565b1561100357505061102f565b8061101a576110136001846114b1565b9350611028565b61102583600161143d565b94505b5050610edb565b505050965096945050505050565b6000610d5c82846114f8565b60606110588484600085611131565b949350505050565b60008163ffffffff168463ffffffff161115801561108a57508163ffffffff168363ffffffff1611155b156110a6578263ffffffff168463ffffffff1611159050610d5c565b60008263ffffffff168563ffffffff16116110d5576110d063ffffffff8616640100000000611455565b6110dd565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116111155761111063ffffffff8616640100000000611455565b61111d565b8463ffffffff165b64ffffffffff169091111595945050505050565b6060824710156111a95760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016102cd565b843b6111f75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102cd565b600080866001600160a01b031685876040516112139190611387565b60006040518083038185875af1925050503d8060008114611250576040519150601f19603f3d011682016040523d82523d6000602084013e611255565b606091505b5091509150611265828286611270565b979650505050505050565b6060831561127f575081610d5c565b82511561128f5782518084602001fd5b8160405162461bcd60e51b81526004016102cd91906113a3565b80356001600160a01b03811681146105f557600080fd5b803563ffffffff811681146105f557600080fd5b6000602082840312156112e657600080fd5b610d5c826112a9565b6000806040838503121561130257600080fd5b61130b836112a9565b946020939093013593505050565b60006020828403121561132b57600080fd5b81518015158114610d5c57600080fd5b60006020828403121561134d57600080fd5b5051919050565b6000806040838503121561136757600080fd5b611370836112c0565b915061137e602084016112c0565b90509250929050565b600082516113998184602087016114c8565b9190910192915050565b60208152600082518060208401526113c28160408501602087016114c8565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60006001600160e01b038083168185168083038211156114165761141661150c565b01949350505050565b600062ffffff8083168185168083038211156114165761141661150c565b600082198211156114505761145061150c565b500190565b600064ffffffffff8083168185168083038211156114165761141661150c565b60008261148457611484611522565b500490565b60006001600160e01b03838116908316818110156114a9576114a961150c565b039392505050565b6000828210156114c3576114c361150c565b500390565b60005b838110156114e35781810151838201526020016114cb565b838111156114f2576000848401525b50505050565b60008261150757611507611522565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fdfea264697066735822122018454cb34f09db30131b740e7158d6aa4acda70c095c9d22dc09fcb997cbb81264736f6c63430008060033",
              "opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x16EE CODESIZE SUB DUP1 PUSH3 0x16EE DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0xDF JUMP JUMPDEST DUP2 PUSH3 0x40 DUP2 PUSH3 0x8F JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP3 SWAP1 SHL AND PUSH1 0x80 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xF40FCEC21964FFB566044D083B4073F29F7F7929110EA19E1B3EBE375D89055E SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP PUSH3 0x137 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0xF3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH3 0x100 DUP2 PUSH3 0x11E JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x113 DUP2 PUSH3 0x11E JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x134 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH2 0x1584 PUSH3 0x16A PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH1 0xFB ADD MSTORE DUP2 DUP2 PUSH2 0x1FC ADD MSTORE DUP2 DUP2 PUSH2 0x327 ADD MSTORE PUSH2 0x786 ADD MSTORE PUSH2 0x1584 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 0xDF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x1B0 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1D3 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1E4 JUMPI DUP1 PUSH4 0xFC0C546A EQ PUSH2 0x1F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x184 JUMPI DUP1 PUSH4 0xAF6A9400 EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0xC2C4C5C1 EQ PUSH2 0x1A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x481C6A75 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x163 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x174 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x17C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x205C2878 EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0xF9 JUMPI DUP1 PUSH4 0x2D00DDDA EQ PUSH2 0x138 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0xF2 CALLDATASIZE PUSH1 0x4 PUSH2 0x12EF JUMP JUMPDEST PUSH2 0x21E JUMP JUMPDEST STOP JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x14B SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12F JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11B JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x3A5 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x433 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11B JUMP JUMPDEST PUSH2 0x14B PUSH2 0x1A3 CALLDATASIZE PUSH1 0x4 PUSH2 0x1354 JUMP JUMPDEST PUSH2 0x4A8 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x576 JUMP JUMPDEST PUSH2 0x1C3 PUSH2 0x1BE CALLDATASIZE PUSH1 0x4 PUSH2 0x12D4 JUMP JUMPDEST PUSH2 0x57E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12F JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11B JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x1F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x12D4 JUMP JUMPDEST PUSH2 0x5FA JUMP JUMPDEST PUSH2 0x11B PUSH32 0x0 DUP2 JUMP JUMPDEST CALLER PUSH2 0x231 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x25F JUMPI POP CALLER PUSH2 0x254 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x2D6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2DE PUSH2 0x736 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD DUP3 SWAP2 SWAP1 PUSH1 0x0 SWAP1 PUSH2 0x2FC SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH2 0x13F4 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH2 0x35E DUP3 DUP3 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9FD SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7084F5476618D8E60B11EF0D7D3F06914655ADB8793E28FF7F018D4C76D505D5 DUP3 PUSH1 0x40 MLOAD PUSH2 0x399 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x3FF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x414 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xA6D JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x446 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x49C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH2 0x4A6 PUSH1 0x0 PUSH2 0xA6D JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND LT PUSH2 0x505 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x526573657276652F73746172742D6C6573732D7468616E2D656E640000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH3 0xFFFFFF PUSH4 0x1000000 DUP3 DIV DUP2 AND SWAP2 AND PUSH1 0x0 DUP1 PUSH2 0x523 DUP4 PUSH2 0xACA JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 PUSH2 0x533 DUP6 PUSH2 0xB40 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x547 DUP5 DUP4 DUP8 DUP7 DUP12 DUP16 PUSH2 0xBB3 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x559 DUP6 DUP5 DUP9 DUP8 DUP13 DUP16 PUSH2 0xBB3 JUMP JUMPDEST SWAP1 POP PUSH2 0x565 DUP3 DUP3 PUSH2 0x1489 JUMP JUMPDEST SWAP9 POP POP POP POP POP POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4A6 PUSH2 0x736 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x593 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5E9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH2 0x5F2 DUP3 PUSH2 0xC5A JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0x60D PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x663 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x6DF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH3 0xFFFFFF PUSH4 0x1000000 DUP3 DIV DUP2 AND SWAP3 SWAP2 AND SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x7C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x7DC 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 0x800 SWAP2 SWAP1 PUSH2 0x133B JUMP JUMPDEST PUSH1 0x3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x0 DUP1 PUSH2 0x81B DUP6 PUSH2 0xACA JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP1 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP6 PUSH2 0x842 SWAP2 SWAP1 PUSH2 0x143D JUMP JUMPDEST GT ISZERO PUSH2 0x9F5 JUMPI TIMESTAMP PUSH1 0x0 PUSH2 0x855 DUP6 DUP8 PUSH2 0x13F4 JUMP JUMPDEST SWAP1 POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ PUSH2 0x94A JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x5 DUP9 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x8AC JUMPI PUSH2 0x8AC PUSH2 0x1538 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE PUSH2 0x8E2 PUSH3 0xFFFFFF DUP1 DUP10 AND SWAP1 PUSH2 0xD46 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000 AND PUSH3 0xFFFFFF SWAP3 DUP4 AND OR SWAP1 SSTORE DUP9 DUP2 AND LT ISZERO PUSH2 0x945 JUMPI PUSH2 0x926 DUP9 PUSH1 0x1 PUSH2 0x141F JUMP JUMPDEST PUSH1 0x4 PUSH1 0x3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH3 0xFFFFFF MUL NOT AND SWAP1 DUP4 PUSH3 0xFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST PUSH2 0x9AF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x5 DUP6 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x988 JUMPI PUSH2 0x988 PUSH2 0x1538 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP5 AND DUP3 MSTORE DUP8 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x21D81D5D656869E8CE3BA8D65526A2F0DBBCD3D36F5F9999EB7C84360E45ECED SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE PUSH2 0xA68 SWAP1 DUP5 SWAP1 PUSH2 0xD63 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH2 0xAF1 PUSH3 0xFFFFFF DUP1 DUP6 AND SWAP1 PUSH2 0xE48 JUMP JUMPDEST SWAP2 POP PUSH1 0x5 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xB0D JUMPI PUSH2 0xB0D PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP4 SWAP2 SWAP3 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP2 SWAP1 PUSH1 0x5 PUSH3 0xFFFFFF DUP1 DUP5 AND SWAP1 DUP2 LT PUSH2 0xB6E JUMPI PUSH2 0xB6E PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0xBAE JUMPI PUSH1 0x0 SWAP2 POP PUSH1 0x5 DUP3 PUSH2 0xB0D JUMP JUMPDEST SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0x0 TIMESTAMP PUSH3 0xFFFFFF DUP5 AND PUSH2 0xBCA JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0xC50 JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0xBEC JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0xC50 JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP9 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND GT PUSH2 0xC0C JUMPI POP POP DUP6 MLOAD PUSH2 0xC50 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xC1E PUSH1 0x5 DUP10 DUP10 DUP9 DUP11 DUP9 PUSH2 0xE70 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP5 PUSH4 0xFFFFFFFF AND DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0xC45 JUMPI MLOAD SWAP3 POP PUSH2 0xC50 SWAP2 POP POP JUMP JUMPDEST POP MLOAD SWAP2 POP PUSH2 0xC50 SWAP1 POP JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0xCE3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD5C PUSH2 0xD56 DUP5 PUSH1 0x1 PUSH2 0x143D JUMP JUMPDEST DUP4 PUSH2 0x103D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDB8 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1049 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0xA68 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0xDD6 SWAP2 SWAP1 PUSH2 0x1319 JUMP JUMPDEST PUSH2 0xA68 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0xE57 JUMPI POP PUSH1 0x0 PUSH2 0x570 JUMP JUMPDEST PUSH2 0xD5C PUSH1 0x1 PUSH2 0xE66 DUP5 DUP7 PUSH2 0x143D JUMP JUMPDEST PUSH2 0xD56 SWAP2 SWAP1 PUSH2 0x14B1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0xEBB JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0xED6 JUMP JUMPDEST PUSH1 0x1 PUSH2 0xECC PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x143D JUMP JUMPDEST PUSH2 0xED6 SWAP2 SWAP1 PUSH2 0x14B1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0xEE7 DUP4 DUP6 PUSH2 0x143D JUMP JUMPDEST PUSH2 0xEF1 SWAP2 SWAP1 PUSH2 0x1475 JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0xF03 DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0x103D JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xF1A JUMPI PUSH2 0xF1A PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0xF62 JUMPI PUSH2 0xF5A DUP3 PUSH1 0x1 PUSH2 0x143D JUMP JUMPDEST SWAP4 POP POP PUSH2 0xEDB JUMP JUMPDEST DUP12 PUSH2 0xF72 DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0xD46 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xF89 JUMPI PUSH2 0xF89 PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0xFCE SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0x1060 AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0xFF7 JUMPI POP PUSH2 0xFF7 DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0x1060 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x1003 JUMPI POP POP PUSH2 0x102F JUMP JUMPDEST DUP1 PUSH2 0x101A JUMPI PUSH2 0x1013 PUSH1 0x1 DUP5 PUSH2 0x14B1 JUMP JUMPDEST SWAP4 POP PUSH2 0x1028 JUMP JUMPDEST PUSH2 0x1025 DUP4 PUSH1 0x1 PUSH2 0x143D JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0xEDB JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD5C DUP3 DUP5 PUSH2 0x14F8 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1058 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x1131 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x108A JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x10A6 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0xD5C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x10D5 JUMPI PUSH2 0x10D0 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1455 JUMP JUMPDEST PUSH2 0x10DD JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1115 JUMPI PUSH2 0x1110 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1455 JUMP JUMPDEST PUSH2 0x111D JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x11A9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x11F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1213 SWAP2 SWAP1 PUSH2 0x1387 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1250 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1255 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1265 DUP3 DUP3 DUP7 PUSH2 0x1270 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x127F JUMPI POP DUP2 PUSH2 0xD5C JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x128F JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2CD SWAP2 SWAP1 PUSH2 0x13A3 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x5F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x5F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD5C DUP3 PUSH2 0x12A9 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1302 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x130B DUP4 PUSH2 0x12A9 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x132B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xD5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x134D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1367 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1370 DUP4 PUSH2 0x12C0 JUMP JUMPDEST SWAP2 POP PUSH2 0x137E PUSH1 0x20 DUP5 ADD PUSH2 0x12C0 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1399 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x14C8 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x13C2 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x14C8 JUMP JUMPDEST PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1416 JUMPI PUSH2 0x1416 PUSH2 0x150C JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1416 JUMPI PUSH2 0x1416 PUSH2 0x150C JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1450 JUMPI PUSH2 0x1450 PUSH2 0x150C JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1416 JUMPI PUSH2 0x1416 PUSH2 0x150C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1484 JUMPI PUSH2 0x1484 PUSH2 0x1522 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x14A9 JUMPI PUSH2 0x14A9 PUSH2 0x150C JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x14C3 JUMPI PUSH2 0x14C3 PUSH2 0x150C JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x14E3 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x14CB JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x14F2 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1507 JUMPI PUSH2 0x1507 PUSH2 0x1522 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 XOR GASLIMIT 0x4C 0xB3 0x4F MULMOD 0xDB ADDRESS SGT SHL PUSH21 0xE7158D6AA4ACDA70C095C9D22DC09FCB997CBB812 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1299:8854:35:-:0;;;2105:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2156:6;1648:24:22;2156:6:35;1648:9:22;:24::i;:::-;-1:-1:-1;;;;;;;2174:14:35::1;::::0;;;;::::1;::::0;2203:16:::1;::::0;-1:-1:-1;;;;;2174:14:35;::::1;::::0;2203:16:::1;::::0;;;::::1;2105:121:::0;;1299:8854;;3470:174:22;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;;;;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:399:84:-;107:6;115;168:2;156:9;147:7;143:23;139:32;136:2;;;184:1;181;174:12;136:2;216:9;210:16;235:31;260:5;235:31;:::i;:::-;335:2;320:18;;314:25;285:5;;-1:-1:-1;348:33:84;314:25;348:33;:::i;:::-;400:7;390:17;;;126:287;;;;;:::o;418:131::-;-1:-1:-1;;;;;493:31:84;;483:42;;473:2;;539:1;536;529:12;473:2;463:86;:::o;:::-;1299:8854:35;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_callOptionalReturn_1116": {
                  "entryPoint": 3427,
                  "id": 1116,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_checkpoint_9874": {
                  "entryPoint": 1846,
                  "id": 9874,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_getNewestObservation_9941": {
                  "entryPoint": 2762,
                  "id": 9941,
                  "parameterSlots": 1,
                  "returnSlots": 2
                },
                "@_getOldestObservation_9912": {
                  "entryPoint": 2880,
                  "id": 9912,
                  "parameterSlots": 1,
                  "returnSlots": 2
                },
                "@_getReserveAccumulatedAt_9759": {
                  "entryPoint": 2995,
                  "id": 9759,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "@_setManager_3896": {
                  "entryPoint": 3162,
                  "id": 3896,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_4058": {
                  "entryPoint": 2669,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@binarySearch_12591": {
                  "entryPoint": 3696,
                  "id": 12591,
                  "parameterSlots": 6,
                  "returnSlots": 2
                },
                "@checkpoint_9560": {
                  "entryPoint": 1398,
                  "id": 9560,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@claimOwnership_4038": {
                  "entryPoint": 933,
                  "id": 4038,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@functionCallWithValue_2255": {
                  "entryPoint": 4401,
                  "id": 2255,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_2185": {
                  "entryPoint": 4169,
                  "id": 2185,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getReserveAccumulatedBetween_9642": {
                  "entryPoint": 1192,
                  "id": 9642,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getToken_9571": {
                  "entryPoint": null,
                  "id": 9571,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_2114": {
                  "entryPoint": null,
                  "id": 2114,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@lte_12705": {
                  "entryPoint": 4192,
                  "id": 12705,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@manager_3850": {
                  "entryPoint": null,
                  "id": 3850,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@newestIndex_12830": {
                  "entryPoint": 3656,
                  "id": 12830,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nextIndex_12848": {
                  "entryPoint": 3398,
                  "id": 12848,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@owner_3970": {
                  "entryPoint": null,
                  "id": 3970,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3979": {
                  "entryPoint": null,
                  "id": 3979,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3993": {
                  "entryPoint": 1075,
                  "id": 3993,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeTransfer_924": {
                  "entryPoint": 2557,
                  "id": 924,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setManager_3865": {
                  "entryPoint": 1406,
                  "id": 3865,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@token_9507": {
                  "entryPoint": null,
                  "id": 9507,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_4020": {
                  "entryPoint": 1530,
                  "id": 4020,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_2390": {
                  "entryPoint": 4720,
                  "id": 2390,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@withdrawAccumulator_9510": {
                  "entryPoint": null,
                  "id": 9510,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@withdrawTo_9676": {
                  "entryPoint": 542,
                  "id": 9676,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@wrap_12781": {
                  "entryPoint": 4157,
                  "id": 12781,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_address": {
                  "entryPoint": 4777,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 4820,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 4847,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 4889,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 4923,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32t_uint32": {
                  "entryPoint": 4948,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_uint32": {
                  "entryPoint": 4800,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 4999,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IERC20_$663__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5027,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4d84b71e55d064d66bafac0d640c9a3219796f833676f31bba05b3cc08ac0349__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint224__to_t_uint224__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint224_t_uint224__to_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint224": {
                  "entryPoint": 5108,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint24": {
                  "entryPoint": 5151,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 5181,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint40": {
                  "entryPoint": 5205,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 5237,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint224": {
                  "entryPoint": 5257,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 5297,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 5320,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "mod_t_uint256": {
                  "entryPoint": 5368,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 5388,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x12": {
                  "entryPoint": 5410,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 5432,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:9855:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "263:115:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "273:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "295:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "282:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "282:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "273:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "356:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "365:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "368:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "358:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "358:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "358:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "324:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "335:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "342:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "331:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "331:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "321:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "321:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "314:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "314:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "311:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "242:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "253:5:84",
                            "type": ""
                          }
                        ],
                        "src": "215:163:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "453:116:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "499:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "508:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "511:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "501:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "501:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "501:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "474:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "483:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "470:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "470:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "495:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "466:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "466:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "463:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "524:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "553:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "534:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "534:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "524:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "419:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "430:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "442:6:84",
                            "type": ""
                          }
                        ],
                        "src": "383:186:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "661:167:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "707:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "716:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "719:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "709:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "709:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "709:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "682:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "691:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "678:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "678:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "703:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "674:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "674:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "671:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "732:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "761:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "742:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "742:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "732:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "780:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "807:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "818:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "803:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "803:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "790:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "790:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "780:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "619:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "630:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "642:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "650:6:84",
                            "type": ""
                          }
                        ],
                        "src": "574:254:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "911:199:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "957:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "966:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "969:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "959:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "959:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "959:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "932:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "941:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "928:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "928:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "953:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "924:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "924:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "921:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "982:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1001:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "995:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "995:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "986:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1064:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1073:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1076:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1066:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1066:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1066:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1033:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1054:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "1047:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1047:13:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1040:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1040:21:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1030:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1030:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1023:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1023:40:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1020:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1089:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1099:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1089:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "877:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "888:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "900:6:84",
                            "type": ""
                          }
                        ],
                        "src": "833:277:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1196:103:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1242:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1251:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1254:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1244:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1244:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1244:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1217:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1226:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1213:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1213:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1238:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1209:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1209:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1206:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1267:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1283:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1277:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1277:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1267:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1162:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1173:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1185:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1115:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1389:171:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1435:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1444:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1447:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1437:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1437:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1437:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1410:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1419:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1406:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1406:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1431:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1402:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1402:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1399:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1460:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1488:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1470:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1470:28:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1460:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1507:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1539:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1550:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1535:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1535:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1517:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1517:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1507:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1347:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1358:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1370:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1378:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1304:256:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1702:137:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1712:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1732:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1726:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1726:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1716:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "1774:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1782:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1770:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1770:17:84"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1789:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1794:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1748:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1748:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1748:53:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1810:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1821:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1826:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1817:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1817:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1810:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "1678:3:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1683:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1694:3:84",
                            "type": ""
                          }
                        ],
                        "src": "1565:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1945:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1955:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1967:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1978:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1963:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1963:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1955:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1997:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2012:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2020:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2008:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2008:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1990:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1990:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1990:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1914:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1925:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1936:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1844:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2204:168:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2214:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2226:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2237:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2222:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2222:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2214:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2256:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2271:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2279:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2267:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2267:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2249:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2249:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2249:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2343:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2354:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2339:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2339:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2359:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2332:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2332:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2332:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2165:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2176:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2184:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2195:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2075:297:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2472:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2482:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2494:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2505:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2490:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2490:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2482:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2524:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "2549:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "2542:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2542:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "2535:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2535:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2517:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2517:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2517:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2441:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2452:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2463:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2377:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2684:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2694:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2706:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2717:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2702:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2702:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2694:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2736:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2751:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2759:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2747:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2747:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2729:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2729:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2729:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IERC20_$663__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2653:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2664:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2675:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2569:240:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2935:321:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2952:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2963:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2945:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2945:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2945:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2975:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2995:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2989:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2989:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "2979:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3022:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3033:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3018:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3018:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3038:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3011:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3011:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3011:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3080:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3088:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3076:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3076:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3097:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3108:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3093:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3093:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3113:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3054:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3054:66:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3054:66:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3129:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3145:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "3164:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3172:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3160:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3160:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3177:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "3156:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3156:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3141:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3141:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3247:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3137:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3137:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3129:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2904:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2915:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2926:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2814:442:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3435:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3452:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3463:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3445:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3445:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3445:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3486:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3497:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3482:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3482:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3502:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3475:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3475:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3475:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3525:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3536:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3521:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3521:18:84"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3541:34:84",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3514:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3514:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3514:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3596:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3607:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3592:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3592:18:84"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3612:5:84",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3585:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3585:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3585:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3627:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3639:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3650:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3635:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3635:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3627:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3412:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3426:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3261:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3839:177:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3856:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3867:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3849:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3849:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3849:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3890:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3901:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3886:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3886:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3906:2:84",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3879:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3879:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3879:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3929:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3940:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3925:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3925:18:84"
                                  },
                                  {
                                    "hexValue": "526573657276652f73746172742d6c6573732d7468616e2d656e64",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3945:29:84",
                                    "type": "",
                                    "value": "Reserve/start-less-than-end"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3918:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3918:57:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3918:57:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3984:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3996:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4007:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3992:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3992:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3984:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4d84b71e55d064d66bafac0d640c9a3219796f833676f31bba05b3cc08ac0349__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3816:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3830:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3665:351:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4195:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4212:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4223:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4205:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4205:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4205:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4246:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4257:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4242:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4242:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4262:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4235:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4235:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4235:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4285:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4296:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4281:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4281:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4301:34:84",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4274:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4274:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4274:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4356:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4367:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4352:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4352:18:84"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4372:8:84",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4345:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4345:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4345:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4390:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4402:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4413:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4398:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4398:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4390:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4172:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4186:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4021:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4602:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4619:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4630:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4612:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4612:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4612:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4653:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4664:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4649:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4649:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4669:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4642:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4642:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4642:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4692:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4703:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4688:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4688:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4708:26:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4681:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4681:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4681:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4744:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4756:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4767:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4752:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4752:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4744:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4579:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4593:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4428:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4955:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4972:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4983:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4965:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4965:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4965:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5006:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5017:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5002:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5002:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5022:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4995:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4995:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4995:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5045:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5056:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5041:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5041:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5061:33:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5034:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5034:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5034:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5104:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5116:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5127:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5112:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5112:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5104:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4932:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4946:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4781:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5315:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5332:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5343:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5325:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5325:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5325:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5366:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5377:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5362:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5362:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5382:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5355:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5355:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5355:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5405:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5416:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5401:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5401:18:84"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5421:34:84",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5394:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5394:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5394:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5476:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5487:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5472:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5472:18:84"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5492:8:84",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5465:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5465:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5465:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5510:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5522:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5533:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5518:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5518:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5510:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5292:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5306:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5141:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5722:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5739:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5750:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5732:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5732:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5732:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5773:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5784:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5769:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5769:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5789:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5762:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5762:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5762:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5812:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5823:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5808:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5808:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5828:31:84",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5801:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5801:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5801:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5869:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5881:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5892:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5877:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5877:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5869:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5699:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5713:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5548:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6080:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6097:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6108:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6090:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6090:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6090:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6131:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6142:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6127:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6127:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6147:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6120:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6120:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6120:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6170:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6181:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6166:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6166:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6186:34:84",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6159:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6159:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6159:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6241:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6252:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6237:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6237:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6257:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6230:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6230:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6230:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6274:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6286:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6297:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6282:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6282:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6274:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6057:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6071:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5906:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6486:232:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6503:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6514:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6496:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6496:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6496:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6537:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6548:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6533:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6533:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6553:2:84",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6526:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6526:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6526:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6576:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6587:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6572:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6572:18:84"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6592:34:84",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6565:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6565:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6565:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6647:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6658:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6643:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6643:18:84"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6663:12:84",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6636:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6636:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6636:40:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6685:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6697:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6708:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6693:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6693:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6685:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6463:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6477:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6312:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6824:141:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6834:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6846:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6857:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6842:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6842:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6834:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6876:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6891:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6899:58:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6887:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6887:71:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6869:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6869:90:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6869:90:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint224__to_t_uint224__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6793:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6804:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6815:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6723:242:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7099:214:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7109:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7121:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7132:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7117:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7117:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7109:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7144:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7154:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7148:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7228:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7243:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7251:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7239:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7239:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7221:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7221:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7221:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7275:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7286:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7271:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7271:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7295:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7303:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7291:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7291:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7264:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7264:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7264:43:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint224_t_uint224__to_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7060:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7071:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7079:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7090:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6970:343:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7419:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7429:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7441:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7452:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7437:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7437:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7429:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7471:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7482:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7464:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7464:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7464:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7388:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7399:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7410:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7318:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7548:229:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7558:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7568:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7562:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7635:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7650:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7653:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7646:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7646:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7639:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7665:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7680:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7683:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7676:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7676:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7669:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7720:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7722:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7722:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7722:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7701:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7710:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7714:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7706:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7706:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7698:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7698:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7695:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7751:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7762:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7767:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7758:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7758:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7751:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7531:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7534:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7540:3:84",
                            "type": ""
                          }
                        ],
                        "src": "7500:277:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7829:179:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7839:18:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7849:8:84",
                                "type": "",
                                "value": "0xffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7843:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7866:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7881:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7884:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7877:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7877:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7870:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7896:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7911:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7914:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7907:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7907:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7900:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7951:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7953:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7953:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7953:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7932:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7941:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7945:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7937:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7937:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7929:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7929:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7926:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7982:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7993:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7998:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7989:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7989:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7982:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint24",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7812:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7815:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7821:3:84",
                            "type": ""
                          }
                        ],
                        "src": "7782:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8061:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8088:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8090:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8090:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8090:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8077:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "8084:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "8080:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8080:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8074:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8074:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8071:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8119:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8130:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8133:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8126:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8126:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8119:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8044:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8047:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8053:3:84",
                            "type": ""
                          }
                        ],
                        "src": "8013:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8193:183:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8203:22:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8213:12:84",
                                "type": "",
                                "value": "0xffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8207:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8234:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8249:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8252:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8245:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8245:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8238:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8264:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8279:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8282:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8275:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8275:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8268:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8319:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8321:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8321:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8321:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8300:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8309:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8313:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "8305:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8305:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8297:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8297:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8294:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8350:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8361:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8366:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8357:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8357:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8350:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint40",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8176:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8179:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8185:3:84",
                            "type": ""
                          }
                        ],
                        "src": "8146:230:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8427:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8450:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "8452:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8452:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8452:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8447:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8440:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8440:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8437:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8481:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8490:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8493:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "8486:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8486:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "8481:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8412:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8415:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "8421:1:84",
                            "type": ""
                          }
                        ],
                        "src": "8381:120:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8555:221:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8565:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8575:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8569:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8642:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8657:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8660:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8653:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8653:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8646:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8672:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8687:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8690:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8683:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8683:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8676:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8718:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8720:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8720:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8720:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8708:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8713:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8705:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8705:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8702:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8749:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8761:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8766:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8757:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8757:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8749:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8537:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8540:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "8546:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8506:270:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8830:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8852:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8854:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8854:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8854:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8846:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8849:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8843:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8843:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8840:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8883:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8895:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8898:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8891:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8891:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8883:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8812:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8815:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "8821:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8781:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8964:205:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8974:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8983:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "8978:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9043:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "9068:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "9073:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "9064:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9064:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9087:3:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9092:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "9083:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "9083:11:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "9077:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9077:18:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9057:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9057:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9057:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "9004:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9007:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9001:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9001:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "9015:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9017:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "9026:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9029:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9022:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9022:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "9017:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "8997:3:84",
                                "statements": []
                              },
                              "src": "8993:113:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9132:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "9145:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "9150:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "9141:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9141:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9159:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9134:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9134:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9134:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "9121:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9124:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9118:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9118:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9115:2:84"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "8942:3:84",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "8947:3:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "8952:6:84",
                            "type": ""
                          }
                        ],
                        "src": "8911:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9212:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9235:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "9237:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9237:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9237:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9232:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "9225:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9225:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9222:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9266:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9275:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9278:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "9271:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9271:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "9266:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9197:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9200:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "9206:1:84",
                            "type": ""
                          }
                        ],
                        "src": "9174:112:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9323:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9340:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9343:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9333:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9333:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9333:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9437:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9440:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9430:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9430:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9430:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9461:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9464:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9454:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9454:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9454:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9291:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9512:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9529:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9532:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9522:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9522:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9522:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9626:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9629:4:84",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9619:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9619:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9619:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9650:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9653:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9643:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9643:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9643:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9480:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9701:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9718:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9721:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9711:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9711:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9711:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9815:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9818:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9808:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9808:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9808:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9839:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9842:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9832:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9832:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9832:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9669:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_decode_tuple_t_uint32t_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint32(headStart)\n        value1 := abi_decode_uint32(add(headStart, 32))\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IERC20_$663__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4d84b71e55d064d66bafac0d640c9a3219796f833676f31bba05b3cc08ac0349__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 27)\n        mstore(add(headStart, 64), \"Reserve/start-less-than-end\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Address: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r call\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"Address: call to non-contract\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"SafeERC20: ERC20 operation did n\")\n        mstore(add(headStart, 96), \"ot succeed\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint224__to_t_uint224__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint224_t_uint224__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function checked_add_t_uint224(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint24(x, y) -> sum\n    {\n        let _1 := 0xffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint40(x, y) -> sum\n    {\n        let _1 := 0xffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function checked_sub_t_uint224(x, y) -> diff\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\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) { mstore(add(dst, length), 0) }\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "9507": [
                  {
                    "length": 32,
                    "start": 251
                  },
                  {
                    "length": 32,
                    "start": 508
                  },
                  {
                    "length": 32,
                    "start": 807
                  },
                  {
                    "length": 32,
                    "start": 1926
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100df5760003560e01c80638da5cb5b1161008c578063d0ebdbe711610066578063d0ebdbe7146101b0578063e30c3978146101d3578063f2fde38b146101e4578063fc0c546a146101f757600080fd5b80638da5cb5b14610184578063af6a940014610195578063c2c4c5c1146101a857600080fd5b8063481c6a75116100bd578063481c6a75146101635780634e71e0c814610174578063715018a61461017c57600080fd5b8063205c2878146100e457806321df0da7146100f95780632d00ddda14610138575b600080fd5b6100f76100f23660046112ef565b61021e565b005b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b60035461014b906001600160e01b031681565b6040516001600160e01b03909116815260200161012f565b6002546001600160a01b031661011b565b6100f76103a5565b6100f7610433565b6000546001600160a01b031661011b565b61014b6101a3366004611354565b6104a8565b6100f7610576565b6101c36101be3660046112d4565b61057e565b604051901515815260200161012f565b6001546001600160a01b031661011b565b6100f76101f23660046112d4565b6105fa565b61011b7f000000000000000000000000000000000000000000000000000000000000000081565b336102316002546001600160a01b031690565b6001600160a01b0316148061025f5750336102546000546001600160a01b031690565b6001600160a01b0316145b6102d65760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6102de610736565b600380548291906000906102fc9084906001600160e01b03166113f4565b92506101000a8154816001600160e01b0302191690836001600160e01b0316021790555061035e82827f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166109fd9092919063ffffffff16565b816001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d58260405161039991815260200190565b60405180910390a25050565b6001546001600160a01b031633146103ff5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016102cd565b600154610414906001600160a01b0316610a6d565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336104466000546001600160a01b031690565b6001600160a01b03161461049c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6104a66000610a6d565b565b60008163ffffffff168363ffffffff16106105055760405162461bcd60e51b815260206004820152601b60248201527f526573657276652f73746172742d6c6573732d7468616e2d656e64000000000060448201526064016102cd565b60045462ffffff630100000082048116911660008061052383610aca565b9150915060008061053385610b40565b915091506000610547848387868b8f610bb3565b90506000610559858488878c8f610bb3565b90506105658282611489565b985050505050505050505b92915050565b6104a6610736565b6000336105936000546001600160a01b031690565b6001600160a01b0316146105e95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6105f282610c5a565b90505b919050565b3361060d6000546001600160a01b031690565b6001600160a01b0316146106635760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6001600160a01b0381166106df5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016102cd565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600480546040517f70a08231000000000000000000000000000000000000000000000000000000008152309281019290925262ffffff630100000082048116929116906000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b1580156107c857600080fd5b505afa1580156107dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610800919061133b565b6003549091506001600160e01b031660008061081b85610aca565b9150915080600001516001600160e01b0316836001600160e01b031685610842919061143d565b11156109f55742600061085585876113f4565b90508163ffffffff16836020015163ffffffff161461094a576040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058862ffffff1662ffffff81106108ac576108ac611538565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556108e262ffffff80891690610d46565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000001662ffffff92831617905588811610156109455761092688600161141f565b600460036101000a81548162ffffff021916908362ffffff1602179055505b6109af565b6040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058562ffffff1662ffffff811061098857610988611538565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101555b604080516001600160e01b038084168252871660208201527f21d81d5d656869e8ce3ba8d65526a2f0dbbcd3d36f5f9999eb7c84360e45eced910160405180910390a150505b505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b03167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610a68908490610d63565b505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805180820190915260008082526020820181905290610af162ffffff80851690610e48565b915060058262ffffff1662ffffff8110610b0d57610b0d611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919391925050565b60408051808201909152600080825260208201528190600562ffffff808416908110610b6e57610b6e611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201819052909150610bae5760009150600582610b0d565b915091565b60004262ffffff8416610bca576000915050610c50565b8263ffffffff16876020015163ffffffff161115610bec576000915050610c50565b8263ffffffff16886020015163ffffffff1611610c0c5750508551610c50565b600080610c1e60058989888a88610e70565b915091508463ffffffff16816020015163ffffffff161415610c4557519250610c50915050565b50519150610c509050565b9695505050505050565b6002546000906001600160a01b03908116908316811415610ce35760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016102cd565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b6000610d5c610d5684600161143d565b8361103d565b9392505050565b6000610db8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166110499092919063ffffffff16565b805190915015610a685780806020019051810190610dd69190611319565b610a685760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016102cd565b600081610e5757506000610570565b610d5c6001610e66848661143d565b610d5691906114b1565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff1610610ebb578862ffffff16610ed6565b6001610ecc62ffffff88168461143d565b610ed691906114b1565b905060005b6002610ee7838561143d565b610ef19190611475565b90508a610f03828962ffffff1661103d565b62ffffff1662ffffff8110610f1a57610f1a611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290955080610f6257610f5a82600161143d565b935050610edb565b8b610f72838a62ffffff16610d46565b62ffffff1662ffffff8110610f8957610f89611538565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b90910481166020830152909550600090610fce90838116908c908b9061106016565b9050808015610ff75750610ff78660200151898c63ffffffff166110609092919063ffffffff16565b1561100357505061102f565b8061101a576110136001846114b1565b9350611028565b61102583600161143d565b94505b5050610edb565b505050965096945050505050565b6000610d5c82846114f8565b60606110588484600085611131565b949350505050565b60008163ffffffff168463ffffffff161115801561108a57508163ffffffff168363ffffffff1611155b156110a6578263ffffffff168463ffffffff1611159050610d5c565b60008263ffffffff168563ffffffff16116110d5576110d063ffffffff8616640100000000611455565b6110dd565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116111155761111063ffffffff8616640100000000611455565b61111d565b8463ffffffff165b64ffffffffff169091111595945050505050565b6060824710156111a95760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016102cd565b843b6111f75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102cd565b600080866001600160a01b031685876040516112139190611387565b60006040518083038185875af1925050503d8060008114611250576040519150601f19603f3d011682016040523d82523d6000602084013e611255565b606091505b5091509150611265828286611270565b979650505050505050565b6060831561127f575081610d5c565b82511561128f5782518084602001fd5b8160405162461bcd60e51b81526004016102cd91906113a3565b80356001600160a01b03811681146105f557600080fd5b803563ffffffff811681146105f557600080fd5b6000602082840312156112e657600080fd5b610d5c826112a9565b6000806040838503121561130257600080fd5b61130b836112a9565b946020939093013593505050565b60006020828403121561132b57600080fd5b81518015158114610d5c57600080fd5b60006020828403121561134d57600080fd5b5051919050565b6000806040838503121561136757600080fd5b611370836112c0565b915061137e602084016112c0565b90509250929050565b600082516113998184602087016114c8565b9190910192915050565b60208152600082518060208401526113c28160408501602087016114c8565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60006001600160e01b038083168185168083038211156114165761141661150c565b01949350505050565b600062ffffff8083168185168083038211156114165761141661150c565b600082198211156114505761145061150c565b500190565b600064ffffffffff8083168185168083038211156114165761141661150c565b60008261148457611484611522565b500490565b60006001600160e01b03838116908316818110156114a9576114a961150c565b039392505050565b6000828210156114c3576114c361150c565b500390565b60005b838110156114e35781810151838201526020016114cb565b838111156114f2576000848401525b50505050565b60008261150757611507611522565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fdfea264697066735822122018454cb34f09db30131b740e7158d6aa4acda70c095c9d22dc09fcb997cbb81264736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xDF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x1B0 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1D3 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1E4 JUMPI DUP1 PUSH4 0xFC0C546A EQ PUSH2 0x1F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x184 JUMPI DUP1 PUSH4 0xAF6A9400 EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0xC2C4C5C1 EQ PUSH2 0x1A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x481C6A75 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x163 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x174 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x17C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x205C2878 EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0xF9 JUMPI DUP1 PUSH4 0x2D00DDDA EQ PUSH2 0x138 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0xF2 CALLDATASIZE PUSH1 0x4 PUSH2 0x12EF JUMP JUMPDEST PUSH2 0x21E JUMP JUMPDEST STOP JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x14B SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12F JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11B JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x3A5 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x433 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11B JUMP JUMPDEST PUSH2 0x14B PUSH2 0x1A3 CALLDATASIZE PUSH1 0x4 PUSH2 0x1354 JUMP JUMPDEST PUSH2 0x4A8 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x576 JUMP JUMPDEST PUSH2 0x1C3 PUSH2 0x1BE CALLDATASIZE PUSH1 0x4 PUSH2 0x12D4 JUMP JUMPDEST PUSH2 0x57E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12F JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11B JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x1F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x12D4 JUMP JUMPDEST PUSH2 0x5FA JUMP JUMPDEST PUSH2 0x11B PUSH32 0x0 DUP2 JUMP JUMPDEST CALLER PUSH2 0x231 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x25F JUMPI POP CALLER PUSH2 0x254 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x2D6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2DE PUSH2 0x736 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD DUP3 SWAP2 SWAP1 PUSH1 0x0 SWAP1 PUSH2 0x2FC SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH2 0x13F4 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH2 0x35E DUP3 DUP3 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9FD SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7084F5476618D8E60B11EF0D7D3F06914655ADB8793E28FF7F018D4C76D505D5 DUP3 PUSH1 0x40 MLOAD PUSH2 0x399 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x3FF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x414 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xA6D JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x446 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x49C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH2 0x4A6 PUSH1 0x0 PUSH2 0xA6D JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND LT PUSH2 0x505 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x526573657276652F73746172742D6C6573732D7468616E2D656E640000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH3 0xFFFFFF PUSH4 0x1000000 DUP3 DIV DUP2 AND SWAP2 AND PUSH1 0x0 DUP1 PUSH2 0x523 DUP4 PUSH2 0xACA JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 PUSH2 0x533 DUP6 PUSH2 0xB40 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x547 DUP5 DUP4 DUP8 DUP7 DUP12 DUP16 PUSH2 0xBB3 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x559 DUP6 DUP5 DUP9 DUP8 DUP13 DUP16 PUSH2 0xBB3 JUMP JUMPDEST SWAP1 POP PUSH2 0x565 DUP3 DUP3 PUSH2 0x1489 JUMP JUMPDEST SWAP9 POP POP POP POP POP POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4A6 PUSH2 0x736 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x593 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5E9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH2 0x5F2 DUP3 PUSH2 0xC5A JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0x60D PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x663 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x6DF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH3 0xFFFFFF PUSH4 0x1000000 DUP3 DIV DUP2 AND SWAP3 SWAP2 AND SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x7C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x7DC 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 0x800 SWAP2 SWAP1 PUSH2 0x133B JUMP JUMPDEST PUSH1 0x3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x0 DUP1 PUSH2 0x81B DUP6 PUSH2 0xACA JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP1 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP6 PUSH2 0x842 SWAP2 SWAP1 PUSH2 0x143D JUMP JUMPDEST GT ISZERO PUSH2 0x9F5 JUMPI TIMESTAMP PUSH1 0x0 PUSH2 0x855 DUP6 DUP8 PUSH2 0x13F4 JUMP JUMPDEST SWAP1 POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ PUSH2 0x94A JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x5 DUP9 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x8AC JUMPI PUSH2 0x8AC PUSH2 0x1538 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE PUSH2 0x8E2 PUSH3 0xFFFFFF DUP1 DUP10 AND SWAP1 PUSH2 0xD46 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000 AND PUSH3 0xFFFFFF SWAP3 DUP4 AND OR SWAP1 SSTORE DUP9 DUP2 AND LT ISZERO PUSH2 0x945 JUMPI PUSH2 0x926 DUP9 PUSH1 0x1 PUSH2 0x141F JUMP JUMPDEST PUSH1 0x4 PUSH1 0x3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH3 0xFFFFFF MUL NOT AND SWAP1 DUP4 PUSH3 0xFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST PUSH2 0x9AF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x5 DUP6 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x988 JUMPI PUSH2 0x988 PUSH2 0x1538 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP5 AND DUP3 MSTORE DUP8 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x21D81D5D656869E8CE3BA8D65526A2F0DBBCD3D36F5F9999EB7C84360E45ECED SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE PUSH2 0xA68 SWAP1 DUP5 SWAP1 PUSH2 0xD63 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH2 0xAF1 PUSH3 0xFFFFFF DUP1 DUP6 AND SWAP1 PUSH2 0xE48 JUMP JUMPDEST SWAP2 POP PUSH1 0x5 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xB0D JUMPI PUSH2 0xB0D PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP4 SWAP2 SWAP3 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP2 SWAP1 PUSH1 0x5 PUSH3 0xFFFFFF DUP1 DUP5 AND SWAP1 DUP2 LT PUSH2 0xB6E JUMPI PUSH2 0xB6E PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0xBAE JUMPI PUSH1 0x0 SWAP2 POP PUSH1 0x5 DUP3 PUSH2 0xB0D JUMP JUMPDEST SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0x0 TIMESTAMP PUSH3 0xFFFFFF DUP5 AND PUSH2 0xBCA JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0xC50 JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0xBEC JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0xC50 JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP9 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND GT PUSH2 0xC0C JUMPI POP POP DUP6 MLOAD PUSH2 0xC50 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xC1E PUSH1 0x5 DUP10 DUP10 DUP9 DUP11 DUP9 PUSH2 0xE70 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP5 PUSH4 0xFFFFFFFF AND DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0xC45 JUMPI MLOAD SWAP3 POP PUSH2 0xC50 SWAP2 POP POP JUMP JUMPDEST POP MLOAD SWAP2 POP PUSH2 0xC50 SWAP1 POP JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0xCE3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD5C PUSH2 0xD56 DUP5 PUSH1 0x1 PUSH2 0x143D JUMP JUMPDEST DUP4 PUSH2 0x103D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDB8 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1049 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0xA68 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0xDD6 SWAP2 SWAP1 PUSH2 0x1319 JUMP JUMPDEST PUSH2 0xA68 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0xE57 JUMPI POP PUSH1 0x0 PUSH2 0x570 JUMP JUMPDEST PUSH2 0xD5C PUSH1 0x1 PUSH2 0xE66 DUP5 DUP7 PUSH2 0x143D JUMP JUMPDEST PUSH2 0xD56 SWAP2 SWAP1 PUSH2 0x14B1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0xEBB JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0xED6 JUMP JUMPDEST PUSH1 0x1 PUSH2 0xECC PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x143D JUMP JUMPDEST PUSH2 0xED6 SWAP2 SWAP1 PUSH2 0x14B1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0xEE7 DUP4 DUP6 PUSH2 0x143D JUMP JUMPDEST PUSH2 0xEF1 SWAP2 SWAP1 PUSH2 0x1475 JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0xF03 DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0x103D JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xF1A JUMPI PUSH2 0xF1A PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0xF62 JUMPI PUSH2 0xF5A DUP3 PUSH1 0x1 PUSH2 0x143D JUMP JUMPDEST SWAP4 POP POP PUSH2 0xEDB JUMP JUMPDEST DUP12 PUSH2 0xF72 DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0xD46 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xF89 JUMPI PUSH2 0xF89 PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0xFCE SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0x1060 AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0xFF7 JUMPI POP PUSH2 0xFF7 DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0x1060 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x1003 JUMPI POP POP PUSH2 0x102F JUMP JUMPDEST DUP1 PUSH2 0x101A JUMPI PUSH2 0x1013 PUSH1 0x1 DUP5 PUSH2 0x14B1 JUMP JUMPDEST SWAP4 POP PUSH2 0x1028 JUMP JUMPDEST PUSH2 0x1025 DUP4 PUSH1 0x1 PUSH2 0x143D JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0xEDB JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD5C DUP3 DUP5 PUSH2 0x14F8 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1058 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x1131 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x108A JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x10A6 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0xD5C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x10D5 JUMPI PUSH2 0x10D0 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1455 JUMP JUMPDEST PUSH2 0x10DD JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1115 JUMPI PUSH2 0x1110 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1455 JUMP JUMPDEST PUSH2 0x111D JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x11A9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x11F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1213 SWAP2 SWAP1 PUSH2 0x1387 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1250 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1255 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1265 DUP3 DUP3 DUP7 PUSH2 0x1270 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x127F JUMPI POP DUP2 PUSH2 0xD5C JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x128F JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2CD SWAP2 SWAP1 PUSH2 0x13A3 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x5F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x5F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD5C DUP3 PUSH2 0x12A9 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1302 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x130B DUP4 PUSH2 0x12A9 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x132B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xD5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x134D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1367 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1370 DUP4 PUSH2 0x12C0 JUMP JUMPDEST SWAP2 POP PUSH2 0x137E PUSH1 0x20 DUP5 ADD PUSH2 0x12C0 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1399 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x14C8 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x13C2 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x14C8 JUMP JUMPDEST PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1416 JUMPI PUSH2 0x1416 PUSH2 0x150C JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1416 JUMPI PUSH2 0x1416 PUSH2 0x150C JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1450 JUMPI PUSH2 0x1450 PUSH2 0x150C JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1416 JUMPI PUSH2 0x1416 PUSH2 0x150C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1484 JUMPI PUSH2 0x1484 PUSH2 0x1522 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x14A9 JUMPI PUSH2 0x14A9 PUSH2 0x150C JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x14C3 JUMPI PUSH2 0x14C3 PUSH2 0x150C JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x14E3 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x14CB JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x14F2 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1507 JUMPI PUSH2 0x1507 PUSH2 0x1522 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 XOR GASLIMIT 0x4C 0xB3 0x4F MULMOD 0xDB ADDRESS SGT SHL PUSH21 0xE7158D6AA4ACDA70C095C9D22DC09FCB997CBB812 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1299:8854:35:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3648:278;;;;;;:::i;:::-;;:::i;:::-;;2422:89;2499:5;2422:89;;;-1:-1:-1;;;;;2008:55:84;;;1990:74;;1978:2;1963:18;2422:89:35;;;;;;;;1494:34;;;;;-1:-1:-1;;;;;1494:34:35;;;;;;-1:-1:-1;;;;;6887:71:84;;;6869:90;;6857:2;6842:18;1494:34:35;6824:141:84;1403:89:21;1477:8;;-1:-1:-1;;;;;1477:8:21;1403:89;;3147:129:22;;;:::i;2508:94::-;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:22;1814:85;;2546:1067:35;;;;;;:::i;:::-;;:::i;2317:70::-;;;:::i;1744:123:21:-;;;;;;:::i;:::-;;:::i;:::-;;;2542:14:84;;2535:22;2517:41;;2505:2;2490:18;1744:123:21;2472:92:84;2014:101:22;2095:13;;-1:-1:-1;;;;;2095:13:22;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;1407:29:35:-;;;;;3648:278;2861:10:21;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:21;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:21;;:48;;;-1:-1:-1;2886:10:21;2875:7;1860::22;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;2875:7:21;-1:-1:-1;;;;;2875:21:21;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:21;;5343:2:84;2840:99:21;;;5325:21:84;5382:2;5362:18;;;5355:30;5421:34;5401:18;;;5394:62;5492:8;5472:18;;;5465:36;5518:19;;2840:99:21;;;;;;;;;3752:13:35::1;:11;:13::i;:::-;3776:19;:39:::0;;3807:7;;3776:19;::::1;::::0;:39:::1;::::0;3807:7;;-1:-1:-1;;;;;3776:39:35::1;;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;3776:39:35::1;;;;;-1:-1:-1::0;;;;;3776:39:35::1;;;;;;3834;3853:10;3865:7;3834:5;-1:-1:-1::0;;;;;3834:18:35::1;;;:39;;;;;:::i;:::-;3899:10;-1:-1:-1::0;;;;;3889:30:35::1;;3911:7;3889:30;;;;7464:25:84::0;;7452:2;7437:18;;7419:76;3889:30:35::1;;;;;;;;3648:278:::0;;:::o;3147:129:22:-;4050:13;;-1:-1:-1;;;;;4050:13:22;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:22;;4983:2:84;4028:71:22;;;4965:21:84;5022:2;5002:18;;;4995:30;5061:33;5041:18;;;5034:61;5112:18;;4028:71:22;4955:181:84;4028:71:22;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:22::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:22::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;4630:2:84;3819:58:22;;;4612:21:84;4669:2;4649:18;;;4642:30;4708:26;4688:18;;;4681:54;4752:18;;3819:58:22;4602:174:84;3819:58:22;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2546:1067:35:-;2694:7;2743:13;2725:31;;:15;:31;;;2717:71;;;;-1:-1:-1;;;2717:71:35;;3867:2:84;2717:71:35;;;3849:21:84;3906:2;3886:18;;;3879:30;3945:29;3925:18;;;3918:57;3992:18;;2717:71:35;3839:177:84;2717:71:35;2820:11;;;;;;;;;2861:9;2798:19;;2959:33;2861:9;2959:21;:33::i;:::-;2881:111;;;;3003:19;3024:52;3080:33;3102:10;3080:21;:33::i;:::-;3002:111;;;;3124:14;3141:205;3179:18;3211;3243:12;3269;3295;3321:15;3141:24;:205::i;:::-;3124:222;;3357:12;3372:203;3410:18;3442;3474:12;3500;3526;3552:13;3372:24;:203::i;:::-;3357:218;-1:-1:-1;3593:13:35;3600:6;3357:218;3593:13;:::i;:::-;3586:20;;;;;;;;;;2546:1067;;;;;:::o;2317:70::-;2367:13;:11;:13::i;1744:123:21:-;1813:4;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;4630:2:84;3819:58:22;;;4612:21:84;4669:2;4649:18;;;4642:30;4708:26;4688:18;;;4681:54;4752:18;;3819:58:22;4602:174:84;3819:58:22;1836:24:21::1;1848:11;1836;:24::i;:::-;1829:31;;3887:1:22;1744:123:21::0;;;:::o;2751:234:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;4630:2:84;3819:58:22;;;4612:21:84;4669:2;4649:18;;;4642:30;4708:26;4688:18;;;4681:54;4752:18;;3819:58:22;4602:174:84;3819:58:22;-1:-1:-1;;;;;2834:23:22;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:22;;6108:2:84;2826:73:22::1;::::0;::::1;6090:21:84::0;6147:2;6127:18;;;6120:30;6186:34;6166:18;;;6159:62;6257:7;6237:18;;;6230:35;6282:19;;2826:73:22::1;6080:227:84::0;2826:73:22::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:22::1;-1:-1:-1::0;;;;;2910:25:22;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:22::1;2751:234:::0;:::o;7170:1957:35:-;7234:11;;;7322:30;;;;;7346:4;7322:30;;;1990:74:84;;;;7234:11:35;;;;;;;7275:9;;;-1:-1:-1;;;;;;;7322:5:35;:15;;;;1963:18:84;;7322:30:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7393:19;;7294:58;;-1:-1:-1;;;;;;7393:19:35;7362:28;;7506:33;7528:10;7506:21;:33::i;:::-;7430:109;;;;7817:17;:24;;;-1:-1:-1;;;;;7774:67:35;7794:20;-1:-1:-1;;;;;7774:40:35;:17;:40;;;;:::i;:::-;:67;7770:1351;;;7881:15;7857:14;8015:49;8044:20;8023:17;8015:49;:::i;:::-;7983:81;;8246:7;8215:38;;:17;:27;;;:38;;;8211:825;;8307:137;;;;;;;;8364:21;-1:-1:-1;;;;;8307:137:35;;;;;8418:7;8307:137;;;;;8273:19;8293:10;8273:31;;;;;;;;;:::i;:::-;:171;;;;;;;;;-1:-1:-1;;;8273:171:35;-1:-1:-1;;;;;8273:171:35;;;;;;;:31;;:171;8481:52;;;;;;:23;:52::i;:::-;8462:9;:72;;;;;;;;;;;8556:30;;;;8552:107;;;8624:16;:12;8639:1;8624:16;:::i;:::-;8610:11;;:30;;;;;;;;;;;;;;;;;;8552:107;8211:825;;;8884:137;;;;;;;;8941:21;-1:-1:-1;;;;;8884:137:35;;;;;8995:7;8884:137;;;;;8849:19;8869:11;8849:32;;;;;;;;;:::i;:::-;:172;;;;;;;;;-1:-1:-1;;;8849:172:35;-1:-1:-1;;;;;8849:172:35;;;;;;;:32;;:172;8211:825;9055:55;;;-1:-1:-1;;;;;7239:15:84;;;7221:34;;7291:15;;7286:2;7271:18;;7264:43;9055:55:35;;7117:18:84;9055:55:35;;;;;;;7843:1278;;7770:1351;7202:1925;;;;;;7170:1957::o;634:205:6:-;773:58;;;-1:-1:-1;;;;;2267:55:84;;773:58:6;;;2249:74:84;2339:18;;;;2332:34;;;773:58:6;;;;;;;;;;2222:18:84;;;;773:58:6;;;;;;;;-1:-1:-1;;;;;773:58:6;796:23;773:58;;;746:86;;766:5;;746:19;:86::i;:::-;634:205;;;:::o;3470:174:22:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;9852:299:35:-;-1:-1:-1;;;;;;;;;9949:12:35;-1:-1:-1;;;;;;;;;9949:12:35;10039:54;;;;;;:25;:54::i;:::-;10024:70;;10118:19;10138:5;10118:26;;;;;;;;;:::i;:::-;10104:40;;;;;;;;;10118:26;;10104:40;-1:-1:-1;;;;;10104:40:35;;;;-1:-1:-1;;;10104:40:35;;;;;;;;9852:299;;10104:40;;-1:-1:-1;;9852:299:35:o;9251:477::-;-1:-1:-1;;;;;;;;;;;;;;;;;9431:10:35;;9465:19;:26;;;;;;;;;;;:::i;:::-;9451:40;;;;;;;;;9465:26;;9451:40;-1:-1:-1;;;;;9451:40:35;;;;-1:-1:-1;;;9451:40:35;;;;;;;;;;;;-1:-1:-1;9606:116:35;;9660:1;;-1:-1:-1;9689:19:35;9660:1;9689:22;;9606:116;9251:477;;;:::o;4571:2531::-;4872:7;4915:15;4990:17;;;4986:31;;5016:1;5009:8;;;;;4986:31;5720:10;5689:41;;:18;:28;;;:41;;;5685:80;;;5753:1;5746:8;;;;;5685:80;6033:10;6001:42;;:18;:28;;;:42;;;5997:105;;-1:-1:-1;;6066:25:35;;6059:32;;5997:105;6289:44;6347:43;6403:221;6448:19;6485:12;6515;6545:10;6573:12;6603:7;6403:27;:221::i;:::-;6275:349;;;;6981:10;6958:33;;:9;:19;;;:33;;;6954:142;;;7014:16;;-1:-1:-1;7007:23:35;;-1:-1:-1;;7007:23:35;6954:142;-1:-1:-1;7068:17:35;;-1:-1:-1;7061:24:35;;-1:-1:-1;7061:24:35;4571:2531;;;;;;;;;:::o;2109:326:21:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:21;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:21;;3463:2:84;2230:79:21;;;3445:21:84;3502:2;3482:18;;;3475:30;3541:34;3521:18;;;3514:62;3612:5;3592:18;;;3585:33;3635:19;;2230:79:21;3435:225:84;2230:79:21;2320:8;:22;;-1:-1:-1;;2320:22:21;-1:-1:-1;;;;;2320:22:21;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:21;-1:-1:-1;2424:4:21;;2109:326;-1:-1:-1;;2109:326:21:o;2263:171:56:-;2367:7;2397:30;2402:10;:6;2411:1;2402:10;:::i;:::-;2414:12;2397:4;:30::i;:::-;2390:37;2263:171;-1:-1:-1;;;2263:171:56:o;3140:706:6:-;3559:23;3585:69;3613:4;3585:69;;;;;;;;;;;;;;;;;3593:5;-1:-1:-1;;;;;3585:27:6;;;:69;;;;;:::i;:::-;3668:17;;3559:95;;-1:-1:-1;3668:21:6;3664:176;;3763:10;3752:30;;;;;;;;;;;;:::i;:::-;3744:85;;;;-1:-1:-1;;;3744:85:6;;6514:2:84;3744:85:6;;;6496:21:84;6553:2;6533:18;;;6526:30;6592:34;6572:18;;;6565:62;6663:12;6643:18;;;6636:40;6693:19;;3744:85:6;6486:232:84;1666:262:56;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:56;1836:8;;1799:56;1872:49;1905:1;1877:25;1890:12;1877:10;:25;:::i;:::-;:29;;;;:::i;2382:2006:54:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2719:16:54;2738:23;2719:42;;;;2771:17;2817:8;2791:23;:34;;;:114;;2882:23;2791:114;;;;;2866:1;2840:23;;;;:8;:23;:::i;:::-;:27;;;;:::i;:::-;2771:134;;2915:20;2946:1436;3237:1;3213:20;3224:9;3213:8;:20;:::i;:::-;3212:26;;;;:::i;:::-;3197:41;;3266:13;3287:46;3306:12;3320;3287:46;;:18;:46::i;:::-;3266:69;;;;;;;;;:::i;:::-;3253:82;;;;;;;;;3266:69;;3253:82;-1:-1:-1;;;;;3253:82:54;;;;-1:-1:-1;;;3253:82:54;;;;;;;;;;;;-1:-1:-1;3253:82:54;3511:116;;3570:16;:12;3585:1;3570:16;:::i;:::-;3559:27;;3604:8;;;3511:116;3653:13;3674:51;3698:12;3712;3674:51;;:23;:51::i;:::-;3653:74;;;;;;;;;:::i;:::-;3641:86;;;;;;;;;3653:74;;3641:86;-1:-1:-1;;;;;3641:86:54;;;;;-1:-1:-1;;;3641:86:54;;;;;;;;;;;-1:-1:-1;;;3765:39:54;;:23;;;;3789:7;;3798:5;;3765:23;:39;:::i;:::-;3742:62;;3890:15;:58;;;;;3909:39;3921:9;:19;;;3942:5;3909:7;:11;;;;:39;;;;;:::i;:::-;3886:102;;;3968:5;;;;3886:102;4138:15;4133:239;;4185:16;4200:1;4185:12;:16;:::i;:::-;4173:28;;4133:239;;;4341:16;:12;4356:1;4341:16;:::i;:::-;4330:27;;4133:239;2959:1423;;2946:1436;;;2709:1679;;;2382:2006;;;;;;;;;:::o;580:129:56:-;655:7;681:21;690:12;681:6;:21;:::i;3461:223:11:-;3594:12;3625:52;3647:6;3655:4;3661:1;3664:12;3625:21;:52::i;:::-;3618:59;3461:223;-1:-1:-1;;;;3461:223:11:o;1658:417:55:-;1765:4;1854:10;1848:16;;:2;:16;;;;:36;;;;;1874:10;1868:16;;:2;:16;;;;1848:36;1844:57;;;1899:2;1893:8;;:2;:8;;;;1886:15;;;;1844:57;1912:17;1937:10;1932:15;;:2;:15;;;:33;;1955:10;;;;1960:5;1955:10;:::i;:::-;1932:33;;;1950:2;1932:33;;;1912:53;;;;1975:17;2000:10;1995:15;;:2;:15;;;:33;;2018:10;;;;2023:5;2018:10;:::i;:::-;1995:33;;;2013:2;1995:33;;;1975:53;;2046:22;;;;;1658:417;-1:-1:-1;;;;;1658:417:55:o;4548:499:11:-;4713:12;4770:5;4745:21;:30;;4737:81;;;;-1:-1:-1;;;4737:81:11;;4223:2:84;4737:81:11;;;4205:21:84;4262:2;4242:18;;;4235:30;4301:34;4281:18;;;4274:62;4372:8;4352:18;;;4345:36;4398:19;;4737:81:11;4195:228:84;4737:81:11;1034:20;;4828:60;;;;-1:-1:-1;;;4828:60:11;;5750:2:84;4828:60:11;;;5732:21:84;5789:2;5769:18;;;5762:30;5828:31;5808:18;;;5801:59;5877:18;;4828:60:11;5722:179:84;4828:60:11;4900:12;4914:23;4941:6;-1:-1:-1;;;;;4941:11:11;4960:5;4967:4;4941:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4899:73;;;;4989:51;5006:7;5015:10;5027:12;4989:16;:51::i;:::-;4982:58;4548:499;-1:-1:-1;;;;;;;4548:499:11:o;7161:692::-;7307:12;7335:7;7331:516;;;-1:-1:-1;7365:10:11;7358:17;;7331:516;7476:17;;:21;7472:365;;7670:10;7664:17;7730:15;7717:10;7713:2;7709:19;7702:44;7472:365;7809:12;7802:20;;-1:-1:-1;;;7802:20:11;;;;;;;;:::i;14:196:84:-;82:20;;-1:-1:-1;;;;;131:54:84;;121:65;;111:2;;200:1;197;190:12;215:163;282:20;;342:10;331:22;;321:33;;311:2;;368:1;365;358:12;383:186;442:6;495:2;483:9;474:7;470:23;466:32;463:2;;;511:1;508;501:12;463:2;534:29;553:9;534:29;:::i;574:254::-;642:6;650;703:2;691:9;682:7;678:23;674:32;671:2;;;719:1;716;709:12;671:2;742:29;761:9;742:29;:::i;:::-;732:39;818:2;803:18;;;;790:32;;-1:-1:-1;;;661:167:84:o;833:277::-;900:6;953:2;941:9;932:7;928:23;924:32;921:2;;;969:1;966;959:12;921:2;1001:9;995:16;1054:5;1047:13;1040:21;1033:5;1030:32;1020:2;;1076:1;1073;1066:12;1115:184;1185:6;1238:2;1226:9;1217:7;1213:23;1209:32;1206:2;;;1254:1;1251;1244:12;1206:2;-1:-1:-1;1277:16:84;;1196:103;-1:-1:-1;1196:103:84:o;1304:256::-;1370:6;1378;1431:2;1419:9;1410:7;1406:23;1402:32;1399:2;;;1447:1;1444;1437:12;1399:2;1470:28;1488:9;1470:28;:::i;:::-;1460:38;;1517:37;1550:2;1539:9;1535:18;1517:37;:::i;:::-;1507:47;;1389:171;;;;;:::o;1565:274::-;1694:3;1732:6;1726:13;1748:53;1794:6;1789:3;1782:4;1774:6;1770:17;1748:53;:::i;:::-;1817:16;;;;;1702:137;-1:-1:-1;;1702:137:84:o;2814:442::-;2963:2;2952:9;2945:21;2926:4;2995:6;2989:13;3038:6;3033:2;3022:9;3018:18;3011:34;3054:66;3113:6;3108:2;3097:9;3093:18;3088:2;3080:6;3076:15;3054:66;:::i;:::-;3172:2;3160:15;3177:66;3156:88;3141:104;;;;3247:2;3137:113;;2935:321;-1:-1:-1;;2935:321:84:o;7500:277::-;7540:3;-1:-1:-1;;;;;7653:2:84;7650:1;7646:10;7683:2;7680:1;7676:10;7714:3;7710:2;7706:12;7701:3;7698:21;7695:2;;;7722:18;;:::i;:::-;7758:13;;7548:229;-1:-1:-1;;;;7548:229:84:o;7782:226::-;7821:3;7849:8;7884:2;7881:1;7877:10;7914:2;7911:1;7907:10;7945:3;7941:2;7937:12;7932:3;7929:21;7926:2;;;7953:18;;:::i;8013:128::-;8053:3;8084:1;8080:6;8077:1;8074:13;8071:2;;;8090:18;;:::i;:::-;-1:-1:-1;8126:9:84;;8061:80::o;8146:230::-;8185:3;8213:12;8252:2;8249:1;8245:10;8282:2;8279:1;8275:10;8313:3;8309:2;8305:12;8300:3;8297:21;8294:2;;;8321:18;;:::i;8381:120::-;8421:1;8447;8437:2;;8452:18;;:::i;:::-;-1:-1:-1;8486:9:84;;8427:74::o;8506:270::-;8546:4;-1:-1:-1;;;;;8683:10:84;;;;8653;;8705:12;;;8702:2;;;8720:18;;:::i;:::-;8757:13;;8555:221;-1:-1:-1;;;8555:221:84:o;8781:125::-;8821:4;8849:1;8846;8843:8;8840:2;;;8854:18;;:::i;:::-;-1:-1:-1;8891:9:84;;8830:76::o;8911:258::-;8983:1;8993:113;9007:6;9004:1;9001:13;8993:113;;;9083:11;;;9077:18;9064:11;;;9057:39;9029:2;9022:10;8993:113;;;9124:6;9121:1;9118:13;9115:2;;;9159:1;9150:6;9145:3;9141:16;9134:27;9115:2;;8964:205;;;:::o;9174:112::-;9206:1;9232;9222:2;;9237:18;;:::i;:::-;-1:-1:-1;9271:9:84;;9212:74::o;9291:184::-;-1:-1:-1;;;9340:1:84;9333:88;9440:4;9437:1;9430:15;9464:4;9461:1;9454:15;9480:184;-1:-1:-1;;;9529:1:84;9522:88;9629:4;9626:1;9619:15;9653:4;9650:1;9643:15;9669:184;-1:-1:-1;;;9718:1:84;9711:88;9818:4;9815:1;9808:15;9842:4;9839:1;9832:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1101600",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "checkpoint()": "infinite",
                "claimOwnership()": "54486",
                "getReserveAccumulatedBetween(uint32,uint32)": "infinite",
                "getToken()": "infinite",
                "manager()": "2343",
                "owner()": "2343",
                "pendingOwner()": "2364",
                "renounceOwnership()": "28202",
                "setManager(address)": "infinite",
                "token()": "infinite",
                "transferOwnership(address)": "27972",
                "withdrawAccumulator()": "2405",
                "withdrawTo(address,uint256)": "infinite"
              },
              "internal": {
                "_checkpoint()": "infinite",
                "_getNewestObservation(uint24)": "infinite",
                "_getOldestObservation(uint24)": "infinite",
                "_getReserveAccumulatedAt(struct ObservationLib.Observation memory,struct ObservationLib.Observation memory,uint24,uint24,uint24,uint32)": "infinite"
              }
            },
            "methodIdentifiers": {
              "checkpoint()": "c2c4c5c1",
              "claimOwnership()": "4e71e0c8",
              "getReserveAccumulatedBetween(uint32,uint32)": "af6a9400",
              "getToken()": "21df0da7",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setManager(address)": "d0ebdbe7",
              "token()": "fc0c546a",
              "transferOwnership(address)": "f2fde38b",
              "withdrawAccumulator()": "2d00ddda",
              "withdrawTo(address,uint256)": "205c2878"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IERC20\",\"name\":\"_token\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"reserveAccumulated\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"withdrawAccumulated\",\"type\":\"uint256\"}],\"name\":\"Checkpoint\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"checkpoint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_startTimestamp\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"_endTimestamp\",\"type\":\"uint32\"}],\"name\":\"getReserveAccumulatedBetween\",\"outputs\":[{\"internalType\":\"uint224\",\"name\":\"\",\"type\":\"uint224\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"token\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"withdrawAccumulator\",\"outputs\":[{\"internalType\":\"uint224\",\"name\":\"\",\"type\":\"uint224\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"details\":\"By calculating the total held tokens in a specific time range, contracts that require knowledge  of captured interest during a draw period, can easily call into the Reserve and deterministically determine the newly aqcuired tokens for that time range. \",\"kind\":\"dev\",\"methods\":{\"checkpoint()\":{\"details\":\"Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint.\"},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_owner\":\"Owner address\",\"_token\":\"ERC20 address\"}},\"getReserveAccumulatedBetween(uint32,uint32)\":{\"details\":\"Search the ring buffer for two checkpoint observations and diffs accumulator amount.\",\"params\":{\"endTimestamp\":\"Transfer amount\",\"startTimestamp\":\"Account address\"}},\"getToken()\":{\"returns\":{\"_0\":\"IERC20\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}},\"withdrawTo(address,uint256)\":{\"details\":\"Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\",\"params\":{\"amount\":\"Transfer amount\",\"recipient\":\"Account address\"}}},\"title\":\"PoolTogether V4 Reserve\",\"version\":1},\"userdoc\":{\"events\":{\"Checkpoint(uint256,uint256)\":{\"notice\":\"Emit when checkpoint is created.\"},\"Withdrawn(address,uint256)\":{\"notice\":\"Emit when the withdrawTo function has executed.\"}},\"kind\":\"user\",\"methods\":{\"checkpoint()\":{\"notice\":\"Create observation checkpoint in ring bufferr.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Constructs Ticket with passed parameters.\"},\"getReserveAccumulatedBetween(uint32,uint32)\":{\"notice\":\"Calculate token accumulation beween timestamp range.\"},\"getToken()\":{\"notice\":\"Read global token value.\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"token()\":{\"notice\":\"ERC20 token\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"},\"withdrawAccumulator()\":{\"notice\":\"Total withdraw amount from reserve\"},\"withdrawTo(address,uint256)\":{\"notice\":\"Transfer Reserve token balance to recipient address.\"}},\"notice\":\"The Reserve contract provides historical lookups of a token balance increase during a target timerange. As the Reserve contract transfers OUT tokens, the withdraw accumulator is increased. When tokens are transfered IN new checkpoint *can* be created if checkpoint() is called after transfering tokens. By using the reserve and withdraw accumulators to create a new checkpoint, any contract or account can lookup the balance increase of the reserve for a target timerange.   \",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/Reserve.sol\":\"Reserve\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"contracts/Reserve.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport \\\"./interfaces/IReserve.sol\\\";\\nimport \\\"./libraries/ObservationLib.sol\\\";\\nimport \\\"./libraries/RingBufferLib.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 Reserve\\n    * @author PoolTogether Inc Team\\n    * @notice The Reserve contract provides historical lookups of a token balance increase during a target timerange.\\n              As the Reserve contract transfers OUT tokens, the withdraw accumulator is increased. When tokens are\\n              transfered IN new checkpoint *can* be created if checkpoint() is called after transfering tokens.\\n              By using the reserve and withdraw accumulators to create a new checkpoint, any contract or account\\n              can lookup the balance increase of the reserve for a target timerange.   \\n    * @dev    By calculating the total held tokens in a specific time range, contracts that require knowledge \\n              of captured interest during a draw period, can easily call into the Reserve and deterministically\\n              determine the newly aqcuired tokens for that time range. \\n */\\ncontract Reserve is IReserve, Manageable {\\n    using SafeERC20 for IERC20;\\n\\n    /// @notice ERC20 token\\n    IERC20 public immutable token;\\n\\n    /// @notice Total withdraw amount from reserve\\n    uint224 public withdrawAccumulator;\\n    uint32 private _gap;\\n\\n    uint24 internal nextIndex;\\n    uint24 internal cardinality;\\n\\n    /// @notice The maximum number of twab entries\\n    uint24 internal constant MAX_CARDINALITY = 16777215; // 2**24 - 1\\n\\n    ObservationLib.Observation[MAX_CARDINALITY] internal reserveAccumulators;\\n\\n    /* ============ Events ============ */\\n\\n    event Deployed(IERC20 indexed token);\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructs Ticket with passed parameters.\\n     * @param _owner Owner address\\n     * @param _token ERC20 address\\n     */\\n    constructor(address _owner, IERC20 _token) Ownable(_owner) {\\n        token = _token;\\n        emit Deployed(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IReserve\\n    function checkpoint() external override {\\n        _checkpoint();\\n    }\\n\\n    /// @inheritdoc IReserve\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IReserve\\n    function getReserveAccumulatedBetween(uint32 _startTimestamp, uint32 _endTimestamp)\\n        external\\n        view\\n        override\\n        returns (uint224)\\n    {\\n        require(_startTimestamp < _endTimestamp, \\\"Reserve/start-less-than-end\\\");\\n        uint24 _cardinality = cardinality;\\n        uint24 _nextIndex = nextIndex;\\n\\n        (uint24 _newestIndex, ObservationLib.Observation memory _newestObservation) = _getNewestObservation(_nextIndex);\\n        (uint24 _oldestIndex, ObservationLib.Observation memory _oldestObservation) = _getOldestObservation(_nextIndex);\\n\\n        uint224 _start = _getReserveAccumulatedAt(\\n            _newestObservation,\\n            _oldestObservation,\\n            _newestIndex,\\n            _oldestIndex,\\n            _cardinality,\\n            _startTimestamp\\n        );\\n\\n        uint224 _end = _getReserveAccumulatedAt(\\n            _newestObservation,\\n            _oldestObservation,\\n            _newestIndex,\\n            _oldestIndex,\\n            _cardinality,\\n            _endTimestamp\\n        );\\n\\n        return _end - _start;\\n    }\\n\\n    /// @inheritdoc IReserve\\n    function withdrawTo(address _recipient, uint256 _amount) external override onlyManagerOrOwner {\\n        _checkpoint();\\n\\n        withdrawAccumulator += uint224(_amount);\\n        \\n        token.safeTransfer(_recipient, _amount);\\n\\n        emit Withdrawn(_recipient, _amount);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Find optimal observation checkpoint using target timestamp\\n     * @dev    Uses binary search if target timestamp is within ring buffer range.\\n     * @param _newestObservation ObservationLib.Observation\\n     * @param _oldestObservation ObservationLib.Observation\\n     * @param _newestIndex The index of the newest observation\\n     * @param _oldestIndex The index of the oldest observation\\n     * @param _cardinality       RingBuffer Range\\n     * @param _timestamp          Timestamp target\\n     *\\n     * @return Optimal reserveAccumlator for timestamp.\\n     */\\n    function _getReserveAccumulatedAt(\\n        ObservationLib.Observation memory _newestObservation,\\n        ObservationLib.Observation memory _oldestObservation,\\n        uint24 _newestIndex,\\n        uint24 _oldestIndex,\\n        uint24 _cardinality,\\n        uint32 _timestamp\\n    ) internal view returns (uint224) {\\n        uint32 timeNow = uint32(block.timestamp);\\n\\n        // IF empty ring buffer exit early.\\n        if (_cardinality == 0) return 0;\\n\\n        /**\\n         * Ring Buffer Search Optimization\\n         * Before performing binary search on the ring buffer check\\n         * to see if timestamp is within range of [o T n] by comparing\\n         * the target timestamp to the oldest/newest observation.timestamps\\n         * IF the timestamp is out of the ring buffer range avoid starting\\n         * a binary search, because we can return NULL or oldestObservation.amount\\n         */\\n\\n        /**\\n         * IF oldestObservation.timestamp is after timestamp: T[old ]\\n         * the Reserve did NOT have a balance or the ring buffer\\n         * no longer contains that timestamp checkpoint.\\n         */\\n        if (_oldestObservation.timestamp > _timestamp) {\\n            return 0;\\n        }\\n\\n        /**\\n         * IF newestObservation.timestamp is before timestamp: [ new]T\\n         * return _newestObservation.amount since observation\\n         * contains the highest checkpointed reserveAccumulator.\\n         */\\n        if (_newestObservation.timestamp <= _timestamp) {\\n            return _newestObservation.amount;\\n        }\\n\\n        // IF the timestamp is witin range of ring buffer start/end: [new T old]\\n        // FIND the closest observation to the left(or exact) of timestamp: [OT ]\\n        (\\n            ObservationLib.Observation memory beforeOrAt,\\n            ObservationLib.Observation memory atOrAfter\\n        ) = ObservationLib.binarySearch(\\n                reserveAccumulators,\\n                _newestIndex,\\n                _oldestIndex,\\n                _timestamp,\\n                _cardinality,\\n                timeNow\\n            );\\n\\n        // IF target timestamp is EXACT match for atOrAfter.timestamp observation return amount.\\n        // NOT having an exact match with atOrAfter means values will contain accumulator value AFTER the searchable range.\\n        // ELSE return observation.totalDepositedAccumulator closest to LEFT of target timestamp.\\n        if (atOrAfter.timestamp == _timestamp) {\\n            return atOrAfter.amount;\\n        } else {\\n            return beforeOrAt.amount;\\n        }\\n    }\\n\\n    /// @notice Records the currently accrued reserve amount.\\n    function _checkpoint() internal {\\n        uint24 _cardinality = cardinality;\\n        uint24 _nextIndex = nextIndex;\\n        uint256 _balanceOfReserve = token.balanceOf(address(this));\\n        uint224 _withdrawAccumulator = withdrawAccumulator; //sload\\n        (uint24 newestIndex, ObservationLib.Observation memory newestObservation) = _getNewestObservation(_nextIndex);\\n\\n        /**\\n         * IF tokens have been deposited into Reserve contract since the last checkpoint\\n         * create a new Reserve balance checkpoint. The will will update multiple times in a single block.\\n         */\\n        if (_balanceOfReserve + _withdrawAccumulator > newestObservation.amount) {\\n            uint32 nowTime = uint32(block.timestamp);\\n\\n            // checkpointAccumulator = currentBalance + totalWithdraws\\n            uint224 newReserveAccumulator = uint224(_balanceOfReserve) + _withdrawAccumulator;\\n\\n            // IF newestObservation IS NOT in the current block.\\n            // CREATE observation in the accumulators ring buffer.\\n            if (newestObservation.timestamp != nowTime) {\\n                reserveAccumulators[_nextIndex] = ObservationLib.Observation({\\n                    amount: newReserveAccumulator,\\n                    timestamp: nowTime\\n                });\\n                nextIndex = uint24(RingBufferLib.nextIndex(_nextIndex, MAX_CARDINALITY));\\n                if (_cardinality < MAX_CARDINALITY) {\\n                    cardinality = _cardinality + 1;\\n                }\\n            }\\n            // ELSE IF newestObservation IS in the current block.\\n            // UPDATE the checkpoint previously created in block history.\\n            else {\\n                reserveAccumulators[newestIndex] = ObservationLib.Observation({\\n                    amount: newReserveAccumulator,\\n                    timestamp: nowTime\\n                });\\n            }\\n\\n            emit Checkpoint(newReserveAccumulator, _withdrawAccumulator);\\n        }\\n    }\\n\\n    /// @notice Retrieves the oldest observation\\n    /// @param _nextIndex The next index of the Reserve observations\\n    function _getOldestObservation(uint24 _nextIndex)\\n        internal\\n        view\\n        returns (uint24 index, ObservationLib.Observation memory observation)\\n    {\\n        index = _nextIndex;\\n        observation = reserveAccumulators[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (observation.timestamp == 0) {\\n            index = 0;\\n            observation = reserveAccumulators[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest observation\\n    /// @param _nextIndex The next index of the Reserve observations\\n    function _getNewestObservation(uint24 _nextIndex)\\n        internal\\n        view\\n        returns (uint24 index, ObservationLib.Observation memory observation)\\n    {\\n        index = uint24(RingBufferLib.newestIndex(_nextIndex, MAX_CARDINALITY));\\n        observation = reserveAccumulators[index];\\n    }\\n}\\n\",\"keccak256\":\"0x5be51c0e373153f0d6e95ecb7ff60e7cdd67aa6356f6e5ea43ee075ed526de31\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IReserve.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface IReserve {\\n    /**\\n     * @notice Emit when checkpoint is created.\\n     * @param reserveAccumulated  Total depsosited\\n     * @param withdrawAccumulated Total withdrawn\\n     */\\n\\n    event Checkpoint(uint256 reserveAccumulated, uint256 withdrawAccumulated);\\n    /**\\n     * @notice Emit when the withdrawTo function has executed.\\n     * @param recipient Address receiving funds\\n     * @param amount    Amount of tokens transfered.\\n     */\\n    event Withdrawn(address indexed recipient, uint256 amount);\\n\\n    /**\\n     * @notice Create observation checkpoint in ring bufferr.\\n     * @dev    Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint.\\n     */\\n    function checkpoint() external;\\n\\n    /**\\n     * @notice Read global token value.\\n     * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n     * @notice Calculate token accumulation beween timestamp range.\\n     * @dev    Search the ring buffer for two checkpoint observations and diffs accumulator amount.\\n     * @param startTimestamp Account address\\n     * @param endTimestamp   Transfer amount\\n     */\\n    function getReserveAccumulatedBetween(uint32 startTimestamp, uint32 endTimestamp)\\n        external\\n        returns (uint224);\\n\\n    /**\\n     * @notice Transfer Reserve token balance to recipient address.\\n     * @dev    Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\\n     * @param recipient Account address\\n     * @param amount    Transfer amount\\n     */\\n    function withdrawTo(address recipient, uint256 amount) external;\\n}\\n\",\"keccak256\":\"0x630c99a29c1df33cf2cf9492ea8640e875fa6cbb46c53a9d1ce935567589fef6\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/Reserve.sol:Reserve",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/Reserve.sol:Reserve",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3834,
                "contract": "contracts/Reserve.sol:Reserve",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 9510,
                "contract": "contracts/Reserve.sol:Reserve",
                "label": "withdrawAccumulator",
                "offset": 0,
                "slot": "3",
                "type": "t_uint224"
              },
              {
                "astId": 9512,
                "contract": "contracts/Reserve.sol:Reserve",
                "label": "_gap",
                "offset": 28,
                "slot": "3",
                "type": "t_uint32"
              },
              {
                "astId": 9514,
                "contract": "contracts/Reserve.sol:Reserve",
                "label": "nextIndex",
                "offset": 0,
                "slot": "4",
                "type": "t_uint24"
              },
              {
                "astId": 9516,
                "contract": "contracts/Reserve.sol:Reserve",
                "label": "cardinality",
                "offset": 3,
                "slot": "4",
                "type": "t_uint24"
              },
              {
                "astId": 9525,
                "contract": "contracts/Reserve.sol:Reserve",
                "label": "reserveAccumulators",
                "offset": 0,
                "slot": "5",
                "type": "t_array(t_struct(Observation)12454_storage)16777215_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(Observation)12454_storage)16777215_storage": {
                "base": "t_struct(Observation)12454_storage",
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation[16777215]",
                "numberOfBytes": "536870880"
              },
              "t_struct(Observation)12454_storage": {
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation",
                "members": [
                  {
                    "astId": 12451,
                    "contract": "contracts/Reserve.sol:Reserve",
                    "label": "amount",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint224"
                  },
                  {
                    "astId": 12453,
                    "contract": "contracts/Reserve.sol:Reserve",
                    "label": "timestamp",
                    "offset": 28,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint224": {
                "encoding": "inplace",
                "label": "uint224",
                "numberOfBytes": "28"
              },
              "t_uint24": {
                "encoding": "inplace",
                "label": "uint24",
                "numberOfBytes": "3"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              }
            }
          },
          "userdoc": {
            "events": {
              "Checkpoint(uint256,uint256)": {
                "notice": "Emit when checkpoint is created."
              },
              "Withdrawn(address,uint256)": {
                "notice": "Emit when the withdrawTo function has executed."
              }
            },
            "kind": "user",
            "methods": {
              "checkpoint()": {
                "notice": "Create observation checkpoint in ring bufferr."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Constructs Ticket with passed parameters."
              },
              "getReserveAccumulatedBetween(uint32,uint32)": {
                "notice": "Calculate token accumulation beween timestamp range."
              },
              "getToken()": {
                "notice": "Read global token value."
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "token()": {
                "notice": "ERC20 token"
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              },
              "withdrawAccumulator()": {
                "notice": "Total withdraw amount from reserve"
              },
              "withdrawTo(address,uint256)": {
                "notice": "Transfer Reserve token balance to recipient address."
              }
            },
            "notice": "The Reserve contract provides historical lookups of a token balance increase during a target timerange. As the Reserve contract transfers OUT tokens, the withdraw accumulator is increased. When tokens are transfered IN new checkpoint *can* be created if checkpoint() is called after transfering tokens. By using the reserve and withdraw accumulators to create a new checkpoint, any contract or account can lookup the balance increase of the reserve for a target timerange.   ",
            "version": 1
          }
        }
      },
      "contracts/Ticket.sol": {
        "Ticket": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "string",
                  "name": "_name",
                  "type": "string"
                },
                {
                  "internalType": "string",
                  "name": "_symbol",
                  "type": "string"
                },
                {
                  "internalType": "uint8",
                  "name": "decimals_",
                  "type": "uint8"
                },
                {
                  "internalType": "address",
                  "name": "_controller",
                  "type": "address"
                }
              ],
              "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": "delegator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                }
              ],
              "name": "Delegated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "name",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "symbol",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "uint8",
                  "name": "decimals",
                  "type": "uint8"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "controller",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct ObservationLib.Observation",
                  "name": "newTotalSupplyTwab",
                  "type": "tuple"
                }
              ],
              "name": "NewTotalSupplyTwab",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                },
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct ObservationLib.Observation",
                  "name": "newTwab",
                  "type": "tuple"
                }
              ],
              "name": "NewUserTwab",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "name",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "symbol",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "uint8",
                  "name": "decimals",
                  "type": "uint8"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "controller",
                  "type": "address"
                }
              ],
              "name": "TicketInitialized",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "DOMAIN_SEPARATOR",
              "outputs": [
                {
                  "internalType": "bytes32",
                  "name": "",
                  "type": "bytes32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "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": "controller",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurn",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_operator",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurnFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                }
              ],
              "name": "controllerDelegateFor",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerMint",
              "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": "_to",
                  "type": "address"
                }
              ],
              "name": "delegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                }
              ],
              "name": "delegateOf",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_newDelegate",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_deadline",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "_v",
                  "type": "uint8"
                },
                {
                  "internalType": "bytes32",
                  "name": "_r",
                  "type": "bytes32"
                },
                {
                  "internalType": "bytes32",
                  "name": "_s",
                  "type": "bytes32"
                }
              ],
              "name": "delegateWithSignature",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                }
              ],
              "name": "getAccountDetails",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint208",
                      "name": "balance",
                      "type": "uint208"
                    },
                    {
                      "internalType": "uint24",
                      "name": "nextTwabIndex",
                      "type": "uint24"
                    },
                    {
                      "internalType": "uint24",
                      "name": "cardinality",
                      "type": "uint24"
                    }
                  ],
                  "internalType": "struct TwabLib.AccountDetails",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint64",
                  "name": "_startTime",
                  "type": "uint64"
                },
                {
                  "internalType": "uint64",
                  "name": "_endTime",
                  "type": "uint64"
                }
              ],
              "name": "getAverageBalanceBetween",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint64[]",
                  "name": "_startTimes",
                  "type": "uint64[]"
                },
                {
                  "internalType": "uint64[]",
                  "name": "_endTimes",
                  "type": "uint64[]"
                }
              ],
              "name": "getAverageBalancesBetween",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64[]",
                  "name": "_startTimes",
                  "type": "uint64[]"
                },
                {
                  "internalType": "uint64[]",
                  "name": "_endTimes",
                  "type": "uint64[]"
                }
              ],
              "name": "getAverageTotalSuppliesBetween",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint64",
                  "name": "_target",
                  "type": "uint64"
                }
              ],
              "name": "getBalanceAt",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint64[]",
                  "name": "_targets",
                  "type": "uint64[]"
                }
              ],
              "name": "getBalancesAt",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64[]",
                  "name": "_targets",
                  "type": "uint64[]"
                }
              ],
              "name": "getTotalSuppliesAt",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "_target",
                  "type": "uint64"
                }
              ],
              "name": "getTotalSupplyAt",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint16",
                  "name": "_index",
                  "type": "uint16"
                }
              ],
              "name": "getTwab",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct ObservationLib.Observation",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "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": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "nonces",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "deadline",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "v",
                  "type": "uint8"
                },
                {
                  "internalType": "bytes32",
                  "name": "r",
                  "type": "bytes32"
                },
                {
                  "internalType": "bytes32",
                  "name": "s",
                  "type": "bytes32"
                }
              ],
              "name": "permit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "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": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "DOMAIN_SEPARATOR()": {
                "details": "See {IERC20Permit-DOMAIN_SEPARATOR}."
              },
              "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}."
              },
              "constructor": {
                "params": {
                  "_controller": "ERC20 ticket controller address (ie: Prize Pool address).",
                  "_name": "ERC20 ticket token name.",
                  "_symbol": "ERC20 ticket token symbol.",
                  "decimals_": "ERC20 ticket token decimals."
                }
              },
              "controllerBurn(address,uint256)": {
                "details": "May be overridden to provide more granular control over burning",
                "params": {
                  "_amount": "Amount of tokens to burn",
                  "_user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerBurnFrom(address,address,uint256)": {
                "details": "May be overridden to provide more granular control over operator-burning",
                "params": {
                  "_amount": "Amount of tokens to burn",
                  "_operator": "Address of the operator performing the burn action via the controller contract",
                  "_user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerDelegateFor(address,address)": {
                "params": {
                  "delegate": "The new delegate",
                  "user": "The user for whom to delegate"
                }
              },
              "controllerMint(address,uint256)": {
                "details": "May be overridden to provide more granular control over minting",
                "params": {
                  "_amount": "Amount of tokens to mint",
                  "_user": "Address of the receiver of the minted tokens"
                }
              },
              "decimals()": {
                "details": "This value should be equal to the decimals of the token used to deposit into the pool.",
                "returns": {
                  "_0": "uint8 decimals."
                }
              },
              "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`."
              },
              "delegate(address)": {
                "details": "Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the targetted sender and/or recipient address(s).To reset the delegate, pass the zero address (0x000.000) as `to` parameter.Current delegate address should be different from the new delegate address `to`.",
                "params": {
                  "to": "Recipient of delegated TWAB."
                }
              },
              "delegateOf(address)": {
                "details": "Address of the delegate will be the zero address if `user` has not delegated their tickets.",
                "params": {
                  "user": "Address of the delegator."
                },
                "returns": {
                  "_0": "Address of the delegate."
                }
              },
              "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": {
                "params": {
                  "deadline": "The timestamp by which this must be submitted",
                  "delegate": "The new delegate",
                  "r": "The r portion of the ECDSA sig",
                  "s": "The s portion of the ECDSA sig",
                  "user": "The user who is delegating",
                  "v": "The v portion of the ECDSA sig"
                }
              },
              "getAccountDetails(address)": {
                "params": {
                  "user": "The user for whom to fetch the TWAB context."
                },
                "returns": {
                  "_0": "The TWAB context, which includes { balance, nextTwabIndex, cardinality }"
                }
              },
              "getAverageBalanceBetween(address,uint64,uint64)": {
                "params": {
                  "endTime": "The end time of the time frame.",
                  "startTime": "The start time of the time frame.",
                  "user": "The user whose balance is checked."
                },
                "returns": {
                  "_0": "The average balance that the user held during the time frame."
                }
              },
              "getAverageBalancesBetween(address,uint64[],uint64[])": {
                "params": {
                  "endTimes": "The end time of the time frame.",
                  "startTimes": "The start time of the time frame.",
                  "user": "The user whose balance is checked."
                },
                "returns": {
                  "_0": "The average balance that the user held during the time frame."
                }
              },
              "getAverageTotalSuppliesBetween(uint64[],uint64[])": {
                "params": {
                  "endTimes": "Array of end times.",
                  "startTimes": "Array of start times."
                },
                "returns": {
                  "_0": "The average total supplies held during the time frame."
                }
              },
              "getBalanceAt(address,uint64)": {
                "params": {
                  "timestamp": "Timestamp at which we want to retrieve the TWAB balance.",
                  "user": "Address of the user whose TWAB is being fetched."
                },
                "returns": {
                  "_0": "The TWAB balance at the given timestamp."
                }
              },
              "getBalancesAt(address,uint64[])": {
                "params": {
                  "timestamps": "Timestamps range at which we want to retrieve the TWAB balances.",
                  "user": "Address of the user whose TWABs are being fetched."
                },
                "returns": {
                  "_0": "`user` TWAB balances."
                }
              },
              "getTotalSuppliesAt(uint64[])": {
                "params": {
                  "timestamps": "Timestamps range at which we want to retrieve the total supply TWAB balance."
                },
                "returns": {
                  "_0": "Total supply TWAB balances."
                }
              },
              "getTotalSupplyAt(uint64)": {
                "params": {
                  "timestamp": "Timestamp at which we want to retrieve the total supply TWAB balance."
                },
                "returns": {
                  "_0": "The total supply TWAB balance at the given timestamp."
                }
              },
              "getTwab(address,uint16)": {
                "params": {
                  "index": "The index of the TWAB to fetch.",
                  "user": "The user for whom to fetch the TWAB."
                },
                "returns": {
                  "_0": "The TWAB, which includes the twab amount and the timestamp."
                }
              },
              "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."
              },
              "nonces(address)": {
                "details": "See {IERC20Permit-nonces}."
              },
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": {
                "details": "See {IERC20Permit-permit}."
              },
              "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`."
              }
            },
            "title": "PoolTogether V4 Ticket",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_10001": {
                  "entryPoint": null,
                  "id": 10001,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_3129": {
                  "entryPoint": null,
                  "id": 3129,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_5208": {
                  "entryPoint": null,
                  "id": 5208,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_727": {
                  "entryPoint": null,
                  "id": 727,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_84": {
                  "entryPoint": null,
                  "id": 84,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_3178": {
                  "entryPoint": null,
                  "id": 3178,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 910,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory": {
                  "entryPoint": 1055,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_encode_string": {
                  "entryPoint": 1219,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed": {
                  "entryPoint": 1265,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 1326,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "extract_byte_array_length": {
                  "entryPoint": 1377,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 1438,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:4371:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:622:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:84"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:84"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:84",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:84"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:84",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:84"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:84"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "582:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "591:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "594:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "584:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "584:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "584:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "557:6:84"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "565:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "553:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "553:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "570:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "549:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "549:26:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "577:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "546:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "546:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "543:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "633:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "641:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "629:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "629:17:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "652:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "660:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "648:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "648:17:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "667:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "607:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "607:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "607:63:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "679:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "688:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "679:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:686:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "855:738:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "902:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "911:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "914:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "904:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "904:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "904:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "876:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "885:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "872:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "872:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "897:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "868:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "868:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "865:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "927:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "947:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "941:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "941:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "931:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "966:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "984:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "988:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "980:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "980:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "992:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "976:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "976:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "970:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1021:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1030:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1033:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1023:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1023:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1023:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1009:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1017:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1006:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1006:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1003:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1046:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1089:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1100:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1085:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1085:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1109:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1056:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1056:61:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1046:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1126:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1152:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1163:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1148:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1148:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1142:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1142:25:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1130:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1196:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1205:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1208:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1198:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1198:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1198:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1182:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1192:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1179:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1179:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1176:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1221:73:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1264:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1275:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1260:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1260:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1286:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1231:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1231:63:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1221:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1303:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1326:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1337:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1322:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1322:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1316:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1316:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1307:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1389:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1398:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1401:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1391:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1391:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1391:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1363:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1374:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1381:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1370:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1370:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1360:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1360:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1353:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1353:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1350:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1414:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1424:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1414:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1438:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1463:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1474:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1459:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1459:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1453:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1453:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1442:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1545:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1554:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1557:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1547:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1547:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1547:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1500:7:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "1513:7:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1530:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1535:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1526:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1526:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1539:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1522:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1522:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1509:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1509:33:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1497:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1497:46:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1490:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1490:54:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1487:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1570:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1580:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1570:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "797:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "808:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "820:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "828:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "836:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "844:6:84",
                            "type": ""
                          }
                        ],
                        "src": "705:888:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1648:208:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1658:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1678:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1672:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1672:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1662:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1705:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1693:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1693:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1693:19:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1747:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1754:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1743:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1743:16:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1765:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1770:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1761:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1761:14:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1777:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1721:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1721:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1721:63:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1793:57:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1808:3:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1821:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1829:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "1817:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1817:15:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1838:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "not",
                                              "nodeType": "YulIdentifier",
                                              "src": "1834:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1834:7:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1813:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1813:29:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1804:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1804:39:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1845:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1800:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1800:50:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1793:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_string",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1625:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "1632:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1640:3:84",
                            "type": ""
                          }
                        ],
                        "src": "1598:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2074:276:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2084:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2096:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2107:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2092:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2092:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2084:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2127:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2138:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2120:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2120:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2120:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2165:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2176:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2161:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2161:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2181:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2154:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2154:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2154:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2208:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2219:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2204:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2204:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2224:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2197:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2197:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2197:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2251:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2262:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2247:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2247:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "2267:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2240:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2240:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2240:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2294:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2305:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2290:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2290:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "2315:6:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2331:3:84",
                                                "type": "",
                                                "value": "160"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2336:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "2327:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2327:11:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2340:1:84",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "2323:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2323:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2311:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2311:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2283:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2283:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2283:61:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2011:9:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2022:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2030:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2038:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2046:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2054:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2065:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1861:489:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2548:268:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2565:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2576:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2558:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2558:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2558:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2588:59:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2620:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2632:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2643:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2628:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2628:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2602:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2602:45:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2592:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2667:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2678:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2663:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2663:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2687:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2695:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2683:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2683:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2656:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2656:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2656:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2715:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2741:6:84"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2749:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2723:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2723:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2715:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2776:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2787:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2772:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2772:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2796:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2804:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2792:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2792:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2765:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2765:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2765:45:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2501:9:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2512:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2520:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2528:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2539:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2355:461:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2995:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3012:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3023:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3005:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3005:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3005:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3046:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3057:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3042:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3042:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3062:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3035:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3035:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3035:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3085:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3096:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3081:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3081:18:84"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3101:34:84",
                                    "type": "",
                                    "value": "ControlledToken/decimals-gt-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3074:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3074:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3074:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3145:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3157:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3168:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3153:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3153:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3145:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2972:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2986:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2821:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3356:233:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3373:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3384:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3366:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3366:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3366:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3407:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3418:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3403:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3403:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3423:2:84",
                                    "type": "",
                                    "value": "43"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3396:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3396:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3396:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3446:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3457:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3442:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3442:18:84"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3462:34:84",
                                    "type": "",
                                    "value": "ControlledToken/controller-not-z"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3435:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3435:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3435:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3517:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3528:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3513:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3513:18:84"
                                  },
                                  {
                                    "hexValue": "65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3533:13:84",
                                    "type": "",
                                    "value": "ero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3506:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3506:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3506:41:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3556:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3568:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3579:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3564:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3564:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3556:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3333:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3347:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3182:407:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3647:205:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3657:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3666:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3661:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3726:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "3751:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "3756:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3747:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3747:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3770:3:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3775:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "3766:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "3766:11:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3760:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3760:18:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3740:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3740:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3740:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3687:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3690:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3684:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3684:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3698:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3700:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3709:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3712:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3705:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3705:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3700:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3680:3:84",
                                "statements": []
                              },
                              "src": "3676:113:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3815:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "3828:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "3833:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3824:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3824:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3842:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3817:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3817:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3817:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3804:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3807:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3801:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3801:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3798:2:84"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "3625:3:84",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "3630:3:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "3635:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3594:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3912:325:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3922:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3936:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "3939:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "3932:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3932:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "3922:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3953:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "3983:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3989:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "3979:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3979:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "3957:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4030:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4032:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "4046:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4054:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "4042:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4042:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "4032:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "4010:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4003:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4003:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4000:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4120:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4141:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4148:3:84",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4153:10:84",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "4144:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4144:20:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4134:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4134:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4134:31:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4185:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4188:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4178:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4178:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4178:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4213:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4216:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4206:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4206:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4206:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "4076:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "4099:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4107:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4096:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4096:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "4073:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4073:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4070:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "3892:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "3901:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3857:380:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4274:95:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4291:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4298:3:84",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4303:10:84",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "4294:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4294:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4284:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4284:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4284:31:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4331:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4334:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4324:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4324:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4324:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4355:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4358:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "4348:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4348:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4348:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "4242:127:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        if gt(add(add(offset, _1), 0x20), end) { revert(0, 0) }\n        copy_memory_to_memory(add(offset, 0x20), add(memPtr, 0x20), _1)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        let value := mload(add(headStart, 64))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value2 := value\n        let value_1 := mload(add(headStart, 96))\n        if iszero(eq(value_1, and(value_1, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value3 := value_1\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 96)\n        let tail_1 := abi_encode_string(value0, add(headStart, 96))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_string(value1, tail_1)\n        mstore(add(headStart, 64), and(value2, 0xff))\n    }\n    function abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"ControlledToken/decimals-gt-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 43)\n        mstore(add(headStart, 64), \"ControlledToken/controller-not-z\")\n        mstore(add(headStart, 96), \"ero-address\")\n        tail := add(headStart, 128)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\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) { mstore(add(dst, length), 0) }\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "6101a06040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120527f94019368dc6b2ee4ac32010c9d0081ec29874325b541829d001d22c296b5246c610180523480156200005c57600080fd5b5060405162003cbf38038062003cbf8339810160408190526200007f916200041f565b838383836040518060400160405280601c81526020017f506f6f6c546f67657468657220436f6e74726f6c6c6564546f6b656e0000000081525080604051806040016040528060018152602001603160f81b81525086868160039080519060200190620000ee929190620002e8565b50805162000104906004906020840190620002e8565b5050825160209384012082519284019290922060c083815260e08290524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818a018190528183019890985260608101959095526080808601939093523085830152805180860390920182529390920190925280519401939093209092526101005250506001600160a01b038116620002015760405162461bcd60e51b815260206004820152602b60248201527f436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a60448201526a65726f2d6164647265737360a81b60648201526084015b60405180910390fd5b6001600160601b0319606082901b166101405260ff8216620002665760405162461bcd60e51b815260206004820181905260248201527f436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f6044820152606401620001f8565b7fff0000000000000000000000000000000000000000000000000000000000000060f883901b16610160526040516001600160a01b038216907fde72fc29218361f33503847e6f32be813f9ec92fc7c772bb59e46675c890fd0e90620002d290879087908790620004f1565b60405180910390a25050505050505050620005b4565b828054620002f69062000561565b90600052602060002090601f0160209004810192826200031a576000855562000365565b82601f106200033557805160ff191683800117855562000365565b8280016001018555821562000365579182015b828111156200036557825182559160200191906001019062000348565b506200037392915062000377565b5090565b5b8082111562000373576000815560010162000378565b600082601f830112620003a057600080fd5b81516001600160401b0380821115620003bd57620003bd6200059e565b604051601f8301601f19908116603f01168101908282118183101715620003e857620003e86200059e565b816040528381528660208588010111156200040257600080fd5b620004158460208301602089016200052e565b9695505050505050565b600080600080608085870312156200043657600080fd5b84516001600160401b03808211156200044e57600080fd5b6200045c888389016200038e565b955060208701519150808211156200047357600080fd5b5062000482878288016200038e565b935050604085015160ff811681146200049a57600080fd5b60608601519092506001600160a01b0381168114620004b857600080fd5b939692955090935050565b60008151808452620004dd8160208601602086016200052e565b601f01601f19169290920160200192915050565b606081526000620005066060830186620004c3565b82810360208401526200051a8186620004c3565b91505060ff83166040830152949350505050565b60005b838110156200054b57818101518382015260200162000531565b838111156200055b576000848401525b50505050565b600181811c908216806200057657607f821691505b602082108114156200059857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160e05161010051610120516101405160601c6101605160f81c61018051613678620006476000396000610d600152600061031b0152600081816105920152818161077a015281816108d001528181610a6e0152610c950152600061108501526000611669015260006116b801526000611693015260006116170152600061164001526136786000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806368c7fd571161010f57806395d89b41116100a2578063a9059cbb11610071578063a9059cbb1461052e578063d505accf14610541578063dd62ed3e14610554578063f77c47911461058d57600080fd5b806395d89b41146104ed57806398b16f36146104f55780639ecb037014610508578063a457c2d71461051b57600080fd5b80638d22ea2a116100de5780638d22ea2a1461046d5780638e6d536a146104b457806390596dd1146104c7578063919974dc146104da57600080fd5b806368c7fd571461040b57806370a082311461041e5780637ecebe001461044757806385beb5f11461045a57600080fd5b806333e39b61116101875780635c19a95c116101565780635c19a95c146103b25780635d7b0758146103c5578063613ed6bd146103d8578063631b5dfb146103f857600080fd5b806333e39b61146103455780633644e5151461035a57806336bb2a3814610362578063395093511461039f57600080fd5b806323b872dd116101c357806323b872dd1461023d5780632aceb534146102505780632d0dd68614610301578063313ce5671461031457600080fd5b806306fdde03146101ea578063095ea7b31461020857806318160ddd1461022b575b600080fd5b6101f26105b4565b6040516101ff9190613369565b60405180910390f35b61021b6102163660046131c5565b610646565b60405190151581526020016101ff565b6002545b6040519081526020016101ff565b61021b61024b366004612fae565b61065d565b6102c961025e366004612f60565b6040805160608082018352600080835260208084018290529284018190526001600160a01b03949094168452600682529282902082519384018352546001600160d01b038116845262ffffff600160d01b8204811692850192909252600160e81b9004169082015290565b6040805182516001600160d01b0316815260208084015162ffffff9081169183019190915292820151909216908201526060016101ff565b61022f61030f36600461330a565b610723565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016101ff565b610358610353366004612f7b565b61076f565b005b61022f6107f5565b610375610370366004613187565b610804565b6040805182516001600160e01b0316815260209283015163ffffffff1692810192909252016101ff565b61021b6103ad3660046131c5565b61087c565b6103586103c0366004612f60565b6108b8565b6103586103d33660046131c5565b6108c5565b6103eb6103e63660046130b3565b610947565b6040516101ff9190613325565b610358610406366004612fae565b610a63565b6103eb610419366004613106565b610b3c565b61022f61042c366004612f60565b6001600160a01b031660009081526020819052604090205490565b61022f610455366004612f60565b610b6e565b6103eb61046836600461325c565b610b8c565b61049c61047b366004612f60565b6001600160a01b039081166000908152630100000760205260409020541690565b6040516001600160a01b0390911681526020016101ff565b6103eb6104c236600461329e565b610c6f565b6103586104d53660046131c5565b610c8a565b6103586104e8366004613054565b610d0c565b6101f2610e8c565b61022f610503366004613219565b610e9b565b61022f6105163660046131ef565b610f0c565b61021b6105293660046131c5565b610f73565b61021b61053c3660046131c5565b611024565b61035861054f366004612fea565b611031565b61022f610562366004612f7b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61049c7f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546105c390613526565b80601f01602080910402602001604051908101604052809291908181526020018280546105ef90613526565b801561063c5780601f106106115761010080835404028352916020019161063c565b820191906000526020600020905b81548152906001019060200180831161061f57829003601f168201915b5050505050905090565b6000610653338484611195565b5060015b92915050565b600061066a8484846112ed565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107095760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6107168533858403611195565b60019150505b9392505050565b604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090610657906008908442611511565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146107e75760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f1828261153d565b5050565b60006107ff611613565b905090565b60408051808201909152600080825260208201526001600160a01b038316600090815260066020526040902060010161ffff831662ffffff811061084a5761084a6135ea565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201529392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106539185906108b3908690613429565b611195565b6108c2338261153d565b50565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461093d5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f18282611706565b60608160008167ffffffffffffffff81111561096557610965613600565b60405190808252806020026020018201604052801561098e578160200160208202803683370190505b506001600160a01b0387166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b900490931691830191909152929350905b84811015610a5657610a2783600101838a8a85818110610a0c57610a0c6135ea565b9050602002016020810190610a21919061330a565b42611511565b848281518110610a3957610a396135ea565b602090810291909101015280610a4e8161355b565b9150506109ea565b5091979650505050505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610adb5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b816001600160a01b0316836001600160a01b031614610b2d576001600160a01b03828116600090815260016020908152604080832093871683529290522054610b2d90839085906108b39085906134f2565b610b3782826117f1565b505050565b6001600160a01b0385166000908152600660205260409020606090610b649086868686611982565b9695505050505050565b6001600160a01b038116600090815260056020526040812054610657565b60608160008167ffffffffffffffff811115610baa57610baa613600565b604051908082528060200260200182016040528015610bd3578160200160208202803683370190505b50604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915290915060005b83811015610c6457610c35600883898985818110610a0c57610a0c6135ea565b838281518110610c4757610c476135ea565b602090810291909101015280610c5c8161355b565b915050610c15565b509095945050505050565b6060610c7f600786868686611982565b90505b949350505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610d025760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f182826117f1565b83421115610d5c5760405162461bcd60e51b815260206004820181905260248201527f5469636b65742f64656c65676174652d657870697265642d646561646c696e656044820152606401610700565b60007f00000000000000000000000000000000000000000000000000000000000000008787610d8a8a611b21565b6040805160208101959095526001600160a01b039384169085015291166060830152608082015260a0810186905260c0016040516020818303038152906040528051906020012090506000610dde82611b49565b90506000610dee82878787611bb2565b9050886001600160a01b0316816001600160a01b031614610e775760405162461bcd60e51b815260206004820152602160248201527f5469636b65742f64656c65676174652d696e76616c69642d7369676e6174757260448201527f65000000000000000000000000000000000000000000000000000000000000006064820152608401610700565b610e81898961153d565b505050505050505050565b6060600480546105c390613526565b6001600160a01b0383166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b90049093169183019190915290610f03906001830190868642611bda565b95945050505050565b6001600160a01b0382166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b90049093169183019190915290610c829060018301908542611511565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561100d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610700565b61101a3385858403611195565b5060019392505050565b60006106533384846112ed565b834211156110815760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610700565b60007f00000000000000000000000000000000000000000000000000000000000000008888886110b08c611b21565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061110b82611b49565b9050600061111b82878787611bb2565b9050896001600160a01b0316816001600160a01b03161461117e5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610700565b6111898a8a8a611195565b50505050505050505050565b6001600160a01b0383166112105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b03821661128c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113695760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b0382166113e55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610700565b6113f0838383611c12565b6001600160a01b0383166000908152602081905260409020548181101561147f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906114b6908490613429565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161150291815260200190565b60405180910390a35b50505050565b6000808263ffffffff168463ffffffff161161152d578361152f565b825b9050610b6486868386611ca5565b6001600160a01b038281166000908152602081815260408083205463010000079092529091205490919081169083168114156115795750505050565b6001600160a01b03848116600090815263010000076020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169185169190911790556115cd818484611dbe565b826001600160a01b0316846001600160a01b03167f4bc154dd35d6a5cb9206482ecb473cdbf2473006d6bce728b9cc0741bcc59ea260405160405180910390a350505050565b60007f000000000000000000000000000000000000000000000000000000000000000046141561166257507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b03821661175c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610700565b61176860008383611c12565b806002600082825461177a9190613429565b90915550506001600160a01b038216600090815260208190526040812080548392906117a7908490613429565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03821661186d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610700565b61187982600083611c12565b6001600160a01b038216600090815260208190526040902054818110156119085760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b03831660009081526020819052604081208383039055600280548492906119379084906134f2565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6060838281146119fa5760405162461bcd60e51b815260206004820152602360248201527f5469636b65742f73746172742d656e642d74696d65732d6c656e6774682d6d6160448201527f74636800000000000000000000000000000000000000000000000000000000006064820152608401610700565b6040805160608101825288546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915260008267ffffffffffffffff811115611a4f57611a4f613600565b604051908082528060200260200182016040528015611a78578160200160208202803683370190505b5090504260005b84811015611b1257611ae38b600101858c8c85818110611aa157611aa16135ea565b9050602002016020810190611ab6919061330a565b8b8b86818110611ac857611ac86135ea565b9050602002016020810190611add919061330a565b86611bda565b838281518110611af557611af56135ea565b602090810291909101015280611b0a8161355b565b915050611a7f565b50909998505050505050505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b6000610657611b56611613565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611bc387878787611e1e565b91509150611bd081611f0b565b5095945050505050565b6000808263ffffffff168463ffffffff1611611bf65783611bf8565b825b9050611c0787878784876120fc565b979650505050505050565b816001600160a01b0316836001600160a01b03161415611c3157505050565b60006001600160a01b03841615611c6257506001600160a01b03808416600090815263010000076020526040902054165b60006001600160a01b03841615611c9357506001600160a01b03808416600090815263010000076020526040902054165b611c9e828285611dbe565b5050505050565b604080518082019091526000808252602082018190529081906040805180820190915260008082526020820152611cdc8888612198565b60208101519194509150611cfd9063ffffffff908116908890889061221816565b15611d1857505084516001600160d01b03169150610c829050565b6000611d2489896122e9565b6020810151909350909150611d459063ffffffff808a169190899061236616565b15611d57576000945050505050610c82565b611d698985838a8c604001518b612435565b8094508193505050611d848360200151836020015188612602565b63ffffffff1682600001518460000151611d9e91906134ca565b611da89190613461565b6001600160e01b03169998505050505050505050565b6001600160a01b03831615611dee57611dd783826126cc565b6001600160a01b038216611dee57611dee81612821565b6001600160a01b03821615610b3757611e07828261293a565b6001600160a01b038316610b3757610b3781612971565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611e555750600090506003611f02565b8460ff16601b14158015611e6d57508460ff16601c14155b15611e7e5750600090506004611f02565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611ed2573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611efb57600060019250925050611f02565b9150600090505b94509492505050565b6000816004811115611f1f57611f1f6135d4565b1415611f285750565b6001816004811115611f3c57611f3c6135d4565b1415611f8a5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610700565b6002816004811115611f9e57611f9e6135d4565b1415611fec5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610700565b6003816004811115612000576120006135d4565b14156120745760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6004816004811115612088576120886135d4565b14156108c25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b600080600061210b88886122e9565b9150915060008061211c8a8a612198565b9150915060006121328b8b8487878a8f8e61298c565b905060006121468c8c8588888b8f8f61298c565b905061215b816020015183602001518a612602565b63ffffffff168260000151826000015161217591906134ca565b61217f9190613461565b6001600160e01b03169c9b505050505050505050505050565b60408051808201909152600080825260208201819052906121c7836020015162ffffff1662ffffff8016612ad6565b9150838262ffffff1662ffffff81106121e2576121e26135ea565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919491935090915050565b60008163ffffffff168463ffffffff161115801561224257508163ffffffff168363ffffffff1611155b1561225e578263ffffffff168463ffffffff161115905061071c565b60008263ffffffff168563ffffffff161161228d5761228863ffffffff8616640100000000613441565b612295565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116122cd576122c863ffffffff8616640100000000613441565b6122d5565b8463ffffffff165b64ffffffffff169091111595945050505050565b604080518082019091526000808252602082018190529082602001519150838262ffffff1662ffffff8110612320576123206135ea565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290915061235f576000915083826121e2565b9250929050565b60008163ffffffff168463ffffffff161115801561239057508163ffffffff168363ffffffff1611155b156123ab578263ffffffff168463ffffffff1610905061071c565b60008263ffffffff168563ffffffff16116123da576123d563ffffffff8616640100000000613441565b6123e2565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff161161241a5761241563ffffffff8616640100000000613441565b612422565b8463ffffffff165b64ffffffffff1690911095945050505050565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff1610612480578862ffffff1661249b565b600161249162ffffff881684613429565b61249b91906134f2565b905060005b60026124ac8385613429565b6124b69190613487565b90508a6124c8828962ffffff16612b00565b62ffffff1662ffffff81106124df576124df6135ea565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201819052909550806125275761251f826001613429565b9350506124a0565b8b612537838a62ffffff16612b0c565b62ffffff1662ffffff811061254e5761254e6135ea565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b9091048116602083015290955060009061259390838116908c908b9061221816565b90508080156125bc57506125bc8660200151898c63ffffffff166122189092919063ffffffff16565b156125c85750506125f4565b806125df576125d86001846134f2565b93506125ed565b6125ea836001613429565b94505b50506124a0565b505050965096945050505050565b60008163ffffffff168463ffffffff161115801561262c57508163ffffffff168363ffffffff1611155b156126425761263b8385613509565b905061071c565b60008263ffffffff168563ffffffff16116126715761266c63ffffffff8616640100000000613441565b612679565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116126b1576126ac63ffffffff8616640100000000613441565b6126b9565b8463ffffffff165b64ffffffffff169050610b6481836134f2565b806126d5575050565b6001600160a01b0382166000908152600660205260408120908080612739846126fd87612b1c565b6040518060400160405280601b81526020017f5469636b65742f747761622d6275726e2d6c742d62616c616e6365000000000081525042612b9f565b82518754602085015160408601516001600160d01b039093167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b9190921602178755919450925090508015612819576040805183516001600160e01b0316815260208085015163ffffffff16908201526001600160a01b038816917fdd3e7cd3a260a292b0b3306b2ca62f30a7349619a9d09c58109318774c6b627d910160405180910390a25b505050505050565b806128295750565b600080600061285b600761283c86612b1c565b6040518060600160405280602c8152602001613617602c913942612b9f565b825160078054602086015160408701516001600160d01b039094167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b919093160291909117905591945092509050801561150b576040805183516001600160e01b0316815260208085015163ffffffff16908201527f3375b905d617084fa6b7531688cc8046feb1f1a0b8ba2273de03c59d8d84416c910160405180910390a150505050565b80612943575050565b6001600160a01b03821660009081526006602052604081209080806127398461296b87612b1c565b42612c63565b806129795750565b600080600061285b600761296b86612b1c565b60408051808201909152600080825260208201526129bf8383896020015163ffffffff166123669092919063ffffffff16565b156129e3576129dc8789600001516001600160d01b031685612d0c565b9050612aca565b8263ffffffff16876020015163ffffffff161415612a02575085612aca565b8263ffffffff16866020015163ffffffff161415612a21575084612aca565b612a408660200151838563ffffffff166123669092919063ffffffff16565b15612a655750604080518082019091526000815263ffffffff83166020820152612aca565b600080612a7a8b8888888e6040015189612435565b915091506000612a938260200151846020015187612602565b63ffffffff1683600001518360000151612aad91906134ca565b612ab79190613461565b9050612ac4838288612d0c565b93505050505b98975050505050505050565b600081612ae557506000610657565b61071c6001612af48486613429565b612afe91906134f2565b835b600061071c8284613594565b600061071c612afe846001613429565b60006001600160d01b03821115612b9b5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203260448201527f30382062697473000000000000000000000000000000000000000000000000006064820152608401610700565b5090565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825287546001600160d01b0380821680845262ffffff600160d01b840481166020860152600160e81b9093049092169383019390935260009287919089161115612c355760405162461bcd60e51b81526004016107009190613369565b50612c44886001018287612d87565b8251999099036001600160d01b03168252909990985095505050505050565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825286546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090612cdf600188018287612d87565b83519296509094509250612cf49087906133be565b6001600160d01b031684525091959094509092509050565b60408051808201909152600080825260208201526040518060400160405280612d4a8660200151858663ffffffff166126029092919063ffffffff16565b612d5a9063ffffffff168661349b565b8651612d6691906133e9565b6001600160e01b031681526020018363ffffffff1681525090509392505050565b60408051606081018252600080825260208201819052918101919091526040805180820190915260008082526020820152600080612dc58787612198565b9150508463ffffffff16816020015163ffffffff161415612dee57859350915060009050612e65565b6000612e088288600001516001600160d01b031688612d0c565b90508088886020015162ffffff1662ffffff8110612e2857612e286135ea565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556000612e5988612e6e565b95509093506001925050505b93509350939050565b60408051606081018252600080825260208083018290529282015290820151612e9e9062ffffff90811690612b0c565b62ffffff9081166020840152604083015181161015612b9b57600182604001818151612eca919061340b565b62ffffff169052505090565b80356001600160a01b0381168114612eed57600080fd5b919050565b60008083601f840112612f0457600080fd5b50813567ffffffffffffffff811115612f1c57600080fd5b6020830191508360208260051b850101111561235f57600080fd5b803567ffffffffffffffff81168114612eed57600080fd5b803560ff81168114612eed57600080fd5b600060208284031215612f7257600080fd5b61071c82612ed6565b60008060408385031215612f8e57600080fd5b612f9783612ed6565b9150612fa560208401612ed6565b90509250929050565b600080600060608486031215612fc357600080fd5b612fcc84612ed6565b9250612fda60208501612ed6565b9150604084013590509250925092565b600080600080600080600060e0888a03121561300557600080fd5b61300e88612ed6565b965061301c60208901612ed6565b9550604088013594506060880135935061303860808901612f4f565b925060a0880135915060c0880135905092959891949750929550565b60008060008060008060c0878903121561306d57600080fd5b61307687612ed6565b955061308460208801612ed6565b94506040870135935061309960608801612f4f565b92506080870135915060a087013590509295509295509295565b6000806000604084860312156130c857600080fd5b6130d184612ed6565b9250602084013567ffffffffffffffff8111156130ed57600080fd5b6130f986828701612ef2565b9497909650939450505050565b60008060008060006060868803121561311e57600080fd5b61312786612ed6565b9450602086013567ffffffffffffffff8082111561314457600080fd5b61315089838a01612ef2565b9096509450604088013591508082111561316957600080fd5b5061317688828901612ef2565b969995985093965092949392505050565b6000806040838503121561319a57600080fd5b6131a383612ed6565b9150602083013561ffff811681146131ba57600080fd5b809150509250929050565b600080604083850312156131d857600080fd5b6131e183612ed6565b946020939093013593505050565b6000806040838503121561320257600080fd5b61320b83612ed6565b9150612fa560208401612f37565b60008060006060848603121561322e57600080fd5b61323784612ed6565b925061324560208501612f37565b915061325360408501612f37565b90509250925092565b6000806020838503121561326f57600080fd5b823567ffffffffffffffff81111561328657600080fd5b61329285828601612ef2565b90969095509350505050565b600080600080604085870312156132b457600080fd5b843567ffffffffffffffff808211156132cc57600080fd5b6132d888838901612ef2565b909650945060208701359150808211156132f157600080fd5b506132fe87828801612ef2565b95989497509550505050565b60006020828403121561331c57600080fd5b61071c82612f37565b6020808252825182820181905260009190848201906040850190845b8181101561335d57835183529284019291840191600101613341565b50909695505050505050565b600060208083528351808285015260005b818110156133965785810183015185820160400152820161337a565b818111156133a8576000604083870101525b50601f01601f1916929092016040019392505050565b60006001600160d01b038083168185168083038211156133e0576133e06135a8565b01949350505050565b60006001600160e01b038083168185168083038211156133e0576133e06135a8565b600062ffffff8083168185168083038211156133e0576133e06135a8565b6000821982111561343c5761343c6135a8565b500190565b600064ffffffffff8083168185168083038211156133e0576133e06135a8565b60006001600160e01b038084168061347b5761347b6135be565b92169190910492915050565b600082613496576134966135be565b500490565b60006001600160e01b03808316818516818304811182151516156134c1576134c16135a8565b02949350505050565b60006001600160e01b03838116908316818110156134ea576134ea6135a8565b039392505050565b600082821015613504576135046135a8565b500390565b600063ffffffff838116908316818110156134ea576134ea6135a8565b600181811c9082168061353a57607f821691505b60208210811415611b4357634e487b7160e01b600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561358d5761358d6135a8565b5060010190565b6000826135a3576135a36135be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfe5469636b65742f6275726e2d616d6f756e742d657863656564732d746f74616c2d737570706c792d74776162a2646970667358221220f974356d9d1d5deb3e424d9c06159197d81482d3efd8c0fada57d222f39740ec64736f6c63430008060033",
              "opcodes": "PUSH2 0x1A0 PUSH1 0x40 MSTORE PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 PUSH2 0x120 MSTORE PUSH32 0x94019368DC6B2EE4AC32010C9D0081EC29874325B541829D001D22C296B5246C PUSH2 0x180 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x3CBF CODESIZE SUB DUP1 PUSH3 0x3CBF DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x7F SWAP2 PUSH3 0x41F JUMP JUMPDEST DUP4 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1C DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x506F6F6C546F67657468657220436F6E74726F6C6C6564546F6B656E00000000 DUP2 MSTORE POP DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x31 PUSH1 0xF8 SHL DUP2 MSTORE POP DUP7 DUP7 DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xEE SWAP3 SWAP2 SWAP1 PUSH3 0x2E8 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x104 SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x2E8 JUMP JUMPDEST POP POP DUP3 MLOAD PUSH1 0x20 SWAP4 DUP5 ADD KECCAK256 DUP3 MLOAD SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 KECCAK256 PUSH1 0xC0 DUP4 DUP2 MSTORE PUSH1 0xE0 DUP3 SWAP1 MSTORE CHAINID PUSH1 0xA0 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP2 DUP11 ADD DUP2 SWAP1 MSTORE DUP2 DUP4 ADD SWAP9 SWAP1 SWAP9 MSTORE PUSH1 0x60 DUP2 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x80 DUP1 DUP7 ADD SWAP4 SWAP1 SWAP4 MSTORE ADDRESS DUP6 DUP4 ADD MSTORE DUP1 MLOAD DUP1 DUP7 SUB SWAP1 SWAP3 ADD DUP3 MSTORE SWAP4 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP5 ADD SWAP4 SWAP1 SWAP4 KECCAK256 SWAP1 SWAP3 MSTORE PUSH2 0x100 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0x201 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F636F6E74726F6C6C65722D6E6F742D7A PUSH1 0x44 DUP3 ADD MSTORE PUSH11 0x65726F2D61646472657373 PUSH1 0xA8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP3 SWAP1 SHL AND PUSH2 0x140 MSTORE PUSH1 0xFF DUP3 AND PUSH3 0x266 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F646563696D616C732D67742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x1F8 JUMP JUMPDEST PUSH32 0xFF00000000000000000000000000000000000000000000000000000000000000 PUSH1 0xF8 DUP4 SWAP1 SHL AND PUSH2 0x160 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xDE72FC29218361F33503847E6F32BE813F9EC92FC7C772BB59E46675C890FD0E SWAP1 PUSH3 0x2D2 SWAP1 DUP8 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH3 0x4F1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP POP PUSH3 0x5B4 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x2F6 SWAP1 PUSH3 0x561 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x31A JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x365 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x335 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x365 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x365 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x365 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x348 JUMP JUMPDEST POP PUSH3 0x373 SWAP3 SWAP2 POP PUSH3 0x377 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x373 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x378 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x3A0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x3BD JUMPI PUSH3 0x3BD PUSH3 0x59E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x3E8 JUMPI PUSH3 0x3E8 PUSH3 0x59E JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE DUP7 PUSH1 0x20 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x402 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x415 DUP5 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP10 ADD PUSH3 0x52E JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x436 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x44E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x45C DUP9 DUP4 DUP10 ADD PUSH3 0x38E JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x473 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x482 DUP8 DUP3 DUP9 ADD PUSH3 0x38E JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0x49A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x60 DUP7 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x4B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH3 0x4DD DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH3 0x52E JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x0 PUSH3 0x506 PUSH1 0x60 DUP4 ADD DUP7 PUSH3 0x4C3 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x51A DUP2 DUP7 PUSH3 0x4C3 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xFF DUP4 AND PUSH1 0x40 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x54B JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x531 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x55B JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x576 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x598 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x140 MLOAD PUSH1 0x60 SHR PUSH2 0x160 MLOAD PUSH1 0xF8 SHR PUSH2 0x180 MLOAD PUSH2 0x3678 PUSH3 0x647 PUSH1 0x0 CODECOPY PUSH1 0x0 PUSH2 0xD60 ADD MSTORE PUSH1 0x0 PUSH2 0x31B ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x592 ADD MSTORE DUP2 DUP2 PUSH2 0x77A ADD MSTORE DUP2 DUP2 PUSH2 0x8D0 ADD MSTORE DUP2 DUP2 PUSH2 0xA6E ADD MSTORE PUSH2 0xC95 ADD MSTORE PUSH1 0x0 PUSH2 0x1085 ADD MSTORE PUSH1 0x0 PUSH2 0x1669 ADD MSTORE PUSH1 0x0 PUSH2 0x16B8 ADD MSTORE PUSH1 0x0 PUSH2 0x1693 ADD MSTORE PUSH1 0x0 PUSH2 0x1617 ADD MSTORE PUSH1 0x0 PUSH2 0x1640 ADD MSTORE PUSH2 0x3678 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 0x1E5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x68C7FD57 GT PUSH2 0x10F JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x52E JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x541 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x554 JUMPI DUP1 PUSH4 0xF77C4791 EQ PUSH2 0x58D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x4ED JUMPI DUP1 PUSH4 0x98B16F36 EQ PUSH2 0x4F5 JUMPI DUP1 PUSH4 0x9ECB0370 EQ PUSH2 0x508 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x51B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8D22EA2A GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x8D22EA2A EQ PUSH2 0x46D JUMPI DUP1 PUSH4 0x8E6D536A EQ PUSH2 0x4B4 JUMPI DUP1 PUSH4 0x90596DD1 EQ PUSH2 0x4C7 JUMPI DUP1 PUSH4 0x919974DC EQ PUSH2 0x4DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x68C7FD57 EQ PUSH2 0x40B JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x41E JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x447 JUMPI DUP1 PUSH4 0x85BEB5F1 EQ PUSH2 0x45A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E39B61 GT PUSH2 0x187 JUMPI DUP1 PUSH4 0x5C19A95C GT PUSH2 0x156 JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x3B2 JUMPI DUP1 PUSH4 0x5D7B0758 EQ PUSH2 0x3C5 JUMPI DUP1 PUSH4 0x613ED6BD EQ PUSH2 0x3D8 JUMPI DUP1 PUSH4 0x631B5DFB EQ PUSH2 0x3F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E39B61 EQ PUSH2 0x345 JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x36BB2A38 EQ PUSH2 0x362 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x39F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x23D JUMPI DUP1 PUSH4 0x2ACEB534 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0x2D0DD686 EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x314 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1EA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x208 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x22B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F2 PUSH2 0x5B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FF SWAP2 SWAP1 PUSH2 0x3369 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x21B PUSH2 0x216 CALLDATASIZE PUSH1 0x4 PUSH2 0x31C5 JUMP JUMPDEST PUSH2 0x646 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x21B PUSH2 0x24B CALLDATASIZE PUSH1 0x4 PUSH2 0x2FAE JUMP JUMPDEST PUSH2 0x65D JUMP JUMPDEST PUSH2 0x2C9 PUSH2 0x25E CALLDATASIZE PUSH1 0x4 PUSH2 0x2F60 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP1 DUP3 ADD DUP4 MSTORE PUSH1 0x0 DUP1 DUP4 MSTORE PUSH1 0x20 DUP1 DUP5 ADD DUP3 SWAP1 MSTORE SWAP3 DUP5 ADD DUP2 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 SWAP1 SWAP5 AND DUP5 MSTORE PUSH1 0x6 DUP3 MSTORE SWAP3 DUP3 SWAP1 KECCAK256 DUP3 MLOAD SWAP4 DUP5 ADD DUP4 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP5 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP3 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV AND SWAP1 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 DUP3 ADD MLOAD SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x22F PUSH2 0x30F CALLDATASIZE PUSH1 0x4 PUSH2 0x330A JUMP JUMPDEST PUSH2 0x723 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x358 PUSH2 0x353 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F7B JUMP JUMPDEST PUSH2 0x76F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x22F PUSH2 0x7F5 JUMP JUMPDEST PUSH2 0x375 PUSH2 0x370 CALLDATASIZE PUSH1 0x4 PUSH2 0x3187 JUMP JUMPDEST PUSH2 0x804 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x21B PUSH2 0x3AD CALLDATASIZE PUSH1 0x4 PUSH2 0x31C5 JUMP JUMPDEST PUSH2 0x87C JUMP JUMPDEST PUSH2 0x358 PUSH2 0x3C0 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F60 JUMP JUMPDEST PUSH2 0x8B8 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x3D3 CALLDATASIZE PUSH1 0x4 PUSH2 0x31C5 JUMP JUMPDEST PUSH2 0x8C5 JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x3E6 CALLDATASIZE PUSH1 0x4 PUSH2 0x30B3 JUMP JUMPDEST PUSH2 0x947 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FF SWAP2 SWAP1 PUSH2 0x3325 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x406 CALLDATASIZE PUSH1 0x4 PUSH2 0x2FAE JUMP JUMPDEST PUSH2 0xA63 JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x419 CALLDATASIZE PUSH1 0x4 PUSH2 0x3106 JUMP JUMPDEST PUSH2 0xB3C JUMP JUMPDEST PUSH2 0x22F PUSH2 0x42C CALLDATASIZE PUSH1 0x4 PUSH2 0x2F60 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x455 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F60 JUMP JUMPDEST PUSH2 0xB6E JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x468 CALLDATASIZE PUSH1 0x4 PUSH2 0x325C JUMP JUMPDEST PUSH2 0xB8C JUMP JUMPDEST PUSH2 0x49C PUSH2 0x47B CALLDATASIZE PUSH1 0x4 PUSH2 0x2F60 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x4C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x329E JUMP JUMPDEST PUSH2 0xC6F JUMP JUMPDEST PUSH2 0x358 PUSH2 0x4D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x31C5 JUMP JUMPDEST PUSH2 0xC8A JUMP JUMPDEST PUSH2 0x358 PUSH2 0x4E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x3054 JUMP JUMPDEST PUSH2 0xD0C JUMP JUMPDEST PUSH2 0x1F2 PUSH2 0xE8C JUMP JUMPDEST PUSH2 0x22F PUSH2 0x503 CALLDATASIZE PUSH1 0x4 PUSH2 0x3219 JUMP JUMPDEST PUSH2 0xE9B JUMP JUMPDEST PUSH2 0x22F PUSH2 0x516 CALLDATASIZE PUSH1 0x4 PUSH2 0x31EF JUMP JUMPDEST PUSH2 0xF0C JUMP JUMPDEST PUSH2 0x21B PUSH2 0x529 CALLDATASIZE PUSH1 0x4 PUSH2 0x31C5 JUMP JUMPDEST PUSH2 0xF73 JUMP JUMPDEST PUSH2 0x21B PUSH2 0x53C CALLDATASIZE PUSH1 0x4 PUSH2 0x31C5 JUMP JUMPDEST PUSH2 0x1024 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x54F CALLDATASIZE PUSH1 0x4 PUSH2 0x2FEA JUMP JUMPDEST PUSH2 0x1031 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x562 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F7B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x49C PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x5C3 SWAP1 PUSH2 0x3526 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x5EF SWAP1 PUSH2 0x3526 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x63C JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x611 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x63C 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 0x61F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x653 CALLER DUP5 DUP5 PUSH2 0x1195 JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x66A DUP5 DUP5 DUP5 PUSH2 0x12ED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x709 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x716 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x1195 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x657 SWAP1 PUSH1 0x8 SWAP1 DUP5 TIMESTAMP PUSH2 0x1511 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x7E7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x7F1 DUP3 DUP3 PUSH2 0x153D JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7FF PUSH2 0x1613 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD PUSH2 0xFFFF DUP4 AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x84A JUMPI PUSH2 0x84A PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x653 SWAP2 DUP6 SWAP1 PUSH2 0x8B3 SWAP1 DUP7 SWAP1 PUSH2 0x3429 JUMP JUMPDEST PUSH2 0x1195 JUMP JUMPDEST PUSH2 0x8C2 CALLER DUP3 PUSH2 0x153D JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x93D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x7F1 DUP3 DUP3 PUSH2 0x1706 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x965 JUMPI PUSH2 0x965 PUSH2 0x3600 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x98E JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 SWAP4 POP SWAP1 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0xA56 JUMPI PUSH2 0xA27 DUP4 PUSH1 0x1 ADD DUP4 DUP11 DUP11 DUP6 DUP2 DUP2 LT PUSH2 0xA0C JUMPI PUSH2 0xA0C PUSH2 0x35EA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xA21 SWAP2 SWAP1 PUSH2 0x330A JUMP JUMPDEST TIMESTAMP PUSH2 0x1511 JUMP JUMPDEST DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xA39 JUMPI PUSH2 0xA39 PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xA4E DUP2 PUSH2 0x355B JUMP JUMPDEST SWAP2 POP POP PUSH2 0x9EA JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xADB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xB2D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH2 0xB2D SWAP1 DUP4 SWAP1 DUP6 SWAP1 PUSH2 0x8B3 SWAP1 DUP6 SWAP1 PUSH2 0x34F2 JUMP JUMPDEST PUSH2 0xB37 DUP3 DUP3 PUSH2 0x17F1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x60 SWAP1 PUSH2 0xB64 SWAP1 DUP7 DUP7 DUP7 DUP7 PUSH2 0x1982 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x657 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xBAA JUMPI PUSH2 0xBAA PUSH2 0x3600 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xBD3 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xC64 JUMPI PUSH2 0xC35 PUSH1 0x8 DUP4 DUP10 DUP10 DUP6 DUP2 DUP2 LT PUSH2 0xA0C JUMPI PUSH2 0xA0C PUSH2 0x35EA JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xC47 JUMPI PUSH2 0xC47 PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xC5C DUP2 PUSH2 0x355B JUMP JUMPDEST SWAP2 POP POP PUSH2 0xC15 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xC7F PUSH1 0x7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x1982 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xD02 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x7F1 DUP3 DUP3 PUSH2 0x17F1 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0xD5C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F64656C65676174652D657870697265642D646561646C696E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP8 DUP8 PUSH2 0xD8A DUP11 PUSH2 0x1B21 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND SWAP1 DUP6 ADD MSTORE SWAP2 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0xDDE DUP3 PUSH2 0x1B49 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xDEE DUP3 DUP8 DUP8 DUP8 PUSH2 0x1BB2 JUMP JUMPDEST SWAP1 POP DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE77 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F64656C65676174652D696E76616C69642D7369676E61747572 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6500000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0xE81 DUP10 DUP10 PUSH2 0x153D JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x5C3 SWAP1 PUSH2 0x3526 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0xF03 SWAP1 PUSH1 0x1 DUP4 ADD SWAP1 DUP7 DUP7 TIMESTAMP PUSH2 0x1BDA JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0xC82 SWAP1 PUSH1 0x1 DUP4 ADD SWAP1 DUP6 TIMESTAMP PUSH2 0x1511 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x100D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x101A CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x1195 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x653 CALLER DUP5 DUP5 PUSH2 0x12ED JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x1081 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0x10B0 DUP13 PUSH2 0x1B21 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0x110B DUP3 PUSH2 0x1B49 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x111B DUP3 DUP8 DUP8 DUP8 PUSH2 0x1BB2 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x117E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x1189 DUP11 DUP11 DUP11 PUSH2 0x1195 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1210 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x128C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1369 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x13E5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x13F0 DUP4 DUP4 DUP4 PUSH2 0x1C12 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x147F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x14B6 SWAP1 DUP5 SWAP1 PUSH2 0x3429 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1502 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x152D JUMPI DUP4 PUSH2 0x152F JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0xB64 DUP7 DUP7 DUP4 DUP7 PUSH2 0x1CA5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH4 0x1000007 SWAP1 SWAP3 MSTORE SWAP1 SWAP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x1579 JUMPI POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 AND SWAP2 DUP6 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x15CD DUP2 DUP5 DUP5 PUSH2 0x1DBE JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4BC154DD35D6A5CB9206482ECB473CDBF2473006D6BCE728B9CC0741BCC59EA2 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 CHAINID EQ ISZERO PUSH2 0x1662 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH32 0x0 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 DUP3 DUP5 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP4 ADD MSTORE CHAINID PUSH1 0x80 DUP4 ADD MSTORE ADDRESS PUSH1 0xA0 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xC0 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x175C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x1768 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1C12 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x177A SWAP2 SWAP1 PUSH2 0x3429 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x17A7 SWAP1 DUP5 SWAP1 PUSH2 0x3429 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x186D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x1879 DUP3 PUSH1 0x0 DUP4 PUSH2 0x1C12 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x1908 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x1937 SWAP1 DUP5 SWAP1 PUSH2 0x34F2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 DUP3 DUP2 EQ PUSH2 0x19FA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F73746172742D656E642D74696D65732D6C656E6774682D6D61 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7463680000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP9 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1A4F JUMPI PUSH2 0x1A4F PUSH2 0x3600 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1A78 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x1B12 JUMPI PUSH2 0x1AE3 DUP12 PUSH1 0x1 ADD DUP6 DUP13 DUP13 DUP6 DUP2 DUP2 LT PUSH2 0x1AA1 JUMPI PUSH2 0x1AA1 PUSH2 0x35EA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1AB6 SWAP2 SWAP1 PUSH2 0x330A JUMP JUMPDEST DUP12 DUP12 DUP7 DUP2 DUP2 LT PUSH2 0x1AC8 JUMPI PUSH2 0x1AC8 PUSH2 0x35EA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1ADD SWAP2 SWAP1 PUSH2 0x330A JUMP JUMPDEST DUP7 PUSH2 0x1BDA JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1AF5 JUMPI PUSH2 0x1AF5 PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x1B0A DUP2 PUSH2 0x355B JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1A7F JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE SWAP1 JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x657 PUSH2 0x1B56 PUSH2 0x1613 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x22 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x42 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x62 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1BC3 DUP8 DUP8 DUP8 DUP8 PUSH2 0x1E1E JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1BD0 DUP2 PUSH2 0x1F0B JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1BF6 JUMPI DUP4 PUSH2 0x1BF8 JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0x1C07 DUP8 DUP8 DUP8 DUP5 DUP8 PUSH2 0x20FC JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1C31 JUMPI POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x1C62 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x1C93 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND JUMPDEST PUSH2 0x1C9E DUP3 DUP3 DUP6 PUSH2 0x1DBE JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1CDC DUP9 DUP9 PUSH2 0x2198 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP2 SWAP5 POP SWAP2 POP PUSH2 0x1CFD SWAP1 PUSH4 0xFFFFFFFF SWAP1 DUP2 AND SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH2 0x2218 AND JUMP JUMPDEST ISZERO PUSH2 0x1D18 JUMPI POP POP DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP2 POP PUSH2 0xC82 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D24 DUP10 DUP10 PUSH2 0x22E9 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP1 SWAP4 POP SWAP1 SWAP2 POP PUSH2 0x1D45 SWAP1 PUSH4 0xFFFFFFFF DUP1 DUP11 AND SWAP2 SWAP1 DUP10 SWAP1 PUSH2 0x2366 AND JUMP JUMPDEST ISZERO PUSH2 0x1D57 JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0xC82 JUMP JUMPDEST PUSH2 0x1D69 DUP10 DUP6 DUP4 DUP11 DUP13 PUSH1 0x40 ADD MLOAD DUP12 PUSH2 0x2435 JUMP JUMPDEST DUP1 SWAP5 POP DUP2 SWAP4 POP POP POP PUSH2 0x1D84 DUP4 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP9 PUSH2 0x2602 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP5 PUSH1 0x0 ADD MLOAD PUSH2 0x1D9E SWAP2 SWAP1 PUSH2 0x34CA JUMP JUMPDEST PUSH2 0x1DA8 SWAP2 SWAP1 PUSH2 0x3461 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO PUSH2 0x1DEE JUMPI PUSH2 0x1DD7 DUP4 DUP3 PUSH2 0x26CC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1DEE JUMPI PUSH2 0x1DEE DUP2 PUSH2 0x2821 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0xB37 JUMPI PUSH2 0x1E07 DUP3 DUP3 PUSH2 0x293A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xB37 JUMPI PUSH2 0xB37 DUP2 PUSH2 0x2971 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0x1E55 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x3 PUSH2 0x1F02 JUMP JUMPDEST DUP5 PUSH1 0xFF AND PUSH1 0x1B EQ ISZERO DUP1 ISZERO PUSH2 0x1E6D JUMPI POP DUP5 PUSH1 0xFF AND PUSH1 0x1C EQ ISZERO JUMPDEST ISZERO PUSH2 0x1E7E JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x4 PUSH2 0x1F02 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1ED2 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1EFB JUMPI PUSH1 0x0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0x1F02 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1F1F JUMPI PUSH2 0x1F1F PUSH2 0x35D4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1F28 JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1F3C JUMPI PUSH2 0x1F3C PUSH2 0x35D4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1F8A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1F9E JUMPI PUSH2 0x1F9E PUSH2 0x35D4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1FEC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2000 JUMPI PUSH2 0x2000 PUSH2 0x35D4 JUMP JUMPDEST EQ ISZERO PUSH2 0x2074 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x4 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2088 JUMPI PUSH2 0x2088 PUSH2 0x35D4 JUMP JUMPDEST EQ ISZERO PUSH2 0x8C2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x210B DUP9 DUP9 PUSH2 0x22E9 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 PUSH2 0x211C DUP11 DUP11 PUSH2 0x2198 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x2132 DUP12 DUP12 DUP5 DUP8 DUP8 DUP11 DUP16 DUP15 PUSH2 0x298C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2146 DUP13 DUP13 DUP6 DUP9 DUP9 DUP12 DUP16 DUP16 PUSH2 0x298C JUMP JUMPDEST SWAP1 POP PUSH2 0x215B DUP2 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP11 PUSH2 0x2602 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP3 PUSH1 0x0 ADD MLOAD PUSH2 0x2175 SWAP2 SWAP1 PUSH2 0x34CA JUMP JUMPDEST PUSH2 0x217F SWAP2 SWAP1 PUSH2 0x3461 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP13 SWAP12 POP POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH2 0x21C7 DUP4 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP1 AND PUSH2 0x2AD6 JUMP JUMPDEST SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x21E2 JUMPI PUSH2 0x21E2 PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP5 SWAP2 SWAP4 POP SWAP1 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x2242 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x225E JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0x71C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x228D JUMPI PUSH2 0x2288 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3441 JUMP JUMPDEST PUSH2 0x2295 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x22CD JUMPI PUSH2 0x22C8 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3441 JUMP JUMPDEST PUSH2 0x22D5 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP3 PUSH1 0x20 ADD MLOAD SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2320 JUMPI PUSH2 0x2320 PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x235F JUMPI PUSH1 0x0 SWAP2 POP DUP4 DUP3 PUSH2 0x21E2 JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x2390 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x23AB JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND LT SWAP1 POP PUSH2 0x71C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x23DA JUMPI PUSH2 0x23D5 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3441 JUMP JUMPDEST PUSH2 0x23E2 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x241A JUMPI PUSH2 0x2415 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3441 JUMP JUMPDEST PUSH2 0x2422 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 LT SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0x2480 JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0x249B JUMP JUMPDEST PUSH1 0x1 PUSH2 0x2491 PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x3429 JUMP JUMPDEST PUSH2 0x249B SWAP2 SWAP1 PUSH2 0x34F2 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0x24AC DUP4 DUP6 PUSH2 0x3429 JUMP JUMPDEST PUSH2 0x24B6 SWAP2 SWAP1 PUSH2 0x3487 JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0x24C8 DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0x2B00 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x24DF JUMPI PUSH2 0x24DF PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0x2527 JUMPI PUSH2 0x251F DUP3 PUSH1 0x1 PUSH2 0x3429 JUMP JUMPDEST SWAP4 POP POP PUSH2 0x24A0 JUMP JUMPDEST DUP12 PUSH2 0x2537 DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0x2B0C JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x254E JUMPI PUSH2 0x254E PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0x2593 SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0x2218 AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x25BC JUMPI POP PUSH2 0x25BC DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0x2218 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x25C8 JUMPI POP POP PUSH2 0x25F4 JUMP JUMPDEST DUP1 PUSH2 0x25DF JUMPI PUSH2 0x25D8 PUSH1 0x1 DUP5 PUSH2 0x34F2 JUMP JUMPDEST SWAP4 POP PUSH2 0x25ED JUMP JUMPDEST PUSH2 0x25EA DUP4 PUSH1 0x1 PUSH2 0x3429 JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0x24A0 JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x262C JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x2642 JUMPI PUSH2 0x263B DUP4 DUP6 PUSH2 0x3509 JUMP JUMPDEST SWAP1 POP PUSH2 0x71C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x2671 JUMPI PUSH2 0x266C PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3441 JUMP JUMPDEST PUSH2 0x2679 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x26B1 JUMPI PUSH2 0x26AC PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3441 JUMP JUMPDEST PUSH2 0x26B9 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH2 0xB64 DUP2 DUP4 PUSH2 0x34F2 JUMP JUMPDEST DUP1 PUSH2 0x26D5 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP1 DUP1 PUSH2 0x2739 DUP5 PUSH2 0x26FD DUP8 PUSH2 0x2B1C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1B DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5469636B65742F747761622D6275726E2D6C742D62616C616E63650000000000 DUP2 MSTORE POP TIMESTAMP PUSH2 0x2B9F JUMP JUMPDEST DUP3 MLOAD DUP8 SLOAD PUSH1 0x20 DUP6 ADD MLOAD PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP4 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP3 AND MUL OR DUP8 SSTORE SWAP2 SWAP5 POP SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x2819 JUMPI PUSH1 0x40 DUP1 MLOAD DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH32 0xDD3E7CD3A260A292B0B3306B2CA62F30A7349619A9D09C58109318774C6B627D SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH2 0x2829 JUMPI POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x285B PUSH1 0x7 PUSH2 0x283C DUP7 PUSH2 0x2B1C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2C DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3617 PUSH1 0x2C SWAP2 CODECOPY TIMESTAMP PUSH2 0x2B9F JUMP JUMPDEST DUP3 MLOAD PUSH1 0x7 DUP1 SLOAD PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x40 DUP8 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP5 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP4 AND MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE SWAP2 SWAP5 POP SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x150B JUMPI PUSH1 0x40 DUP1 MLOAD DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 DUP3 ADD MSTORE PUSH32 0x3375B905D617084FA6B7531688CC8046FEB1F1A0B8BA2273DE03C59D8D84416C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP JUMP JUMPDEST DUP1 PUSH2 0x2943 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP1 DUP1 PUSH2 0x2739 DUP5 PUSH2 0x296B DUP8 PUSH2 0x2B1C JUMP JUMPDEST TIMESTAMP PUSH2 0x2C63 JUMP JUMPDEST DUP1 PUSH2 0x2979 JUMPI POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x285B PUSH1 0x7 PUSH2 0x296B DUP7 PUSH2 0x2B1C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x29BF DUP4 DUP4 DUP10 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x2366 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x29E3 JUMPI PUSH2 0x29DC DUP8 DUP10 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP6 PUSH2 0x2D0C JUMP JUMPDEST SWAP1 POP PUSH2 0x2ACA JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x2A02 JUMPI POP DUP6 PUSH2 0x2ACA JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x2A21 JUMPI POP DUP5 PUSH2 0x2ACA JUMP JUMPDEST PUSH2 0x2A40 DUP7 PUSH1 0x20 ADD MLOAD DUP4 DUP6 PUSH4 0xFFFFFFFF AND PUSH2 0x2366 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x2A65 JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2ACA JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x2A7A DUP12 DUP9 DUP9 DUP9 DUP15 PUSH1 0x40 ADD MLOAD DUP10 PUSH2 0x2435 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x2A93 DUP3 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x20 ADD MLOAD DUP8 PUSH2 0x2602 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x0 ADD MLOAD DUP4 PUSH1 0x0 ADD MLOAD PUSH2 0x2AAD SWAP2 SWAP1 PUSH2 0x34CA JUMP JUMPDEST PUSH2 0x2AB7 SWAP2 SWAP1 PUSH2 0x3461 JUMP JUMPDEST SWAP1 POP PUSH2 0x2AC4 DUP4 DUP3 DUP9 PUSH2 0x2D0C JUMP JUMPDEST SWAP4 POP POP POP POP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x2AE5 JUMPI POP PUSH1 0x0 PUSH2 0x657 JUMP JUMPDEST PUSH2 0x71C PUSH1 0x1 PUSH2 0x2AF4 DUP5 DUP7 PUSH2 0x3429 JUMP JUMPDEST PUSH2 0x2AFE SWAP2 SWAP1 PUSH2 0x34F2 JUMP JUMPDEST DUP4 JUMPDEST PUSH1 0x0 PUSH2 0x71C DUP3 DUP5 PUSH2 0x3594 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x71C PUSH2 0x2AFE DUP5 PUSH1 0x1 PUSH2 0x3429 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP3 GT ISZERO PUSH2 0x2B9B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2032 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x3038206269747300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP5 DIV DUP2 AND PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x0 SWAP3 DUP8 SWAP2 SWAP1 DUP10 AND GT ISZERO PUSH2 0x2C35 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x700 SWAP2 SWAP1 PUSH2 0x3369 JUMP JUMPDEST POP PUSH2 0x2C44 DUP9 PUSH1 0x1 ADD DUP3 DUP8 PUSH2 0x2D87 JUMP JUMPDEST DUP3 MLOAD SWAP10 SWAP1 SWAP10 SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP3 MSTORE SWAP1 SWAP10 SWAP1 SWAP9 POP SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x2CDF PUSH1 0x1 DUP9 ADD DUP3 DUP8 PUSH2 0x2D87 JUMP JUMPDEST DUP4 MLOAD SWAP3 SWAP7 POP SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x2CF4 SWAP1 DUP8 SWAP1 PUSH2 0x33BE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP5 MSTORE POP SWAP2 SWAP6 SWAP1 SWAP5 POP SWAP1 SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x2D4A DUP7 PUSH1 0x20 ADD MLOAD DUP6 DUP7 PUSH4 0xFFFFFFFF AND PUSH2 0x2602 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x2D5A SWAP1 PUSH4 0xFFFFFFFF AND DUP7 PUSH2 0x349B JUMP JUMPDEST DUP7 MLOAD PUSH2 0x2D66 SWAP2 SWAP1 PUSH2 0x33E9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP1 PUSH2 0x2DC5 DUP8 DUP8 PUSH2 0x2198 JUMP JUMPDEST SWAP2 POP POP DUP5 PUSH4 0xFFFFFFFF AND DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x2DEE JUMPI DUP6 SWAP4 POP SWAP2 POP PUSH1 0x0 SWAP1 POP PUSH2 0x2E65 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E08 DUP3 DUP9 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP9 PUSH2 0x2D0C JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP9 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2E28 JUMPI PUSH2 0x2E28 PUSH2 0x35EA JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE PUSH1 0x0 PUSH2 0x2E59 DUP9 PUSH2 0x2E6E JUMP JUMPDEST SWAP6 POP SWAP1 SWAP4 POP PUSH1 0x1 SWAP3 POP POP POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP3 DUP3 ADD MSTORE SWAP1 DUP3 ADD MLOAD PUSH2 0x2E9E SWAP1 PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP1 PUSH2 0x2B0C JUMP JUMPDEST PUSH3 0xFFFFFF SWAP1 DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD DUP2 AND LT ISZERO PUSH2 0x2B9B JUMPI PUSH1 0x1 DUP3 PUSH1 0x40 ADD DUP2 DUP2 MLOAD PUSH2 0x2ECA SWAP2 SWAP1 PUSH2 0x340B JUMP JUMPDEST PUSH3 0xFFFFFF AND SWAP1 MSTORE POP POP SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2EED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2F04 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2F1C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x235F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2EED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x2EED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2F72 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x71C DUP3 PUSH2 0x2ED6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2F8E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2F97 DUP4 PUSH2 0x2ED6 JUMP JUMPDEST SWAP2 POP PUSH2 0x2FA5 PUSH1 0x20 DUP5 ADD PUSH2 0x2ED6 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2FC3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2FCC DUP5 PUSH2 0x2ED6 JUMP JUMPDEST SWAP3 POP PUSH2 0x2FDA PUSH1 0x20 DUP6 ADD PUSH2 0x2ED6 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x3005 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x300E DUP9 PUSH2 0x2ED6 JUMP JUMPDEST SWAP7 POP PUSH2 0x301C PUSH1 0x20 DUP10 ADD PUSH2 0x2ED6 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x3038 PUSH1 0x80 DUP10 ADD PUSH2 0x2F4F JUMP JUMPDEST SWAP3 POP PUSH1 0xA0 DUP9 ADD CALLDATALOAD SWAP2 POP PUSH1 0xC0 DUP9 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x306D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3076 DUP8 PUSH2 0x2ED6 JUMP JUMPDEST SWAP6 POP PUSH2 0x3084 PUSH1 0x20 DUP9 ADD PUSH2 0x2ED6 JUMP JUMPDEST SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x3099 PUSH1 0x60 DUP9 ADD PUSH2 0x2F4F JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD SWAP2 POP PUSH1 0xA0 DUP8 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x30C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x30D1 DUP5 PUSH2 0x2ED6 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x30ED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x30F9 DUP7 DUP3 DUP8 ADD PUSH2 0x2EF2 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x311E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3127 DUP7 PUSH2 0x2ED6 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x3144 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3150 DUP10 DUP4 DUP11 ADD PUSH2 0x2EF2 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x3169 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3176 DUP9 DUP3 DUP10 ADD PUSH2 0x2EF2 JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x319A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x31A3 DUP4 PUSH2 0x2ED6 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x31BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x31D8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x31E1 DUP4 PUSH2 0x2ED6 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3202 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x320B DUP4 PUSH2 0x2ED6 JUMP JUMPDEST SWAP2 POP PUSH2 0x2FA5 PUSH1 0x20 DUP5 ADD PUSH2 0x2F37 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x322E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3237 DUP5 PUSH2 0x2ED6 JUMP JUMPDEST SWAP3 POP PUSH2 0x3245 PUSH1 0x20 DUP6 ADD PUSH2 0x2F37 JUMP JUMPDEST SWAP2 POP PUSH2 0x3253 PUSH1 0x40 DUP6 ADD PUSH2 0x2F37 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x326F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3286 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3292 DUP6 DUP3 DUP7 ADD PUSH2 0x2EF2 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x32B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x32CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x32D8 DUP9 DUP4 DUP10 ADD PUSH2 0x2EF2 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x32F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x32FE DUP8 DUP3 DUP9 ADD PUSH2 0x2EF2 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x331C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x71C DUP3 PUSH2 0x2F37 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x335D JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x3341 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3396 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x337A JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x33A8 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x33E0 JUMPI PUSH2 0x33E0 PUSH2 0x35A8 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x33E0 JUMPI PUSH2 0x33E0 PUSH2 0x35A8 JUMP JUMPDEST PUSH1 0x0 PUSH3 0xFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x33E0 JUMPI PUSH2 0x33E0 PUSH2 0x35A8 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x343C JUMPI PUSH2 0x343C PUSH2 0x35A8 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x33E0 JUMPI PUSH2 0x33E0 PUSH2 0x35A8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP5 AND DUP1 PUSH2 0x347B JUMPI PUSH2 0x347B PUSH2 0x35BE JUMP JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x3496 JUMPI PUSH2 0x3496 PUSH2 0x35BE JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x34C1 JUMPI PUSH2 0x34C1 PUSH2 0x35A8 JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x34EA JUMPI PUSH2 0x34EA PUSH2 0x35A8 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x3504 JUMPI PUSH2 0x3504 PUSH2 0x35A8 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x34EA JUMPI PUSH2 0x34EA PUSH2 0x35A8 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x353A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1B43 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x358D JUMPI PUSH2 0x358D PUSH2 0x35A8 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x35A3 JUMPI PUSH2 0x35A3 PUSH2 0x35BE JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID SLOAD PUSH10 0x636B65742F6275726E2D PUSH2 0x6D6F PUSH22 0x6E742D657863656564732D746F74616C2D737570706C PUSH26 0x2D74776162A2646970667358221220F974356D9D1D5DEB3E424D SWAP13 MOD ISZERO SWAP2 SWAP8 0xD8 EQ DUP3 0xD3 0xEF 0xD8 0xC0 STATICCALL 0xDA JUMPI 0xD2 0x22 RETURN SWAP8 BLOCKHASH 0xEC PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "897:12604:36:-:0;;;1049:95:4;996:148;;1130:83:36;1075:138;;1988:190;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2136:5;2143:7;2152:9;2163:11;1376:52:4;;;;;;;;;;;;;;;;;1415:4;2340:564:16;;;;;;;;;;;;;-1:-1:-1;;;2340:564:16;;;1682:5:28;1689:7;1980:5:1;1972;:13;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1995:17:1;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;;2426:22:16;;;;;;;2482:25;;;;;;;;;2663;;;;2698:31;;;;2758:13;2739:32;;;;-1:-1:-1;3447:73:16;;2536:117;3447:73;;;2120:25:84;;;2161:18;;;2154:34;;;;2204:18;;;2197:34;;;;2247:18;;;;2240:34;;;;3514:4:16;2290:19:84;;;2283:61;3447:73:16;;;;;;;;;;2092:19:84;;;;3447:73:16;;;3437:84;;;;;;;;2781:85;;;2876:21;;-1:-1:-1;;;;;;;1716:34:28;::::2;1708:90;;;::::0;-1:-1:-1;;;1708:90:28;;3384:2:84;1708:90:28::2;::::0;::::2;3366:21:84::0;3423:2;3403:18;;;3396:30;3462:34;3442:18;;;3435:62;-1:-1:-1;;;3513:18:84;;;3506:41;3564:19;;1708:90:28::2;;;;;;;;;-1:-1:-1::0;;;;;;1808:24:28::2;::::0;;;;::::2;::::0;1851:13:::2;::::0;::::2;1843:58;;;::::0;-1:-1:-1;;;1843:58:28;;3023:2:84;1843:58:28::2;::::0;::::2;3005:21:84::0;;;3042:18;;;3035:30;3101:34;3081:18;;;3074:62;3153:18;;1843:58:28::2;2995:182:84::0;1843:58:28::2;1911:21:::0;::::2;::::0;;;;::::2;::::0;1948:48:::2;::::0;-1:-1:-1;;;;;1948:48:28;::::2;::::0;::::2;::::0;::::2;::::0;1957:5;;1964:7;;1923:9;;1948:48:::2;:::i;:::-;;;;;;;;1500:503:::0;;;;1988:190:36;;;;897:12604;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;897:12604:36;;;-1:-1:-1;897:12604:36;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:686:84;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;;;;;224:10:84;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:84;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;577:3;570:4;565:2;557:6;553:15;549:26;546:35;543:2;;;594:1;591;584:12;543:2;607:63;667:2;660:4;652:6;648:17;641:4;633:6;629:17;607:63;:::i;:::-;688:6;78:622;-1:-1:-1;;;;;;78:622:84:o;705:888::-;820:6;828;836;844;897:3;885:9;876:7;872:23;868:33;865:2;;;914:1;911;904:12;865:2;941:16;;-1:-1:-1;;;;;1006:14:84;;;1003:2;;;1033:1;1030;1023:12;1003:2;1056:61;1109:7;1100:6;1089:9;1085:22;1056:61;:::i;:::-;1046:71;;1163:2;1152:9;1148:18;1142:25;1126:41;;1192:2;1182:8;1179:16;1176:2;;;1208:1;1205;1198:12;1176:2;;1231:63;1286:7;1275:8;1264:9;1260:24;1231:63;:::i;:::-;1221:73;;;1337:2;1326:9;1322:18;1316:25;1381:4;1374:5;1370:16;1363:5;1360:27;1350:2;;1401:1;1398;1391:12;1350:2;1474;1459:18;;1453:25;1424:5;;-1:-1:-1;;;;;;1509:33:84;;1497:46;;1487:2;;1557:1;1554;1547:12;1487:2;855:738;;;;-1:-1:-1;855:738:84;;-1:-1:-1;;855:738:84:o;1598:258::-;1640:3;1678:5;1672:12;1705:6;1700:3;1693:19;1721:63;1777:6;1770:4;1765:3;1761:14;1754:4;1747:5;1743:16;1721:63;:::i;:::-;1838:2;1817:15;-1:-1:-1;;1813:29:84;1804:39;;;;1845:4;1800:50;;1648:208;-1:-1:-1;;1648:208:84:o;2355:461::-;2576:2;2565:9;2558:21;2539:4;2602:45;2643:2;2632:9;2628:18;2620:6;2602:45;:::i;:::-;2695:9;2687:6;2683:22;2678:2;2667:9;2663:18;2656:50;2723:33;2749:6;2741;2723:33;:::i;:::-;2715:41;;;2804:4;2796:6;2792:17;2787:2;2776:9;2772:18;2765:45;2548:268;;;;;;:::o;3594:258::-;3666:1;3676:113;3690:6;3687:1;3684:13;3676:113;;;3766:11;;;3760:18;3747:11;;;3740:39;3712:2;3705:10;3676:113;;;3807:6;3804:1;3801:13;3798:2;;;3842:1;3833:6;3828:3;3824:16;3817:27;3798:2;;3647:205;;;:::o;3857:380::-;3936:1;3932:12;;;;3979;;;4000:2;;4054:4;4046:6;4042:17;4032:27;;4000:2;4107;4099:6;4096:14;4076:18;4073:38;4070:2;;;4153:10;4148:3;4144:20;4141:1;4134:31;4188:4;4185:1;4178:15;4216:4;4213:1;4206:15;4070:2;;3912:325;;;:::o;4242:127::-;4303:10;4298:3;4294:20;4291:1;4284:31;4334:4;4331:1;4324:15;4358:4;4355:1;4348:15;4274:95;897:12604:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@DOMAIN_SEPARATOR_827": {
                  "entryPoint": 2037,
                  "id": 827,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_afterTokenTransfer_584": {
                  "entryPoint": null,
                  "id": 584,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_562": {
                  "entryPoint": 4501,
                  "id": 562,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_10657": {
                  "entryPoint": 7186,
                  "id": 10657,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_3178": {
                  "entryPoint": null,
                  "id": 3178,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_burn_517": {
                  "entryPoint": 6129,
                  "id": 517,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_calculateTwab_13452": {
                  "entryPoint": 10636,
                  "id": 13452,
                  "parameterSlots": 8,
                  "returnSlots": 1
                },
                "@_computeNextTwab_13484": {
                  "entryPoint": 11532,
                  "id": 13484,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_decreaseTotalSupplyTwab_10891": {
                  "entryPoint": 10273,
                  "id": 10891,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_decreaseUserTwab_10841": {
                  "entryPoint": 9932,
                  "id": 10841,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_delegate_10505": {
                  "entryPoint": 5437,
                  "id": 10505,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_domainSeparatorV4_3151": {
                  "entryPoint": 5651,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_getAverageBalanceBetween_13227": {
                  "entryPoint": 8444,
                  "id": 13227,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@_getAverageBalancesBetween_10600": {
                  "entryPoint": 6530,
                  "id": 10600,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@_getBalanceAt_13334": {
                  "entryPoint": 7333,
                  "id": 13334,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@_hashTypedDataV4_3194": {
                  "entryPoint": 6985,
                  "id": 3194,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_increaseTotalSupplyTwab_10940": {
                  "entryPoint": 10609,
                  "id": 10940,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_increaseUserTwab_10779": {
                  "entryPoint": 10554,
                  "id": 10779,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_mint_445": {
                  "entryPoint": 5894,
                  "id": 445,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_msgSender_2403": {
                  "entryPoint": null,
                  "id": 2403,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_nextTwab_13559": {
                  "entryPoint": 11655,
                  "id": 13559,
                  "parameterSlots": 3,
                  "returnSlots": 3
                },
                "@_throwError_2753": {
                  "entryPoint": 7947,
                  "id": 2753,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_transferTwab_10718": {
                  "entryPoint": 7614,
                  "id": 10718,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_transfer_389": {
                  "entryPoint": 4845,
                  "id": 389,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_useNonce_856": {
                  "entryPoint": 6945,
                  "id": 856,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@allowance_177": {
                  "entryPoint": null,
                  "id": 177,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_198": {
                  "entryPoint": 1606,
                  "id": 198,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_138": {
                  "entryPoint": null,
                  "id": 138,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@binarySearch_12591": {
                  "entryPoint": 9269,
                  "id": 12591,
                  "parameterSlots": 6,
                  "returnSlots": 2
                },
                "@checkedSub_12763": {
                  "entryPoint": 9730,
                  "id": 12763,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@controllerBurnFrom_5277": {
                  "entryPoint": 2659,
                  "id": 5277,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@controllerBurn_5242": {
                  "entryPoint": 3210,
                  "id": 5242,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controllerDelegateFor_10378": {
                  "entryPoint": 1903,
                  "id": 10378,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controllerMint_5225": {
                  "entryPoint": 2245,
                  "id": 5225,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controller_5123": {
                  "entryPoint": null,
                  "id": 5123,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@current_2431": {
                  "entryPoint": null,
                  "id": 2431,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_5287": {
                  "entryPoint": null,
                  "id": 5287,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_312": {
                  "entryPoint": 3955,
                  "id": 312,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@decreaseBalance_12984": {
                  "entryPoint": 11167,
                  "id": 12984,
                  "parameterSlots": 4,
                  "returnSlots": 3
                },
                "@delegateOf_10361": {
                  "entryPoint": null,
                  "id": 10361,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@delegateWithSignature_10447": {
                  "entryPoint": 3340,
                  "id": 10447,
                  "parameterSlots": 6,
                  "returnSlots": 0
                },
                "@delegate_10461": {
                  "entryPoint": 2232,
                  "id": 10461,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@getAccountDetails_10017": {
                  "entryPoint": null,
                  "id": 10017,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getAverageBalanceBetween_10165": {
                  "entryPoint": 3739,
                  "id": 10165,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getAverageBalanceBetween_13022": {
                  "entryPoint": 7130,
                  "id": 13022,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@getAverageBalancesBetween_10100": {
                  "entryPoint": 2876,
                  "id": 10100,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@getAverageTotalSuppliesBetween_10121": {
                  "entryPoint": 3183,
                  "id": 10121,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@getBalanceAt_10075": {
                  "entryPoint": 3852,
                  "id": 10075,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getBalanceAt_13138": {
                  "entryPoint": 5393,
                  "id": 13138,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@getBalancesAt_10248": {
                  "entryPoint": 2375,
                  "id": 10248,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getTotalSuppliesAt_10347": {
                  "entryPoint": 2956,
                  "id": 10347,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getTotalSupplyAt_10275": {
                  "entryPoint": 1827,
                  "id": 10275,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getTwab_10037": {
                  "entryPoint": 2052,
                  "id": 10037,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_273": {
                  "entryPoint": 2172,
                  "id": 273,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseBalance_12929": {
                  "entryPoint": 11363,
                  "id": 12929,
                  "parameterSlots": 3,
                  "returnSlots": 3
                },
                "@increment_2445": {
                  "entryPoint": null,
                  "id": 2445,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@lt_12650": {
                  "entryPoint": 9062,
                  "id": 12650,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@lte_12705": {
                  "entryPoint": 8728,
                  "id": 12705,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@name_94": {
                  "entryPoint": 1460,
                  "id": 94,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@newestIndex_12830": {
                  "entryPoint": 10966,
                  "id": 12830,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@newestTwab_13103": {
                  "entryPoint": 8600,
                  "id": 13103,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "@nextIndex_12848": {
                  "entryPoint": 11020,
                  "id": 12848,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nonces_816": {
                  "entryPoint": 2926,
                  "id": 816,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@oldestTwab_13067": {
                  "entryPoint": 8937,
                  "id": 13067,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "@permit_800": {
                  "entryPoint": 4145,
                  "id": 800,
                  "parameterSlots": 7,
                  "returnSlots": 0
                },
                "@push_13598": {
                  "entryPoint": 11886,
                  "id": 13598,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@recover_3019": {
                  "entryPoint": 7090,
                  "id": 3019,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@symbol_104": {
                  "entryPoint": 3724,
                  "id": 104,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@toTypedDataHash_3056": {
                  "entryPoint": null,
                  "id": 3056,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@toUint208_12407": {
                  "entryPoint": 11036,
                  "id": 12407,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@totalSupply_124": {
                  "entryPoint": null,
                  "id": 124,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_246": {
                  "entryPoint": 1629,
                  "id": 246,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_159": {
                  "entryPoint": 4132,
                  "id": 159,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@tryRecover_2986": {
                  "entryPoint": 7710,
                  "id": 2986,
                  "parameterSlots": 4,
                  "returnSlots": 2
                },
                "@wrap_12781": {
                  "entryPoint": 11008,
                  "id": 12781,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_address": {
                  "entryPoint": 11990,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_array_uint64_dyn_calldata": {
                  "entryPoint": 12018,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 12128,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 12155,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 12206,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32": {
                  "entryPoint": 12266,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 7
                },
                "abi_decode_tuple_t_addresst_addresst_uint256t_uint8t_bytes32t_bytes32": {
                  "entryPoint": 12372,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 6
                },
                "abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptr": {
                  "entryPoint": 12467,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr": {
                  "entryPoint": 12550,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_addresst_uint16": {
                  "entryPoint": 12679,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 12741,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint64": {
                  "entryPoint": 12783,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint64t_uint64": {
                  "entryPoint": 12825,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptr": {
                  "entryPoint": 12892,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr": {
                  "entryPoint": 12958,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_uint64": {
                  "entryPoint": 13066,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint64": {
                  "entryPoint": 12087,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint8": {
                  "entryPoint": 12111,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 13093,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 7,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 13161,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_39ab2e4ed03130f2bab737445eefa0170013f2d5d6416c5398200851ee691d09__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c485dc2a924c6dd174a7f3539c902d57d6264aa0653fd1afa5b4084da601fff7__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d26de55e8ec40107d038a21c3ec11785680740c032de3f1a47bf117807198f53__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_AccountDetails_$12873_memory_ptr__to_t_struct$_AccountDetails_$12873_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Observation_$12454_memory_ptr__to_t_struct$_Observation_$12454_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint208": {
                  "entryPoint": 13246,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint224": {
                  "entryPoint": 13289,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint24": {
                  "entryPoint": 13323,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 13353,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint40": {
                  "entryPoint": 13377,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint224": {
                  "entryPoint": 13409,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 13447,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint224": {
                  "entryPoint": 13467,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint224": {
                  "entryPoint": 13514,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 13554,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 13577,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 13606,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 13659,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "mod_t_uint256": {
                  "entryPoint": 13716,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 13736,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x12": {
                  "entryPoint": 13758,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x21": {
                  "entryPoint": 13780,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 13802,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 13824,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:24922:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "298:283:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "347:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "356:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "359:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "349:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "349:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "349:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "326:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "334:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "322:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "322:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "341:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "318:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "318:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "311:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "311:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "308:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "372:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "395:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "382:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "382:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "372:6:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "445:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "454:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "457:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "447:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "447:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "447:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "417:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "425:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "414:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "414:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "411:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "470:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "486:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "494:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "482:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "482:17:84"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "470:8:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "559:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "568:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "571:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "561:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "561:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "561:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "522:6:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "534:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "537:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "530:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "530:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "518:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "518:27:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "547:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "514:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "514:38:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "554:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "511:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "511:47:84"
                              },
                              "nodeType": "YulIf",
                              "src": "508:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint64_dyn_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "261:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "269:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "277:8:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "287:6:84",
                            "type": ""
                          }
                        ],
                        "src": "215:366:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "634:123:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "644:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "666:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "653:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "653:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "644:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "735:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "744:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "747:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "737:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "737:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "737:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "695:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "706:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "713:18:84",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "702:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "702:30:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "692:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "692:41:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "685:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "685:49:84"
                              },
                              "nodeType": "YulIf",
                              "src": "682:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "613:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "624:5:84",
                            "type": ""
                          }
                        ],
                        "src": "586:171:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "809:109:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "819:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "841:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "828:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "828:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "819:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "896:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "905:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "908:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "898:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "898:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "898:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "870:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "881:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "888:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "877:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "877:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "867:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "867:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "860:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "860:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "857:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "788:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "799:5:84",
                            "type": ""
                          }
                        ],
                        "src": "762:156:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "993:116:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1039:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1048:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1051:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1041:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1041:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1041:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1014:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1023:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1010:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1010:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1035:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1006:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1006:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1003:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1064:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1093:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1074:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1074:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1064:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "959:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "970:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "982:6:84",
                            "type": ""
                          }
                        ],
                        "src": "923:186:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1201:173:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1247:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1256:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1259:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1249:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1249:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1249:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1222:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1231:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1218:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1218:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1243:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1214:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1214:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1211:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1272:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1301:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1282:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1282:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1272:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1320:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1353:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1364:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1349:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1349:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1330:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1330:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1320:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1159:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1170:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1182:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1190:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1114:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1483:224:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1529:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1538:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1541:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1531:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1531:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1531:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1504:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1513:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1500:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1500:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1525:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1496:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1496:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1493:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1554:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1583:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1564:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1564:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1554:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1602:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1635:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1646:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1631:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1631:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1612:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1612:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1602:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1659:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1686:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1697:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1682:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1682:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1669:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1669:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1659:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1433:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1444:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1456:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1464:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1472:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1379:328:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1882:436:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1929:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1938:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1941:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1931:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1931:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1931:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1903:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1912:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1899:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1899:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1924:3:84",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1895:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1895:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1892:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1954:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1983:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1964:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1964:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1954:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2002:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2035:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2046:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2031:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2031:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2012:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2012:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2002:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2059:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2086:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2097:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2082:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2082:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2069:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2069:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2059:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2110:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2137:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2148:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2133:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2133:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2120:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2120:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2110:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2161:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2192:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2203:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2188:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2188:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "2171:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2171:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2161:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2217:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2244:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2255:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2240:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2240:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2227:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2227:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "2217:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2269:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2296:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2307:3:84",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2292:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2292:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2279:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2279:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value6",
                                  "nodeType": "YulIdentifier",
                                  "src": "2269:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1800:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1811:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1823:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1831:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1839:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1847:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1855:6:84",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "1863:6:84",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "1871:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1712:606:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2476:384:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2523:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2532:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2535:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2525:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2525:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2525:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2497:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2506:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2493:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2493:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2518:3:84",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2489:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2489:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2486:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2548:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2577:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2558:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2558:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2548:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2596:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2629:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2640:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2625:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2625:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2606:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2606:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2596:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2653:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2680:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2691:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2676:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2676:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2663:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2663:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2653:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2704:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2735:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2746:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2731:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2731:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "2714:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2714:36:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2704:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2759:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2786:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2797:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2782:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2782:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2769:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2769:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2759:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2811:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2838:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2849:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2834:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2834:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2821:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2821:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "2811:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint8t_bytes32t_bytes32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2402:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2413:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2425:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2433:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2441:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2449:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2457:6:84",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "2465:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2323:537:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2986:388:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3032:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3041:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3044:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3034:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3034:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3034:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3007:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3016:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3003:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3003:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3028:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2999:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2999:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2996:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3057:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3086:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3067:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3067:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3057:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3105:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3136:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3147:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3132:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3132:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3119:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3119:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3109:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3194:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3203:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3206:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3196:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3196:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3196:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3166:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3174:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3163:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3163:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3160:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3219:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3286:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "3297:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3282:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3282:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3306:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "3245:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3245:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3223:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3233:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3323:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "3333:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3323:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3350:18:84",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "3360:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "3350:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2936:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2947:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2959:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2967:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2975:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2865:509:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3551:671:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3597:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3606:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3609:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3599:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3599:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3599:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3572:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3581:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3568:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3568:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3593:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3564:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3564:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3561:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3622:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3651:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3632:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3632:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3622:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3670:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3701:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3712:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3697:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3697:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3684:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3684:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3674:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3725:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3735:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3729:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3780:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3789:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3792:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3782:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3782:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3782:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3768:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3776:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3765:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3765:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3762:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3805:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3872:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "3883:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3868:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3868:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3892:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "3831:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3831:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3809:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3819:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3909:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "3919:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3909:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3936:18:84",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "3946:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "3936:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3963:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3996:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4007:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3992:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3992:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3979:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3979:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3967:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4040:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4049:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4052:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4042:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4042:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4042:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4026:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4036:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4023:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4023:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4020:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4065:97:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4132:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4143:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4128:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4128:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "4154:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "4091:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4091:71:84"
                              },
                              "variables": [
                                {
                                  "name": "value3_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4069:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value4_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4079:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4171:18:84",
                              "value": {
                                "name": "value3_1",
                                "nodeType": "YulIdentifier",
                                "src": "4181:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "4171:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4198:18:84",
                              "value": {
                                "name": "value4_1",
                                "nodeType": "YulIdentifier",
                                "src": "4208:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "4198:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3485:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3496:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3508:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3516:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3524:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "3532:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "3540:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3379:843:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4313:260:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4359:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4368:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4371:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4361:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4361:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4361:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4334:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4343:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4330:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4330:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4355:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4326:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4326:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4323:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4384:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4413:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4394:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4394:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4384:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4432:45:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4462:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4473:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4458:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4458:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4445:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4445:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4436:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4527:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4536:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4539:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4529:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4529:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4529:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4499:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4510:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4517:6:84",
                                            "type": "",
                                            "value": "0xffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4506:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4506:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "4496:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4496:29:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4489:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4489:37:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4486:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4552:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4562:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4552:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint16",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4271:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4282:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4294:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4302:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4227:346:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4665:167:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4711:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4720:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4723:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4713:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4713:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4713:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4686:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4695:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4682:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4682:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4707:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4678:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4678:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4675:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4736:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4765:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4746:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4746:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4736:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4784:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4811:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4822:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4807:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4807:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4794:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4794:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4784:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4623:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4634:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4646:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4654:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4578:254:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4923:172:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4969:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4978:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4981:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4971:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4971:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4971:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4944:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4953:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4940:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4940:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4965:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4936:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4936:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4933:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4994:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5023:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "5004:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5004:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4994:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5042:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5074:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5085:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5070:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5070:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "5052:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5052:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "5042:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4881:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4892:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4904:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4912:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4837:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5202:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5248:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5257:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5260:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5250:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5250:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5250:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5223:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5232:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5219:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5219:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5244:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5215:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5215:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5212:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5273:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5302:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "5283:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5283:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5273:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5321:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5353:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5364:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5349:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5349:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "5331:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5331:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "5321:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5377:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5409:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5420:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5405:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5405:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "5387:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5387:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "5377:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint64t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5152:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5163:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5175:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5183:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5191:6:84",
                            "type": ""
                          }
                        ],
                        "src": "5100:330:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5539:331:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5585:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5594:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5597:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5587:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5587:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5587:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5560:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5569:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5556:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5556:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5581:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5552:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5552:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5549:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5610:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5637:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5624:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5624:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "5614:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5690:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5699:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5702:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5692:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5692:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5692:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5662:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5670:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5659:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5659:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5656:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5715:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5782:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "5793:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5778:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5778:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "5802:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "5741:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5741:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5719:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5729:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5819:18:84",
                              "value": {
                                "name": "value0_1",
                                "nodeType": "YulIdentifier",
                                "src": "5829:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5819:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5846:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "5856:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "5846:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5497:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5508:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5520:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5528:6:84",
                            "type": ""
                          }
                        ],
                        "src": "5435:435:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6030:614:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6076:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6085:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6088:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6078:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6078:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6078:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "6051:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6060:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6047:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6047:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6072:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6043:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6043:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6040:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6101:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6128:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6115:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6115:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "6105:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6147:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6157:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6151:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6202:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6211:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6214:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6204:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6204:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6204:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "6190:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6198:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6187:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6187:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6184:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6227:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6294:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "6305:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6290:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6290:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "6314:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "6253:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6253:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6231:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6241:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6331:18:84",
                              "value": {
                                "name": "value0_1",
                                "nodeType": "YulIdentifier",
                                "src": "6341:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6331:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6358:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "6368:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "6358:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6385:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6418:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6429:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6414:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6414:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6401:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6401:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6389:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6462:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6471:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6474:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6464:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6464:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6464:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6448:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6458:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6445:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6445:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6442:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6487:97:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6554:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6565:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6550:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6550:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "6576:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "6513:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6513:71:84"
                              },
                              "variables": [
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6491:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value3_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6501:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6593:18:84",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "6603:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "6593:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6620:18:84",
                              "value": {
                                "name": "value3_1",
                                "nodeType": "YulIdentifier",
                                "src": "6630:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "6620:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5972:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5983:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5995:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6003:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "6011:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "6019:6:84",
                            "type": ""
                          }
                        ],
                        "src": "5875:769:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6718:115:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6764:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6773:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6776:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6766:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6766:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6766:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "6739:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6748:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6735:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6735:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6760:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6731:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6731:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6728:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6789:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6817:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "6799:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6799:28:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6789:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6684:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "6695:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6707:6:84",
                            "type": ""
                          }
                        ],
                        "src": "6649:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7086:196:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "7103:3:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7108:66:84",
                                    "type": "",
                                    "value": "0x1901000000000000000000000000000000000000000000000000000000000000"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7096:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7096:79:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7096:79:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7195:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7200:1:84",
                                        "type": "",
                                        "value": "2"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7191:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7191:11:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7204:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7184:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7184:27:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7184:27:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7231:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7236:2:84",
                                        "type": "",
                                        "value": "34"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7227:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7227:12:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7241:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7220:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7220:28:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7220:28:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7257:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "7268:3:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7273:2:84",
                                    "type": "",
                                    "value": "66"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7264:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7264:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "7257:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "7054:3:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7059:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7067:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "7078:3:84",
                            "type": ""
                          }
                        ],
                        "src": "6838:444:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7388:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7398:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7410:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7421:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7406:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7406:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7398:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7440:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7455:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7463:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7451:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7451:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7433:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7433:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7433:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7357:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7368:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7379:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7287:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7669:481:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7679:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7689:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7683:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7700:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7718:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7729:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7714:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7714:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7704:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7748:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7759:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7741:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7741:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7741:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7771:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "7782:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "7775:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7797:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7817:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7811:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7811:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "7801:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7840:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7848:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7833:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7833:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7833:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7864:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7875:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7886:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7871:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7871:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "7864:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7898:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7916:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7924:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7912:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7912:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "7902:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7936:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7945:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "7940:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8004:120:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "8025:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "8036:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "8030:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8030:13:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8018:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8018:26:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8018:26:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8057:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "8068:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8073:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8064:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8064:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "8057:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8089:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "8103:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8111:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8099:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8099:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "8089:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "7966:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7969:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7963:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7963:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "7977:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7979:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "7988:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7991:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7984:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7984:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "7979:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "7959:3:84",
                                "statements": []
                              },
                              "src": "7955:169:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8133:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "8141:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8133:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7638:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7649:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7660:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7518:632:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8250:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8260:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8272:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8283:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8268:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8268:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8260:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8302:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "8327:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "8320:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8320:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "8313:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8313:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8295:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8295:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8295:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8219:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8230:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8241:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8155:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8448:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8458:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8470:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8481:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8466:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8466:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8458:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8500:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8511:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8493:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8493:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8493:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8417:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8428:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8439:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8347:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8742:329:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8752:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8764:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8775:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8760:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8760:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8752:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8795:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8806:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8788:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8788:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8788:25:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8822:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8832:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8826:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8894:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8905:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8890:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8890:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8914:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8922:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8910:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8910:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8883:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8883:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8883:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8946:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8957:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8942:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8942:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "8966:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8974:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8962:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8962:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8935:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8935:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8935:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8998:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9009:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8994:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8994:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9014:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8987:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8987:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8987:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9041:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9052:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9037:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9037:19:84"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "9058:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9030:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9030:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9030:35:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8679:9:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "8690:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "8698:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "8706:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8714:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8722:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8733:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8529:542:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9317:373:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9327:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9339:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9350:3:84",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9335:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9335:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9327:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9370:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9381:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9363:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9363:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9363:25:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9397:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9407:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9401:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9469:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9480:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9465:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9465:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9489:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9497:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9485:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9485:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9458:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9458:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9458:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9521:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9532:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9517:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9517:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "9541:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9549:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9537:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9537:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9510:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9510:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9510:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9573:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9584:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9569:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9569:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9589:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9562:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9562:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9562:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9616:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9627:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9612:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9612:19:84"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "9633:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9605:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9605:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9605:35:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9660:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9671:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9656:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9656:19:84"
                                  },
                                  {
                                    "name": "value5",
                                    "nodeType": "YulIdentifier",
                                    "src": "9677:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9649:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9649:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9649:35:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9246:9:84",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "9257:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "9265:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "9273:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "9281:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "9289:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9297:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9308:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9076:614:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9908:299:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9918:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9930:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9941:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9926:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9926:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9918:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9961:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9972:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9954:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9954:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9954:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9999:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10010:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9995:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9995:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10015:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9988:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9988:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9988:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10042:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10053:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10038:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10038:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "10058:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10031:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10031:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10031:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10085:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10096:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10081:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10081:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "10101:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10074:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10074:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10074:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10128:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10139:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10124:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10124:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "10149:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10157:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10145:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10145:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10117:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10117:84:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10117:84:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9845:9:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "9856:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "9864:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "9872:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "9880:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9888:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9899:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9695:512:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10393:217:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10403:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10415:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10426:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10411:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10411:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10403:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10446:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "10457:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10439:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10439:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10439:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10484:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10495:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10480:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10480:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "10504:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10512:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10500:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10500:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10473:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10473:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10473:45:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10538:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10549:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10534:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10534:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "10554:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10527:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10527:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10527:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10581:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10592:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10577:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10577:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "10597:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10570:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10570:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10570:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10338:9:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "10349:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "10357:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "10365:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10373:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10384:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10212:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10736:535:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10746:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10756:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "10750:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10774:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10785:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10767:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10767:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10767:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10797:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "10817:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10811:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10811:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "10801:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10844:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "10855:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10840:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10840:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10860:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10833:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10833:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10833:34:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10876:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10885:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "10880:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10945:90:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10974:9:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10985:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "10970:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10970:17:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "10989:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "10966:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10966:26:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "11008:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "11016:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "11004:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "11004:14:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11020:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "11000:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11000:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "10994:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10994:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10959:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10959:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10959:66:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "10906:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10909:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10903:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10903:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "10917:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10919:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "10928:1:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10931:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10924:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10924:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "10919:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "10899:3:84",
                                "statements": []
                              },
                              "src": "10895:140:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11069:66:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11098:9:84"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11109:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "11094:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11094:22:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "11118:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "11090:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11090:31:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11123:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11083:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11083:42:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11083:42:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11050:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11053:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11047:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11047:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11044:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11144:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11160:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "11179:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "11187:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "11175:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "11175:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "11192:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "11171:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11171:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11156:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11156:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11262:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11152:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11152:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11144:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10705:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10716:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10727:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10615:656:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11450:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11467:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11478:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11460:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11460:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11460:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11501:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11512:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11497:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11497:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11517:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11490:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11490:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11490:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11540:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11551:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11536:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11536:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11556:26:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11529:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11529:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11529:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11592:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11604:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11615:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11600:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11600:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11592:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11427:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11441:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11276:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11803:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11820:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11831:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11813:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11813:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11813:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11854:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11865:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11850:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11850:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11870:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11843:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11843:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11843:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11893:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11904:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11889:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11889:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11909:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11882:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11882:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11882:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11964:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11975:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11960:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11960:18:84"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11980:5:84",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11953:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11953:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11953:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11995:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12007:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12018:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12003:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12003:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11995:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11780:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11794:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11629:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12207:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12224:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12235:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12217:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12217:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12217:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12258:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12269:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12254:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12254:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12274:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12247:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12247:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12247:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12297:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12308:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12293:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12293:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12313:34:84",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12286:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12286:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12286:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12368:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12379:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12364:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12364:18:84"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12384:4:84",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12357:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12357:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12357:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12398:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12410:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12421:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12406:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12406:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12398:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12184:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12198:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12033:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12610:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12627:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12638:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12620:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12620:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12620:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12661:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12672:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12657:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12657:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12677:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12650:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12650:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12650:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12700:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12711:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12696:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12696:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265206c656e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12716:33:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature length"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12689:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12689:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12689:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12759:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12771:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12782:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12767:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12767:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12759:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12587:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12601:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12436:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12970:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12987:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12998:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12980:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12980:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12980:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13021:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13032:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13017:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13017:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13037:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13010:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13010:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13010:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13060:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13071:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13056:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13056:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13076:34:84",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13049:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13049:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13049:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13131:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13142:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13127:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13127:18:84"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13147:4:84",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13120:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13120:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13120:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13161:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13173:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13184:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13169:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13169:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13161:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12947:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12961:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12796:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13373:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13390:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13401:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13383:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13383:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13383:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13424:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13435:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13420:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13420:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13440:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13413:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13413:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13413:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13463:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13474:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13459:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13459:18:84"
                                  },
                                  {
                                    "hexValue": "5469636b65742f64656c65676174652d657870697265642d646561646c696e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13479:34:84",
                                    "type": "",
                                    "value": "Ticket/delegate-expired-deadline"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13452:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13452:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13452:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13523:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13535:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13546:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13531:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13531:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13523:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_39ab2e4ed03130f2bab737445eefa0170013f2d5d6416c5398200851ee691d09__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13350:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13364:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13199:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13734:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13751:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13762:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13744:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13744:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13744:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13785:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13796:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13781:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13781:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13801:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13774:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13774:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13774:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13824:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13835:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13820:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13820:18:84"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a206578706972656420646561646c696e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13840:31:84",
                                    "type": "",
                                    "value": "ERC20Permit: expired deadline"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13813:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13813:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13813:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13881:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13893:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13904:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13889:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13889:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13881:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13711:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13725:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13560:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14092:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14109:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14120:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14102:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14102:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14102:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14143:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14154:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14139:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14139:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14159:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14132:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14132:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14132:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14182:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14193:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14178:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14178:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14198:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14171:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14171:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14171:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14253:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14264:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14249:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14249:18:84"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14269:8:84",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14242:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14242:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14242:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14287:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14299:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14310:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14295:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14295:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14287:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14069:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14083:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13918:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14499:229:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14516:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14527:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14509:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14509:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14509:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14550:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14561:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14546:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14546:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14566:2:84",
                                    "type": "",
                                    "value": "39"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14539:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14539:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14539:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14589:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14600:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14585:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14585:18:84"
                                  },
                                  {
                                    "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2032",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14605:34:84",
                                    "type": "",
                                    "value": "SafeCast: value doesn't fit in 2"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14578:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14578:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14578:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14660:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14671:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14656:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14656:18:84"
                                  },
                                  {
                                    "hexValue": "30382062697473",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14676:9:84",
                                    "type": "",
                                    "value": "08 bits"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14649:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14649:37:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14649:37:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14695:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14707:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14718:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14703:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14703:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14695:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14476:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14490:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14325:403:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14907:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14924:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14935:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14917:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14917:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14917:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14958:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14969:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14954:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14954:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14974:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14947:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14947:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14947:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14997:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15008:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14993:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14993:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202773272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15013:34:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 's' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14986:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14986:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14986:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15068:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15079:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15064:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15064:18:84"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15084:4:84",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15057:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15057:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15057:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15098:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15110:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15121:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15106:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15106:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15098:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14884:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14898:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14733:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15310:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15327:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15338:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15320:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15320:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15320:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15361:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15372:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15357:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15357:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15377:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15350:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15350:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15350:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15400:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15411:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15396:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15396:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202776272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15416:34:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 'v' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15389:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15389:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15389:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15471:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15482:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15467:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15467:18:84"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15487:4:84",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15460:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15460:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15460:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15501:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15513:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15524:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15509:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15509:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15501:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15287:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15301:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15136:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15713:180:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15730:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15741:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15723:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15723:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15723:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15764:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15775:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15760:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15760:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15780:2:84",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15753:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15753:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15753:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15803:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15814:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15799:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15799:18:84"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15819:32:84",
                                    "type": "",
                                    "value": "ERC20Permit: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15792:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15792:60:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15792:60:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15861:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15873:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15884:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15869:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15869:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15861:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15690:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15704:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15539:354:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16072:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16089:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16100:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16082:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16082:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16082:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16123:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16134:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16119:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16119:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16139:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16112:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16112:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16112:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16162:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16173:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16158:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16158:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16178:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16151:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16151:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16151:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16233:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16244:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16229:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16229:18:84"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16249:10:84",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16222:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16222:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16222:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16269:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16281:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16292:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16277:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16277:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16269:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16049:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16063:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15898:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16481:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16498:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16509:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16491:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16491:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16491:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16532:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16543:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16528:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16528:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16548:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16521:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16521:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16521:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16571:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16582:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16567:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16567:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16587:34:84",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16560:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16560:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16560:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16642:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16653:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16638:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16638:18:84"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16658:3:84",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16631:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16631:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16631:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16671:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16683:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16694:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16679:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16679:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16671:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16458:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16472:4:84",
                            "type": ""
                          }
                        ],
                        "src": "16307:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16883:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16900:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16911:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16893:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16893:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16893:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16934:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16945:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16930:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16930:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16950:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16923:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16923:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16923:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16973:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16984:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16969:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16969:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16989:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16962:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16962:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16962:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17044:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17055:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17040:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17040:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17060:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17033:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17033:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17033:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17077:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17089:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17100:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17085:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17085:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17077:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16860:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16874:4:84",
                            "type": ""
                          }
                        ],
                        "src": "16709:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17289:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17306:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17317:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17299:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17299:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17299:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17340:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17351:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17336:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17336:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17356:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17329:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17329:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17329:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17379:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17390:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17375:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17375:18:84"
                                  },
                                  {
                                    "hexValue": "5469636b65742f73746172742d656e642d74696d65732d6c656e6774682d6d61",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17395:34:84",
                                    "type": "",
                                    "value": "Ticket/start-end-times-length-ma"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17368:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17368:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17368:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17450:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17461:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17446:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17446:18:84"
                                  },
                                  {
                                    "hexValue": "746368",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17466:5:84",
                                    "type": "",
                                    "value": "tch"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17439:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17439:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17439:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17481:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17493:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17504:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17489:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17489:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17481:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c485dc2a924c6dd174a7f3539c902d57d6264aa0653fd1afa5b4084da601fff7__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17266:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17280:4:84",
                            "type": ""
                          }
                        ],
                        "src": "17115:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17693:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17710:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17721:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17703:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17703:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17703:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17744:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17755:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17740:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17740:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17760:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17733:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17733:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17733:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17783:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17794:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17779:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17779:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17799:34:84",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17772:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17772:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17772:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17854:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17865:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17850:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17850:18:84"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17870:6:84",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17843:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17843:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17843:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17886:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17898:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17909:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17894:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17894:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17886:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17670:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17684:4:84",
                            "type": ""
                          }
                        ],
                        "src": "17519:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18098:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18115:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18126:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18108:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18108:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18108:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18149:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18160:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18145:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18145:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18165:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18138:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18138:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18138:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18188:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18199:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18184:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18184:18:84"
                                  },
                                  {
                                    "hexValue": "5469636b65742f64656c65676174652d696e76616c69642d7369676e61747572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18204:34:84",
                                    "type": "",
                                    "value": "Ticket/delegate-invalid-signatur"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18177:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18177:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18177:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18259:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18270:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18255:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18255:18:84"
                                  },
                                  {
                                    "hexValue": "65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18275:3:84",
                                    "type": "",
                                    "value": "e"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18248:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18248:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18248:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18288:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18300:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18311:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18296:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18296:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18288:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d26de55e8ec40107d038a21c3ec11785680740c032de3f1a47bf117807198f53__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18075:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18089:4:84",
                            "type": ""
                          }
                        ],
                        "src": "17924:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18500:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18517:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18528:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18510:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18510:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18510:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18551:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18562:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18547:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18547:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18567:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18540:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18540:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18540:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18590:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18601:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18586:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18586:18:84"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18606:33:84",
                                    "type": "",
                                    "value": "ControlledToken/only-controller"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18579:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18579:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18579:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18649:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18661:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18672:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18657:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18657:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18649:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18477:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18491:4:84",
                            "type": ""
                          }
                        ],
                        "src": "18326:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18860:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18877:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18888:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18870:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18870:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18870:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18911:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18922:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18907:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18907:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18927:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18900:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18900:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18900:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18950:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18961:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18946:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18946:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18966:34:84",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18939:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18939:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18939:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19021:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19032:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19017:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19017:18:84"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19037:7:84",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19010:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19010:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19010:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19054:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19066:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19077:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19062:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19062:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19054:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18837:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18851:4:84",
                            "type": ""
                          }
                        ],
                        "src": "18686:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19266:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19283:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19294:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19276:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19276:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19276:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19317:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19328:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19313:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19313:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19333:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19306:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19306:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19306:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19356:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19367:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19352:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19352:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19372:33:84",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19345:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19345:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19345:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19415:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19427:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19438:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19423:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19423:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19415:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19243:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19257:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19092:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19619:356:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "19629:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19641:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19652:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19637:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19637:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19629:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19671:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "19692:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "19686:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19686:13:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19701:54:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19682:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19682:74:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19664:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19664:93:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19664:93:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19766:44:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "19796:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19804:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19792:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19792:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "19786:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19786:24:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "19770:12:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19819:18:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "19829:8:84",
                                "type": "",
                                "value": "0xffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19823:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19857:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19868:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19853:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19853:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "19879:12:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19893:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19875:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19875:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19846:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19846:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19846:51:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19917:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19928:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19913:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19913:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "19949:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "19957:4:84",
                                                "type": "",
                                                "value": "0x40"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "19945:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "19945:17:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "19939:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19939:24:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19965:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19935:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19935:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19906:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19906:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19906:63:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_AccountDetails_$12873_memory_ptr__to_t_struct$_AccountDetails_$12873_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19588:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "19599:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19610:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19452:523:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20141:228:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20151:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20163:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20174:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20159:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20159:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20151:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20193:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "20214:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "20208:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20208:13:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20223:58:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20204:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20204:78:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20186:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20186:97:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20186:97:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20303:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20314:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20299:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20299:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "20335:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "20343:4:84",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "20331:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "20331:17:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "20325:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20325:24:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20351:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20321:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20321:41:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20292:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20292:71:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20292:71:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Observation_$12454_memory_ptr__to_t_struct$_Observation_$12454_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20110:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "20121:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20132:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19980:389:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20475:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20485:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20497:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20508:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20493:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20493:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20485:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20527:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "20538:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20520:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20520:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20520:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20444:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "20455:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20466:4:84",
                            "type": ""
                          }
                        ],
                        "src": "20374:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20653:87:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20663:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20675:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20686:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20671:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20671:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20663:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20705:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "20720:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20728:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20716:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20716:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20698:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20698:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20698:36:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20622:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "20633:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20644:4:84",
                            "type": ""
                          }
                        ],
                        "src": "20556:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20793:225:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20803:64:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "20813:54:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20807:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20876:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "20891:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "20894:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "20887:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20887:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20880:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20906:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "20921:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "20924:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "20917:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20917:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20910:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20961:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "20963:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20963:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "20963:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "20942:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "20951:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "20955:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "20947:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20947:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "20939:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20939:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "20936:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "20992:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21003:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21008:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20999:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20999:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "20992:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint208",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "20776:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "20779:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "20785:3:84",
                            "type": ""
                          }
                        ],
                        "src": "20745:273:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21071:229:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21081:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21091:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21085:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21158:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21173:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21176:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21169:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21169:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21162:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21188:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21203:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21206:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21199:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21199:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21192:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21243:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21245:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21245:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21245:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21224:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21233:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21237:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "21229:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21229:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21221:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21221:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21218:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21274:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21285:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21290:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21281:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21281:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "21274:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21054:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21057:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "21063:3:84",
                            "type": ""
                          }
                        ],
                        "src": "21023:277:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21352:179:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21362:18:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21372:8:84",
                                "type": "",
                                "value": "0xffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21366:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21389:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21404:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21407:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21400:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21400:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21393:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21419:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21434:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21437:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21430:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21430:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21423:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21474:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21476:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21476:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21476:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21455:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21464:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21468:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "21460:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21460:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21452:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21452:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21449:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21505:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21516:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21521:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21512:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21512:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "21505:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint24",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21335:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21338:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "21344:3:84",
                            "type": ""
                          }
                        ],
                        "src": "21305:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21584:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21611:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21613:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21613:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21613:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21600:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "21607:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "21603:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21603:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21597:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21597:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21594:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21642:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21653:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21656:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21649:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21649:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "21642:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21567:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21570:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "21576:3:84",
                            "type": ""
                          }
                        ],
                        "src": "21536:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21716:183:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21726:22:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21736:12:84",
                                "type": "",
                                "value": "0xffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21730:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21757:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21772:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21775:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21768:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21768:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21761:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21787:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21802:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21805:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21798:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21798:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21791:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21842:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21844:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21844:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21844:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21823:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21832:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21836:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "21828:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21828:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21820:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21820:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21817:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21873:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21884:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21889:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21880:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21880:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "21873:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint40",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21699:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21702:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "21708:3:84",
                            "type": ""
                          }
                        ],
                        "src": "21669:230:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21950:194:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21960:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21970:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21964:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22037:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22052:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22055:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22048:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22048:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22041:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22082:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "22084:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22084:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22084:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22077:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "22070:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22070:11:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22067:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22113:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "x",
                                        "nodeType": "YulIdentifier",
                                        "src": "22126:1:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "22129:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "22122:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22122:10:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22134:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "22118:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22118:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "22113:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21935:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21938:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "21944:1:84",
                            "type": ""
                          }
                        ],
                        "src": "21904:240:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22195:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22218:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "22220:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22220:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22220:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22215:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "22208:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22208:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22205:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22249:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22258:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22261:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "22254:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22254:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "22249:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22180:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22183:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "22189:1:84",
                            "type": ""
                          }
                        ],
                        "src": "22149:120:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22326:259:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22336:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "22346:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22340:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22413:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22428:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22431:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22424:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22424:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22417:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22443:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22458:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22461:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22454:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22454:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22447:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22524:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22526:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22526:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22526:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "22494:3:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "22487:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "22487:11:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "22480:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22480:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "22504:3:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "22513:2:84"
                                          },
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "22517:3:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "22509:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "22509:12:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "22501:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22501:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22476:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22476:47:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22473:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22555:24:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22570:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22575:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "22566:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22566:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "22555:7:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22305:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22308:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "22314:7:84",
                            "type": ""
                          }
                        ],
                        "src": "22274:311:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22639:221:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22649:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "22659:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22653:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22726:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22741:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22744:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22737:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22737:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22730:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22756:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22771:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22774:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22767:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22767:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22760:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22802:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22804:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22804:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22804:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22792:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22797:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "22789:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22789:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22786:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22833:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22845:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22850:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "22841:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22841:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "22833:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22621:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22624:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "22630:4:84",
                            "type": ""
                          }
                        ],
                        "src": "22590:270:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22914:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22936:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22938:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22938:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22938:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22930:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22933:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "22927:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22927:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22924:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22967:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22979:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22982:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "22975:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22975:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "22967:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22896:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22899:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "22905:4:84",
                            "type": ""
                          }
                        ],
                        "src": "22865:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23043:173:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23053:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "23063:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23057:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23082:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23097:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23100:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23093:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23093:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23086:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23112:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23127:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23130:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23123:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23123:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23116:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23158:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "23160:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23160:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23160:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23148:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23153:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "23145:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23145:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23142:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23189:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23201:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23206:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "23197:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23197:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "23189:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "23025:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "23028:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "23034:4:84",
                            "type": ""
                          }
                        ],
                        "src": "22995:221:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23276:382:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "23286:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23300:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "23303:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "23296:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23296:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "23286:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23317:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "23347:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23353:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23343:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23343:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "23321:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23394:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "23396:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "23410:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23418:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "23406:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23406:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "23396:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "23374:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "23367:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23367:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23364:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23484:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23505:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23508:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "23498:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23498:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23498:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23606:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23609:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "23599:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23599:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23599:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23634:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23637:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "23627:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23627:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23627:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "23440:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "23463:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23471:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "23460:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23460:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "23437:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23437:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23434:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "23256:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "23265:6:84",
                            "type": ""
                          }
                        ],
                        "src": "23221:437:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23710:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23801:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "23803:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23803:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23803:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "23726:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23733:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "23723:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23723:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23720:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23832:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "23843:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23850:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "23839:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23839:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "23832:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "23692:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "23702:3:84",
                            "type": ""
                          }
                        ],
                        "src": "23663:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23901:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23924:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "23926:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23926:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23926:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23921:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "23914:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23914:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23911:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23955:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23964:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23967:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "23960:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23960:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "23955:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "23886:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "23889:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "23895:1:84",
                            "type": ""
                          }
                        ],
                        "src": "23863:112:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24012:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24029:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24032:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24022:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24022:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24022:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24126:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24129:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24119:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24119:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24119:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24150:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24153:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24143:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24143:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24143:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "23980:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24201:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24218:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24221:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24211:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24211:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24211:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24315:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24318:4:84",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24308:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24308:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24308:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24339:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24342:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24332:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24332:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24332:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "24169:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24390:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24407:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24410:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24400:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24400:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24400:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24504:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24507:4:84",
                                    "type": "",
                                    "value": "0x21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24497:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24497:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24497:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24528:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24531:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24521:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24521:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24521:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x21",
                        "nodeType": "YulFunctionDefinition",
                        "src": "24358:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24579:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24596:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24599:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24589:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24589:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24589:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24693:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24696:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24686:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24686:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24686:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24717:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24720:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24710:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24710:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24710:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "24547:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24768:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24785:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24788:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24778:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24778:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24778:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24882:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24885:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24875:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24875:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24875:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24906:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24909:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24899:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24899:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24899:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "24736:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_array_uint64_dyn_calldata(offset, end) -> arrayPos, length\n    {\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(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_uint64(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint8(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        value3 := calldataload(add(headStart, 96))\n        value4 := abi_decode_uint8(add(headStart, 128))\n        value5 := calldataload(add(headStart, 160))\n        value6 := calldataload(add(headStart, 192))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 192) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        value3 := abi_decode_uint8(add(headStart, 96))\n        value4 := calldataload(add(headStart, 128))\n        value5 := calldataload(add(headStart, 160))\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        let offset_1 := calldataload(add(headStart, 64))\n        if gt(offset_1, _1) { revert(0, 0) }\n        let value3_1, value4_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset_1), dataEnd)\n        value3 := value3_1\n        value4 := value4_1\n    }\n    function abi_decode_tuple_t_addresst_uint16(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let value := calldataload(add(headStart, 32))\n        if iszero(eq(value, and(value, 0xffff))) { revert(0, 0) }\n        value1 := value\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_uint64(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_uint64(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_uint64t_uint64(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_uint64(add(headStart, 32))\n        value2 := abi_decode_uint64(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n    }\n    function abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        let value2_1, value3_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset_1), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n    }\n    function abi_decode_tuple_t_uint64(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n    }\n    function abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        mstore(pos, 0x1901000000000000000000000000000000000000000000000000000000000000)\n        mstore(add(pos, 2), value0)\n        mstore(add(pos, 34), value1)\n        end := add(pos, 66)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), and(value2, _1))\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        mstore(headStart, value0)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), and(value2, _1))\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: burn amount exceeds balan\")\n        mstore(add(headStart, 96), \"ce\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature length\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_39ab2e4ed03130f2bab737445eefa0170013f2d5d6416c5398200851ee691d09__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"Ticket/delegate-expired-deadline\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"ERC20Permit: expired deadline\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 39)\n        mstore(add(headStart, 64), \"SafeCast: value doesn't fit in 2\")\n        mstore(add(headStart, 96), \"08 bits\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature 's' val\")\n        mstore(add(headStart, 96), \"ue\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature 'v' val\")\n        mstore(add(headStart, 96), \"ue\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"ERC20Permit: invalid signature\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC20: burn from the zero addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c485dc2a924c6dd174a7f3539c902d57d6264aa0653fd1afa5b4084da601fff7__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Ticket/start-end-times-length-ma\")\n        mstore(add(headStart, 96), \"tch\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d26de55e8ec40107d038a21c3ec11785680740c032de3f1a47bf117807198f53__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"Ticket/delegate-invalid-signatur\")\n        mstore(add(headStart, 96), \"e\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ControlledToken/only-controller\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_AccountDetails_$12873_memory_ptr__to_t_struct$_AccountDetails_$12873_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(mload(value0), 0xffffffffffffffffffffffffffffffffffffffffffffffffffff))\n        let memberValue0 := mload(add(value0, 0x20))\n        let _1 := 0xffffff\n        mstore(add(headStart, 0x20), and(memberValue0, _1))\n        mstore(add(headStart, 0x40), and(mload(add(value0, 0x40)), _1))\n    }\n    function abi_encode_tuple_t_struct$_Observation_$12454_memory_ptr__to_t_struct$_Observation_$12454_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(mload(value0), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 0x20), and(mload(add(value0, 0x20)), 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint208(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint224(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint24(x, y) -> sum\n    {\n        let _1 := 0xffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint40(x, y) -> sum\n    {\n        let _1 := 0xffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint224(x, y) -> r\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let y_1 := and(y, _1)\n        if iszero(y_1) { panic_error_0x12() }\n        r := div(and(x, _1), y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function checked_mul_t_uint224(x, y) -> product\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if and(iszero(iszero(x_1)), gt(y_1, div(_1, x_1))) { panic_error_0x11() }\n        product := mul(x_1, y_1)\n    }\n    function checked_sub_t_uint224(x, y) -> diff\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "716": [
                  {
                    "length": 32,
                    "start": 4229
                  }
                ],
                "3063": [
                  {
                    "length": 32,
                    "start": 5696
                  }
                ],
                "3065": [
                  {
                    "length": 32,
                    "start": 5655
                  }
                ],
                "3067": [
                  {
                    "length": 32,
                    "start": 5779
                  }
                ],
                "3069": [
                  {
                    "length": 32,
                    "start": 5816
                  }
                ],
                "3071": [
                  {
                    "length": 32,
                    "start": 5737
                  }
                ],
                "5123": [
                  {
                    "length": 32,
                    "start": 1426
                  },
                  {
                    "length": 32,
                    "start": 1914
                  },
                  {
                    "length": 32,
                    "start": 2256
                  },
                  {
                    "length": 32,
                    "start": 2670
                  },
                  {
                    "length": 32,
                    "start": 3221
                  }
                ],
                "5126": [
                  {
                    "length": 32,
                    "start": 795
                  }
                ],
                "9967": [
                  {
                    "length": 32,
                    "start": 3424
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101e55760003560e01c806368c7fd571161010f57806395d89b41116100a2578063a9059cbb11610071578063a9059cbb1461052e578063d505accf14610541578063dd62ed3e14610554578063f77c47911461058d57600080fd5b806395d89b41146104ed57806398b16f36146104f55780639ecb037014610508578063a457c2d71461051b57600080fd5b80638d22ea2a116100de5780638d22ea2a1461046d5780638e6d536a146104b457806390596dd1146104c7578063919974dc146104da57600080fd5b806368c7fd571461040b57806370a082311461041e5780637ecebe001461044757806385beb5f11461045a57600080fd5b806333e39b61116101875780635c19a95c116101565780635c19a95c146103b25780635d7b0758146103c5578063613ed6bd146103d8578063631b5dfb146103f857600080fd5b806333e39b61146103455780633644e5151461035a57806336bb2a3814610362578063395093511461039f57600080fd5b806323b872dd116101c357806323b872dd1461023d5780632aceb534146102505780632d0dd68614610301578063313ce5671461031457600080fd5b806306fdde03146101ea578063095ea7b31461020857806318160ddd1461022b575b600080fd5b6101f26105b4565b6040516101ff9190613369565b60405180910390f35b61021b6102163660046131c5565b610646565b60405190151581526020016101ff565b6002545b6040519081526020016101ff565b61021b61024b366004612fae565b61065d565b6102c961025e366004612f60565b6040805160608082018352600080835260208084018290529284018190526001600160a01b03949094168452600682529282902082519384018352546001600160d01b038116845262ffffff600160d01b8204811692850192909252600160e81b9004169082015290565b6040805182516001600160d01b0316815260208084015162ffffff9081169183019190915292820151909216908201526060016101ff565b61022f61030f36600461330a565b610723565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016101ff565b610358610353366004612f7b565b61076f565b005b61022f6107f5565b610375610370366004613187565b610804565b6040805182516001600160e01b0316815260209283015163ffffffff1692810192909252016101ff565b61021b6103ad3660046131c5565b61087c565b6103586103c0366004612f60565b6108b8565b6103586103d33660046131c5565b6108c5565b6103eb6103e63660046130b3565b610947565b6040516101ff9190613325565b610358610406366004612fae565b610a63565b6103eb610419366004613106565b610b3c565b61022f61042c366004612f60565b6001600160a01b031660009081526020819052604090205490565b61022f610455366004612f60565b610b6e565b6103eb61046836600461325c565b610b8c565b61049c61047b366004612f60565b6001600160a01b039081166000908152630100000760205260409020541690565b6040516001600160a01b0390911681526020016101ff565b6103eb6104c236600461329e565b610c6f565b6103586104d53660046131c5565b610c8a565b6103586104e8366004613054565b610d0c565b6101f2610e8c565b61022f610503366004613219565b610e9b565b61022f6105163660046131ef565b610f0c565b61021b6105293660046131c5565b610f73565b61021b61053c3660046131c5565b611024565b61035861054f366004612fea565b611031565b61022f610562366004612f7b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61049c7f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546105c390613526565b80601f01602080910402602001604051908101604052809291908181526020018280546105ef90613526565b801561063c5780601f106106115761010080835404028352916020019161063c565b820191906000526020600020905b81548152906001019060200180831161061f57829003601f168201915b5050505050905090565b6000610653338484611195565b5060015b92915050565b600061066a8484846112ed565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107095760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6107168533858403611195565b60019150505b9392505050565b604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090610657906008908442611511565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146107e75760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f1828261153d565b5050565b60006107ff611613565b905090565b60408051808201909152600080825260208201526001600160a01b038316600090815260066020526040902060010161ffff831662ffffff811061084a5761084a6135ea565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201529392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106539185906108b3908690613429565b611195565b6108c2338261153d565b50565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461093d5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f18282611706565b60608160008167ffffffffffffffff81111561096557610965613600565b60405190808252806020026020018201604052801561098e578160200160208202803683370190505b506001600160a01b0387166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b900490931691830191909152929350905b84811015610a5657610a2783600101838a8a85818110610a0c57610a0c6135ea565b9050602002016020810190610a21919061330a565b42611511565b848281518110610a3957610a396135ea565b602090810291909101015280610a4e8161355b565b9150506109ea565b5091979650505050505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610adb5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b816001600160a01b0316836001600160a01b031614610b2d576001600160a01b03828116600090815260016020908152604080832093871683529290522054610b2d90839085906108b39085906134f2565b610b3782826117f1565b505050565b6001600160a01b0385166000908152600660205260409020606090610b649086868686611982565b9695505050505050565b6001600160a01b038116600090815260056020526040812054610657565b60608160008167ffffffffffffffff811115610baa57610baa613600565b604051908082528060200260200182016040528015610bd3578160200160208202803683370190505b50604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915290915060005b83811015610c6457610c35600883898985818110610a0c57610a0c6135ea565b838281518110610c4757610c476135ea565b602090810291909101015280610c5c8161355b565b915050610c15565b509095945050505050565b6060610c7f600786868686611982565b90505b949350505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610d025760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f182826117f1565b83421115610d5c5760405162461bcd60e51b815260206004820181905260248201527f5469636b65742f64656c65676174652d657870697265642d646561646c696e656044820152606401610700565b60007f00000000000000000000000000000000000000000000000000000000000000008787610d8a8a611b21565b6040805160208101959095526001600160a01b039384169085015291166060830152608082015260a0810186905260c0016040516020818303038152906040528051906020012090506000610dde82611b49565b90506000610dee82878787611bb2565b9050886001600160a01b0316816001600160a01b031614610e775760405162461bcd60e51b815260206004820152602160248201527f5469636b65742f64656c65676174652d696e76616c69642d7369676e6174757260448201527f65000000000000000000000000000000000000000000000000000000000000006064820152608401610700565b610e81898961153d565b505050505050505050565b6060600480546105c390613526565b6001600160a01b0383166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b90049093169183019190915290610f03906001830190868642611bda565b95945050505050565b6001600160a01b0382166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b90049093169183019190915290610c829060018301908542611511565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561100d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610700565b61101a3385858403611195565b5060019392505050565b60006106533384846112ed565b834211156110815760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610700565b60007f00000000000000000000000000000000000000000000000000000000000000008888886110b08c611b21565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061110b82611b49565b9050600061111b82878787611bb2565b9050896001600160a01b0316816001600160a01b03161461117e5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610700565b6111898a8a8a611195565b50505050505050505050565b6001600160a01b0383166112105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b03821661128c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113695760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b0382166113e55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610700565b6113f0838383611c12565b6001600160a01b0383166000908152602081905260409020548181101561147f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906114b6908490613429565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161150291815260200190565b60405180910390a35b50505050565b6000808263ffffffff168463ffffffff161161152d578361152f565b825b9050610b6486868386611ca5565b6001600160a01b038281166000908152602081815260408083205463010000079092529091205490919081169083168114156115795750505050565b6001600160a01b03848116600090815263010000076020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169185169190911790556115cd818484611dbe565b826001600160a01b0316846001600160a01b03167f4bc154dd35d6a5cb9206482ecb473cdbf2473006d6bce728b9cc0741bcc59ea260405160405180910390a350505050565b60007f000000000000000000000000000000000000000000000000000000000000000046141561166257507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b03821661175c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610700565b61176860008383611c12565b806002600082825461177a9190613429565b90915550506001600160a01b038216600090815260208190526040812080548392906117a7908490613429565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03821661186d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610700565b61187982600083611c12565b6001600160a01b038216600090815260208190526040902054818110156119085760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b03831660009081526020819052604081208383039055600280548492906119379084906134f2565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6060838281146119fa5760405162461bcd60e51b815260206004820152602360248201527f5469636b65742f73746172742d656e642d74696d65732d6c656e6774682d6d6160448201527f74636800000000000000000000000000000000000000000000000000000000006064820152608401610700565b6040805160608101825288546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915260008267ffffffffffffffff811115611a4f57611a4f613600565b604051908082528060200260200182016040528015611a78578160200160208202803683370190505b5090504260005b84811015611b1257611ae38b600101858c8c85818110611aa157611aa16135ea565b9050602002016020810190611ab6919061330a565b8b8b86818110611ac857611ac86135ea565b9050602002016020810190611add919061330a565b86611bda565b838281518110611af557611af56135ea565b602090810291909101015280611b0a8161355b565b915050611a7f565b50909998505050505050505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b6000610657611b56611613565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611bc387878787611e1e565b91509150611bd081611f0b565b5095945050505050565b6000808263ffffffff168463ffffffff1611611bf65783611bf8565b825b9050611c0787878784876120fc565b979650505050505050565b816001600160a01b0316836001600160a01b03161415611c3157505050565b60006001600160a01b03841615611c6257506001600160a01b03808416600090815263010000076020526040902054165b60006001600160a01b03841615611c9357506001600160a01b03808416600090815263010000076020526040902054165b611c9e828285611dbe565b5050505050565b604080518082019091526000808252602082018190529081906040805180820190915260008082526020820152611cdc8888612198565b60208101519194509150611cfd9063ffffffff908116908890889061221816565b15611d1857505084516001600160d01b03169150610c829050565b6000611d2489896122e9565b6020810151909350909150611d459063ffffffff808a169190899061236616565b15611d57576000945050505050610c82565b611d698985838a8c604001518b612435565b8094508193505050611d848360200151836020015188612602565b63ffffffff1682600001518460000151611d9e91906134ca565b611da89190613461565b6001600160e01b03169998505050505050505050565b6001600160a01b03831615611dee57611dd783826126cc565b6001600160a01b038216611dee57611dee81612821565b6001600160a01b03821615610b3757611e07828261293a565b6001600160a01b038316610b3757610b3781612971565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611e555750600090506003611f02565b8460ff16601b14158015611e6d57508460ff16601c14155b15611e7e5750600090506004611f02565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611ed2573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611efb57600060019250925050611f02565b9150600090505b94509492505050565b6000816004811115611f1f57611f1f6135d4565b1415611f285750565b6001816004811115611f3c57611f3c6135d4565b1415611f8a5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610700565b6002816004811115611f9e57611f9e6135d4565b1415611fec5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610700565b6003816004811115612000576120006135d4565b14156120745760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6004816004811115612088576120886135d4565b14156108c25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b600080600061210b88886122e9565b9150915060008061211c8a8a612198565b9150915060006121328b8b8487878a8f8e61298c565b905060006121468c8c8588888b8f8f61298c565b905061215b816020015183602001518a612602565b63ffffffff168260000151826000015161217591906134ca565b61217f9190613461565b6001600160e01b03169c9b505050505050505050505050565b60408051808201909152600080825260208201819052906121c7836020015162ffffff1662ffffff8016612ad6565b9150838262ffffff1662ffffff81106121e2576121e26135ea565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919491935090915050565b60008163ffffffff168463ffffffff161115801561224257508163ffffffff168363ffffffff1611155b1561225e578263ffffffff168463ffffffff161115905061071c565b60008263ffffffff168563ffffffff161161228d5761228863ffffffff8616640100000000613441565b612295565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116122cd576122c863ffffffff8616640100000000613441565b6122d5565b8463ffffffff165b64ffffffffff169091111595945050505050565b604080518082019091526000808252602082018190529082602001519150838262ffffff1662ffffff8110612320576123206135ea565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290915061235f576000915083826121e2565b9250929050565b60008163ffffffff168463ffffffff161115801561239057508163ffffffff168363ffffffff1611155b156123ab578263ffffffff168463ffffffff1610905061071c565b60008263ffffffff168563ffffffff16116123da576123d563ffffffff8616640100000000613441565b6123e2565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff161161241a5761241563ffffffff8616640100000000613441565b612422565b8463ffffffff165b64ffffffffff1690911095945050505050565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff1610612480578862ffffff1661249b565b600161249162ffffff881684613429565b61249b91906134f2565b905060005b60026124ac8385613429565b6124b69190613487565b90508a6124c8828962ffffff16612b00565b62ffffff1662ffffff81106124df576124df6135ea565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201819052909550806125275761251f826001613429565b9350506124a0565b8b612537838a62ffffff16612b0c565b62ffffff1662ffffff811061254e5761254e6135ea565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b9091048116602083015290955060009061259390838116908c908b9061221816565b90508080156125bc57506125bc8660200151898c63ffffffff166122189092919063ffffffff16565b156125c85750506125f4565b806125df576125d86001846134f2565b93506125ed565b6125ea836001613429565b94505b50506124a0565b505050965096945050505050565b60008163ffffffff168463ffffffff161115801561262c57508163ffffffff168363ffffffff1611155b156126425761263b8385613509565b905061071c565b60008263ffffffff168563ffffffff16116126715761266c63ffffffff8616640100000000613441565b612679565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116126b1576126ac63ffffffff8616640100000000613441565b6126b9565b8463ffffffff165b64ffffffffff169050610b6481836134f2565b806126d5575050565b6001600160a01b0382166000908152600660205260408120908080612739846126fd87612b1c565b6040518060400160405280601b81526020017f5469636b65742f747761622d6275726e2d6c742d62616c616e6365000000000081525042612b9f565b82518754602085015160408601516001600160d01b039093167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b9190921602178755919450925090508015612819576040805183516001600160e01b0316815260208085015163ffffffff16908201526001600160a01b038816917fdd3e7cd3a260a292b0b3306b2ca62f30a7349619a9d09c58109318774c6b627d910160405180910390a25b505050505050565b806128295750565b600080600061285b600761283c86612b1c565b6040518060600160405280602c8152602001613617602c913942612b9f565b825160078054602086015160408701516001600160d01b039094167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b919093160291909117905591945092509050801561150b576040805183516001600160e01b0316815260208085015163ffffffff16908201527f3375b905d617084fa6b7531688cc8046feb1f1a0b8ba2273de03c59d8d84416c910160405180910390a150505050565b80612943575050565b6001600160a01b03821660009081526006602052604081209080806127398461296b87612b1c565b42612c63565b806129795750565b600080600061285b600761296b86612b1c565b60408051808201909152600080825260208201526129bf8383896020015163ffffffff166123669092919063ffffffff16565b156129e3576129dc8789600001516001600160d01b031685612d0c565b9050612aca565b8263ffffffff16876020015163ffffffff161415612a02575085612aca565b8263ffffffff16866020015163ffffffff161415612a21575084612aca565b612a408660200151838563ffffffff166123669092919063ffffffff16565b15612a655750604080518082019091526000815263ffffffff83166020820152612aca565b600080612a7a8b8888888e6040015189612435565b915091506000612a938260200151846020015187612602565b63ffffffff1683600001518360000151612aad91906134ca565b612ab79190613461565b9050612ac4838288612d0c565b93505050505b98975050505050505050565b600081612ae557506000610657565b61071c6001612af48486613429565b612afe91906134f2565b835b600061071c8284613594565b600061071c612afe846001613429565b60006001600160d01b03821115612b9b5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203260448201527f30382062697473000000000000000000000000000000000000000000000000006064820152608401610700565b5090565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825287546001600160d01b0380821680845262ffffff600160d01b840481166020860152600160e81b9093049092169383019390935260009287919089161115612c355760405162461bcd60e51b81526004016107009190613369565b50612c44886001018287612d87565b8251999099036001600160d01b03168252909990985095505050505050565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825286546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090612cdf600188018287612d87565b83519296509094509250612cf49087906133be565b6001600160d01b031684525091959094509092509050565b60408051808201909152600080825260208201526040518060400160405280612d4a8660200151858663ffffffff166126029092919063ffffffff16565b612d5a9063ffffffff168661349b565b8651612d6691906133e9565b6001600160e01b031681526020018363ffffffff1681525090509392505050565b60408051606081018252600080825260208201819052918101919091526040805180820190915260008082526020820152600080612dc58787612198565b9150508463ffffffff16816020015163ffffffff161415612dee57859350915060009050612e65565b6000612e088288600001516001600160d01b031688612d0c565b90508088886020015162ffffff1662ffffff8110612e2857612e286135ea565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556000612e5988612e6e565b95509093506001925050505b93509350939050565b60408051606081018252600080825260208083018290529282015290820151612e9e9062ffffff90811690612b0c565b62ffffff9081166020840152604083015181161015612b9b57600182604001818151612eca919061340b565b62ffffff169052505090565b80356001600160a01b0381168114612eed57600080fd5b919050565b60008083601f840112612f0457600080fd5b50813567ffffffffffffffff811115612f1c57600080fd5b6020830191508360208260051b850101111561235f57600080fd5b803567ffffffffffffffff81168114612eed57600080fd5b803560ff81168114612eed57600080fd5b600060208284031215612f7257600080fd5b61071c82612ed6565b60008060408385031215612f8e57600080fd5b612f9783612ed6565b9150612fa560208401612ed6565b90509250929050565b600080600060608486031215612fc357600080fd5b612fcc84612ed6565b9250612fda60208501612ed6565b9150604084013590509250925092565b600080600080600080600060e0888a03121561300557600080fd5b61300e88612ed6565b965061301c60208901612ed6565b9550604088013594506060880135935061303860808901612f4f565b925060a0880135915060c0880135905092959891949750929550565b60008060008060008060c0878903121561306d57600080fd5b61307687612ed6565b955061308460208801612ed6565b94506040870135935061309960608801612f4f565b92506080870135915060a087013590509295509295509295565b6000806000604084860312156130c857600080fd5b6130d184612ed6565b9250602084013567ffffffffffffffff8111156130ed57600080fd5b6130f986828701612ef2565b9497909650939450505050565b60008060008060006060868803121561311e57600080fd5b61312786612ed6565b9450602086013567ffffffffffffffff8082111561314457600080fd5b61315089838a01612ef2565b9096509450604088013591508082111561316957600080fd5b5061317688828901612ef2565b969995985093965092949392505050565b6000806040838503121561319a57600080fd5b6131a383612ed6565b9150602083013561ffff811681146131ba57600080fd5b809150509250929050565b600080604083850312156131d857600080fd5b6131e183612ed6565b946020939093013593505050565b6000806040838503121561320257600080fd5b61320b83612ed6565b9150612fa560208401612f37565b60008060006060848603121561322e57600080fd5b61323784612ed6565b925061324560208501612f37565b915061325360408501612f37565b90509250925092565b6000806020838503121561326f57600080fd5b823567ffffffffffffffff81111561328657600080fd5b61329285828601612ef2565b90969095509350505050565b600080600080604085870312156132b457600080fd5b843567ffffffffffffffff808211156132cc57600080fd5b6132d888838901612ef2565b909650945060208701359150808211156132f157600080fd5b506132fe87828801612ef2565b95989497509550505050565b60006020828403121561331c57600080fd5b61071c82612f37565b6020808252825182820181905260009190848201906040850190845b8181101561335d57835183529284019291840191600101613341565b50909695505050505050565b600060208083528351808285015260005b818110156133965785810183015185820160400152820161337a565b818111156133a8576000604083870101525b50601f01601f1916929092016040019392505050565b60006001600160d01b038083168185168083038211156133e0576133e06135a8565b01949350505050565b60006001600160e01b038083168185168083038211156133e0576133e06135a8565b600062ffffff8083168185168083038211156133e0576133e06135a8565b6000821982111561343c5761343c6135a8565b500190565b600064ffffffffff8083168185168083038211156133e0576133e06135a8565b60006001600160e01b038084168061347b5761347b6135be565b92169190910492915050565b600082613496576134966135be565b500490565b60006001600160e01b03808316818516818304811182151516156134c1576134c16135a8565b02949350505050565b60006001600160e01b03838116908316818110156134ea576134ea6135a8565b039392505050565b600082821015613504576135046135a8565b500390565b600063ffffffff838116908316818110156134ea576134ea6135a8565b600181811c9082168061353a57607f821691505b60208210811415611b4357634e487b7160e01b600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561358d5761358d6135a8565b5060010190565b6000826135a3576135a36135be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfe5469636b65742f6275726e2d616d6f756e742d657863656564732d746f74616c2d737570706c792d74776162a2646970667358221220f974356d9d1d5deb3e424d9c06159197d81482d3efd8c0fada57d222f39740ec64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1E5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x68C7FD57 GT PUSH2 0x10F JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x52E JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x541 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x554 JUMPI DUP1 PUSH4 0xF77C4791 EQ PUSH2 0x58D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x4ED JUMPI DUP1 PUSH4 0x98B16F36 EQ PUSH2 0x4F5 JUMPI DUP1 PUSH4 0x9ECB0370 EQ PUSH2 0x508 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x51B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8D22EA2A GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x8D22EA2A EQ PUSH2 0x46D JUMPI DUP1 PUSH4 0x8E6D536A EQ PUSH2 0x4B4 JUMPI DUP1 PUSH4 0x90596DD1 EQ PUSH2 0x4C7 JUMPI DUP1 PUSH4 0x919974DC EQ PUSH2 0x4DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x68C7FD57 EQ PUSH2 0x40B JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x41E JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x447 JUMPI DUP1 PUSH4 0x85BEB5F1 EQ PUSH2 0x45A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E39B61 GT PUSH2 0x187 JUMPI DUP1 PUSH4 0x5C19A95C GT PUSH2 0x156 JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x3B2 JUMPI DUP1 PUSH4 0x5D7B0758 EQ PUSH2 0x3C5 JUMPI DUP1 PUSH4 0x613ED6BD EQ PUSH2 0x3D8 JUMPI DUP1 PUSH4 0x631B5DFB EQ PUSH2 0x3F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E39B61 EQ PUSH2 0x345 JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x36BB2A38 EQ PUSH2 0x362 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x39F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x23D JUMPI DUP1 PUSH4 0x2ACEB534 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0x2D0DD686 EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x314 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1EA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x208 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x22B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F2 PUSH2 0x5B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FF SWAP2 SWAP1 PUSH2 0x3369 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x21B PUSH2 0x216 CALLDATASIZE PUSH1 0x4 PUSH2 0x31C5 JUMP JUMPDEST PUSH2 0x646 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x21B PUSH2 0x24B CALLDATASIZE PUSH1 0x4 PUSH2 0x2FAE JUMP JUMPDEST PUSH2 0x65D JUMP JUMPDEST PUSH2 0x2C9 PUSH2 0x25E CALLDATASIZE PUSH1 0x4 PUSH2 0x2F60 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP1 DUP3 ADD DUP4 MSTORE PUSH1 0x0 DUP1 DUP4 MSTORE PUSH1 0x20 DUP1 DUP5 ADD DUP3 SWAP1 MSTORE SWAP3 DUP5 ADD DUP2 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 SWAP1 SWAP5 AND DUP5 MSTORE PUSH1 0x6 DUP3 MSTORE SWAP3 DUP3 SWAP1 KECCAK256 DUP3 MLOAD SWAP4 DUP5 ADD DUP4 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP5 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP3 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV AND SWAP1 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 DUP3 ADD MLOAD SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x22F PUSH2 0x30F CALLDATASIZE PUSH1 0x4 PUSH2 0x330A JUMP JUMPDEST PUSH2 0x723 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x358 PUSH2 0x353 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F7B JUMP JUMPDEST PUSH2 0x76F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x22F PUSH2 0x7F5 JUMP JUMPDEST PUSH2 0x375 PUSH2 0x370 CALLDATASIZE PUSH1 0x4 PUSH2 0x3187 JUMP JUMPDEST PUSH2 0x804 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x21B PUSH2 0x3AD CALLDATASIZE PUSH1 0x4 PUSH2 0x31C5 JUMP JUMPDEST PUSH2 0x87C JUMP JUMPDEST PUSH2 0x358 PUSH2 0x3C0 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F60 JUMP JUMPDEST PUSH2 0x8B8 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x3D3 CALLDATASIZE PUSH1 0x4 PUSH2 0x31C5 JUMP JUMPDEST PUSH2 0x8C5 JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x3E6 CALLDATASIZE PUSH1 0x4 PUSH2 0x30B3 JUMP JUMPDEST PUSH2 0x947 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FF SWAP2 SWAP1 PUSH2 0x3325 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x406 CALLDATASIZE PUSH1 0x4 PUSH2 0x2FAE JUMP JUMPDEST PUSH2 0xA63 JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x419 CALLDATASIZE PUSH1 0x4 PUSH2 0x3106 JUMP JUMPDEST PUSH2 0xB3C JUMP JUMPDEST PUSH2 0x22F PUSH2 0x42C CALLDATASIZE PUSH1 0x4 PUSH2 0x2F60 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x455 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F60 JUMP JUMPDEST PUSH2 0xB6E JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x468 CALLDATASIZE PUSH1 0x4 PUSH2 0x325C JUMP JUMPDEST PUSH2 0xB8C JUMP JUMPDEST PUSH2 0x49C PUSH2 0x47B CALLDATASIZE PUSH1 0x4 PUSH2 0x2F60 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x4C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x329E JUMP JUMPDEST PUSH2 0xC6F JUMP JUMPDEST PUSH2 0x358 PUSH2 0x4D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x31C5 JUMP JUMPDEST PUSH2 0xC8A JUMP JUMPDEST PUSH2 0x358 PUSH2 0x4E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x3054 JUMP JUMPDEST PUSH2 0xD0C JUMP JUMPDEST PUSH2 0x1F2 PUSH2 0xE8C JUMP JUMPDEST PUSH2 0x22F PUSH2 0x503 CALLDATASIZE PUSH1 0x4 PUSH2 0x3219 JUMP JUMPDEST PUSH2 0xE9B JUMP JUMPDEST PUSH2 0x22F PUSH2 0x516 CALLDATASIZE PUSH1 0x4 PUSH2 0x31EF JUMP JUMPDEST PUSH2 0xF0C JUMP JUMPDEST PUSH2 0x21B PUSH2 0x529 CALLDATASIZE PUSH1 0x4 PUSH2 0x31C5 JUMP JUMPDEST PUSH2 0xF73 JUMP JUMPDEST PUSH2 0x21B PUSH2 0x53C CALLDATASIZE PUSH1 0x4 PUSH2 0x31C5 JUMP JUMPDEST PUSH2 0x1024 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x54F CALLDATASIZE PUSH1 0x4 PUSH2 0x2FEA JUMP JUMPDEST PUSH2 0x1031 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x562 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F7B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x49C PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x5C3 SWAP1 PUSH2 0x3526 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x5EF SWAP1 PUSH2 0x3526 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x63C JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x611 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x63C 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 0x61F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x653 CALLER DUP5 DUP5 PUSH2 0x1195 JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x66A DUP5 DUP5 DUP5 PUSH2 0x12ED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x709 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x716 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x1195 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x657 SWAP1 PUSH1 0x8 SWAP1 DUP5 TIMESTAMP PUSH2 0x1511 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x7E7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x7F1 DUP3 DUP3 PUSH2 0x153D JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7FF PUSH2 0x1613 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD PUSH2 0xFFFF DUP4 AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x84A JUMPI PUSH2 0x84A PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x653 SWAP2 DUP6 SWAP1 PUSH2 0x8B3 SWAP1 DUP7 SWAP1 PUSH2 0x3429 JUMP JUMPDEST PUSH2 0x1195 JUMP JUMPDEST PUSH2 0x8C2 CALLER DUP3 PUSH2 0x153D JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x93D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x7F1 DUP3 DUP3 PUSH2 0x1706 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x965 JUMPI PUSH2 0x965 PUSH2 0x3600 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x98E JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 SWAP4 POP SWAP1 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0xA56 JUMPI PUSH2 0xA27 DUP4 PUSH1 0x1 ADD DUP4 DUP11 DUP11 DUP6 DUP2 DUP2 LT PUSH2 0xA0C JUMPI PUSH2 0xA0C PUSH2 0x35EA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xA21 SWAP2 SWAP1 PUSH2 0x330A JUMP JUMPDEST TIMESTAMP PUSH2 0x1511 JUMP JUMPDEST DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xA39 JUMPI PUSH2 0xA39 PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xA4E DUP2 PUSH2 0x355B JUMP JUMPDEST SWAP2 POP POP PUSH2 0x9EA JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xADB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xB2D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH2 0xB2D SWAP1 DUP4 SWAP1 DUP6 SWAP1 PUSH2 0x8B3 SWAP1 DUP6 SWAP1 PUSH2 0x34F2 JUMP JUMPDEST PUSH2 0xB37 DUP3 DUP3 PUSH2 0x17F1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x60 SWAP1 PUSH2 0xB64 SWAP1 DUP7 DUP7 DUP7 DUP7 PUSH2 0x1982 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x657 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xBAA JUMPI PUSH2 0xBAA PUSH2 0x3600 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xBD3 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xC64 JUMPI PUSH2 0xC35 PUSH1 0x8 DUP4 DUP10 DUP10 DUP6 DUP2 DUP2 LT PUSH2 0xA0C JUMPI PUSH2 0xA0C PUSH2 0x35EA JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xC47 JUMPI PUSH2 0xC47 PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xC5C DUP2 PUSH2 0x355B JUMP JUMPDEST SWAP2 POP POP PUSH2 0xC15 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xC7F PUSH1 0x7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x1982 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xD02 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x7F1 DUP3 DUP3 PUSH2 0x17F1 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0xD5C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F64656C65676174652D657870697265642D646561646C696E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP8 DUP8 PUSH2 0xD8A DUP11 PUSH2 0x1B21 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND SWAP1 DUP6 ADD MSTORE SWAP2 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0xDDE DUP3 PUSH2 0x1B49 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xDEE DUP3 DUP8 DUP8 DUP8 PUSH2 0x1BB2 JUMP JUMPDEST SWAP1 POP DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE77 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F64656C65676174652D696E76616C69642D7369676E61747572 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6500000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0xE81 DUP10 DUP10 PUSH2 0x153D JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x5C3 SWAP1 PUSH2 0x3526 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0xF03 SWAP1 PUSH1 0x1 DUP4 ADD SWAP1 DUP7 DUP7 TIMESTAMP PUSH2 0x1BDA JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0xC82 SWAP1 PUSH1 0x1 DUP4 ADD SWAP1 DUP6 TIMESTAMP PUSH2 0x1511 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x100D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x101A CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x1195 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x653 CALLER DUP5 DUP5 PUSH2 0x12ED JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x1081 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0x10B0 DUP13 PUSH2 0x1B21 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0x110B DUP3 PUSH2 0x1B49 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x111B DUP3 DUP8 DUP8 DUP8 PUSH2 0x1BB2 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x117E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x1189 DUP11 DUP11 DUP11 PUSH2 0x1195 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1210 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x128C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1369 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x13E5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x13F0 DUP4 DUP4 DUP4 PUSH2 0x1C12 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x147F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x14B6 SWAP1 DUP5 SWAP1 PUSH2 0x3429 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1502 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x152D JUMPI DUP4 PUSH2 0x152F JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0xB64 DUP7 DUP7 DUP4 DUP7 PUSH2 0x1CA5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH4 0x1000007 SWAP1 SWAP3 MSTORE SWAP1 SWAP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x1579 JUMPI POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 AND SWAP2 DUP6 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x15CD DUP2 DUP5 DUP5 PUSH2 0x1DBE JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4BC154DD35D6A5CB9206482ECB473CDBF2473006D6BCE728B9CC0741BCC59EA2 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 CHAINID EQ ISZERO PUSH2 0x1662 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH32 0x0 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 DUP3 DUP5 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP4 ADD MSTORE CHAINID PUSH1 0x80 DUP4 ADD MSTORE ADDRESS PUSH1 0xA0 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xC0 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x175C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x1768 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1C12 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x177A SWAP2 SWAP1 PUSH2 0x3429 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x17A7 SWAP1 DUP5 SWAP1 PUSH2 0x3429 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x186D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x1879 DUP3 PUSH1 0x0 DUP4 PUSH2 0x1C12 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x1908 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x1937 SWAP1 DUP5 SWAP1 PUSH2 0x34F2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 DUP3 DUP2 EQ PUSH2 0x19FA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F73746172742D656E642D74696D65732D6C656E6774682D6D61 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7463680000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP9 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1A4F JUMPI PUSH2 0x1A4F PUSH2 0x3600 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1A78 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x1B12 JUMPI PUSH2 0x1AE3 DUP12 PUSH1 0x1 ADD DUP6 DUP13 DUP13 DUP6 DUP2 DUP2 LT PUSH2 0x1AA1 JUMPI PUSH2 0x1AA1 PUSH2 0x35EA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1AB6 SWAP2 SWAP1 PUSH2 0x330A JUMP JUMPDEST DUP12 DUP12 DUP7 DUP2 DUP2 LT PUSH2 0x1AC8 JUMPI PUSH2 0x1AC8 PUSH2 0x35EA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1ADD SWAP2 SWAP1 PUSH2 0x330A JUMP JUMPDEST DUP7 PUSH2 0x1BDA JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1AF5 JUMPI PUSH2 0x1AF5 PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x1B0A DUP2 PUSH2 0x355B JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1A7F JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE SWAP1 JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x657 PUSH2 0x1B56 PUSH2 0x1613 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x22 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x42 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x62 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1BC3 DUP8 DUP8 DUP8 DUP8 PUSH2 0x1E1E JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1BD0 DUP2 PUSH2 0x1F0B JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1BF6 JUMPI DUP4 PUSH2 0x1BF8 JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0x1C07 DUP8 DUP8 DUP8 DUP5 DUP8 PUSH2 0x20FC JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1C31 JUMPI POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x1C62 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x1C93 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND JUMPDEST PUSH2 0x1C9E DUP3 DUP3 DUP6 PUSH2 0x1DBE JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1CDC DUP9 DUP9 PUSH2 0x2198 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP2 SWAP5 POP SWAP2 POP PUSH2 0x1CFD SWAP1 PUSH4 0xFFFFFFFF SWAP1 DUP2 AND SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH2 0x2218 AND JUMP JUMPDEST ISZERO PUSH2 0x1D18 JUMPI POP POP DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP2 POP PUSH2 0xC82 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D24 DUP10 DUP10 PUSH2 0x22E9 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP1 SWAP4 POP SWAP1 SWAP2 POP PUSH2 0x1D45 SWAP1 PUSH4 0xFFFFFFFF DUP1 DUP11 AND SWAP2 SWAP1 DUP10 SWAP1 PUSH2 0x2366 AND JUMP JUMPDEST ISZERO PUSH2 0x1D57 JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0xC82 JUMP JUMPDEST PUSH2 0x1D69 DUP10 DUP6 DUP4 DUP11 DUP13 PUSH1 0x40 ADD MLOAD DUP12 PUSH2 0x2435 JUMP JUMPDEST DUP1 SWAP5 POP DUP2 SWAP4 POP POP POP PUSH2 0x1D84 DUP4 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP9 PUSH2 0x2602 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP5 PUSH1 0x0 ADD MLOAD PUSH2 0x1D9E SWAP2 SWAP1 PUSH2 0x34CA JUMP JUMPDEST PUSH2 0x1DA8 SWAP2 SWAP1 PUSH2 0x3461 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO PUSH2 0x1DEE JUMPI PUSH2 0x1DD7 DUP4 DUP3 PUSH2 0x26CC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1DEE JUMPI PUSH2 0x1DEE DUP2 PUSH2 0x2821 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0xB37 JUMPI PUSH2 0x1E07 DUP3 DUP3 PUSH2 0x293A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xB37 JUMPI PUSH2 0xB37 DUP2 PUSH2 0x2971 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0x1E55 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x3 PUSH2 0x1F02 JUMP JUMPDEST DUP5 PUSH1 0xFF AND PUSH1 0x1B EQ ISZERO DUP1 ISZERO PUSH2 0x1E6D JUMPI POP DUP5 PUSH1 0xFF AND PUSH1 0x1C EQ ISZERO JUMPDEST ISZERO PUSH2 0x1E7E JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x4 PUSH2 0x1F02 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1ED2 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1EFB JUMPI PUSH1 0x0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0x1F02 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1F1F JUMPI PUSH2 0x1F1F PUSH2 0x35D4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1F28 JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1F3C JUMPI PUSH2 0x1F3C PUSH2 0x35D4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1F8A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1F9E JUMPI PUSH2 0x1F9E PUSH2 0x35D4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1FEC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2000 JUMPI PUSH2 0x2000 PUSH2 0x35D4 JUMP JUMPDEST EQ ISZERO PUSH2 0x2074 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x4 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2088 JUMPI PUSH2 0x2088 PUSH2 0x35D4 JUMP JUMPDEST EQ ISZERO PUSH2 0x8C2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x210B DUP9 DUP9 PUSH2 0x22E9 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 PUSH2 0x211C DUP11 DUP11 PUSH2 0x2198 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x2132 DUP12 DUP12 DUP5 DUP8 DUP8 DUP11 DUP16 DUP15 PUSH2 0x298C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2146 DUP13 DUP13 DUP6 DUP9 DUP9 DUP12 DUP16 DUP16 PUSH2 0x298C JUMP JUMPDEST SWAP1 POP PUSH2 0x215B DUP2 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP11 PUSH2 0x2602 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP3 PUSH1 0x0 ADD MLOAD PUSH2 0x2175 SWAP2 SWAP1 PUSH2 0x34CA JUMP JUMPDEST PUSH2 0x217F SWAP2 SWAP1 PUSH2 0x3461 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP13 SWAP12 POP POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH2 0x21C7 DUP4 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP1 AND PUSH2 0x2AD6 JUMP JUMPDEST SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x21E2 JUMPI PUSH2 0x21E2 PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP5 SWAP2 SWAP4 POP SWAP1 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x2242 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x225E JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0x71C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x228D JUMPI PUSH2 0x2288 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3441 JUMP JUMPDEST PUSH2 0x2295 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x22CD JUMPI PUSH2 0x22C8 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3441 JUMP JUMPDEST PUSH2 0x22D5 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP3 PUSH1 0x20 ADD MLOAD SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2320 JUMPI PUSH2 0x2320 PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x235F JUMPI PUSH1 0x0 SWAP2 POP DUP4 DUP3 PUSH2 0x21E2 JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x2390 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x23AB JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND LT SWAP1 POP PUSH2 0x71C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x23DA JUMPI PUSH2 0x23D5 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3441 JUMP JUMPDEST PUSH2 0x23E2 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x241A JUMPI PUSH2 0x2415 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3441 JUMP JUMPDEST PUSH2 0x2422 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 LT SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0x2480 JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0x249B JUMP JUMPDEST PUSH1 0x1 PUSH2 0x2491 PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x3429 JUMP JUMPDEST PUSH2 0x249B SWAP2 SWAP1 PUSH2 0x34F2 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0x24AC DUP4 DUP6 PUSH2 0x3429 JUMP JUMPDEST PUSH2 0x24B6 SWAP2 SWAP1 PUSH2 0x3487 JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0x24C8 DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0x2B00 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x24DF JUMPI PUSH2 0x24DF PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0x2527 JUMPI PUSH2 0x251F DUP3 PUSH1 0x1 PUSH2 0x3429 JUMP JUMPDEST SWAP4 POP POP PUSH2 0x24A0 JUMP JUMPDEST DUP12 PUSH2 0x2537 DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0x2B0C JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x254E JUMPI PUSH2 0x254E PUSH2 0x35EA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0x2593 SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0x2218 AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x25BC JUMPI POP PUSH2 0x25BC DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0x2218 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x25C8 JUMPI POP POP PUSH2 0x25F4 JUMP JUMPDEST DUP1 PUSH2 0x25DF JUMPI PUSH2 0x25D8 PUSH1 0x1 DUP5 PUSH2 0x34F2 JUMP JUMPDEST SWAP4 POP PUSH2 0x25ED JUMP JUMPDEST PUSH2 0x25EA DUP4 PUSH1 0x1 PUSH2 0x3429 JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0x24A0 JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x262C JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x2642 JUMPI PUSH2 0x263B DUP4 DUP6 PUSH2 0x3509 JUMP JUMPDEST SWAP1 POP PUSH2 0x71C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x2671 JUMPI PUSH2 0x266C PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3441 JUMP JUMPDEST PUSH2 0x2679 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x26B1 JUMPI PUSH2 0x26AC PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3441 JUMP JUMPDEST PUSH2 0x26B9 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH2 0xB64 DUP2 DUP4 PUSH2 0x34F2 JUMP JUMPDEST DUP1 PUSH2 0x26D5 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP1 DUP1 PUSH2 0x2739 DUP5 PUSH2 0x26FD DUP8 PUSH2 0x2B1C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1B DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5469636B65742F747761622D6275726E2D6C742D62616C616E63650000000000 DUP2 MSTORE POP TIMESTAMP PUSH2 0x2B9F JUMP JUMPDEST DUP3 MLOAD DUP8 SLOAD PUSH1 0x20 DUP6 ADD MLOAD PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP4 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP3 AND MUL OR DUP8 SSTORE SWAP2 SWAP5 POP SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x2819 JUMPI PUSH1 0x40 DUP1 MLOAD DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH32 0xDD3E7CD3A260A292B0B3306B2CA62F30A7349619A9D09C58109318774C6B627D SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH2 0x2829 JUMPI POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x285B PUSH1 0x7 PUSH2 0x283C DUP7 PUSH2 0x2B1C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2C DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3617 PUSH1 0x2C SWAP2 CODECOPY TIMESTAMP PUSH2 0x2B9F JUMP JUMPDEST DUP3 MLOAD PUSH1 0x7 DUP1 SLOAD PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x40 DUP8 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP5 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP4 AND MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE SWAP2 SWAP5 POP SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x150B JUMPI PUSH1 0x40 DUP1 MLOAD DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 DUP3 ADD MSTORE PUSH32 0x3375B905D617084FA6B7531688CC8046FEB1F1A0B8BA2273DE03C59D8D84416C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP JUMP JUMPDEST DUP1 PUSH2 0x2943 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP1 DUP1 PUSH2 0x2739 DUP5 PUSH2 0x296B DUP8 PUSH2 0x2B1C JUMP JUMPDEST TIMESTAMP PUSH2 0x2C63 JUMP JUMPDEST DUP1 PUSH2 0x2979 JUMPI POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x285B PUSH1 0x7 PUSH2 0x296B DUP7 PUSH2 0x2B1C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x29BF DUP4 DUP4 DUP10 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x2366 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x29E3 JUMPI PUSH2 0x29DC DUP8 DUP10 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP6 PUSH2 0x2D0C JUMP JUMPDEST SWAP1 POP PUSH2 0x2ACA JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x2A02 JUMPI POP DUP6 PUSH2 0x2ACA JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x2A21 JUMPI POP DUP5 PUSH2 0x2ACA JUMP JUMPDEST PUSH2 0x2A40 DUP7 PUSH1 0x20 ADD MLOAD DUP4 DUP6 PUSH4 0xFFFFFFFF AND PUSH2 0x2366 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x2A65 JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2ACA JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x2A7A DUP12 DUP9 DUP9 DUP9 DUP15 PUSH1 0x40 ADD MLOAD DUP10 PUSH2 0x2435 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x2A93 DUP3 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x20 ADD MLOAD DUP8 PUSH2 0x2602 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x0 ADD MLOAD DUP4 PUSH1 0x0 ADD MLOAD PUSH2 0x2AAD SWAP2 SWAP1 PUSH2 0x34CA JUMP JUMPDEST PUSH2 0x2AB7 SWAP2 SWAP1 PUSH2 0x3461 JUMP JUMPDEST SWAP1 POP PUSH2 0x2AC4 DUP4 DUP3 DUP9 PUSH2 0x2D0C JUMP JUMPDEST SWAP4 POP POP POP POP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x2AE5 JUMPI POP PUSH1 0x0 PUSH2 0x657 JUMP JUMPDEST PUSH2 0x71C PUSH1 0x1 PUSH2 0x2AF4 DUP5 DUP7 PUSH2 0x3429 JUMP JUMPDEST PUSH2 0x2AFE SWAP2 SWAP1 PUSH2 0x34F2 JUMP JUMPDEST DUP4 JUMPDEST PUSH1 0x0 PUSH2 0x71C DUP3 DUP5 PUSH2 0x3594 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x71C PUSH2 0x2AFE DUP5 PUSH1 0x1 PUSH2 0x3429 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP3 GT ISZERO PUSH2 0x2B9B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2032 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x3038206269747300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP5 DIV DUP2 AND PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x0 SWAP3 DUP8 SWAP2 SWAP1 DUP10 AND GT ISZERO PUSH2 0x2C35 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x700 SWAP2 SWAP1 PUSH2 0x3369 JUMP JUMPDEST POP PUSH2 0x2C44 DUP9 PUSH1 0x1 ADD DUP3 DUP8 PUSH2 0x2D87 JUMP JUMPDEST DUP3 MLOAD SWAP10 SWAP1 SWAP10 SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP3 MSTORE SWAP1 SWAP10 SWAP1 SWAP9 POP SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x2CDF PUSH1 0x1 DUP9 ADD DUP3 DUP8 PUSH2 0x2D87 JUMP JUMPDEST DUP4 MLOAD SWAP3 SWAP7 POP SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x2CF4 SWAP1 DUP8 SWAP1 PUSH2 0x33BE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP5 MSTORE POP SWAP2 SWAP6 SWAP1 SWAP5 POP SWAP1 SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x2D4A DUP7 PUSH1 0x20 ADD MLOAD DUP6 DUP7 PUSH4 0xFFFFFFFF AND PUSH2 0x2602 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x2D5A SWAP1 PUSH4 0xFFFFFFFF AND DUP7 PUSH2 0x349B JUMP JUMPDEST DUP7 MLOAD PUSH2 0x2D66 SWAP2 SWAP1 PUSH2 0x33E9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP1 PUSH2 0x2DC5 DUP8 DUP8 PUSH2 0x2198 JUMP JUMPDEST SWAP2 POP POP DUP5 PUSH4 0xFFFFFFFF AND DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x2DEE JUMPI DUP6 SWAP4 POP SWAP2 POP PUSH1 0x0 SWAP1 POP PUSH2 0x2E65 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E08 DUP3 DUP9 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP9 PUSH2 0x2D0C JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP9 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2E28 JUMPI PUSH2 0x2E28 PUSH2 0x35EA JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE PUSH1 0x0 PUSH2 0x2E59 DUP9 PUSH2 0x2E6E JUMP JUMPDEST SWAP6 POP SWAP1 SWAP4 POP PUSH1 0x1 SWAP3 POP POP POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP3 DUP3 ADD MSTORE SWAP1 DUP3 ADD MLOAD PUSH2 0x2E9E SWAP1 PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP1 PUSH2 0x2B0C JUMP JUMPDEST PUSH3 0xFFFFFF SWAP1 DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD DUP2 AND LT ISZERO PUSH2 0x2B9B JUMPI PUSH1 0x1 DUP3 PUSH1 0x40 ADD DUP2 DUP2 MLOAD PUSH2 0x2ECA SWAP2 SWAP1 PUSH2 0x340B JUMP JUMPDEST PUSH3 0xFFFFFF AND SWAP1 MSTORE POP POP SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2EED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2F04 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2F1C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x235F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2EED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x2EED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2F72 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x71C DUP3 PUSH2 0x2ED6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2F8E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2F97 DUP4 PUSH2 0x2ED6 JUMP JUMPDEST SWAP2 POP PUSH2 0x2FA5 PUSH1 0x20 DUP5 ADD PUSH2 0x2ED6 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2FC3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2FCC DUP5 PUSH2 0x2ED6 JUMP JUMPDEST SWAP3 POP PUSH2 0x2FDA PUSH1 0x20 DUP6 ADD PUSH2 0x2ED6 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x3005 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x300E DUP9 PUSH2 0x2ED6 JUMP JUMPDEST SWAP7 POP PUSH2 0x301C PUSH1 0x20 DUP10 ADD PUSH2 0x2ED6 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x3038 PUSH1 0x80 DUP10 ADD PUSH2 0x2F4F JUMP JUMPDEST SWAP3 POP PUSH1 0xA0 DUP9 ADD CALLDATALOAD SWAP2 POP PUSH1 0xC0 DUP9 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x306D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3076 DUP8 PUSH2 0x2ED6 JUMP JUMPDEST SWAP6 POP PUSH2 0x3084 PUSH1 0x20 DUP9 ADD PUSH2 0x2ED6 JUMP JUMPDEST SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x3099 PUSH1 0x60 DUP9 ADD PUSH2 0x2F4F JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD SWAP2 POP PUSH1 0xA0 DUP8 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x30C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x30D1 DUP5 PUSH2 0x2ED6 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x30ED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x30F9 DUP7 DUP3 DUP8 ADD PUSH2 0x2EF2 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x311E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3127 DUP7 PUSH2 0x2ED6 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x3144 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3150 DUP10 DUP4 DUP11 ADD PUSH2 0x2EF2 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x3169 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3176 DUP9 DUP3 DUP10 ADD PUSH2 0x2EF2 JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x319A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x31A3 DUP4 PUSH2 0x2ED6 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x31BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x31D8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x31E1 DUP4 PUSH2 0x2ED6 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3202 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x320B DUP4 PUSH2 0x2ED6 JUMP JUMPDEST SWAP2 POP PUSH2 0x2FA5 PUSH1 0x20 DUP5 ADD PUSH2 0x2F37 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x322E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3237 DUP5 PUSH2 0x2ED6 JUMP JUMPDEST SWAP3 POP PUSH2 0x3245 PUSH1 0x20 DUP6 ADD PUSH2 0x2F37 JUMP JUMPDEST SWAP2 POP PUSH2 0x3253 PUSH1 0x40 DUP6 ADD PUSH2 0x2F37 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x326F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3286 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3292 DUP6 DUP3 DUP7 ADD PUSH2 0x2EF2 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x32B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x32CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x32D8 DUP9 DUP4 DUP10 ADD PUSH2 0x2EF2 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x32F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x32FE DUP8 DUP3 DUP9 ADD PUSH2 0x2EF2 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x331C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x71C DUP3 PUSH2 0x2F37 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x335D JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x3341 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3396 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x337A JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x33A8 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x33E0 JUMPI PUSH2 0x33E0 PUSH2 0x35A8 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x33E0 JUMPI PUSH2 0x33E0 PUSH2 0x35A8 JUMP JUMPDEST PUSH1 0x0 PUSH3 0xFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x33E0 JUMPI PUSH2 0x33E0 PUSH2 0x35A8 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x343C JUMPI PUSH2 0x343C PUSH2 0x35A8 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x33E0 JUMPI PUSH2 0x33E0 PUSH2 0x35A8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP5 AND DUP1 PUSH2 0x347B JUMPI PUSH2 0x347B PUSH2 0x35BE JUMP JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x3496 JUMPI PUSH2 0x3496 PUSH2 0x35BE JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x34C1 JUMPI PUSH2 0x34C1 PUSH2 0x35A8 JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x34EA JUMPI PUSH2 0x34EA PUSH2 0x35A8 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x3504 JUMPI PUSH2 0x3504 PUSH2 0x35A8 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x34EA JUMPI PUSH2 0x34EA PUSH2 0x35A8 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x353A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1B43 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x358D JUMPI PUSH2 0x358D PUSH2 0x35A8 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x35A3 JUMPI PUSH2 0x35A3 PUSH2 0x35BE JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID SLOAD PUSH10 0x636B65742F6275726E2D PUSH2 0x6D6F PUSH22 0x6E742D657863656564732D746F74616C2D737570706C PUSH26 0x2D74776162A2646970667358221220F974356D9D1D5DEB3E424D SWAP13 MOD ISZERO SWAP2 SWAP8 0xD8 EQ DUP3 0xD3 0xEF 0xD8 0xC0 STATICCALL 0xDA JUMPI 0xD2 0x22 RETURN SWAP8 BLOCKHASH 0xEC PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "897:12604:36:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4181:166;;;;;;:::i;:::-;;:::i;:::-;;;8320:14:84;;8313:22;8295:41;;8283:2;8268:18;4181:166:1;8250:92:84;3172:106:1;3259:12;;3172:106;;;8493:25:84;;;8481:2;8466:18;3172:106:1;8448:76:84;4814:478:1;;;;;;:::i;:::-;;:::i;2268:189:36:-;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:16:36;;;;;;:9;:16;;;;;;2419:31;;;;;;;;-1:-1:-1;;;;;2419:31:36;;;;;-1:-1:-1;;;2419:31:36;;;;;;;;;;;-1:-1:-1;;;2419:31:36;;;;;;;;2268:189;;;;;19686:13:84;;-1:-1:-1;;;;;19682:74:84;19664:93;;19804:4;19792:17;;;19786:24;19829:8;19875:21;;;19853:20;;;19846:51;;;;19945:17;;;19939:24;19935:33;;;19913:20;;;19906:63;19652:2;19637:18;2268:189:36;19619:356:84;4962:307:36;;;;;;:::i;:::-;;:::i;3868:98:28:-;;;20728:4:84;3950:9:28;20716:17:84;20698:36;;20686:2;20671:18;3868:98:28;20653:87:84;6114:130:36;;;;;;:::i;:::-;;:::i;:::-;;2426:113:4;;;:::i;2491:204:36:-;;;;;;:::i;:::-;;:::i;:::-;;;;20208:13:84;;-1:-1:-1;;;;;20204:78:84;20186:97;;20343:4;20331:17;;;20325:24;20351:10;20321:41;20299:20;;;20292:71;;;;20159:18;2491:204:36;20141:228:84;5687:212:1;;;;;;:::i;:::-;;:::i;6951:100:36:-;;;;;;:::i;:::-;;:::i;2328:171:28:-;;;;;;:::i;:::-;;:::i;4247:681:36:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3357:312:28:-;;;;;;:::i;:::-;;:::i;3126:282:36:-;;;;;;:::i;:::-;;:::i;3336:125:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3436:18:1;3410:7;3436:18;;;;;;;;;;;;3336:125;2176:126:4;;;;;;:::i;:::-;;:::i;5303:627:36:-;;;;;;:::i;:::-;;:::i;5964:116::-;;;;;;:::i;:::-;-1:-1:-1;;;;;6057:16:36;;;6031:7;6057:16;;;:9;:16;;;;;;;;5964:116;;;;-1:-1:-1;;;;;7451:55:84;;;7433:74;;7421:2;7406:18;5964:116:36;7388:125:84;3442:263:36;;;;;;:::i;:::-;;:::i;2774:171:28:-;;;;;;:::i;:::-;;:::i;6278:639:36:-;;;;;;:::i;:::-;;:::i;2295:102:1:-;;;:::i;3739:474:36:-;;;;;;:::i;:::-;;:::i;2729:363::-;;;;;;:::i;:::-;;:::i;6386:405:1:-;;;;;;:::i;:::-;;:::i;3664:172::-;;;;;;:::i;:::-;;:::i;1489:626:4:-;;;;;;:::i;:::-;;:::i;3894:149:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4009:18:1;;;3983:7;4009:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3894:149;540:44:28;;;;;2084:98:1;2138:13;2170:5;2163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98;:::o;4181:166::-;4264:4;4280:39;666:10:12;4303:7:1;4312:6;4280:8;:39::i;:::-;-1:-1:-1;4336:4:1;4181:166;;;;;:::o;4814:478::-;4950:4;4966:36;4976:6;4984:9;4995:6;4966:9;:36::i;:::-;-1:-1:-1;;;;;5040:19:1;;5013:24;5040:19;;;:11;:19;;;;;;;;666:10:12;5040:33:1;;;;;;;;5091:26;;;;5083:79;;;;-1:-1:-1;;;5083:79:1;;16100:2:84;5083:79:1;;;16082:21:84;16139:2;16119:18;;;16112:30;16178:34;16158:18;;;16151:62;16249:10;16229:18;;;16222:38;16277:19;;5083:79:1;;;;;;;;;5196:57;5205:6;666:10:12;5246:6:1;5227:16;:25;5196:8;:57::i;:::-;5281:4;5274:11;;;4814:478;;;;;;:::o;4962:307:36:-;5074:188;;;;;;;;5112:15;5074:188;-1:-1:-1;;;;;5074:188:36;;;;;-1:-1:-1;;;5074:188:36;;;;;;;;-1:-1:-1;;;5074:188:36;;;;;;;;;;;5036:7;;5074:188;;5112:21;;5199:7;5232:15;5074:20;:188::i;6114:130::-;1039:10:28;-1:-1:-1;;;;;1061:10:28;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:28;;18528:2:84;1031:77:28;;;18510:21:84;18567:2;18547:18;;;18540:30;18606:33;18586:18;;;18579:61;18657:18;;1031:77:28;18500:181:84;1031:77:28;6216:21:36::1;6226:5;6233:3;6216:9;:21::i;:::-;6114:130:::0;;:::o;2426:113:4:-;2486:7;2512:20;:18;:20::i;:::-;2505:27;;2426:113;:::o;2491:204:36:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;2658:16:36;;;;;;:9;:16;;;;;:22;;:30;;;;;;;;;;:::i;:::-;2651:37;;;;;;;;;2658:30;;2651:37;-1:-1:-1;;;;;2651:37:36;;;;-1:-1:-1;;;2651:37:36;;;;;;;;;2491:204;-1:-1:-1;;;2491:204:36:o;5687:212:1:-;666:10:12;5775:4:1;5823:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5823:34:1;;;;;;;;;;5775:4;;5791:80;;5814:7;;5823:47;;5860:10;;5823:47;:::i;:::-;5791:8;:80::i;6951:100:36:-;7018:26;7028:10;7040:3;7018:9;:26::i;:::-;6951:100;:::o;2328:171:28:-;1039:10;-1:-1:-1;;;;;1061:10:28;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:28;;18528:2:84;1031:77:28;;;18510:21:84;18567:2;18547:18;;;18540:30;18606:33;18586:18;;;18579:61;18657:18;;1031:77:28;18500:181:84;1031:77:28;2471:21:::1;2477:5;2484:7;2471:5;:21::i;4247:681:36:-:0;4377:16;4426:8;4409:14;4426:8;4480:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4480:21:36;-1:-1:-1;;;;;;4550:16:36;;4512:35;4550:16;;;:9;:16;;;;;;;;4576:59;;;;;;;;;-1:-1:-1;;;;;4576:59:36;;;;;-1:-1:-1;;;4576:59:36;;;;;;;;;;;-1:-1:-1;;;4576:59:36;;;;;;;;;;;;4451:50;;-1:-1:-1;4576:59:36;4646:249;4670:6;4666:1;:10;4646:249;;;4712:172;4750:11;:17;;4785:7;4817:8;;4826:1;4817:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4854:15;4712:20;:172::i;:::-;4697:9;4707:1;4697:12;;;;;;;;:::i;:::-;;;;;;;;;;:187;4678:3;;;;:::i;:::-;;;;4646:249;;;-1:-1:-1;4912:9:36;;4247:681;-1:-1:-1;;;;;;;4247:681:36:o;3357:312:28:-;1039:10;-1:-1:-1;;;;;1061:10:28;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:28;;18528:2:84;1031:77:28;;;18510:21:84;18567:2;18547:18;;;18540:30;18606:33;18586:18;;;18579:61;18657:18;;1031:77:28;18500:181:84;1031:77:28;3534:5:::1;-1:-1:-1::0;;;;;3521:18:28::1;:9;-1:-1:-1::0;;;;;3521:18:28::1;;3517:114;;-1:-1:-1::0;;;;;4009:18:1;;;3983:7;4009:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;3555:65:28::1;::::0;4009:18:1;;:27;;3582:37:28::1;::::0;3612:7;;3582:37:::1;:::i;3555:65::-;3641:21;3647:5;3654:7;3641:5;:21::i;:::-;3357:312:::0;;;:::o;3126:282:36:-;-1:-1:-1;;;;;3360:16:36;;;;;;:9;:16;;;;;3298;;3333:68;;3378:11;;3391:9;;3333:26;:68::i;:::-;3326:75;3126:282;-1:-1:-1;;;;;;3126:282:36:o;2176:126:4:-;-1:-1:-1;;;;;2271:14:4;;2245:7;2271:14;;;:7;:14;;;;;864::13;2271:24:4;773:112:13;5303:627:36;5423:16;5472:8;5455:14;5472:8;5530:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5530:21:36;-1:-1:-1;5562:63:36;;;;;;;;5602:15;5562:63;-1:-1:-1;;;;;5562:63:36;;;;;-1:-1:-1;;;5562:63:36;;;;;;;;-1:-1:-1;;;5562:63:36;;;;;;;;;;;5497:54;;-1:-1:-1;5562:37:36;5636:257;5660:6;5656:1;:10;5636:257;;;5706:176;5744:21;5783:7;5815:8;;5824:1;5815:11;;;;;;;:::i;5706:176::-;5687:13;5701:1;5687:16;;;;;;;;:::i;:::-;;;;;;;;;;:195;5668:3;;;;:::i;:::-;;;;5636:257;;;-1:-1:-1;5910:13:36;;5303:627;-1:-1:-1;;;;;5303:627:36:o;3442:263::-;3596:16;3631:67;3658:15;3675:11;;3688:9;;3631:26;:67::i;:::-;3624:74;;3442:263;;;;;;;:::o;2774:171:28:-;1039:10;-1:-1:-1;;;;;1061:10:28;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:28;;18528:2:84;1031:77:28;;;18510:21:84;18567:2;18547:18;;;18540:30;18606:33;18586:18;;;18579:61;18657:18;;1031:77:28;18500:181:84;1031:77:28;2917:21:::1;2923:5;2930:7;2917:5;:21::i;6278:639:36:-:0;6516:9;6497:15;:28;;6489:73;;;;-1:-1:-1;;;6489:73:36;;13401:2:84;6489:73:36;;;13383:21:84;;;13420:18;;;13413:30;13479:34;13459:18;;;13452:62;13531:18;;6489:73:36;13373:182:84;6489:73:36;6573:18;6615;6635:5;6642:12;6656:16;6666:5;6656:9;:16::i;:::-;6604:80;;;;;;8788:25:84;;;;-1:-1:-1;;;;;8910:15:84;;;8890:18;;;8883:43;8962:15;;8942:18;;;8935:43;8994:18;;;8987:34;9037:19;;;9030:35;;;8760:19;;6604:80:36;;;;;;;;;;;;6594:91;;;;;;6573:112;;6696:12;6711:28;6728:10;6711:16;:28::i;:::-;6696:43;;6750:14;6767:31;6781:4;6787:2;6791;6795;6767:13;:31::i;:::-;6750:48;;6826:5;-1:-1:-1;;;;;6816:15:36;:6;-1:-1:-1;;;;;6816:15:36;;6808:61;;;;-1:-1:-1;;;6808:61:36;;18126:2:84;6808:61:36;;;18108:21:84;18165:2;18145:18;;;18138:30;18204:34;18184:18;;;18177:62;18275:3;18255:18;;;18248:31;18296:19;;6808:61:36;18098:223:84;6808:61:36;6880:30;6890:5;6897:12;6880:9;:30::i;:::-;6479:438;;;6278:639;;;;;;:::o;2295:102:1:-;2351:13;2383:7;2376:14;;;;;:::i;3739:474:36:-;-1:-1:-1;;;;;3939:16:36;;3886:7;3939:16;;;:9;:16;;;;;;;;3985:221;;;;;;;;;-1:-1:-1;;;;;3985:221:36;;;;;-1:-1:-1;;;3985:221:36;;;;;;;;;;;-1:-1:-1;;;3985:221:36;;;;;;;;;;;;3939:16;3985:221;;4035:13;;;;4106:10;4142:8;4176:15;3985:32;:221::i;:::-;3966:240;3739:474;-1:-1:-1;;;;;3739:474:36:o;2729:363::-;-1:-1:-1;;;;;2867:16:36;;2814:7;2867:16;;;:9;:16;;;;;;;;2913:172;;;;;;;;;-1:-1:-1;;;;;2913:172:36;;;;;-1:-1:-1;;;2913:172:36;;;;;;;;;;;-1:-1:-1;;;2913:172:36;;;;;;;;;;;;2867:16;2913:172;;2951:13;;;;3022:7;3055:15;2913:20;:172::i;6386:405:1:-;666:10:12;6479:4:1;6522:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6522:34:1;;;;;;;;;;6574:35;;;;6566:85;;;;-1:-1:-1;;;6566:85:1;;18888:2:84;6566:85:1;;;18870:21:84;18927:2;18907:18;;;18900:30;18966:34;18946:18;;;18939:62;19037:7;19017:18;;;19010:35;19062:19;;6566:85:1;18860:227:84;6566:85:1;6685:67;666:10:12;6708:7:1;6736:15;6717:16;:34;6685:8;:67::i;:::-;-1:-1:-1;6780:4:1;;6386:405;-1:-1:-1;;;6386:405:1:o;3664:172::-;3750:4;3766:42;666:10:12;3790:9:1;3801:6;3766:9;:42::i;1489:626:4:-;1724:8;1705:15;:27;;1697:69;;;;-1:-1:-1;;;1697:69:4;;13762:2:84;1697:69:4;;;13744:21:84;13801:2;13781:18;;;13774:30;13840:31;13820:18;;;13813:59;13889:18;;1697:69:4;13734:179:84;1697:69:4;1777:18;1819:16;1837:5;1844:7;1853:5;1860:16;1870:5;1860:9;:16::i;:::-;1808:79;;;;;;9363:25:84;;;;-1:-1:-1;;;;;9485:15:84;;;9465:18;;;9458:43;9537:15;;;;9517:18;;;9510:43;9569:18;;;9562:34;9612:19;;;9605:35;9656:19;;;9649:35;;;9335:19;;1808:79:4;;;;;;;;;;;;1798:90;;;;;;1777:111;;1899:12;1914:28;1931:10;1914:16;:28::i;:::-;1899:43;;1953:14;1970:28;1984:4;1990:1;1993;1996;1970:13;:28::i;:::-;1953:45;;2026:5;-1:-1:-1;;;;;2016:15:4;:6;-1:-1:-1;;;;;2016:15:4;;2008:58;;;;-1:-1:-1;;;2008:58:4;;15741:2:84;2008:58:4;;;15723:21:84;15780:2;15760:18;;;15753:30;15819:32;15799:18;;;15792:60;15869:18;;2008:58:4;15713:180:84;2008:58:4;2077:31;2086:5;2093:7;2102:5;2077:8;:31::i;:::-;1687:428;;;1489:626;;;;;;;:::o;9962:370:1:-;-1:-1:-1;;;;;10093:19:1;;10085:68;;;;-1:-1:-1;;;10085:68:1;;17721:2:84;10085:68:1;;;17703:21:84;17760:2;17740:18;;;17733:30;17799:34;17779:18;;;17772:62;17870:6;17850:18;;;17843:34;17894:19;;10085:68:1;17693:226:84;10085:68:1;-1:-1:-1;;;;;10171:21:1;;10163:68;;;;-1:-1:-1;;;10163:68:1;;12998:2:84;10163:68:1;;;12980:21:84;13037:2;13017:18;;;13010:30;13076:34;13056:18;;;13049:62;13147:4;13127:18;;;13120:32;13169:19;;10163:68:1;12970:224:84;10163:68:1;-1:-1:-1;;;;;10242:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10293:32;;8493:25:84;;;10293:32:1;;8466:18:84;10293:32:1;;;;;;;9962:370;;;:::o;7265:713::-;-1:-1:-1;;;;;7400:20:1;;7392:70;;;;-1:-1:-1;;;7392:70:1;;16911:2:84;7392:70:1;;;16893:21:84;16950:2;16930:18;;;16923:30;16989:34;16969:18;;;16962:62;17060:7;17040:18;;;17033:35;17085:19;;7392:70:1;16883:227:84;7392:70:1;-1:-1:-1;;;;;7480:23:1;;7472:71;;;;-1:-1:-1;;;7472:71:1;;11831:2:84;7472:71:1;;;11813:21:84;11870:2;11850:18;;;11843:30;11909:34;11889:18;;;11882:62;11980:5;11960:18;;;11953:33;12003:19;;7472:71:1;11803:225:84;7472:71:1;7554:47;7575:6;7583:9;7594:6;7554:20;:47::i;:::-;-1:-1:-1;;;;;7636:17:1;;7612:21;7636:17;;;;;;;;;;;7671:23;;;;7663:74;;;;-1:-1:-1;;;7663:74:1;;14120:2:84;7663:74:1;;;14102:21:84;14159:2;14139:18;;;14132:30;14198:34;14178:18;;;14171:62;14269:8;14249:18;;;14242:36;14295:19;;7663:74:1;14092:228:84;7663:74:1;-1:-1:-1;;;;;7771:17:1;;;:9;:17;;;;;;;;;;;7791:22;;;7771:42;;7833:20;;;;;;;;:30;;7807:6;;7771:9;7833:30;;7807:6;;7833:30;:::i;:::-;;;;;;;;7896:9;-1:-1:-1;;;;;7879:35:1;7888:6;-1:-1:-1;;;;;7879:35:1;;7907:6;7879:35;;;;8493:25:84;;8481:2;8466:18;;8448:76;7879:35:1;;;;;;;;7925:46;7382:596;7265:713;;;:::o;8039:409:57:-;8262:7;8281:19;8317:12;8303:26;;:11;:26;;;:55;;8347:11;8303:55;;;8332:12;8303:55;8281:77;;8375:66;8389:6;8397:15;8414:12;8428;8375:13;:66::i;7205:353:36:-;-1:-1:-1;;;;;3436:18:1;;;7271:15:36;3436:18:1;;;;;;;;;;;;7341:9:36;:16;;;;;;;3436:18:1;;7341:16:36;;;;7372:22;;;;7368:59;;;7410:7;;7205:353;;:::o;7368:59::-;-1:-1:-1;;;;;7437:16:36;;;;;;;:9;:16;;;;;:22;;;;;;;;;;;;;7470:44;7484:15;7437:22;7506:7;7470:13;:44::i;:::-;7547:3;-1:-1:-1;;;;;7530:21:36;7540:5;-1:-1:-1;;;;;7530:21:36;;;;;;;;;;;7261:297;;7205:353;;:::o;2990:275:16:-;3043:7;3083:16;3066:13;:33;3062:197;;;-1:-1:-1;3122:24:16;;2990:275::o;3062:197::-;-1:-1:-1;3447:73:16;;;3206:10;3447:73;;;;9954:25:84;;;;3218:12:16;9995:18:84;;;9988:34;3232:15:16;10038:18:84;;;10031:34;3491:13:16;10081:18:84;;;10074:34;3514:4:16;10124:19:84;;;;10117:84;;;;3447:73:16;;;;;;;;;;9926:19:84;;;;3447:73:16;;;3437:84;;;;;;2426:113:4:o;8254:389:1:-;-1:-1:-1;;;;;8337:21:1;;8329:65;;;;-1:-1:-1;;;8329:65:1;;19294:2:84;8329:65:1;;;19276:21:84;19333:2;19313:18;;;19306:30;19372:33;19352:18;;;19345:61;19423:18;;8329:65:1;19266:181:84;8329:65:1;8405:49;8434:1;8438:7;8447:6;8405:20;:49::i;:::-;8481:6;8465:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8497:18:1;;:9;:18;;;;;;;;;;:28;;8519:6;;8497:9;:28;;8519:6;;8497:28;:::i;:::-;;;;-1:-1:-1;;8540:37:1;;8493:25:84;;;-1:-1:-1;;;;;8540:37:1;;;8557:1;;8540:37;;8481:2:84;8466:18;8540:37:1;;;;;;;6114:130:36;;:::o;8963:576:1:-;-1:-1:-1;;;;;9046:21:1;;9038:67;;;;-1:-1:-1;;;9038:67:1;;16509:2:84;9038:67:1;;;16491:21:84;16548:2;16528:18;;;16521:30;16587:34;16567:18;;;16560:62;16658:3;16638:18;;;16631:31;16679:19;;9038:67:1;16481:223:84;9038:67:1;9116:49;9137:7;9154:1;9158:6;9116:20;:49::i;:::-;-1:-1:-1;;;;;9201:18:1;;9176:22;9201:18;;;;;;;;;;;9237:24;;;;9229:71;;;;-1:-1:-1;;;9229:71:1;;12235:2:84;9229:71:1;;;12217:21:84;12274:2;12254:18;;;12247:30;12313:34;12293:18;;;12286:62;12384:4;12364:18;;;12357:32;12406:19;;9229:71:1;12207:224:84;9229:71:1;-1:-1:-1;;;;;9334:18:1;;:9;:18;;;;;;;;;;9355:23;;;9334:44;;9398:12;:22;;9372:6;;9334:9;9398:22;;9372:6;;9398:22;:::i;:::-;;;;-1:-1:-1;;9436:37:1;;8493:25:84;;;9462:1:1;;-1:-1:-1;;;;;9436:37:1;;;;;8481:2:84;8466:18;9436:37:1;;;;;;;3357:312:28;;;:::o;7972:925:36:-;8155:16;8210:11;8246:36;;;8238:84;;;;-1:-1:-1;;;8238:84:36;;17317:2:84;8238:84:36;;;17299:21:84;17356:2;17336:18;;;17329:30;17395:34;17375:18;;;17368:62;17466:5;17446:18;;;17439:33;17489:19;;8238:84:36;17289:225:84;8238:84:36;8333:63;;;;;;;;;;-1:-1:-1;;;;;8333:63:36;;;;;-1:-1:-1;;;8333:63:36;;;;;;;;-1:-1:-1;;;8333:63:36;;;;;;;;;;;:44;8456:16;8442:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8442:31:36;-1:-1:-1;8407:66:36;-1:-1:-1;8516:15:36;8483:23;8543:315;8567:16;8563:1;:20;8543:315;;;8625:222;8675:8;:14;;8707;8746:11;;8758:1;8746:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;8786:9;;8796:1;8786:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;8817:16;8625:32;:222::i;:::-;8604:15;8620:1;8604:18;;;;;;;;:::i;:::-;;;;;;;;;;:243;8585:3;;;;:::i;:::-;;;;8543:315;;;-1:-1:-1;8875:15:36;;7972:925;-1:-1:-1;;;;;;;;;7972:925:36:o;2670:203:4:-;-1:-1:-1;;;;;2790:14:4;;2730:15;2790:14;;;:7;:14;;;;;864::13;;996:1;978:19;;;;864:14;2849:17:4;2747:126;2670:203;;;:::o;4153:165:16:-;4230:7;4256:55;4278:20;:18;:20::i;:::-;4300:10;8683:57:15;;7108:66:84;8683:57:15;;;7096:79:84;7191:11;;;7184:27;;;7227:12;;;7220:28;;;8647:7:15;;7264:12:84;;8683:57:15;;;;;;;;;;;;8673:68;;;;;;8666:75;;8554:194;;;;;7390:270;7513:7;7533:17;7552:18;7574:25;7585:4;7591:1;7594;7597;7574:10;:25::i;:::-;7532:67;;;;7609:18;7621:5;7609:11;:18::i;:::-;-1:-1:-1;7644:9:15;7390:270;-1:-1:-1;;;;;7390:270:15:o;5892:466:57:-;6151:7;6170:14;6198:12;6187:23;;:8;:23;;;:49;;6228:8;6187:49;;;6213:12;6187:49;6170:66;;6266:85;6292:6;6300:15;6317:10;6329:7;6338:12;6266:25;:85::i;:::-;6247:104;5892:466;-1:-1:-1;;;;;;;5892:466:57:o;8928:457:36:-;9044:3;-1:-1:-1;;;;;9035:12:36;:5;-1:-1:-1;;;;;9035:12:36;;9031:49;;;8928:457;;;:::o;9031:49::-;9090:21;-1:-1:-1;;;;;9125:19:36;;;9121:82;;-1:-1:-1;;;;;;9176:16:36;;;;;;;:9;:16;;;;;;;9121:82;9213:19;-1:-1:-1;;;;;9246:17:36;;;9242:76;;-1:-1:-1;;;;;;9293:14:36;;;;;;;:9;:14;;;;;;;9242:76;9328:50;9342:13;9357:11;9370:7;9328:13;:50::i;:::-;9021:364;;8928:457;;;:::o;10681:1769:57:-;-1:-1:-1;;;;;;;;;10904:7:57;-1:-1:-1;;;;;;;;;10904:7:57;;;-1:-1:-1;;;;;;;;;;;;;;;;;11094:35:57;11105:6;11113:15;11094:10;:35::i;:::-;11255:20;;;;11062:67;;-1:-1:-1;11062:67:57;-1:-1:-1;11255:51:57;;:24;;;;;11280:11;;11293:12;;11255:24;:51;:::i;:::-;11251:112;;;-1:-1:-1;;11329:23:57;;-1:-1:-1;;;;;11322:30:57;;-1:-1:-1;11322:30:57;;-1:-1:-1;11322:30:57;11251:112;11373:22;11483:35;11494:6;11502:15;11483:10;:35::i;:::-;11639:20;;;;11451:67;;-1:-1:-1;11451:67:57;;-1:-1:-1;11624:50:57;;:14;;;;;11639:20;11661:12;;11624:14;:50;:::i;:::-;11620:89;;;11697:1;11690:8;;;;;;;;11620:89;11797:207;11838:6;11858:15;11887;11916:11;11941:15;:27;;;11982:12;11797:27;:207::i;:::-;11771:233;;;;;;;;12350:93;12387:9;:19;;;12408:10;:20;;;12430:12;12350:36;:93::i;:::-;12309:134;;12329:10;:17;;;12310:9;:16;;;:36;;;;:::i;:::-;12309:134;;;;:::i;:::-;-1:-1:-1;;;;;12290:153:57;;10681:1769;-1:-1:-1;;;;;;;;;10681:1769:57:o;9717:657:36:-;-1:-1:-1;;;;;9900:19:36;;;9896:186;;9935:33;9953:5;9960:7;9935:17;:33::i;:::-;-1:-1:-1;;;;;9987:17:36;;9983:89;;10024:33;10049:7;10024:24;:33::i;:::-;-1:-1:-1;;;;;10188:17:36;;;10184:184;;10221:31;10239:3;10244:7;10221:17;:31::i;:::-;-1:-1:-1;;;;;10271:19:36;;10267:91;;10310:33;10335:7;10310:24;:33::i;5654:1603:15:-;5780:7;;6704:66;6691:79;;6687:161;;;-1:-1:-1;6802:1:15;;-1:-1:-1;6806:30:15;6786:51;;6687:161;6861:1;:7;;6866:2;6861:7;;:18;;;;;6872:1;:7;;6877:2;6872:7;;6861:18;6857:100;;;-1:-1:-1;6911:1:15;;-1:-1:-1;6915:30:15;6895:51;;6857:100;7068:24;;;7051:14;7068:24;;;;;;;;;10439:25:84;;;10512:4;10500:17;;10480:18;;;10473:45;;;;10534:18;;;10527:34;;;10577:18;;;10570:34;;;7068:24:15;;10411:19:84;;7068:24:15;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7068:24:15;;-1:-1:-1;;7068:24:15;;;-1:-1:-1;;;;;;;7106:20:15;;7102:101;;7158:1;7162:29;7142:50;;;;;;;7102:101;7221:6;-1:-1:-1;7229:20:15;;-1:-1:-1;5654:1603:15;;;;;;;;:::o;443:631::-;520:20;511:5;:29;;;;;;;;:::i;:::-;;507:561;;;443:631;:::o;507:561::-;616:29;607:5;:38;;;;;;;;:::i;:::-;;603:465;;;661:34;;-1:-1:-1;;;661:34:15;;11478:2:84;661:34:15;;;11460:21:84;11517:2;11497:18;;;11490:30;11556:26;11536:18;;;11529:54;11600:18;;661:34:15;11450:174:84;603:465:15;725:35;716:5;:44;;;;;;;;:::i;:::-;;712:356;;;776:41;;-1:-1:-1;;;776:41:15;;12638:2:84;776:41:15;;;12620:21:84;12677:2;12657:18;;;12650:30;12716:33;12696:18;;;12689:61;12767:18;;776:41:15;12610:181:84;712:356:15;847:30;838:5;:39;;;;;;;;:::i;:::-;;834:234;;;893:44;;-1:-1:-1;;;893:44:15;;14935:2:84;893:44:15;;;14917:21:84;14974:2;14954:18;;;14947:30;15013:34;14993:18;;;14986:62;15084:4;15064:18;;;15057:32;15106:19;;893:44:15;14907:224:84;834:234:15;967:30;958:5;:39;;;;;;;;:::i;:::-;;954:114;;;1013:44;;-1:-1:-1;;;1013:44:15;;15338:2:84;1013:44:15;;;15320:21:84;15377:2;15357:18;;;15350:30;15416:34;15396:18;;;15389:62;15487:4;15467:18;;;15460:32;15509:19;;1013:44:15;15310:224:84;8734:1315:57;8993:7;9013:22;9037:41;9082:69;9106:6;9126:15;9082:10;:69::i;:::-;9012:139;;;;9163:22;9187:41;9232:69;9256:6;9276:15;9232:10;:69::i;:::-;9162:139;;;;9312:43;9358:223;9386:6;9406:15;9435:7;9456;9477:15;9506;9535:10;9559:12;9358:14;:223::i;:::-;9312:269;;9592:41;9636:221;9664:6;9684:15;9713:7;9734;9755:15;9784;9813:8;9835:12;9636:14;:221::i;:::-;9592:265;;9952:90;9989:7;:17;;;10008:9;:19;;;10029:12;9952:36;:90::i;:::-;9914:128;;9932:9;:16;;;9915:7;:14;;;:33;;;;:::i;:::-;9914:128;;;;:::i;:::-;-1:-1:-1;;;;;9907:135:57;;8734:1315;-1:-1:-1;;;;;;;;;;;;8734:1315:57:o;7383:354::-;-1:-1:-1;;;;;;;;;7547:12:57;-1:-1:-1;;;;;;;;;7547:12:57;7626:73;7652:15;:29;;;7626:73;;2065:8;7626:73;;:25;:73::i;:::-;7611:89;;7717:6;7724:5;7717:13;;;;;;;;;:::i;:::-;7710:20;;;;;;;;;7717:13;;7710:20;-1:-1:-1;;;;;7710:20:57;;;;-1:-1:-1;;;7710:20:57;;;;;;;;7383:354;;7710:20;;-1:-1:-1;7383:354:57;;-1:-1:-1;;7383:354:57:o;1658:417:55:-;1765:4;1854:10;1848:16;;:2;:16;;;;:36;;;;;1874:10;1868:16;;:2;:16;;;;1848:36;1844:57;;;1899:2;1893:8;;:2;:8;;;;1886:15;;;;1844:57;1912:17;1937:10;1932:15;;:2;:15;;;:33;;1955:10;;;;1960:5;1955:10;:::i;:::-;1932:33;;;1950:2;1932:33;;;1912:53;;;;1975:17;2000:10;1995:15;;:2;:15;;;:33;;2018:10;;;;2023:5;2018:10;:::i;:::-;1995:33;;;2013:2;1995:33;;;1975:53;;2046:22;;;;;1658:417;-1:-1:-1;;;;;1658:417:55:o;6618:505:57:-;-1:-1:-1;;;;;;;;;6782:12:57;-1:-1:-1;;;;;;;;;6782:12:57;6854:15;:29;;;6846:37;;6900:6;6907:5;6900:13;;;;;;;;;:::i;:::-;6893:20;;;;;;;;;6900:13;;6893:20;-1:-1:-1;;;;;6893:20:57;;;;-1:-1:-1;;;6893:20:57;;;;;;;;;;;;-1:-1:-1;7028:89:57;;7075:1;;-1:-1:-1;7097:6:57;7075:1;7097:9;;7028:89;6618:505;;;;;:::o;811:413:55:-;917:4;1005:10;999:16;;:2;:16;;;;:36;;;;;1025:10;1019:16;;:2;:16;;;;999:36;995:56;;;1049:2;1044:7;;:2;:7;;;1037:14;;;;995:56;1062:17;1087:10;1082:15;;:2;:15;;;:33;;1105:10;;;;1110:5;1105:10;:::i;:::-;1082:33;;;1100:2;1082:33;;;1062:53;;;;1125:17;1150:10;1145:15;;:2;:15;;;:33;;1168:10;;;;1173:5;1168:10;:::i;:::-;1145:33;;;1163:2;1145:33;;;1125:53;;1196:21;;;;811:413;-1:-1:-1;;;;;811:413:55:o;2382:2006:54:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2719:16:54;2738:23;2719:42;;;;2771:17;2817:8;2791:23;:34;;;:114;;2882:23;2791:114;;;;;2866:1;2840:23;;;;:8;:23;:::i;:::-;:27;;;;:::i;:::-;2771:134;;2915:20;2946:1436;3237:1;3213:20;3224:9;3213:8;:20;:::i;:::-;3212:26;;;;:::i;:::-;3197:41;;3266:13;3287:46;3306:12;3320;3287:46;;:18;:46::i;:::-;3266:69;;;;;;;;;:::i;:::-;3253:82;;;;;;;;;3266:69;;3253:82;-1:-1:-1;;;;;3253:82:54;;;;-1:-1:-1;;;3253:82:54;;;;;;;;;;;;-1:-1:-1;3253:82:54;3511:116;;3570:16;:12;3585:1;3570:16;:::i;:::-;3559:27;;3604:8;;;3511:116;3653:13;3674:51;3698:12;3712;3674:51;;:23;:51::i;:::-;3653:74;;;;;;;;;:::i;:::-;3641:86;;;;;;;;;3653:74;;3641:86;-1:-1:-1;;;;;3641:86:54;;;;;-1:-1:-1;;;3641:86:54;;;;;;;;;;;-1:-1:-1;;;3765:39:54;;:23;;;;3789:7;;3798:5;;3765:23;:39;:::i;:::-;3742:62;;3890:15;:58;;;;;3909:39;3921:9;:19;;;3942:5;3909:7;:11;;;;:39;;;;;:::i;:::-;3886:102;;;3968:5;;;;3886:102;4138:15;4133:239;;4185:16;4200:1;4185:12;:16;:::i;:::-;4173:28;;4133:239;;;4341:16;:12;4356:1;4341:16;:::i;:::-;4330:27;;4133:239;2959:1423;;2946:1436;;;2709:1679;;;2382:2006;;;;;;;;;:::o;2486:432:55:-;2600:6;2691:10;2685:16;;:2;:16;;;;:36;;;;;2711:10;2705:16;;:2;:16;;;;2685:36;2681:56;;;2730:7;2735:2;2730;:7;:::i;:::-;2723:14;;;;2681:56;2748:17;2773:10;2768:15;;:2;:15;;;:33;;2791:10;;;;2796:5;2791:10;:::i;:::-;2768:33;;;2786:2;2768:33;;;2748:53;;;;2811:17;2836:10;2831:15;;:2;:15;;;:33;;2854:10;;;;2859:5;2854:10;:::i;:::-;2831:33;;;2849:2;2831:33;;;2811:53;;;-1:-1:-1;2889:21:55;2811:53;2889:9;:21;:::i;11307:676:36:-;11409:12;11405:49;;11307:676;;:::o;11405:49::-;-1:-1:-1;;;;;11499:14:36;;11464:32;11499:14;;;:9;:14;;;;;;11464:32;;11671:188;11499:14;11738:19;:7;:17;:19::i;:::-;11671:188;;;;;;;;;;;;;;;;;11829:15;11671:23;:188::i;:::-;11870:33;;;;;;;;;;;;-1:-1:-1;;;;;11870:33:36;;;;;;;;;;;-1:-1:-1;;;11870:33:36;;;;;;;;-1:-1:-1;;;11870:33:36;;;;;;;;;;-1:-1:-1;11524:335:36;-1:-1:-1;11524:335:36;-1:-1:-1;11914:63:36;;;;11944:22;;;20208:13:84;;-1:-1:-1;;;;;20204:78:84;20186:97;;20343:4;20331:17;;;20325:24;20351:10;20321:41;20299:20;;;20292:71;-1:-1:-1;;;;;11944:22:36;;;;;20159:18:84;11944:22:36;;;;;;;11914:63;11395:588;;;;11307:676;;:::o;12169:629::-;12243:12;12239:49;;12169:629;:::o;12239:49::-;12312:44;12370:40;12424:12;12449:212;12490:15;12523:19;:7;:17;:19::i;:::-;12449:212;;;;;;;;;;;;;;;;;12631:15;12449:23;:212::i;:::-;12672:40;;:15;:40;;;;;;;;;;-1:-1:-1;;;;;12672:40:36;;;;;;;;;;;-1:-1:-1;;;12672:40:36;;;;;;;;-1:-1:-1;;;12672:40:36;;;;;;;;;;;;;-1:-1:-1;12298:363:36;-1:-1:-1;12298:363:36;-1:-1:-1;12723:69:36;;;;12755:26;;;20208:13:84;;-1:-1:-1;;;;;20204:78:84;20186:97;;20343:4;20331:17;;;20325:24;20351:10;20321:41;20299:20;;;20292:71;12755:26:36;;20159:18:84;12755:26:36;;;;;;;12229:569;;;12169:629;:::o;10557:567::-;10659:12;10655:49;;10557:567;;:::o;10655:49::-;-1:-1:-1;;;;;10749:14:36;;10714:32;10749:14;;;:9;:14;;;;;;10714:32;;10921:79;10749:14;10955:19;:7;:17;:19::i;:::-;10983:15;10921:23;:79::i;12984:515::-;13058:12;13054:49;;12984:515;:::o;13054:49::-;13127:44;13185:46;13245:12;13270:86;13294:15;13311:19;:7;:17;:19::i;13740:1898:57:-;-1:-1:-1;;;;;;;;;;;;;;;;;14287:49:57;14312:16;14330:5;14287:11;:21;;;:24;;;;:49;;;;;:::i;:::-;14283:159;;;14359:72;14376:11;14389:15;:23;;;-1:-1:-1;;;;;14359:72:57;14414:16;14359;:72::i;:::-;14352:79;;;;14283:159;14481:16;14456:41;;:11;:21;;;:41;;;14452:90;;;-1:-1:-1;14520:11:57;14513:18;;14452:90;14581:16;14556:41;;:11;:21;;;:41;;;14552:90;;;-1:-1:-1;14620:11:57;14613:18;;14552:90;14754:49;14774:11;:21;;;14797:5;14754:16;:19;;;;:49;;;;;:::i;:::-;14750:157;;;-1:-1:-1;14826:70:57;;;;;;;;;-1:-1:-1;14826:70:57;;;;;;;;;14819:77;;14750:157;14998:49;15061:48;15122:235;15167:6;15191:16;15225;15259;15293:15;:27;;;15338:5;15122:27;:235::i;:::-;14984:373;;;;15368:19;15453:96;15490:14;:24;;;15516:15;:25;;;15543:5;15453:36;:96::i;:::-;15390:159;;15415:15;:22;;;15391:14;:21;;;:46;;;;:::i;:::-;15390:159;;;;:::i;:::-;15368:181;;15567:64;15584:15;15601:11;15614:16;15567;:64::i;:::-;15560:71;;;;;13740:1898;;;;;;;;;;;:::o;1666:262:56:-;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:56;1836:8;;1799:56;1872:49;1905:1;1877:25;1890:12;1877:10;:25;:::i;:::-;:29;;;;:::i;:::-;1908:12;580:129;655:7;681:21;690:12;681:6;:21;:::i;2263:171::-;2367:7;2397:30;2402:10;:6;2411:1;2402:10;:::i;1577:195:53:-;1635:7;-1:-1:-1;;;;;1662:27:53;;;1654:79;;;;-1:-1:-1;;;1654:79:53;;14527:2:84;1654:79:53;;;14509:21:84;14566:2;14546:18;;;14539:30;14605:34;14585:18;;;14578:62;14676:9;14656:18;;;14649:37;14703:19;;1654:79:53;14499:229:84;1654:79:53;-1:-1:-1;1758:6:53;1577:195::o;4498:650:57:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4839:56:57;;;;;;;;;;-1:-1:-1;;;;;4839:56:57;;;;;;;-1:-1:-1;;;4839:56:57;;;;;;;;-1:-1:-1;;;4839:56:57;;;;;;;;;;;;;4804:10;;4950:14;;4914:34;;;-1:-1:-1;4914:34:57;4906:59;;;;-1:-1:-1;;;4906:59:57;;;;;;;;:::i;:::-;;5008:56;5018:8;:14;;5034:15;5051:12;5008:9;:56::i;:::-;5098:33;;;;;;-1:-1:-1;;;;;5098:33:57;;;;;4976:88;;-1:-1:-1;4976:88:57;-1:-1:-1;;;;;;4498:650:57:o;3330:532::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3633:56:57;;;;;;;;;;-1:-1:-1;;;;;3633:56:57;;;;;-1:-1:-1;;;3633:56:57;;;;;;;;-1:-1:-1;;;3633:56:57;;;;;;;;;;;3598:10;;3731:56;3633;3741:14;;3633:56;3774:12;3731:9;:56::i;:::-;3822:23;;3699:88;;-1:-1:-1;3699:88:57;;-1:-1:-1;3699:88:57;-1:-1:-1;3822:33:57;;3848:7;;3822:33;:::i;:::-;-1:-1:-1;;;;;3797:58:57;;;-1:-1:-1;3797:14:57;;3330:532;;-1:-1:-1;3330:532:57;;-1:-1:-1;3330:532:57;-1:-1:-1;3330:532:57:o;16102:560::-;-1:-1:-1;;;;;;;;;;;;;;;;;16424:231:57;;;;;;;;16558:47;16575:12;:22;;;16599:5;16558;:16;;;;:47;;;;;:::i;:::-;16519:87;;;;:15;:87;:::i;:::-;16477:19;;:129;;;;:::i;:::-;-1:-1:-1;;;;;16424:231:57;;;;;16635:5;16424:231;;;;;16405:250;;16102:560;;;;;:::o;17234:969::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17551:10:57;17589:45;17638:35;17649:6;17657:15;17638:10;:35::i;:::-;17586:87;;;17759:12;17734:37;;:11;:21;;;:37;;;17730:112;;;17795:15;;-1:-1:-1;17812:11:57;-1:-1:-1;17825:5:57;;-1:-1:-1;17787:44:57;;17730:112;17852:41;17896:114;17926:11;17951:15;:23;;;-1:-1:-1;;;;;17896:114:57;17988:12;17896:16;:114::i;:::-;17852:158;;18061:7;18021:6;18028:15;:29;;;18021:37;;;;;;;;;:::i;:::-;:47;;;;;;;;;-1:-1:-1;;;18021:47:57;-1:-1:-1;;;;;18021:47:57;;;;;;;:37;;:47;;18122:21;18127:15;18122:4;:21::i;:::-;18079:64;-1:-1:-1;18182:7:57;;-1:-1:-1;18191:4:57;;-1:-1:-1;;;17234:969:57;;;;;;;;:::o;18458:866::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;18671:29:57;;;;18647:71;;;;;;;:23;:71::i;:::-;18595:133;;;;:29;;;:133;19181:27;;;;:45;;;19177:108;;;19273:1;19242:15;:27;;:32;;;;;;;:::i;:::-;;;;;-1:-1:-1;;19302:15:57;18458:866::o;14:196:84:-;82:20;;-1:-1:-1;;;;;131:54:84;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:366::-;277:8;287:6;341:3;334:4;326:6;322:17;318:27;308:2;;359:1;356;349:12;308:2;-1:-1:-1;382:20:84;;425:18;414:30;;411:2;;;457:1;454;447:12;411:2;494:4;486:6;482:17;470:29;;554:3;547:4;537:6;534:1;530:14;522:6;518:27;514:38;511:47;508:2;;;571:1;568;561:12;586:171;653:20;;713:18;702:30;;692:41;;682:2;;747:1;744;737:12;762:156;828:20;;888:4;877:16;;867:27;;857:2;;908:1;905;898:12;923:186;982:6;1035:2;1023:9;1014:7;1010:23;1006:32;1003:2;;;1051:1;1048;1041:12;1003:2;1074:29;1093:9;1074:29;:::i;1114:260::-;1182:6;1190;1243:2;1231:9;1222:7;1218:23;1214:32;1211:2;;;1259:1;1256;1249:12;1211:2;1282:29;1301:9;1282:29;:::i;:::-;1272:39;;1330:38;1364:2;1353:9;1349:18;1330:38;:::i;:::-;1320:48;;1201:173;;;;;:::o;1379:328::-;1456:6;1464;1472;1525:2;1513:9;1504:7;1500:23;1496:32;1493:2;;;1541:1;1538;1531:12;1493:2;1564:29;1583:9;1564:29;:::i;:::-;1554:39;;1612:38;1646:2;1635:9;1631:18;1612:38;:::i;:::-;1602:48;;1697:2;1686:9;1682:18;1669:32;1659:42;;1483:224;;;;;:::o;1712:606::-;1823:6;1831;1839;1847;1855;1863;1871;1924:3;1912:9;1903:7;1899:23;1895:33;1892:2;;;1941:1;1938;1931:12;1892:2;1964:29;1983:9;1964:29;:::i;:::-;1954:39;;2012:38;2046:2;2035:9;2031:18;2012:38;:::i;:::-;2002:48;;2097:2;2086:9;2082:18;2069:32;2059:42;;2148:2;2137:9;2133:18;2120:32;2110:42;;2171:37;2203:3;2192:9;2188:19;2171:37;:::i;:::-;2161:47;;2255:3;2244:9;2240:19;2227:33;2217:43;;2307:3;2296:9;2292:19;2279:33;2269:43;;1882:436;;;;;;;;;;:::o;2323:537::-;2425:6;2433;2441;2449;2457;2465;2518:3;2506:9;2497:7;2493:23;2489:33;2486:2;;;2535:1;2532;2525:12;2486:2;2558:29;2577:9;2558:29;:::i;:::-;2548:39;;2606:38;2640:2;2629:9;2625:18;2606:38;:::i;:::-;2596:48;;2691:2;2680:9;2676:18;2663:32;2653:42;;2714:36;2746:2;2735:9;2731:18;2714:36;:::i;:::-;2704:46;;2797:3;2786:9;2782:19;2769:33;2759:43;;2849:3;2838:9;2834:19;2821:33;2811:43;;2476:384;;;;;;;;:::o;2865:509::-;2959:6;2967;2975;3028:2;3016:9;3007:7;3003:23;2999:32;2996:2;;;3044:1;3041;3034:12;2996:2;3067:29;3086:9;3067:29;:::i;:::-;3057:39;;3147:2;3136:9;3132:18;3119:32;3174:18;3166:6;3163:30;3160:2;;;3206:1;3203;3196:12;3160:2;3245:69;3306:7;3297:6;3286:9;3282:22;3245:69;:::i;:::-;2986:388;;3333:8;;-1:-1:-1;3219:95:84;;-1:-1:-1;;;;2986:388:84:o;3379:843::-;3508:6;3516;3524;3532;3540;3593:2;3581:9;3572:7;3568:23;3564:32;3561:2;;;3609:1;3606;3599:12;3561:2;3632:29;3651:9;3632:29;:::i;:::-;3622:39;;3712:2;3701:9;3697:18;3684:32;3735:18;3776:2;3768:6;3765:14;3762:2;;;3792:1;3789;3782:12;3762:2;3831:69;3892:7;3883:6;3872:9;3868:22;3831:69;:::i;:::-;3919:8;;-1:-1:-1;3805:95:84;-1:-1:-1;4007:2:84;3992:18;;3979:32;;-1:-1:-1;4023:16:84;;;4020:2;;;4052:1;4049;4042:12;4020:2;;4091:71;4154:7;4143:8;4132:9;4128:24;4091:71;:::i;:::-;3551:671;;;;-1:-1:-1;3551:671:84;;-1:-1:-1;4181:8:84;;4065:97;3551:671;-1:-1:-1;;;3551:671:84:o;4227:346::-;4294:6;4302;4355:2;4343:9;4334:7;4330:23;4326:32;4323:2;;;4371:1;4368;4361:12;4323:2;4394:29;4413:9;4394:29;:::i;:::-;4384:39;;4473:2;4462:9;4458:18;4445:32;4517:6;4510:5;4506:18;4499:5;4496:29;4486:2;;4539:1;4536;4529:12;4486:2;4562:5;4552:15;;;4313:260;;;;;:::o;4578:254::-;4646:6;4654;4707:2;4695:9;4686:7;4682:23;4678:32;4675:2;;;4723:1;4720;4713:12;4675:2;4746:29;4765:9;4746:29;:::i;:::-;4736:39;4822:2;4807:18;;;;4794:32;;-1:-1:-1;;;4665:167:84:o;4837:258::-;4904:6;4912;4965:2;4953:9;4944:7;4940:23;4936:32;4933:2;;;4981:1;4978;4971:12;4933:2;5004:29;5023:9;5004:29;:::i;:::-;4994:39;;5052:37;5085:2;5074:9;5070:18;5052:37;:::i;5100:330::-;5175:6;5183;5191;5244:2;5232:9;5223:7;5219:23;5215:32;5212:2;;;5260:1;5257;5250:12;5212:2;5283:29;5302:9;5283:29;:::i;:::-;5273:39;;5331:37;5364:2;5353:9;5349:18;5331:37;:::i;:::-;5321:47;;5387:37;5420:2;5409:9;5405:18;5387:37;:::i;:::-;5377:47;;5202:228;;;;;:::o;5435:435::-;5520:6;5528;5581:2;5569:9;5560:7;5556:23;5552:32;5549:2;;;5597:1;5594;5587:12;5549:2;5637:9;5624:23;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5741:69;5802:7;5793:6;5782:9;5778:22;5741:69;:::i;:::-;5829:8;;5715:95;;-1:-1:-1;5539:331:84;-1:-1:-1;;;;5539:331:84:o;5875:769::-;5995:6;6003;6011;6019;6072:2;6060:9;6051:7;6047:23;6043:32;6040:2;;;6088:1;6085;6078:12;6040:2;6128:9;6115:23;6157:18;6198:2;6190:6;6187:14;6184:2;;;6214:1;6211;6204:12;6184:2;6253:69;6314:7;6305:6;6294:9;6290:22;6253:69;:::i;:::-;6341:8;;-1:-1:-1;6227:95:84;-1:-1:-1;6429:2:84;6414:18;;6401:32;;-1:-1:-1;6445:16:84;;;6442:2;;;6474:1;6471;6464:12;6442:2;;6513:71;6576:7;6565:8;6554:9;6550:24;6513:71;:::i;:::-;6030:614;;;;-1:-1:-1;6603:8:84;-1:-1:-1;;;;6030:614:84:o;6649:184::-;6707:6;6760:2;6748:9;6739:7;6735:23;6731:32;6728:2;;;6776:1;6773;6766:12;6728:2;6799:28;6817:9;6799:28;:::i;7518:632::-;7689:2;7741:21;;;7811:13;;7714:18;;;7833:22;;;7660:4;;7689:2;7912:15;;;;7886:2;7871:18;;;7660:4;7955:169;7969:6;7966:1;7963:13;7955:169;;;8030:13;;8018:26;;8099:15;;;;8064:12;;;;7991:1;7984:9;7955:169;;;-1:-1:-1;8141:3:84;;7669:481;-1:-1:-1;;;;;;7669:481:84:o;10615:656::-;10727:4;10756:2;10785;10774:9;10767:21;10817:6;10811:13;10860:6;10855:2;10844:9;10840:18;10833:34;10885:1;10895:140;10909:6;10906:1;10903:13;10895:140;;;11004:14;;;11000:23;;10994:30;10970:17;;;10989:2;10966:26;10959:66;10924:10;;10895:140;;;11053:6;11050:1;11047:13;11044:2;;;11123:1;11118:2;11109:6;11098:9;11094:22;11090:31;11083:42;11044:2;-1:-1:-1;11187:2:84;11175:15;-1:-1:-1;;11171:88:84;11156:104;;;;11262:2;11152:113;;10736:535;-1:-1:-1;;;10736:535:84:o;20745:273::-;20785:3;-1:-1:-1;;;;;20894:2:84;20891:1;20887:10;20924:2;20921:1;20917:10;20955:3;20951:2;20947:12;20942:3;20939:21;20936:2;;;20963:18;;:::i;:::-;20999:13;;20793:225;-1:-1:-1;;;;20793:225:84:o;21023:277::-;21063:3;-1:-1:-1;;;;;21176:2:84;21173:1;21169:10;21206:2;21203:1;21199:10;21237:3;21233:2;21229:12;21224:3;21221:21;21218:2;;;21245:18;;:::i;21305:226::-;21344:3;21372:8;21407:2;21404:1;21400:10;21437:2;21434:1;21430:10;21468:3;21464:2;21460:12;21455:3;21452:21;21449:2;;;21476:18;;:::i;21536:128::-;21576:3;21607:1;21603:6;21600:1;21597:13;21594:2;;;21613:18;;:::i;:::-;-1:-1:-1;21649:9:84;;21584:80::o;21669:230::-;21708:3;21736:12;21775:2;21772:1;21768:10;21805:2;21802:1;21798:10;21836:3;21832:2;21828:12;21823:3;21820:21;21817:2;;;21844:18;;:::i;21904:240::-;21944:1;-1:-1:-1;;;;;22055:2:84;22052:1;22048:10;22077:3;22067:2;;22084:18;;:::i;:::-;22122:10;;22118:20;;;;;21950:194;-1:-1:-1;;21950:194:84:o;22149:120::-;22189:1;22215;22205:2;;22220:18;;:::i;:::-;-1:-1:-1;22254:9:84;;22195:74::o;22274:311::-;22314:7;-1:-1:-1;;;;;22431:2:84;22428:1;22424:10;22461:2;22458:1;22454:10;22517:3;22513:2;22509:12;22504:3;22501:21;22494:3;22487:11;22480:19;22476:47;22473:2;;;22526:18;;:::i;:::-;22566:13;;22326:259;-1:-1:-1;;;;22326:259:84:o;22590:270::-;22630:4;-1:-1:-1;;;;;22767:10:84;;;;22737;;22789:12;;;22786:2;;;22804:18;;:::i;:::-;22841:13;;22639:221;-1:-1:-1;;;22639:221:84:o;22865:125::-;22905:4;22933:1;22930;22927:8;22924:2;;;22938:18;;:::i;:::-;-1:-1:-1;22975:9:84;;22914:76::o;22995:221::-;23034:4;23063:10;23123;;;;23093;;23145:12;;;23142:2;;;23160:18;;:::i;23221:437::-;23300:1;23296:12;;;;23343;;;23364:2;;23418:4;23410:6;23406:17;23396:27;;23364:2;23471;23463:6;23460:14;23440:18;23437:38;23434:2;;;-1:-1:-1;;;23505:1:84;23498:88;23609:4;23606:1;23599:15;23637:4;23634:1;23627:15;23663:195;23702:3;23733:66;23726:5;23723:77;23720:2;;;23803:18;;:::i;:::-;-1:-1:-1;23850:1:84;23839:13;;23710:148::o;23863:112::-;23895:1;23921;23911:2;;23926:18;;:::i;:::-;-1:-1:-1;23960:9:84;;23901:74::o;23980:184::-;-1:-1:-1;;;24029:1:84;24022:88;24129:4;24126:1;24119:15;24153:4;24150:1;24143:15;24169:184;-1:-1:-1;;;24218:1:84;24211:88;24318:4;24315:1;24308:15;24342:4;24339:1;24332:15;24358:184;-1:-1:-1;;;24407:1:84;24400:88;24507:4;24504:1;24497:15;24531:4;24528:1;24521:15;24547:184;-1:-1:-1;;;24596:1:84;24589:88;24696:4;24693:1;24686:15;24720:4;24717:1;24710:15;24736:184;-1:-1:-1;;;24785:1:84;24778:88;24885:4;24882:1;24875:15;24909:4;24906:1;24899:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "2788800",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "DOMAIN_SEPARATOR()": "infinite",
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24666",
                "balanceOf(address)": "2608",
                "controller()": "infinite",
                "controllerBurn(address,uint256)": "infinite",
                "controllerBurnFrom(address,address,uint256)": "infinite",
                "controllerDelegateFor(address,address)": "infinite",
                "controllerMint(address,uint256)": "infinite",
                "decimals()": "infinite",
                "decreaseAllowance(address,uint256)": "26999",
                "delegate(address)": "infinite",
                "delegateOf(address)": "2612",
                "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": "infinite",
                "getAccountDetails(address)": "2945",
                "getAverageBalanceBetween(address,uint64,uint64)": "infinite",
                "getAverageBalancesBetween(address,uint64[],uint64[])": "infinite",
                "getAverageTotalSuppliesBetween(uint64[],uint64[])": "infinite",
                "getBalanceAt(address,uint64)": "infinite",
                "getBalancesAt(address,uint64[])": "infinite",
                "getTotalSuppliesAt(uint64[])": "infinite",
                "getTotalSupplyAt(uint64)": "infinite",
                "getTwab(address,uint16)": "2973",
                "increaseAllowance(address,uint256)": "27047",
                "name()": "infinite",
                "nonces(address)": "2661",
                "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "infinite",
                "symbol()": "infinite",
                "totalSupply()": "2372",
                "transfer(address,uint256)": "infinite",
                "transferFrom(address,address,uint256)": "infinite"
              },
              "internal": {
                "_beforeTokenTransfer(address,address,uint256)": "infinite",
                "_decreaseTotalSupplyTwab(uint256)": "infinite",
                "_decreaseUserTwab(address,uint256)": "infinite",
                "_delegate(address,address)": "infinite",
                "_getAverageBalancesBetween(struct TwabLib.Account storage pointer,uint64[] calldata,uint64[] calldata)": "infinite",
                "_increaseTotalSupplyTwab(uint256)": "infinite",
                "_increaseUserTwab(address,uint256)": "infinite",
                "_transferTwab(address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "DOMAIN_SEPARATOR()": "3644e515",
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "controller()": "f77c4791",
              "controllerBurn(address,uint256)": "90596dd1",
              "controllerBurnFrom(address,address,uint256)": "631b5dfb",
              "controllerDelegateFor(address,address)": "33e39b61",
              "controllerMint(address,uint256)": "5d7b0758",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "delegate(address)": "5c19a95c",
              "delegateOf(address)": "8d22ea2a",
              "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": "919974dc",
              "getAccountDetails(address)": "2aceb534",
              "getAverageBalanceBetween(address,uint64,uint64)": "98b16f36",
              "getAverageBalancesBetween(address,uint64[],uint64[])": "68c7fd57",
              "getAverageTotalSuppliesBetween(uint64[],uint64[])": "8e6d536a",
              "getBalanceAt(address,uint64)": "9ecb0370",
              "getBalancesAt(address,uint64[])": "613ed6bd",
              "getTotalSuppliesAt(uint64[])": "85beb5f1",
              "getTotalSupplyAt(uint64)": "2d0dd686",
              "getTwab(address,uint16)": "36bb2a38",
              "increaseAllowance(address,uint256)": "39509351",
              "name()": "06fdde03",
              "nonces(address)": "7ecebe00",
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "d505accf",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_symbol\",\"type\":\"string\"},{\"internalType\":\"uint8\",\"name\":\"decimals_\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"_controller\",\"type\":\"address\"}],\"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\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"}],\"name\":\"Delegated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"decimals\",\"type\":\"uint8\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"controller\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"newTotalSupplyTwab\",\"type\":\"tuple\"}],\"name\":\"NewTotalSupplyTwab\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"newTwab\",\"type\":\"tuple\"}],\"name\":\"NewUserTwab\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"decimals\",\"type\":\"uint8\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"controller\",\"type\":\"address\"}],\"name\":\"TicketInitialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"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\":\"controller\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurnFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"}],\"name\":\"controllerDelegateFor\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"controllerMint\",\"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\":\"_to\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"}],\"name\":\"delegateOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_newDelegate\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"_v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"_r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_s\",\"type\":\"bytes32\"}],\"name\":\"delegateWithSignature\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"}],\"name\":\"getAccountDetails\",\"outputs\":[{\"components\":[{\"internalType\":\"uint208\",\"name\":\"balance\",\"type\":\"uint208\"},{\"internalType\":\"uint24\",\"name\":\"nextTwabIndex\",\"type\":\"uint24\"},{\"internalType\":\"uint24\",\"name\":\"cardinality\",\"type\":\"uint24\"}],\"internalType\":\"struct TwabLib.AccountDetails\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_startTime\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"_endTime\",\"type\":\"uint64\"}],\"name\":\"getAverageBalanceBetween\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint64[]\",\"name\":\"_startTimes\",\"type\":\"uint64[]\"},{\"internalType\":\"uint64[]\",\"name\":\"_endTimes\",\"type\":\"uint64[]\"}],\"name\":\"getAverageBalancesBetween\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64[]\",\"name\":\"_startTimes\",\"type\":\"uint64[]\"},{\"internalType\":\"uint64[]\",\"name\":\"_endTimes\",\"type\":\"uint64[]\"}],\"name\":\"getAverageTotalSuppliesBetween\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_target\",\"type\":\"uint64\"}],\"name\":\"getBalanceAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint64[]\",\"name\":\"_targets\",\"type\":\"uint64[]\"}],\"name\":\"getBalancesAt\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64[]\",\"name\":\"_targets\",\"type\":\"uint64[]\"}],\"name\":\"getTotalSuppliesAt\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"_target\",\"type\":\"uint64\"}],\"name\":\"getTotalSupplyAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"_index\",\"type\":\"uint16\"}],\"name\":\"getTwab\",\"outputs\":[{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"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\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"See {IERC20Permit-DOMAIN_SEPARATOR}.\"},\"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}.\"},\"constructor\":{\"params\":{\"_controller\":\"ERC20 ticket controller address (ie: Prize Pool address).\",\"_name\":\"ERC20 ticket token name.\",\"_symbol\":\"ERC20 ticket token symbol.\",\"decimals_\":\"ERC20 ticket token decimals.\"}},\"controllerBurn(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over burning\",\"params\":{\"_amount\":\"Amount of tokens to burn\",\"_user\":\"Address of the holder account to burn tokens from\"}},\"controllerBurnFrom(address,address,uint256)\":{\"details\":\"May be overridden to provide more granular control over operator-burning\",\"params\":{\"_amount\":\"Amount of tokens to burn\",\"_operator\":\"Address of the operator performing the burn action via the controller contract\",\"_user\":\"Address of the holder account to burn tokens from\"}},\"controllerDelegateFor(address,address)\":{\"params\":{\"delegate\":\"The new delegate\",\"user\":\"The user for whom to delegate\"}},\"controllerMint(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over minting\",\"params\":{\"_amount\":\"Amount of tokens to mint\",\"_user\":\"Address of the receiver of the minted tokens\"}},\"decimals()\":{\"details\":\"This value should be equal to the decimals of the token used to deposit into the pool.\",\"returns\":{\"_0\":\"uint8 decimals.\"}},\"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`.\"},\"delegate(address)\":{\"details\":\"Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the targetted sender and/or recipient address(s).To reset the delegate, pass the zero address (0x000.000) as `to` parameter.Current delegate address should be different from the new delegate address `to`.\",\"params\":{\"to\":\"Recipient of delegated TWAB.\"}},\"delegateOf(address)\":{\"details\":\"Address of the delegate will be the zero address if `user` has not delegated their tickets.\",\"params\":{\"user\":\"Address of the delegator.\"},\"returns\":{\"_0\":\"Address of the delegate.\"}},\"delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)\":{\"params\":{\"deadline\":\"The timestamp by which this must be submitted\",\"delegate\":\"The new delegate\",\"r\":\"The r portion of the ECDSA sig\",\"s\":\"The s portion of the ECDSA sig\",\"user\":\"The user who is delegating\",\"v\":\"The v portion of the ECDSA sig\"}},\"getAccountDetails(address)\":{\"params\":{\"user\":\"The user for whom to fetch the TWAB context.\"},\"returns\":{\"_0\":\"The TWAB context, which includes { balance, nextTwabIndex, cardinality }\"}},\"getAverageBalanceBetween(address,uint64,uint64)\":{\"params\":{\"endTime\":\"The end time of the time frame.\",\"startTime\":\"The start time of the time frame.\",\"user\":\"The user whose balance is checked.\"},\"returns\":{\"_0\":\"The average balance that the user held during the time frame.\"}},\"getAverageBalancesBetween(address,uint64[],uint64[])\":{\"params\":{\"endTimes\":\"The end time of the time frame.\",\"startTimes\":\"The start time of the time frame.\",\"user\":\"The user whose balance is checked.\"},\"returns\":{\"_0\":\"The average balance that the user held during the time frame.\"}},\"getAverageTotalSuppliesBetween(uint64[],uint64[])\":{\"params\":{\"endTimes\":\"Array of end times.\",\"startTimes\":\"Array of start times.\"},\"returns\":{\"_0\":\"The average total supplies held during the time frame.\"}},\"getBalanceAt(address,uint64)\":{\"params\":{\"timestamp\":\"Timestamp at which we want to retrieve the TWAB balance.\",\"user\":\"Address of the user whose TWAB is being fetched.\"},\"returns\":{\"_0\":\"The TWAB balance at the given timestamp.\"}},\"getBalancesAt(address,uint64[])\":{\"params\":{\"timestamps\":\"Timestamps range at which we want to retrieve the TWAB balances.\",\"user\":\"Address of the user whose TWABs are being fetched.\"},\"returns\":{\"_0\":\"`user` TWAB balances.\"}},\"getTotalSuppliesAt(uint64[])\":{\"params\":{\"timestamps\":\"Timestamps range at which we want to retrieve the total supply TWAB balance.\"},\"returns\":{\"_0\":\"Total supply TWAB balances.\"}},\"getTotalSupplyAt(uint64)\":{\"params\":{\"timestamp\":\"Timestamp at which we want to retrieve the total supply TWAB balance.\"},\"returns\":{\"_0\":\"The total supply TWAB balance at the given timestamp.\"}},\"getTwab(address,uint16)\":{\"params\":{\"index\":\"The index of the TWAB to fetch.\",\"user\":\"The user for whom to fetch the TWAB.\"},\"returns\":{\"_0\":\"The TWAB, which includes the twab amount and the timestamp.\"}},\"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.\"},\"nonces(address)\":{\"details\":\"See {IERC20Permit-nonces}.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"See {IERC20Permit-permit}.\"},\"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`.\"}},\"title\":\"PoolTogether V4 Ticket\",\"version\":1},\"userdoc\":{\"events\":{\"Delegated(address,address)\":{\"notice\":\"Emitted when TWAB balance has been delegated to another user.\"},\"NewTotalSupplyTwab((uint224,uint32))\":{\"notice\":\"Emitted when a new total supply TWAB has been recorded.\"},\"NewUserTwab(address,(uint224,uint32))\":{\"notice\":\"Emitted when a new TWAB has been recorded.\"},\"TicketInitialized(string,string,uint8,address)\":{\"notice\":\"Emitted when ticket is initialized.\"}},\"kind\":\"user\",\"methods\":{\"constructor\":{\"notice\":\"Constructs Ticket with passed parameters.\"},\"controller()\":{\"notice\":\"Interface to the contract responsible for controlling mint/burn\"},\"controllerBurn(address,uint256)\":{\"notice\":\"Allows the controller to burn tokens from a user account\"},\"controllerBurnFrom(address,address,uint256)\":{\"notice\":\"Allows an operator via the controller to burn tokens on behalf of a user account\"},\"controllerDelegateFor(address,address)\":{\"notice\":\"Allows the controller to delegate on a users behalf.\"},\"controllerMint(address,uint256)\":{\"notice\":\"Allows the controller to mint tokens for a user account\"},\"decimals()\":{\"notice\":\"Returns the ERC20 controlled token decimals.\"},\"delegate(address)\":{\"notice\":\"Delegate time-weighted average balances to an alternative address.\"},\"delegateOf(address)\":{\"notice\":\"Retrieves the address of the delegate to whom `user` has delegated their tickets.\"},\"delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)\":{\"notice\":\"Allows a user to delegate via signature\"},\"getAccountDetails(address)\":{\"notice\":\"Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\"},\"getAverageBalanceBetween(address,uint64,uint64)\":{\"notice\":\"Retrieves the average balance held by a user for a given time frame.\"},\"getAverageBalancesBetween(address,uint64[],uint64[])\":{\"notice\":\"Retrieves the average balances held by a user for a given time frame.\"},\"getAverageTotalSuppliesBetween(uint64[],uint64[])\":{\"notice\":\"Retrieves the average total supply balance for a set of given time frames.\"},\"getBalanceAt(address,uint64)\":{\"notice\":\"Retrieves `user` TWAB balance.\"},\"getBalancesAt(address,uint64[])\":{\"notice\":\"Retrieves `user` TWAB balances.\"},\"getTotalSuppliesAt(uint64[])\":{\"notice\":\"Retrieves the total supply TWAB balance between the given timestamps range.\"},\"getTotalSupplyAt(uint64)\":{\"notice\":\"Retrieves the total supply TWAB balance at the given timestamp.\"},\"getTwab(address,uint16)\":{\"notice\":\"Gets the TWAB at a specific index for a user.\"}},\"notice\":\"The Ticket extends the standard ERC20 and ControlledToken interfaces with time-weighted average balance functionality. The average balance held by a user between two timestamps can be calculated, as well as the historic balance.  The historic total supply is available as well as the average total supply between two timestamps. A user may \\\"delegate\\\" their balance; increasing another user's historic balance while retaining their tokens.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/Ticket.sol\":\"Ticket\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\\n * instead returning `false` on failure. This behavior is nonetheless\\n * conventional and does not conflict with the expectations of ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(string memory name_, string memory symbol_) {\\n        _name = name_;\\n        _symbol = symbol_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual override returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual override returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual override returns (uint8) {\\n        return 18;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual override returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual override returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\\n        _transfer(_msgSender(), recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\\n        _approve(_msgSender(), spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual override returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][_msgSender()];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, _msgSender(), currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n        uint256 currentAllowance = _allowances[_msgSender()][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(_msgSender(), spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n}\\n\",\"keccak256\":\"0xb03df8481a954604ad0c9125680893b2e3f7ff770fe470e38b89ac61b84e8072\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\n */\\ninterface IERC20Metadata is IERC20 {\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the symbol of the token.\\n     */\\n    function symbol() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the decimals places of the token.\\n     */\\n    function decimals() external view returns (uint8);\\n}\\n\",\"keccak256\":\"0x83fe24f5c04a56091e50f4a345ff504c8bff658a76d4c43b16878c8f940c53b2\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./draft-IERC20Permit.sol\\\";\\nimport \\\"../ERC20.sol\\\";\\nimport \\\"../../../utils/cryptography/draft-EIP712.sol\\\";\\nimport \\\"../../../utils/cryptography/ECDSA.sol\\\";\\nimport \\\"../../../utils/Counters.sol\\\";\\n\\n/**\\n * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n *\\n * _Available since v3.4._\\n */\\nabstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {\\n    using Counters for Counters.Counter;\\n\\n    mapping(address => Counters.Counter) private _nonces;\\n\\n    // solhint-disable-next-line var-name-mixedcase\\n    bytes32 private immutable _PERMIT_TYPEHASH =\\n        keccak256(\\\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\\\");\\n\\n    /**\\n     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\\\"1\\\"`.\\n     *\\n     * It's a good idea to use the same `name` that is defined as the ERC20 token name.\\n     */\\n    constructor(string memory name) EIP712(name, \\\"1\\\") {}\\n\\n    /**\\n     * @dev See {IERC20Permit-permit}.\\n     */\\n    function permit(\\n        address owner,\\n        address spender,\\n        uint256 value,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) public virtual override {\\n        require(block.timestamp <= deadline, \\\"ERC20Permit: expired deadline\\\");\\n\\n        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));\\n\\n        bytes32 hash = _hashTypedDataV4(structHash);\\n\\n        address signer = ECDSA.recover(hash, v, r, s);\\n        require(signer == owner, \\\"ERC20Permit: invalid signature\\\");\\n\\n        _approve(owner, spender, value);\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-nonces}.\\n     */\\n    function nonces(address owner) public view virtual override returns (uint256) {\\n        return _nonces[owner].current();\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view override returns (bytes32) {\\n        return _domainSeparatorV4();\\n    }\\n\\n    /**\\n     * @dev \\\"Consume a nonce\\\": return the current value and increment.\\n     *\\n     * _Available since v4.1._\\n     */\\n    function _useNonce(address owner) internal virtual returns (uint256 current) {\\n        Counters.Counter storage nonce = _nonces[owner];\\n        current = nonce.current();\\n        nonce.increment();\\n    }\\n}\\n\",\"keccak256\":\"0x7ce4684ee1fac31ee5671df82b30c10bd2ebf88add2f63524ed00618a8486907\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n */\\ninterface IERC20Permit {\\n    /**\\n     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\\n     * given ``owner``'s signed approval.\\n     *\\n     * IMPORTANT: The same issues {IERC20-approve} has related to transaction\\n     * ordering also apply here.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `deadline` must be a timestamp in the future.\\n     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\\n     * over the EIP712-formatted function arguments.\\n     * - the signature must use ``owner``'s current nonce (see {nonces}).\\n     *\\n     * For more information on the signature format, see the\\n     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\\n     * section].\\n     */\\n    function permit(\\n        address owner,\\n        address spender,\\n        uint256 value,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @dev Returns the current nonce for `owner`. This value must be\\n     * included whenever a signature is generated for {permit}.\\n     *\\n     * Every successful call to {permit} increases ``owner``'s nonce by one. This\\n     * prevents a signature from being used multiple times.\\n     */\\n    function nonces(address owner) external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view returns (bytes32);\\n}\\n\",\"keccak256\":\"0x3aab711a5f9a5a5a394191e928cc8258e8a243e855bb0275e7834f9686383277\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n    function _msgSender() internal view virtual returns (address) {\\n        return msg.sender;\\n    }\\n\\n    function _msgData() internal view virtual returns (bytes calldata) {\\n        return msg.data;\\n    }\\n}\\n\",\"keccak256\":\"0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Counters.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Counters\\n * @author Matt Condon (@shrugs)\\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\\n *\\n * Include with `using Counters for Counters.Counter;`\\n */\\nlibrary Counters {\\n    struct Counter {\\n        // This variable should never be directly accessed by users of the library: interactions must be restricted to\\n        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\\n        // this feature: see https://github.com/ethereum/solidity/issues/4637\\n        uint256 _value; // default: 0\\n    }\\n\\n    function current(Counter storage counter) internal view returns (uint256) {\\n        return counter._value;\\n    }\\n\\n    function increment(Counter storage counter) internal {\\n        unchecked {\\n            counter._value += 1;\\n        }\\n    }\\n\\n    function decrement(Counter storage counter) internal {\\n        uint256 value = counter._value;\\n        require(value > 0, \\\"Counter: decrement overflow\\\");\\n        unchecked {\\n            counter._value = value - 1;\\n        }\\n    }\\n\\n    function reset(Counter storage counter) internal {\\n        counter._value = 0;\\n    }\\n}\\n\",\"keccak256\":\"0x78450f4e3b722cce467b21e285f72ce5eaf361e9ba9dd2241a413926246773cd\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\\n *\\n * These functions can be used to verify that a message was signed by the holder\\n * of the private keys of a given address.\\n */\\nlibrary ECDSA {\\n    enum RecoverError {\\n        NoError,\\n        InvalidSignature,\\n        InvalidSignatureLength,\\n        InvalidSignatureS,\\n        InvalidSignatureV\\n    }\\n\\n    function _throwError(RecoverError error) private pure {\\n        if (error == RecoverError.NoError) {\\n            return; // no error: do nothing\\n        } else if (error == RecoverError.InvalidSignature) {\\n            revert(\\\"ECDSA: invalid signature\\\");\\n        } else if (error == RecoverError.InvalidSignatureLength) {\\n            revert(\\\"ECDSA: invalid signature length\\\");\\n        } else if (error == RecoverError.InvalidSignatureS) {\\n            revert(\\\"ECDSA: invalid signature 's' value\\\");\\n        } else if (error == RecoverError.InvalidSignatureV) {\\n            revert(\\\"ECDSA: invalid signature 'v' value\\\");\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature` or error string. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {toEthSignedMessageHash} on it.\\n     *\\n     * Documentation for signature generation:\\n     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\\n     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\\n        // Check the signature length\\n        // - case 65: r,s,v signature (standard)\\n        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._\\n        if (signature.length == 65) {\\n            bytes32 r;\\n            bytes32 s;\\n            uint8 v;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                s := mload(add(signature, 0x40))\\n                v := byte(0, mload(add(signature, 0x60)))\\n            }\\n            return tryRecover(hash, v, r, s);\\n        } else if (signature.length == 64) {\\n            bytes32 r;\\n            bytes32 vs;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                vs := mload(add(signature, 0x40))\\n            }\\n            return tryRecover(hash, r, vs);\\n        } else {\\n            return (address(0), RecoverError.InvalidSignatureLength);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature`. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {toEthSignedMessageHash} on it.\\n     */\\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, signature);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\\n     *\\n     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address, RecoverError) {\\n        bytes32 s;\\n        uint8 v;\\n        assembly {\\n            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\\n            v := add(shr(255, vs), 27)\\n        }\\n        return tryRecover(hash, v, r, s);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\\n     *\\n     * _Available since v4.2._\\n     */\\n    function recover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, r, vs);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address, RecoverError) {\\n        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\\n        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\\n        // the valid range for s in (301): 0 < s < secp256k1n \\u00f7 2 + 1, and for v in (302): v \\u2208 {27, 28}. Most\\n        // signatures from current libraries generate a unique signature with an s-value in the lower half order.\\n        //\\n        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\\n        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\\n        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\\n        // these malleable signatures as well.\\n        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\\n            return (address(0), RecoverError.InvalidSignatureS);\\n        }\\n        if (v != 27 && v != 28) {\\n            return (address(0), RecoverError.InvalidSignatureV);\\n        }\\n\\n        // If the signature is valid (and not malleable), return the signer address\\n        address signer = ecrecover(hash, v, r, s);\\n        if (signer == address(0)) {\\n            return (address(0), RecoverError.InvalidSignature);\\n        }\\n\\n        return (signer, RecoverError.NoError);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     */\\n    function recover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from a `hash`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {\\n        // 32 is the length in bytes of hash,\\n        // enforced by the type signature above\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n32\\\", hash));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Typed Data, created from a\\n     * `domainSeparator` and a `structHash`. This produces hash corresponding\\n     * to the one signed with the\\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\\n     * JSON-RPC method as part of EIP-712.\\n     *\\n     * See {recover}.\\n     */\\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19\\\\x01\\\", domainSeparator, structHash));\\n    }\\n}\\n\",\"keccak256\":\"0xbc991a1cf357ce19480831a40792c814238a3b5458134703682abd8aa39719fb\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./ECDSA.sol\\\";\\n\\n/**\\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.\\n *\\n * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\\n * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\\n * they need in their contracts using a combination of `abi.encode` and `keccak256`.\\n *\\n * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\\n * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\\n * ({_hashTypedDataV4}).\\n *\\n * The implementation of the domain separator was designed to be as efficient as possible while still properly updating\\n * the chain id to protect against replay attacks on an eventual fork of the chain.\\n *\\n * NOTE: This contract implements the version of the encoding known as \\\"v4\\\", as implemented by the JSON RPC method\\n * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\\n *\\n * _Available since v3.4._\\n */\\nabstract contract EIP712 {\\n    /* solhint-disable var-name-mixedcase */\\n    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to\\n    // invalidate the cached domain separator if the chain id changes.\\n    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;\\n    uint256 private immutable _CACHED_CHAIN_ID;\\n\\n    bytes32 private immutable _HASHED_NAME;\\n    bytes32 private immutable _HASHED_VERSION;\\n    bytes32 private immutable _TYPE_HASH;\\n\\n    /* solhint-enable var-name-mixedcase */\\n\\n    /**\\n     * @dev Initializes the domain separator and parameter caches.\\n     *\\n     * The meaning of `name` and `version` is specified in\\n     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:\\n     *\\n     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\\n     * - `version`: the current major version of the signing domain.\\n     *\\n     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\\n     * contract upgrade].\\n     */\\n    constructor(string memory name, string memory version) {\\n        bytes32 hashedName = keccak256(bytes(name));\\n        bytes32 hashedVersion = keccak256(bytes(version));\\n        bytes32 typeHash = keccak256(\\n            \\\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\\\"\\n        );\\n        _HASHED_NAME = hashedName;\\n        _HASHED_VERSION = hashedVersion;\\n        _CACHED_CHAIN_ID = block.chainid;\\n        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);\\n        _TYPE_HASH = typeHash;\\n    }\\n\\n    /**\\n     * @dev Returns the domain separator for the current chain.\\n     */\\n    function _domainSeparatorV4() internal view returns (bytes32) {\\n        if (block.chainid == _CACHED_CHAIN_ID) {\\n            return _CACHED_DOMAIN_SEPARATOR;\\n        } else {\\n            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);\\n        }\\n    }\\n\\n    function _buildDomainSeparator(\\n        bytes32 typeHash,\\n        bytes32 nameHash,\\n        bytes32 versionHash\\n    ) private view returns (bytes32) {\\n        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));\\n    }\\n\\n    /**\\n     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\\n     * function returns the hash of the fully encoded EIP712 message for this domain.\\n     *\\n     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\\n     *\\n     * ```solidity\\n     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\\n     *     keccak256(\\\"Mail(address to,string contents)\\\"),\\n     *     mailTo,\\n     *     keccak256(bytes(mailContents))\\n     * )));\\n     * address signer = ECDSA.recover(digest, signature);\\n     * ```\\n     */\\n    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {\\n        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);\\n    }\\n}\\n\",\"keccak256\":\"0xba18d725602452307e5b278ed4566616c63792d89f3a0388a6f285428c26e681\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"contracts/ControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\\\";\\n\\nimport \\\"./interfaces/IControlledToken.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 Controlled ERC20 Token\\n * @author PoolTogether Inc Team\\n * @notice  ERC20 Tokens with a controller for minting & burning\\n */\\ncontract ControlledToken is ERC20Permit, IControlledToken {\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice Interface to the contract responsible for controlling mint/burn\\n    address public override immutable controller;\\n\\n    /// @notice ERC20 controlled token decimals.\\n    uint8 private immutable _decimals;\\n\\n    /* ============ Events ============ */\\n\\n    /// @dev Emitted when contract is deployed\\n    event Deployed(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /* ============ Modifiers ============ */\\n\\n    /// @dev Function modifier to ensure that the caller is the controller contract\\n    modifier onlyController() {\\n        require(msg.sender == address(controller), \\\"ControlledToken/only-controller\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /// @notice Deploy the Controlled Token with Token Details and the Controller\\n    /// @param _name The name of the Token\\n    /// @param _symbol The symbol for the Token\\n    /// @param decimals_ The number of decimals for the Token\\n    /// @param _controller Address of the Controller contract for minting & burning\\n    constructor(\\n        string memory _name,\\n        string memory _symbol,\\n        uint8 decimals_,\\n        address _controller\\n    ) ERC20Permit(\\\"PoolTogether ControlledToken\\\") ERC20(_name, _symbol) {\\n        require(address(_controller) != address(0), \\\"ControlledToken/controller-not-zero-address\\\");\\n        controller = _controller;\\n\\n        require(decimals_ > 0, \\\"ControlledToken/decimals-gt-zero\\\");\\n        _decimals = decimals_;\\n\\n        emit Deployed(_name, _symbol, decimals_, _controller);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @notice Allows the controller to mint tokens for a user account\\n    /// @dev May be overridden to provide more granular control over minting\\n    /// @param _user Address of the receiver of the minted tokens\\n    /// @param _amount Amount of tokens to mint\\n    function controllerMint(address _user, uint256 _amount)\\n        external\\n        virtual\\n        override\\n        onlyController\\n    {\\n        _mint(_user, _amount);\\n    }\\n\\n    /// @notice Allows the controller to burn tokens from a user account\\n    /// @dev May be overridden to provide more granular control over burning\\n    /// @param _user Address of the holder account to burn tokens from\\n    /// @param _amount Amount of tokens to burn\\n    function controllerBurn(address _user, uint256 _amount)\\n        external\\n        virtual\\n        override\\n        onlyController\\n    {\\n        _burn(_user, _amount);\\n    }\\n\\n    /// @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n    /// @dev May be overridden to provide more granular control over operator-burning\\n    /// @param _operator Address of the operator performing the burn action via the controller contract\\n    /// @param _user Address of the holder account to burn tokens from\\n    /// @param _amount Amount of tokens to burn\\n    function controllerBurnFrom(\\n        address _operator,\\n        address _user,\\n        uint256 _amount\\n    ) external virtual override onlyController {\\n        if (_operator != _user) {\\n            _approve(_user, _operator, allowance(_user, _operator) - _amount);\\n        }\\n\\n        _burn(_user, _amount);\\n    }\\n\\n    /// @notice Returns the ERC20 controlled token decimals.\\n    /// @dev This value should be equal to the decimals of the token used to deposit into the pool.\\n    /// @return uint8 decimals.\\n    function decimals() public view virtual override returns (uint8) {\\n        return _decimals;\\n    }\\n}\\n\",\"keccak256\":\"0x7dec4c4427ea75702a706e574d17751ca989b2aaea4991380a126b611d95ff9e\",\"license\":\"GPL-3.0\"},\"contracts/Ticket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport \\\"./libraries/ExtendedSafeCastLib.sol\\\";\\nimport \\\"./libraries/TwabLib.sol\\\";\\nimport \\\"./interfaces/ITicket.sol\\\";\\nimport \\\"./ControlledToken.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 Ticket\\n  * @author PoolTogether Inc Team\\n  * @notice The Ticket extends the standard ERC20 and ControlledToken interfaces with time-weighted average balance functionality.\\n            The average balance held by a user between two timestamps can be calculated, as well as the historic balance.  The\\n            historic total supply is available as well as the average total supply between two timestamps.\\n\\n            A user may \\\"delegate\\\" their balance; increasing another user's historic balance while retaining their tokens.\\n*/\\ncontract Ticket is ControlledToken, ITicket {\\n    using SafeERC20 for IERC20;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    // solhint-disable-next-line var-name-mixedcase\\n    bytes32 private immutable _DELEGATE_TYPEHASH =\\n        keccak256(\\\"Delegate(address user,address delegate,uint256 nonce,uint256 deadline)\\\");\\n\\n    /// @notice Record of token holders TWABs for each account.\\n    mapping(address => TwabLib.Account) internal userTwabs;\\n\\n    /// @notice Record of tickets total supply and ring buff parameters used for observation.\\n    TwabLib.Account internal totalSupplyTwab;\\n\\n    /// @notice Mapping of delegates.  Each address can delegate their ticket power to another.\\n    mapping(address => address) internal delegates;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructs Ticket with passed parameters.\\n     * @param _name ERC20 ticket token name.\\n     * @param _symbol ERC20 ticket token symbol.\\n     * @param decimals_ ERC20 ticket token decimals.\\n     * @param _controller ERC20 ticket controller address (ie: Prize Pool address).\\n     */\\n    constructor(\\n        string memory _name,\\n        string memory _symbol,\\n        uint8 decimals_,\\n        address _controller\\n    ) ControlledToken(_name, _symbol, decimals_, _controller) {}\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc ITicket\\n    function getAccountDetails(address _user)\\n        external\\n        view\\n        override\\n        returns (TwabLib.AccountDetails memory)\\n    {\\n        return userTwabs[_user].details;\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getTwab(address _user, uint16 _index)\\n        external\\n        view\\n        override\\n        returns (ObservationLib.Observation memory)\\n    {\\n        return userTwabs[_user].twabs[_index];\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getBalanceAt(address _user, uint64 _target) external view override returns (uint256) {\\n        TwabLib.Account storage account = userTwabs[_user];\\n\\n        return\\n            TwabLib.getBalanceAt(\\n                account.twabs,\\n                account.details,\\n                uint32(_target),\\n                uint32(block.timestamp)\\n            );\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getAverageBalancesBetween(\\n        address _user,\\n        uint64[] calldata _startTimes,\\n        uint64[] calldata _endTimes\\n    ) external view override returns (uint256[] memory) {\\n        return _getAverageBalancesBetween(userTwabs[_user], _startTimes, _endTimes);\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata _startTimes,\\n        uint64[] calldata _endTimes\\n    ) external view override returns (uint256[] memory) {\\n        return _getAverageBalancesBetween(totalSupplyTwab, _startTimes, _endTimes);\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getAverageBalanceBetween(\\n        address _user,\\n        uint64 _startTime,\\n        uint64 _endTime\\n    ) external view override returns (uint256) {\\n        TwabLib.Account storage account = userTwabs[_user];\\n\\n        return\\n            TwabLib.getAverageBalanceBetween(\\n                account.twabs,\\n                account.details,\\n                uint32(_startTime),\\n                uint32(_endTime),\\n                uint32(block.timestamp)\\n            );\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getBalancesAt(address _user, uint64[] calldata _targets)\\n        external\\n        view\\n        override\\n        returns (uint256[] memory)\\n    {\\n        uint256 length = _targets.length;\\n        uint256[] memory _balances = new uint256[](length);\\n\\n        TwabLib.Account storage twabContext = userTwabs[_user];\\n        TwabLib.AccountDetails memory details = twabContext.details;\\n\\n        for (uint256 i = 0; i < length; i++) {\\n            _balances[i] = TwabLib.getBalanceAt(\\n                twabContext.twabs,\\n                details,\\n                uint32(_targets[i]),\\n                uint32(block.timestamp)\\n            );\\n        }\\n\\n        return _balances;\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getTotalSupplyAt(uint64 _target) external view override returns (uint256) {\\n        return\\n            TwabLib.getBalanceAt(\\n                totalSupplyTwab.twabs,\\n                totalSupplyTwab.details,\\n                uint32(_target),\\n                uint32(block.timestamp)\\n            );\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getTotalSuppliesAt(uint64[] calldata _targets)\\n        external\\n        view\\n        override\\n        returns (uint256[] memory)\\n    {\\n        uint256 length = _targets.length;\\n        uint256[] memory totalSupplies = new uint256[](length);\\n\\n        TwabLib.AccountDetails memory details = totalSupplyTwab.details;\\n\\n        for (uint256 i = 0; i < length; i++) {\\n            totalSupplies[i] = TwabLib.getBalanceAt(\\n                totalSupplyTwab.twabs,\\n                details,\\n                uint32(_targets[i]),\\n                uint32(block.timestamp)\\n            );\\n        }\\n\\n        return totalSupplies;\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function delegateOf(address _user) external view override returns (address) {\\n        return delegates[_user];\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function controllerDelegateFor(address _user, address _to) external override onlyController {\\n        _delegate(_user, _to);\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function delegateWithSignature(\\n        address _user,\\n        address _newDelegate,\\n        uint256 _deadline,\\n        uint8 _v,\\n        bytes32 _r,\\n        bytes32 _s\\n    ) external virtual override {\\n        require(block.timestamp <= _deadline, \\\"Ticket/delegate-expired-deadline\\\");\\n\\n        bytes32 structHash = keccak256(abi.encode(_DELEGATE_TYPEHASH, _user, _newDelegate, _useNonce(_user), _deadline));\\n\\n        bytes32 hash = _hashTypedDataV4(structHash);\\n\\n        address signer = ECDSA.recover(hash, _v, _r, _s);\\n        require(signer == _user, \\\"Ticket/delegate-invalid-signature\\\");\\n\\n        _delegate(_user, _newDelegate);\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function delegate(address _to) external virtual override {\\n        _delegate(msg.sender, _to);\\n    }\\n\\n    /// @notice Delegates a users chance to another\\n    /// @param _user The user whose balance should be delegated\\n    /// @param _to The delegate\\n    function _delegate(address _user, address _to) internal {\\n        uint256 balance = balanceOf(_user);\\n        address currentDelegate = delegates[_user];\\n\\n        if (currentDelegate == _to) {\\n            return;\\n        }\\n\\n        delegates[_user] = _to;\\n\\n        _transferTwab(currentDelegate, _to, balance);\\n\\n        emit Delegated(_user, _to);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param _account The user whose balance is checked.\\n     * @param _startTimes The start time of the time frame.\\n     * @param _endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function _getAverageBalancesBetween(\\n        TwabLib.Account storage _account,\\n        uint64[] calldata _startTimes,\\n        uint64[] calldata _endTimes\\n    ) internal view returns (uint256[] memory) {\\n        uint256 startTimesLength = _startTimes.length;\\n        require(startTimesLength == _endTimes.length, \\\"Ticket/start-end-times-length-match\\\");\\n\\n        TwabLib.AccountDetails memory accountDetails = _account.details;\\n\\n        uint256[] memory averageBalances = new uint256[](startTimesLength);\\n        uint32 currentTimestamp = uint32(block.timestamp);\\n\\n        for (uint256 i = 0; i < startTimesLength; i++) {\\n            averageBalances[i] = TwabLib.getAverageBalanceBetween(\\n                _account.twabs,\\n                accountDetails,\\n                uint32(_startTimes[i]),\\n                uint32(_endTimes[i]),\\n                currentTimestamp\\n            );\\n        }\\n\\n        return averageBalances;\\n    }\\n\\n    // @inheritdoc ERC20\\n    function _beforeTokenTransfer(address _from, address _to, uint256 _amount) internal override {\\n        if (_from == _to) {\\n            return;\\n        }\\n\\n        address _fromDelegate;\\n        if (_from != address(0)) {\\n            _fromDelegate = delegates[_from];\\n        }\\n\\n        address _toDelegate;\\n        if (_to != address(0)) {\\n            _toDelegate = delegates[_to];\\n        }\\n\\n        _transferTwab(_fromDelegate, _toDelegate, _amount);\\n    }\\n\\n    /// @notice Transfers the given TWAB balance from one user to another\\n    /// @param _from The user to transfer the balance from.  May be zero in the event of a mint.\\n    /// @param _to The user to transfer the balance to.  May be zero in the event of a burn.\\n    /// @param _amount The balance that is being transferred.\\n    function _transferTwab(address _from, address _to, uint256 _amount) internal {\\n        // If we are transferring tokens from a delegated account to an undelegated account\\n        if (_from != address(0)) {\\n            _decreaseUserTwab(_from, _amount);\\n\\n            if (_to == address(0)) {\\n                _decreaseTotalSupplyTwab(_amount);\\n            }\\n        }\\n\\n        // If we are transferring tokens from an undelegated account to a delegated account\\n        if (_to != address(0)) {\\n            _increaseUserTwab(_to, _amount);\\n\\n            if (_from == address(0)) {\\n                _increaseTotalSupplyTwab(_amount);\\n            }\\n        }\\n    }\\n\\n    /**\\n     * @notice Increase `_to` TWAB balance.\\n     * @param _to Address of the delegate.\\n     * @param _amount Amount of tokens to be added to `_to` TWAB balance.\\n     */\\n    function _increaseUserTwab(\\n        address _to,\\n        uint256 _amount\\n    ) internal {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        TwabLib.Account storage _account = userTwabs[_to];\\n\\n        (\\n            TwabLib.AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        ) = TwabLib.increaseBalance(_account, _amount.toUint208(), uint32(block.timestamp));\\n\\n        _account.details = accountDetails;\\n\\n        if (isNew) {\\n            emit NewUserTwab(_to, twab);\\n        }\\n    }\\n\\n    /**\\n     * @notice Decrease `_to` TWAB balance.\\n     * @param _to Address of the delegate.\\n     * @param _amount Amount of tokens to be added to `_to` TWAB balance.\\n     */\\n    function _decreaseUserTwab(\\n        address _to,\\n        uint256 _amount\\n    ) internal {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        TwabLib.Account storage _account = userTwabs[_to];\\n\\n        (\\n            TwabLib.AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        ) = TwabLib.decreaseBalance(\\n                _account,\\n                _amount.toUint208(),\\n                \\\"Ticket/twab-burn-lt-balance\\\",\\n                uint32(block.timestamp)\\n            );\\n\\n        _account.details = accountDetails;\\n\\n        if (isNew) {\\n            emit NewUserTwab(_to, twab);\\n        }\\n    }\\n\\n    /// @notice Decreases the total supply twab.  Should be called anytime a balance moves from delegated to undelegated\\n    /// @param _amount The amount to decrease the total by\\n    function _decreaseTotalSupplyTwab(uint256 _amount) internal {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        (\\n            TwabLib.AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory tsTwab,\\n            bool tsIsNew\\n        ) = TwabLib.decreaseBalance(\\n                totalSupplyTwab,\\n                _amount.toUint208(),\\n                \\\"Ticket/burn-amount-exceeds-total-supply-twab\\\",\\n                uint32(block.timestamp)\\n            );\\n\\n        totalSupplyTwab.details = accountDetails;\\n\\n        if (tsIsNew) {\\n            emit NewTotalSupplyTwab(tsTwab);\\n        }\\n    }\\n\\n    /// @notice Increases the total supply twab.  Should be called anytime a balance moves from undelegated to delegated\\n    /// @param _amount The amount to increase the total by\\n    function _increaseTotalSupplyTwab(uint256 _amount) internal {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        (\\n            TwabLib.AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory _totalSupply,\\n            bool tsIsNew\\n        ) = TwabLib.increaseBalance(totalSupplyTwab, _amount.toUint208(), uint32(block.timestamp));\\n\\n        totalSupplyTwab.details = accountDetails;\\n\\n        if (tsIsNew) {\\n            emit NewTotalSupplyTwab(_totalSupply);\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x8a28b868583b1e04c4bcd8667b9e06309f94b4e854bcc7cdc7716fc396bd21b8\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 55,
                "contract": "contracts/Ticket.sol:Ticket",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 61,
                "contract": "contracts/Ticket.sol:Ticket",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 63,
                "contract": "contracts/Ticket.sol:Ticket",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 65,
                "contract": "contracts/Ticket.sol:Ticket",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 67,
                "contract": "contracts/Ticket.sol:Ticket",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 711,
                "contract": "contracts/Ticket.sol:Ticket",
                "label": "_nonces",
                "offset": 0,
                "slot": "5",
                "type": "t_mapping(t_address,t_struct(Counter)2419_storage)"
              },
              {
                "astId": 9973,
                "contract": "contracts/Ticket.sol:Ticket",
                "label": "userTwabs",
                "offset": 0,
                "slot": "6",
                "type": "t_mapping(t_address,t_struct(Account)12882_storage)"
              },
              {
                "astId": 9977,
                "contract": "contracts/Ticket.sol:Ticket",
                "label": "totalSupplyTwab",
                "offset": 0,
                "slot": "7",
                "type": "t_struct(Account)12882_storage"
              },
              {
                "astId": 9982,
                "contract": "contracts/Ticket.sol:Ticket",
                "label": "delegates",
                "offset": 0,
                "slot": "16777223",
                "type": "t_mapping(t_address,t_address)"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(Observation)12454_storage)16777215_storage": {
                "base": "t_struct(Observation)12454_storage",
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation[16777215]",
                "numberOfBytes": "536870880"
              },
              "t_mapping(t_address,t_address)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => address)",
                "numberOfBytes": "32",
                "value": "t_address"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_struct(Account)12882_storage)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => struct TwabLib.Account)",
                "numberOfBytes": "32",
                "value": "t_struct(Account)12882_storage"
              },
              "t_mapping(t_address,t_struct(Counter)2419_storage)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => struct Counters.Counter)",
                "numberOfBytes": "32",
                "value": "t_struct(Counter)2419_storage"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_struct(Account)12882_storage": {
                "encoding": "inplace",
                "label": "struct TwabLib.Account",
                "members": [
                  {
                    "astId": 12876,
                    "contract": "contracts/Ticket.sol:Ticket",
                    "label": "details",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_struct(AccountDetails)12873_storage"
                  },
                  {
                    "astId": 12881,
                    "contract": "contracts/Ticket.sol:Ticket",
                    "label": "twabs",
                    "offset": 0,
                    "slot": "1",
                    "type": "t_array(t_struct(Observation)12454_storage)16777215_storage"
                  }
                ],
                "numberOfBytes": "536870912"
              },
              "t_struct(AccountDetails)12873_storage": {
                "encoding": "inplace",
                "label": "struct TwabLib.AccountDetails",
                "members": [
                  {
                    "astId": 12868,
                    "contract": "contracts/Ticket.sol:Ticket",
                    "label": "balance",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint208"
                  },
                  {
                    "astId": 12870,
                    "contract": "contracts/Ticket.sol:Ticket",
                    "label": "nextTwabIndex",
                    "offset": 26,
                    "slot": "0",
                    "type": "t_uint24"
                  },
                  {
                    "astId": 12872,
                    "contract": "contracts/Ticket.sol:Ticket",
                    "label": "cardinality",
                    "offset": 29,
                    "slot": "0",
                    "type": "t_uint24"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(Counter)2419_storage": {
                "encoding": "inplace",
                "label": "struct Counters.Counter",
                "members": [
                  {
                    "astId": 2418,
                    "contract": "contracts/Ticket.sol:Ticket",
                    "label": "_value",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint256"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(Observation)12454_storage": {
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation",
                "members": [
                  {
                    "astId": 12451,
                    "contract": "contracts/Ticket.sol:Ticket",
                    "label": "amount",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint224"
                  },
                  {
                    "astId": 12453,
                    "contract": "contracts/Ticket.sol:Ticket",
                    "label": "timestamp",
                    "offset": 28,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint208": {
                "encoding": "inplace",
                "label": "uint208",
                "numberOfBytes": "26"
              },
              "t_uint224": {
                "encoding": "inplace",
                "label": "uint224",
                "numberOfBytes": "28"
              },
              "t_uint24": {
                "encoding": "inplace",
                "label": "uint24",
                "numberOfBytes": "3"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              }
            }
          },
          "userdoc": {
            "events": {
              "Delegated(address,address)": {
                "notice": "Emitted when TWAB balance has been delegated to another user."
              },
              "NewTotalSupplyTwab((uint224,uint32))": {
                "notice": "Emitted when a new total supply TWAB has been recorded."
              },
              "NewUserTwab(address,(uint224,uint32))": {
                "notice": "Emitted when a new TWAB has been recorded."
              },
              "TicketInitialized(string,string,uint8,address)": {
                "notice": "Emitted when ticket is initialized."
              }
            },
            "kind": "user",
            "methods": {
              "constructor": {
                "notice": "Constructs Ticket with passed parameters."
              },
              "controller()": {
                "notice": "Interface to the contract responsible for controlling mint/burn"
              },
              "controllerBurn(address,uint256)": {
                "notice": "Allows the controller to burn tokens from a user account"
              },
              "controllerBurnFrom(address,address,uint256)": {
                "notice": "Allows an operator via the controller to burn tokens on behalf of a user account"
              },
              "controllerDelegateFor(address,address)": {
                "notice": "Allows the controller to delegate on a users behalf."
              },
              "controllerMint(address,uint256)": {
                "notice": "Allows the controller to mint tokens for a user account"
              },
              "decimals()": {
                "notice": "Returns the ERC20 controlled token decimals."
              },
              "delegate(address)": {
                "notice": "Delegate time-weighted average balances to an alternative address."
              },
              "delegateOf(address)": {
                "notice": "Retrieves the address of the delegate to whom `user` has delegated their tickets."
              },
              "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": {
                "notice": "Allows a user to delegate via signature"
              },
              "getAccountDetails(address)": {
                "notice": "Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality."
              },
              "getAverageBalanceBetween(address,uint64,uint64)": {
                "notice": "Retrieves the average balance held by a user for a given time frame."
              },
              "getAverageBalancesBetween(address,uint64[],uint64[])": {
                "notice": "Retrieves the average balances held by a user for a given time frame."
              },
              "getAverageTotalSuppliesBetween(uint64[],uint64[])": {
                "notice": "Retrieves the average total supply balance for a set of given time frames."
              },
              "getBalanceAt(address,uint64)": {
                "notice": "Retrieves `user` TWAB balance."
              },
              "getBalancesAt(address,uint64[])": {
                "notice": "Retrieves `user` TWAB balances."
              },
              "getTotalSuppliesAt(uint64[])": {
                "notice": "Retrieves the total supply TWAB balance between the given timestamps range."
              },
              "getTotalSupplyAt(uint64)": {
                "notice": "Retrieves the total supply TWAB balance at the given timestamp."
              },
              "getTwab(address,uint16)": {
                "notice": "Gets the TWAB at a specific index for a user."
              }
            },
            "notice": "The Ticket extends the standard ERC20 and ControlledToken interfaces with time-weighted average balance functionality. The average balance held by a user between two timestamps can be calculated, as well as the historic balance.  The historic total supply is available as well as the average total supply between two timestamps. A user may \"delegate\" their balance; increasing another user's historic balance while retaining their tokens.",
            "version": 1
          }
        }
      },
      "contracts/external/compound/CTokenInterface.sol": {
        "CTokenInterface": {
          "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": "user",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "balanceOfUnderlying",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "decimals",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "exchangeRateCurrent",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "mintAmount",
                  "type": "uint256"
                }
              ],
              "name": "mint",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "redeem",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "redeemAmount",
                  "type": "uint256"
                }
              ],
              "name": "redeemUnderlying",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "supplyRatePerBlock",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "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"
            },
            {
              "inputs": [],
              "name": "underlying",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "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."
              },
              "approve(address,uint256)": {
                "details": "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."
              },
              "totalSupply()": {
                "details": "Returns the amount of tokens in existence."
              },
              "transfer(address,uint256)": {
                "details": "Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              },
              "transferFrom(address,address,uint256)": {
                "details": "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."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "balanceOfUnderlying(address)": "3af9e669",
              "decimals()": "313ce567",
              "exchangeRateCurrent()": "bd6d894d",
              "mint(uint256)": "a0712d68",
              "redeem(uint256)": "db006a75",
              "redeemUnderlying(uint256)": "852a12e3",
              "supplyRatePerBlock()": "ae9d70b0",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd",
              "underlying()": "6f307dc3"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"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\":\"user\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOfUnderlying\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"exchangeRateCurrent\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"mintAmount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"redeemAmount\",\"type\":\"uint256\"}],\"name\":\"redeemUnderlying\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"supplyRatePerBlock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"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\"},{\"inputs\":[],\"name\":\"underlying\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"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.\"},\"approve(address,uint256)\":{\"details\":\"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.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"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.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/external/compound/CTokenInterface.sol\":\"CTokenInterface\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"contracts/external/compound/CTokenInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface CTokenInterface is IERC20 {\\n    function decimals() external view returns (uint8);\\n\\n    function totalSupply() external view override returns (uint256);\\n\\n    function underlying() external view returns (address);\\n\\n    function balanceOfUnderlying(address owner) external returns (uint256);\\n\\n    function supplyRatePerBlock() external returns (uint256);\\n\\n    function exchangeRateCurrent() external returns (uint256);\\n\\n    function mint(uint256 mintAmount) external returns (uint256);\\n\\n    function redeem(uint256 amount) external returns (uint256);\\n\\n    function balanceOf(address user) external view override returns (uint256);\\n\\n    function redeemUnderlying(uint256 redeemAmount) external returns (uint256);\\n}\\n\",\"keccak256\":\"0x13be0214f65f6de52f0cbaa77975b99b07f4f6c65d04fac4645396797d789b02\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "contracts/external/compound/ICompLike.sol": {
        "ICompLike": {
          "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": "address",
                  "name": "delegate",
                  "type": "address"
                }
              ],
              "name": "delegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "getCurrentVotes",
              "outputs": [
                {
                  "internalType": "uint96",
                  "name": "",
                  "type": "uint96"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "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."
              },
              "approve(address,uint256)": {
                "details": "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."
              },
              "balanceOf(address)": {
                "details": "Returns the amount of tokens owned by `account`."
              },
              "totalSupply()": {
                "details": "Returns the amount of tokens in existence."
              },
              "transfer(address,uint256)": {
                "details": "Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              },
              "transferFrom(address,address,uint256)": {
                "details": "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."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "delegate(address)": "5c19a95c",
              "getCurrentVotes(address)": "b4b5ea57",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"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\":\"address\",\"name\":\"delegate\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getCurrentVotes\",\"outputs\":[{\"internalType\":\"uint96\",\"name\":\"\",\"type\":\"uint96\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"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.\"},\"approve(address,uint256)\":{\"details\":\"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.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"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.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/external/compound/ICompLike.sol\":\"ICompLike\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "contracts/interfaces/IControlledToken.sol": {
        "IControlledToken": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "controller",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurn",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurnFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerMint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "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": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "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."
              },
              "approve(address,uint256)": {
                "details": "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."
              },
              "balanceOf(address)": {
                "details": "Returns the amount of tokens owned by `account`."
              },
              "controllerBurn(address,uint256)": {
                "details": "May be overridden to provide more granular control over burning",
                "params": {
                  "amount": "Amount of tokens to burn",
                  "user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerBurnFrom(address,address,uint256)": {
                "details": "May be overridden to provide more granular control over operator-burning",
                "params": {
                  "amount": "Amount of tokens to burn",
                  "operator": "Address of the operator performing the burn action via the controller contract",
                  "user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerMint(address,uint256)": {
                "details": "May be overridden to provide more granular control over minting",
                "params": {
                  "amount": "Amount of tokens to mint",
                  "user": "Address of the receiver of the minted tokens"
                }
              },
              "totalSupply()": {
                "details": "Returns the amount of tokens in existence."
              },
              "transfer(address,uint256)": {
                "details": "Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              },
              "transferFrom(address,address,uint256)": {
                "details": "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."
              }
            },
            "title": "IControlledToken",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "controller()": "f77c4791",
              "controllerBurn(address,uint256)": "90596dd1",
              "controllerBurnFrom(address,address,uint256)": "631b5dfb",
              "controllerMint(address,uint256)": "5d7b0758",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"controller\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurnFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"controllerMint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"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.\"},\"approve(address,uint256)\":{\"details\":\"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.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"controllerBurn(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over burning\",\"params\":{\"amount\":\"Amount of tokens to burn\",\"user\":\"Address of the holder account to burn tokens from\"}},\"controllerBurnFrom(address,address,uint256)\":{\"details\":\"May be overridden to provide more granular control over operator-burning\",\"params\":{\"amount\":\"Amount of tokens to burn\",\"operator\":\"Address of the operator performing the burn action via the controller contract\",\"user\":\"Address of the holder account to burn tokens from\"}},\"controllerMint(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over minting\",\"params\":{\"amount\":\"Amount of tokens to mint\",\"user\":\"Address of the receiver of the minted tokens\"}},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"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.\"}},\"title\":\"IControlledToken\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"controller()\":{\"notice\":\"Interface to the contract responsible for controlling mint/burn\"},\"controllerBurn(address,uint256)\":{\"notice\":\"Allows the controller to burn tokens from a user account\"},\"controllerBurnFrom(address,address,uint256)\":{\"notice\":\"Allows an operator via the controller to burn tokens on behalf of a user account\"},\"controllerMint(address,uint256)\":{\"notice\":\"Allows the controller to mint tokens for a user account\"}},\"notice\":\"ERC20 Tokens with a controller for minting & burning.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IControlledToken.sol\":\"IControlledToken\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "controller()": {
                "notice": "Interface to the contract responsible for controlling mint/burn"
              },
              "controllerBurn(address,uint256)": {
                "notice": "Allows the controller to burn tokens from a user account"
              },
              "controllerBurnFrom(address,address,uint256)": {
                "notice": "Allows an operator via the controller to burn tokens on behalf of a user account"
              },
              "controllerMint(address,uint256)": {
                "notice": "Allows the controller to mint tokens for a user account"
              }
            },
            "notice": "ERC20 Tokens with a controller for minting & burning.",
            "version": 1
          }
        }
      },
      "contracts/interfaces/IDrawBeacon.sol": {
        "IDrawBeacon": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "drawPeriodSeconds",
                  "type": "uint32"
                }
              ],
              "name": "BeaconPeriodSecondsUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint64",
                  "name": "startedAt",
                  "type": "uint64"
                }
              ],
              "name": "BeaconPeriodStarted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IDrawBuffer",
                  "name": "newDrawBuffer",
                  "type": "address"
                }
              ],
              "name": "DrawBufferUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "rngRequestId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "rngLockBlock",
                  "type": "uint32"
                }
              ],
              "name": "DrawCancelled",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "randomNumber",
                  "type": "uint256"
                }
              ],
              "name": "DrawCompleted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "rngRequestId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "rngLockBlock",
                  "type": "uint32"
                }
              ],
              "name": "DrawStarted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract RNGInterface",
                  "name": "rngService",
                  "type": "address"
                }
              ],
              "name": "RngServiceUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "rngTimeout",
                  "type": "uint32"
                }
              ],
              "name": "RngTimeoutSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "beaconPeriodEndAt",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "beaconPeriodRemainingSeconds",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "time",
                  "type": "uint64"
                }
              ],
              "name": "calculateNextBeaconPeriodStartTime",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "canCompleteDraw",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "canStartDraw",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "cancelDraw",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "completeDraw",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLastRngLockBlock",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLastRngRequestId",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isBeaconPeriodOver",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isRngCompleted",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isRngRequested",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isRngTimedOut",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "beaconPeriodSeconds",
                  "type": "uint32"
                }
              ],
              "name": "setBeaconPeriodSeconds",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "newDrawBuffer",
                  "type": "address"
                }
              ],
              "name": "setDrawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract RNGInterface",
                  "name": "rngService",
                  "type": "address"
                }
              ],
              "name": "setRngService",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "rngTimeout",
                  "type": "uint32"
                }
              ],
              "name": "setRngTimeout",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "startDraw",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "BeaconPeriodSecondsUpdated(uint32)": {
                "params": {
                  "drawPeriodSeconds": "Time between draw"
                }
              },
              "BeaconPeriodStarted(uint64)": {
                "params": {
                  "startedAt": "Start timestamp"
                }
              },
              "DrawBufferUpdated(address)": {
                "params": {
                  "newDrawBuffer": "The new DrawBuffer address"
                }
              },
              "DrawCancelled(uint32,uint32)": {
                "params": {
                  "rngLockBlock": "Block when draw becomes invalid",
                  "rngRequestId": "draw id"
                }
              },
              "DrawCompleted(uint256)": {
                "params": {
                  "randomNumber": "Random number generated from draw"
                }
              },
              "DrawStarted(uint32,uint32)": {
                "params": {
                  "rngLockBlock": "Block when draw becomes invalid",
                  "rngRequestId": "draw id"
                }
              },
              "RngServiceUpdated(address)": {
                "params": {
                  "rngService": "RNG service address"
                }
              },
              "RngTimeoutSet(uint32)": {
                "params": {
                  "rngTimeout": "draw timeout param in seconds"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "beaconPeriodEndAt()": {
                "returns": {
                  "_0": "The timestamp at which the beacon period ends."
                }
              },
              "beaconPeriodRemainingSeconds()": {
                "returns": {
                  "_0": "The number of seconds remaining until the beacon period can be complete."
                }
              },
              "calculateNextBeaconPeriodStartTime(uint64)": {
                "params": {
                  "time": "The timestamp to use as the current time"
                },
                "returns": {
                  "_0": "The timestamp at which the next beacon period would start"
                }
              },
              "canCompleteDraw()": {
                "returns": {
                  "_0": "True if a Draw can be completed, false otherwise."
                }
              },
              "canStartDraw()": {
                "returns": {
                  "_0": "True if a Draw can be started, false otherwise."
                }
              },
              "getLastRngLockBlock()": {
                "returns": {
                  "_0": "The block number that the RNG request is locked to"
                }
              },
              "getLastRngRequestId()": {
                "returns": {
                  "_0": "The current Request ID"
                }
              },
              "isBeaconPeriodOver()": {
                "returns": {
                  "_0": "True if the beacon period is over, false otherwise"
                }
              },
              "isRngCompleted()": {
                "returns": {
                  "_0": "True if a random number request has completed, false otherwise."
                }
              },
              "isRngRequested()": {
                "returns": {
                  "_0": "True if a random number has been requested, false otherwise."
                }
              },
              "isRngTimedOut()": {
                "returns": {
                  "_0": "True if a random number request has timed out, false otherwise."
                }
              },
              "setBeaconPeriodSeconds(uint32)": {
                "params": {
                  "beaconPeriodSeconds": "The new beacon period in seconds.  Must be greater than zero."
                }
              },
              "setDrawBuffer(address)": {
                "details": "All subsequent Draw requests/completions will be pushed to the new DrawBuffer.",
                "params": {
                  "newDrawBuffer": "DrawBuffer address"
                },
                "returns": {
                  "_0": "DrawBuffer"
                }
              },
              "setRngService(address)": {
                "params": {
                  "rngService": "The address of the new RNG service interface"
                }
              },
              "setRngTimeout(uint32)": {
                "params": {
                  "rngTimeout": "The RNG request timeout in seconds."
                }
              },
              "startDraw()": {
                "details": "The RNG-Request-Fee is expected to be held within this contract before calling this function"
              }
            },
            "title": "IDrawBeacon",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "beaconPeriodEndAt()": "a104fd79",
              "beaconPeriodRemainingSeconds()": "75e38f16",
              "calculateNextBeaconPeriodStartTime(uint64)": "a3ae35ab",
              "canCompleteDraw()": "e4a75bb8",
              "canStartDraw()": "0996f6e1",
              "cancelDraw()": "412a616a",
              "completeDraw()": "0bdeecbd",
              "getLastRngLockBlock()": "6bea5344",
              "getLastRngRequestId()": "2a7ad609",
              "isBeaconPeriodOver()": "d1e77657",
              "isRngCompleted()": "4aba4f6b",
              "isRngRequested()": "111070e4",
              "isRngTimedOut()": "738bbea8",
              "setBeaconPeriodSeconds(uint32)": "919bead0",
              "setDrawBuffer(address)": "ab70d49c",
              "setRngService(address)": "7f4296d7",
              "setRngTimeout(uint32)": "5020ea56",
              "startDraw()": "2ae168a6"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"drawPeriodSeconds\",\"type\":\"uint32\"}],\"name\":\"BeaconPeriodSecondsUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"startedAt\",\"type\":\"uint64\"}],\"name\":\"BeaconPeriodStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IDrawBuffer\",\"name\":\"newDrawBuffer\",\"type\":\"address\"}],\"name\":\"DrawBufferUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"rngRequestId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"rngLockBlock\",\"type\":\"uint32\"}],\"name\":\"DrawCancelled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"randomNumber\",\"type\":\"uint256\"}],\"name\":\"DrawCompleted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"rngRequestId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"rngLockBlock\",\"type\":\"uint32\"}],\"name\":\"DrawStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract RNGInterface\",\"name\":\"rngService\",\"type\":\"address\"}],\"name\":\"RngServiceUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"rngTimeout\",\"type\":\"uint32\"}],\"name\":\"RngTimeoutSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"beaconPeriodEndAt\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"beaconPeriodRemainingSeconds\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"time\",\"type\":\"uint64\"}],\"name\":\"calculateNextBeaconPeriodStartTime\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"canCompleteDraw\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"canStartDraw\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cancelDraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"completeDraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLastRngLockBlock\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLastRngRequestId\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isBeaconPeriodOver\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isRngCompleted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isRngRequested\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isRngTimedOut\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"name\":\"setBeaconPeriodSeconds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"newDrawBuffer\",\"type\":\"address\"}],\"name\":\"setDrawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract RNGInterface\",\"name\":\"rngService\",\"type\":\"address\"}],\"name\":\"setRngService\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"rngTimeout\",\"type\":\"uint32\"}],\"name\":\"setRngTimeout\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"startDraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"BeaconPeriodSecondsUpdated(uint32)\":{\"params\":{\"drawPeriodSeconds\":\"Time between draw\"}},\"BeaconPeriodStarted(uint64)\":{\"params\":{\"startedAt\":\"Start timestamp\"}},\"DrawBufferUpdated(address)\":{\"params\":{\"newDrawBuffer\":\"The new DrawBuffer address\"}},\"DrawCancelled(uint32,uint32)\":{\"params\":{\"rngLockBlock\":\"Block when draw becomes invalid\",\"rngRequestId\":\"draw id\"}},\"DrawCompleted(uint256)\":{\"params\":{\"randomNumber\":\"Random number generated from draw\"}},\"DrawStarted(uint32,uint32)\":{\"params\":{\"rngLockBlock\":\"Block when draw becomes invalid\",\"rngRequestId\":\"draw id\"}},\"RngServiceUpdated(address)\":{\"params\":{\"rngService\":\"RNG service address\"}},\"RngTimeoutSet(uint32)\":{\"params\":{\"rngTimeout\":\"draw timeout param in seconds\"}}},\"kind\":\"dev\",\"methods\":{\"beaconPeriodEndAt()\":{\"returns\":{\"_0\":\"The timestamp at which the beacon period ends.\"}},\"beaconPeriodRemainingSeconds()\":{\"returns\":{\"_0\":\"The number of seconds remaining until the beacon period can be complete.\"}},\"calculateNextBeaconPeriodStartTime(uint64)\":{\"params\":{\"time\":\"The timestamp to use as the current time\"},\"returns\":{\"_0\":\"The timestamp at which the next beacon period would start\"}},\"canCompleteDraw()\":{\"returns\":{\"_0\":\"True if a Draw can be completed, false otherwise.\"}},\"canStartDraw()\":{\"returns\":{\"_0\":\"True if a Draw can be started, false otherwise.\"}},\"getLastRngLockBlock()\":{\"returns\":{\"_0\":\"The block number that the RNG request is locked to\"}},\"getLastRngRequestId()\":{\"returns\":{\"_0\":\"The current Request ID\"}},\"isBeaconPeriodOver()\":{\"returns\":{\"_0\":\"True if the beacon period is over, false otherwise\"}},\"isRngCompleted()\":{\"returns\":{\"_0\":\"True if a random number request has completed, false otherwise.\"}},\"isRngRequested()\":{\"returns\":{\"_0\":\"True if a random number has been requested, false otherwise.\"}},\"isRngTimedOut()\":{\"returns\":{\"_0\":\"True if a random number request has timed out, false otherwise.\"}},\"setBeaconPeriodSeconds(uint32)\":{\"params\":{\"beaconPeriodSeconds\":\"The new beacon period in seconds.  Must be greater than zero.\"}},\"setDrawBuffer(address)\":{\"details\":\"All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\",\"params\":{\"newDrawBuffer\":\"DrawBuffer address\"},\"returns\":{\"_0\":\"DrawBuffer\"}},\"setRngService(address)\":{\"params\":{\"rngService\":\"The address of the new RNG service interface\"}},\"setRngTimeout(uint32)\":{\"params\":{\"rngTimeout\":\"The RNG request timeout in seconds.\"}},\"startDraw()\":{\"details\":\"The RNG-Request-Fee is expected to be held within this contract before calling this function\"}},\"title\":\"IDrawBeacon\",\"version\":1},\"userdoc\":{\"events\":{\"BeaconPeriodSecondsUpdated(uint32)\":{\"notice\":\"Emit when the drawPeriodSeconds is set.\"},\"BeaconPeriodStarted(uint64)\":{\"notice\":\"Emit when a draw has opened.\"},\"DrawBufferUpdated(address)\":{\"notice\":\"Emit when a new DrawBuffer has been set.\"},\"DrawCancelled(uint32,uint32)\":{\"notice\":\"Emit when a draw has been cancelled.\"},\"DrawCompleted(uint256)\":{\"notice\":\"Emit when a draw has been completed.\"},\"DrawStarted(uint32,uint32)\":{\"notice\":\"Emit when a draw has started.\"},\"RngServiceUpdated(address)\":{\"notice\":\"Emit when a RNG service address is set.\"},\"RngTimeoutSet(uint32)\":{\"notice\":\"Emit when a draw timeout param is set.\"}},\"kind\":\"user\",\"methods\":{\"beaconPeriodEndAt()\":{\"notice\":\"Returns the timestamp at which the beacon period ends\"},\"beaconPeriodRemainingSeconds()\":{\"notice\":\"Returns the number of seconds remaining until the beacon period can be complete.\"},\"calculateNextBeaconPeriodStartTime(uint64)\":{\"notice\":\"Calculates when the next beacon period will start.\"},\"canCompleteDraw()\":{\"notice\":\"Returns whether a Draw can be completed.\"},\"canStartDraw()\":{\"notice\":\"Returns whether a Draw can be started.\"},\"cancelDraw()\":{\"notice\":\"Can be called by anyone to cancel the draw request if the RNG has timed out.\"},\"completeDraw()\":{\"notice\":\"Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\"},\"getLastRngLockBlock()\":{\"notice\":\"Returns the block number that the current RNG request has been locked to.\"},\"getLastRngRequestId()\":{\"notice\":\"Returns the current RNG Request ID.\"},\"isBeaconPeriodOver()\":{\"notice\":\"Returns whether the beacon period is over\"},\"isRngCompleted()\":{\"notice\":\"Returns whether the random number request has completed.\"},\"isRngRequested()\":{\"notice\":\"Returns whether a random number has been requested\"},\"isRngTimedOut()\":{\"notice\":\"Returns whether the random number request has timed out.\"},\"setBeaconPeriodSeconds(uint32)\":{\"notice\":\"Allows the owner to set the beacon period in seconds.\"},\"setDrawBuffer(address)\":{\"notice\":\"Set global DrawBuffer variable.\"},\"setRngService(address)\":{\"notice\":\"Sets the RNG service that the Prize Strategy is connected to\"},\"setRngTimeout(uint32)\":{\"notice\":\"Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\"},\"startDraw()\":{\"notice\":\"Starts the Draw process by starting random number request. The previous beacon period must have ended.\"}},\"notice\":\"The DrawBeacon interface.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IDrawBeacon.sol\":\"IDrawBeacon\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Random Number Generator Interface\\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\n */\\ninterface RNGInterface {\\n  /**\\n   * @notice Emitted when a new request for a random number has been submitted\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param sender The indexed address of the sender of the request\\n   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /**\\n   * @notice Emitted when an existing request for a random number has been completed\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param randomNumber The random number produced by the 3rd-party service\\n   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /**\\n   * @notice Gets the last request id used by the RNG service\\n   * @return requestId The last request id used in the last request\\n   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /**\\n   * @notice Gets the Fee for making a Request against an RNG service\\n   * @return feeToken The address of the token that is used to pay fees\\n   * @return requestFee The fee required to be paid to make a request\\n   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /**\\n   * @notice Sends a request for a random number to the 3rd-party service\\n   * @dev Some services will complete the request immediately, others may have a time-delay\\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n   * @return requestId The ID of the request used to get the results of the RNG service\\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /**\\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\\n   * @dev For time-delayed requests, this function is used to check/confirm completion\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\\n   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /**\\n   * @notice Gets the random number produced by the 3rd-party service\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return randomNum The random number\\n   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "BeaconPeriodSecondsUpdated(uint32)": {
                "notice": "Emit when the drawPeriodSeconds is set."
              },
              "BeaconPeriodStarted(uint64)": {
                "notice": "Emit when a draw has opened."
              },
              "DrawBufferUpdated(address)": {
                "notice": "Emit when a new DrawBuffer has been set."
              },
              "DrawCancelled(uint32,uint32)": {
                "notice": "Emit when a draw has been cancelled."
              },
              "DrawCompleted(uint256)": {
                "notice": "Emit when a draw has been completed."
              },
              "DrawStarted(uint32,uint32)": {
                "notice": "Emit when a draw has started."
              },
              "RngServiceUpdated(address)": {
                "notice": "Emit when a RNG service address is set."
              },
              "RngTimeoutSet(uint32)": {
                "notice": "Emit when a draw timeout param is set."
              }
            },
            "kind": "user",
            "methods": {
              "beaconPeriodEndAt()": {
                "notice": "Returns the timestamp at which the beacon period ends"
              },
              "beaconPeriodRemainingSeconds()": {
                "notice": "Returns the number of seconds remaining until the beacon period can be complete."
              },
              "calculateNextBeaconPeriodStartTime(uint64)": {
                "notice": "Calculates when the next beacon period will start."
              },
              "canCompleteDraw()": {
                "notice": "Returns whether a Draw can be completed."
              },
              "canStartDraw()": {
                "notice": "Returns whether a Draw can be started."
              },
              "cancelDraw()": {
                "notice": "Can be called by anyone to cancel the draw request if the RNG has timed out."
              },
              "completeDraw()": {
                "notice": "Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer."
              },
              "getLastRngLockBlock()": {
                "notice": "Returns the block number that the current RNG request has been locked to."
              },
              "getLastRngRequestId()": {
                "notice": "Returns the current RNG Request ID."
              },
              "isBeaconPeriodOver()": {
                "notice": "Returns whether the beacon period is over"
              },
              "isRngCompleted()": {
                "notice": "Returns whether the random number request has completed."
              },
              "isRngRequested()": {
                "notice": "Returns whether a random number has been requested"
              },
              "isRngTimedOut()": {
                "notice": "Returns whether the random number request has timed out."
              },
              "setBeaconPeriodSeconds(uint32)": {
                "notice": "Allows the owner to set the beacon period in seconds."
              },
              "setDrawBuffer(address)": {
                "notice": "Set global DrawBuffer variable."
              },
              "setRngService(address)": {
                "notice": "Sets the RNG service that the Prize Strategy is connected to"
              },
              "setRngTimeout(uint32)": {
                "notice": "Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked."
              },
              "startDraw()": {
                "notice": "Starts the Draw process by starting random number request. The previous beacon period must have ended."
              }
            },
            "notice": "The DrawBeacon interface.",
            "version": 1
          }
        }
      },
      "contracts/interfaces/IDrawBuffer.sol": {
        "IDrawBuffer": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "draw",
                  "type": "tuple"
                }
              ],
              "name": "DrawSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "getBufferCardinality",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "name": "getDraw",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawCount",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32[]",
                  "name": "drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getDraws",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getNewestDraw",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getOldestDraw",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "draw",
                  "type": "tuple"
                }
              ],
              "name": "pushDraw",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "newDraw",
                  "type": "tuple"
                }
              ],
              "name": "setDraw",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "DrawSet(uint32,(uint256,uint32,uint64,uint64,uint32))": {
                "params": {
                  "draw": "The Draw struct",
                  "drawId": "Draw id"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "getBufferCardinality()": {
                "returns": {
                  "_0": "Ring buffer cardinality"
                }
              },
              "getDraw(uint32)": {
                "details": "Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.",
                "params": {
                  "drawId": "Draw.drawId"
                },
                "returns": {
                  "_0": "IDrawBeacon.Draw"
                }
              },
              "getDrawCount()": {
                "details": "If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestDraw index + 1.",
                "returns": {
                  "_0": "Number of Draws held in the draw ring buffer."
                }
              },
              "getDraws(uint32[])": {
                "details": "Read multiple Draws using each drawId to calculate position in the draws ring buffer.",
                "params": {
                  "drawIds": "Array of drawIds"
                },
                "returns": {
                  "_0": "IDrawBeacon.Draw[]"
                }
              },
              "getNewestDraw()": {
                "details": "Uses the nextDrawIndex to calculate the most recently added Draw.",
                "returns": {
                  "_0": "IDrawBeacon.Draw"
                }
              },
              "getOldestDraw()": {
                "details": "Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.",
                "returns": {
                  "_0": "IDrawBeacon.Draw"
                }
              },
              "pushDraw((uint256,uint32,uint64,uint64,uint32))": {
                "details": "Push new draw onto draws history via authorized manager or owner.",
                "params": {
                  "draw": "IDrawBeacon.Draw"
                },
                "returns": {
                  "_0": "Draw.drawId"
                }
              },
              "setDraw((uint256,uint32,uint64,uint64,uint32))": {
                "details": "Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.",
                "params": {
                  "newDraw": "IDrawBeacon.Draw"
                },
                "returns": {
                  "_0": "Draw.drawId"
                }
              }
            },
            "title": "IDrawBuffer",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "getBufferCardinality()": "caeef7ec",
              "getDraw(uint32)": "83c34aaf",
              "getDrawCount()": "c4df5fed",
              "getDraws(uint32[])": "d0bb78f3",
              "getNewestDraw()": "0edb1d2e",
              "getOldestDraw()": "648b1b4f",
              "pushDraw((uint256,uint32,uint64,uint64,uint32))": "089eb925",
              "setDraw((uint256,uint32,uint64,uint64,uint32))": "d7bcb86b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"draw\",\"type\":\"tuple\"}],\"name\":\"DrawSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"getBufferCardinality\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"name\":\"getDraw\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawCount\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32[]\",\"name\":\"drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getDraws\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNewestDraw\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getOldestDraw\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"draw\",\"type\":\"tuple\"}],\"name\":\"pushDraw\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"newDraw\",\"type\":\"tuple\"}],\"name\":\"setDraw\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"DrawSet(uint32,(uint256,uint32,uint64,uint64,uint32))\":{\"params\":{\"draw\":\"The Draw struct\",\"drawId\":\"Draw id\"}}},\"kind\":\"dev\",\"methods\":{\"getBufferCardinality()\":{\"returns\":{\"_0\":\"Ring buffer cardinality\"}},\"getDraw(uint32)\":{\"details\":\"Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\",\"params\":{\"drawId\":\"Draw.drawId\"},\"returns\":{\"_0\":\"IDrawBeacon.Draw\"}},\"getDrawCount()\":{\"details\":\"If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestDraw index + 1.\",\"returns\":{\"_0\":\"Number of Draws held in the draw ring buffer.\"}},\"getDraws(uint32[])\":{\"details\":\"Read multiple Draws using each drawId to calculate position in the draws ring buffer.\",\"params\":{\"drawIds\":\"Array of drawIds\"},\"returns\":{\"_0\":\"IDrawBeacon.Draw[]\"}},\"getNewestDraw()\":{\"details\":\"Uses the nextDrawIndex to calculate the most recently added Draw.\",\"returns\":{\"_0\":\"IDrawBeacon.Draw\"}},\"getOldestDraw()\":{\"details\":\"Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\",\"returns\":{\"_0\":\"IDrawBeacon.Draw\"}},\"pushDraw((uint256,uint32,uint64,uint64,uint32))\":{\"details\":\"Push new draw onto draws history via authorized manager or owner.\",\"params\":{\"draw\":\"IDrawBeacon.Draw\"},\"returns\":{\"_0\":\"Draw.drawId\"}},\"setDraw((uint256,uint32,uint64,uint64,uint32))\":{\"details\":\"Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\",\"params\":{\"newDraw\":\"IDrawBeacon.Draw\"},\"returns\":{\"_0\":\"Draw.drawId\"}}},\"title\":\"IDrawBuffer\",\"version\":1},\"userdoc\":{\"events\":{\"DrawSet(uint32,(uint256,uint32,uint64,uint64,uint32))\":{\"notice\":\"Emit when a new draw has been created.\"}},\"kind\":\"user\",\"methods\":{\"getBufferCardinality()\":{\"notice\":\"Read a ring buffer cardinality\"},\"getDraw(uint32)\":{\"notice\":\"Read a Draw from the draws ring buffer.\"},\"getDrawCount()\":{\"notice\":\"Gets the number of Draws held in the draw ring buffer.\"},\"getDraws(uint32[])\":{\"notice\":\"Read multiple Draws from the draws ring buffer.\"},\"getNewestDraw()\":{\"notice\":\"Read newest Draw from draws ring buffer.\"},\"getOldestDraw()\":{\"notice\":\"Read oldest Draw from draws ring buffer.\"},\"pushDraw((uint256,uint32,uint64,uint64,uint32))\":{\"notice\":\"Push Draw onto draws ring buffer history.\"},\"setDraw((uint256,uint32,uint64,uint64,uint32))\":{\"notice\":\"Set existing Draw in draws ring buffer with new parameters.\"}},\"notice\":\"The DrawBuffer interface.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IDrawBuffer.sol\":\"IDrawBuffer\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Random Number Generator Interface\\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\n */\\ninterface RNGInterface {\\n  /**\\n   * @notice Emitted when a new request for a random number has been submitted\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param sender The indexed address of the sender of the request\\n   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /**\\n   * @notice Emitted when an existing request for a random number has been completed\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param randomNumber The random number produced by the 3rd-party service\\n   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /**\\n   * @notice Gets the last request id used by the RNG service\\n   * @return requestId The last request id used in the last request\\n   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /**\\n   * @notice Gets the Fee for making a Request against an RNG service\\n   * @return feeToken The address of the token that is used to pay fees\\n   * @return requestFee The fee required to be paid to make a request\\n   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /**\\n   * @notice Sends a request for a random number to the 3rd-party service\\n   * @dev Some services will complete the request immediately, others may have a time-delay\\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n   * @return requestId The ID of the request used to get the results of the RNG service\\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /**\\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\\n   * @dev For time-delayed requests, this function is used to check/confirm completion\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\\n   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /**\\n   * @notice Gets the random number produced by the 3rd-party service\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return randomNum The random number\\n   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "DrawSet(uint32,(uint256,uint32,uint64,uint64,uint32))": {
                "notice": "Emit when a new draw has been created."
              }
            },
            "kind": "user",
            "methods": {
              "getBufferCardinality()": {
                "notice": "Read a ring buffer cardinality"
              },
              "getDraw(uint32)": {
                "notice": "Read a Draw from the draws ring buffer."
              },
              "getDrawCount()": {
                "notice": "Gets the number of Draws held in the draw ring buffer."
              },
              "getDraws(uint32[])": {
                "notice": "Read multiple Draws from the draws ring buffer."
              },
              "getNewestDraw()": {
                "notice": "Read newest Draw from draws ring buffer."
              },
              "getOldestDraw()": {
                "notice": "Read oldest Draw from draws ring buffer."
              },
              "pushDraw((uint256,uint32,uint64,uint64,uint32))": {
                "notice": "Push Draw onto draws ring buffer history."
              },
              "setDraw((uint256,uint32,uint64,uint64,uint32))": {
                "notice": "Set existing Draw in draws ring buffer with new parameters."
              }
            },
            "notice": "The DrawBuffer interface.",
            "version": 1
          }
        }
      },
      "contracts/interfaces/IDrawCalculator.sol": {
        "IDrawCalculator": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IDrawBuffer",
                  "name": "drawBuffer",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "prizeDistributionBuffer",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract PrizeDistributor",
                  "name": "prizeDistributor",
                  "type": "address"
                }
              ],
              "name": "PrizeDistributorSet",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "drawIds",
                  "type": "uint32[]"
                },
                {
                  "internalType": "bytes",
                  "name": "data",
                  "type": "bytes"
                }
              ],
              "name": "calculate",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                },
                {
                  "internalType": "bytes",
                  "name": "",
                  "type": "bytes"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getNormalizedBalancesForDrawIds",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeDistributionBuffer",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "calculate(address,uint32[],bytes)": {
                "params": {
                  "data": "The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.",
                  "drawIds": "drawId array for which to calculate prize amounts for.",
                  "user": "User for which to calculate prize amount."
                },
                "returns": {
                  "_0": "List of awardable prize amounts ordered by drawId."
                }
              },
              "getDrawBuffer()": {
                "returns": {
                  "_0": "IDrawBuffer"
                }
              },
              "getNormalizedBalancesForDrawIds(address,uint32[])": {
                "params": {
                  "drawIds": "The drawIds to consider",
                  "user": "The users address"
                },
                "returns": {
                  "_0": "Array of balances"
                }
              },
              "getPrizeDistributionBuffer()": {
                "returns": {
                  "_0": "IPrizeDistributionBuffer"
                }
              }
            },
            "title": "PoolTogether V4 IDrawCalculator",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "calculate(address,uint32[],bytes)": "aaca392e",
              "getDrawBuffer()": "4019f2d6",
              "getNormalizedBalancesForDrawIds(address,uint32[])": "8045fbcf",
              "getPrizeDistributionBuffer()": "bd97a252"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IDrawBuffer\",\"name\":\"drawBuffer\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"prizeDistributionBuffer\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract PrizeDistributor\",\"name\":\"prizeDistributor\",\"type\":\"address\"}],\"name\":\"PrizeDistributorSet\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"drawIds\",\"type\":\"uint32[]\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"calculate\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getNormalizedBalancesForDrawIds\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeDistributionBuffer\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"calculate(address,uint32[],bytes)\":{\"params\":{\"data\":\"The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\",\"drawIds\":\"drawId array for which to calculate prize amounts for.\",\"user\":\"User for which to calculate prize amount.\"},\"returns\":{\"_0\":\"List of awardable prize amounts ordered by drawId.\"}},\"getDrawBuffer()\":{\"returns\":{\"_0\":\"IDrawBuffer\"}},\"getNormalizedBalancesForDrawIds(address,uint32[])\":{\"params\":{\"drawIds\":\"The drawIds to consider\",\"user\":\"The users address\"},\"returns\":{\"_0\":\"Array of balances\"}},\"getPrizeDistributionBuffer()\":{\"returns\":{\"_0\":\"IPrizeDistributionBuffer\"}}},\"title\":\"PoolTogether V4 IDrawCalculator\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address,address)\":{\"notice\":\"Emitted when the contract is initialized\"},\"PrizeDistributorSet(address)\":{\"notice\":\"Emitted when the prizeDistributor is set/updated\"}},\"kind\":\"user\",\"methods\":{\"calculate(address,uint32[],bytes)\":{\"notice\":\"Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\"},\"getDrawBuffer()\":{\"notice\":\"Read global DrawBuffer variable.\"},\"getNormalizedBalancesForDrawIds(address,uint32[])\":{\"notice\":\"Returns a users balances expressed as a fraction of the total supply over time.\"},\"getPrizeDistributionBuffer()\":{\"notice\":\"Read global prizeDistributionBuffer variable.\"}},\"notice\":\"The DrawCalculator interface.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IDrawCalculator.sol\":\"IDrawCalculator\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Random Number Generator Interface\\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\n */\\ninterface RNGInterface {\\n  /**\\n   * @notice Emitted when a new request for a random number has been submitted\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param sender The indexed address of the sender of the request\\n   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /**\\n   * @notice Emitted when an existing request for a random number has been completed\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param randomNumber The random number produced by the 3rd-party service\\n   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /**\\n   * @notice Gets the last request id used by the RNG service\\n   * @return requestId The last request id used in the last request\\n   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /**\\n   * @notice Gets the Fee for making a Request against an RNG service\\n   * @return feeToken The address of the token that is used to pay fees\\n   * @return requestFee The fee required to be paid to make a request\\n   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /**\\n   * @notice Sends a request for a random number to the 3rd-party service\\n   * @dev Some services will complete the request immediately, others may have a time-delay\\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n   * @return requestId The ID of the request used to get the results of the RNG service\\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /**\\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\\n   * @dev For time-delayed requests, this function is used to check/confirm completion\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\\n   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /**\\n   * @notice Gets the random number produced by the 3rd-party service\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return randomNum The random number\\n   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"},\"contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionSource\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"license\":\"GPL-3.0\"},\"contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawIds to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valid drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "Deployed(address,address,address)": {
                "notice": "Emitted when the contract is initialized"
              },
              "PrizeDistributorSet(address)": {
                "notice": "Emitted when the prizeDistributor is set/updated"
              }
            },
            "kind": "user",
            "methods": {
              "calculate(address,uint32[],bytes)": {
                "notice": "Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor."
              },
              "getDrawBuffer()": {
                "notice": "Read global DrawBuffer variable."
              },
              "getNormalizedBalancesForDrawIds(address,uint32[])": {
                "notice": "Returns a users balances expressed as a fraction of the total supply over time."
              },
              "getPrizeDistributionBuffer()": {
                "notice": "Read global prizeDistributionBuffer variable."
              }
            },
            "notice": "The DrawCalculator interface.",
            "version": 1
          }
        }
      },
      "contracts/interfaces/IPrizeDistributionBuffer.sol": {
        "IPrizeDistributionBuffer": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "PrizeDistributionSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "getBufferCardinality",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getNewestPrizeDistribution",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                },
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getOldestPrizeDistribution",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                },
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "name": "getPrizeDistribution",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeDistributionCount",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32[]",
                  "name": "drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getPrizeDistributions",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "pushPrizeDistribution",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "draw",
                  "type": "tuple"
                }
              ],
              "name": "setPrizeDistribution",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "PrizeDistributionSet(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "params": {
                  "drawId": "Draw id",
                  "prizeDistribution": "IPrizeDistributionBuffer.PrizeDistribution"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "getBufferCardinality()": {
                "returns": {
                  "_0": "Ring buffer cardinality"
                }
              },
              "getNewestPrizeDistribution()": {
                "details": "Uses nextDrawIndex to calculate the most recently added PrizeDistribution.",
                "returns": {
                  "drawId": "drawId",
                  "prizeDistribution": "prizeDistribution"
                }
              },
              "getOldestPrizeDistribution()": {
                "details": "Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId",
                "returns": {
                  "drawId": "drawId",
                  "prizeDistribution": "prizeDistribution"
                }
              },
              "getPrizeDistribution(uint32)": {
                "params": {
                  "drawId": "drawId"
                },
                "returns": {
                  "_0": "prizeDistribution"
                }
              },
              "getPrizeDistributionCount()": {
                "details": "If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestPrizeDistribution index + 1.",
                "returns": {
                  "_0": "Number of PrizeDistributions stored in the prize distributions ring buffer."
                }
              },
              "getPrizeDistributions(uint32[])": {
                "params": {
                  "drawIds": "drawIds to get PrizeDistribution for"
                },
                "returns": {
                  "_0": "prizeDistributionList"
                }
              },
              "pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "details": "Only callable by the owner or manager",
                "params": {
                  "drawId": "Draw ID linked to PrizeDistribution parameters",
                  "prizeDistribution": "PrizeDistribution parameters struct"
                }
              },
              "setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "details": "Retroactively updates an existing PrizeDistribution and should be thought of as a \"safety\" fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update the invalid parameters with correct parameters.",
                "returns": {
                  "_0": "drawId"
                }
              }
            },
            "title": "IPrizeDistributionBuffer",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "getBufferCardinality()": "caeef7ec",
              "getNewestPrizeDistribution()": "24c21446",
              "getOldestPrizeDistribution()": "2439093a",
              "getPrizeDistribution(uint32)": "3cd8e2d5",
              "getPrizeDistributionCount()": "21e98ad9",
              "getPrizeDistributions(uint32[])": "d30a5daf",
              "pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "1124e1dc",
              "setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "ce336ce9"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"indexed\":false,\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"PrizeDistributionSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"getBufferCardinality\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNewestPrizeDistribution\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getOldestPrizeDistribution\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"name\":\"getPrizeDistribution\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeDistributionCount\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32[]\",\"name\":\"drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getPrizeDistributions\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"pushPrizeDistribution\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"draw\",\"type\":\"tuple\"}],\"name\":\"setPrizeDistribution\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"PrizeDistributionSet(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"params\":{\"drawId\":\"Draw id\",\"prizeDistribution\":\"IPrizeDistributionBuffer.PrizeDistribution\"}}},\"kind\":\"dev\",\"methods\":{\"getBufferCardinality()\":{\"returns\":{\"_0\":\"Ring buffer cardinality\"}},\"getNewestPrizeDistribution()\":{\"details\":\"Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\",\"returns\":{\"drawId\":\"drawId\",\"prizeDistribution\":\"prizeDistribution\"}},\"getOldestPrizeDistribution()\":{\"details\":\"Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\",\"returns\":{\"drawId\":\"drawId\",\"prizeDistribution\":\"prizeDistribution\"}},\"getPrizeDistribution(uint32)\":{\"params\":{\"drawId\":\"drawId\"},\"returns\":{\"_0\":\"prizeDistribution\"}},\"getPrizeDistributionCount()\":{\"details\":\"If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestPrizeDistribution index + 1.\",\"returns\":{\"_0\":\"Number of PrizeDistributions stored in the prize distributions ring buffer.\"}},\"getPrizeDistributions(uint32[])\":{\"params\":{\"drawIds\":\"drawIds to get PrizeDistribution for\"},\"returns\":{\"_0\":\"prizeDistributionList\"}},\"pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"details\":\"Only callable by the owner or manager\",\"params\":{\"drawId\":\"Draw ID linked to PrizeDistribution parameters\",\"prizeDistribution\":\"PrizeDistribution parameters struct\"}},\"setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"details\":\"Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\" fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update the invalid parameters with correct parameters.\",\"returns\":{\"_0\":\"drawId\"}}},\"title\":\"IPrizeDistributionBuffer\",\"version\":1},\"userdoc\":{\"events\":{\"PrizeDistributionSet(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Emit when PrizeDistribution is set.\"}},\"kind\":\"user\",\"methods\":{\"getBufferCardinality()\":{\"notice\":\"Read a ring buffer cardinality\"},\"getNewestPrizeDistribution()\":{\"notice\":\"Read newest PrizeDistribution from prize distributions ring buffer.\"},\"getOldestPrizeDistribution()\":{\"notice\":\"Read oldest PrizeDistribution from prize distributions ring buffer.\"},\"getPrizeDistribution(uint32)\":{\"notice\":\"Gets the PrizeDistributionBuffer for a drawId\"},\"getPrizeDistributionCount()\":{\"notice\":\"Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\"},\"getPrizeDistributions(uint32[])\":{\"notice\":\"Gets PrizeDistribution list from array of drawIds\"},\"pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Adds new PrizeDistribution record to ring buffer storage.\"},\"setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\"}},\"notice\":\"The PrizeDistributionBuffer interface.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IPrizeDistributionBuffer.sol\":\"IPrizeDistributionBuffer\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "PrizeDistributionSet(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Emit when PrizeDistribution is set."
              }
            },
            "kind": "user",
            "methods": {
              "getBufferCardinality()": {
                "notice": "Read a ring buffer cardinality"
              },
              "getNewestPrizeDistribution()": {
                "notice": "Read newest PrizeDistribution from prize distributions ring buffer."
              },
              "getOldestPrizeDistribution()": {
                "notice": "Read oldest PrizeDistribution from prize distributions ring buffer."
              },
              "getPrizeDistribution(uint32)": {
                "notice": "Gets the PrizeDistributionBuffer for a drawId"
              },
              "getPrizeDistributionCount()": {
                "notice": "Gets the number of PrizeDistributions stored in the prize distributions ring buffer."
              },
              "getPrizeDistributions(uint32[])": {
                "notice": "Gets PrizeDistribution list from array of drawIds"
              },
              "pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Adds new PrizeDistribution record to ring buffer storage."
              },
              "setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage."
              }
            },
            "notice": "The PrizeDistributionBuffer interface.",
            "version": 1
          }
        }
      },
      "contracts/interfaces/IPrizeDistributionSource.sol": {
        "IPrizeDistributionSource": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "uint32[]",
                  "name": "drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getPrizeDistributions",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "getPrizeDistributions(uint32[])": {
                "params": {
                  "drawIds": "drawIds to get PrizeDistribution for"
                },
                "returns": {
                  "_0": "prizeDistributionList"
                }
              }
            },
            "title": "IPrizeDistributionSource",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "getPrizeDistributions(uint32[])": "d30a5daf"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint32[]\",\"name\":\"drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getPrizeDistributions\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"getPrizeDistributions(uint32[])\":{\"params\":{\"drawIds\":\"drawIds to get PrizeDistribution for\"},\"returns\":{\"_0\":\"prizeDistributionList\"}}},\"title\":\"IPrizeDistributionSource\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"getPrizeDistributions(uint32[])\":{\"notice\":\"Gets PrizeDistribution list from array of drawIds\"}},\"notice\":\"The PrizeDistributionSource interface.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IPrizeDistributionSource.sol\":\"IPrizeDistributionSource\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "getPrizeDistributions(uint32[])": {
                "notice": "Gets PrizeDistribution list from array of drawIds"
              }
            },
            "notice": "The PrizeDistributionSource interface.",
            "version": 1
          }
        }
      },
      "contracts/interfaces/IPrizeDistributor.sol": {
        "IPrizeDistributor": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "payout",
                  "type": "uint256"
                }
              ],
              "name": "ClaimedDraw",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IDrawCalculator",
                  "name": "calculator",
                  "type": "address"
                }
              ],
              "name": "DrawCalculatorSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IERC20",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "ERC20Withdrawn",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IERC20",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "TokenSet",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "drawIds",
                  "type": "uint32[]"
                },
                {
                  "internalType": "bytes",
                  "name": "data",
                  "type": "bytes"
                }
              ],
              "name": "claim",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawCalculator",
              "outputs": [
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "name": "getDrawPayoutBalanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "newCalculator",
                  "type": "address"
                }
              ],
              "name": "setDrawCalculator",
              "outputs": [
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "token",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawERC20",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "ClaimedDraw(address,uint32,uint256)": {
                "params": {
                  "drawId": "Draw id that was paid out",
                  "payout": "Payout for draw",
                  "user": "User address receiving draw claim payouts"
                }
              },
              "DrawCalculatorSet(address)": {
                "params": {
                  "calculator": "DrawCalculator address"
                }
              },
              "ERC20Withdrawn(address,address,uint256)": {
                "params": {
                  "amount": "Amount of tokens transferred.",
                  "to": "Address that received funds.",
                  "token": "ERC20 token transferred."
                }
              },
              "TokenSet(address)": {
                "params": {
                  "token": "Token address"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "claim(address,uint32[],bytes)": {
                "details": "The claim function is public and any wallet may execute claim on behalf of another user. Prizes are always paid out to the designated user account and not the caller (msg.sender). Claiming prizes is not limited to a single transaction. Reclaiming can be executed subsequentially if an \"optimal\" prize was not included in previous claim pick indices. The payout difference for the new claim is calculated during the award process and transfered to user.",
                "params": {
                  "data": "The data to pass to the draw calculator",
                  "drawIds": "Draw IDs from global DrawBuffer reference",
                  "user": "Address of user to claim awards for. Does NOT need to be msg.sender"
                },
                "returns": {
                  "_0": "Total claim payout. May include calcuations from multiple draws."
                }
              },
              "getDrawCalculator()": {
                "returns": {
                  "_0": "IDrawCalculator"
                }
              },
              "getDrawPayoutBalanceOf(address,uint32)": {
                "params": {
                  "drawId": "Draw ID",
                  "user": "User address"
                }
              },
              "getToken()": {
                "returns": {
                  "_0": "IERC20"
                }
              },
              "setDrawCalculator(address)": {
                "params": {
                  "newCalculator": "DrawCalculator address"
                },
                "returns": {
                  "_0": "New DrawCalculator address"
                }
              },
              "withdrawERC20(address,address,uint256)": {
                "details": "Only callable by contract owner.",
                "params": {
                  "amount": "Amount of tokens to transfer.",
                  "to": "Recipient of the tokens.",
                  "token": "ERC20 token to transfer."
                },
                "returns": {
                  "_0": "true if operation is successful."
                }
              }
            },
            "title": "IPrizeDistributor",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "claim(address,uint32[],bytes)": "bb7d4e2d",
              "getDrawCalculator()": "2d680cfa",
              "getDrawPayoutBalanceOf(address,uint32)": "b7f892d1",
              "getToken()": "21df0da7",
              "setDrawCalculator(address)": "454a8140",
              "withdrawERC20(address,address,uint256)": "44004cc1"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"ClaimedDraw\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IDrawCalculator\",\"name\":\"calculator\",\"type\":\"address\"}],\"name\":\"DrawCalculatorSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"ERC20Withdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"TokenSet\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"drawIds\",\"type\":\"uint32[]\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"claim\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawCalculator\",\"outputs\":[{\"internalType\":\"contract IDrawCalculator\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"name\":\"getDrawPayoutBalanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IDrawCalculator\",\"name\":\"newCalculator\",\"type\":\"address\"}],\"name\":\"setDrawCalculator\",\"outputs\":[{\"internalType\":\"contract IDrawCalculator\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawERC20\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"ClaimedDraw(address,uint32,uint256)\":{\"params\":{\"drawId\":\"Draw id that was paid out\",\"payout\":\"Payout for draw\",\"user\":\"User address receiving draw claim payouts\"}},\"DrawCalculatorSet(address)\":{\"params\":{\"calculator\":\"DrawCalculator address\"}},\"ERC20Withdrawn(address,address,uint256)\":{\"params\":{\"amount\":\"Amount of tokens transferred.\",\"to\":\"Address that received funds.\",\"token\":\"ERC20 token transferred.\"}},\"TokenSet(address)\":{\"params\":{\"token\":\"Token address\"}}},\"kind\":\"dev\",\"methods\":{\"claim(address,uint32[],bytes)\":{\"details\":\"The claim function is public and any wallet may execute claim on behalf of another user. Prizes are always paid out to the designated user account and not the caller (msg.sender). Claiming prizes is not limited to a single transaction. Reclaiming can be executed subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The payout difference for the new claim is calculated during the award process and transfered to user.\",\"params\":{\"data\":\"The data to pass to the draw calculator\",\"drawIds\":\"Draw IDs from global DrawBuffer reference\",\"user\":\"Address of user to claim awards for. Does NOT need to be msg.sender\"},\"returns\":{\"_0\":\"Total claim payout. May include calcuations from multiple draws.\"}},\"getDrawCalculator()\":{\"returns\":{\"_0\":\"IDrawCalculator\"}},\"getDrawPayoutBalanceOf(address,uint32)\":{\"params\":{\"drawId\":\"Draw ID\",\"user\":\"User address\"}},\"getToken()\":{\"returns\":{\"_0\":\"IERC20\"}},\"setDrawCalculator(address)\":{\"params\":{\"newCalculator\":\"DrawCalculator address\"},\"returns\":{\"_0\":\"New DrawCalculator address\"}},\"withdrawERC20(address,address,uint256)\":{\"details\":\"Only callable by contract owner.\",\"params\":{\"amount\":\"Amount of tokens to transfer.\",\"to\":\"Recipient of the tokens.\",\"token\":\"ERC20 token to transfer.\"},\"returns\":{\"_0\":\"true if operation is successful.\"}}},\"title\":\"IPrizeDistributor\",\"version\":1},\"userdoc\":{\"events\":{\"ClaimedDraw(address,uint32,uint256)\":{\"notice\":\"Emit when user has claimed token from the PrizeDistributor.\"},\"DrawCalculatorSet(address)\":{\"notice\":\"Emit when DrawCalculator is set.\"},\"ERC20Withdrawn(address,address,uint256)\":{\"notice\":\"Emit when ERC20 tokens are withdrawn.\"},\"TokenSet(address)\":{\"notice\":\"Emit when Token is set.\"}},\"kind\":\"user\",\"methods\":{\"claim(address,uint32[],bytes)\":{\"notice\":\"Claim prize payout(s) by submitting valid drawId(s) and winning pick indice(s). The user address is used as the \\\"seed\\\" phrase to generate random numbers.\"},\"getDrawCalculator()\":{\"notice\":\"Read global DrawCalculator address.\"},\"getDrawPayoutBalanceOf(address,uint32)\":{\"notice\":\"Get the amount that a user has already been paid out for a draw\"},\"getToken()\":{\"notice\":\"Read global Ticket address.\"},\"setDrawCalculator(address)\":{\"notice\":\"Sets DrawCalculator reference contract.\"},\"withdrawERC20(address,address,uint256)\":{\"notice\":\"Transfer ERC20 tokens out of contract to recipient address.\"}},\"notice\":\"The PrizeDistributor interface.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IPrizeDistributor.sol\":\"IPrizeDistributor\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Random Number Generator Interface\\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\n */\\ninterface RNGInterface {\\n  /**\\n   * @notice Emitted when a new request for a random number has been submitted\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param sender The indexed address of the sender of the request\\n   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /**\\n   * @notice Emitted when an existing request for a random number has been completed\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param randomNumber The random number produced by the 3rd-party service\\n   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /**\\n   * @notice Gets the last request id used by the RNG service\\n   * @return requestId The last request id used in the last request\\n   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /**\\n   * @notice Gets the Fee for making a Request against an RNG service\\n   * @return feeToken The address of the token that is used to pay fees\\n   * @return requestFee The fee required to be paid to make a request\\n   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /**\\n   * @notice Sends a request for a random number to the 3rd-party service\\n   * @dev Some services will complete the request immediately, others may have a time-delay\\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n   * @return requestId The ID of the request used to get the results of the RNG service\\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /**\\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\\n   * @dev For time-delayed requests, this function is used to check/confirm completion\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\\n   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /**\\n   * @notice Gets the random number produced by the 3rd-party service\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return randomNum The random number\\n   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"},\"contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionSource\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"license\":\"GPL-3.0\"},\"contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawIds to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valid drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "ClaimedDraw(address,uint32,uint256)": {
                "notice": "Emit when user has claimed token from the PrizeDistributor."
              },
              "DrawCalculatorSet(address)": {
                "notice": "Emit when DrawCalculator is set."
              },
              "ERC20Withdrawn(address,address,uint256)": {
                "notice": "Emit when ERC20 tokens are withdrawn."
              },
              "TokenSet(address)": {
                "notice": "Emit when Token is set."
              }
            },
            "kind": "user",
            "methods": {
              "claim(address,uint32[],bytes)": {
                "notice": "Claim prize payout(s) by submitting valid drawId(s) and winning pick indice(s). The user address is used as the \"seed\" phrase to generate random numbers."
              },
              "getDrawCalculator()": {
                "notice": "Read global DrawCalculator address."
              },
              "getDrawPayoutBalanceOf(address,uint32)": {
                "notice": "Get the amount that a user has already been paid out for a draw"
              },
              "getToken()": {
                "notice": "Read global Ticket address."
              },
              "setDrawCalculator(address)": {
                "notice": "Sets DrawCalculator reference contract."
              },
              "withdrawERC20(address,address,uint256)": {
                "notice": "Transfer ERC20 tokens out of contract to recipient address."
              }
            },
            "notice": "The PrizeDistributor interface.",
            "version": 1
          }
        }
      },
      "contracts/interfaces/IPrizePool.sol": {
        "IPrizePool": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardCaptured",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Awarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardedExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256[]",
                  "name": "tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "AwardedExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "BalanceCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "ControlledTokenAdded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Deposited",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "bytes",
                  "name": "error",
                  "type": "bytes"
                }
              ],
              "name": "ErrorAwardingExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "LiquidityCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "PrizeStrategySet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                }
              ],
              "name": "TicketSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "TransferredExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "redeemed",
                  "type": "uint256"
                }
              ],
              "name": "Withdrawal",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "award",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "awardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "awardExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256[]",
                  "name": "tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "awardExternalERC721",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "balance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "externalToken",
                  "type": "address"
                }
              ],
              "name": "canAwardExternal",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "captureAwardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ICompLike",
                  "name": "compLike",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "compLikeDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "depositTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                }
              ],
              "name": "depositToAndDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getAccountedBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBalanceCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLiquidityCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeStrategy",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getTicket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "controlledToken",
                  "type": "address"
                }
              ],
              "name": "isControlled",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "setBalanceCap",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "setLiquidityCap",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "setPrizeStrategy",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                }
              ],
              "name": "setTicket",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawFrom",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "Awarded(address,address,uint256)": {
                "details": "Event emitted when interest is awarded to a winner"
              },
              "AwardedExternalERC20(address,address,uint256)": {
                "details": "Event emitted when external ERC20s are awarded to a winner"
              },
              "AwardedExternalERC721(address,address,uint256[])": {
                "details": "Event emitted when external ERC721s are awarded to a winner"
              },
              "BalanceCapSet(uint256)": {
                "details": "Event emitted when the Balance Cap is set"
              },
              "ControlledTokenAdded(address)": {
                "details": "Event emitted when controlled token is added"
              },
              "Deposited(address,address,address,uint256)": {
                "details": "Event emitted when assets are deposited"
              },
              "ErrorAwardingExternalERC721(bytes)": {
                "details": "Emitted when there was an error thrown awarding an External ERC721"
              },
              "LiquidityCapSet(uint256)": {
                "details": "Event emitted when the Liquidity Cap is set"
              },
              "PrizeStrategySet(address)": {
                "details": "Event emitted when the Prize Strategy is set"
              },
              "TicketSet(address)": {
                "details": "Event emitted when the Ticket is set"
              },
              "TransferredExternalERC20(address,address,uint256)": {
                "details": "Event emitted when external ERC20s are transferred out"
              },
              "Withdrawal(address,address,address,uint256,uint256)": {
                "details": "Event emitted when assets are withdrawn"
              }
            },
            "kind": "dev",
            "methods": {
              "award(address,uint256)": {
                "details": "The amount awarded must be less than the awardBalance()",
                "params": {
                  "amount": "The amount of assets to be awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardBalance()": {
                "details": "captureAwardBalance() should be called first",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "awardExternalERC20(address,address,uint256)": {
                "details": "Used to award any arbitrary tokens held by the Prize Pool",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardExternalERC721(address,address,uint256[])": {
                "details": "Used to award any arbitrary NFTs held by the Prize Pool",
                "params": {
                  "externalToken": "The address of the external NFT token being awarded",
                  "to": "The address of the winner that receives the award",
                  "tokenIds": "An array of NFT Token IDs to be transferred"
                }
              },
              "balance()": {
                "returns": {
                  "_0": "The underlying balance of assets"
                }
              },
              "canAwardExternal(address)": {
                "details": "Checks with the Prize Pool if a specific token type may be awarded as an external prize",
                "params": {
                  "externalToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token may be awarded, false otherwise"
                }
              },
              "captureAwardBalance()": {
                "details": "This function also captures the reserve fees.",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "compLikeDelegate(address,address)": {
                "params": {
                  "compLike": "The COMP-like token held by the prize pool that should be delegated",
                  "to": "The address to delegate to"
                }
              },
              "depositTo(address,uint256)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "depositToAndDelegate(address,uint256,address)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "delegate": "The address to delegate to for the caller",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "getAccountedBalance()": {
                "returns": {
                  "_0": "uint256 accountBalance"
                }
              },
              "isControlled(address)": {
                "details": "Checks if a specific token is controlled by the Prize Pool",
                "params": {
                  "controlledToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token is a controlled token, false otherwise"
                }
              },
              "setBalanceCap(uint256)": {
                "details": "If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.",
                "params": {
                  "balanceCap": "New balance cap."
                },
                "returns": {
                  "_0": "True if new balance cap has been successfully set."
                }
              },
              "setLiquidityCap(uint256)": {
                "params": {
                  "liquidityCap": "The new liquidity cap for the prize pool"
                }
              },
              "setPrizeStrategy(address)": {
                "params": {
                  "_prizeStrategy": "The new prize strategy."
                }
              },
              "setTicket(address)": {
                "params": {
                  "ticket": "Address of the ticket to set."
                },
                "returns": {
                  "_0": "True if ticket has been successfully set."
                }
              },
              "transferExternalERC20(address,address,uint256)": {
                "details": "Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "withdrawFrom(address,uint256)": {
                "params": {
                  "amount": "The amount of tokens to redeem for assets.",
                  "from": "The address to redeem tokens from."
                },
                "returns": {
                  "_0": "The actual amount withdrawn"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "award(address,uint256)": "5d8a776e",
              "awardBalance()": "630665b4",
              "awardExternalERC20(address,address,uint256)": "2b0ab144",
              "awardExternalERC721(address,address,uint256[])": "16960d55",
              "balance()": "b69ef8a8",
              "canAwardExternal(address)": "6a3fd4f9",
              "captureAwardBalance()": "e6d8a94b",
              "compLikeDelegate(address,address)": "2f7627e3",
              "depositTo(address,uint256)": "ffaad6a5",
              "depositToAndDelegate(address,uint256,address)": "d7a169eb",
              "getAccountedBalance()": "33e5761f",
              "getBalanceCap()": "08234319",
              "getLiquidityCap()": "b15a49c1",
              "getPrizeStrategy()": "d804abaf",
              "getTicket()": "c002c4d6",
              "getToken()": "21df0da7",
              "isControlled(address)": "78b3d327",
              "setBalanceCap(uint256)": "aec9c307",
              "setLiquidityCap(uint256)": "7b99adb1",
              "setPrizeStrategy(address)": "91ca480e",
              "setTicket(address)": "1c65c78b",
              "transferExternalERC20(address,address,uint256)": "13f55e39",
              "withdrawFrom(address,uint256)": "9470b0bd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardCaptured\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Awarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardedExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"AwardedExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"balanceCap\",\"type\":\"uint256\"}],\"name\":\"BalanceCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"ControlledTokenAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Deposited\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"error\",\"type\":\"bytes\"}],\"name\":\"ErrorAwardingExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidityCap\",\"type\":\"uint256\"}],\"name\":\"LiquidityCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"prizeStrategy\",\"type\":\"address\"}],\"name\":\"PrizeStrategySet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"}],\"name\":\"TicketSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"TransferredExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"redeemed\",\"type\":\"uint256\"}],\"name\":\"Withdrawal\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"award\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"awardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"awardExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"awardExternalERC721\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"balance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"externalToken\",\"type\":\"address\"}],\"name\":\"canAwardExternal\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"captureAwardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ICompLike\",\"name\":\"compLike\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"compLikeDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"depositTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"}],\"name\":\"depositToAndDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAccountedBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBalanceCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLiquidityCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeStrategy\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getTicket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"controlledToken\",\"type\":\"address\"}],\"name\":\"isControlled\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balanceCap\",\"type\":\"uint256\"}],\"name\":\"setBalanceCap\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"liquidityCap\",\"type\":\"uint256\"}],\"name\":\"setLiquidityCap\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_prizeStrategy\",\"type\":\"address\"}],\"name\":\"setPrizeStrategy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"}],\"name\":\"setTicket\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFrom\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Awarded(address,address,uint256)\":{\"details\":\"Event emitted when interest is awarded to a winner\"},\"AwardedExternalERC20(address,address,uint256)\":{\"details\":\"Event emitted when external ERC20s are awarded to a winner\"},\"AwardedExternalERC721(address,address,uint256[])\":{\"details\":\"Event emitted when external ERC721s are awarded to a winner\"},\"BalanceCapSet(uint256)\":{\"details\":\"Event emitted when the Balance Cap is set\"},\"ControlledTokenAdded(address)\":{\"details\":\"Event emitted when controlled token is added\"},\"Deposited(address,address,address,uint256)\":{\"details\":\"Event emitted when assets are deposited\"},\"ErrorAwardingExternalERC721(bytes)\":{\"details\":\"Emitted when there was an error thrown awarding an External ERC721\"},\"LiquidityCapSet(uint256)\":{\"details\":\"Event emitted when the Liquidity Cap is set\"},\"PrizeStrategySet(address)\":{\"details\":\"Event emitted when the Prize Strategy is set\"},\"TicketSet(address)\":{\"details\":\"Event emitted when the Ticket is set\"},\"TransferredExternalERC20(address,address,uint256)\":{\"details\":\"Event emitted when external ERC20s are transferred out\"},\"Withdrawal(address,address,address,uint256,uint256)\":{\"details\":\"Event emitted when assets are withdrawn\"}},\"kind\":\"dev\",\"methods\":{\"award(address,uint256)\":{\"details\":\"The amount awarded must be less than the awardBalance()\",\"params\":{\"amount\":\"The amount of assets to be awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardBalance()\":{\"details\":\"captureAwardBalance() should be called first\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"awardExternalERC20(address,address,uint256)\":{\"details\":\"Used to award any arbitrary tokens held by the Prize Pool\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardExternalERC721(address,address,uint256[])\":{\"details\":\"Used to award any arbitrary NFTs held by the Prize Pool\",\"params\":{\"externalToken\":\"The address of the external NFT token being awarded\",\"to\":\"The address of the winner that receives the award\",\"tokenIds\":\"An array of NFT Token IDs to be transferred\"}},\"balance()\":{\"returns\":{\"_0\":\"The underlying balance of assets\"}},\"canAwardExternal(address)\":{\"details\":\"Checks with the Prize Pool if a specific token type may be awarded as an external prize\",\"params\":{\"externalToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token may be awarded, false otherwise\"}},\"captureAwardBalance()\":{\"details\":\"This function also captures the reserve fees.\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"compLikeDelegate(address,address)\":{\"params\":{\"compLike\":\"The COMP-like token held by the prize pool that should be delegated\",\"to\":\"The address to delegate to\"}},\"depositTo(address,uint256)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"to\":\"The address receiving the newly minted tokens\"}},\"depositToAndDelegate(address,uint256,address)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"delegate\":\"The address to delegate to for the caller\",\"to\":\"The address receiving the newly minted tokens\"}},\"getAccountedBalance()\":{\"returns\":{\"_0\":\"uint256 accountBalance\"}},\"isControlled(address)\":{\"details\":\"Checks if a specific token is controlled by the Prize Pool\",\"params\":{\"controlledToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token is a controlled token, false otherwise\"}},\"setBalanceCap(uint256)\":{\"details\":\"If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.\",\"params\":{\"balanceCap\":\"New balance cap.\"},\"returns\":{\"_0\":\"True if new balance cap has been successfully set.\"}},\"setLiquidityCap(uint256)\":{\"params\":{\"liquidityCap\":\"The new liquidity cap for the prize pool\"}},\"setPrizeStrategy(address)\":{\"params\":{\"_prizeStrategy\":\"The new prize strategy.\"}},\"setTicket(address)\":{\"params\":{\"ticket\":\"Address of the ticket to set.\"},\"returns\":{\"_0\":\"True if ticket has been successfully set.\"}},\"transferExternalERC20(address,address,uint256)\":{\"details\":\"Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"withdrawFrom(address,uint256)\":{\"params\":{\"amount\":\"The amount of tokens to redeem for assets.\",\"from\":\"The address to redeem tokens from.\"},\"returns\":{\"_0\":\"The actual amount withdrawn\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"award(address,uint256)\":{\"notice\":\"Called by the prize strategy to award prizes.\"},\"awardBalance()\":{\"notice\":\"Returns the balance that is available to award.\"},\"awardExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to award external ERC20 prizes\"},\"awardExternalERC721(address,address,uint256[])\":{\"notice\":\"Called by the prize strategy to award external ERC721 prizes\"},\"captureAwardBalance()\":{\"notice\":\"Captures any available interest as award balance.\"},\"compLikeDelegate(address,address)\":{\"notice\":\"Delegate the votes for a Compound COMP-like token held by the prize pool\"},\"depositTo(address,uint256)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens\"},\"depositToAndDelegate(address,uint256,address)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller.\"},\"getAccountedBalance()\":{\"notice\":\"Read internal Ticket accounted balance.\"},\"getBalanceCap()\":{\"notice\":\"Read internal balanceCap variable\"},\"getLiquidityCap()\":{\"notice\":\"Read internal liquidityCap variable\"},\"getPrizeStrategy()\":{\"notice\":\"Read prizeStrategy variable\"},\"getTicket()\":{\"notice\":\"Read ticket variable\"},\"getToken()\":{\"notice\":\"Read token variable\"},\"setBalanceCap(uint256)\":{\"notice\":\"Allows the owner to set a balance cap per `token` for the pool.\"},\"setLiquidityCap(uint256)\":{\"notice\":\"Allows the Governor to set a cap on the amount of liquidity that he pool can hold\"},\"setPrizeStrategy(address)\":{\"notice\":\"Sets the prize strategy of the prize pool.  Only callable by the owner.\"},\"setTicket(address)\":{\"notice\":\"Set prize pool ticket.\"},\"transferExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to transfer out external ERC20 tokens\"},\"withdrawFrom(address,uint256)\":{\"notice\":\"Withdraw assets from the Prize Pool instantly.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IPrizePool.sol\":\"IPrizePool\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "award(address,uint256)": {
                "notice": "Called by the prize strategy to award prizes."
              },
              "awardBalance()": {
                "notice": "Returns the balance that is available to award."
              },
              "awardExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to award external ERC20 prizes"
              },
              "awardExternalERC721(address,address,uint256[])": {
                "notice": "Called by the prize strategy to award external ERC721 prizes"
              },
              "captureAwardBalance()": {
                "notice": "Captures any available interest as award balance."
              },
              "compLikeDelegate(address,address)": {
                "notice": "Delegate the votes for a Compound COMP-like token held by the prize pool"
              },
              "depositTo(address,uint256)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens"
              },
              "depositToAndDelegate(address,uint256,address)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller."
              },
              "getAccountedBalance()": {
                "notice": "Read internal Ticket accounted balance."
              },
              "getBalanceCap()": {
                "notice": "Read internal balanceCap variable"
              },
              "getLiquidityCap()": {
                "notice": "Read internal liquidityCap variable"
              },
              "getPrizeStrategy()": {
                "notice": "Read prizeStrategy variable"
              },
              "getTicket()": {
                "notice": "Read ticket variable"
              },
              "getToken()": {
                "notice": "Read token variable"
              },
              "setBalanceCap(uint256)": {
                "notice": "Allows the owner to set a balance cap per `token` for the pool."
              },
              "setLiquidityCap(uint256)": {
                "notice": "Allows the Governor to set a cap on the amount of liquidity that he pool can hold"
              },
              "setPrizeStrategy(address)": {
                "notice": "Sets the prize strategy of the prize pool.  Only callable by the owner."
              },
              "setTicket(address)": {
                "notice": "Set prize pool ticket."
              },
              "transferExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to transfer out external ERC20 tokens"
              },
              "withdrawFrom(address,uint256)": {
                "notice": "Withdraw assets from the Prize Pool instantly."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/interfaces/IPrizeSplit.sol": {
        "IPrizeSplit": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "prizeAwarded",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "contract IControlledToken",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "PrizeSplitAwarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "target",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitRemoved",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "target",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint16",
                  "name": "percentage",
                  "type": "uint16"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "getPrizePool",
              "outputs": [
                {
                  "internalType": "contract IPrizePool",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "prizeSplitIndex",
                  "type": "uint256"
                }
              ],
              "name": "getPrizeSplit",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeSplits",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "prizeStrategySplit",
                  "type": "tuple"
                },
                {
                  "internalType": "uint8",
                  "name": "prizeSplitIndex",
                  "type": "uint8"
                }
              ],
              "name": "setPrizeSplit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "newPrizeSplits",
                  "type": "tuple[]"
                }
              ],
              "name": "setPrizeSplits",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "PrizeSplitAwarded(address,uint256,address)": {
                "params": {
                  "prizeAwarded": "Awarded prize amount",
                  "token": "Token address",
                  "user": "User address being awarded"
                }
              },
              "PrizeSplitRemoved(uint256)": {
                "details": "Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.",
                "params": {
                  "target": "Index of a previously active prize split config"
                }
              },
              "PrizeSplitSet(address,uint16,uint256)": {
                "details": "Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.",
                "params": {
                  "index": "Index of prize split in the prizeSplts array",
                  "percentage": "Percentage of prize split. Must be between 0 and 1000 for single decimal precision",
                  "target": "Address of prize split recipient"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "getPrizePool()": {
                "returns": {
                  "_0": "IPrizePool"
                }
              },
              "getPrizeSplit(uint256)": {
                "details": "Read PrizeSplitConfig struct from prizeSplits array.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig"
                },
                "returns": {
                  "_0": "PrizeSplitConfig Single prize split config"
                }
              },
              "getPrizeSplits()": {
                "details": "Read all PrizeSplitConfig structs stored in prizeSplits.",
                "returns": {
                  "_0": "Array of PrizeSplitConfig structs"
                }
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "details": "Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig to update",
                  "prizeStrategySplit": "PrizeSplitConfig config struct"
                }
              },
              "setPrizeSplits((address,uint16)[])": {
                "details": "Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.",
                "params": {
                  "newPrizeSplits": "Array of PrizeSplitConfig structs"
                }
              }
            },
            "title": "Abstract prize split contract for adding unique award distribution to static addresses.",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "getPrizePool()": "884bf67c",
              "getPrizeSplit(uint256)": "cf713d6e",
              "getPrizeSplits()": "cf1e3b59",
              "setPrizeSplit((address,uint16),uint8)": "056ea84f",
              "setPrizeSplits((address,uint16)[])": "063a2298"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"prizeAwarded\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"contract IControlledToken\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"PrizeSplitAwarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"target\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"getPrizePool\",\"outputs\":[{\"internalType\":\"contract IPrizePool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"prizeSplitIndex\",\"type\":\"uint256\"}],\"name\":\"getPrizeSplit\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeSplits\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"prizeStrategySplit\",\"type\":\"tuple\"},{\"internalType\":\"uint8\",\"name\":\"prizeSplitIndex\",\"type\":\"uint8\"}],\"name\":\"setPrizeSplit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"newPrizeSplits\",\"type\":\"tuple[]\"}],\"name\":\"setPrizeSplits\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"PrizeSplitAwarded(address,uint256,address)\":{\"params\":{\"prizeAwarded\":\"Awarded prize amount\",\"token\":\"Token address\",\"user\":\"User address being awarded\"}},\"PrizeSplitRemoved(uint256)\":{\"details\":\"Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.\",\"params\":{\"target\":\"Index of a previously active prize split config\"}},\"PrizeSplitSet(address,uint16,uint256)\":{\"details\":\"Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.\",\"params\":{\"index\":\"Index of prize split in the prizeSplts array\",\"percentage\":\"Percentage of prize split. Must be between 0 and 1000 for single decimal precision\",\"target\":\"Address of prize split recipient\"}}},\"kind\":\"dev\",\"methods\":{\"getPrizePool()\":{\"returns\":{\"_0\":\"IPrizePool\"}},\"getPrizeSplit(uint256)\":{\"details\":\"Read PrizeSplitConfig struct from prizeSplits array.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig\"},\"returns\":{\"_0\":\"PrizeSplitConfig Single prize split config\"}},\"getPrizeSplits()\":{\"details\":\"Read all PrizeSplitConfig structs stored in prizeSplits.\",\"returns\":{\"_0\":\"Array of PrizeSplitConfig structs\"}},\"setPrizeSplit((address,uint16),uint8)\":{\"details\":\"Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig to update\",\"prizeStrategySplit\":\"PrizeSplitConfig config struct\"}},\"setPrizeSplits((address,uint16)[])\":{\"details\":\"Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\",\"params\":{\"newPrizeSplits\":\"Array of PrizeSplitConfig structs\"}}},\"title\":\"Abstract prize split contract for adding unique award distribution to static addresses.\",\"version\":1},\"userdoc\":{\"events\":{\"PrizeSplitAwarded(address,uint256,address)\":{\"notice\":\"Emit when an individual prize split is awarded.\"},\"PrizeSplitRemoved(uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is removed.\"},\"PrizeSplitSet(address,uint16,uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is added or updated.\"}},\"kind\":\"user\",\"methods\":{\"getPrizePool()\":{\"notice\":\"Get PrizePool address\"},\"getPrizeSplit(uint256)\":{\"notice\":\"Read prize split config from active PrizeSplits.\"},\"getPrizeSplits()\":{\"notice\":\"Read all prize splits configs.\"},\"setPrizeSplit((address,uint16),uint8)\":{\"notice\":\"Updates a previously set prize split config.\"},\"setPrizeSplits((address,uint16)[])\":{\"notice\":\"Set and remove prize split(s) configs. Only callable by owner.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IPrizeSplit.sol\":\"IPrizeSplit\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeSplit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IControlledToken.sol\\\";\\nimport \\\"./IPrizePool.sol\\\";\\n\\n/**\\n * @title Abstract prize split contract for adding unique award distribution to static addresses.\\n * @author PoolTogether Inc Team\\n */\\ninterface IPrizeSplit {\\n    /**\\n     * @notice Emit when an individual prize split is awarded.\\n     * @param user          User address being awarded\\n     * @param prizeAwarded  Awarded prize amount\\n     * @param token         Token address\\n     */\\n    event PrizeSplitAwarded(\\n        address indexed user,\\n        uint256 prizeAwarded,\\n        IControlledToken indexed token\\n    );\\n\\n    /**\\n     * @notice The prize split configuration struct.\\n     * @dev    The prize split configuration struct used to award prize splits during distribution.\\n     * @param target     Address of recipient receiving the prize split distribution\\n     * @param percentage Percentage of prize split using a 0-1000 range for single decimal precision i.e. 125 = 12.5%\\n     */\\n    struct PrizeSplitConfig {\\n        address target;\\n        uint16 percentage;\\n    }\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is added or updated.\\n     * @dev    Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.\\n     * @param target     Address of prize split recipient\\n     * @param percentage Percentage of prize split. Must be between 0 and 1000 for single decimal precision\\n     * @param index      Index of prize split in the prizeSplts array\\n     */\\n    event PrizeSplitSet(address indexed target, uint16 percentage, uint256 index);\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is removed.\\n     * @dev    Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.\\n     * @param target Index of a previously active prize split config\\n     */\\n    event PrizeSplitRemoved(uint256 indexed target);\\n\\n    /**\\n     * @notice Read prize split config from active PrizeSplits.\\n     * @dev    Read PrizeSplitConfig struct from prizeSplits array.\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig\\n     * @return PrizeSplitConfig Single prize split config\\n     */\\n    function getPrizeSplit(uint256 prizeSplitIndex) external view returns (PrizeSplitConfig memory);\\n\\n    /**\\n     * @notice Read all prize splits configs.\\n     * @dev    Read all PrizeSplitConfig structs stored in prizeSplits.\\n     * @return Array of PrizeSplitConfig structs\\n     */\\n    function getPrizeSplits() external view returns (PrizeSplitConfig[] memory);\\n\\n    /**\\n     * @notice Get PrizePool address\\n     * @return IPrizePool\\n     */\\n    function getPrizePool() external view returns (IPrizePool);\\n\\n    /**\\n     * @notice Set and remove prize split(s) configs. Only callable by owner.\\n     * @dev Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\\n     * @param newPrizeSplits Array of PrizeSplitConfig structs\\n     */\\n    function setPrizeSplits(PrizeSplitConfig[] calldata newPrizeSplits) external;\\n\\n    /**\\n     * @notice Updates a previously set prize split config.\\n     * @dev Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\\n     * @param prizeStrategySplit PrizeSplitConfig config struct\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig to update\\n     */\\n    function setPrizeSplit(PrizeSplitConfig memory prizeStrategySplit, uint8 prizeSplitIndex)\\n        external;\\n}\\n\",\"keccak256\":\"0xf9946a5bbe45641a0f86674135eb56310b3a97f09e5665fd1c11bc213d42d2ac\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "PrizeSplitAwarded(address,uint256,address)": {
                "notice": "Emit when an individual prize split is awarded."
              },
              "PrizeSplitRemoved(uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is removed."
              },
              "PrizeSplitSet(address,uint16,uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is added or updated."
              }
            },
            "kind": "user",
            "methods": {
              "getPrizePool()": {
                "notice": "Get PrizePool address"
              },
              "getPrizeSplit(uint256)": {
                "notice": "Read prize split config from active PrizeSplits."
              },
              "getPrizeSplits()": {
                "notice": "Read all prize splits configs."
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "notice": "Updates a previously set prize split config."
              },
              "setPrizeSplits((address,uint16)[])": {
                "notice": "Set and remove prize split(s) configs. Only callable by owner."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/interfaces/IReserve.sol": {
        "IReserve": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "reserveAccumulated",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "withdrawAccumulated",
                  "type": "uint256"
                }
              ],
              "name": "Checkpoint",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Withdrawn",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "checkpoint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "startTimestamp",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "endTimestamp",
                  "type": "uint32"
                }
              ],
              "name": "getReserveAccumulatedBetween",
              "outputs": [
                {
                  "internalType": "uint224",
                  "name": "",
                  "type": "uint224"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "Checkpoint(uint256,uint256)": {
                "params": {
                  "reserveAccumulated": "Total depsosited",
                  "withdrawAccumulated": "Total withdrawn"
                }
              },
              "Withdrawn(address,uint256)": {
                "params": {
                  "amount": "Amount of tokens transfered.",
                  "recipient": "Address receiving funds"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "checkpoint()": {
                "details": "Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint."
              },
              "getReserveAccumulatedBetween(uint32,uint32)": {
                "details": "Search the ring buffer for two checkpoint observations and diffs accumulator amount.",
                "params": {
                  "endTimestamp": "Transfer amount",
                  "startTimestamp": "Account address"
                }
              },
              "getToken()": {
                "returns": {
                  "_0": "IERC20"
                }
              },
              "withdrawTo(address,uint256)": {
                "details": "Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.",
                "params": {
                  "amount": "Transfer amount",
                  "recipient": "Account address"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "checkpoint()": "c2c4c5c1",
              "getReserveAccumulatedBetween(uint32,uint32)": "af6a9400",
              "getToken()": "21df0da7",
              "withdrawTo(address,uint256)": "205c2878"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"reserveAccumulated\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"withdrawAccumulated\",\"type\":\"uint256\"}],\"name\":\"Checkpoint\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"checkpoint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"startTimestamp\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestamp\",\"type\":\"uint32\"}],\"name\":\"getReserveAccumulatedBetween\",\"outputs\":[{\"internalType\":\"uint224\",\"name\":\"\",\"type\":\"uint224\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Checkpoint(uint256,uint256)\":{\"params\":{\"reserveAccumulated\":\"Total depsosited\",\"withdrawAccumulated\":\"Total withdrawn\"}},\"Withdrawn(address,uint256)\":{\"params\":{\"amount\":\"Amount of tokens transfered.\",\"recipient\":\"Address receiving funds\"}}},\"kind\":\"dev\",\"methods\":{\"checkpoint()\":{\"details\":\"Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint.\"},\"getReserveAccumulatedBetween(uint32,uint32)\":{\"details\":\"Search the ring buffer for two checkpoint observations and diffs accumulator amount.\",\"params\":{\"endTimestamp\":\"Transfer amount\",\"startTimestamp\":\"Account address\"}},\"getToken()\":{\"returns\":{\"_0\":\"IERC20\"}},\"withdrawTo(address,uint256)\":{\"details\":\"Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\",\"params\":{\"amount\":\"Transfer amount\",\"recipient\":\"Account address\"}}},\"version\":1},\"userdoc\":{\"events\":{\"Checkpoint(uint256,uint256)\":{\"notice\":\"Emit when checkpoint is created.\"},\"Withdrawn(address,uint256)\":{\"notice\":\"Emit when the withdrawTo function has executed.\"}},\"kind\":\"user\",\"methods\":{\"checkpoint()\":{\"notice\":\"Create observation checkpoint in ring bufferr.\"},\"getReserveAccumulatedBetween(uint32,uint32)\":{\"notice\":\"Calculate token accumulation beween timestamp range.\"},\"getToken()\":{\"notice\":\"Read global token value.\"},\"withdrawTo(address,uint256)\":{\"notice\":\"Transfer Reserve token balance to recipient address.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IReserve.sol\":\"IReserve\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"contracts/interfaces/IReserve.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface IReserve {\\n    /**\\n     * @notice Emit when checkpoint is created.\\n     * @param reserveAccumulated  Total depsosited\\n     * @param withdrawAccumulated Total withdrawn\\n     */\\n\\n    event Checkpoint(uint256 reserveAccumulated, uint256 withdrawAccumulated);\\n    /**\\n     * @notice Emit when the withdrawTo function has executed.\\n     * @param recipient Address receiving funds\\n     * @param amount    Amount of tokens transfered.\\n     */\\n    event Withdrawn(address indexed recipient, uint256 amount);\\n\\n    /**\\n     * @notice Create observation checkpoint in ring bufferr.\\n     * @dev    Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint.\\n     */\\n    function checkpoint() external;\\n\\n    /**\\n     * @notice Read global token value.\\n     * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n     * @notice Calculate token accumulation beween timestamp range.\\n     * @dev    Search the ring buffer for two checkpoint observations and diffs accumulator amount.\\n     * @param startTimestamp Account address\\n     * @param endTimestamp   Transfer amount\\n     */\\n    function getReserveAccumulatedBetween(uint32 startTimestamp, uint32 endTimestamp)\\n        external\\n        returns (uint224);\\n\\n    /**\\n     * @notice Transfer Reserve token balance to recipient address.\\n     * @dev    Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\\n     * @param recipient Account address\\n     * @param amount    Transfer amount\\n     */\\n    function withdrawTo(address recipient, uint256 amount) external;\\n}\\n\",\"keccak256\":\"0x630c99a29c1df33cf2cf9492ea8640e875fa6cbb46c53a9d1ce935567589fef6\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "Checkpoint(uint256,uint256)": {
                "notice": "Emit when checkpoint is created."
              },
              "Withdrawn(address,uint256)": {
                "notice": "Emit when the withdrawTo function has executed."
              }
            },
            "kind": "user",
            "methods": {
              "checkpoint()": {
                "notice": "Create observation checkpoint in ring bufferr."
              },
              "getReserveAccumulatedBetween(uint32,uint32)": {
                "notice": "Calculate token accumulation beween timestamp range."
              },
              "getToken()": {
                "notice": "Read global token value."
              },
              "withdrawTo(address,uint256)": {
                "notice": "Transfer Reserve token balance to recipient address."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/interfaces/IStrategy.sol": {
        "IStrategy": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "totalPrizeCaptured",
                  "type": "uint256"
                }
              ],
              "name": "Distributed",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "distribute",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "Distributed(uint256)": {
                "params": {
                  "totalPrizeCaptured": "Total prize captured from the PrizePool"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "distribute()": {
                "details": "Permissionless function to initialize distribution of interst",
                "returns": {
                  "_0": "Prize captured from PrizePool"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "distribute()": "e4fc6b6d"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalPrizeCaptured\",\"type\":\"uint256\"}],\"name\":\"Distributed\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"distribute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Distributed(uint256)\":{\"params\":{\"totalPrizeCaptured\":\"Total prize captured from the PrizePool\"}}},\"kind\":\"dev\",\"methods\":{\"distribute()\":{\"details\":\"Permissionless function to initialize distribution of interst\",\"returns\":{\"_0\":\"Prize captured from PrizePool\"}}},\"version\":1},\"userdoc\":{\"events\":{\"Distributed(uint256)\":{\"notice\":\"Emit when a strategy captures award amount from PrizePool.\"}},\"kind\":\"user\",\"methods\":{\"distribute()\":{\"notice\":\"Capture the award balance and distribute to prize splits.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IStrategy.sol\":\"IStrategy\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"contracts/interfaces/IStrategy.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\ninterface IStrategy {\\n    /**\\n     * @notice Emit when a strategy captures award amount from PrizePool.\\n     * @param totalPrizeCaptured  Total prize captured from the PrizePool\\n     */\\n    event Distributed(uint256 totalPrizeCaptured);\\n\\n    /**\\n     * @notice Capture the award balance and distribute to prize splits.\\n     * @dev    Permissionless function to initialize distribution of interst\\n     * @return Prize captured from PrizePool\\n     */\\n    function distribute() external returns (uint256);\\n}\\n\",\"keccak256\":\"0x3c30617be7a8c311c320fe3b50c77c4270333ddcfe5b01822fcbe85e2db4623e\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "Distributed(uint256)": {
                "notice": "Emit when a strategy captures award amount from PrizePool."
              }
            },
            "kind": "user",
            "methods": {
              "distribute()": {
                "notice": "Capture the award balance and distribute to prize splits."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/interfaces/ITicket.sol": {
        "ITicket": {
          "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": "delegator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                }
              ],
              "name": "Delegated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct ObservationLib.Observation",
                  "name": "newTotalSupplyTwab",
                  "type": "tuple"
                }
              ],
              "name": "NewTotalSupplyTwab",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                },
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct ObservationLib.Observation",
                  "name": "newTwab",
                  "type": "tuple"
                }
              ],
              "name": "NewUserTwab",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "name",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "symbol",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "uint8",
                  "name": "decimals",
                  "type": "uint8"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "controller",
                  "type": "address"
                }
              ],
              "name": "TicketInitialized",
              "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": "controller",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurn",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurnFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                }
              ],
              "name": "controllerDelegateFor",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerMint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "delegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                }
              ],
              "name": "delegateOf",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "deadline",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "v",
                  "type": "uint8"
                },
                {
                  "internalType": "bytes32",
                  "name": "r",
                  "type": "bytes32"
                },
                {
                  "internalType": "bytes32",
                  "name": "s",
                  "type": "bytes32"
                }
              ],
              "name": "delegateWithSignature",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                }
              ],
              "name": "getAccountDetails",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint208",
                      "name": "balance",
                      "type": "uint208"
                    },
                    {
                      "internalType": "uint24",
                      "name": "nextTwabIndex",
                      "type": "uint24"
                    },
                    {
                      "internalType": "uint24",
                      "name": "cardinality",
                      "type": "uint24"
                    }
                  ],
                  "internalType": "struct TwabLib.AccountDetails",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint64",
                  "name": "startTime",
                  "type": "uint64"
                },
                {
                  "internalType": "uint64",
                  "name": "endTime",
                  "type": "uint64"
                }
              ],
              "name": "getAverageBalanceBetween",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint64[]",
                  "name": "startTimes",
                  "type": "uint64[]"
                },
                {
                  "internalType": "uint64[]",
                  "name": "endTimes",
                  "type": "uint64[]"
                }
              ],
              "name": "getAverageBalancesBetween",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64[]",
                  "name": "startTimes",
                  "type": "uint64[]"
                },
                {
                  "internalType": "uint64[]",
                  "name": "endTimes",
                  "type": "uint64[]"
                }
              ],
              "name": "getAverageTotalSuppliesBetween",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint64",
                  "name": "timestamp",
                  "type": "uint64"
                }
              ],
              "name": "getBalanceAt",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint64[]",
                  "name": "timestamps",
                  "type": "uint64[]"
                }
              ],
              "name": "getBalancesAt",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64[]",
                  "name": "timestamps",
                  "type": "uint64[]"
                }
              ],
              "name": "getTotalSuppliesAt",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "timestamp",
                  "type": "uint64"
                }
              ],
              "name": "getTotalSupplyAt",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint16",
                  "name": "index",
                  "type": "uint16"
                }
              ],
              "name": "getTwab",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct ObservationLib.Observation",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "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": {
            "events": {
              "Delegated(address,address)": {
                "params": {
                  "delegate": "Address of the delegate.",
                  "delegator": "Address of the delegator."
                }
              },
              "NewTotalSupplyTwab((uint224,uint32))": {
                "params": {
                  "newTotalSupplyTwab": "Updated TWAB of tickets total supply after a successful total supply TWAB recording."
                }
              },
              "NewUserTwab(address,(uint224,uint32))": {
                "params": {
                  "delegate": "The recipient of the ticket power (may be the same as the user).",
                  "newTwab": "Updated TWAB of a ticket holder after a successful TWAB recording."
                }
              },
              "TicketInitialized(string,string,uint8,address)": {
                "params": {
                  "controller": "Token controller address.",
                  "decimals": "Ticket decimals.",
                  "name": "Ticket name (eg: PoolTogether Dai Ticket (Compound)).",
                  "symbol": "Ticket symbol (eg: PcDAI)."
                }
              }
            },
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "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."
              },
              "approve(address,uint256)": {
                "details": "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."
              },
              "balanceOf(address)": {
                "details": "Returns the amount of tokens owned by `account`."
              },
              "controllerBurn(address,uint256)": {
                "details": "May be overridden to provide more granular control over burning",
                "params": {
                  "amount": "Amount of tokens to burn",
                  "user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerBurnFrom(address,address,uint256)": {
                "details": "May be overridden to provide more granular control over operator-burning",
                "params": {
                  "amount": "Amount of tokens to burn",
                  "operator": "Address of the operator performing the burn action via the controller contract",
                  "user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerDelegateFor(address,address)": {
                "params": {
                  "delegate": "The new delegate",
                  "user": "The user for whom to delegate"
                }
              },
              "controllerMint(address,uint256)": {
                "details": "May be overridden to provide more granular control over minting",
                "params": {
                  "amount": "Amount of tokens to mint",
                  "user": "Address of the receiver of the minted tokens"
                }
              },
              "delegate(address)": {
                "details": "Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the targetted sender and/or recipient address(s).To reset the delegate, pass the zero address (0x000.000) as `to` parameter.Current delegate address should be different from the new delegate address `to`.",
                "params": {
                  "to": "Recipient of delegated TWAB."
                }
              },
              "delegateOf(address)": {
                "details": "Address of the delegate will be the zero address if `user` has not delegated their tickets.",
                "params": {
                  "user": "Address of the delegator."
                },
                "returns": {
                  "_0": "Address of the delegate."
                }
              },
              "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": {
                "params": {
                  "deadline": "The timestamp by which this must be submitted",
                  "delegate": "The new delegate",
                  "r": "The r portion of the ECDSA sig",
                  "s": "The s portion of the ECDSA sig",
                  "user": "The user who is delegating",
                  "v": "The v portion of the ECDSA sig"
                }
              },
              "getAccountDetails(address)": {
                "params": {
                  "user": "The user for whom to fetch the TWAB context."
                },
                "returns": {
                  "_0": "The TWAB context, which includes { balance, nextTwabIndex, cardinality }"
                }
              },
              "getAverageBalanceBetween(address,uint64,uint64)": {
                "params": {
                  "endTime": "The end time of the time frame.",
                  "startTime": "The start time of the time frame.",
                  "user": "The user whose balance is checked."
                },
                "returns": {
                  "_0": "The average balance that the user held during the time frame."
                }
              },
              "getAverageBalancesBetween(address,uint64[],uint64[])": {
                "params": {
                  "endTimes": "The end time of the time frame.",
                  "startTimes": "The start time of the time frame.",
                  "user": "The user whose balance is checked."
                },
                "returns": {
                  "_0": "The average balance that the user held during the time frame."
                }
              },
              "getAverageTotalSuppliesBetween(uint64[],uint64[])": {
                "params": {
                  "endTimes": "Array of end times.",
                  "startTimes": "Array of start times."
                },
                "returns": {
                  "_0": "The average total supplies held during the time frame."
                }
              },
              "getBalanceAt(address,uint64)": {
                "params": {
                  "timestamp": "Timestamp at which we want to retrieve the TWAB balance.",
                  "user": "Address of the user whose TWAB is being fetched."
                },
                "returns": {
                  "_0": "The TWAB balance at the given timestamp."
                }
              },
              "getBalancesAt(address,uint64[])": {
                "params": {
                  "timestamps": "Timestamps range at which we want to retrieve the TWAB balances.",
                  "user": "Address of the user whose TWABs are being fetched."
                },
                "returns": {
                  "_0": "`user` TWAB balances."
                }
              },
              "getTotalSuppliesAt(uint64[])": {
                "params": {
                  "timestamps": "Timestamps range at which we want to retrieve the total supply TWAB balance."
                },
                "returns": {
                  "_0": "Total supply TWAB balances."
                }
              },
              "getTotalSupplyAt(uint64)": {
                "params": {
                  "timestamp": "Timestamp at which we want to retrieve the total supply TWAB balance."
                },
                "returns": {
                  "_0": "The total supply TWAB balance at the given timestamp."
                }
              },
              "getTwab(address,uint16)": {
                "params": {
                  "index": "The index of the TWAB to fetch.",
                  "user": "The user for whom to fetch the TWAB."
                },
                "returns": {
                  "_0": "The TWAB, which includes the twab amount and the timestamp."
                }
              },
              "totalSupply()": {
                "details": "Returns the amount of tokens in existence."
              },
              "transfer(address,uint256)": {
                "details": "Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              },
              "transferFrom(address,address,uint256)": {
                "details": "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."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "controller()": "f77c4791",
              "controllerBurn(address,uint256)": "90596dd1",
              "controllerBurnFrom(address,address,uint256)": "631b5dfb",
              "controllerDelegateFor(address,address)": "33e39b61",
              "controllerMint(address,uint256)": "5d7b0758",
              "delegate(address)": "5c19a95c",
              "delegateOf(address)": "8d22ea2a",
              "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": "919974dc",
              "getAccountDetails(address)": "2aceb534",
              "getAverageBalanceBetween(address,uint64,uint64)": "98b16f36",
              "getAverageBalancesBetween(address,uint64[],uint64[])": "68c7fd57",
              "getAverageTotalSuppliesBetween(uint64[],uint64[])": "8e6d536a",
              "getBalanceAt(address,uint64)": "9ecb0370",
              "getBalancesAt(address,uint64[])": "613ed6bd",
              "getTotalSuppliesAt(uint64[])": "85beb5f1",
              "getTotalSupplyAt(uint64)": "2d0dd686",
              "getTwab(address,uint16)": "36bb2a38",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"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\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"}],\"name\":\"Delegated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"newTotalSupplyTwab\",\"type\":\"tuple\"}],\"name\":\"NewTotalSupplyTwab\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"newTwab\",\"type\":\"tuple\"}],\"name\":\"NewUserTwab\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"decimals\",\"type\":\"uint8\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"controller\",\"type\":\"address\"}],\"name\":\"TicketInitialized\",\"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\":\"controller\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurnFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"}],\"name\":\"controllerDelegateFor\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"controllerMint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"delegateOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateWithSignature\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getAccountDetails\",\"outputs\":[{\"components\":[{\"internalType\":\"uint208\",\"name\":\"balance\",\"type\":\"uint208\"},{\"internalType\":\"uint24\",\"name\":\"nextTwabIndex\",\"type\":\"uint24\"},{\"internalType\":\"uint24\",\"name\":\"cardinality\",\"type\":\"uint24\"}],\"internalType\":\"struct TwabLib.AccountDetails\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"startTime\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"endTime\",\"type\":\"uint64\"}],\"name\":\"getAverageBalanceBetween\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint64[]\",\"name\":\"startTimes\",\"type\":\"uint64[]\"},{\"internalType\":\"uint64[]\",\"name\":\"endTimes\",\"type\":\"uint64[]\"}],\"name\":\"getAverageBalancesBetween\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64[]\",\"name\":\"startTimes\",\"type\":\"uint64[]\"},{\"internalType\":\"uint64[]\",\"name\":\"endTimes\",\"type\":\"uint64[]\"}],\"name\":\"getAverageTotalSuppliesBetween\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"}],\"name\":\"getBalanceAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint64[]\",\"name\":\"timestamps\",\"type\":\"uint64[]\"}],\"name\":\"getBalancesAt\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64[]\",\"name\":\"timestamps\",\"type\":\"uint64[]\"}],\"name\":\"getTotalSuppliesAt\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"}],\"name\":\"getTotalSupplyAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"index\",\"type\":\"uint16\"}],\"name\":\"getTwab\",\"outputs\":[{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"\",\"type\":\"tuple\"}],\"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\":{\"events\":{\"Delegated(address,address)\":{\"params\":{\"delegate\":\"Address of the delegate.\",\"delegator\":\"Address of the delegator.\"}},\"NewTotalSupplyTwab((uint224,uint32))\":{\"params\":{\"newTotalSupplyTwab\":\"Updated TWAB of tickets total supply after a successful total supply TWAB recording.\"}},\"NewUserTwab(address,(uint224,uint32))\":{\"params\":{\"delegate\":\"The recipient of the ticket power (may be the same as the user).\",\"newTwab\":\"Updated TWAB of a ticket holder after a successful TWAB recording.\"}},\"TicketInitialized(string,string,uint8,address)\":{\"params\":{\"controller\":\"Token controller address.\",\"decimals\":\"Ticket decimals.\",\"name\":\"Ticket name (eg: PoolTogether Dai Ticket (Compound)).\",\"symbol\":\"Ticket symbol (eg: PcDAI).\"}}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"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.\"},\"approve(address,uint256)\":{\"details\":\"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.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"controllerBurn(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over burning\",\"params\":{\"amount\":\"Amount of tokens to burn\",\"user\":\"Address of the holder account to burn tokens from\"}},\"controllerBurnFrom(address,address,uint256)\":{\"details\":\"May be overridden to provide more granular control over operator-burning\",\"params\":{\"amount\":\"Amount of tokens to burn\",\"operator\":\"Address of the operator performing the burn action via the controller contract\",\"user\":\"Address of the holder account to burn tokens from\"}},\"controllerDelegateFor(address,address)\":{\"params\":{\"delegate\":\"The new delegate\",\"user\":\"The user for whom to delegate\"}},\"controllerMint(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over minting\",\"params\":{\"amount\":\"Amount of tokens to mint\",\"user\":\"Address of the receiver of the minted tokens\"}},\"delegate(address)\":{\"details\":\"Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the targetted sender and/or recipient address(s).To reset the delegate, pass the zero address (0x000.000) as `to` parameter.Current delegate address should be different from the new delegate address `to`.\",\"params\":{\"to\":\"Recipient of delegated TWAB.\"}},\"delegateOf(address)\":{\"details\":\"Address of the delegate will be the zero address if `user` has not delegated their tickets.\",\"params\":{\"user\":\"Address of the delegator.\"},\"returns\":{\"_0\":\"Address of the delegate.\"}},\"delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)\":{\"params\":{\"deadline\":\"The timestamp by which this must be submitted\",\"delegate\":\"The new delegate\",\"r\":\"The r portion of the ECDSA sig\",\"s\":\"The s portion of the ECDSA sig\",\"user\":\"The user who is delegating\",\"v\":\"The v portion of the ECDSA sig\"}},\"getAccountDetails(address)\":{\"params\":{\"user\":\"The user for whom to fetch the TWAB context.\"},\"returns\":{\"_0\":\"The TWAB context, which includes { balance, nextTwabIndex, cardinality }\"}},\"getAverageBalanceBetween(address,uint64,uint64)\":{\"params\":{\"endTime\":\"The end time of the time frame.\",\"startTime\":\"The start time of the time frame.\",\"user\":\"The user whose balance is checked.\"},\"returns\":{\"_0\":\"The average balance that the user held during the time frame.\"}},\"getAverageBalancesBetween(address,uint64[],uint64[])\":{\"params\":{\"endTimes\":\"The end time of the time frame.\",\"startTimes\":\"The start time of the time frame.\",\"user\":\"The user whose balance is checked.\"},\"returns\":{\"_0\":\"The average balance that the user held during the time frame.\"}},\"getAverageTotalSuppliesBetween(uint64[],uint64[])\":{\"params\":{\"endTimes\":\"Array of end times.\",\"startTimes\":\"Array of start times.\"},\"returns\":{\"_0\":\"The average total supplies held during the time frame.\"}},\"getBalanceAt(address,uint64)\":{\"params\":{\"timestamp\":\"Timestamp at which we want to retrieve the TWAB balance.\",\"user\":\"Address of the user whose TWAB is being fetched.\"},\"returns\":{\"_0\":\"The TWAB balance at the given timestamp.\"}},\"getBalancesAt(address,uint64[])\":{\"params\":{\"timestamps\":\"Timestamps range at which we want to retrieve the TWAB balances.\",\"user\":\"Address of the user whose TWABs are being fetched.\"},\"returns\":{\"_0\":\"`user` TWAB balances.\"}},\"getTotalSuppliesAt(uint64[])\":{\"params\":{\"timestamps\":\"Timestamps range at which we want to retrieve the total supply TWAB balance.\"},\"returns\":{\"_0\":\"Total supply TWAB balances.\"}},\"getTotalSupplyAt(uint64)\":{\"params\":{\"timestamp\":\"Timestamp at which we want to retrieve the total supply TWAB balance.\"},\"returns\":{\"_0\":\"The total supply TWAB balance at the given timestamp.\"}},\"getTwab(address,uint16)\":{\"params\":{\"index\":\"The index of the TWAB to fetch.\",\"user\":\"The user for whom to fetch the TWAB.\"},\"returns\":{\"_0\":\"The TWAB, which includes the twab amount and the timestamp.\"}},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"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.\"}},\"version\":1},\"userdoc\":{\"events\":{\"Delegated(address,address)\":{\"notice\":\"Emitted when TWAB balance has been delegated to another user.\"},\"NewTotalSupplyTwab((uint224,uint32))\":{\"notice\":\"Emitted when a new total supply TWAB has been recorded.\"},\"NewUserTwab(address,(uint224,uint32))\":{\"notice\":\"Emitted when a new TWAB has been recorded.\"},\"TicketInitialized(string,string,uint8,address)\":{\"notice\":\"Emitted when ticket is initialized.\"}},\"kind\":\"user\",\"methods\":{\"controller()\":{\"notice\":\"Interface to the contract responsible for controlling mint/burn\"},\"controllerBurn(address,uint256)\":{\"notice\":\"Allows the controller to burn tokens from a user account\"},\"controllerBurnFrom(address,address,uint256)\":{\"notice\":\"Allows an operator via the controller to burn tokens on behalf of a user account\"},\"controllerDelegateFor(address,address)\":{\"notice\":\"Allows the controller to delegate on a users behalf.\"},\"controllerMint(address,uint256)\":{\"notice\":\"Allows the controller to mint tokens for a user account\"},\"delegate(address)\":{\"notice\":\"Delegate time-weighted average balances to an alternative address.\"},\"delegateOf(address)\":{\"notice\":\"Retrieves the address of the delegate to whom `user` has delegated their tickets.\"},\"delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)\":{\"notice\":\"Allows a user to delegate via signature\"},\"getAccountDetails(address)\":{\"notice\":\"Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\"},\"getAverageBalanceBetween(address,uint64,uint64)\":{\"notice\":\"Retrieves the average balance held by a user for a given time frame.\"},\"getAverageBalancesBetween(address,uint64[],uint64[])\":{\"notice\":\"Retrieves the average balances held by a user for a given time frame.\"},\"getAverageTotalSuppliesBetween(uint64[],uint64[])\":{\"notice\":\"Retrieves the average total supply balance for a set of given time frames.\"},\"getBalanceAt(address,uint64)\":{\"notice\":\"Retrieves `user` TWAB balance.\"},\"getBalancesAt(address,uint64[])\":{\"notice\":\"Retrieves `user` TWAB balances.\"},\"getTotalSuppliesAt(uint64[])\":{\"notice\":\"Retrieves the total supply TWAB balance between the given timestamps range.\"},\"getTotalSupplyAt(uint64)\":{\"notice\":\"Retrieves the total supply TWAB balance at the given timestamp.\"},\"getTwab(address,uint16)\":{\"notice\":\"Gets the TWAB at a specific index for a user.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/ITicket.sol\":\"ITicket\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "Delegated(address,address)": {
                "notice": "Emitted when TWAB balance has been delegated to another user."
              },
              "NewTotalSupplyTwab((uint224,uint32))": {
                "notice": "Emitted when a new total supply TWAB has been recorded."
              },
              "NewUserTwab(address,(uint224,uint32))": {
                "notice": "Emitted when a new TWAB has been recorded."
              },
              "TicketInitialized(string,string,uint8,address)": {
                "notice": "Emitted when ticket is initialized."
              }
            },
            "kind": "user",
            "methods": {
              "controller()": {
                "notice": "Interface to the contract responsible for controlling mint/burn"
              },
              "controllerBurn(address,uint256)": {
                "notice": "Allows the controller to burn tokens from a user account"
              },
              "controllerBurnFrom(address,address,uint256)": {
                "notice": "Allows an operator via the controller to burn tokens on behalf of a user account"
              },
              "controllerDelegateFor(address,address)": {
                "notice": "Allows the controller to delegate on a users behalf."
              },
              "controllerMint(address,uint256)": {
                "notice": "Allows the controller to mint tokens for a user account"
              },
              "delegate(address)": {
                "notice": "Delegate time-weighted average balances to an alternative address."
              },
              "delegateOf(address)": {
                "notice": "Retrieves the address of the delegate to whom `user` has delegated their tickets."
              },
              "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": {
                "notice": "Allows a user to delegate via signature"
              },
              "getAccountDetails(address)": {
                "notice": "Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality."
              },
              "getAverageBalanceBetween(address,uint64,uint64)": {
                "notice": "Retrieves the average balance held by a user for a given time frame."
              },
              "getAverageBalancesBetween(address,uint64[],uint64[])": {
                "notice": "Retrieves the average balances held by a user for a given time frame."
              },
              "getAverageTotalSuppliesBetween(uint64[],uint64[])": {
                "notice": "Retrieves the average total supply balance for a set of given time frames."
              },
              "getBalanceAt(address,uint64)": {
                "notice": "Retrieves `user` TWAB balance."
              },
              "getBalancesAt(address,uint64[])": {
                "notice": "Retrieves `user` TWAB balances."
              },
              "getTotalSuppliesAt(uint64[])": {
                "notice": "Retrieves the total supply TWAB balance between the given timestamps range."
              },
              "getTotalSupplyAt(uint64)": {
                "notice": "Retrieves the total supply TWAB balance at the given timestamp."
              },
              "getTwab(address,uint16)": {
                "notice": "Gets the TWAB at a specific index for a user."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/libraries/DrawRingBufferLib.sol": {
        "DrawRingBufferLib": {
          "abi": [],
          "devdoc": {
            "kind": "dev",
            "methods": {},
            "title": "Library for creating and managing a draw ring buffer.",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122018925849c223c819bf9dca21dbf09f0108751fd0b32d1389ae117e23a8f86e6f64736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 XOR SWAP3 PC 0x49 0xC2 0x23 0xC8 NOT 0xBF SWAP14 0xCA 0x21 0xDB CREATE SWAP16 ADD ADDMOD PUSH22 0x1FD0B32D1389AE117E23A8F86E6F64736F6C63430008 MOD STOP CALLER ",
              "sourceMap": "157:1949:52:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;157:1949:52;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122018925849c223c819bf9dca21dbf09f0108751fd0b32d1389ae117e23a8f86e6f64736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 XOR SWAP3 PC 0x49 0xC2 0x23 0xC8 NOT 0xBF SWAP14 0xCA 0x21 0xDB CREATE SWAP16 ADD ADDMOD PUSH22 0x1FD0B32D1389AE117E23A8F86E6F64736F6C63430008 MOD STOP CALLER ",
              "sourceMap": "157:1949:52:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "getIndex(struct DrawRingBufferLib.Buffer memory,uint32)": "infinite",
                "isInitialized(struct DrawRingBufferLib.Buffer memory)": "infinite",
                "push(struct DrawRingBufferLib.Buffer memory,uint32)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"title\":\"Library for creating and managing a draw ring buffer.\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/libraries/DrawRingBufferLib.sol\":\"DrawRingBufferLib\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "contracts/libraries/ExtendedSafeCastLib.sol": {
        "ExtendedSafeCastLib": {
          "abi": [],
          "devdoc": {
            "details": "Wrappers over Solidity's uintXX/intXX casting operators with added overflow checks. Downcasting from uint256/int256 in Solidity does not revert on overflow. This can easily result in undesired exploitation or bugs, since developers usually assume that overflows raise errors. `SafeCast` restores this intuition by reverting the transaction when such 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. Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing all math on `uint256` and `int256` and then downcasting.",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212206bcdd4ccb7dab704eec8947b4948164e274b39a1d3ea5e812ccc81f6a0992c7964736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH12 0xCDD4CCB7DAB704EEC8947B49 0x48 AND 0x4E 0x27 0x4B CODECOPY LOG1 0xD3 0xEA 0x5E DUP2 0x2C 0xCC DUP2 0xF6 LOG0 SWAP10 0x2C PUSH26 0x64736F6C63430008060033000000000000000000000000000000 ",
              "sourceMap": "771:1489:53:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;771:1489:53;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212206bcdd4ccb7dab704eec8947b4948164e274b39a1d3ea5e812ccc81f6a0992c7964736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH12 0xCDD4CCB7DAB704EEC8947B49 0x48 AND 0x4E 0x27 0x4B CODECOPY LOG1 0xD3 0xEA 0x5E DUP2 0x2C 0xCC DUP2 0xF6 LOG0 SWAP10 0x2C PUSH26 0x64736F6C63430008060033000000000000000000000000000000 ",
              "sourceMap": "771:1489:53:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "toUint104(uint256)": "infinite",
                "toUint208(uint256)": "infinite",
                "toUint224(uint256)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Wrappers over Solidity's uintXX/intXX casting operators with added overflow checks. Downcasting from uint256/int256 in Solidity does not revert on overflow. This can easily result in undesired exploitation or bugs, since developers usually assume that overflows raise errors. `SafeCast` restores this intuition by reverting the transaction when such 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. Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing all math on `uint256` and `int256` and then downcasting.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/libraries/ExtendedSafeCastLib.sol\":\"ExtendedSafeCastLib\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "contracts/libraries/ObservationLib.sol": {
        "ObservationLib": {
          "abi": [
            {
              "inputs": [],
              "name": "MAX_CARDINALITY",
              "outputs": [
                {
                  "internalType": "uint24",
                  "name": "",
                  "type": "uint24"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc.",
            "details": "Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol",
            "kind": "dev",
            "methods": {},
            "title": "Observation Library",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "608f610038600b82828239805160001a607314602b57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361060335760003560e01c80638200d873146038575b600080fd5b604162ffffff81565b60405162ffffff909116815260200160405180910390f3fea2646970667358221220a508b9f3d9e7be32771928292d9a41c2958af40b5f4e06d3b2955d5d4bc6606564736f6c63430008060033",
              "opcodes": "PUSH1 0x8F PUSH2 0x38 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2B JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x33 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8200D873 EQ PUSH1 0x38 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x41 PUSH3 0xFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0xFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA5 ADDMOD 0xB9 RETURN 0xD9 0xE7 0xBE ORIGIN PUSH24 0x1928292D9A41C2958AF40B5F4E06D3B2955D5D4BC6606564 PUSH20 0x6F6C634300080600330000000000000000000000 ",
              "sourceMap": "529:3861:54:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;529:3861:54;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@MAX_CARDINALITY_12449": {
                  "entryPoint": null,
                  "id": 12449,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_uint24__to_t_uint24__fromStack_library_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:214:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "121:91:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "131:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "143:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "154:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "139:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "139:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "131:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "173:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "188:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "196:8:84",
                                        "type": "",
                                        "value": "0xffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "184:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "184:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "166:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "166:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "166:40:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint24__to_t_uint24__fromStack_library_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "90:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "101:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "112:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14:198:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_encode_tuple_t_uint24__to_t_uint24__fromStack_library_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffff))\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "730000000000000000000000000000000000000000301460806040526004361060335760003560e01c80638200d873146038575b600080fd5b604162ffffff81565b60405162ffffff909116815260200160405180910390f3fea2646970667358221220a508b9f3d9e7be32771928292d9a41c2958af40b5f4e06d3b2955d5d4bc6606564736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x33 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8200D873 EQ PUSH1 0x38 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x41 PUSH3 0xFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0xFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA5 ADDMOD 0xB9 RETURN 0xD9 0xE7 0xBE ORIGIN PUSH24 0x1928292D9A41C2958AF40B5F4E06D3B2955D5D4BC6606564 PUSH20 0x6F6C634300080600330000000000000000000000 ",
              "sourceMap": "529:3861:54:-:0;;;;;;;;;;;;;;;;;;;;;;;;690:49;;731:8;690:49;;;;;196:8:84;184:21;;;166:40;;154:2;139:18;690:49:54;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "28600",
                "executionCost": "112",
                "totalCost": "28712"
              },
              "external": {
                "MAX_CARDINALITY()": "154"
              },
              "internal": {
                "binarySearch(struct ObservationLib.Observation storage ref[16777215] storage pointer,uint24,uint24,uint32,uint24,uint32)": "infinite"
              }
            },
            "methodIdentifiers": {
              "MAX_CARDINALITY()": "8200d873"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"MAX_CARDINALITY\",\"outputs\":[{\"internalType\":\"uint24\",\"name\":\"\",\"type\":\"uint24\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc.\",\"details\":\"Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\",\"kind\":\"dev\",\"methods\":{},\"title\":\"Observation Library\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"MAX_CARDINALITY()\":{\"notice\":\"The maximum number of observations\"}},\"notice\":\"This library allows one to store an array of timestamped values and efficiently binary search them.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/libraries/ObservationLib.sol\":\"ObservationLib\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "MAX_CARDINALITY()": {
                "notice": "The maximum number of observations"
              }
            },
            "notice": "This library allows one to store an array of timestamped values and efficiently binary search them.",
            "version": 1
          }
        }
      },
      "contracts/libraries/OverflowSafeComparatorLib.sol": {
        "OverflowSafeComparatorLib": {
          "abi": [],
          "devdoc": {
            "author": "PoolTogether Inc.",
            "details": "Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol",
            "kind": "dev",
            "methods": {},
            "title": "OverflowSafeComparatorLib library to share comparator functions between contracts",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220787e3033b34fd3225f811f38eb378d06ba8f11896d5b09cd84622a6c4bdb380964736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH25 0x7E3033B34FD3225F811F38EB378D06BA8F11896D5B09CD8462 0x2A PUSH13 0x4BDB380964736F6C6343000806 STOP CALLER ",
              "sourceMap": "344:2576:55:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;344:2576:55;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220787e3033b34fd3225f811f38eb378d06ba8f11896d5b09cd84622a6c4bdb380964736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH25 0x7E3033B34FD3225F811F38EB378D06BA8F11896D5B09CD8462 0x2A PUSH13 0x4BDB380964736F6C6343000806 STOP CALLER ",
              "sourceMap": "344:2576:55:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "checkedSub(uint32,uint32,uint32)": "infinite",
                "lt(uint32,uint32,uint32)": "infinite",
                "lte(uint32,uint32,uint32)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"author\":\"PoolTogether Inc.\",\"details\":\"Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\",\"kind\":\"dev\",\"methods\":{},\"title\":\"OverflowSafeComparatorLib library to share comparator functions between contracts\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/libraries/OverflowSafeComparatorLib.sol\":\"OverflowSafeComparatorLib\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "contracts/libraries/RingBufferLib.sol": {
        "RingBufferLib": {
          "abi": [],
          "devdoc": {
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220bba0e5a1c2fc2916bd1d6b4d4f516e1eff8aab7c6cc6a374a24967de65324a3764736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBB LOG0 0xE5 LOG1 0xC2 0xFC 0x29 AND 0xBD SAR PUSH12 0x4D4F516E1EFF8AAB7C6CC6A3 PUSH21 0xA24967DE65324A3764736F6C634300080600330000 ",
              "sourceMap": "61:2375:56:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;61:2375:56;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220bba0e5a1c2fc2916bd1d6b4d4f516e1eff8aab7c6cc6a374a24967de65324a3764736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBB LOG0 0xE5 LOG1 0xC2 0xFC 0x29 AND 0xBD SAR PUSH12 0x4D4F516E1EFF8AAB7C6CC6A3 PUSH21 0xA24967DE65324A3764736F6C634300080600330000 ",
              "sourceMap": "61:2375:56:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "newestIndex(uint256,uint256)": "infinite",
                "nextIndex(uint256,uint256)": "infinite",
                "offset(uint256,uint256,uint256)": "infinite",
                "wrap(uint256,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/libraries/RingBufferLib.sol\":\"RingBufferLib\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "contracts/libraries/TwabLib.sol": {
        "TwabLib": {
          "abi": [
            {
              "inputs": [],
              "name": "MAX_CARDINALITY",
              "outputs": [
                {
                  "internalType": "uint24",
                  "name": "",
                  "type": "uint24"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "details": "Time-Weighted Average Balance Library for ERC20 tokens.",
            "kind": "dev",
            "methods": {},
            "stateVariables": {
              "MAX_CARDINALITY": {
                "details": "The user Account.AccountDetails.cardinality parameter can NOT exceed the max cardinality variable. Preventing \"corrupted\" ring buffer lookup pointers and new observation checkpoints. The MAX_CARDINALITY in fact guarantees at least 7.4 years of records: If 14 = block time in seconds (2**24) * 14 = 234881024 seconds of history 234881024 / (365 * 24 * 60 * 60) ~= 7.44 years"
              }
            },
            "title": "PoolTogether V4 TwabLib (Library)",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "608f610038600b82828239805160001a607314602b57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361060335760003560e01c80638200d873146038575b600080fd5b604162ffffff81565b60405162ffffff909116815260200160405180910390f3fea26469706673582212201877af64cfa31e9ffd2155d0073aea9789d4b3db9825e8d63ae71afb3dd0ad6164736f6c63430008060033",
              "opcodes": "PUSH1 0x8F PUSH2 0x38 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2B JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x33 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8200D873 EQ PUSH1 0x38 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x41 PUSH3 0xFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0xFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 XOR PUSH24 0xAF64CFA31E9FFD2155D0073AEA9789D4B3DB9825E8D63AE7 BYTE 0xFB RETURNDATASIZE 0xD0 0xAD PUSH2 0x6473 PUSH16 0x6C634300080600330000000000000000 ",
              "sourceMap": "934:18392:57:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;934:18392:57;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@MAX_CARDINALITY_12866": {
                  "entryPoint": null,
                  "id": 12866,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_uint24__to_t_uint24__fromStack_library_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:214:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "121:91:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "131:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "143:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "154:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "139:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "139:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "131:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "173:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "188:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "196:8:84",
                                        "type": "",
                                        "value": "0xffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "184:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "184:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "166:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "166:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "166:40:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint24__to_t_uint24__fromStack_library_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "90:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "101:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "112:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14:198:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_encode_tuple_t_uint24__to_t_uint24__fromStack_library_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffff))\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "730000000000000000000000000000000000000000301460806040526004361060335760003560e01c80638200d873146038575b600080fd5b604162ffffff81565b60405162ffffff909116815260200160405180910390f3fea26469706673582212201877af64cfa31e9ffd2155d0073aea9789d4b3db9825e8d63ae71afb3dd0ad6164736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x33 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8200D873 EQ PUSH1 0x38 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x41 PUSH3 0xFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0xFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 XOR PUSH24 0xAF64CFA31E9FFD2155D0073AEA9789D4B3DB9825E8D63AE7 BYTE 0xFB RETURNDATASIZE 0xD0 0xAD PUSH2 0x6473 PUSH16 0x6C634300080600330000000000000000 ",
              "sourceMap": "934:18392:57:-:0;;;;;;;;;;;;;;;;;;;;;;;;2024:49;;2065:8;2024:49;;;;;196:8:84;184:21;;;166:40;;154:2;139:18;2024:49:57;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "28600",
                "executionCost": "112",
                "totalCost": "28712"
              },
              "external": {
                "MAX_CARDINALITY()": "154"
              },
              "internal": {
                "_calculateTwab(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,struct ObservationLib.Observation memory,uint24,uint24,uint32,uint32)": "infinite",
                "_computeNextTwab(struct ObservationLib.Observation memory,uint224,uint32)": "infinite",
                "_getAverageBalanceBetween(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32,uint32)": "infinite",
                "_getBalanceAt(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32)": "infinite",
                "_nextTwab(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32)": "infinite",
                "decreaseBalance(struct TwabLib.Account storage pointer,uint208,string memory,uint32)": "infinite",
                "getAverageBalanceBetween(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32,uint32)": "infinite",
                "getBalanceAt(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32)": "infinite",
                "increaseBalance(struct TwabLib.Account storage pointer,uint208,uint32)": "infinite",
                "newestTwab(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory)": "infinite",
                "oldestTwab(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory)": "infinite",
                "push(struct TwabLib.AccountDetails memory)": "infinite"
              }
            },
            "methodIdentifiers": {
              "MAX_CARDINALITY()": "8200d873"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"MAX_CARDINALITY\",\"outputs\":[{\"internalType\":\"uint24\",\"name\":\"\",\"type\":\"uint24\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"details\":\"Time-Weighted Average Balance Library for ERC20 tokens.\",\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"MAX_CARDINALITY\":{\"details\":\"The user Account.AccountDetails.cardinality parameter can NOT exceed the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup pointers and new observation checkpoints. The MAX_CARDINALITY in fact guarantees at least 7.4 years of records: If 14 = block time in seconds (2**24) * 14 = 234881024 seconds of history 234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\"}},\"title\":\"PoolTogether V4 TwabLib (Library)\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"MAX_CARDINALITY()\":{\"notice\":\"Sets max ring buffer length in the Account.twabs Observation list. As users transfer/mint/burn tickets new Observation checkpoints are recorded. The current max cardinality guarantees a seven year minimum, of accurate historical lookups with current estimates of 1 new block every 15 seconds - assuming each block contains a transfer to trigger an observation write to storage.\"}},\"notice\":\"This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance. Each user is mapped to an Account struct containing the TWAB history (ring buffer) and ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec) guarantees minimum 7.4 years of search history.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/libraries/TwabLib.sol\":\"TwabLib\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "MAX_CARDINALITY()": {
                "notice": "Sets max ring buffer length in the Account.twabs Observation list. As users transfer/mint/burn tickets new Observation checkpoints are recorded. The current max cardinality guarantees a seven year minimum, of accurate historical lookups with current estimates of 1 new block every 15 seconds - assuming each block contains a transfer to trigger an observation write to storage."
              }
            },
            "notice": "This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance. Each user is mapped to an Account struct containing the TWAB history (ring buffer) and ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec) guarantees minimum 7.4 years of search history.",
            "version": 1
          }
        }
      },
      "contracts/permit/EIP2612PermitAndDeposit.sol": {
        "EIP2612PermitAndDeposit": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "contract IPrizePool",
                  "name": "_prizePool",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "delegate",
                      "type": "address"
                    },
                    {
                      "components": [
                        {
                          "internalType": "uint256",
                          "name": "deadline",
                          "type": "uint256"
                        },
                        {
                          "internalType": "uint8",
                          "name": "v",
                          "type": "uint8"
                        },
                        {
                          "internalType": "bytes32",
                          "name": "r",
                          "type": "bytes32"
                        },
                        {
                          "internalType": "bytes32",
                          "name": "s",
                          "type": "bytes32"
                        }
                      ],
                      "internalType": "struct Signature",
                      "name": "signature",
                      "type": "tuple"
                    }
                  ],
                  "internalType": "struct DelegateSignature",
                  "name": "_delegateSignature",
                  "type": "tuple"
                }
              ],
              "name": "depositToAndDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IPrizePool",
                  "name": "_prizePool",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "deadline",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint8",
                      "name": "v",
                      "type": "uint8"
                    },
                    {
                      "internalType": "bytes32",
                      "name": "r",
                      "type": "bytes32"
                    },
                    {
                      "internalType": "bytes32",
                      "name": "s",
                      "type": "bytes32"
                    }
                  ],
                  "internalType": "struct Signature",
                  "name": "_permitSignature",
                  "type": "tuple"
                },
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "delegate",
                      "type": "address"
                    },
                    {
                      "components": [
                        {
                          "internalType": "uint256",
                          "name": "deadline",
                          "type": "uint256"
                        },
                        {
                          "internalType": "uint8",
                          "name": "v",
                          "type": "uint8"
                        },
                        {
                          "internalType": "bytes32",
                          "name": "r",
                          "type": "bytes32"
                        },
                        {
                          "internalType": "bytes32",
                          "name": "s",
                          "type": "bytes32"
                        }
                      ],
                      "internalType": "struct Signature",
                      "name": "signature",
                      "type": "tuple"
                    }
                  ],
                  "internalType": "struct DelegateSignature",
                  "name": "_delegateSignature",
                  "type": "tuple"
                }
              ],
              "name": "permitAndDepositToAndDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "custom:experimental": "This contract has not been fully audited yet.",
            "kind": "dev",
            "methods": {
              "depositToAndDelegate(address,uint256,address,(address,(uint256,uint8,bytes32,bytes32)))": {
                "params": {
                  "_amount": "Amount of tokens to deposit into the prize pool",
                  "_delegateSignature": "Delegate signature",
                  "_prizePool": "Address of the prize pool to deposit into",
                  "_to": "Address that will receive the tickets"
                }
              },
              "permitAndDepositToAndDelegate(address,uint256,address,(uint256,uint8,bytes32,bytes32),(address,(uint256,uint8,bytes32,bytes32)))": {
                "details": "The `spender` address required by the permit function is the address of this contract.",
                "params": {
                  "_amount": "Amount of tokens to deposit into the prize pool",
                  "_delegateSignature": "Delegate signature",
                  "_permitSignature": "Permit signature",
                  "_prizePool": "Address of the prize pool to deposit into",
                  "_to": "Address that will receive the tickets"
                }
              }
            },
            "title": "Allows users to approve and deposit EIP-2612 compatible tokens into a prize pool in a single transaction.",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50610c29806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063a81bc43b1461003b578063c00dbd5114610050575b600080fd5b61004e6100493660046109cd565b610063565b005b61004e61005e36600461097a565b61022a565b6000856001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b15801561009e57600080fd5b505afa1580156100b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100d6919061093b565b90506000866001600160a01b03166321df0da76040518163ffffffff1660e01b815260040160206040518083038186803b15801561011357600080fd5b505afa158015610127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061014b919061093b565b90506001600160a01b03811663d505accf333089883561017160408b0160208c01610b06565b604080517fffffffff0000000000000000000000000000000000000000000000000000000060e089901b1681526001600160a01b0396871660048201529590941660248601526044850192909252606484015260ff16608483015287013560a4820152606087013560c482015260e401600060405180830381600087803b1580156101fb57600080fd5b505af115801561020f573d6000803e3d6000fd5b5050505061022187838389898861032a565b50505050505050565b6000846001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b15801561026557600080fd5b505afa158015610279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029d919061093b565b90506000856001600160a01b03166321df0da76040518163ffffffff1660e01b815260040160206040518083038186803b1580156102da57600080fd5b505afa1580156102ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610312919061093b565b905061032286838388888861032a565b505050505050565b610337843385898661041b565b600061034b36839003830160208401610a5b565b90506001600160a01b03861663919974dc8461036a602086018661091e565b845160208601516040808801516060890151915160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b039687166004820152959094166024860152604485019290925260ff166064840152608483019190915260a482015260c401600060405180830381600087803b1580156103fa57600080fd5b505af115801561040e573d6000803e3d6000fd5b5050505050505050505050565b6104306001600160a01b0386168530866104c6565b6104446001600160a01b038616838561057d565b6040517fffaad6a50000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301526024820185905283169063ffaad6a590604401600060405180830381600087803b1580156104a757600080fd5b505af11580156104bb573d6000803e3d6000fd5b505050505050505050565b6040516001600160a01b03808516602483015283166044820152606481018290526105779085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610670565b50505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b1580156105e257600080fd5b505afa1580156105f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061a9190610aed565b6106249190610b70565b6040516001600160a01b0385166024820152604481018290529091506105779085907f095ea7b30000000000000000000000000000000000000000000000000000000090606401610513565b60006106c5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661075f9092919063ffffffff16565b80519091501561075a57808060200190518101906106e39190610958565b61075a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b505050565b606061076e8484600085610778565b90505b9392505050565b6060824710156107f05760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610751565b843b61083e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610751565b600080866001600160a01b0316858760405161085a9190610b21565b60006040518083038185875af1925050503d8060008114610897576040519150601f19603f3d011682016040523d82523d6000602084013e61089c565b606091505b50915091506108ac8282866108b7565b979650505050505050565b606083156108c6575081610771565b8251156108d65782518084602001fd5b8160405162461bcd60e51b81526004016107519190610b3d565b600060a0828403121561090257600080fd5b50919050565b803560ff8116811461091957600080fd5b919050565b60006020828403121561093057600080fd5b813561077181610bdb565b60006020828403121561094d57600080fd5b815161077181610bdb565b60006020828403121561096a57600080fd5b8151801515811461077157600080fd5b600080600080610100858703121561099157600080fd5b843561099c81610bdb565b93506020850135925060408501356109b381610bdb565b91506109c286606087016108f0565b905092959194509250565b60008060008060008587036101808112156109e757600080fd5b86356109f281610bdb565b9550602087013594506040870135610a0981610bdb565b935060807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa082011215610a3b57600080fd5b50606086019150610a4f8760e088016108f0565b90509295509295909350565b600060808284031215610a6d57600080fd5b6040516080810181811067ffffffffffffffff82111715610ab7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405282358152610aca60208401610908565b602082015260408301356040820152606083013560608201528091505092915050565b600060208284031215610aff57600080fd5b5051919050565b600060208284031215610b1857600080fd5b61077182610908565b60008251610b33818460208701610baf565b9190910192915050565b6020815260008251806020840152610b5c816040850160208701610baf565b601f01601f19169190910160400192915050565b60008219821115610baa577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b60005b83811015610bca578181015183820152602001610bb2565b838111156105775750506000910152565b6001600160a01b0381168114610bf057600080fd5b5056fea26469706673582212202e9f1781762bcb2c0f686ec6ef01d262566a3db7a63bf86e452ab2ab88162e0164736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xC29 DUP1 PUSH2 0x20 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 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xA81BC43B EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xC00DBD51 EQ PUSH2 0x50 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4E PUSH2 0x49 CALLDATASIZE PUSH1 0x4 PUSH2 0x9CD JUMP JUMPDEST PUSH2 0x63 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4E PUSH2 0x5E CALLDATASIZE PUSH1 0x4 PUSH2 0x97A JUMP JUMPDEST PUSH2 0x22A JUMP JUMPDEST PUSH1 0x0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC002C4D6 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x9E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB2 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 0xD6 SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x21DF0DA7 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x113 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x127 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 0x14B SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH4 0xD505ACCF CALLER ADDRESS DUP10 DUP9 CALLDATALOAD PUSH2 0x171 PUSH1 0x40 DUP12 ADD PUSH1 0x20 DUP13 ADD PUSH2 0xB06 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP10 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP7 DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x24 DUP7 ADD MSTORE PUSH1 0x44 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x64 DUP5 ADD MSTORE PUSH1 0xFF AND PUSH1 0x84 DUP4 ADD MSTORE DUP8 ADD CALLDATALOAD PUSH1 0xA4 DUP3 ADD MSTORE PUSH1 0x60 DUP8 ADD CALLDATALOAD PUSH1 0xC4 DUP3 ADD MSTORE PUSH1 0xE4 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x20F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH2 0x221 DUP8 DUP4 DUP4 DUP10 DUP10 DUP9 PUSH2 0x32A JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC002C4D6 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x265 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x279 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 0x29D SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x21DF0DA7 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2EE 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 0x312 SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH2 0x322 DUP7 DUP4 DUP4 DUP9 DUP9 DUP9 PUSH2 0x32A JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x337 DUP5 CALLER DUP6 DUP10 DUP7 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34B CALLDATASIZE DUP4 SWAP1 SUB DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0xA5B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH4 0x919974DC DUP5 PUSH2 0x36A PUSH1 0x20 DUP7 ADD DUP7 PUSH2 0x91E JUMP JUMPDEST DUP5 MLOAD PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x40 DUP1 DUP9 ADD MLOAD PUSH1 0x60 DUP10 ADD MLOAD SWAP2 MLOAD PUSH1 0xE0 DUP9 SWAP1 SHL PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP7 DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x24 DUP7 ADD MSTORE PUSH1 0x44 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0xFF AND PUSH1 0x64 DUP5 ADD MSTORE PUSH1 0x84 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xA4 DUP3 ADD MSTORE PUSH1 0xC4 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x3FA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x40E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x430 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP6 ADDRESS DUP7 PUSH2 0x4C6 JUMP JUMPDEST PUSH2 0x444 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP4 DUP6 PUSH2 0x57D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFAAD6A500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE DUP4 AND SWAP1 PUSH4 0xFFAAD6A5 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4BB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x577 SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x670 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDD62ED3E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP2 DUP7 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5F6 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 0x61A SWAP2 SWAP1 PUSH2 0xAED JUMP JUMPDEST PUSH2 0x624 SWAP2 SWAP1 PUSH2 0xB70 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x577 SWAP1 DUP6 SWAP1 PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x513 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6C5 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x75F SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x75A JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x6E3 SWAP2 SWAP1 PUSH2 0x958 JUMP JUMPDEST PUSH2 0x75A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x76E DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x778 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x7F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x751 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x83E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x751 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x85A SWAP2 SWAP1 PUSH2 0xB21 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x897 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x89C JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x8AC DUP3 DUP3 DUP7 PUSH2 0x8B7 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x8C6 JUMPI POP DUP2 PUSH2 0x771 JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x8D6 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x751 SWAP2 SWAP1 PUSH2 0xB3D JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x902 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x919 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x930 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x771 DUP2 PUSH2 0xBDB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x94D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x771 DUP2 PUSH2 0xBDB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x96A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x771 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x991 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x99C DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x9B3 DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP2 POP PUSH2 0x9C2 DUP7 PUSH1 0x60 DUP8 ADD PUSH2 0x8F0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 DUP8 SUB PUSH2 0x180 DUP2 SLT ISZERO PUSH2 0x9E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH2 0x9F2 DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH2 0xA09 DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP4 POP PUSH1 0x80 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA0 DUP3 ADD SLT ISZERO PUSH2 0xA3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x60 DUP7 ADD SWAP2 POP PUSH2 0xA4F DUP8 PUSH1 0xE0 DUP9 ADD PUSH2 0x8F0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA6D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x80 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xAB7 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE DUP3 CALLDATALOAD DUP2 MSTORE PUSH2 0xACA PUSH1 0x20 DUP5 ADD PUSH2 0x908 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP4 ADD CALLDATALOAD PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 DUP4 ADD CALLDATALOAD PUSH1 0x60 DUP3 ADD MSTORE DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAFF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB18 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x771 DUP3 PUSH2 0x908 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0xB33 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0xBAF JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0xB5C DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0xBAF JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xBAA JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xBCA JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0xBB2 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x577 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xBF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2E SWAP16 OR DUP2 PUSH23 0x2BCB2C0F686EC6EF01D262566A3DB7A63BF86E452AB2AB DUP9 AND 0x2E ADD PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1109:3988:58:-:0;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_callOptionalReturn_1116": {
                  "entryPoint": 1648,
                  "id": 1116,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_depositToAndDelegate_13780": {
                  "entryPoint": 810,
                  "id": 13780,
                  "parameterSlots": 6,
                  "returnSlots": 0
                },
                "@_depositTo_13823": {
                  "entryPoint": 1051,
                  "id": 13823,
                  "parameterSlots": 5,
                  "returnSlots": 0
                },
                "@depositToAndDelegate_13730": {
                  "entryPoint": 554,
                  "id": 13730,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@functionCallWithValue_2255": {
                  "entryPoint": 1912,
                  "id": 2255,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_2185": {
                  "entryPoint": 1887,
                  "id": 2185,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@isContract_2114": {
                  "entryPoint": null,
                  "id": 2114,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@permitAndDepositToAndDelegate_13690": {
                  "entryPoint": 99,
                  "id": 13690,
                  "parameterSlots": 5,
                  "returnSlots": 0
                },
                "@safeIncreaseAllowance_1030": {
                  "entryPoint": 1405,
                  "id": 1030,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@safeTransferFrom_950": {
                  "entryPoint": 1222,
                  "id": 950,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@verifyCallResult_2390": {
                  "entryPoint": 2231,
                  "id": 2390,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_struct_DelegateSignature_calldata": {
                  "entryPoint": 2288,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 2334,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address_fromMemory": {
                  "entryPoint": 2363,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 2392,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_IPrizePool_$11883t_uint256t_addresst_struct$_DelegateSignature_$13621_calldata_ptr": {
                  "entryPoint": 2426,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_contract$_IPrizePool_$11883t_uint256t_addresst_struct$_Signature_$13615_calldata_ptrt_struct$_DelegateSignature_$13621_calldata_ptr": {
                  "entryPoint": 2509,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_contract$_ITicket_$12213_fromMemory": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_Signature_$13615_memory_ptr": {
                  "entryPoint": 2651,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 2797,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint8": {
                  "entryPoint": 2822,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint8": {
                  "entryPoint": 2312,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 2849,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 8,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 7,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 2877,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 2928,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 2991,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 3035,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:9036:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "94:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "134:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "143:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "146:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "136:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "136:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "136:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "115:3:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "120:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "111:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "111:16:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "129:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "107:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "107:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "104:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "159:15:84",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "168:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "159:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_struct_DelegateSignature_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "68:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "76:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "84:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:166:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "232:109:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "242:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "264:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "251:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "251:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "242:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "319:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "328:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "331:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "321:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "321:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "321:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "293:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "304:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "311:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "300:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "300:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "290:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "290:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "283:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "283:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "280:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "211:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "222:5:84",
                            "type": ""
                          }
                        ],
                        "src": "185:156:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "416:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "462:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "471:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "474:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "464:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "464:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "464:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "437:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "446:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "433:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "433:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "458:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "429:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "429:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "426:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "487:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "513:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "500:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "500:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "491:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "557:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "532:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "532:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "532:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "572:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "582:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "572:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "382:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "393:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "405:6:84",
                            "type": ""
                          }
                        ],
                        "src": "346:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "679:170:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "725:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "734:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "737:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "727:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "727:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "727:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "700:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "709:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "696:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "696:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "721:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "692:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "692:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "689:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "750:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "769:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "763:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "763:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "754:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "813:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "788:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "828:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "838:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "828:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "645:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "656:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "668:6:84",
                            "type": ""
                          }
                        ],
                        "src": "598:251:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "932:199:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "978:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "987:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "990:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "980:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "980:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "980:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "953:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "962:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "949:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "949:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "974:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "945:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "945:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "942:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1003:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1022:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1016:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1016:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1007:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1085:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1094:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1097:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1087:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1087:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1087:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1054:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1075:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "1068:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1068:13:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1061:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1061:21:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1051:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1051:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1044:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1044:40:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1041:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1110:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1120:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1110:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "898:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "909:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "921:6:84",
                            "type": ""
                          }
                        ],
                        "src": "854:277:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1315:445:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1362:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1371:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1374:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1364:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1364:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1364:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1336:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1345:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1332:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1332:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1357:3:84",
                                    "type": "",
                                    "value": "256"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1328:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1328:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1325:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1387:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1413:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1400:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1400:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1391:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1457:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1432:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1432:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1432:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1472:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1482:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1472:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1496:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1523:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1534:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1519:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1519:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1506:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1506:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1496:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1547:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1579:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1590:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1575:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1575:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1562:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1562:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1551:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1628:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1603:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1603:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1603:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1645:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1655:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1645:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1671:83:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1730:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1741:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1726:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1726:18:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1746:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_DelegateSignature_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "1681:44:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1681:73:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1671:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IPrizePool_$11883t_uint256t_addresst_struct$_DelegateSignature_$13621_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1257:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1268:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1280:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1288:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1296:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1304:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1136:624:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1991:618:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2001:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2015:7:84"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2024:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "2011:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2011:23:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2005:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2059:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2068:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2071:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2061:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2061:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2061:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2050:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2054:3:84",
                                    "type": "",
                                    "value": "384"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2046:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2046:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2043:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2084:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2110:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2097:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2097:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2088:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2154:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2129:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2129:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2129:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2169:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2179:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2169:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2193:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2220:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2231:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2216:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2216:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2203:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2203:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2193:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2244:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2276:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2287:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2272:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2272:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2259:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2259:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2248:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2325:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2300:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2300:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2300:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2342:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2352:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2342:6:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2457:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2466:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2469:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2459:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2459:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2459:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2379:2:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2383:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2375:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2375:75:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2452:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2371:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2371:85:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2368:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2482:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2496:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2507:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2492:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2492:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2482:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2519:84:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2578:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2589:3:84",
                                        "type": "",
                                        "value": "224"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2574:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2574:19:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2595:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_DelegateSignature_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2529:44:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2529:74:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2519:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IPrizePool_$11883t_uint256t_addresst_struct$_Signature_$13615_calldata_ptrt_struct$_DelegateSignature_$13621_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1925:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1936:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1948:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1956:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1964:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1972:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1980:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1765:844:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2712:170:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2758:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2767:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2770:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2760:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2760:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2760:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2733:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2742:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2729:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2729:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2754:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2725:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2725:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2722:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2783:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2802:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2796:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2796:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2787:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2846:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2821:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2821:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2821:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2861:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2871:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2861:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$12213_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2678:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2689:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2701:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2614:268:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2985:701:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3032:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3041:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3044:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3034:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3034:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3034:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3006:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3015:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3002:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3002:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3027:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2998:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2998:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2995:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3057:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3077:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3071:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3071:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3061:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3089:34:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "3111:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3119:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3107:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3107:16:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3093:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3206:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3227:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3230:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3220:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3220:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3220:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3328:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3331:4:84",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3321:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3321:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3321:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3356:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3359:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3349:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3349:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3349:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3141:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3153:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3138:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3138:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3177:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3189:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3174:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3174:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "3135:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3135:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3132:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3390:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "3394:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3383:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3383:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3383:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "3421:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3442:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "3429:12:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3429:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3414:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3414:39:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3414:39:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3473:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3481:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3469:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3469:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3507:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3518:2:84",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3503:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3503:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint8",
                                      "nodeType": "YulIdentifier",
                                      "src": "3486:16:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3486:36:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3462:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3462:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3462:61:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3543:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3551:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3539:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3539:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3573:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3584:2:84",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3569:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3569:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "3556:12:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3556:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3532:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3532:57:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3532:57:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3609:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3617:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3605:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3605:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3639:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3650:2:84",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3635:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3635:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "3622:12:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3622:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3598:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3598:57:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3598:57:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3664:16:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "3674:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3664:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Signature_$13615_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2951:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2962:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2974:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2887:799:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3772:103:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3818:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3827:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3830:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3820:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3820:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3820:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3793:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3802:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3789:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3789:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3814:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3785:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3785:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3782:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3843:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3859:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3853:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3853:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3843:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3738:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3749:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3761:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3691:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3948:114:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3994:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4003:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4006:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3996:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3996:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3996:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3969:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3978:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3965:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3965:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3990:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3961:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3961:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3958:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4019:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4046:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "4029:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4029:27:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4019:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3914:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3925:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3937:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3880:182:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4204:137:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4214:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4234:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4228:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4228:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4218:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4276:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4284:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4272:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4272:17:84"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4291:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4296:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "4250:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4250:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4250:53:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4312:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4323:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4328:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4319:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4319:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "4312:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4180:3:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4185:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "4196:3:84",
                            "type": ""
                          }
                        ],
                        "src": "4067:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4475:198:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4485:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4497:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4508:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4493:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4493:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4485:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4520:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4530:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4524:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4588:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4603:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4611:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4599:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4599:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4581:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4581:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4581:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4635:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4646:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4631:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4631:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4655:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4663:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4651:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4651:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4624:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4624:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4624:43:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4436:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4447:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4455:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4466:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4346:327:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4835:241:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4845:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4857:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4868:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4853:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4853:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4845:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4880:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4890:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4884:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4948:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4963:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4971:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4959:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4959:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4941:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4941:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4941:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4995:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5006:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4991:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4991:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5015:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5023:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5011:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5011:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4984:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4984:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4984:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5047:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5058:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5043:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5043:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5063:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5036:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5036:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5036:34:84"
                            }
                          ]
                        },
                        "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": "4788:9:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "4799:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4807:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4815:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4826:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4678:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5346:428:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5356:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5368:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5379:3:84",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5364:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5364:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5356:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5392:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5402:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5396:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5460:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5475:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5483:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5471:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5471:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5453:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5453:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5453:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5507:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5518:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5503:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5503:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5527:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5535:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5523:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5523:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5496:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5496:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5496:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5559:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5570:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5555:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5555:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5575:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5548:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5548:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5548:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5602:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5613:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5598:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5598:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5618:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5591:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5591:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5591:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5645:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5656:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5641:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5641:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "5666:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5674:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5662:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5662:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5634:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5634:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5634:46:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5700:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5711:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5696:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5696:19:84"
                                  },
                                  {
                                    "name": "value5",
                                    "nodeType": "YulIdentifier",
                                    "src": "5717:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5689:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5689:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5689:35:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5744:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5755:3:84",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5740:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5740:19:84"
                                  },
                                  {
                                    "name": "value6",
                                    "nodeType": "YulIdentifier",
                                    "src": "5761:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5733:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5733:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5733:35:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5267:9:84",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "5278:6:84",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "5286:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "5294:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "5302:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5310:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5318:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5326:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5337:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5081:693:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6016:384:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6026:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6038:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6049:3:84",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6034:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6034:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6026:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6062:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6072:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6066:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6130:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6145:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6153:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6141:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6141:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6123:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6123:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6123:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6177:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6188:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6173:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6173:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6197:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6205:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6193:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6193:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6166:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6166:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6166:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6229:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6240:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6225:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6225:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6245:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6218:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6218:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6218:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6272:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6283:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6268:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6268:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value3",
                                        "nodeType": "YulIdentifier",
                                        "src": "6292:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6300:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6288:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6288:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6261:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6261:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6261:45:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6326:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6337:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6322:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6322:19:84"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "6343:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6315:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6315:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6315:35:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6370:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6381:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6366:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6366:19:84"
                                  },
                                  {
                                    "name": "value5",
                                    "nodeType": "YulIdentifier",
                                    "src": "6387:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6359:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6359:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6359:35:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5945:9:84",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "5956:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "5964:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "5972:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5980:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5988:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5996:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6007:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5779:621:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6534:168:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6544:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6556:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6567:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6552:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6552:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6544:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6586:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6601:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6609:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6597:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6597:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6579:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6579:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6579:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6673:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6684:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6669:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6669:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6689:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6662:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6662:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6662:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6495:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6506:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6514:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6525:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6405:297:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6828:321:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6845:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6856:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6838:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6838:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6838:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6868:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6888:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6882:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6882:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "6872:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6915:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6926:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6911:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6911:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "6931:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6904:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6904:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6904:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6973:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6981:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6969:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6969:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6990:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7001:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6986:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6986:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7006:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "6947:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6947:66:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6947:66:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7022:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7038:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "7057:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "7065:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "7053:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7053:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "7070:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "7049:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7049:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7034:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7034:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7140:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7030:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7030:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7022:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6797:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6808:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6819:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6707:442:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7328:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7345:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7356:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7338:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7338:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7338:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7379:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7390:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7375:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7375:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7395:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7368:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7368:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7368:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7418:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7429:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7414:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7414:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7434:34:84",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7407:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7407:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7407:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7489:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7500:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7485:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7485:18:84"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7505:8:84",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7478:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7478:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7478:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7523:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7535:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7546:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7531:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7531:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7523:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7305:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7319:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7154:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7735:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7752:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7763:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7745:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7745:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7745:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7786:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7797:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7782:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7782:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7802:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7775:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7775:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7775:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7825:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7836:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7821:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7821:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7841:31:84",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7814:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7814:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7814:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7882:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7894:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7905:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7890:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7890:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7882:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7712:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7726:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7561:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8093:232:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8110:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8121:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8103:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8103:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8103:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8144:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8155:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8140:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8140:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8160:2:84",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8133:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8133:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8133:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8183:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8194:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8179:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8179:18:84"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8199:34:84",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8172:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8172:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8172:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8254:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8265:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8250:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8250:18:84"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8270:12:84",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8243:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8243:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8243:40:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8292:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8304:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8315:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8300:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8300:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8292:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8070:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8084:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7919:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8378:234:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8413:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8434:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8437:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8427:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8427:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8427:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8535:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8538:4:84",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8528:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8528:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8528:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8563:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8566:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "8556:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8556:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8556:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8394:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "8401:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "8397:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8397:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8391:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8391:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8388:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8590:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8601:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8604:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8597:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8597:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8590:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8361:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8364:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8370:3:84",
                            "type": ""
                          }
                        ],
                        "src": "8330:282:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8670:205:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8680:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8689:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "8684:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8749:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "8774:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "8779:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8770:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8770:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8793:3:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8798:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8789:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8789:11:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "8783:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8783:18:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8763:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8763:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8763:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "8710:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "8713:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8707:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8707:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "8721:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8723:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "8732:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8735:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8728:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8728:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "8723:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "8703:3:84",
                                "statements": []
                              },
                              "src": "8699:113:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8838:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "8851:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "8856:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8847:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8847:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8865:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8840:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8840:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8840:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "8827:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "8830:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8824:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8824:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8821:2:84"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "8648:3:84",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "8653:3:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "8658:6:84",
                            "type": ""
                          }
                        ],
                        "src": "8617:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8925:109:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9012:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9021:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9024:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9014:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9014:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9014:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "8948:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "8959:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "8966:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "8955:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8955:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "8945:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8945:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8938:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8938:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8935:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "8914:5:84",
                            "type": ""
                          }
                        ],
                        "src": "8880:154:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_struct_DelegateSignature_calldata(offset, end) -> value\n    {\n        if slt(sub(end, offset), 160) { revert(0, 0) }\n        value := offset\n    }\n    function abi_decode_uint8(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IPrizePool_$11883t_uint256t_addresst_struct$_DelegateSignature_$13621_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 256) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n        let value_1 := calldataload(add(headStart, 64))\n        validator_revert_address(value_1)\n        value2 := value_1\n        value3 := abi_decode_struct_DelegateSignature_calldata(add(headStart, 96), dataEnd)\n    }\n    function abi_decode_tuple_t_contract$_IPrizePool_$11883t_uint256t_addresst_struct$_Signature_$13615_calldata_ptrt_struct$_DelegateSignature_$13621_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        let _1 := sub(dataEnd, headStart)\n        if slt(_1, 384) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n        let value_1 := calldataload(add(headStart, 64))\n        validator_revert_address(value_1)\n        value2 := value_1\n        if slt(add(_1, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa0), 128) { revert(0, 0) }\n        value3 := add(headStart, 96)\n        value4 := abi_decode_struct_DelegateSignature_calldata(add(headStart, 224), dataEnd)\n    }\n    function abi_decode_tuple_t_contract$_ITicket_$12213_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_struct$_Signature_$13615_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, 128)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n        mstore(memPtr, calldataload(headStart))\n        mstore(add(memPtr, 32), abi_decode_uint8(add(headStart, 32)))\n        mstore(add(memPtr, 64), calldataload(add(headStart, 64)))\n        mstore(add(memPtr, 96), calldataload(add(headStart, 96)))\n        value0 := memPtr\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_decode_tuple_t_uint8(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint8(headStart)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\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    {\n        tail := add(headStart, 96)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 224)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, 0xff))\n        mstore(add(headStart, 160), value5)\n        mstore(add(headStart, 192), value6)\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), and(value3, 0xff))\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Address: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r call\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"Address: call to non-contract\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"SafeERC20: ERC20 operation did n\")\n        mstore(add(headStart, 96), \"ot succeed\")\n        tail := add(headStart, 128)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n        sum := add(x, y)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\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) { mstore(add(dst, length), 0) }\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100365760003560e01c8063a81bc43b1461003b578063c00dbd5114610050575b600080fd5b61004e6100493660046109cd565b610063565b005b61004e61005e36600461097a565b61022a565b6000856001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b15801561009e57600080fd5b505afa1580156100b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100d6919061093b565b90506000866001600160a01b03166321df0da76040518163ffffffff1660e01b815260040160206040518083038186803b15801561011357600080fd5b505afa158015610127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061014b919061093b565b90506001600160a01b03811663d505accf333089883561017160408b0160208c01610b06565b604080517fffffffff0000000000000000000000000000000000000000000000000000000060e089901b1681526001600160a01b0396871660048201529590941660248601526044850192909252606484015260ff16608483015287013560a4820152606087013560c482015260e401600060405180830381600087803b1580156101fb57600080fd5b505af115801561020f573d6000803e3d6000fd5b5050505061022187838389898861032a565b50505050505050565b6000846001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b15801561026557600080fd5b505afa158015610279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029d919061093b565b90506000856001600160a01b03166321df0da76040518163ffffffff1660e01b815260040160206040518083038186803b1580156102da57600080fd5b505afa1580156102ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610312919061093b565b905061032286838388888861032a565b505050505050565b610337843385898661041b565b600061034b36839003830160208401610a5b565b90506001600160a01b03861663919974dc8461036a602086018661091e565b845160208601516040808801516060890151915160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b039687166004820152959094166024860152604485019290925260ff166064840152608483019190915260a482015260c401600060405180830381600087803b1580156103fa57600080fd5b505af115801561040e573d6000803e3d6000fd5b5050505050505050505050565b6104306001600160a01b0386168530866104c6565b6104446001600160a01b038616838561057d565b6040517fffaad6a50000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301526024820185905283169063ffaad6a590604401600060405180830381600087803b1580156104a757600080fd5b505af11580156104bb573d6000803e3d6000fd5b505050505050505050565b6040516001600160a01b03808516602483015283166044820152606481018290526105779085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610670565b50505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b1580156105e257600080fd5b505afa1580156105f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061a9190610aed565b6106249190610b70565b6040516001600160a01b0385166024820152604481018290529091506105779085907f095ea7b30000000000000000000000000000000000000000000000000000000090606401610513565b60006106c5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661075f9092919063ffffffff16565b80519091501561075a57808060200190518101906106e39190610958565b61075a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b505050565b606061076e8484600085610778565b90505b9392505050565b6060824710156107f05760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610751565b843b61083e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610751565b600080866001600160a01b0316858760405161085a9190610b21565b60006040518083038185875af1925050503d8060008114610897576040519150601f19603f3d011682016040523d82523d6000602084013e61089c565b606091505b50915091506108ac8282866108b7565b979650505050505050565b606083156108c6575081610771565b8251156108d65782518084602001fd5b8160405162461bcd60e51b81526004016107519190610b3d565b600060a0828403121561090257600080fd5b50919050565b803560ff8116811461091957600080fd5b919050565b60006020828403121561093057600080fd5b813561077181610bdb565b60006020828403121561094d57600080fd5b815161077181610bdb565b60006020828403121561096a57600080fd5b8151801515811461077157600080fd5b600080600080610100858703121561099157600080fd5b843561099c81610bdb565b93506020850135925060408501356109b381610bdb565b91506109c286606087016108f0565b905092959194509250565b60008060008060008587036101808112156109e757600080fd5b86356109f281610bdb565b9550602087013594506040870135610a0981610bdb565b935060807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa082011215610a3b57600080fd5b50606086019150610a4f8760e088016108f0565b90509295509295909350565b600060808284031215610a6d57600080fd5b6040516080810181811067ffffffffffffffff82111715610ab7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405282358152610aca60208401610908565b602082015260408301356040820152606083013560608201528091505092915050565b600060208284031215610aff57600080fd5b5051919050565b600060208284031215610b1857600080fd5b61077182610908565b60008251610b33818460208701610baf565b9190910192915050565b6020815260008251806020840152610b5c816040850160208701610baf565b601f01601f19169190910160400192915050565b60008219821115610baa577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b60005b83811015610bca578181015183820152602001610bb2565b838111156105775750506000910152565b6001600160a01b0381168114610bf057600080fd5b5056fea26469706673582212202e9f1781762bcb2c0f686ec6ef01d262566a3db7a63bf86e452ab2ab88162e0164736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xA81BC43B EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xC00DBD51 EQ PUSH2 0x50 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4E PUSH2 0x49 CALLDATASIZE PUSH1 0x4 PUSH2 0x9CD JUMP JUMPDEST PUSH2 0x63 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4E PUSH2 0x5E CALLDATASIZE PUSH1 0x4 PUSH2 0x97A JUMP JUMPDEST PUSH2 0x22A JUMP JUMPDEST PUSH1 0x0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC002C4D6 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x9E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB2 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 0xD6 SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x21DF0DA7 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x113 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x127 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 0x14B SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH4 0xD505ACCF CALLER ADDRESS DUP10 DUP9 CALLDATALOAD PUSH2 0x171 PUSH1 0x40 DUP12 ADD PUSH1 0x20 DUP13 ADD PUSH2 0xB06 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP10 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP7 DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x24 DUP7 ADD MSTORE PUSH1 0x44 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x64 DUP5 ADD MSTORE PUSH1 0xFF AND PUSH1 0x84 DUP4 ADD MSTORE DUP8 ADD CALLDATALOAD PUSH1 0xA4 DUP3 ADD MSTORE PUSH1 0x60 DUP8 ADD CALLDATALOAD PUSH1 0xC4 DUP3 ADD MSTORE PUSH1 0xE4 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x20F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH2 0x221 DUP8 DUP4 DUP4 DUP10 DUP10 DUP9 PUSH2 0x32A JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC002C4D6 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x265 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x279 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 0x29D SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x21DF0DA7 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2EE 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 0x312 SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH2 0x322 DUP7 DUP4 DUP4 DUP9 DUP9 DUP9 PUSH2 0x32A JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x337 DUP5 CALLER DUP6 DUP10 DUP7 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34B CALLDATASIZE DUP4 SWAP1 SUB DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0xA5B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH4 0x919974DC DUP5 PUSH2 0x36A PUSH1 0x20 DUP7 ADD DUP7 PUSH2 0x91E JUMP JUMPDEST DUP5 MLOAD PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x40 DUP1 DUP9 ADD MLOAD PUSH1 0x60 DUP10 ADD MLOAD SWAP2 MLOAD PUSH1 0xE0 DUP9 SWAP1 SHL PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP7 DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x24 DUP7 ADD MSTORE PUSH1 0x44 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0xFF AND PUSH1 0x64 DUP5 ADD MSTORE PUSH1 0x84 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xA4 DUP3 ADD MSTORE PUSH1 0xC4 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x3FA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x40E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x430 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP6 ADDRESS DUP7 PUSH2 0x4C6 JUMP JUMPDEST PUSH2 0x444 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP4 DUP6 PUSH2 0x57D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFAAD6A500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE DUP4 AND SWAP1 PUSH4 0xFFAAD6A5 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4BB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x577 SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x670 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDD62ED3E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP2 DUP7 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5F6 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 0x61A SWAP2 SWAP1 PUSH2 0xAED JUMP JUMPDEST PUSH2 0x624 SWAP2 SWAP1 PUSH2 0xB70 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x577 SWAP1 DUP6 SWAP1 PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x513 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6C5 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x75F SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x75A JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x6E3 SWAP2 SWAP1 PUSH2 0x958 JUMP JUMPDEST PUSH2 0x75A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x76E DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x778 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x7F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x751 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x83E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x751 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x85A SWAP2 SWAP1 PUSH2 0xB21 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x897 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x89C JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x8AC DUP3 DUP3 DUP7 PUSH2 0x8B7 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x8C6 JUMPI POP DUP2 PUSH2 0x771 JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x8D6 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x751 SWAP2 SWAP1 PUSH2 0xB3D JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x902 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x919 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x930 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x771 DUP2 PUSH2 0xBDB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x94D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x771 DUP2 PUSH2 0xBDB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x96A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x771 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x991 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x99C DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x9B3 DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP2 POP PUSH2 0x9C2 DUP7 PUSH1 0x60 DUP8 ADD PUSH2 0x8F0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 DUP8 SUB PUSH2 0x180 DUP2 SLT ISZERO PUSH2 0x9E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH2 0x9F2 DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH2 0xA09 DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP4 POP PUSH1 0x80 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA0 DUP3 ADD SLT ISZERO PUSH2 0xA3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x60 DUP7 ADD SWAP2 POP PUSH2 0xA4F DUP8 PUSH1 0xE0 DUP9 ADD PUSH2 0x8F0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA6D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x80 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xAB7 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE DUP3 CALLDATALOAD DUP2 MSTORE PUSH2 0xACA PUSH1 0x20 DUP5 ADD PUSH2 0x908 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP4 ADD CALLDATALOAD PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 DUP4 ADD CALLDATALOAD PUSH1 0x60 DUP3 ADD MSTORE DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAFF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB18 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x771 DUP3 PUSH2 0x908 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0xB33 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0xBAF JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0xB5C DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0xBAF JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xBAA JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xBCA JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0xBB2 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x577 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xBF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2E SWAP16 OR DUP2 PUSH23 0x2BCB2C0F686EC6EF01D262566A3DB7A63BF86E452AB2AB DUP9 AND 0x2E ADD PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1109:3988:58:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1688:777;;;;;;:::i;:::-;;:::i;:::-;;2811:468;;;;;;:::i;:::-;;:::i;1688:777::-;1929:15;1947:10;-1:-1:-1;;;;;1947:20:58;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1929:40;;1979:14;1996:10;-1:-1:-1;;;;;1996:19:58;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1979:38;-1:-1:-1;;;;;;2028:27:58;;;2069:10;2101:4;2120:7;2141:25;;2180:18;;;;;;;;:::i;:::-;2212;2028:244;;;;;;;;;;-1:-1:-1;;;;;5471:15:84;;;2028:244:58;;;5453:34:84;5523:15;;;;5503:18;;;5496:43;5555:18;;;5548:34;;;;5598:18;;;5591:34;5674:4;5662:17;5641:19;;;5634:46;2212:18:58;;;5696:19:84;;;5689:35;2244:18:58;;;;5740:19:84;;;5733:35;5364:19;;2028:244:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2283:175;2326:10;2351:7;2372:6;2392:7;2413:3;2430:18;2283:21;:175::i;:::-;1919:546;;1688:777;;;;;:::o;2811:468::-;2998:15;3016:10;-1:-1:-1;;;;;3016:20:58;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2998:40;;3048:14;3065:10;-1:-1:-1;;;;;3065:19:58;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3048:38;;3097:175;3140:10;3165:7;3186:6;3206:7;3227:3;3244:18;3097:21;:175::i;:::-;2988:291;;2811:468;;;;:::o;3772:580::-;4006:56;4017:6;4025:10;4037:7;4046:10;4058:3;4006:10;:56::i;:::-;4073:26;:57;;;;;;;4102:28;;;4073:57;:::i;:::-;;-1:-1:-1;;;;;;4141:29:58;;;4184:3;4201:27;;;;:18;:27;:::i;:::-;4242:18;;4274:11;;;;4299;;;;;4324;;;;4141:204;;;;;;;;;;-1:-1:-1;;;;;6141:15:84;;;4141:204:58;;;6123:34:84;6193:15;;;;6173:18;;;6166:43;6225:18;;;6218:34;;;;6300:4;6288:17;6268:18;;;6261:45;6322:19;;;6315:35;;;;6366:19;;;6359:35;6034:19;;4141:204:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3996:356;3772:580;;;;;;:::o;4735:360::-;4902:63;-1:-1:-1;;;;;4902:31:58;;4934:6;4950:4;4957:7;4902:31;:63::i;:::-;4975:57;-1:-1:-1;;;;;4975:36:58;;5012:10;5024:7;4975:36;:57::i;:::-;5042:46;;;;;-1:-1:-1;;;;;6597:55:84;;;5042:46:58;;;6579:74:84;6669:18;;;6662:34;;;5042:32:58;;;;;6552:18:84;;5042:46:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4735:360;;;;;:::o;845:241:6:-;1010:68;;-1:-1:-1;;;;;4959:15:84;;;1010:68:6;;;4941:34:84;5011:15;;4991:18;;;4984:43;5043:18;;;5036:34;;;983:96:6;;1003:5;;1033:27;;4853:18:84;;1010:68:6;;;;-1:-1:-1;;1010:68:6;;;;;;;;;;;;;;;;;;;;;;;;;;;983:19;:96::i;:::-;845:241;;;;:::o;1955:310::-;2104:39;;;;;2128:4;2104:39;;;4581:34:84;-1:-1:-1;;;;;4651:15:84;;;4631:18;;;4624:43;2081:20:6;;2146:5;;2104:15;;;;;4493:18:84;;2104:39:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;;:::i;:::-;2188:69;;-1:-1:-1;;;;;6597:55:84;;2188:69:6;;;6579:74:84;6669:18;;;6662:34;;;2081:70:6;;-1:-1:-1;2161:97:6;;2181:5;;2211:22;;6552:18:84;;2188:69:6;6534:168:84;3140:706:6;3559:23;3585:69;3613:4;3585:69;;;;;;;;;;;;;;;;;3593:5;-1:-1:-1;;;;;3585:27:6;;;:69;;;;;:::i;:::-;3668:17;;3559:95;;-1:-1:-1;3668:21:6;3664:176;;3763:10;3752:30;;;;;;;;;;;;:::i;:::-;3744:85;;;;-1:-1:-1;;;3744:85:6;;8121:2:84;3744:85:6;;;8103:21:84;8160:2;8140:18;;;8133:30;8199:34;8179:18;;;8172:62;8270:12;8250:18;;;8243:40;8300:19;;3744:85:6;;;;;;;;;3210:636;3140:706;;:::o;3461:223:11:-;3594:12;3625:52;3647:6;3655:4;3661:1;3664:12;3625:21;:52::i;:::-;3618:59;;3461:223;;;;;;:::o;4548:499::-;4713:12;4770:5;4745:21;:30;;4737:81;;;;-1:-1:-1;;;4737:81:11;;7356:2:84;4737:81:11;;;7338:21:84;7395:2;7375:18;;;7368:30;7434:34;7414:18;;;7407:62;7505:8;7485:18;;;7478:36;7531:19;;4737:81:11;7328:228:84;4737:81:11;1034:20;;4828:60;;;;-1:-1:-1;;;4828:60:11;;7763:2:84;4828:60:11;;;7745:21:84;7802:2;7782:18;;;7775:30;7841:31;7821:18;;;7814:59;7890:18;;4828:60:11;7735:179:84;4828:60:11;4900:12;4914:23;4941:6;-1:-1:-1;;;;;4941:11:11;4960:5;4967:4;4941:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4899:73;;;;4989:51;5006:7;5015:10;5027:12;4989:16;:51::i;:::-;4982:58;4548:499;-1:-1:-1;;;;;;;4548:499:11:o;7161:692::-;7307:12;7335:7;7331:516;;;-1:-1:-1;7365:10:11;7358:17;;7331:516;7476:17;;:21;7472:365;;7670:10;7664:17;7730:15;7717:10;7713:2;7709:19;7702:44;7472:365;7809:12;7802:20;;-1:-1:-1;;;7802:20:11;;;;;;;;:::i;14:166:84:-;84:5;129:3;120:6;115:3;111:16;107:26;104:2;;;146:1;143;136:12;104:2;-1:-1:-1;168:6:84;94:86;-1:-1:-1;94:86:84:o;185:156::-;251:20;;311:4;300:16;;290:27;;280:2;;331:1;328;321:12;280:2;232:109;;;:::o;346:247::-;405:6;458:2;446:9;437:7;433:23;429:32;426:2;;;474:1;471;464:12;426:2;513:9;500:23;532:31;557:5;532:31;:::i;598:251::-;668:6;721:2;709:9;700:7;696:23;692:32;689:2;;;737:1;734;727:12;689:2;769:9;763:16;788:31;813:5;788:31;:::i;854:277::-;921:6;974:2;962:9;953:7;949:23;945:32;942:2;;;990:1;987;980:12;942:2;1022:9;1016:16;1075:5;1068:13;1061:21;1054:5;1051:32;1041:2;;1097:1;1094;1087:12;1136:624;1280:6;1288;1296;1304;1357:3;1345:9;1336:7;1332:23;1328:33;1325:2;;;1374:1;1371;1364:12;1325:2;1413:9;1400:23;1432:31;1457:5;1432:31;:::i;:::-;1482:5;-1:-1:-1;1534:2:84;1519:18;;1506:32;;-1:-1:-1;1590:2:84;1575:18;;1562:32;1603:33;1562:32;1603:33;:::i;:::-;1655:7;-1:-1:-1;1681:73:84;1746:7;1741:2;1726:18;;1681:73;:::i;:::-;1671:83;;1315:445;;;;;;;:::o;1765:844::-;1948:6;1956;1964;1972;1980;2024:9;2015:7;2011:23;2054:3;2050:2;2046:12;2043:2;;;2071:1;2068;2061:12;2043:2;2110:9;2097:23;2129:31;2154:5;2129:31;:::i;:::-;2179:5;-1:-1:-1;2231:2:84;2216:18;;2203:32;;-1:-1:-1;2287:2:84;2272:18;;2259:32;2300:33;2259:32;2300:33;:::i;:::-;2352:7;-1:-1:-1;2452:3:84;2383:66;2375:75;;2371:85;2368:2;;;2469:1;2466;2459:12;2368:2;;2507;2496:9;2492:18;2482:28;;2529:74;2595:7;2589:3;2578:9;2574:19;2529:74;:::i;:::-;2519:84;;1991:618;;;;;;;;:::o;2887:799::-;2974:6;3027:3;3015:9;3006:7;3002:23;2998:33;2995:2;;;3044:1;3041;3034:12;2995:2;3077;3071:9;3119:3;3111:6;3107:16;3189:6;3177:10;3174:22;3153:18;3141:10;3138:34;3135:62;3132:2;;;3230:77;3227:1;3220:88;3331:4;3328:1;3321:15;3359:4;3356:1;3349:15;3132:2;3390;3383:22;3429:23;;3414:39;;3486:36;3518:2;3503:18;;3486:36;:::i;:::-;3481:2;3473:6;3469:15;3462:61;3584:2;3573:9;3569:18;3556:32;3551:2;3543:6;3539:15;3532:57;3650:2;3639:9;3635:18;3622:32;3617:2;3609:6;3605:15;3598:57;3674:6;3664:16;;;2985:701;;;;:::o;3691:184::-;3761:6;3814:2;3802:9;3793:7;3789:23;3785:32;3782:2;;;3830:1;3827;3820:12;3782:2;-1:-1:-1;3853:16:84;;3772:103;-1:-1:-1;3772:103:84:o;3880:182::-;3937:6;3990:2;3978:9;3969:7;3965:23;3961:32;3958:2;;;4006:1;4003;3996:12;3958:2;4029:27;4046:9;4029:27;:::i;4067:274::-;4196:3;4234:6;4228:13;4250:53;4296:6;4291:3;4284:4;4276:6;4272:17;4250:53;:::i;:::-;4319:16;;;;;4204:137;-1:-1:-1;;4204:137:84:o;6707:442::-;6856:2;6845:9;6838:21;6819:4;6888:6;6882:13;6931:6;6926:2;6915:9;6911:18;6904:34;6947:66;7006:6;7001:2;6990:9;6986:18;6981:2;6973:6;6969:15;6947:66;:::i;:::-;7065:2;7053:15;-1:-1:-1;;7049:88:84;7034:104;;;;7140:2;7030:113;;6828:321;-1:-1:-1;;6828:321:84:o;8330:282::-;8370:3;8401:1;8397:6;8394:1;8391:13;8388:2;;;8437:77;8434:1;8427:88;8538:4;8535:1;8528:15;8566:4;8563:1;8556:15;8388:2;-1:-1:-1;8597:9:84;;8378:234::o;8617:258::-;8689:1;8699:113;8713:6;8710:1;8707:13;8699:113;;;8789:11;;;8783:18;8770:11;;;8763:39;8735:2;8728:10;8699:113;;;8830:6;8827:1;8824:13;8821:2;;;-1:-1:-1;;8865:1:84;8847:16;;8840:27;8670:205::o;8880:154::-;-1:-1:-1;;;;;8959:5:84;8955:54;8948:5;8945:65;8935:2;;9024:1;9021;9014:12;8935:2;8925:109;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "622600",
                "executionCost": "657",
                "totalCost": "623257"
              },
              "external": {
                "depositToAndDelegate(address,uint256,address,(address,(uint256,uint8,bytes32,bytes32)))": "infinite",
                "permitAndDepositToAndDelegate(address,uint256,address,(uint256,uint8,bytes32,bytes32),(address,(uint256,uint8,bytes32,bytes32)))": "infinite"
              },
              "internal": {
                "_depositTo(address,address,uint256,address,address)": "infinite",
                "_depositToAndDelegate(address,contract ITicket,address,uint256,address,struct DelegateSignature calldata)": "infinite"
              }
            },
            "methodIdentifiers": {
              "depositToAndDelegate(address,uint256,address,(address,(uint256,uint8,bytes32,bytes32)))": "c00dbd51",
              "permitAndDepositToAndDelegate(address,uint256,address,(uint256,uint8,bytes32,bytes32),(address,(uint256,uint8,bytes32,bytes32)))": "a81bc43b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IPrizePool\",\"name\":\"_prizePool\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"internalType\":\"struct Signature\",\"name\":\"signature\",\"type\":\"tuple\"}],\"internalType\":\"struct DelegateSignature\",\"name\":\"_delegateSignature\",\"type\":\"tuple\"}],\"name\":\"depositToAndDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IPrizePool\",\"name\":\"_prizePool\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"internalType\":\"struct Signature\",\"name\":\"_permitSignature\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"internalType\":\"struct Signature\",\"name\":\"signature\",\"type\":\"tuple\"}],\"internalType\":\"struct DelegateSignature\",\"name\":\"_delegateSignature\",\"type\":\"tuple\"}],\"name\":\"permitAndDepositToAndDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"custom:experimental\":\"This contract has not been fully audited yet.\",\"kind\":\"dev\",\"methods\":{\"depositToAndDelegate(address,uint256,address,(address,(uint256,uint8,bytes32,bytes32)))\":{\"params\":{\"_amount\":\"Amount of tokens to deposit into the prize pool\",\"_delegateSignature\":\"Delegate signature\",\"_prizePool\":\"Address of the prize pool to deposit into\",\"_to\":\"Address that will receive the tickets\"}},\"permitAndDepositToAndDelegate(address,uint256,address,(uint256,uint8,bytes32,bytes32),(address,(uint256,uint8,bytes32,bytes32)))\":{\"details\":\"The `spender` address required by the permit function is the address of this contract.\",\"params\":{\"_amount\":\"Amount of tokens to deposit into the prize pool\",\"_delegateSignature\":\"Delegate signature\",\"_permitSignature\":\"Permit signature\",\"_prizePool\":\"Address of the prize pool to deposit into\",\"_to\":\"Address that will receive the tickets\"}}},\"title\":\"Allows users to approve and deposit EIP-2612 compatible tokens into a prize pool in a single transaction.\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"depositToAndDelegate(address,uint256,address,(address,(uint256,uint8,bytes32,bytes32)))\":{\"notice\":\"Deposits user's token into the prize pool and delegate tickets.\"},\"permitAndDepositToAndDelegate(address,uint256,address,(uint256,uint8,bytes32,bytes32),(address,(uint256,uint8,bytes32,bytes32)))\":{\"notice\":\"Permits this contract to spend on a user's behalf and deposits into the prize pool.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/permit/EIP2612PermitAndDeposit.sol\":\"EIP2612PermitAndDeposit\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n */\\ninterface IERC20Permit {\\n    /**\\n     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\\n     * given ``owner``'s signed approval.\\n     *\\n     * IMPORTANT: The same issues {IERC20-approve} has related to transaction\\n     * ordering also apply here.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `deadline` must be a timestamp in the future.\\n     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\\n     * over the EIP712-formatted function arguments.\\n     * - the signature must use ``owner``'s current nonce (see {nonces}).\\n     *\\n     * For more information on the signature format, see the\\n     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\\n     * section].\\n     */\\n    function permit(\\n        address owner,\\n        address spender,\\n        uint256 value,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @dev Returns the current nonce for `owner`. This value must be\\n     * included whenever a signature is generated for {permit}.\\n     *\\n     * Every successful call to {permit} increases ``owner``'s nonce by one. This\\n     * prevents a signature from being used multiple times.\\n     */\\n    function nonces(address owner) external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view returns (bytes32);\\n}\\n\",\"keccak256\":\"0x3aab711a5f9a5a5a394191e928cc8258e8a243e855bb0275e7834f9686383277\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"},\"contracts/permit/EIP2612PermitAndDeposit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport \\\"../interfaces/IPrizePool.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\n/**\\n * @notice Secp256k1 signature values.\\n * @param deadline Timestamp at which the signature expires\\n * @param v `v` portion of the signature\\n * @param r `r` portion of the signature\\n * @param s `s` portion of the signature\\n */\\nstruct Signature {\\n    uint256 deadline;\\n    uint8 v;\\n    bytes32 r;\\n    bytes32 s;\\n}\\n\\n/**\\n * @notice Delegate signature to allow delegation of tickets to delegate.\\n * @param delegate Address to delegate the prize pool tickets to\\n * @param signature Delegate signature\\n */\\nstruct DelegateSignature {\\n    address delegate;\\n    Signature signature;\\n}\\n\\n/// @title Allows users to approve and deposit EIP-2612 compatible tokens into a prize pool in a single transaction.\\n/// @custom:experimental This contract has not been fully audited yet.\\ncontract EIP2612PermitAndDeposit {\\n    using SafeERC20 for IERC20;\\n\\n    /**\\n     * @notice Permits this contract to spend on a user's behalf and deposits into the prize pool.\\n     * @dev The `spender` address required by the permit function is the address of this contract.\\n     * @param _prizePool Address of the prize pool to deposit into\\n     * @param _amount Amount of tokens to deposit into the prize pool\\n     * @param _to Address that will receive the tickets\\n     * @param _permitSignature Permit signature\\n     * @param _delegateSignature Delegate signature\\n     */\\n    function permitAndDepositToAndDelegate(\\n        IPrizePool _prizePool,\\n        uint256 _amount,\\n        address _to,\\n        Signature calldata _permitSignature,\\n        DelegateSignature calldata _delegateSignature\\n    ) external {\\n        ITicket _ticket = _prizePool.getTicket();\\n        address _token = _prizePool.getToken();\\n\\n        IERC20Permit(_token).permit(\\n            msg.sender,\\n            address(this),\\n            _amount,\\n            _permitSignature.deadline,\\n            _permitSignature.v,\\n            _permitSignature.r,\\n            _permitSignature.s\\n        );\\n\\n        _depositToAndDelegate(\\n            address(_prizePool),\\n            _ticket,\\n            _token,\\n            _amount,\\n            _to,\\n            _delegateSignature\\n        );\\n    }\\n\\n    /**\\n     * @notice Deposits user's token into the prize pool and delegate tickets.\\n     * @param _prizePool Address of the prize pool to deposit into\\n     * @param _amount Amount of tokens to deposit into the prize pool\\n     * @param _to Address that will receive the tickets\\n     * @param _delegateSignature Delegate signature\\n     */\\n    function depositToAndDelegate(\\n        IPrizePool _prizePool,\\n        uint256 _amount,\\n        address _to,\\n        DelegateSignature calldata _delegateSignature\\n    ) external {\\n        ITicket _ticket = _prizePool.getTicket();\\n        address _token = _prizePool.getToken();\\n\\n        _depositToAndDelegate(\\n            address(_prizePool),\\n            _ticket,\\n            _token,\\n            _amount,\\n            _to,\\n            _delegateSignature\\n        );\\n    }\\n\\n    /**\\n     * @notice Deposits user's token into the prize pool and delegate tickets.\\n     * @param _prizePool Address of the prize pool to deposit into\\n     * @param _ticket Address of the ticket minted by the prize pool\\n     * @param _token Address of the token used to deposit into the prize pool\\n     * @param _amount Amount of tokens to deposit into the prize pool\\n     * @param _to Address that will receive the tickets\\n     * @param _delegateSignature Delegate signature\\n     */\\n    function _depositToAndDelegate(\\n        address _prizePool,\\n        ITicket _ticket,\\n        address _token,\\n        uint256 _amount,\\n        address _to,\\n        DelegateSignature calldata _delegateSignature\\n    ) internal {\\n        _depositTo(_token, msg.sender, _amount, _prizePool, _to);\\n\\n        Signature memory signature = _delegateSignature.signature;\\n\\n        _ticket.delegateWithSignature(\\n            _to,\\n            _delegateSignature.delegate,\\n            signature.deadline,\\n            signature.v,\\n            signature.r,\\n            signature.s\\n        );\\n    }\\n\\n    /**\\n     * @notice Deposits user's token into the prize pool.\\n     * @param _token Address of the EIP-2612 token to approve and deposit\\n     * @param _owner Token owner's address (Authorizer)\\n     * @param _amount Amount of tokens to deposit\\n     * @param _prizePool Address of the prize pool to deposit into\\n     * @param _to Address that will receive the tickets\\n     */\\n    function _depositTo(\\n        address _token,\\n        address _owner,\\n        uint256 _amount,\\n        address _prizePool,\\n        address _to\\n    ) internal {\\n        IERC20(_token).safeTransferFrom(_owner, address(this), _amount);\\n        IERC20(_token).safeIncreaseAllowance(_prizePool, _amount);\\n        IPrizePool(_prizePool).depositTo(_to, _amount);\\n    }\\n}\\n\",\"keccak256\":\"0x3144c696947c8ff9f694c87f82f54a96d2c443616f1aabf6e37c6e7e42070779\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "depositToAndDelegate(address,uint256,address,(address,(uint256,uint8,bytes32,bytes32)))": {
                "notice": "Deposits user's token into the prize pool and delegate tickets."
              },
              "permitAndDepositToAndDelegate(address,uint256,address,(uint256,uint8,bytes32,bytes32),(address,(uint256,uint8,bytes32,bytes32)))": {
                "notice": "Permits this contract to spend on a user's behalf and deposits into the prize pool."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/prize-pool/PrizePool.sol": {
        "PrizePool": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardCaptured",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Awarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardedExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256[]",
                  "name": "tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "AwardedExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "BalanceCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "ControlledTokenAdded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Deposited",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "bytes",
                  "name": "error",
                  "type": "bytes"
                }
              ],
              "name": "ErrorAwardingExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "LiquidityCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "PrizeStrategySet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                }
              ],
              "name": "TicketSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "TransferredExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "redeemed",
                  "type": "uint256"
                }
              ],
              "name": "Withdrawal",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "VERSION",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "award",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "awardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "awardExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256[]",
                  "name": "_tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "awardExternalERC721",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "balance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                }
              ],
              "name": "canAwardExternal",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "captureAwardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ICompLike",
                  "name": "_compLike",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                }
              ],
              "name": "compLikeDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "depositTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_delegate",
                  "type": "address"
                }
              ],
              "name": "depositToAndDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getAccountedBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBalanceCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLiquidityCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeStrategy",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getTicket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_controlledToken",
                  "type": "address"
                }
              ],
              "name": "isControlled",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                },
                {
                  "internalType": "bytes",
                  "name": "",
                  "type": "bytes"
                }
              ],
              "name": "onERC721Received",
              "outputs": [
                {
                  "internalType": "bytes4",
                  "name": "",
                  "type": "bytes4"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "setBalanceCap",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "setLiquidityCap",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "setPrizeStrategy",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_ticket",
                  "type": "address"
                }
              ],
              "name": "setTicket",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "transferExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_from",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawFrom",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "award(address,uint256)": {
                "details": "The amount awarded must be less than the awardBalance()",
                "params": {
                  "amount": "The amount of assets to be awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardBalance()": {
                "details": "captureAwardBalance() should be called first",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "awardExternalERC20(address,address,uint256)": {
                "details": "Used to award any arbitrary tokens held by the Prize Pool",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardExternalERC721(address,address,uint256[])": {
                "details": "Used to award any arbitrary NFTs held by the Prize Pool",
                "params": {
                  "externalToken": "The address of the external NFT token being awarded",
                  "to": "The address of the winner that receives the award",
                  "tokenIds": "An array of NFT Token IDs to be transferred"
                }
              },
              "balance()": {
                "returns": {
                  "_0": "The underlying balance of assets"
                }
              },
              "canAwardExternal(address)": {
                "details": "Checks with the Prize Pool if a specific token type may be awarded as an external prize",
                "params": {
                  "externalToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token may be awarded, false otherwise"
                }
              },
              "captureAwardBalance()": {
                "details": "This function also captures the reserve fees.",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "compLikeDelegate(address,address)": {
                "params": {
                  "compLike": "The COMP-like token held by the prize pool that should be delegated",
                  "to": "The address to delegate to"
                }
              },
              "constructor": {
                "params": {
                  "_owner": "Address of the Prize Pool owner"
                }
              },
              "depositTo(address,uint256)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "depositToAndDelegate(address,uint256,address)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "delegate": "The address to delegate to for the caller",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "getAccountedBalance()": {
                "returns": {
                  "_0": "uint256 accountBalance"
                }
              },
              "isControlled(address)": {
                "details": "Checks if a specific token is controlled by the Prize Pool",
                "params": {
                  "controlledToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token is a controlled token, false otherwise"
                }
              },
              "onERC721Received(address,address,uint256,bytes)": {
                "details": "Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`."
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setBalanceCap(uint256)": {
                "details": "If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.",
                "params": {
                  "balanceCap": "New balance cap."
                },
                "returns": {
                  "_0": "True if new balance cap has been successfully set."
                }
              },
              "setLiquidityCap(uint256)": {
                "params": {
                  "liquidityCap": "The new liquidity cap for the prize pool"
                }
              },
              "setPrizeStrategy(address)": {
                "params": {
                  "_prizeStrategy": "The new prize strategy."
                }
              },
              "setTicket(address)": {
                "params": {
                  "ticket": "Address of the ticket to set."
                },
                "returns": {
                  "_0": "True if ticket has been successfully set."
                }
              },
              "transferExternalERC20(address,address,uint256)": {
                "details": "Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              },
              "withdrawFrom(address,uint256)": {
                "params": {
                  "amount": "The amount of tokens to redeem for assets.",
                  "from": "The address to redeem tokens from."
                },
                "returns": {
                  "_0": "The actual amount withdrawn"
                }
              }
            },
            "title": "PoolTogether V4 PrizePool",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "VERSION()": "ffa1ad74",
              "award(address,uint256)": "5d8a776e",
              "awardBalance()": "630665b4",
              "awardExternalERC20(address,address,uint256)": "2b0ab144",
              "awardExternalERC721(address,address,uint256[])": "16960d55",
              "balance()": "b69ef8a8",
              "canAwardExternal(address)": "6a3fd4f9",
              "captureAwardBalance()": "e6d8a94b",
              "claimOwnership()": "4e71e0c8",
              "compLikeDelegate(address,address)": "2f7627e3",
              "depositTo(address,uint256)": "ffaad6a5",
              "depositToAndDelegate(address,uint256,address)": "d7a169eb",
              "getAccountedBalance()": "33e5761f",
              "getBalanceCap()": "08234319",
              "getLiquidityCap()": "b15a49c1",
              "getPrizeStrategy()": "d804abaf",
              "getTicket()": "c002c4d6",
              "getToken()": "21df0da7",
              "isControlled(address)": "78b3d327",
              "onERC721Received(address,address,uint256,bytes)": "150b7a02",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setBalanceCap(uint256)": "aec9c307",
              "setLiquidityCap(uint256)": "7b99adb1",
              "setPrizeStrategy(address)": "91ca480e",
              "setTicket(address)": "1c65c78b",
              "transferExternalERC20(address,address,uint256)": "13f55e39",
              "transferOwnership(address)": "f2fde38b",
              "withdrawFrom(address,uint256)": "9470b0bd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardCaptured\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Awarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardedExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"AwardedExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"balanceCap\",\"type\":\"uint256\"}],\"name\":\"BalanceCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"ControlledTokenAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Deposited\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"error\",\"type\":\"bytes\"}],\"name\":\"ErrorAwardingExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidityCap\",\"type\":\"uint256\"}],\"name\":\"LiquidityCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"prizeStrategy\",\"type\":\"address\"}],\"name\":\"PrizeStrategySet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"}],\"name\":\"TicketSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"TransferredExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"redeemed\",\"type\":\"uint256\"}],\"name\":\"Withdrawal\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"award\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"awardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"awardExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"_tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"awardExternalERC721\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"balance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"}],\"name\":\"canAwardExternal\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"captureAwardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ICompLike\",\"name\":\"_compLike\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"}],\"name\":\"compLikeDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"depositTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_delegate\",\"type\":\"address\"}],\"name\":\"depositToAndDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAccountedBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBalanceCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLiquidityCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeStrategy\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getTicket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_controlledToken\",\"type\":\"address\"}],\"name\":\"isControlled\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_balanceCap\",\"type\":\"uint256\"}],\"name\":\"setBalanceCap\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_liquidityCap\",\"type\":\"uint256\"}],\"name\":\"setLiquidityCap\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_prizeStrategy\",\"type\":\"address\"}],\"name\":\"setPrizeStrategy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_ticket\",\"type\":\"address\"}],\"name\":\"setTicket\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"transferExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFrom\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"award(address,uint256)\":{\"details\":\"The amount awarded must be less than the awardBalance()\",\"params\":{\"amount\":\"The amount of assets to be awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardBalance()\":{\"details\":\"captureAwardBalance() should be called first\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"awardExternalERC20(address,address,uint256)\":{\"details\":\"Used to award any arbitrary tokens held by the Prize Pool\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardExternalERC721(address,address,uint256[])\":{\"details\":\"Used to award any arbitrary NFTs held by the Prize Pool\",\"params\":{\"externalToken\":\"The address of the external NFT token being awarded\",\"to\":\"The address of the winner that receives the award\",\"tokenIds\":\"An array of NFT Token IDs to be transferred\"}},\"balance()\":{\"returns\":{\"_0\":\"The underlying balance of assets\"}},\"canAwardExternal(address)\":{\"details\":\"Checks with the Prize Pool if a specific token type may be awarded as an external prize\",\"params\":{\"externalToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token may be awarded, false otherwise\"}},\"captureAwardBalance()\":{\"details\":\"This function also captures the reserve fees.\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"compLikeDelegate(address,address)\":{\"params\":{\"compLike\":\"The COMP-like token held by the prize pool that should be delegated\",\"to\":\"The address to delegate to\"}},\"constructor\":{\"params\":{\"_owner\":\"Address of the Prize Pool owner\"}},\"depositTo(address,uint256)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"to\":\"The address receiving the newly minted tokens\"}},\"depositToAndDelegate(address,uint256,address)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"delegate\":\"The address to delegate to for the caller\",\"to\":\"The address receiving the newly minted tokens\"}},\"getAccountedBalance()\":{\"returns\":{\"_0\":\"uint256 accountBalance\"}},\"isControlled(address)\":{\"details\":\"Checks if a specific token is controlled by the Prize Pool\",\"params\":{\"controlledToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token is a controlled token, false otherwise\"}},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\"},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setBalanceCap(uint256)\":{\"details\":\"If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.\",\"params\":{\"balanceCap\":\"New balance cap.\"},\"returns\":{\"_0\":\"True if new balance cap has been successfully set.\"}},\"setLiquidityCap(uint256)\":{\"params\":{\"liquidityCap\":\"The new liquidity cap for the prize pool\"}},\"setPrizeStrategy(address)\":{\"params\":{\"_prizeStrategy\":\"The new prize strategy.\"}},\"setTicket(address)\":{\"params\":{\"ticket\":\"Address of the ticket to set.\"},\"returns\":{\"_0\":\"True if ticket has been successfully set.\"}},\"transferExternalERC20(address,address,uint256)\":{\"details\":\"Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}},\"withdrawFrom(address,uint256)\":{\"params\":{\"amount\":\"The amount of tokens to redeem for assets.\",\"from\":\"The address to redeem tokens from.\"},\"returns\":{\"_0\":\"The actual amount withdrawn\"}}},\"title\":\"PoolTogether V4 PrizePool\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"VERSION()\":{\"notice\":\"Semver Version\"},\"award(address,uint256)\":{\"notice\":\"Called by the prize strategy to award prizes.\"},\"awardBalance()\":{\"notice\":\"Returns the balance that is available to award.\"},\"awardExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to award external ERC20 prizes\"},\"awardExternalERC721(address,address,uint256[])\":{\"notice\":\"Called by the prize strategy to award external ERC721 prizes\"},\"captureAwardBalance()\":{\"notice\":\"Captures any available interest as award balance.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"compLikeDelegate(address,address)\":{\"notice\":\"Delegate the votes for a Compound COMP-like token held by the prize pool\"},\"constructor\":{\"notice\":\"Deploy the Prize Pool\"},\"depositTo(address,uint256)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens\"},\"depositToAndDelegate(address,uint256,address)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller.\"},\"getAccountedBalance()\":{\"notice\":\"Read internal Ticket accounted balance.\"},\"getBalanceCap()\":{\"notice\":\"Read internal balanceCap variable\"},\"getLiquidityCap()\":{\"notice\":\"Read internal liquidityCap variable\"},\"getPrizeStrategy()\":{\"notice\":\"Read prizeStrategy variable\"},\"getTicket()\":{\"notice\":\"Read ticket variable\"},\"getToken()\":{\"notice\":\"Read token variable\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setBalanceCap(uint256)\":{\"notice\":\"Allows the owner to set a balance cap per `token` for the pool.\"},\"setLiquidityCap(uint256)\":{\"notice\":\"Allows the Governor to set a cap on the amount of liquidity that he pool can hold\"},\"setPrizeStrategy(address)\":{\"notice\":\"Sets the prize strategy of the prize pool.  Only callable by the owner.\"},\"setTicket(address)\":{\"notice\":\"Set prize pool ticket.\"},\"transferExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to transfer out external ERC20 tokens\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"},\"withdrawFrom(address,uint256)\":{\"notice\":\"Withdraw assets from the Prize Pool instantly.\"}},\"notice\":\"Escrows assets and deposits them into a yield source.  Exposes interest to Prize Strategy. Users deposit and withdraw from this contract to participate in Prize Pool. Accounting is managed using Controlled Tokens, whose mint and burn functions can only be called by this contract. Must be inherited to provide specific yield-bearing asset control, such as Compound cTokens\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/prize-pool/PrizePool.sol\":\"PrizePool\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Contract module that helps prevent reentrant calls to a function.\\n *\\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\\n * available, which can be applied to functions to make sure there are no nested\\n * (reentrant) calls to them.\\n *\\n * Note that because there is a single `nonReentrant` guard, functions marked as\\n * `nonReentrant` may not call one another. This can be worked around by making\\n * those functions `private`, and then adding `external` `nonReentrant` entry\\n * points to them.\\n *\\n * TIP: If you would like to learn more about reentrancy and alternative ways\\n * to protect against it, check out our blog post\\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\\n */\\nabstract contract ReentrancyGuard {\\n    // Booleans are more expensive than uint256 or any type that takes up a full\\n    // word because each write operation emits an extra SLOAD to first read the\\n    // slot's contents, replace the bits taken up by the boolean, and then write\\n    // back. This is the compiler's defense against contract upgrades and\\n    // pointer aliasing, and it cannot be disabled.\\n\\n    // The values being non-zero value makes deployment a bit more expensive,\\n    // but in exchange the refund on every call to nonReentrant will be lower in\\n    // amount. Since refunds are capped to a percentage of the total\\n    // transaction's gas, it is best to keep them low in cases like this one, to\\n    // increase the likelihood of the full refund coming into effect.\\n    uint256 private constant _NOT_ENTERED = 1;\\n    uint256 private constant _ENTERED = 2;\\n\\n    uint256 private _status;\\n\\n    constructor() {\\n        _status = _NOT_ENTERED;\\n    }\\n\\n    /**\\n     * @dev Prevents a contract from calling itself, directly or indirectly.\\n     * Calling a `nonReentrant` function from another `nonReentrant`\\n     * function is not supported. It is possible to prevent this from happening\\n     * by making the `nonReentrant` function external, and make it call a\\n     * `private` function that does the actual work.\\n     */\\n    modifier nonReentrant() {\\n        // On the first call to nonReentrant, _notEntered will be true\\n        require(_status != _ENTERED, \\\"ReentrancyGuard: reentrant call\\\");\\n\\n        // Any calls to nonReentrant after this point will fail\\n        _status = _ENTERED;\\n\\n        _;\\n\\n        // By storing the original value once again, a refund is triggered (see\\n        // https://eips.ethereum.org/EIPS/eip-2200)\\n        _status = _NOT_ENTERED;\\n    }\\n}\\n\",\"keccak256\":\"0x842ccf9a6cd33e17b7acef8372ca42090755217b358fe0c44c98e951ea549d3a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../../utils/introspection/IERC165.sol\\\";\\n\\n/**\\n * @dev Required interface of an ERC721 compliant contract.\\n */\\ninterface IERC721 is IERC165 {\\n    /**\\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\\n     */\\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\\n     */\\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\\n\\n    /**\\n     * @dev Returns the number of tokens in ``owner``'s account.\\n     */\\n    function balanceOf(address owner) external view returns (uint256 balance);\\n\\n    /**\\n     * @dev Returns the owner of the `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function ownerOf(uint256 tokenId) external view returns (address owner);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Transfers `tokenId` token from `from` to `to`.\\n     *\\n     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\\n     * The approval is cleared when the token is transferred.\\n     *\\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\\n     *\\n     * Requirements:\\n     *\\n     * - The caller must own the token or be an approved operator.\\n     * - `tokenId` must exist.\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address to, uint256 tokenId) external;\\n\\n    /**\\n     * @dev Returns the account approved for `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function getApproved(uint256 tokenId) external view returns (address operator);\\n\\n    /**\\n     * @dev Approve or remove `operator` as an operator for the caller.\\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\\n     *\\n     * Requirements:\\n     *\\n     * - The `operator` cannot be the caller.\\n     *\\n     * Emits an {ApprovalForAll} event.\\n     */\\n    function setApprovalForAll(address operator, bool _approved) external;\\n\\n    /**\\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\\n     *\\n     * See {setApprovalForAll}\\n     */\\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external;\\n}\\n\",\"keccak256\":\"0xf101e8720213560fab41104d53b3cc7ba0456ef3a98455aa7f022391783144a0\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title ERC721 token receiver interface\\n * @dev Interface for any contract that wants to support safeTransfers\\n * from ERC721 asset contracts.\\n */\\ninterface IERC721Receiver {\\n    /**\\n     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\\n     * by `operator` from `from`, this function is called.\\n     *\\n     * It must return its Solidity selector to confirm the token transfer.\\n     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\\n     *\\n     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\\n     */\\n    function onERC721Received(\\n        address operator,\\n        address from,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external returns (bytes4);\\n}\\n\",\"keccak256\":\"0xd9517254724276e2e8de3769183c1f738f445f0095c26fd9b86d3c6687e887b9\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC165.sol\\\";\\n\\n/**\\n * @dev Library used to query support of an interface declared via {IERC165}.\\n *\\n * Note that these functions return the actual result of the query: they do not\\n * `revert` if an interface is not supported. It is up to the caller to decide\\n * what to do in these cases.\\n */\\nlibrary ERC165Checker {\\n    // As per the EIP-165 spec, no interface should ever match 0xffffffff\\n    bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;\\n\\n    /**\\n     * @dev Returns true if `account` supports the {IERC165} interface,\\n     */\\n    function supportsERC165(address account) internal view returns (bool) {\\n        // Any contract that implements ERC165 must explicitly indicate support of\\n        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid\\n        return\\n            _supportsERC165Interface(account, type(IERC165).interfaceId) &&\\n            !_supportsERC165Interface(account, _INTERFACE_ID_INVALID);\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports the interface defined by\\n     * `interfaceId`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {\\n        // query support of both ERC165 as per the spec and support of _interfaceId\\n        return supportsERC165(account) && _supportsERC165Interface(account, interfaceId);\\n    }\\n\\n    /**\\n     * @dev Returns a boolean array where each value corresponds to the\\n     * interfaces passed in and whether they're supported or not. This allows\\n     * you to batch check interfaces for a contract where your expectation\\n     * is that some interfaces may not be supported.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function getSupportedInterfaces(address account, bytes4[] memory interfaceIds)\\n        internal\\n        view\\n        returns (bool[] memory)\\n    {\\n        // an array of booleans corresponding to interfaceIds and whether they're supported or not\\n        bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);\\n\\n        // query support of ERC165 itself\\n        if (supportsERC165(account)) {\\n            // query support of each interface in interfaceIds\\n            for (uint256 i = 0; i < interfaceIds.length; i++) {\\n                interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]);\\n            }\\n        }\\n\\n        return interfaceIdsSupported;\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports all the interfaces defined in\\n     * `interfaceIds`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * Batch-querying can lead to gas savings by skipping repeated checks for\\n     * {IERC165} support.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {\\n        // query support of ERC165 itself\\n        if (!supportsERC165(account)) {\\n            return false;\\n        }\\n\\n        // query support of each interface in _interfaceIds\\n        for (uint256 i = 0; i < interfaceIds.length; i++) {\\n            if (!_supportsERC165Interface(account, interfaceIds[i])) {\\n                return false;\\n            }\\n        }\\n\\n        // all interfaces supported\\n        return true;\\n    }\\n\\n    /**\\n     * @notice Query if a contract implements an interface, does not check ERC165 support\\n     * @param account The address of the contract to query for support of an interface\\n     * @param interfaceId The interface identifier, as specified in ERC-165\\n     * @return true if the contract at account indicates support of the interface with\\n     * identifier interfaceId, false otherwise\\n     * @dev Assumes that account contains a contract that supports ERC165, otherwise\\n     * the behavior of this method is undefined. This precondition can be checked\\n     * with {supportsERC165}.\\n     * Interface identification is specified in ERC-165.\\n     */\\n    function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {\\n        bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId);\\n        (bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams);\\n        if (result.length < 32) return false;\\n        return success && abi.decode(result, (bool));\\n    }\\n}\\n\",\"keccak256\":\"0xaf583f9537cf446d08c33909e52313d349a831f6b88f20361b76474e40b4c36f\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"},\"contracts/prize-pool/PrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\nimport \\\"@openzeppelin/contracts/security/ReentrancyGuard.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC721/IERC721.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\\\";\\nimport \\\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/IPrizePool.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizePool\\n  * @author PoolTogether Inc Team\\n  * @notice Escrows assets and deposits them into a yield source.  Exposes interest to Prize Strategy.\\n            Users deposit and withdraw from this contract to participate in Prize Pool.\\n            Accounting is managed using Controlled Tokens, whose mint and burn functions can only be called by this contract.\\n            Must be inherited to provide specific yield-bearing asset control, such as Compound cTokens\\n*/\\nabstract contract PrizePool is IPrizePool, Ownable, ReentrancyGuard, IERC721Receiver {\\n    using SafeCast for uint256;\\n    using SafeERC20 for IERC20;\\n    using ERC165Checker for address;\\n\\n    /// @notice Semver Version\\n    string public constant VERSION = \\\"4.0.0\\\";\\n\\n    /// @notice Prize Pool ticket. Can only be set once by calling `setTicket()`.\\n    ITicket internal ticket;\\n\\n    /// @notice The Prize Strategy that this Prize Pool is bound to.\\n    address internal prizeStrategy;\\n\\n    /// @notice The total amount of tickets a user can hold.\\n    uint256 internal balanceCap;\\n\\n    /// @notice The total amount of funds that the prize pool can hold.\\n    uint256 internal liquidityCap;\\n\\n    /// @notice the The awardable balance\\n    uint256 internal _currentAwardBalance;\\n\\n    /* ============ Modifiers ============ */\\n\\n    /// @dev Function modifier to ensure caller is the prize-strategy\\n    modifier onlyPrizeStrategy() {\\n        require(msg.sender == prizeStrategy, \\\"PrizePool/only-prizeStrategy\\\");\\n        _;\\n    }\\n\\n    /// @dev Function modifier to ensure the deposit amount does not exceed the liquidity cap (if set)\\n    modifier canAddLiquidity(uint256 _amount) {\\n        require(_canAddLiquidity(_amount), \\\"PrizePool/exceeds-liquidity-cap\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /// @notice Deploy the Prize Pool\\n    /// @param _owner Address of the Prize Pool owner\\n    constructor(address _owner) Ownable(_owner) ReentrancyGuard() {\\n        _setLiquidityCap(type(uint256).max);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizePool\\n    function balance() external override returns (uint256) {\\n        return _balance();\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardBalance() external view override returns (uint256) {\\n        return _currentAwardBalance;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function canAwardExternal(address _externalToken) external view override returns (bool) {\\n        return _canAwardExternal(_externalToken);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function isControlled(ITicket _controlledToken) external view override returns (bool) {\\n        return _isControlled(_controlledToken);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getAccountedBalance() external view override returns (uint256) {\\n        return _ticketTotalSupply();\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getBalanceCap() external view override returns (uint256) {\\n        return balanceCap;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getLiquidityCap() external view override returns (uint256) {\\n        return liquidityCap;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getTicket() external view override returns (ITicket) {\\n        return ticket;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getPrizeStrategy() external view override returns (address) {\\n        return prizeStrategy;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getToken() external view override returns (address) {\\n        return address(_token());\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function captureAwardBalance() external override nonReentrant returns (uint256) {\\n        uint256 ticketTotalSupply = _ticketTotalSupply();\\n        uint256 currentAwardBalance = _currentAwardBalance;\\n\\n        // it's possible for the balance to be slightly less due to rounding errors in the underlying yield source\\n        uint256 currentBalance = _balance();\\n        uint256 totalInterest = (currentBalance > ticketTotalSupply)\\n            ? currentBalance - ticketTotalSupply\\n            : 0;\\n\\n        uint256 unaccountedPrizeBalance = (totalInterest > currentAwardBalance)\\n            ? totalInterest - currentAwardBalance\\n            : 0;\\n\\n        if (unaccountedPrizeBalance > 0) {\\n            currentAwardBalance = totalInterest;\\n            _currentAwardBalance = currentAwardBalance;\\n\\n            emit AwardCaptured(unaccountedPrizeBalance);\\n        }\\n\\n        return currentAwardBalance;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function depositTo(address _to, uint256 _amount)\\n        external\\n        override\\n        nonReentrant\\n        canAddLiquidity(_amount)\\n    {\\n        _depositTo(msg.sender, _to, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function depositToAndDelegate(address _to, uint256 _amount, address _delegate)\\n        external\\n        override\\n        nonReentrant\\n        canAddLiquidity(_amount)\\n    {\\n        _depositTo(msg.sender, _to, _amount);\\n        ticket.controllerDelegateFor(msg.sender, _delegate);\\n    }\\n\\n    /// @notice Transfers tokens in from one user and mints tickets to another\\n    /// @notice _operator The user to transfer tokens from\\n    /// @notice _to The user to mint tickets to\\n    /// @notice _amount The amount to transfer and mint\\n    function _depositTo(address _operator, address _to, uint256 _amount) internal\\n    {\\n        require(_canDeposit(_to, _amount), \\\"PrizePool/exceeds-balance-cap\\\");\\n\\n        ITicket _ticket = ticket;\\n\\n        _token().safeTransferFrom(_operator, address(this), _amount);\\n\\n        _mint(_to, _amount, _ticket);\\n        _supply(_amount);\\n\\n        emit Deposited(_operator, _to, _ticket, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function withdrawFrom(address _from, uint256 _amount)\\n        external\\n        override\\n        nonReentrant\\n        returns (uint256)\\n    {\\n        ITicket _ticket = ticket;\\n\\n        // burn the tickets\\n        _ticket.controllerBurnFrom(msg.sender, _from, _amount);\\n\\n        // redeem the tickets\\n        uint256 _redeemed = _redeem(_amount);\\n\\n        _token().safeTransfer(_from, _redeemed);\\n\\n        emit Withdrawal(msg.sender, _from, _ticket, _amount, _redeemed);\\n\\n        return _redeemed;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function award(address _to, uint256 _amount) external override onlyPrizeStrategy {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        uint256 currentAwardBalance = _currentAwardBalance;\\n\\n        require(_amount <= currentAwardBalance, \\\"PrizePool/award-exceeds-avail\\\");\\n\\n        unchecked {\\n            _currentAwardBalance = currentAwardBalance - _amount;\\n        }\\n\\n        ITicket _ticket = ticket;\\n\\n        _mint(_to, _amount, _ticket);\\n\\n        emit Awarded(_to, _ticket, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function transferExternalERC20(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) external override onlyPrizeStrategy {\\n        if (_transferOut(_to, _externalToken, _amount)) {\\n            emit TransferredExternalERC20(_to, _externalToken, _amount);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardExternalERC20(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) external override onlyPrizeStrategy {\\n        if (_transferOut(_to, _externalToken, _amount)) {\\n            emit AwardedExternalERC20(_to, _externalToken, _amount);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardExternalERC721(\\n        address _to,\\n        address _externalToken,\\n        uint256[] calldata _tokenIds\\n    ) external override onlyPrizeStrategy {\\n        require(_canAwardExternal(_externalToken), \\\"PrizePool/invalid-external-token\\\");\\n\\n        if (_tokenIds.length == 0) {\\n            return;\\n        }\\n\\n        uint256[] memory _awardedTokenIds = new uint256[](_tokenIds.length); \\n        bool hasAwardedTokenIds;\\n\\n        for (uint256 i = 0; i < _tokenIds.length; i++) {\\n            try IERC721(_externalToken).safeTransferFrom(address(this), _to, _tokenIds[i]) {\\n                hasAwardedTokenIds = true;\\n                _awardedTokenIds[i] = _tokenIds[i];\\n            } catch (\\n                bytes memory error\\n            ) {\\n                emit ErrorAwardingExternalERC721(error);\\n            }\\n        }\\n        if (hasAwardedTokenIds) { \\n            emit AwardedExternalERC721(_to, _externalToken, _awardedTokenIds);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setBalanceCap(uint256 _balanceCap) external override onlyOwner returns (bool) {\\n        _setBalanceCap(_balanceCap);\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setLiquidityCap(uint256 _liquidityCap) external override onlyOwner {\\n        _setLiquidityCap(_liquidityCap);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setTicket(ITicket _ticket) external override onlyOwner returns (bool) {\\n        require(address(_ticket) != address(0), \\\"PrizePool/ticket-not-zero-address\\\");\\n        require(address(ticket) == address(0), \\\"PrizePool/ticket-already-set\\\");\\n\\n        ticket = _ticket;\\n\\n        emit TicketSet(_ticket);\\n\\n        _setBalanceCap(type(uint256).max);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setPrizeStrategy(address _prizeStrategy) external override onlyOwner {\\n        _setPrizeStrategy(_prizeStrategy);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function compLikeDelegate(ICompLike _compLike, address _to) external override onlyOwner {\\n        if (_compLike.balanceOf(address(this)) > 0) {\\n            _compLike.delegate(_to);\\n        }\\n    }\\n\\n    /// @inheritdoc IERC721Receiver\\n    function onERC721Received(\\n        address,\\n        address,\\n        uint256,\\n        bytes calldata\\n    ) external pure override returns (bytes4) {\\n        return IERC721Receiver.onERC721Received.selector;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /// @notice Transfer out `amount` of `externalToken` to recipient `to`\\n    /// @dev Only awardable `externalToken` can be transferred out\\n    /// @param _to Recipient address\\n    /// @param _externalToken Address of the external asset token being transferred\\n    /// @param _amount Amount of external assets to be transferred\\n    /// @return True if transfer is successful\\n    function _transferOut(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) internal returns (bool) {\\n        require(_canAwardExternal(_externalToken), \\\"PrizePool/invalid-external-token\\\");\\n\\n        if (_amount == 0) {\\n            return false;\\n        }\\n\\n        IERC20(_externalToken).safeTransfer(_to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @notice Called to mint controlled tokens.  Ensures that token listener callbacks are fired.\\n    /// @param _to The user who is receiving the tokens\\n    /// @param _amount The amount of tokens they are receiving\\n    /// @param _controlledToken The token that is going to be minted\\n    function _mint(\\n        address _to,\\n        uint256 _amount,\\n        ITicket _controlledToken\\n    ) internal {\\n        _controlledToken.controllerMint(_to, _amount);\\n    }\\n\\n    /// @dev Checks if `user` can deposit in the Prize Pool based on the current balance cap.\\n    /// @param _user Address of the user depositing.\\n    /// @param _amount The amount of tokens to be deposited into the Prize Pool.\\n    /// @return True if the Prize Pool can receive the specified `amount` of tokens.\\n    function _canDeposit(address _user, uint256 _amount) internal view returns (bool) {\\n        uint256 _balanceCap = balanceCap;\\n\\n        if (_balanceCap == type(uint256).max) return true;\\n\\n        return (ticket.balanceOf(_user) + _amount <= _balanceCap);\\n    }\\n\\n    /// @dev Checks if the Prize Pool can receive liquidity based on the current cap\\n    /// @param _amount The amount of liquidity to be added to the Prize Pool\\n    /// @return True if the Prize Pool can receive the specified amount of liquidity\\n    function _canAddLiquidity(uint256 _amount) internal view returns (bool) {\\n        uint256 _liquidityCap = liquidityCap;\\n        if (_liquidityCap == type(uint256).max) return true;\\n        return (_ticketTotalSupply() + _amount <= _liquidityCap);\\n    }\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param _controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function _isControlled(ITicket _controlledToken) internal view returns (bool) {\\n        return (ticket == _controlledToken);\\n    }\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @param _balanceCap New balance cap.\\n    function _setBalanceCap(uint256 _balanceCap) internal {\\n        balanceCap = _balanceCap;\\n        emit BalanceCapSet(_balanceCap);\\n    }\\n\\n    /// @notice Allows the owner to set a liquidity cap for the pool\\n    /// @param _liquidityCap New liquidity cap\\n    function _setLiquidityCap(uint256 _liquidityCap) internal {\\n        liquidityCap = _liquidityCap;\\n        emit LiquidityCapSet(_liquidityCap);\\n    }\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy\\n    function _setPrizeStrategy(address _prizeStrategy) internal {\\n        require(_prizeStrategy != address(0), \\\"PrizePool/prizeStrategy-not-zero\\\");\\n\\n        prizeStrategy = _prizeStrategy;\\n\\n        emit PrizeStrategySet(_prizeStrategy);\\n    }\\n\\n    /// @notice The current total of tickets.\\n    /// @return Ticket total supply.\\n    function _ticketTotalSupply() internal view returns (uint256) {\\n        return ticket.totalSupply();\\n    }\\n\\n    /// @dev Gets the current time as represented by the current block\\n    /// @return The timestamp of the current block\\n    function _currentTime() internal view virtual returns (uint256) {\\n        return block.timestamp;\\n    }\\n\\n    /* ============ Abstract Contract Implementatiton ============ */\\n\\n    /// @notice Determines whether the passed token can be transferred out as an external award.\\n    /// @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\\n    /// prize strategy should not be allowed to move those tokens.\\n    /// @param _externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function _canAwardExternal(address _externalToken) internal view virtual returns (bool);\\n\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token\\n    function _token() internal view virtual returns (IERC20);\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens\\n    function _balance() internal virtual returns (uint256);\\n\\n    /// @notice Supplies asset tokens to the yield source.\\n    /// @param _mintAmount The amount of asset tokens to be supplied\\n    function _supply(uint256 _mintAmount) internal virtual;\\n\\n    /// @notice Redeems asset tokens from the yield source.\\n    /// @param _redeemAmount The amount of yield-bearing tokens to be redeemed\\n    /// @return The actual amount of tokens that were redeemed.\\n    function _redeem(uint256 _redeemAmount) internal virtual returns (uint256);\\n}\\n\",\"keccak256\":\"0x7b5a51eb6c75a9a88a6f36c76cbaaab6db5396bacb2c82b3a2aeada33b3ca103\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 10,
                "contract": "contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "_status",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 13863,
                "contract": "contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "ticket",
                "offset": 0,
                "slot": "3",
                "type": "t_contract(ITicket)12213"
              },
              {
                "astId": 13866,
                "contract": "contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "prizeStrategy",
                "offset": 0,
                "slot": "4",
                "type": "t_address"
              },
              {
                "astId": 13869,
                "contract": "contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "balanceCap",
                "offset": 0,
                "slot": "5",
                "type": "t_uint256"
              },
              {
                "astId": 13872,
                "contract": "contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "liquidityCap",
                "offset": 0,
                "slot": "6",
                "type": "t_uint256"
              },
              {
                "astId": 13875,
                "contract": "contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "_currentAwardBalance",
                "offset": 0,
                "slot": "7",
                "type": "t_uint256"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(ITicket)12213": {
                "encoding": "inplace",
                "label": "contract ITicket",
                "numberOfBytes": "20"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "VERSION()": {
                "notice": "Semver Version"
              },
              "award(address,uint256)": {
                "notice": "Called by the prize strategy to award prizes."
              },
              "awardBalance()": {
                "notice": "Returns the balance that is available to award."
              },
              "awardExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to award external ERC20 prizes"
              },
              "awardExternalERC721(address,address,uint256[])": {
                "notice": "Called by the prize strategy to award external ERC721 prizes"
              },
              "captureAwardBalance()": {
                "notice": "Captures any available interest as award balance."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "compLikeDelegate(address,address)": {
                "notice": "Delegate the votes for a Compound COMP-like token held by the prize pool"
              },
              "constructor": {
                "notice": "Deploy the Prize Pool"
              },
              "depositTo(address,uint256)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens"
              },
              "depositToAndDelegate(address,uint256,address)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller."
              },
              "getAccountedBalance()": {
                "notice": "Read internal Ticket accounted balance."
              },
              "getBalanceCap()": {
                "notice": "Read internal balanceCap variable"
              },
              "getLiquidityCap()": {
                "notice": "Read internal liquidityCap variable"
              },
              "getPrizeStrategy()": {
                "notice": "Read prizeStrategy variable"
              },
              "getTicket()": {
                "notice": "Read ticket variable"
              },
              "getToken()": {
                "notice": "Read token variable"
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setBalanceCap(uint256)": {
                "notice": "Allows the owner to set a balance cap per `token` for the pool."
              },
              "setLiquidityCap(uint256)": {
                "notice": "Allows the Governor to set a cap on the amount of liquidity that he pool can hold"
              },
              "setPrizeStrategy(address)": {
                "notice": "Sets the prize strategy of the prize pool.  Only callable by the owner."
              },
              "setTicket(address)": {
                "notice": "Set prize pool ticket."
              },
              "transferExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to transfer out external ERC20 tokens"
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              },
              "withdrawFrom(address,uint256)": {
                "notice": "Withdraw assets from the Prize Pool instantly."
              }
            },
            "notice": "Escrows assets and deposits them into a yield source.  Exposes interest to Prize Strategy. Users deposit and withdraw from this contract to participate in Prize Pool. Accounting is managed using Controlled Tokens, whose mint and burn functions can only be called by this contract. Must be inherited to provide specific yield-bearing asset control, such as Compound cTokens",
            "version": 1
          }
        }
      },
      "contracts/prize-pool/StakePrizePool.sol": {
        "StakePrizePool": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IERC20",
                  "name": "_stakeToken",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardCaptured",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Awarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardedExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256[]",
                  "name": "tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "AwardedExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "BalanceCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "ControlledTokenAdded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IERC20",
                  "name": "stakeToken",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Deposited",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "bytes",
                  "name": "error",
                  "type": "bytes"
                }
              ],
              "name": "ErrorAwardingExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "LiquidityCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "PrizeStrategySet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                }
              ],
              "name": "TicketSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "TransferredExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "redeemed",
                  "type": "uint256"
                }
              ],
              "name": "Withdrawal",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "VERSION",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "award",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "awardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "awardExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256[]",
                  "name": "_tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "awardExternalERC721",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "balance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                }
              ],
              "name": "canAwardExternal",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "captureAwardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ICompLike",
                  "name": "_compLike",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                }
              ],
              "name": "compLikeDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "depositTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_delegate",
                  "type": "address"
                }
              ],
              "name": "depositToAndDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getAccountedBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBalanceCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLiquidityCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeStrategy",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getTicket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_controlledToken",
                  "type": "address"
                }
              ],
              "name": "isControlled",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                },
                {
                  "internalType": "bytes",
                  "name": "",
                  "type": "bytes"
                }
              ],
              "name": "onERC721Received",
              "outputs": [
                {
                  "internalType": "bytes4",
                  "name": "",
                  "type": "bytes4"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "setBalanceCap",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "setLiquidityCap",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "setPrizeStrategy",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_ticket",
                  "type": "address"
                }
              ],
              "name": "setTicket",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "transferExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_from",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawFrom",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "Deployed(address)": {
                "details": "Emitted when stake prize pool is deployed.",
                "params": {
                  "stakeToken": "Address of the stake token."
                }
              }
            },
            "kind": "dev",
            "methods": {
              "award(address,uint256)": {
                "details": "The amount awarded must be less than the awardBalance()",
                "params": {
                  "amount": "The amount of assets to be awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardBalance()": {
                "details": "captureAwardBalance() should be called first",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "awardExternalERC20(address,address,uint256)": {
                "details": "Used to award any arbitrary tokens held by the Prize Pool",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardExternalERC721(address,address,uint256[])": {
                "details": "Used to award any arbitrary NFTs held by the Prize Pool",
                "params": {
                  "externalToken": "The address of the external NFT token being awarded",
                  "to": "The address of the winner that receives the award",
                  "tokenIds": "An array of NFT Token IDs to be transferred"
                }
              },
              "balance()": {
                "returns": {
                  "_0": "The underlying balance of assets"
                }
              },
              "canAwardExternal(address)": {
                "details": "Checks with the Prize Pool if a specific token type may be awarded as an external prize",
                "params": {
                  "externalToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token may be awarded, false otherwise"
                }
              },
              "captureAwardBalance()": {
                "details": "This function also captures the reserve fees.",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "compLikeDelegate(address,address)": {
                "params": {
                  "compLike": "The COMP-like token held by the prize pool that should be delegated",
                  "to": "The address to delegate to"
                }
              },
              "constructor": {
                "params": {
                  "_owner": "Address of the Stake Prize Pool owner",
                  "_stakeToken": "Address of the stake token"
                }
              },
              "depositTo(address,uint256)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "depositToAndDelegate(address,uint256,address)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "delegate": "The address to delegate to for the caller",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "getAccountedBalance()": {
                "returns": {
                  "_0": "uint256 accountBalance"
                }
              },
              "isControlled(address)": {
                "details": "Checks if a specific token is controlled by the Prize Pool",
                "params": {
                  "controlledToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token is a controlled token, false otherwise"
                }
              },
              "onERC721Received(address,address,uint256,bytes)": {
                "details": "Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`."
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setBalanceCap(uint256)": {
                "details": "If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.",
                "params": {
                  "balanceCap": "New balance cap."
                },
                "returns": {
                  "_0": "True if new balance cap has been successfully set."
                }
              },
              "setLiquidityCap(uint256)": {
                "params": {
                  "liquidityCap": "The new liquidity cap for the prize pool"
                }
              },
              "setPrizeStrategy(address)": {
                "params": {
                  "_prizeStrategy": "The new prize strategy."
                }
              },
              "setTicket(address)": {
                "params": {
                  "ticket": "Address of the ticket to set."
                },
                "returns": {
                  "_0": "True if ticket has been successfully set."
                }
              },
              "transferExternalERC20(address,address,uint256)": {
                "details": "Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              },
              "withdrawFrom(address,uint256)": {
                "params": {
                  "amount": "The amount of tokens to redeem for assets.",
                  "from": "The address to redeem tokens from."
                },
                "returns": {
                  "_0": "The actual amount withdrawn"
                }
              }
            },
            "title": "PoolTogether V4 StakePrizePool",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_13922": {
                  "entryPoint": null,
                  "id": 13922,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_14926": {
                  "entryPoint": null,
                  "id": 14926,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_18": {
                  "entryPoint": null,
                  "id": 18,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_3961": {
                  "entryPoint": null,
                  "id": 3961,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setLiquidityCap_14793": {
                  "entryPoint": 355,
                  "id": 14793,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 275,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IERC20_$663_fromMemory": {
                  "entryPoint": 414,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_stringliteral_f1ff3ac5776bf3a9ba71032559232613105ede74d206130def2b107a45468a3c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 477,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1145:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "126:287:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "172:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "181:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "184:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "174:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "174:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "174:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "147:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "156:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "143:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "143:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "168:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "139:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "139:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "136:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "197:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "216:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "210:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "210:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "201:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "260:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "235:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "235:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "235:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "275:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "285:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "275:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "299:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "324:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "335:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "320:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "320:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "314:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "314:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "303:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "373:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "348:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "348:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "348:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "390:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "400:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "390:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IERC20_$663_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "84:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "95:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "107:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "115:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "592:233:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "609:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "620:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "602:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "602:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "602:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "643:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "654:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "639:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "639:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "659:2:84",
                                    "type": "",
                                    "value": "43"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "632:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "632:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "632:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "682:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "693:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "678:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "678:18:84"
                                  },
                                  {
                                    "hexValue": "5374616b655072697a65506f6f6c2f7374616b652d746f6b656e2d6e6f742d7a",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "698:34:84",
                                    "type": "",
                                    "value": "StakePrizePool/stake-token-not-z"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "671:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "671:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "671:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "753:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "764:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "749:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "749:18:84"
                                  },
                                  {
                                    "hexValue": "65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "769:13:84",
                                    "type": "",
                                    "value": "ero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "742:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "742:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "742:41:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "792:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "804:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "815:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "800:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "800:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "792:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f1ff3ac5776bf3a9ba71032559232613105ede74d206130def2b107a45468a3c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "569:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "583:4:84",
                            "type": ""
                          }
                        ],
                        "src": "418:407:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "931:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "941:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "953:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "964:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "949:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "949:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "941:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "983:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "994:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "976:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "976:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "976:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "900:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "911:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "922:4:84",
                            "type": ""
                          }
                        ],
                        "src": "830:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1057:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1121:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1130:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1133:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1123:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1123:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1123:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1080:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1091:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1106:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1111:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1102:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1102:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1115:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1098:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1098:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1087:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1087:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1077:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1077:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1070:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1070:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1067:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1046:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1012:131:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IERC20_$663_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_stringliteral_f1ff3ac5776bf3a9ba71032559232613105ede74d206130def2b107a45468a3c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 43)\n        mstore(add(headStart, 64), \"StakePrizePool/stake-token-not-z\")\n        mstore(add(headStart, 96), \"ero-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b50604051620024213803806200242183398101604081905262000034916200019e565b8180620000418162000113565b5060016002556200005460001962000163565b506001600160a01b038116620000c45760405162461bcd60e51b815260206004820152602b60248201527f5374616b655072697a65506f6f6c2f7374616b652d746f6b656e2d6e6f742d7a60448201526a65726f2d6164647265737360a81b606482015260840160405180910390fd5b600880546001600160a01b0319166001600160a01b0383169081179091556040517ff40fcec21964ffb566044d083b4073f29f7f7929110ea19e1b3ebe375d89055e90600090a25050620001f6565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60068190556040518181527f3ff20538222f568f27ff436c0c49dfd3e48d5b8f86533a3f759dc1c7089775ab9060200160405180910390a150565b60008060408385031215620001b257600080fd5b8251620001bf81620001dd565b6020840151909250620001d281620001dd565b809150509250929050565b6001600160a01b0381168114620001f357600080fd5b50565b61221b80620002066000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80637b99adb111610104578063c002c4d6116100a2578063e6d8a94b11610071578063e6d8a94b146103fc578063f2fde38b14610404578063ffa1ad7414610417578063ffaad6a51461046057600080fd5b8063c002c4d6146103b6578063d7a169eb146103c7578063d804abaf146103da578063e30c3978146103eb57600080fd5b80639470b0bd116100de5780639470b0bd14610380578063aec9c30714610393578063b15a49c1146103a6578063b69ef8a8146103ae57600080fd5b80637b99adb1146103495780638da5cb5b1461035c57806391ca480e1461036d57600080fd5b80632f7627e31161017c578063630665b41161014b578063630665b4146103135780636a3fd4f91461031b578063715018a61461032e57806378b3d3271461033657600080fd5b80632f7627e3146102dd57806333e5761f146102f05780634e71e0c8146102f85780635d8a776e1461030057600080fd5b806316960d55116101b857806316960d55146102745780631c65c78b1461028757806321df0da7146102aa5780632b0ab144146102ca57600080fd5b806308234319146101df57806313f55e39146101f6578063150b7a021461020b575b600080fd5b6005545b6040519081526020015b60405180910390f35b610209610204366004611e9e565b610473565b005b610243610219366004611edf565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016101ed565b610209610282366004611e09565b610535565b61029a610295366004611dec565b610808565b60405190151581526020016101ed565b6102b26109af565b6040516001600160a01b0390911681526020016101ed565b6102096102d8366004611e9e565b6109c8565b6102096102eb36600461200e565b610a77565b6101e3610bd4565b610209610bde565b61020961030e366004611f7e565b610c6c565b6007546101e3565b61029a610329366004611dec565b610d92565b610209610dae565b61029a610344366004611dec565b610e23565b610209610357366004612047565b610e3c565b6000546001600160a01b03166102b2565b61020961037b366004611dec565b610eb1565b6101e361038e366004611f7e565b610f23565b61029a6103a1366004612047565b61108c565b6006546101e3565b6101e3611100565b6003546001600160a01b03166102b2565b6102096103d5366004611faa565b61110a565b6004546001600160a01b03166102b2565b6001546001600160a01b03166102b2565b6101e361124a565b610209610412366004611dec565b611348565b6104536040518060400160405280600581526020017f342e302e3000000000000000000000000000000000000000000000000000000081525081565b6040516101ed9190612105565b61020961046e366004611f7e565b611484565b6004546001600160a01b031633146104d25760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064015b60405180910390fd5b6104dd838383611545565b1561053057816001600160a01b0316836001600160a01b03167fb0bac59718cd343c80a813518afcf36846cfcfe6d56e2b3cab9bd49f5f9b251c8360405161052791815260200190565b60405180910390a35b505050565b6004546001600160a01b0316331461058f5760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064016104c9565b6008546001600160a01b03808516911614156105ed5760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e60448201526064016104c9565b806105f757610802565b60008167ffffffffffffffff811115610612576106126121ba565b60405190808252806020026020018201604052801561063b578160200160208202803683370190505b5090506000805b838110156107ac57856001600160a01b03166342842e0e308988888681811061066d5761066d6121a4565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b1681526001600160a01b03958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b1580156106dc57600080fd5b505af19250505080156106ed575060015b61075e573d80801561071b576040519150601f19603f3d011682016040523d82523d6000602084013e610720565b606091505b507f17e975018310f88872b58d4d8263adca83cf5c1893496ea2a86923dab15276ad816040516107509190612105565b60405180910390a15061079a565b60019150848482818110610774576107746121a4565b9050602002013583828151811061078d5761078d6121a4565b6020026020010181815250505b806107a481612173565b915050610642565b5080156107ff57846001600160a01b0316866001600160a01b03167f69c2de32bc4d47f488e72626a6cfdee85089342e52675e7de79c4b417623960c846040516107f691906120c1565b60405180910390a35b50505b50505050565b60003361081d6000546001600160a01b031690565b6001600160a01b0316146108735760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104c9565b6001600160a01b0382166108ef5760405162461bcd60e51b815260206004820152602160248201527f5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d61646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104c9565b6003546001600160a01b0316156109485760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f7469636b65742d616c72656164792d7365740000000060448201526064016104c9565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091556040517f9f9d59c87dbdc6ca82d9e5924782004b9aebc366c505c0ccab12f61e2a9f332190600090a26109a76000196115d2565b506001919050565b60006109c36008546001600160a01b031690565b905090565b6004546001600160a01b03163314610a225760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064016104c9565b610a2d838383611545565b1561053057816001600160a01b0316836001600160a01b03167fc65f48aca3b7a99b7443d04b8ffbb073156179bc628dc3f7def50477489734698360405161052791815260200190565b33610a8a6000546001600160a01b031690565b6001600160a01b031614610ae05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104c9565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610b2257600080fd5b505afa158015610b36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5a9190612060565b1115610bd0576040517f5c19a95c0000000000000000000000000000000000000000000000000000000081526001600160a01b038281166004830152831690635c19a95c90602401600060405180830381600087803b158015610bbc57600080fd5b505af11580156107ff573d6000803e3d6000fd5b5050565b60006109c361160e565b6001546001600160a01b03163314610c385760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016104c9565b600154610c4d906001600160a01b03166116a4565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6004546001600160a01b03163314610cc65760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064016104c9565b80610ccf575050565b60075480821115610d225760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f61776172642d657863656564732d617661696c00000060448201526064016104c9565b8181036007556003546001600160a01b0316610d3f848483611701565b806001600160a01b0316846001600160a01b03167fe2554529d99ab7a67db6b4cea2b32c7d55ae325f958861e05f304fdded867e3185604051610d8491815260200190565b60405180910390a350505050565b6008546000906001600160a01b03808416911614155b92915050565b33610dc16000546001600160a01b031690565b6001600160a01b031614610e175760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104c9565b610e2160006116a4565b565b6003546000906001600160a01b03808416911614610da8565b33610e4f6000546001600160a01b031690565b6001600160a01b031614610ea55760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104c9565b610eae81611781565b50565b33610ec46000546001600160a01b031690565b6001600160a01b031614610f1a5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104c9565b610eae816117b6565b6000600280541415610f775760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104c9565b600280556003546040517f631b5dfb0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0385811660248301526044820185905290911690819063631b5dfb90606401600060405180830381600087803b158015610fea57600080fd5b505af1158015610ffe573d6000803e3d6000fd5b50505050600061100b8490565b905061103485826110246008546001600160a01b031690565b6001600160a01b03169190611863565b60408051858152602081018390526001600160a01b03808516929088169133917fe56473357106d0cdea364a045d5ab7abb44b6bd1c0f092ba3734983a43459f8f910160405180910390a46001600255949350505050565b6000336110a16000546001600160a01b031690565b6001600160a01b0316146110f75760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104c9565b6109a7826115d2565b60006109c361190c565b60028054141561115c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104c9565b600280558161116a81611950565b6111b65760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d6361700060448201526064016104c9565b6111c1338585611986565b6003546040517f33e39b610000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b038481166024830152909116906333e39b6190604401600060405180830381600087803b15801561122757600080fd5b505af115801561123b573d6000803e3d6000fd5b50506001600255505050505050565b600060028054141561129e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104c9565b6002805560006112ac61160e565b60075490915060006112bc61190c565b905060008382116112ce5760006112d8565b6112d88483612130565b905060008382116112ea5760006112f4565b6112f48483612130565b9050801561133a57600782905560405181815291935083917fce2b6e507c7ca1a20ce136810f524eefc19ba4c7e4866eb6cc0cba76e778d4be9060200160405180910390a15b505060016002555092915050565b3361135b6000546001600160a01b031690565b6001600160a01b0316146113b15760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104c9565b6001600160a01b03811661142d5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104c9565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6002805414156114d65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104c9565b60028055806114e481611950565b6115305760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d6361700060448201526064016104c9565b61153b338484611986565b5050600160025550565b6008546000906001600160a01b03808516911614156115a65760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e60448201526064016104c9565b816115b3575060006115cb565b6115c76001600160a01b0384168584611863565b5060015b9392505050565b60058190556040518181527f439b9ac8f2088164a8d80921758209db1623cf1a37a48913679ef3a43d7a5cf7906020015b60405180910390a150565b600354604080517f18160ddd00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561166c57600080fd5b505afa158015611680573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c39190612060565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f5d7b07580000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260248201849052821690635d7b075890604401600060405180830381600087803b15801561176457600080fd5b505af1158015611778573d6000803e3d6000fd5b50505050505050565b60068190556040518181527f3ff20538222f568f27ff436c0c49dfd3e48d5b8f86533a3f759dc1c7089775ab90602001611603565b6001600160a01b03811661180c5760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f60448201526064016104c9565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f7f58dc86bc2e435cb77ca0edb1df55e25f90caf2d6bd866971715437d456a21290600090a250565b6040516001600160a01b0383166024820152604481018290526105309084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611a79565b6008546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561166c57600080fd5b6006546000906000198114156119695750600192915050565b808361197361160e565b61197d9190612118565b11159392505050565b6119908282611b5e565b6119dc5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f657863656564732d62616c616e63652d63617000000060448201526064016104c9565b6003546001600160a01b0316611a11843084611a006008546001600160a01b031690565b6001600160a01b0316929190611c0c565b611a1c838383611701565b806001600160a01b0316836001600160a01b0316856001600160a01b03167f4174a9435a04d04d274c76779cad136a41fde6937c56241c09ab9d3c7064a1a985604051611a6b91815260200190565b60405180910390a450505050565b6000611ace826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c5d9092919063ffffffff16565b8051909150156105305780806020019051810190611aec9190611fec565b6105305760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016104c9565b600554600090600019811415611b78576001915050610da8565b6003546040516370a0823160e01b81526001600160a01b038681166004830152839286929116906370a082319060240160206040518083038186803b158015611bc057600080fd5b505afa158015611bd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf89190612060565b611c029190612118565b1115949350505050565b6040516001600160a01b03808516602483015283166044820152606481018290526108029085907f23b872dd00000000000000000000000000000000000000000000000000000000906084016118a8565b6060611c6c8484600085611c74565b949350505050565b606082471015611cec5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016104c9565b843b611d3a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016104c9565b600080866001600160a01b03168587604051611d5691906120a5565b60006040518083038185875af1925050503d8060008114611d93576040519150601f19603f3d011682016040523d82523d6000602084013e611d98565b606091505b5091509150611da8828286611db3565b979650505050505050565b60608315611dc25750816115cb565b825115611dd25782518084602001fd5b8160405162461bcd60e51b81526004016104c99190612105565b600060208284031215611dfe57600080fd5b81356115cb816121d0565b60008060008060608587031215611e1f57600080fd5b8435611e2a816121d0565b93506020850135611e3a816121d0565b9250604085013567ffffffffffffffff80821115611e5757600080fd5b818701915087601f830112611e6b57600080fd5b813581811115611e7a57600080fd5b8860208260051b8501011115611e8f57600080fd5b95989497505060200194505050565b600080600060608486031215611eb357600080fd5b8335611ebe816121d0565b92506020840135611ece816121d0565b929592945050506040919091013590565b600080600080600060808688031215611ef757600080fd5b8535611f02816121d0565b94506020860135611f12816121d0565b935060408601359250606086013567ffffffffffffffff80821115611f3657600080fd5b818801915088601f830112611f4a57600080fd5b813581811115611f5957600080fd5b896020828501011115611f6b57600080fd5b9699959850939650602001949392505050565b60008060408385031215611f9157600080fd5b8235611f9c816121d0565b946020939093013593505050565b600080600060608486031215611fbf57600080fd5b8335611fca816121d0565b9250602084013591506040840135611fe1816121d0565b809150509250925092565b600060208284031215611ffe57600080fd5b815180151581146115cb57600080fd5b6000806040838503121561202157600080fd5b823561202c816121d0565b9150602083013561203c816121d0565b809150509250929050565b60006020828403121561205957600080fd5b5035919050565b60006020828403121561207257600080fd5b5051919050565b60008151808452612091816020860160208601612147565b601f01601f19169290920160200192915050565b600082516120b7818460208701612147565b9190910192915050565b6020808252825182820181905260009190848201906040850190845b818110156120f9578351835292840192918401916001016120dd565b50909695505050505050565b6020815260006115cb6020830184612079565b6000821982111561212b5761212b61218e565b500190565b6000828210156121425761214261218e565b500390565b60005b8381101561216257818101518382015260200161214a565b838111156108025750506000910152565b60006000198214156121875761218761218e565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610eae57600080fdfea26469706673582212207d6ee15ddbb7de882a05e4a22ccc3021ab317250d434850a8f276338f0fade8264736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2421 CODESIZE SUB DUP1 PUSH3 0x2421 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x19E JUMP JUMPDEST DUP2 DUP1 PUSH3 0x41 DUP2 PUSH3 0x113 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x2 SSTORE PUSH3 0x54 PUSH1 0x0 NOT PUSH3 0x163 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0xC4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5374616B655072697A65506F6F6C2F7374616B652D746F6B656E2D6E6F742D7A PUSH1 0x44 DUP3 ADD MSTORE PUSH11 0x65726F2D61646472657373 PUSH1 0xA8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x8 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xF40FCEC21964FFB566044D083B4073F29F7F7929110EA19E1B3EBE375D89055E SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP PUSH3 0x1F6 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x6 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x3FF20538222F568F27FF436C0C49DFD3E48D5B8F86533A3F759DC1C7089775AB SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1B2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH3 0x1BF DUP2 PUSH3 0x1DD JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x1D2 DUP2 PUSH3 0x1DD JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x1F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x221B DUP1 PUSH3 0x206 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 0x1DA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7B99ADB1 GT PUSH2 0x104 JUMPI DUP1 PUSH4 0xC002C4D6 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xE6D8A94B GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xE6D8A94B EQ PUSH2 0x3FC JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x404 JUMPI DUP1 PUSH4 0xFFA1AD74 EQ PUSH2 0x417 JUMPI DUP1 PUSH4 0xFFAAD6A5 EQ PUSH2 0x460 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC002C4D6 EQ PUSH2 0x3B6 JUMPI DUP1 PUSH4 0xD7A169EB EQ PUSH2 0x3C7 JUMPI DUP1 PUSH4 0xD804ABAF EQ PUSH2 0x3DA JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x3EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9470B0BD GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x9470B0BD EQ PUSH2 0x380 JUMPI DUP1 PUSH4 0xAEC9C307 EQ PUSH2 0x393 JUMPI DUP1 PUSH4 0xB15A49C1 EQ PUSH2 0x3A6 JUMPI DUP1 PUSH4 0xB69EF8A8 EQ PUSH2 0x3AE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7B99ADB1 EQ PUSH2 0x349 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x35C JUMPI DUP1 PUSH4 0x91CA480E EQ PUSH2 0x36D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F7627E3 GT PUSH2 0x17C JUMPI DUP1 PUSH4 0x630665B4 GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x630665B4 EQ PUSH2 0x313 JUMPI DUP1 PUSH4 0x6A3FD4F9 EQ PUSH2 0x31B JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x32E JUMPI DUP1 PUSH4 0x78B3D327 EQ PUSH2 0x336 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F7627E3 EQ PUSH2 0x2DD JUMPI DUP1 PUSH4 0x33E5761F EQ PUSH2 0x2F0 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x2F8 JUMPI DUP1 PUSH4 0x5D8A776E EQ PUSH2 0x300 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x16960D55 GT PUSH2 0x1B8 JUMPI DUP1 PUSH4 0x16960D55 EQ PUSH2 0x274 JUMPI DUP1 PUSH4 0x1C65C78B EQ PUSH2 0x287 JUMPI DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0x2AA JUMPI DUP1 PUSH4 0x2B0AB144 EQ PUSH2 0x2CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8234319 EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0x13F55E39 EQ PUSH2 0x1F6 JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x20B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x5 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x209 PUSH2 0x204 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E9E JUMP JUMPDEST PUSH2 0x473 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x243 PUSH2 0x219 CALLDATASIZE PUSH1 0x4 PUSH2 0x1EDF JUMP JUMPDEST PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1ED JUMP JUMPDEST PUSH2 0x209 PUSH2 0x282 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E09 JUMP JUMPDEST PUSH2 0x535 JUMP JUMPDEST PUSH2 0x29A PUSH2 0x295 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DEC JUMP JUMPDEST PUSH2 0x808 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1ED JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x9AF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1ED JUMP JUMPDEST PUSH2 0x209 PUSH2 0x2D8 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E9E JUMP JUMPDEST PUSH2 0x9C8 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x2EB CALLDATASIZE PUSH1 0x4 PUSH2 0x200E JUMP JUMPDEST PUSH2 0xA77 JUMP JUMPDEST PUSH2 0x1E3 PUSH2 0xBD4 JUMP JUMPDEST PUSH2 0x209 PUSH2 0xBDE JUMP JUMPDEST PUSH2 0x209 PUSH2 0x30E CALLDATASIZE PUSH1 0x4 PUSH2 0x1F7E JUMP JUMPDEST PUSH2 0xC6C JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH2 0x1E3 JUMP JUMPDEST PUSH2 0x29A PUSH2 0x329 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DEC JUMP JUMPDEST PUSH2 0xD92 JUMP JUMPDEST PUSH2 0x209 PUSH2 0xDAE JUMP JUMPDEST PUSH2 0x29A PUSH2 0x344 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DEC JUMP JUMPDEST PUSH2 0xE23 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x357 CALLDATASIZE PUSH1 0x4 PUSH2 0x2047 JUMP JUMPDEST PUSH2 0xE3C JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2B2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x37B CALLDATASIZE PUSH1 0x4 PUSH2 0x1DEC JUMP JUMPDEST PUSH2 0xEB1 JUMP JUMPDEST PUSH2 0x1E3 PUSH2 0x38E CALLDATASIZE PUSH1 0x4 PUSH2 0x1F7E JUMP JUMPDEST PUSH2 0xF23 JUMP JUMPDEST PUSH2 0x29A PUSH2 0x3A1 CALLDATASIZE PUSH1 0x4 PUSH2 0x2047 JUMP JUMPDEST PUSH2 0x108C JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH2 0x1E3 JUMP JUMPDEST PUSH2 0x1E3 PUSH2 0x1100 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2B2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FAA JUMP JUMPDEST PUSH2 0x110A JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2B2 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2B2 JUMP JUMPDEST PUSH2 0x1E3 PUSH2 0x124A JUMP JUMPDEST PUSH2 0x209 PUSH2 0x412 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DEC JUMP JUMPDEST PUSH2 0x1348 JUMP JUMPDEST PUSH2 0x453 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x342E302E30000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1ED SWAP2 SWAP1 PUSH2 0x2105 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x46E CALLDATASIZE PUSH1 0x4 PUSH2 0x1F7E JUMP JUMPDEST PUSH2 0x1484 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x4D2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4DD DUP4 DUP4 DUP4 PUSH2 0x1545 JUMP JUMPDEST ISZERO PUSH2 0x530 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xB0BAC59718CD343C80A813518AFCF36846CFCFE6D56E2B3CAB9BD49F5F9B251C DUP4 PUSH1 0x40 MLOAD PUSH2 0x527 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x58F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP2 AND EQ ISZERO PUSH2 0x5ED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST DUP1 PUSH2 0x5F7 JUMPI PUSH2 0x802 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x612 JUMPI PUSH2 0x612 PUSH2 0x21BA JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x63B JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP1 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x7AC JUMPI DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x42842E0E ADDRESS DUP10 DUP9 DUP9 DUP7 DUP2 DUP2 LT PUSH2 0x66D JUMPI PUSH2 0x66D PUSH2 0x21A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP9 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP6 DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP5 SWAP1 SWAP4 AND PUSH1 0x24 DUP6 ADD MSTORE POP PUSH1 0x20 SWAP1 SWAP2 MUL ADD CALLDATALOAD PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x6DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x6ED JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x75E JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x71B JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x720 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH32 0x17E975018310F88872B58D4D8263ADCA83CF5C1893496EA2A86923DAB15276AD DUP2 PUSH1 0x40 MLOAD PUSH2 0x750 SWAP2 SWAP1 PUSH2 0x2105 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP PUSH2 0x79A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP DUP5 DUP5 DUP3 DUP2 DUP2 LT PUSH2 0x774 JUMPI PUSH2 0x774 PUSH2 0x21A4 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x78D JUMPI PUSH2 0x78D PUSH2 0x21A4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0x7A4 DUP2 PUSH2 0x2173 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x642 JUMP JUMPDEST POP DUP1 ISZERO PUSH2 0x7FF JUMPI DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x69C2DE32BC4D47F488E72626A6CFDEE85089342E52675E7DE79C4B417623960C DUP5 PUSH1 0x40 MLOAD PUSH2 0x7F6 SWAP2 SWAP1 PUSH2 0x20C1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x81D PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x873 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x8EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D6E6F742D7A65726F2D616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x948 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D616C72656164792D73657400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x9F9D59C87DBDC6CA82D9E5924782004B9AEBC366C505C0CCAB12F61E2A9F3321 SWAP1 PUSH1 0x0 SWAP1 LOG2 PUSH2 0x9A7 PUSH1 0x0 NOT PUSH2 0x15D2 JUMP JUMPDEST POP PUSH1 0x1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9C3 PUSH1 0x8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xA22 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH2 0xA2D DUP4 DUP4 DUP4 PUSH2 0x1545 JUMP JUMPDEST ISZERO PUSH2 0x530 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xC65F48ACA3B7A99B7443D04B8FFBB073156179BC628DC3F7DEF5047748973469 DUP4 PUSH1 0x40 MLOAD PUSH2 0x527 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST CALLER PUSH2 0xA8A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xAE0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB22 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB36 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 0xB5A SWAP2 SWAP1 PUSH2 0x2060 JUMP JUMPDEST GT ISZERO PUSH2 0xBD0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x5C19A95C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x5C19A95C SWAP1 PUSH1 0x24 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBBC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x7FF JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9C3 PUSH2 0x160E JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xC38 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0xC4D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x16A4 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xCC6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST DUP1 PUSH2 0xCCF JUMPI POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD DUP1 DUP3 GT ISZERO PUSH2 0xD22 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F61776172642D657863656564732D617661696C000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x7 SSTORE PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xD3F DUP5 DUP5 DUP4 PUSH2 0x1701 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xE2554529D99AB7A67DB6B4CEA2B32C7D55AE325F958861E05F304FDDED867E31 DUP6 PUSH1 0x40 MLOAD PUSH2 0xD84 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND EQ ISZERO JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0xDC1 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE17 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH2 0xE21 PUSH1 0x0 PUSH2 0x16A4 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND EQ PUSH2 0xDA8 JUMP JUMPDEST CALLER PUSH2 0xE4F PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEA5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH2 0xEAE DUP2 PUSH2 0x1781 JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH2 0xEC4 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF1A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH2 0xEAE DUP2 PUSH2 0x17B6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0xF77 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x631B5DFB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP6 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 DUP2 SWAP1 PUSH4 0x631B5DFB SWAP1 PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xFEA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xFFE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 PUSH2 0x100B DUP5 SWAP1 JUMP JUMPDEST SWAP1 POP PUSH2 0x1034 DUP6 DUP3 PUSH2 0x1024 PUSH1 0x8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x1863 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP3 SWAP1 DUP9 AND SWAP2 CALLER SWAP2 PUSH32 0xE56473357106D0CDEA364A045D5AB7ABB44B6BD1C0F092BA3734983A43459F8F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x1 PUSH1 0x2 SSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x10A1 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x10F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH2 0x9A7 DUP3 PUSH2 0x15D2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9C3 PUSH2 0x190C JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x115C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP2 PUSH2 0x116A DUP2 PUSH2 0x1950 JUMP JUMPDEST PUSH2 0x11B6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH2 0x11C1 CALLER DUP6 DUP6 PUSH2 0x1986 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x33E39B6100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x33E39B61 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1227 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x123B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x129E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x0 PUSH2 0x12AC PUSH2 0x160E JUMP JUMPDEST PUSH1 0x7 SLOAD SWAP1 SWAP2 POP PUSH1 0x0 PUSH2 0x12BC PUSH2 0x190C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x12CE JUMPI PUSH1 0x0 PUSH2 0x12D8 JUMP JUMPDEST PUSH2 0x12D8 DUP5 DUP4 PUSH2 0x2130 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x12EA JUMPI PUSH1 0x0 PUSH2 0x12F4 JUMP JUMPDEST PUSH2 0x12F4 DUP5 DUP4 PUSH2 0x2130 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x133A JUMPI PUSH1 0x7 DUP3 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE SWAP2 SWAP4 POP DUP4 SWAP2 PUSH32 0xCE2B6E507C7CA1A20CE136810F524EEFC19BA4C7E4866EB6CC0CBA76E778D4BE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x135B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x13B1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x142D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x14D6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP1 PUSH2 0x14E4 DUP2 PUSH2 0x1950 JUMP JUMPDEST PUSH2 0x1530 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH2 0x153B CALLER DUP5 DUP5 PUSH2 0x1986 JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP2 AND EQ ISZERO PUSH2 0x15A6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST DUP2 PUSH2 0x15B3 JUMPI POP PUSH1 0x0 PUSH2 0x15CB JUMP JUMPDEST PUSH2 0x15C7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP6 DUP5 PUSH2 0x1863 JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x5 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x439B9AC8F2088164A8D80921758209DB1623CF1A37A48913679EF3A43D7A5CF7 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x18160DDD00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 MLOAD PUSH1 0x0 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 PUSH4 0x18160DDD SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x166C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1680 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 0x9C3 SWAP2 SWAP1 PUSH2 0x2060 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x5D7B075800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 AND SWAP1 PUSH4 0x5D7B0758 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1764 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1778 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x6 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x3FF20538222F568F27FF436C0C49DFD3E48D5B8F86533A3F759DC1C7089775AB SWAP1 PUSH1 0x20 ADD PUSH2 0x1603 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x180C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7072697A6553747261746567792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x7F58DC86BC2E435CB77CA0EDB1DF55E25F90CAF2D6BD866971715437D456A212 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x530 SWAP1 DUP5 SWAP1 PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x1A79 JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x166C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x1969 JUMPI POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP4 PUSH2 0x1973 PUSH2 0x160E JUMP JUMPDEST PUSH2 0x197D SWAP2 SWAP1 PUSH2 0x2118 JUMP JUMPDEST GT ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1990 DUP3 DUP3 PUSH2 0x1B5E JUMP JUMPDEST PUSH2 0x19DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D62616C616E63652D636170000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1A11 DUP5 ADDRESS DUP5 PUSH2 0x1A00 PUSH1 0x8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x1C0C JUMP JUMPDEST PUSH2 0x1A1C DUP4 DUP4 DUP4 PUSH2 0x1701 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4174A9435A04D04D274C76779CAD136A41FDE6937C56241C09AB9D3C7064A1A9 DUP6 PUSH1 0x40 MLOAD PUSH2 0x1A6B SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1ACE DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1C5D SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x530 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1AEC SWAP2 SWAP1 PUSH2 0x1FEC JUMP JUMPDEST PUSH2 0x530 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x1B78 JUMPI PUSH1 0x1 SWAP2 POP POP PUSH2 0xDA8 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 SWAP3 DUP7 SWAP3 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1BC0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1BD4 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 0x1BF8 SWAP2 SWAP1 PUSH2 0x2060 JUMP JUMPDEST PUSH2 0x1C02 SWAP2 SWAP1 PUSH2 0x2118 JUMP JUMPDEST GT ISZERO SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x802 SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD PUSH2 0x18A8 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1C6C DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x1C74 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x1CEC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4C9 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x1D3A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1D56 SWAP2 SWAP1 PUSH2 0x20A5 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1D93 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1D98 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1DA8 DUP3 DUP3 DUP7 PUSH2 0x1DB3 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x1DC2 JUMPI POP DUP2 PUSH2 0x15CB JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x1DD2 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4C9 SWAP2 SWAP1 PUSH2 0x2105 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DFE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x15CB DUP2 PUSH2 0x21D0 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1E1F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x1E2A DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x1E3A DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1E57 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1E6B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1E7A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1E8F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1EB3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x1EBE DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x1ECE DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1EF7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x1F02 DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x1F12 DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1F36 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1F4A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1F59 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x1F6B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1F91 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1F9C DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1FBF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x1FCA DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x1FE1 DUP2 PUSH2 0x21D0 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1FFE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x15CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2021 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x202C DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x203C DUP2 PUSH2 0x21D0 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2059 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2072 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x2091 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2147 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x20B7 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2147 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x20F9 JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x20DD JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x15CB PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2079 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x212B JUMPI PUSH2 0x212B PUSH2 0x218E JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2142 JUMPI PUSH2 0x2142 PUSH2 0x218E JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2162 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x214A JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x802 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2187 JUMPI PUSH2 0x2187 PUSH2 0x218E JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xEAE JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH30 0x6EE15DDBB7DE882A05E4A22CCC3021AB317250D434850A8F276338F0FADE DUP3 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "544:2344:60:-:0;;;979:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1037:6;;1648:24:22;1037:6:60;1648:9:22;:24::i;:::-;-1:-1:-1;1637:1:0;1742:7;:22;2625:35:59::2;-1:-1:-1::0;;2625:16:59::2;:35::i;:::-;-1:-1:-1::0;;;;;;1063:34:60;::::1;1055:90;;;::::0;-1:-1:-1;;;1055:90:60;;620:2:84;1055:90:60::1;::::0;::::1;602:21:84::0;659:2;639:18;;;632:30;698:34;678:18;;;671:62;-1:-1:-1;;;749:18:84;;;742:41;800:19;;1055:90:60::1;;;;;;;;1155:10;:24:::0;;-1:-1:-1;;;;;;1155:24:60::1;-1:-1:-1::0;;;;;1155:24:60;::::1;::::0;;::::1;::::0;;;1195:21:::1;::::0;::::1;::::0;-1:-1:-1;;1195:21:60::1;979:244:::0;;544:2344;;3470:174:22;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;;;;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;13592:148:59:-;13660:12;:28;;;13703:30;;976:25:84;;;13703:30:59;;964:2:84;949:18;13703:30:59;;;;;;;13592:148;:::o;14:399:84:-;107:6;115;168:2;156:9;147:7;143:23;139:32;136:2;;;184:1;181;174:12;136:2;216:9;210:16;235:31;260:5;235:31;:::i;:::-;335:2;320:18;;314:25;285:5;;-1:-1:-1;348:33:84;314:25;348:33;:::i;:::-;400:7;390:17;;;126:287;;;;;:::o;1012:131::-;-1:-1:-1;;;;;1087:31:84;;1077:42;;1067:2;;1133:1;1130;1123:12;1067:2;1057:86;:::o;:::-;544:2344:60;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@VERSION_13859": {
                  "entryPoint": null,
                  "id": 13859,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_balance_14959": {
                  "entryPoint": 6412,
                  "id": 14959,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_callOptionalReturn_1116": {
                  "entryPoint": 6777,
                  "id": 1116,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_canAddLiquidity_14748": {
                  "entryPoint": 6480,
                  "id": 14748,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_canAwardExternal_14943": {
                  "entryPoint": null,
                  "id": 14943,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_canDeposit_14717": {
                  "entryPoint": 7006,
                  "id": 14717,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_depositTo_14211": {
                  "entryPoint": 6534,
                  "id": 14211,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_isControlled_14763": {
                  "entryPoint": null,
                  "id": 14763,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_mint_14682": {
                  "entryPoint": 5889,
                  "id": 14682,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_redeem_14990": {
                  "entryPoint": null,
                  "id": 14990,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setBalanceCap_14778": {
                  "entryPoint": 5586,
                  "id": 14778,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setLiquidityCap_14793": {
                  "entryPoint": 6017,
                  "id": 14793,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 5796,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setPrizeStrategy_14818": {
                  "entryPoint": 6070,
                  "id": 14818,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_supply_14978": {
                  "entryPoint": null,
                  "id": 14978,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_ticketTotalSupply_14829": {
                  "entryPoint": 5646,
                  "id": 14829,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_token_14970": {
                  "entryPoint": null,
                  "id": 14970,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_transferOut_14663": {
                  "entryPoint": 5445,
                  "id": 14663,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@awardBalance_13943": {
                  "entryPoint": null,
                  "id": 13943,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@awardExternalERC20_14370": {
                  "entryPoint": 2504,
                  "id": 14370,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@awardExternalERC721_14473": {
                  "entryPoint": 1333,
                  "id": 14473,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@award_14316": {
                  "entryPoint": 3180,
                  "id": 14316,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@balance_13933": {
                  "entryPoint": 4352,
                  "id": 13933,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@canAwardExternal_13957": {
                  "entryPoint": 3474,
                  "id": 13957,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@captureAwardBalance_14105": {
                  "entryPoint": 4682,
                  "id": 14105,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@claimOwnership_4038": {
                  "entryPoint": 3038,
                  "id": 4038,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@compLikeDelegate_14606": {
                  "entryPoint": 2679,
                  "id": 14606,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@depositToAndDelegate_14159": {
                  "entryPoint": 4362,
                  "id": 14159,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@depositTo_14127": {
                  "entryPoint": 5252,
                  "id": 14127,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@functionCallWithValue_2255": {
                  "entryPoint": 7284,
                  "id": 2255,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_2185": {
                  "entryPoint": 7261,
                  "id": 2185,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getAccountedBalance_13983": {
                  "entryPoint": 3028,
                  "id": 13983,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getBalanceCap_13993": {
                  "entryPoint": null,
                  "id": 13993,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getLiquidityCap_14003": {
                  "entryPoint": null,
                  "id": 14003,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizeStrategy_14024": {
                  "entryPoint": null,
                  "id": 14024,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getTicket_14014": {
                  "entryPoint": null,
                  "id": 14014,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getToken_14038": {
                  "entryPoint": 2479,
                  "id": 14038,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_2114": {
                  "entryPoint": null,
                  "id": 2114,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@isControlled_13972": {
                  "entryPoint": 3619,
                  "id": 13972,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@onERC721Received_14626": {
                  "entryPoint": null,
                  "id": 14626,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@owner_3970": {
                  "entryPoint": null,
                  "id": 3970,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3979": {
                  "entryPoint": null,
                  "id": 3979,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3993": {
                  "entryPoint": 3502,
                  "id": 3993,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeTransferFrom_950": {
                  "entryPoint": 7180,
                  "id": 950,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@safeTransfer_924": {
                  "entryPoint": 6243,
                  "id": 924,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setBalanceCap_14491": {
                  "entryPoint": 4236,
                  "id": 14491,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setLiquidityCap_14505": {
                  "entryPoint": 3644,
                  "id": 14505,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setPrizeStrategy_14576": {
                  "entryPoint": 3761,
                  "id": 14576,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setTicket_14562": {
                  "entryPoint": 2056,
                  "id": 14562,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@transferExternalERC20_14343": {
                  "entryPoint": 1139,
                  "id": 14343,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@transferOwnership_4020": {
                  "entryPoint": 4936,
                  "id": 4020,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_2390": {
                  "entryPoint": 7603,
                  "id": 2390,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@withdrawFrom_14263": {
                  "entryPoint": 3875,
                  "id": 14263,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 7660,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_calldata_ptr": {
                  "entryPoint": 7689,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 7838,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr": {
                  "entryPoint": 7903,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 8062,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint256t_address": {
                  "entryPoint": 8106,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 8172,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_ICompLike_$11027t_address": {
                  "entryPoint": 8206,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_contract$_ITicket_$12213": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 8263,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 8288,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_bytes": {
                  "entryPoint": 8313,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 8357,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 8385,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed": {
                  "entryPoint": 8453,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 8472,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 8496,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 8519,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "increment_t_uint256": {
                  "entryPoint": 8563,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 8590,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 8612,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 8634,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 8656,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:15779:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "84:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "130:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "142:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "132:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "132:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "132:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "105:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "101:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "101:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "126:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "97:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "97:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "94:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "155:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "181:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "168:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "168:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "159:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "225:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "200:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "200:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "200:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "250:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "50:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "61:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "73:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "405:752:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "451:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "460:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "463:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "453:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "453:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "453:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "426:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "435:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "422:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "422:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "447:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "418:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "418:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "415:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "476:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "502:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "489:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "489:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "480:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "546:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "521:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "521:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "521:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "561:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "571:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "561:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "585:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "617:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "628:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "613:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "613:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "600:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "600:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "589:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "666:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "641:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "641:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "641:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "683:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "693:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "683:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "709:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "740:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "751:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "736:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "736:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "723:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "723:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "713:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "764:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "774:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "768:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "819:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "828:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "831:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "821:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "821:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "821:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "807:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "815:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "804:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "804:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "801:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "844:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "858:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "869:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "854:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "854:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "848:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "924:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "933:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "936:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "926:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "926:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "926:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "903:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "907:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "899:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "899:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "914:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "895:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "895:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "888:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "888:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "885:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "949:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "976:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "963:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "963:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "953:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1006:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1015:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1018:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1008:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1008:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1008:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "994:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1002:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "991:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "991:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "988:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1080:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1089:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1092:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1082:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1082:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1082:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1045:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1053:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1056:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1049:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1049:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1041:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1041:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1066:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1037:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1037:32:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1071:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1034:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1034:45:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1031:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1105:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1119:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1123:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1115:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1115:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1105:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1135:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1145:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1135:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "347:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "358:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "370:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "378:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "386:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "394:6:84",
                            "type": ""
                          }
                        ],
                        "src": "266:891:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1266:352:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1312:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1321:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1324:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1314:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1314:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1314:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1287:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1296:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1283:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1283:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1308:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1279:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1279:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1276:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1337:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1363:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1350:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1350:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1341:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1407:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1382:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1382:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1382:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1422:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1432:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1422:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1446:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1478:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1489:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1474:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1474:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1461:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1461:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1450:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1527:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1502:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1502:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1502:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1544:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1554:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1544:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1570:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1597:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1608:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1593:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1593:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1580:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1580:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1570:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1216:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1227:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1239:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1247:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1255:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1162:456:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1763:796:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1810:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1819:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1822:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1812:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1812:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1812:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1784:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1793:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1780:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1780:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1805:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1776:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1776:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1773:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1835:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1861:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1848:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1848:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1839:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1905:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1880:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1880:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1880:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1920:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1930:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1920:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1944:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1976:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1987:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1972:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1972:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1959:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1959:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1948:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2025:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2000:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2000:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2000:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2042:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2052:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2042:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2068:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2095:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2106:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2091:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2091:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2078:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2078:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2068:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2119:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2150:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2161:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2146:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2146:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2133:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2133:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2123:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2174:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2184:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2178:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2229:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2238:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2241:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2231:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2231:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2231:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2217:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2225:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2214:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2214:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2211:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2254:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2268:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2279:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2264:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2264:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2258:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2334:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2343:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2346:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2336:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2336:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2336:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2313:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2317:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2309:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2309:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2324:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2305:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2305:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2298:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2298:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2295:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2359:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2386:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2373:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2373:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "2363:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2416:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2425:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2428:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2418:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2418:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2418:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "2404:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2412:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2401:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2401:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2398:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2482:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2491:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2494:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2484:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2484:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2484:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2455:2:84"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "2459:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2451:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2451:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2468:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2447:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2447:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2473:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2444:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2444:37:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2441:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2507:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2521:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2525:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2517:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2517:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2507:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2537:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "2547:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2537:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1697:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1708:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1720:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1728:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1736:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1744:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1752:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1623:936:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2651:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2697:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2706:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2709:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2699:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2699:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2699:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2672:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2681:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2668:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2668:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2693:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2664:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2664:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2661:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2722:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2748:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2735:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2735:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2726:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2792:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2767:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2767:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2767:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2807:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2817:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2807:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2831:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2858:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2869:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2854:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2854:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2841:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2841:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2831:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2609:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2620:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2632:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2640:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2564:315:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2988:352:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3034:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3043:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3046:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3036:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3036:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3036:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3009:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3018:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3005:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3005:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3030:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3001:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3001:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2998:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3059:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3085:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3072:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3072:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3063:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3129:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3104:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3104:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3104:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3144:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3154:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3144:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3168:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3195:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3206:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3191:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3191:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3178:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3178:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3168:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3219:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3251:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3262:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3247:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3247:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3234:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3234:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3223:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3300:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3275:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3275:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3275:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3317:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "3327:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "3317:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2938:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2949:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2961:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2969:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2977:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2884:456:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3423:199:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3469:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3478:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3481:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3471:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3471:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3471:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3444:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3453:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3440:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3440:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3465:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3436:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3436:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3433:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3494:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3513:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3507:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3507:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3498:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3576:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3585:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3588:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3578:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3578:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3578:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3545:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3566:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "3559:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3559:13:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "3552:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3552:21:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "3542:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3542:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3535:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3535:40:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3532:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3601:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3611:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3601:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3389:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3400:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3412:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3345:277:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3733:301:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3779:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3788:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3791:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3781:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3781:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3781:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3754:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3763:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3750:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3750:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3775:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3746:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3746:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3743:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3804:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3830:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3817:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3817:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3808:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3874:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3849:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3849:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3849:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3889:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3899:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3889:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3913:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3945:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3956:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3941:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3941:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3928:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3928:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3917:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3994:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3969:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3969:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3969:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4011:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "4021:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4011:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ICompLike_$11027t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3691:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3702:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3714:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3722:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3627:407:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4126:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4172:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4181:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4184:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4174:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4174:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4174:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4147:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4156:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4143:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4143:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4168:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4139:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4139:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4136:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4197:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4223:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4210:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4210:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4201:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4267:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4242:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4242:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4242:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4282:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4292:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4282:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$12213",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4092:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4103:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4115:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4039:264:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4378:110:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4424:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4433:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4436:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4426:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4426:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4426:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4399:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4408:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4395:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4395:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4420:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4391:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4391:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4388:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4449:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4472:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4459:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4459:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4449:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4344:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4355:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4367:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4308:180:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4574:103:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4620:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4629:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4632:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4622:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4622:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4622:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4595:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4604:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4591:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4591:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4616:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4587:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4587:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4584:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4645:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4661:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4655:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4655:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4645:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4540:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4551:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4563:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4493:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4731:267:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4741:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4761:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4755:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4755:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4745:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4783:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4788:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4776:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4776:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4776:19:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4830:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4837:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4826:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4826:16:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4848:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4853:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4844:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4844:14:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4860:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "4804:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4804:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4804:63:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4876:116:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4891:3:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "4904:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4912:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4900:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4900:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4917:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4896:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4896:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4887:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4887:98:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4987:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4883:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4883:109:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "4876:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_bytes",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4708:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4715:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "4723:3:84",
                            "type": ""
                          }
                        ],
                        "src": "4682:316:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5140:137:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5150:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5170:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5164:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5164:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "5154:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5212:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5220:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5208:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5208:17:84"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5227:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5232:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5186:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5186:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5186:53:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5248:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5259:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5264:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5255:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5255:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "5248:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "5116:3:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5121:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "5132:3:84",
                            "type": ""
                          }
                        ],
                        "src": "5003:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5383:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5393:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5405:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5416:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5401:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5401:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5393:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5435:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5450:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5458:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5446:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5446:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5428:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5428:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5428:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5352:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5363:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5374:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5282:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5642:198:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5652:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5664:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5675:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5660:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5660:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5652:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5687:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5697:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5691:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5755:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5770:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5778:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5766:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5766:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5748:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5748:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5748:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5802:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5813:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5798:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5798:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5822:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5830:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5818:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5818:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5791:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5791:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5791:43:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5603:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5614:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5622:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5633:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5513:327:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6002:241:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6012:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6024:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6035:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6020:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6020:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6012:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6047:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6057:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6051:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6115:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6130:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6138:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6126:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6126:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6108:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6108:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6108:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6162:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6173:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6158:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6158:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6182:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6190:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6178:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6178:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6151:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6151:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6151:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6214:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6225:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6210:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6210:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6230:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6203:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6203:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6203:34:84"
                            }
                          ]
                        },
                        "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": "5955:9:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5966:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5974:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5982:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5993:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5845:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6377:168:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6387:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6399:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6410:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6395:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6395:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6387:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6429:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6444:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6452:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6440:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6440:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6422:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6422:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6422:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6516:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6527:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6512:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6512:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6532:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6505:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6505:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6505:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6338:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6349:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6357:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6368:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6248:297:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6701:481:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6711:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6721:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6715:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6732:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6750:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6761:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6746:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6746:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6736:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6780:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6791:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6773:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6773:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6773:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6803:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "6814:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "6807:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6829:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6849:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6843:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6843:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "6833:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6872:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "6880:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6865:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6865:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6865:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6896:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6907:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6918:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6903:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6903:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "6896:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6930:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6948:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6956:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6944:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6944:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "6934:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6968:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6977:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "6972:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7036:120:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "7057:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "7068:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "7062:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7062:13:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7050:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7050:26:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7050:26:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7089:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "7100:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7105:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7096:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7096:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7089:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7121:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "7135:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7143:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7131:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7131:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "7121:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "6998:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7001:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6995:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6995:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "7009:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7011:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "7020:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7023:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7016:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7016:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "7011:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "6991:3:84",
                                "statements": []
                              },
                              "src": "6987:169:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7165:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "7173:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7165:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6670:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6681:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6692:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6550:632:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7282:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7292:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7304:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7315:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7300:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7300:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7292:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7334:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "7359:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "7352:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7352:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "7345:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7345:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7327:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7327:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7327:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7251:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7262:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7273:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7187:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7478:149:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7488:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7500:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7511:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7496:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7496:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7488:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7530:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7545:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7553:66:84",
                                        "type": "",
                                        "value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7541:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7541:79:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7523:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7523:98:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7523:98:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7447:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7458:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7469:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7379:248:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7751:98:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7768:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7779:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7761:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7761:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7761:21:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7791:52:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7816:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7828:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7839:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7824:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7824:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "7799:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7799:44:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7791:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7720:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7731:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7742:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7632:217:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7972:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7982:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7994:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8005:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7990:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7990:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7982:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8024:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8039:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8047:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8035:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8035:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8017:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8017:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8017:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7941:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7952:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7963:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7854:243:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8223:98:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8240:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8251:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8233:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8233:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8233:21:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8263:52:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8288:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8300:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8311:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8296:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8296:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "8271:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8271:44:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8263:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8192:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8203:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8214:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8102:219:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8500:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8517:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8528:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8510:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8510:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8510:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8551:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8562:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8547:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8547:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8567:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8540:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8540:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8540:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8590:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8601:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8586:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8586:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8606:34:84",
                                    "type": "",
                                    "value": "PrizePool/prizeStrategy-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8579:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8579:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8579:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8650:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8662:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8673:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8658:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8658:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8650:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8477:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8491:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8326:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8861:178:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8878:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8889:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8871:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8871:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8871:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8912:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8923:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8908:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8908:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8928:2:84",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8901:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8901:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8901:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8951:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8962:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8947:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8947:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f6f6e6c792d7072697a655374726174656779",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8967:30:84",
                                    "type": "",
                                    "value": "PrizePool/only-prizeStrategy"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8940:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8940:58:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8940:58:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9007:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9019:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9030:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9015:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9015:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9007:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8838:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8852:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8687:352:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9218:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9235:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9246:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9228:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9228:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9228:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9269:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9280:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9265:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9265:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9285:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9258:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9258:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9258:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9308:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9319:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9304:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9304:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9324:34:84",
                                    "type": "",
                                    "value": "PrizePool/ticket-not-zero-addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9297:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9297:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9297:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9379:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9390:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9375:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9375:18:84"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9395:3:84",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9368:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9368:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9368:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9408:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9420:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9431:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9416:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9416:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9408:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9195:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9209:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9044:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9620:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9637:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9648:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9630:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9630:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9630:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9671:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9682:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9667:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9667:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9687:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9660:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9660:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9660:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9710:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9721:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9706:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9706:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9726:34:84",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9699:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9699:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9699:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9781:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9792:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9777:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9777:18:84"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9797:8:84",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9770:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9770:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9770:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9815:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9827:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9838:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9823:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9823:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9815:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9597:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9611:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9446:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10027:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10044:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10055:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10037:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10037:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10037:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10078:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10089:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10074:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10074:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10094:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10067:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10067:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10067:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10117:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10128:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10113:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10113:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10133:26:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10106:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10106:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10106:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10169:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10181:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10192:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10177:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10177:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10169:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10004:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10018:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9853:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10380:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10397:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10408:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10390:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10390:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10390:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10431:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10442:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10427:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10427:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10447:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10420:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10420:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10420:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10470:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10481:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10466:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10466:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10486:34:84",
                                    "type": "",
                                    "value": "PrizePool/invalid-external-token"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10459:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10459:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10459:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10530:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10542:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10553:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10538:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10538:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10530:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10357:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10371:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10206:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10741:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10758:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10769:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10751:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10751:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10751:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10792:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10803:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10788:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10788:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10808:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10781:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10781:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10781:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10831:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10842:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10827:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10827:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10847:33:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10820:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10820:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10820:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10890:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10902:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10913:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10898:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10898:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10890:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10718:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10732:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10567:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11101:178:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11118:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11129:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11111:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11111:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11111:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11152:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11163:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11148:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11148:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11168:2:84",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11141:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11141:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11141:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11191:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11202:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11187:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11187:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f7469636b65742d616c72656164792d736574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11207:30:84",
                                    "type": "",
                                    "value": "PrizePool/ticket-already-set"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11180:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11180:58:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11180:58:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11247:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11259:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11270:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11255:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11255:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11247:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11078:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11092:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10927:352:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11458:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11475:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11486:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11468:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11468:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11468:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11509:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11520:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11505:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11505:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11525:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11498:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11498:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11498:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11548:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11559:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11544:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11544:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f61776172642d657863656564732d617661696c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11564:31:84",
                                    "type": "",
                                    "value": "PrizePool/award-exceeds-avail"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11537:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11537:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11537:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11605:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11617:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11628:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11613:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11613:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11605:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11435:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11449:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11284:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11816:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11833:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11844:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11826:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11826:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11826:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11867:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11878:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11863:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11863:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11883:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11856:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11856:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11856:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11906:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11917:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11902:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11902:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11922:31:84",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11895:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11895:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11895:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11963:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11975:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11986:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11971:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11971:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11963:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11793:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11807:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11642:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12174:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12191:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12202:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12184:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12184:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12184:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12225:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12236:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12221:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12221:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12241:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12214:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12214:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12214:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12264:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12275:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12260:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12260:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12280:34:84",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12253:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12253:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12253:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12335:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12346:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12331:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12331:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12351:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12324:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12324:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12324:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12368:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12380:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12391:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12376:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12376:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12368:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12151:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12165:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12000:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12580:232:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12597:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12608:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12590:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12590:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12590:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12631:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12642:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12627:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12627:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12647:2:84",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12620:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12620:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12620:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12670:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12681:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12666:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12666:18:84"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12686:34:84",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12659:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12659:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12659:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12741:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12752:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12737:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12737:18:84"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12757:12:84",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12730:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12730:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12730:40:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12779:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12791:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12802:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12787:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12787:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12779:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12557:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12571:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12406:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12991:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13008:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13019:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13001:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13001:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13001:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13042:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13053:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13038:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13038:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13058:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13031:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13031:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13031:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13081:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13092:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13077:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13077:18:84"
                                  },
                                  {
                                    "hexValue": "5265656e7472616e637947756172643a207265656e7472616e742063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13097:33:84",
                                    "type": "",
                                    "value": "ReentrancyGuard: reentrant call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13070:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13070:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13070:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13140:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13152:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13163:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13148:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13148:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13140:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12968:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12982:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12817:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13351:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13368:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13379:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13361:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13361:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13361:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13402:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13413:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13398:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13398:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13418:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13391:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13391:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13391:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13441:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13452:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13437:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13437:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f657863656564732d6c69717569646974792d636170",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13457:33:84",
                                    "type": "",
                                    "value": "PrizePool/exceeds-liquidity-cap"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13430:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13430:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13430:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13500:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13512:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13523:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13508:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13508:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13500:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13328:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13342:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13177:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13711:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13728:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13739:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13721:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13721:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13721:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13762:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13773:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13758:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13758:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13778:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13751:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13751:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13751:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13801:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13812:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13797:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13797:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f657863656564732d62616c616e63652d636170",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13817:31:84",
                                    "type": "",
                                    "value": "PrizePool/exceeds-balance-cap"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13790:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13790:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13790:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13858:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13870:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13881:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13866:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13866:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13858:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13688:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13702:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13537:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13996:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "14006:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14018:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14029:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14014:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14014:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14006:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14048:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14059:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14041:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14041:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14041:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13965:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "13976:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13987:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13895:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14206:119:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "14216:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14228:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14239:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14224:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14224:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14216:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14258:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14269:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14251:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14251:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14251:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14296:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14307:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14292:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14292:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14312:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14285:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14285:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14285:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14167:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "14178:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14186:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14197:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14077:248:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14378:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14405:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "14407:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14407:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14407:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "14394:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "14401:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "14397:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14397:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14391:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14391:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "14388:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14436:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "14447:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "14450:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14443:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14443:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "14436:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "14361:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "14364:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "14370:3:84",
                            "type": ""
                          }
                        ],
                        "src": "14330:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14512:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14534:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "14536:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14536:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14536:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "14528:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "14531:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14525:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14525:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "14522:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14565:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "14577:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "14580:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "14573:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14573:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "14565:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "14494:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "14497:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "14503:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14463:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14646:205:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14656:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "14665:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "14660:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14725:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "14750:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "14755:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "14746:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14746:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14769:3:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14774:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "14765:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "14765:11:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "14759:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14759:18:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14739:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14739:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14739:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14686:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14689:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14683:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14683:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "14697:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14699:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14708:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14711:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14704:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14704:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "14699:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "14679:3:84",
                                "statements": []
                              },
                              "src": "14675:113:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14814:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "14827:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "14832:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "14823:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14823:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14841:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14816:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14816:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14816:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14803:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14806:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14800:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14800:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "14797:2:84"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "14624:3:84",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "14629:3:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "14634:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14593:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14903:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14994:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "14996:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14996:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14996:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "14919:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14926:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "14916:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14916:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "14913:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15025:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "15036:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15043:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15032:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15032:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "15025:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14885:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "14895:3:84",
                            "type": ""
                          }
                        ],
                        "src": "14856:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15088:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15105:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15108:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15098:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15098:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15098:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15202:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15205:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15195:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15195:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15195:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15226:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15229:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "15219:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15219:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15219:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15056:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15277:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15294:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15297:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15287:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15287:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15287:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15391:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15394:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15384:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15384:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15384:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15415:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15418:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "15408:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15408:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15408:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15245:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15466:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15483:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15486:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15476:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15476:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15476:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15580:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15583:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15573:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15573:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15573:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15604:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15607:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "15597:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15597:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15597:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15434:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15668:109:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15755:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "15764:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "15767:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "15757:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15757:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15757:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "15691:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "15702:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "15709:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "15698:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "15698:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "15688:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15688:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "15681:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15681:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "15678:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "15657:5:84",
                            "type": ""
                          }
                        ],
                        "src": "15623:154:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let offset := calldataload(add(headStart, 64))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value2 := add(_2, 32)\n        value3 := length\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        value2 := calldataload(add(headStart, 64))\n        let offset := calldataload(add(headStart, 96))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, length), 32), dataEnd) { revert(0, 0) }\n        value3 := add(_2, 32)\n        value4 := length\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_uint256t_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n        let value_1 := calldataload(add(headStart, 64))\n        validator_revert_address(value_1)\n        value2 := value_1\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_ICompLike_$11027t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_contract$_ITicket_$12213(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_bytes(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n        end := add(add(pos, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 0x20)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\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    {\n        tail := add(headStart, 96)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff00000000000000000000000000000000000000000000000000000000))\n    }\n    function abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_bytes(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_bytes(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"PrizePool/prizeStrategy-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"PrizePool/only-prizeStrategy\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"PrizePool/ticket-not-zero-addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Address: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r call\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"PrizePool/invalid-external-token\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"PrizePool/ticket-already-set\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"PrizePool/award-exceeds-avail\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"Address: call to non-contract\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"SafeERC20: ERC20 operation did n\")\n        mstore(add(headStart, 96), \"ot succeed\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ReentrancyGuard: reentrant call\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"PrizePool/exceeds-liquidity-cap\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"PrizePool/exceeds-balance-cap\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\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) { mstore(add(dst, length), 0) }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101da5760003560e01c80637b99adb111610104578063c002c4d6116100a2578063e6d8a94b11610071578063e6d8a94b146103fc578063f2fde38b14610404578063ffa1ad7414610417578063ffaad6a51461046057600080fd5b8063c002c4d6146103b6578063d7a169eb146103c7578063d804abaf146103da578063e30c3978146103eb57600080fd5b80639470b0bd116100de5780639470b0bd14610380578063aec9c30714610393578063b15a49c1146103a6578063b69ef8a8146103ae57600080fd5b80637b99adb1146103495780638da5cb5b1461035c57806391ca480e1461036d57600080fd5b80632f7627e31161017c578063630665b41161014b578063630665b4146103135780636a3fd4f91461031b578063715018a61461032e57806378b3d3271461033657600080fd5b80632f7627e3146102dd57806333e5761f146102f05780634e71e0c8146102f85780635d8a776e1461030057600080fd5b806316960d55116101b857806316960d55146102745780631c65c78b1461028757806321df0da7146102aa5780632b0ab144146102ca57600080fd5b806308234319146101df57806313f55e39146101f6578063150b7a021461020b575b600080fd5b6005545b6040519081526020015b60405180910390f35b610209610204366004611e9e565b610473565b005b610243610219366004611edf565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016101ed565b610209610282366004611e09565b610535565b61029a610295366004611dec565b610808565b60405190151581526020016101ed565b6102b26109af565b6040516001600160a01b0390911681526020016101ed565b6102096102d8366004611e9e565b6109c8565b6102096102eb36600461200e565b610a77565b6101e3610bd4565b610209610bde565b61020961030e366004611f7e565b610c6c565b6007546101e3565b61029a610329366004611dec565b610d92565b610209610dae565b61029a610344366004611dec565b610e23565b610209610357366004612047565b610e3c565b6000546001600160a01b03166102b2565b61020961037b366004611dec565b610eb1565b6101e361038e366004611f7e565b610f23565b61029a6103a1366004612047565b61108c565b6006546101e3565b6101e3611100565b6003546001600160a01b03166102b2565b6102096103d5366004611faa565b61110a565b6004546001600160a01b03166102b2565b6001546001600160a01b03166102b2565b6101e361124a565b610209610412366004611dec565b611348565b6104536040518060400160405280600581526020017f342e302e3000000000000000000000000000000000000000000000000000000081525081565b6040516101ed9190612105565b61020961046e366004611f7e565b611484565b6004546001600160a01b031633146104d25760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064015b60405180910390fd5b6104dd838383611545565b1561053057816001600160a01b0316836001600160a01b03167fb0bac59718cd343c80a813518afcf36846cfcfe6d56e2b3cab9bd49f5f9b251c8360405161052791815260200190565b60405180910390a35b505050565b6004546001600160a01b0316331461058f5760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064016104c9565b6008546001600160a01b03808516911614156105ed5760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e60448201526064016104c9565b806105f757610802565b60008167ffffffffffffffff811115610612576106126121ba565b60405190808252806020026020018201604052801561063b578160200160208202803683370190505b5090506000805b838110156107ac57856001600160a01b03166342842e0e308988888681811061066d5761066d6121a4565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b1681526001600160a01b03958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b1580156106dc57600080fd5b505af19250505080156106ed575060015b61075e573d80801561071b576040519150601f19603f3d011682016040523d82523d6000602084013e610720565b606091505b507f17e975018310f88872b58d4d8263adca83cf5c1893496ea2a86923dab15276ad816040516107509190612105565b60405180910390a15061079a565b60019150848482818110610774576107746121a4565b9050602002013583828151811061078d5761078d6121a4565b6020026020010181815250505b806107a481612173565b915050610642565b5080156107ff57846001600160a01b0316866001600160a01b03167f69c2de32bc4d47f488e72626a6cfdee85089342e52675e7de79c4b417623960c846040516107f691906120c1565b60405180910390a35b50505b50505050565b60003361081d6000546001600160a01b031690565b6001600160a01b0316146108735760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104c9565b6001600160a01b0382166108ef5760405162461bcd60e51b815260206004820152602160248201527f5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d61646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104c9565b6003546001600160a01b0316156109485760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f7469636b65742d616c72656164792d7365740000000060448201526064016104c9565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091556040517f9f9d59c87dbdc6ca82d9e5924782004b9aebc366c505c0ccab12f61e2a9f332190600090a26109a76000196115d2565b506001919050565b60006109c36008546001600160a01b031690565b905090565b6004546001600160a01b03163314610a225760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064016104c9565b610a2d838383611545565b1561053057816001600160a01b0316836001600160a01b03167fc65f48aca3b7a99b7443d04b8ffbb073156179bc628dc3f7def50477489734698360405161052791815260200190565b33610a8a6000546001600160a01b031690565b6001600160a01b031614610ae05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104c9565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610b2257600080fd5b505afa158015610b36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5a9190612060565b1115610bd0576040517f5c19a95c0000000000000000000000000000000000000000000000000000000081526001600160a01b038281166004830152831690635c19a95c90602401600060405180830381600087803b158015610bbc57600080fd5b505af11580156107ff573d6000803e3d6000fd5b5050565b60006109c361160e565b6001546001600160a01b03163314610c385760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016104c9565b600154610c4d906001600160a01b03166116a4565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6004546001600160a01b03163314610cc65760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064016104c9565b80610ccf575050565b60075480821115610d225760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f61776172642d657863656564732d617661696c00000060448201526064016104c9565b8181036007556003546001600160a01b0316610d3f848483611701565b806001600160a01b0316846001600160a01b03167fe2554529d99ab7a67db6b4cea2b32c7d55ae325f958861e05f304fdded867e3185604051610d8491815260200190565b60405180910390a350505050565b6008546000906001600160a01b03808416911614155b92915050565b33610dc16000546001600160a01b031690565b6001600160a01b031614610e175760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104c9565b610e2160006116a4565b565b6003546000906001600160a01b03808416911614610da8565b33610e4f6000546001600160a01b031690565b6001600160a01b031614610ea55760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104c9565b610eae81611781565b50565b33610ec46000546001600160a01b031690565b6001600160a01b031614610f1a5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104c9565b610eae816117b6565b6000600280541415610f775760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104c9565b600280556003546040517f631b5dfb0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0385811660248301526044820185905290911690819063631b5dfb90606401600060405180830381600087803b158015610fea57600080fd5b505af1158015610ffe573d6000803e3d6000fd5b50505050600061100b8490565b905061103485826110246008546001600160a01b031690565b6001600160a01b03169190611863565b60408051858152602081018390526001600160a01b03808516929088169133917fe56473357106d0cdea364a045d5ab7abb44b6bd1c0f092ba3734983a43459f8f910160405180910390a46001600255949350505050565b6000336110a16000546001600160a01b031690565b6001600160a01b0316146110f75760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104c9565b6109a7826115d2565b60006109c361190c565b60028054141561115c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104c9565b600280558161116a81611950565b6111b65760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d6361700060448201526064016104c9565b6111c1338585611986565b6003546040517f33e39b610000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b038481166024830152909116906333e39b6190604401600060405180830381600087803b15801561122757600080fd5b505af115801561123b573d6000803e3d6000fd5b50506001600255505050505050565b600060028054141561129e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104c9565b6002805560006112ac61160e565b60075490915060006112bc61190c565b905060008382116112ce5760006112d8565b6112d88483612130565b905060008382116112ea5760006112f4565b6112f48483612130565b9050801561133a57600782905560405181815291935083917fce2b6e507c7ca1a20ce136810f524eefc19ba4c7e4866eb6cc0cba76e778d4be9060200160405180910390a15b505060016002555092915050565b3361135b6000546001600160a01b031690565b6001600160a01b0316146113b15760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104c9565b6001600160a01b03811661142d5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104c9565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6002805414156114d65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104c9565b60028055806114e481611950565b6115305760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d6361700060448201526064016104c9565b61153b338484611986565b5050600160025550565b6008546000906001600160a01b03808516911614156115a65760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e60448201526064016104c9565b816115b3575060006115cb565b6115c76001600160a01b0384168584611863565b5060015b9392505050565b60058190556040518181527f439b9ac8f2088164a8d80921758209db1623cf1a37a48913679ef3a43d7a5cf7906020015b60405180910390a150565b600354604080517f18160ddd00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561166c57600080fd5b505afa158015611680573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c39190612060565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f5d7b07580000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260248201849052821690635d7b075890604401600060405180830381600087803b15801561176457600080fd5b505af1158015611778573d6000803e3d6000fd5b50505050505050565b60068190556040518181527f3ff20538222f568f27ff436c0c49dfd3e48d5b8f86533a3f759dc1c7089775ab90602001611603565b6001600160a01b03811661180c5760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f60448201526064016104c9565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f7f58dc86bc2e435cb77ca0edb1df55e25f90caf2d6bd866971715437d456a21290600090a250565b6040516001600160a01b0383166024820152604481018290526105309084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611a79565b6008546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561166c57600080fd5b6006546000906000198114156119695750600192915050565b808361197361160e565b61197d9190612118565b11159392505050565b6119908282611b5e565b6119dc5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f657863656564732d62616c616e63652d63617000000060448201526064016104c9565b6003546001600160a01b0316611a11843084611a006008546001600160a01b031690565b6001600160a01b0316929190611c0c565b611a1c838383611701565b806001600160a01b0316836001600160a01b0316856001600160a01b03167f4174a9435a04d04d274c76779cad136a41fde6937c56241c09ab9d3c7064a1a985604051611a6b91815260200190565b60405180910390a450505050565b6000611ace826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c5d9092919063ffffffff16565b8051909150156105305780806020019051810190611aec9190611fec565b6105305760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016104c9565b600554600090600019811415611b78576001915050610da8565b6003546040516370a0823160e01b81526001600160a01b038681166004830152839286929116906370a082319060240160206040518083038186803b158015611bc057600080fd5b505afa158015611bd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf89190612060565b611c029190612118565b1115949350505050565b6040516001600160a01b03808516602483015283166044820152606481018290526108029085907f23b872dd00000000000000000000000000000000000000000000000000000000906084016118a8565b6060611c6c8484600085611c74565b949350505050565b606082471015611cec5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016104c9565b843b611d3a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016104c9565b600080866001600160a01b03168587604051611d5691906120a5565b60006040518083038185875af1925050503d8060008114611d93576040519150601f19603f3d011682016040523d82523d6000602084013e611d98565b606091505b5091509150611da8828286611db3565b979650505050505050565b60608315611dc25750816115cb565b825115611dd25782518084602001fd5b8160405162461bcd60e51b81526004016104c99190612105565b600060208284031215611dfe57600080fd5b81356115cb816121d0565b60008060008060608587031215611e1f57600080fd5b8435611e2a816121d0565b93506020850135611e3a816121d0565b9250604085013567ffffffffffffffff80821115611e5757600080fd5b818701915087601f830112611e6b57600080fd5b813581811115611e7a57600080fd5b8860208260051b8501011115611e8f57600080fd5b95989497505060200194505050565b600080600060608486031215611eb357600080fd5b8335611ebe816121d0565b92506020840135611ece816121d0565b929592945050506040919091013590565b600080600080600060808688031215611ef757600080fd5b8535611f02816121d0565b94506020860135611f12816121d0565b935060408601359250606086013567ffffffffffffffff80821115611f3657600080fd5b818801915088601f830112611f4a57600080fd5b813581811115611f5957600080fd5b896020828501011115611f6b57600080fd5b9699959850939650602001949392505050565b60008060408385031215611f9157600080fd5b8235611f9c816121d0565b946020939093013593505050565b600080600060608486031215611fbf57600080fd5b8335611fca816121d0565b9250602084013591506040840135611fe1816121d0565b809150509250925092565b600060208284031215611ffe57600080fd5b815180151581146115cb57600080fd5b6000806040838503121561202157600080fd5b823561202c816121d0565b9150602083013561203c816121d0565b809150509250929050565b60006020828403121561205957600080fd5b5035919050565b60006020828403121561207257600080fd5b5051919050565b60008151808452612091816020860160208601612147565b601f01601f19169290920160200192915050565b600082516120b7818460208701612147565b9190910192915050565b6020808252825182820181905260009190848201906040850190845b818110156120f9578351835292840192918401916001016120dd565b50909695505050505050565b6020815260006115cb6020830184612079565b6000821982111561212b5761212b61218e565b500190565b6000828210156121425761214261218e565b500390565b60005b8381101561216257818101518382015260200161214a565b838111156108025750506000910152565b60006000198214156121875761218761218e565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610eae57600080fdfea26469706673582212207d6ee15ddbb7de882a05e4a22ccc3021ab317250d434850a8f276338f0fade8264736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1DA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7B99ADB1 GT PUSH2 0x104 JUMPI DUP1 PUSH4 0xC002C4D6 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xE6D8A94B GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xE6D8A94B EQ PUSH2 0x3FC JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x404 JUMPI DUP1 PUSH4 0xFFA1AD74 EQ PUSH2 0x417 JUMPI DUP1 PUSH4 0xFFAAD6A5 EQ PUSH2 0x460 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC002C4D6 EQ PUSH2 0x3B6 JUMPI DUP1 PUSH4 0xD7A169EB EQ PUSH2 0x3C7 JUMPI DUP1 PUSH4 0xD804ABAF EQ PUSH2 0x3DA JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x3EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9470B0BD GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x9470B0BD EQ PUSH2 0x380 JUMPI DUP1 PUSH4 0xAEC9C307 EQ PUSH2 0x393 JUMPI DUP1 PUSH4 0xB15A49C1 EQ PUSH2 0x3A6 JUMPI DUP1 PUSH4 0xB69EF8A8 EQ PUSH2 0x3AE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7B99ADB1 EQ PUSH2 0x349 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x35C JUMPI DUP1 PUSH4 0x91CA480E EQ PUSH2 0x36D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F7627E3 GT PUSH2 0x17C JUMPI DUP1 PUSH4 0x630665B4 GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x630665B4 EQ PUSH2 0x313 JUMPI DUP1 PUSH4 0x6A3FD4F9 EQ PUSH2 0x31B JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x32E JUMPI DUP1 PUSH4 0x78B3D327 EQ PUSH2 0x336 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F7627E3 EQ PUSH2 0x2DD JUMPI DUP1 PUSH4 0x33E5761F EQ PUSH2 0x2F0 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x2F8 JUMPI DUP1 PUSH4 0x5D8A776E EQ PUSH2 0x300 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x16960D55 GT PUSH2 0x1B8 JUMPI DUP1 PUSH4 0x16960D55 EQ PUSH2 0x274 JUMPI DUP1 PUSH4 0x1C65C78B EQ PUSH2 0x287 JUMPI DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0x2AA JUMPI DUP1 PUSH4 0x2B0AB144 EQ PUSH2 0x2CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8234319 EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0x13F55E39 EQ PUSH2 0x1F6 JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x20B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x5 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x209 PUSH2 0x204 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E9E JUMP JUMPDEST PUSH2 0x473 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x243 PUSH2 0x219 CALLDATASIZE PUSH1 0x4 PUSH2 0x1EDF JUMP JUMPDEST PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1ED JUMP JUMPDEST PUSH2 0x209 PUSH2 0x282 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E09 JUMP JUMPDEST PUSH2 0x535 JUMP JUMPDEST PUSH2 0x29A PUSH2 0x295 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DEC JUMP JUMPDEST PUSH2 0x808 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1ED JUMP JUMPDEST PUSH2 0x2B2 PUSH2 0x9AF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1ED JUMP JUMPDEST PUSH2 0x209 PUSH2 0x2D8 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E9E JUMP JUMPDEST PUSH2 0x9C8 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x2EB CALLDATASIZE PUSH1 0x4 PUSH2 0x200E JUMP JUMPDEST PUSH2 0xA77 JUMP JUMPDEST PUSH2 0x1E3 PUSH2 0xBD4 JUMP JUMPDEST PUSH2 0x209 PUSH2 0xBDE JUMP JUMPDEST PUSH2 0x209 PUSH2 0x30E CALLDATASIZE PUSH1 0x4 PUSH2 0x1F7E JUMP JUMPDEST PUSH2 0xC6C JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH2 0x1E3 JUMP JUMPDEST PUSH2 0x29A PUSH2 0x329 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DEC JUMP JUMPDEST PUSH2 0xD92 JUMP JUMPDEST PUSH2 0x209 PUSH2 0xDAE JUMP JUMPDEST PUSH2 0x29A PUSH2 0x344 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DEC JUMP JUMPDEST PUSH2 0xE23 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x357 CALLDATASIZE PUSH1 0x4 PUSH2 0x2047 JUMP JUMPDEST PUSH2 0xE3C JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2B2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x37B CALLDATASIZE PUSH1 0x4 PUSH2 0x1DEC JUMP JUMPDEST PUSH2 0xEB1 JUMP JUMPDEST PUSH2 0x1E3 PUSH2 0x38E CALLDATASIZE PUSH1 0x4 PUSH2 0x1F7E JUMP JUMPDEST PUSH2 0xF23 JUMP JUMPDEST PUSH2 0x29A PUSH2 0x3A1 CALLDATASIZE PUSH1 0x4 PUSH2 0x2047 JUMP JUMPDEST PUSH2 0x108C JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH2 0x1E3 JUMP JUMPDEST PUSH2 0x1E3 PUSH2 0x1100 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2B2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FAA JUMP JUMPDEST PUSH2 0x110A JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2B2 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2B2 JUMP JUMPDEST PUSH2 0x1E3 PUSH2 0x124A JUMP JUMPDEST PUSH2 0x209 PUSH2 0x412 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DEC JUMP JUMPDEST PUSH2 0x1348 JUMP JUMPDEST PUSH2 0x453 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x342E302E30000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1ED SWAP2 SWAP1 PUSH2 0x2105 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x46E CALLDATASIZE PUSH1 0x4 PUSH2 0x1F7E JUMP JUMPDEST PUSH2 0x1484 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x4D2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4DD DUP4 DUP4 DUP4 PUSH2 0x1545 JUMP JUMPDEST ISZERO PUSH2 0x530 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xB0BAC59718CD343C80A813518AFCF36846CFCFE6D56E2B3CAB9BD49F5F9B251C DUP4 PUSH1 0x40 MLOAD PUSH2 0x527 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x58F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP2 AND EQ ISZERO PUSH2 0x5ED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST DUP1 PUSH2 0x5F7 JUMPI PUSH2 0x802 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x612 JUMPI PUSH2 0x612 PUSH2 0x21BA JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x63B JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP1 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x7AC JUMPI DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x42842E0E ADDRESS DUP10 DUP9 DUP9 DUP7 DUP2 DUP2 LT PUSH2 0x66D JUMPI PUSH2 0x66D PUSH2 0x21A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP9 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP6 DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP5 SWAP1 SWAP4 AND PUSH1 0x24 DUP6 ADD MSTORE POP PUSH1 0x20 SWAP1 SWAP2 MUL ADD CALLDATALOAD PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x6DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x6ED JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x75E JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x71B JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x720 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH32 0x17E975018310F88872B58D4D8263ADCA83CF5C1893496EA2A86923DAB15276AD DUP2 PUSH1 0x40 MLOAD PUSH2 0x750 SWAP2 SWAP1 PUSH2 0x2105 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP PUSH2 0x79A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP DUP5 DUP5 DUP3 DUP2 DUP2 LT PUSH2 0x774 JUMPI PUSH2 0x774 PUSH2 0x21A4 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x78D JUMPI PUSH2 0x78D PUSH2 0x21A4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0x7A4 DUP2 PUSH2 0x2173 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x642 JUMP JUMPDEST POP DUP1 ISZERO PUSH2 0x7FF JUMPI DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x69C2DE32BC4D47F488E72626A6CFDEE85089342E52675E7DE79C4B417623960C DUP5 PUSH1 0x40 MLOAD PUSH2 0x7F6 SWAP2 SWAP1 PUSH2 0x20C1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x81D PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x873 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x8EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D6E6F742D7A65726F2D616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x948 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D616C72656164792D73657400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x9F9D59C87DBDC6CA82D9E5924782004B9AEBC366C505C0CCAB12F61E2A9F3321 SWAP1 PUSH1 0x0 SWAP1 LOG2 PUSH2 0x9A7 PUSH1 0x0 NOT PUSH2 0x15D2 JUMP JUMPDEST POP PUSH1 0x1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9C3 PUSH1 0x8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xA22 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH2 0xA2D DUP4 DUP4 DUP4 PUSH2 0x1545 JUMP JUMPDEST ISZERO PUSH2 0x530 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xC65F48ACA3B7A99B7443D04B8FFBB073156179BC628DC3F7DEF5047748973469 DUP4 PUSH1 0x40 MLOAD PUSH2 0x527 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST CALLER PUSH2 0xA8A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xAE0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB22 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB36 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 0xB5A SWAP2 SWAP1 PUSH2 0x2060 JUMP JUMPDEST GT ISZERO PUSH2 0xBD0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x5C19A95C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x5C19A95C SWAP1 PUSH1 0x24 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBBC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x7FF JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9C3 PUSH2 0x160E JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xC38 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0xC4D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x16A4 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xCC6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST DUP1 PUSH2 0xCCF JUMPI POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD DUP1 DUP3 GT ISZERO PUSH2 0xD22 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F61776172642D657863656564732D617661696C000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x7 SSTORE PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xD3F DUP5 DUP5 DUP4 PUSH2 0x1701 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xE2554529D99AB7A67DB6B4CEA2B32C7D55AE325F958861E05F304FDDED867E31 DUP6 PUSH1 0x40 MLOAD PUSH2 0xD84 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND EQ ISZERO JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0xDC1 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE17 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH2 0xE21 PUSH1 0x0 PUSH2 0x16A4 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND EQ PUSH2 0xDA8 JUMP JUMPDEST CALLER PUSH2 0xE4F PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEA5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH2 0xEAE DUP2 PUSH2 0x1781 JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH2 0xEC4 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF1A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH2 0xEAE DUP2 PUSH2 0x17B6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0xF77 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x631B5DFB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP6 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 DUP2 SWAP1 PUSH4 0x631B5DFB SWAP1 PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xFEA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xFFE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 PUSH2 0x100B DUP5 SWAP1 JUMP JUMPDEST SWAP1 POP PUSH2 0x1034 DUP6 DUP3 PUSH2 0x1024 PUSH1 0x8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x1863 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP3 SWAP1 DUP9 AND SWAP2 CALLER SWAP2 PUSH32 0xE56473357106D0CDEA364A045D5AB7ABB44B6BD1C0F092BA3734983A43459F8F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x1 PUSH1 0x2 SSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x10A1 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x10F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH2 0x9A7 DUP3 PUSH2 0x15D2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9C3 PUSH2 0x190C JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x115C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP2 PUSH2 0x116A DUP2 PUSH2 0x1950 JUMP JUMPDEST PUSH2 0x11B6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH2 0x11C1 CALLER DUP6 DUP6 PUSH2 0x1986 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x33E39B6100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x33E39B61 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1227 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x123B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x129E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x0 PUSH2 0x12AC PUSH2 0x160E JUMP JUMPDEST PUSH1 0x7 SLOAD SWAP1 SWAP2 POP PUSH1 0x0 PUSH2 0x12BC PUSH2 0x190C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x12CE JUMPI PUSH1 0x0 PUSH2 0x12D8 JUMP JUMPDEST PUSH2 0x12D8 DUP5 DUP4 PUSH2 0x2130 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x12EA JUMPI PUSH1 0x0 PUSH2 0x12F4 JUMP JUMPDEST PUSH2 0x12F4 DUP5 DUP4 PUSH2 0x2130 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x133A JUMPI PUSH1 0x7 DUP3 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE SWAP2 SWAP4 POP DUP4 SWAP2 PUSH32 0xCE2B6E507C7CA1A20CE136810F524EEFC19BA4C7E4866EB6CC0CBA76E778D4BE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x135B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x13B1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x142D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x14D6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP1 PUSH2 0x14E4 DUP2 PUSH2 0x1950 JUMP JUMPDEST PUSH2 0x1530 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH2 0x153B CALLER DUP5 DUP5 PUSH2 0x1986 JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP2 AND EQ ISZERO PUSH2 0x15A6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST DUP2 PUSH2 0x15B3 JUMPI POP PUSH1 0x0 PUSH2 0x15CB JUMP JUMPDEST PUSH2 0x15C7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP6 DUP5 PUSH2 0x1863 JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x5 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x439B9AC8F2088164A8D80921758209DB1623CF1A37A48913679EF3A43D7A5CF7 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x18160DDD00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 MLOAD PUSH1 0x0 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 PUSH4 0x18160DDD SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x166C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1680 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 0x9C3 SWAP2 SWAP1 PUSH2 0x2060 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x5D7B075800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 AND SWAP1 PUSH4 0x5D7B0758 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1764 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1778 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x6 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x3FF20538222F568F27FF436C0C49DFD3E48D5B8F86533A3F759DC1C7089775AB SWAP1 PUSH1 0x20 ADD PUSH2 0x1603 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x180C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7072697A6553747261746567792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x7F58DC86BC2E435CB77CA0EDB1DF55E25F90CAF2D6BD866971715437D456A212 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x530 SWAP1 DUP5 SWAP1 PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x1A79 JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x166C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x1969 JUMPI POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP4 PUSH2 0x1973 PUSH2 0x160E JUMP JUMPDEST PUSH2 0x197D SWAP2 SWAP1 PUSH2 0x2118 JUMP JUMPDEST GT ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1990 DUP3 DUP3 PUSH2 0x1B5E JUMP JUMPDEST PUSH2 0x19DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D62616C616E63652D636170000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1A11 DUP5 ADDRESS DUP5 PUSH2 0x1A00 PUSH1 0x8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x1C0C JUMP JUMPDEST PUSH2 0x1A1C DUP4 DUP4 DUP4 PUSH2 0x1701 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4174A9435A04D04D274C76779CAD136A41FDE6937C56241C09AB9D3C7064A1A9 DUP6 PUSH1 0x40 MLOAD PUSH2 0x1A6B SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1ACE DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1C5D SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x530 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1AEC SWAP2 SWAP1 PUSH2 0x1FEC JUMP JUMPDEST PUSH2 0x530 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x1B78 JUMPI PUSH1 0x1 SWAP2 POP POP PUSH2 0xDA8 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 SWAP3 DUP7 SWAP3 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1BC0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1BD4 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 0x1BF8 SWAP2 SWAP1 PUSH2 0x2060 JUMP JUMPDEST PUSH2 0x1C02 SWAP2 SWAP1 PUSH2 0x2118 JUMP JUMPDEST GT ISZERO SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x802 SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD PUSH2 0x18A8 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1C6C DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x1C74 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x1CEC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4C9 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x1D3A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4C9 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1D56 SWAP2 SWAP1 PUSH2 0x20A5 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1D93 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1D98 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1DA8 DUP3 DUP3 DUP7 PUSH2 0x1DB3 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x1DC2 JUMPI POP DUP2 PUSH2 0x15CB JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x1DD2 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4C9 SWAP2 SWAP1 PUSH2 0x2105 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DFE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x15CB DUP2 PUSH2 0x21D0 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1E1F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x1E2A DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x1E3A DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1E57 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1E6B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1E7A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1E8F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1EB3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x1EBE DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x1ECE DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1EF7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x1F02 DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x1F12 DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1F36 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1F4A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1F59 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x1F6B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1F91 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1F9C DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1FBF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x1FCA DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x1FE1 DUP2 PUSH2 0x21D0 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1FFE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x15CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2021 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x202C DUP2 PUSH2 0x21D0 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x203C DUP2 PUSH2 0x21D0 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2059 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2072 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x2091 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2147 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x20B7 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2147 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x20F9 JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x20DD JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x15CB PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2079 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x212B JUMPI PUSH2 0x212B PUSH2 0x218E JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2142 JUMPI PUSH2 0x2142 PUSH2 0x218E JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2162 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x214A JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x802 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2187 JUMPI PUSH2 0x2187 PUSH2 0x218E JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xEAE JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH30 0x6EE15DDBB7DE882A05E4A22CCC3021AB317250D434850A8F276338F0FADE DUP3 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "544:2344:60:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3545:100:59;3628:10;;3545:100;;;14041:25:84;;;14029:2;14014:18;3545:100:59;;;;;;;;7453:299;;;;;;:::i;:::-;;:::i;:::-;;10285:212;;;;;;:::i;:::-;10449:41;10285:212;;;;;;;;;;;7553:66:84;7541:79;;;7523:98;;7511:2;7496:18;10285:212:59;7478:149:84;8118:961:59;;;;;;:::i;:::-;;:::i;9466:379::-;;;;;;:::i;:::-;;:::i;:::-;;;7352:14:84;;7345:22;7327:41;;7315:2;7300:18;9466:379:59;7282:92:84;4095:102:59;;;:::i;:::-;;;-1:-1:-1;;;;;5446:55:84;;;5428:74;;5416:2;5401:18;4095:102:59;5383:125:84;7789:292:59;;;;;;:::i;:::-;;:::i;10047:196::-;;;;;;:::i;:::-;;:::i;3392:116::-;;;:::i;3147:129:22:-;;;:::i;6909:507:59:-;;;;;;:::i;:::-;;:::i;2886:109::-;2968:20;;2886:109;;3032:145;;;;;;:::i;:::-;;:::i;2508:94:22:-;;;:::i;3214:141:59:-;;;;;;:::i;:::-;;:::i;9305:124::-;;;;;;:::i;:::-;;:::i;1814:85:22:-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:22;1814:85;;9882:128:59;;;;;;:::i;:::-;;:::i;6371:501::-;;;;;;:::i;:::-;;:::i;9116:152::-;;;;;;:::i;:::-;;:::i;3682:104::-;3767:12;;3682:104;;2760:89;;;:::i;3823:92::-;3902:6;;-1:-1:-1;;;;;3902:6:59;3823:92;;5405:285;;;;;;:::i;:::-;;:::i;3952:106::-;4038:13;;-1:-1:-1;;;;;4038:13:59;3952:106;;2014:101:22;2095:13;;-1:-1:-1;;;;;2095:13:22;2014:101;;4234:903:59;;;:::i;2751:234:22:-;;;;;;:::i;:::-;;:::i;1362:40:59:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;5174:194::-;;;;;;:::i;:::-;;:::i;7453:299::-;2094:13;;-1:-1:-1;;;;;2094:13:59;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:59;;8889:2:84;2072:68:59;;;8871:21:84;8928:2;8908:18;;;8901:30;8967;8947:18;;;8940:58;9015:18;;2072:68:59;;;;;;;;;7618:42:::1;7631:3;7636:14;7652:7;7618:12;:42::i;:::-;7614:132;;;7711:14;-1:-1:-1::0;;;;;7681:54:59::1;7706:3;-1:-1:-1::0;;;;;7681:54:59::1;;7727:7;7681:54;;;;14041:25:84::0;;14029:2;14014:18;;13996:76;7681:54:59::1;;;;;;;;7614:132;7453:299:::0;;;:::o;8118:961::-;2094:13;;-1:-1:-1;;;;;2094:13:59;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:59;;8889:2:84;2072:68:59;;;8871:21:84;8928:2;8908:18;;;8901:30;8967;8947:18;;;8940:58;9015:18;;2072:68:59;8861:178:84;2072:68:59;1754:10:60;;-1:-1:-1;;;;;1746:37:60;;;1754:10;;1746:37;;8290:78:59::1;;;::::0;-1:-1:-1;;;8290:78:59;;10408:2:84;8290:78:59::1;::::0;::::1;10390:21:84::0;;;10427:18;;;10420:30;10486:34;10466:18;;;10459:62;10538:18;;8290:78:59::1;10380:182:84::0;8290:78:59::1;8383:21:::0;8379:58:::1;;8420:7;;8379:58;8447:33;8497:9:::0;8483:31:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;8483:31:59::1;-1:-1:-1::0;8447:67:59;-1:-1:-1;8525:23:59::1;::::0;8559:390:::1;8579:20:::0;;::::1;8559:390;;;8632:14;-1:-1:-1::0;;;;;8624:40:59::1;;8673:4;8680:3;8685:9;;8695:1;8685:12;;;;;;;:::i;:::-;8624:74;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;6126:15:84;;;8624:74:59::1;::::0;::::1;6108:34:84::0;6178:15;;;;6158:18;;;6151:43;-1:-1:-1;8685:12:59::1;::::0;;::::1;;;6210:18:84::0;;;6203:34;6020:18;;8624:74:59::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;8620:319;;;::::0;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8890:34;8918:5;8890:34;;;;;;:::i;:::-;;;;;;;;8810:129;8620:319;;;8738:4;8717:25;;8782:9;;8792:1;8782:12;;;;;;;:::i;:::-;;;;;;;8760:16;8777:1;8760:19;;;;;;;;:::i;:::-;;;;;;:34;;;::::0;::::1;8620:319;8601:3:::0;::::1;::::0;::::1;:::i;:::-;;;;8559:390;;;;8962:18;8958:115;;;9029:14;-1:-1:-1::0;;;;;9002:60:59::1;9024:3;-1:-1:-1::0;;;;;9002:60:59::1;;9045:16;9002:60;;;;;;:::i;:::-;;;;;;;;8958:115;8280:799;;2150:1;8118:961:::0;;;;:::o;9466:379::-;9539:4;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;10055:2:84;3819:58:22;;;10037:21:84;10094:2;10074:18;;;10067:30;10133:26;10113:18;;;10106:54;10177:18;;3819:58:22;10027:174:84;3819:58:22;-1:-1:-1;;;;;9563:30:59;::::1;9555:76;;;::::0;-1:-1:-1;;;9555:76:59;;9246:2:84;9555:76:59::1;::::0;::::1;9228:21:84::0;9285:2;9265:18;;;9258:30;9324:34;9304:18;;;9297:62;9395:3;9375:18;;;9368:31;9416:19;;9555:76:59::1;9218:223:84::0;9555:76:59::1;9657:6;::::0;-1:-1:-1;;;;;9657:6:59::1;9649:29:::0;9641:70:::1;;;::::0;-1:-1:-1;;;9641:70:59;;11129:2:84;9641:70:59::1;::::0;::::1;11111:21:84::0;11168:2;11148:18;;;11141:30;11207;11187:18;;;11180:58;11255:18;;9641:70:59::1;11101:178:84::0;9641:70:59::1;9722:6;:16:::0;;-1:-1:-1;;9722:16:59::1;-1:-1:-1::0;;;;;9722:16:59;::::1;::::0;;::::1;::::0;;;9754:18:::1;::::0;::::1;::::0;-1:-1:-1;;9754:18:59::1;9783:33;-1:-1:-1::0;;9783:14:59::1;:33::i;:::-;-1:-1:-1::0;9834:4:59::1;9466:379:::0;;;:::o;4095:102::-;4147:7;4181:8;2285:10:60;;-1:-1:-1;;;;;2285:10:60;;2210:92;4181:8:59;4166:24;;4095:102;:::o;7789:292::-;2094:13;;-1:-1:-1;;;;;2094:13:59;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:59;;8889:2:84;2072:68:59;;;8871:21:84;8928:2;8908:18;;;8901:30;8967;8947:18;;;8940:58;9015:18;;2072:68:59;8861:178:84;2072:68:59;7951:42:::1;7964:3;7969:14;7985:7;7951:12;:42::i;:::-;7947:128;;;8040:14;-1:-1:-1::0;;;;;8014:50:59::1;8035:3;-1:-1:-1::0;;;;;8014:50:59::1;;8056:7;8014:50;;;;14041:25:84::0;;14029:2;14014:18;;13996:76;10047:196:59;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;10055:2:84;3819:58:22;;;10037:21:84;10094:2;10074:18;;;10067:30;10133:26;10113:18;;;10106:54;10177:18;;3819:58:22;10027:174:84;3819:58:22;10149:34:59::1;::::0;-1:-1:-1;;;10149:34:59;;10177:4:::1;10149:34;::::0;::::1;5428:74:84::0;10186:1:59::1;::::0;-1:-1:-1;;;;;10149:19:59;::::1;::::0;::::1;::::0;5401:18:84;;10149:34:59::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;10145:92;;;10203:23;::::0;;;;-1:-1:-1;;;;;5446:55:84;;;10203:23:59::1;::::0;::::1;5428:74:84::0;10203:18:59;::::1;::::0;::::1;::::0;5401::84;;10203:23:59::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;10145:92;10047:196:::0;;:::o;3392:116::-;3455:7;3481:20;:18;:20::i;3147:129:22:-;4050:13;;-1:-1:-1;;;;;4050:13:22;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:22;;10769:2:84;4028:71:22;;;10751:21:84;10808:2;10788:18;;;10781:30;10847:33;10827:18;;;10820:61;10898:18;;4028:71:22;10741:181:84;4028:71:22;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:22::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:22::1;::::0;;3147:129::o;6909:507:59:-;2094:13;;-1:-1:-1;;;;;2094:13:59;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:59;;8889:2:84;2072:68:59;;;8871:21:84;8928:2;8908:18;;;8901:30;8967;8947:18;;;8940:58;9015:18;;2072:68:59;8861:178:84;2072:68:59;7004:12;7000:49:::1;;10047:196:::0;;:::o;7000:49::-:1;7089:20;::::0;7128:30;;::::1;;7120:72;;;::::0;-1:-1:-1;;;7120:72:59;;11486:2:84;7120:72:59::1;::::0;::::1;11468:21:84::0;11525:2;11505:18;;;11498:30;11564:31;11544:18;;;11537:59;11613:18;;7120:72:59::1;11458:179:84::0;7120:72:59::1;7250:29:::0;;::::1;7227:20;:52:::0;7318:6:::1;::::0;-1:-1:-1;;;;;7318:6:59::1;7335:28;7341:3:::0;7272:7;7318:6;7335:5:::1;:28::i;:::-;7392:7;-1:-1:-1::0;;;;;7379:30:59::1;7387:3;-1:-1:-1::0;;;;;7379:30:59::1;;7401:7;7379:30;;;;14041:25:84::0;;14029:2;14014:18;;13996:76;7379:30:59::1;;;;;;;;6990:426;;6909:507:::0;;:::o;3032:145::-;1754:10:60;;3114:4:59;;-1:-1:-1;;;;;1746:37:60;;;1754:10;;1746:37;;3137:33:59;3130:40;3032:145;-1:-1:-1;;3032:145:59:o;2508:94:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;10055:2:84;3819:58:22;;;10037:21:84;10094:2;10074:18;;;10067:30;10133:26;10113:18;;;10106:54;10177:18;;3819:58:22;10027:174:84;3819:58:22;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;3214:141:59:-;13170:6;;3294:4;;-1:-1:-1;;;;;13170:26:59;;;:6;;:26;3317:31;13074:130;9305:124;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;10055:2:84;3819:58:22;;;10037:21:84;10094:2;10074:18;;;10067:30;10133:26;10113:18;;;10106:54;10177:18;;3819:58:22;10027:174:84;3819:58:22;9391:31:59::1;9408:13;9391:16;:31::i;:::-;9305:124:::0;:::o;9882:128::-;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;10055:2:84;3819:58:22;;;10037:21:84;10094:2;10074:18;;;10067:30;10133:26;10113:18;;;10106:54;10177:18;;3819:58:22;10027:174:84;3819:58:22;9970:33:59::1;9988:14;9970:17;:33::i;6371:501::-:0;6497:7;1680:1:0;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:0;;13019:2:84;2251:63:0;;;13001:21:84;13058:2;13038:18;;;13031:30;13097:33;13077:18;;;13070:61;13148:18;;2251:63:0;12991:181:84;2251:63:0;1680:1;2389:18;;6538:6:59::1;::::0;6583:54:::1;::::0;;;;6610:10:::1;6583:54;::::0;::::1;6108:34:84::0;-1:-1:-1;;;;;6178:15:84;;;6158:18;;;6151:43;6210:18;;;6203:34;;;6538:6:59;;::::1;::::0;;;6583:26:::1;::::0;6020:18:84;;6583:54:59::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;6678:17;6698:16;6706:7;2866:13:60::0;2768:118;6698:16:59::1;6678:36;;6725:39;6747:5;6754:9;6725:8;2285:10:60::0;;-1:-1:-1;;;;;2285:10:60;;2210:92;6725:8:59::1;-1:-1:-1::0;;;;;6725:21:59::1;::::0;:39;:21:::1;:39::i;:::-;6780:58;::::0;;14251:25:84;;;14307:2;14292:18;;14285:34;;;-1:-1:-1;;;;;6780:58:59;;::::1;::::0;;;::::1;::::0;6791:10:::1;::::0;6780:58:::1;::::0;14224:18:84;6780:58:59::1;;;;;;;1637:1:0::0;2562:7;:22;6856:9:59;6371:501;-1:-1:-1;;;;6371:501:59:o;9116:152::-;9197:4;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;10055:2:84;3819:58:22;;;10037:21:84;10094:2;10074:18;;;10067:30;10133:26;10113:18;;;10106:54;10177:18;;3819:58:22;10027:174:84;3819:58:22;9213:27:59::1;9228:11;9213:14;:27::i;2760:89::-:0;2806:7;2832:10;:8;:10::i;5405:285::-;1680:1:0;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:0;;13019:2:84;2251:63:0;;;13001:21:84;13058:2;13038:18;;;13031:30;13097:33;13077:18;;;13070:61;13148:18;;2251:63:0;12991:181:84;2251:63:0;1680:1;2389:18;;5563:7:59;2327:25:::1;5563:7:::0;2327:16:::1;:25::i;:::-;2319:69;;;::::0;-1:-1:-1;;;2319:69:59;;13379:2:84;2319:69:59::1;::::0;::::1;13361:21:84::0;13418:2;13398:18;;;13391:30;13457:33;13437:18;;;13430:61;13508:18;;2319:69:59::1;13351:181:84::0;2319:69:59::1;5586:36:::2;5597:10;5609:3;5614:7;5586:10;:36::i;:::-;5632:6;::::0;:51:::2;::::0;;;;5661:10:::2;5632:51;::::0;::::2;5748:34:84::0;-1:-1:-1;;;;;5818:15:84;;;5798:18;;;5791:43;5632:6:59;;::::2;::::0;:28:::2;::::0;5660:18:84;;5632:51:59::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;1637:1:0;2562:7;:22;-1:-1:-1;;;;;;5405:285:59:o;4234:903::-;4305:7;1680:1:0;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:0;;13019:2:84;2251:63:0;;;13001:21:84;13058:2;13038:18;;;13031:30;13097:33;13077:18;;;13070:61;13148:18;;2251:63:0;12991:181:84;2251:63:0;1680:1;2389:18;;4324:25:59::1;4352:20;:18;:20::i;:::-;4412;::::0;4324:48;;-1:-1:-1;4382:27:59::1;4583:10;:8;:10::i;:::-;4558:35;;4603:21;4645:17;4628:14;:34;4627:101;;4727:1;4627:101;;;4678:34;4695:17:::0;4678:14;:34:::1;:::i;:::-;4603:125;;4739:31;4790:19;4774:13;:35;4773:103;;4875:1;4773:103;;;4825:35;4841:19:::0;4825:13;:35:::1;:::i;:::-;4739:137:::0;-1:-1:-1;4891:27:59;;4887:207:::1;;4983:20;:42:::0;;;5045:38:::1;::::0;14041:25:84;;;4956:13:59;;-1:-1:-1;4956:13:59;;5045:38:::1;::::0;14029:2:84;14014:18;5045:38:59::1;;;;;;;4887:207;-1:-1:-1::0;;1637:1:0;2562:7;:22;-1:-1:-1;5111:19:59;4234:903;-1:-1:-1;;4234:903:59:o;2751:234:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;10055:2:84;3819:58:22;;;10037:21:84;10094:2;10074:18;;;10067:30;10133:26;10113:18;;;10106:54;10177:18;;3819:58:22;10027:174:84;3819:58:22;-1:-1:-1;;;;;2834:23:22;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:22;;12202:2:84;2826:73:22::1;::::0;::::1;12184:21:84::0;12241:2;12221:18;;;12214:30;12280:34;12260:18;;;12253:62;12351:7;12331:18;;;12324:35;12376:19;;2826:73:22::1;12174:227:84::0;2826:73:22::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:22::1;-1:-1:-1::0;;;;;2910:25:22;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:22::1;2751:234:::0;:::o;5174:194:59:-;1680:1:0;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:0;;13019:2:84;2251:63:0;;;13001:21:84;13058:2;13038:18;;;13031:30;13097:33;13077:18;;;13070:61;13148:18;;2251:63:0;12991:181:84;2251:63:0;1680:1;2389:18;;5302:7:59;2327:25:::1;5302:7:::0;2327:16:::1;:25::i;:::-;2319:69;;;::::0;-1:-1:-1;;;2319:69:59;;13379:2:84;2319:69:59::1;::::0;::::1;13361:21:84::0;13418:2;13398:18;;;13391:30;13457:33;13437:18;;;13430:61;13508:18;;2319:69:59::1;13351:181:84::0;2319:69:59::1;5325:36:::2;5336:10;5348:3;5353:7;5325:10;:36::i;:::-;-1:-1:-1::0;;1637:1:0;2562:7;:22;-1:-1:-1;5174:194:59:o;10936:372::-;1754:10:60;;11060:4:59;;-1:-1:-1;;;;;1746:37:60;;;1754:10;;1746:37;;11076:78:59;;;;-1:-1:-1;;;11076:78:59;;10408:2:84;11076:78:59;;;10390:21:84;;;10427:18;;;10420:30;10486:34;10466:18;;;10459:62;10538:18;;11076:78:59;10380:182:84;11076:78:59;11169:12;11165:55;;-1:-1:-1;11204:5:59;11197:12;;11165:55;11230:49;-1:-1:-1;;;;;11230:35:59;;11266:3;11271:7;11230:35;:49::i;:::-;-1:-1:-1;11297:4:59;10936:372;;;;;;:::o;13334:136::-;13398:10;:24;;;13437:26;;14041:25:84;;;13437:26:59;;14029:2:84;14014:18;13437:26:59;;;;;;;;13334:136;:::o;14215:106::-;14294:6;;:20;;;;;;;;14268:7;;-1:-1:-1;;;;;14294:6:59;;:18;;:20;;;;;;;;;;;;;;:6;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;3470:174:22:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;11602:172:59:-;11722:45;;;;;-1:-1:-1;;;;;6440:55:84;;;11722:45:59;;;6422:74:84;6512:18;;;6505:34;;;11722:31:59;;;;;6395:18:84;;11722:45:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11602:172;;;:::o;13592:148::-;13660:12;:28;;;13703:30;;14041:25:84;;;13703:30:59;;14029:2:84;14014:18;13703:30:59;13996:76:84;13887:239:59;-1:-1:-1;;;;;13965:28:59;;13957:73;;;;-1:-1:-1;;;13957:73:59;;8528:2:84;13957:73:59;;;8510:21:84;;;8547:18;;;8540:30;8606:34;8586:18;;;8579:62;8658:18;;13957:73:59;8500:182:84;13957:73:59;14041:13;:30;;-1:-1:-1;;14041:30:59;-1:-1:-1;;;;;14041:30:59;;;;;;;;14087:32;;;;-1:-1:-1;;14087:32:59;13887:239;:::o;634:205:6:-;773:58;;-1:-1:-1;;;;;6440:55:84;;773:58:6;;;6422:74:84;6512:18;;;6505:34;;;746:86:6;;766:5;;796:23;;6395:18:84;;773:58:6;;;;-1:-1:-1;;773:58:6;;;;;;;;;;;;;;;;;;;;;;;;;;;746:19;:86::i;1954:120:60:-;2032:10;;:35;;-1:-1:-1;;;2032:35:60;;2061:4;2032:35;;;5428:74:84;2006:7:60;;-1:-1:-1;;;;;2032:10:60;;:20;;5401:18:84;;2032:35:60;;;;;;;;;;;;;;;;;;12605:252:59;12711:12;;12671:4;;-1:-1:-1;;12737:34:59;;12733:51;;;-1:-1:-1;12780:4:59;;12605:252;-1:-1:-1;;12605:252:59:o;12733:51::-;12836:13;12825:7;12802:20;:18;:20::i;:::-;:30;;;;:::i;:::-;:47;;;12605:252;-1:-1:-1;;;12605:252:59:o;5938:396::-;6038:25;6050:3;6055:7;6038:11;:25::i;:::-;6030:67;;;;-1:-1:-1;;;6030:67:59;;13739:2:84;6030:67:59;;;13721:21:84;13778:2;13758:18;;;13751:30;13817:31;13797:18;;;13790:59;13866:18;;6030:67:59;13711:179:84;6030:67:59;6126:6;;-1:-1:-1;;;;;6126:6:59;6143:60;6169:9;6188:4;6195:7;6143:8;2285:10:60;;-1:-1:-1;;;;;2285:10:60;;2210:92;6143:8:59;-1:-1:-1;;;;;6143:25:59;;:60;;:25;:60::i;:::-;6214:28;6220:3;6225:7;6234;6214:5;:28::i;:::-;6310:7;-1:-1:-1;;;;;6284:43:59;6305:3;-1:-1:-1;;;;;6284:43:59;6294:9;-1:-1:-1;;;;;6284:43:59;;6319:7;6284:43;;;;14041:25:84;;14029:2;14014:18;;13996:76;6284:43:59;;;;;;;;6020:314;5938:396;;;:::o;3140:706:6:-;3559:23;3585:69;3613:4;3585:69;;;;;;;;;;;;;;;;;3593:5;-1:-1:-1;;;;;3585:27:6;;;:69;;;;;:::i;:::-;3668:17;;3559:95;;-1:-1:-1;3668:21:6;3664:176;;3763:10;3752:30;;;;;;;;;;;;:::i;:::-;3744:85;;;;-1:-1:-1;;;3744:85:6;;12608:2:84;3744:85:6;;;12590:21:84;12647:2;12627:18;;;12620:30;12686:34;12666:18;;;12659:62;12757:12;12737:18;;;12730:40;12787:19;;3744:85:6;12580:232:84;12093:259:59;12207:10;;12169:4;;-1:-1:-1;;12232:32:59;;12228:49;;;12273:4;12266:11;;;;;12228:49;12296:6;;:23;;-1:-1:-1;;;12296:23:59;;-1:-1:-1;;;;;5446:55:84;;;12296:23:59;;;5428:74:84;12333:11:59;;12322:7;;12296:6;;;:16;;5401:18:84;;12296:23:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;;;;:::i;:::-;:48;;;12093:259;-1:-1:-1;;;;12093:259:59:o;845:241:6:-;1010:68;;-1:-1:-1;;;;;6126:15:84;;;1010:68:6;;;6108:34:84;6178:15;;6158:18;;;6151:43;6210:18;;;6203:34;;;983:96:6;;1003:5;;1033:27;;6020:18:84;;1010:68:6;6002:241:84;3461:223:11;3594:12;3625:52;3647:6;3655:4;3661:1;3664:12;3625:21;:52::i;:::-;3618:59;3461:223;-1:-1:-1;;;;3461:223:11:o;4548:499::-;4713:12;4770:5;4745:21;:30;;4737:81;;;;-1:-1:-1;;;4737:81:11;;9648:2:84;4737:81:11;;;9630:21:84;9687:2;9667:18;;;9660:30;9726:34;9706:18;;;9699:62;9797:8;9777:18;;;9770:36;9823:19;;4737:81:11;9620:228:84;4737:81:11;1034:20;;4828:60;;;;-1:-1:-1;;;4828:60:11;;11844:2:84;4828:60:11;;;11826:21:84;11883:2;11863:18;;;11856:30;11922:31;11902:18;;;11895:59;11971:18;;4828:60:11;11816:179:84;4828:60:11;4900:12;4914:23;4941:6;-1:-1:-1;;;;;4941:11:11;4960:5;4967:4;4941:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4899:73;;;;4989:51;5006:7;5015:10;5027:12;4989:16;:51::i;:::-;4982:58;4548:499;-1:-1:-1;;;;;;;4548:499:11:o;7161:692::-;7307:12;7335:7;7331:516;;;-1:-1:-1;7365:10:11;7358:17;;7331:516;7476:17;;:21;7472:365;;7670:10;7664:17;7730:15;7717:10;7713:2;7709:19;7702:44;7472:365;7809:12;7802:20;;-1:-1:-1;;;7802:20:11;;;;;;;;:::i;14:247:84:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;200:31;225:5;200:31;:::i;266:891::-;370:6;378;386;394;447:2;435:9;426:7;422:23;418:32;415:2;;;463:1;460;453:12;415:2;502:9;489:23;521:31;546:5;521:31;:::i;:::-;571:5;-1:-1:-1;628:2:84;613:18;;600:32;641:33;600:32;641:33;:::i;:::-;693:7;-1:-1:-1;751:2:84;736:18;;723:32;774:18;804:14;;;801:2;;;831:1;828;821:12;801:2;869:6;858:9;854:22;844:32;;914:7;907:4;903:2;899:13;895:27;885:2;;936:1;933;926:12;885:2;976;963:16;1002:2;994:6;991:14;988:2;;;1018:1;1015;1008:12;988:2;1071:7;1066:2;1056:6;1053:1;1049:14;1045:2;1041:23;1037:32;1034:45;1031:2;;;1092:1;1089;1082:12;1031:2;405:752;;;;-1:-1:-1;;1123:2:84;1115:11;;-1:-1:-1;;;405:752:84:o;1162:456::-;1239:6;1247;1255;1308:2;1296:9;1287:7;1283:23;1279:32;1276:2;;;1324:1;1321;1314:12;1276:2;1363:9;1350:23;1382:31;1407:5;1382:31;:::i;:::-;1432:5;-1:-1:-1;1489:2:84;1474:18;;1461:32;1502:33;1461:32;1502:33;:::i;:::-;1266:352;;1554:7;;-1:-1:-1;;;1608:2:84;1593:18;;;;1580:32;;1266:352::o;1623:936::-;1720:6;1728;1736;1744;1752;1805:3;1793:9;1784:7;1780:23;1776:33;1773:2;;;1822:1;1819;1812:12;1773:2;1861:9;1848:23;1880:31;1905:5;1880:31;:::i;:::-;1930:5;-1:-1:-1;1987:2:84;1972:18;;1959:32;2000:33;1959:32;2000:33;:::i;:::-;2052:7;-1:-1:-1;2106:2:84;2091:18;;2078:32;;-1:-1:-1;2161:2:84;2146:18;;2133:32;2184:18;2214:14;;;2211:2;;;2241:1;2238;2231:12;2211:2;2279:6;2268:9;2264:22;2254:32;;2324:7;2317:4;2313:2;2309:13;2305:27;2295:2;;2346:1;2343;2336:12;2295:2;2386;2373:16;2412:2;2404:6;2401:14;2398:2;;;2428:1;2425;2418:12;2398:2;2473:7;2468:2;2459:6;2455:2;2451:15;2447:24;2444:37;2441:2;;;2494:1;2491;2484:12;2441:2;1763:796;;;;-1:-1:-1;1763:796:84;;-1:-1:-1;2525:2:84;2517:11;;2547:6;1763:796;-1:-1:-1;;;1763:796:84:o;2564:315::-;2632:6;2640;2693:2;2681:9;2672:7;2668:23;2664:32;2661:2;;;2709:1;2706;2699:12;2661:2;2748:9;2735:23;2767:31;2792:5;2767:31;:::i;:::-;2817:5;2869:2;2854:18;;;;2841:32;;-1:-1:-1;;;2651:228:84:o;2884:456::-;2961:6;2969;2977;3030:2;3018:9;3009:7;3005:23;3001:32;2998:2;;;3046:1;3043;3036:12;2998:2;3085:9;3072:23;3104:31;3129:5;3104:31;:::i;:::-;3154:5;-1:-1:-1;3206:2:84;3191:18;;3178:32;;-1:-1:-1;3262:2:84;3247:18;;3234:32;3275:33;3234:32;3275:33;:::i;:::-;3327:7;3317:17;;;2988:352;;;;;:::o;3345:277::-;3412:6;3465:2;3453:9;3444:7;3440:23;3436:32;3433:2;;;3481:1;3478;3471:12;3433:2;3513:9;3507:16;3566:5;3559:13;3552:21;3545:5;3542:32;3532:2;;3588:1;3585;3578:12;3627:407;3714:6;3722;3775:2;3763:9;3754:7;3750:23;3746:32;3743:2;;;3791:1;3788;3781:12;3743:2;3830:9;3817:23;3849:31;3874:5;3849:31;:::i;:::-;3899:5;-1:-1:-1;3956:2:84;3941:18;;3928:32;3969:33;3928:32;3969:33;:::i;:::-;4021:7;4011:17;;;3733:301;;;;;:::o;4308:180::-;4367:6;4420:2;4408:9;4399:7;4395:23;4391:32;4388:2;;;4436:1;4433;4426:12;4388:2;-1:-1:-1;4459:23:84;;4378:110;-1:-1:-1;4378:110:84:o;4493:184::-;4563:6;4616:2;4604:9;4595:7;4591:23;4587:32;4584:2;;;4632:1;4629;4622:12;4584:2;-1:-1:-1;4655:16:84;;4574:103;-1:-1:-1;4574:103:84:o;4682:316::-;4723:3;4761:5;4755:12;4788:6;4783:3;4776:19;4804:63;4860:6;4853:4;4848:3;4844:14;4837:4;4830:5;4826:16;4804:63;:::i;:::-;4912:2;4900:15;-1:-1:-1;;4896:88:84;4887:98;;;;4987:4;4883:109;;4731:267;-1:-1:-1;;4731:267:84:o;5003:274::-;5132:3;5170:6;5164:13;5186:53;5232:6;5227:3;5220:4;5212:6;5208:17;5186:53;:::i;:::-;5255:16;;;;;5140:137;-1:-1:-1;;5140:137:84:o;6550:632::-;6721:2;6773:21;;;6843:13;;6746:18;;;6865:22;;;6692:4;;6721:2;6944:15;;;;6918:2;6903:18;;;6692:4;6987:169;7001:6;6998:1;6995:13;6987:169;;;7062:13;;7050:26;;7131:15;;;;7096:12;;;;7023:1;7016:9;6987:169;;;-1:-1:-1;7173:3:84;;6701:481;-1:-1:-1;;;;;;6701:481:84:o;7632:217::-;7779:2;7768:9;7761:21;7742:4;7799:44;7839:2;7828:9;7824:18;7816:6;7799:44;:::i;14330:128::-;14370:3;14401:1;14397:6;14394:1;14391:13;14388:2;;;14407:18;;:::i;:::-;-1:-1:-1;14443:9:84;;14378:80::o;14463:125::-;14503:4;14531:1;14528;14525:8;14522:2;;;14536:18;;:::i;:::-;-1:-1:-1;14573:9:84;;14512:76::o;14593:258::-;14665:1;14675:113;14689:6;14686:1;14683:13;14675:113;;;14765:11;;;14759:18;14746:11;;;14739:39;14711:2;14704:10;14675:113;;;14806:6;14803:1;14800:13;14797:2;;;-1:-1:-1;;14841:1:84;14823:16;;14816:27;14646:205::o;14856:195::-;14895:3;-1:-1:-1;;14919:5:84;14916:77;14913:2;;;14996:18;;:::i;:::-;-1:-1:-1;15043:1:84;15032:13;;14903:148::o;15056:184::-;-1:-1:-1;;;15105:1:84;15098:88;15205:4;15202:1;15195:15;15229:4;15226:1;15219:15;15245:184;-1:-1:-1;;;15294:1:84;15287:88;15394:4;15391:1;15384:15;15418:4;15415:1;15408:15;15434:184;-1:-1:-1;;;15483:1:84;15476:88;15583:4;15580:1;15573:15;15607:4;15604:1;15597:15;15623:154;-1:-1:-1;;;;;15702:5:84;15698:54;15691:5;15688:65;15678:2;;15767:1;15764;15757:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1746200",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "VERSION()": "infinite",
                "award(address,uint256)": "infinite",
                "awardBalance()": "2326",
                "awardExternalERC20(address,address,uint256)": "infinite",
                "awardExternalERC721(address,address,uint256[])": "infinite",
                "balance()": "infinite",
                "canAwardExternal(address)": "2582",
                "captureAwardBalance()": "infinite",
                "claimOwnership()": "54531",
                "compLikeDelegate(address,address)": "infinite",
                "depositTo(address,uint256)": "infinite",
                "depositToAndDelegate(address,uint256,address)": "infinite",
                "getAccountedBalance()": "infinite",
                "getBalanceCap()": "2317",
                "getLiquidityCap()": "2370",
                "getPrizeStrategy()": "2420",
                "getTicket()": "2376",
                "getToken()": "2459",
                "isControlled(address)": "2634",
                "onERC721Received(address,address,uint256,bytes)": "infinite",
                "owner()": "2399",
                "pendingOwner()": "2442",
                "renounceOwnership()": "28224",
                "setBalanceCap(uint256)": "25730",
                "setLiquidityCap(uint256)": "25649",
                "setPrizeStrategy(address)": "infinite",
                "setTicket(address)": "53376",
                "transferExternalERC20(address,address,uint256)": "infinite",
                "transferOwnership(address)": "27966",
                "withdrawFrom(address,uint256)": "infinite"
              },
              "internal": {
                "_balance()": "infinite",
                "_canAwardExternal(address)": "infinite",
                "_redeem(uint256)": "infinite",
                "_supply(uint256)": "infinite",
                "_token()": "infinite"
              }
            },
            "methodIdentifiers": {
              "VERSION()": "ffa1ad74",
              "award(address,uint256)": "5d8a776e",
              "awardBalance()": "630665b4",
              "awardExternalERC20(address,address,uint256)": "2b0ab144",
              "awardExternalERC721(address,address,uint256[])": "16960d55",
              "balance()": "b69ef8a8",
              "canAwardExternal(address)": "6a3fd4f9",
              "captureAwardBalance()": "e6d8a94b",
              "claimOwnership()": "4e71e0c8",
              "compLikeDelegate(address,address)": "2f7627e3",
              "depositTo(address,uint256)": "ffaad6a5",
              "depositToAndDelegate(address,uint256,address)": "d7a169eb",
              "getAccountedBalance()": "33e5761f",
              "getBalanceCap()": "08234319",
              "getLiquidityCap()": "b15a49c1",
              "getPrizeStrategy()": "d804abaf",
              "getTicket()": "c002c4d6",
              "getToken()": "21df0da7",
              "isControlled(address)": "78b3d327",
              "onERC721Received(address,address,uint256,bytes)": "150b7a02",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setBalanceCap(uint256)": "aec9c307",
              "setLiquidityCap(uint256)": "7b99adb1",
              "setPrizeStrategy(address)": "91ca480e",
              "setTicket(address)": "1c65c78b",
              "transferExternalERC20(address,address,uint256)": "13f55e39",
              "transferOwnership(address)": "f2fde38b",
              "withdrawFrom(address,uint256)": "9470b0bd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IERC20\",\"name\":\"_stakeToken\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardCaptured\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Awarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardedExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"AwardedExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"balanceCap\",\"type\":\"uint256\"}],\"name\":\"BalanceCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"ControlledTokenAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC20\",\"name\":\"stakeToken\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Deposited\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"error\",\"type\":\"bytes\"}],\"name\":\"ErrorAwardingExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidityCap\",\"type\":\"uint256\"}],\"name\":\"LiquidityCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"prizeStrategy\",\"type\":\"address\"}],\"name\":\"PrizeStrategySet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"}],\"name\":\"TicketSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"TransferredExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"redeemed\",\"type\":\"uint256\"}],\"name\":\"Withdrawal\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"award\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"awardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"awardExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"_tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"awardExternalERC721\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"balance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"}],\"name\":\"canAwardExternal\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"captureAwardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ICompLike\",\"name\":\"_compLike\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"}],\"name\":\"compLikeDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"depositTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_delegate\",\"type\":\"address\"}],\"name\":\"depositToAndDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAccountedBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBalanceCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLiquidityCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeStrategy\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getTicket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_controlledToken\",\"type\":\"address\"}],\"name\":\"isControlled\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_balanceCap\",\"type\":\"uint256\"}],\"name\":\"setBalanceCap\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_liquidityCap\",\"type\":\"uint256\"}],\"name\":\"setLiquidityCap\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_prizeStrategy\",\"type\":\"address\"}],\"name\":\"setPrizeStrategy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_ticket\",\"type\":\"address\"}],\"name\":\"setTicket\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"transferExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFrom\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"Deployed(address)\":{\"details\":\"Emitted when stake prize pool is deployed.\",\"params\":{\"stakeToken\":\"Address of the stake token.\"}}},\"kind\":\"dev\",\"methods\":{\"award(address,uint256)\":{\"details\":\"The amount awarded must be less than the awardBalance()\",\"params\":{\"amount\":\"The amount of assets to be awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardBalance()\":{\"details\":\"captureAwardBalance() should be called first\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"awardExternalERC20(address,address,uint256)\":{\"details\":\"Used to award any arbitrary tokens held by the Prize Pool\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardExternalERC721(address,address,uint256[])\":{\"details\":\"Used to award any arbitrary NFTs held by the Prize Pool\",\"params\":{\"externalToken\":\"The address of the external NFT token being awarded\",\"to\":\"The address of the winner that receives the award\",\"tokenIds\":\"An array of NFT Token IDs to be transferred\"}},\"balance()\":{\"returns\":{\"_0\":\"The underlying balance of assets\"}},\"canAwardExternal(address)\":{\"details\":\"Checks with the Prize Pool if a specific token type may be awarded as an external prize\",\"params\":{\"externalToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token may be awarded, false otherwise\"}},\"captureAwardBalance()\":{\"details\":\"This function also captures the reserve fees.\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"compLikeDelegate(address,address)\":{\"params\":{\"compLike\":\"The COMP-like token held by the prize pool that should be delegated\",\"to\":\"The address to delegate to\"}},\"constructor\":{\"params\":{\"_owner\":\"Address of the Stake Prize Pool owner\",\"_stakeToken\":\"Address of the stake token\"}},\"depositTo(address,uint256)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"to\":\"The address receiving the newly minted tokens\"}},\"depositToAndDelegate(address,uint256,address)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"delegate\":\"The address to delegate to for the caller\",\"to\":\"The address receiving the newly minted tokens\"}},\"getAccountedBalance()\":{\"returns\":{\"_0\":\"uint256 accountBalance\"}},\"isControlled(address)\":{\"details\":\"Checks if a specific token is controlled by the Prize Pool\",\"params\":{\"controlledToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token is a controlled token, false otherwise\"}},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\"},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setBalanceCap(uint256)\":{\"details\":\"If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.\",\"params\":{\"balanceCap\":\"New balance cap.\"},\"returns\":{\"_0\":\"True if new balance cap has been successfully set.\"}},\"setLiquidityCap(uint256)\":{\"params\":{\"liquidityCap\":\"The new liquidity cap for the prize pool\"}},\"setPrizeStrategy(address)\":{\"params\":{\"_prizeStrategy\":\"The new prize strategy.\"}},\"setTicket(address)\":{\"params\":{\"ticket\":\"Address of the ticket to set.\"},\"returns\":{\"_0\":\"True if ticket has been successfully set.\"}},\"transferExternalERC20(address,address,uint256)\":{\"details\":\"Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}},\"withdrawFrom(address,uint256)\":{\"params\":{\"amount\":\"The amount of tokens to redeem for assets.\",\"from\":\"The address to redeem tokens from.\"},\"returns\":{\"_0\":\"The actual amount withdrawn\"}}},\"title\":\"PoolTogether V4 StakePrizePool\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"VERSION()\":{\"notice\":\"Semver Version\"},\"award(address,uint256)\":{\"notice\":\"Called by the prize strategy to award prizes.\"},\"awardBalance()\":{\"notice\":\"Returns the balance that is available to award.\"},\"awardExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to award external ERC20 prizes\"},\"awardExternalERC721(address,address,uint256[])\":{\"notice\":\"Called by the prize strategy to award external ERC721 prizes\"},\"captureAwardBalance()\":{\"notice\":\"Captures any available interest as award balance.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"compLikeDelegate(address,address)\":{\"notice\":\"Delegate the votes for a Compound COMP-like token held by the prize pool\"},\"constructor\":{\"notice\":\"Deploy the Stake Prize Pool\"},\"depositTo(address,uint256)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens\"},\"depositToAndDelegate(address,uint256,address)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller.\"},\"getAccountedBalance()\":{\"notice\":\"Read internal Ticket accounted balance.\"},\"getBalanceCap()\":{\"notice\":\"Read internal balanceCap variable\"},\"getLiquidityCap()\":{\"notice\":\"Read internal liquidityCap variable\"},\"getPrizeStrategy()\":{\"notice\":\"Read prizeStrategy variable\"},\"getTicket()\":{\"notice\":\"Read ticket variable\"},\"getToken()\":{\"notice\":\"Read token variable\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setBalanceCap(uint256)\":{\"notice\":\"Allows the owner to set a balance cap per `token` for the pool.\"},\"setLiquidityCap(uint256)\":{\"notice\":\"Allows the Governor to set a cap on the amount of liquidity that he pool can hold\"},\"setPrizeStrategy(address)\":{\"notice\":\"Sets the prize strategy of the prize pool.  Only callable by the owner.\"},\"setTicket(address)\":{\"notice\":\"Set prize pool ticket.\"},\"transferExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to transfer out external ERC20 tokens\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"},\"withdrawFrom(address,uint256)\":{\"notice\":\"Withdraw assets from the Prize Pool instantly.\"}},\"notice\":\"The Stake Prize Pool is a prize pool in which users can deposit an ERC20 token.         These tokens are simply held by the Stake Prize Pool and become eligible for prizes.         Prizes are added manually by the Stake Prize Pool owner and are distributed to users at the end of the prize period.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/prize-pool/StakePrizePool.sol\":\"StakePrizePool\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Contract module that helps prevent reentrant calls to a function.\\n *\\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\\n * available, which can be applied to functions to make sure there are no nested\\n * (reentrant) calls to them.\\n *\\n * Note that because there is a single `nonReentrant` guard, functions marked as\\n * `nonReentrant` may not call one another. This can be worked around by making\\n * those functions `private`, and then adding `external` `nonReentrant` entry\\n * points to them.\\n *\\n * TIP: If you would like to learn more about reentrancy and alternative ways\\n * to protect against it, check out our blog post\\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\\n */\\nabstract contract ReentrancyGuard {\\n    // Booleans are more expensive than uint256 or any type that takes up a full\\n    // word because each write operation emits an extra SLOAD to first read the\\n    // slot's contents, replace the bits taken up by the boolean, and then write\\n    // back. This is the compiler's defense against contract upgrades and\\n    // pointer aliasing, and it cannot be disabled.\\n\\n    // The values being non-zero value makes deployment a bit more expensive,\\n    // but in exchange the refund on every call to nonReentrant will be lower in\\n    // amount. Since refunds are capped to a percentage of the total\\n    // transaction's gas, it is best to keep them low in cases like this one, to\\n    // increase the likelihood of the full refund coming into effect.\\n    uint256 private constant _NOT_ENTERED = 1;\\n    uint256 private constant _ENTERED = 2;\\n\\n    uint256 private _status;\\n\\n    constructor() {\\n        _status = _NOT_ENTERED;\\n    }\\n\\n    /**\\n     * @dev Prevents a contract from calling itself, directly or indirectly.\\n     * Calling a `nonReentrant` function from another `nonReentrant`\\n     * function is not supported. It is possible to prevent this from happening\\n     * by making the `nonReentrant` function external, and make it call a\\n     * `private` function that does the actual work.\\n     */\\n    modifier nonReentrant() {\\n        // On the first call to nonReentrant, _notEntered will be true\\n        require(_status != _ENTERED, \\\"ReentrancyGuard: reentrant call\\\");\\n\\n        // Any calls to nonReentrant after this point will fail\\n        _status = _ENTERED;\\n\\n        _;\\n\\n        // By storing the original value once again, a refund is triggered (see\\n        // https://eips.ethereum.org/EIPS/eip-2200)\\n        _status = _NOT_ENTERED;\\n    }\\n}\\n\",\"keccak256\":\"0x842ccf9a6cd33e17b7acef8372ca42090755217b358fe0c44c98e951ea549d3a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../../utils/introspection/IERC165.sol\\\";\\n\\n/**\\n * @dev Required interface of an ERC721 compliant contract.\\n */\\ninterface IERC721 is IERC165 {\\n    /**\\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\\n     */\\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\\n     */\\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\\n\\n    /**\\n     * @dev Returns the number of tokens in ``owner``'s account.\\n     */\\n    function balanceOf(address owner) external view returns (uint256 balance);\\n\\n    /**\\n     * @dev Returns the owner of the `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function ownerOf(uint256 tokenId) external view returns (address owner);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Transfers `tokenId` token from `from` to `to`.\\n     *\\n     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\\n     * The approval is cleared when the token is transferred.\\n     *\\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\\n     *\\n     * Requirements:\\n     *\\n     * - The caller must own the token or be an approved operator.\\n     * - `tokenId` must exist.\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address to, uint256 tokenId) external;\\n\\n    /**\\n     * @dev Returns the account approved for `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function getApproved(uint256 tokenId) external view returns (address operator);\\n\\n    /**\\n     * @dev Approve or remove `operator` as an operator for the caller.\\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\\n     *\\n     * Requirements:\\n     *\\n     * - The `operator` cannot be the caller.\\n     *\\n     * Emits an {ApprovalForAll} event.\\n     */\\n    function setApprovalForAll(address operator, bool _approved) external;\\n\\n    /**\\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\\n     *\\n     * See {setApprovalForAll}\\n     */\\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external;\\n}\\n\",\"keccak256\":\"0xf101e8720213560fab41104d53b3cc7ba0456ef3a98455aa7f022391783144a0\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title ERC721 token receiver interface\\n * @dev Interface for any contract that wants to support safeTransfers\\n * from ERC721 asset contracts.\\n */\\ninterface IERC721Receiver {\\n    /**\\n     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\\n     * by `operator` from `from`, this function is called.\\n     *\\n     * It must return its Solidity selector to confirm the token transfer.\\n     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\\n     *\\n     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\\n     */\\n    function onERC721Received(\\n        address operator,\\n        address from,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external returns (bytes4);\\n}\\n\",\"keccak256\":\"0xd9517254724276e2e8de3769183c1f738f445f0095c26fd9b86d3c6687e887b9\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC165.sol\\\";\\n\\n/**\\n * @dev Library used to query support of an interface declared via {IERC165}.\\n *\\n * Note that these functions return the actual result of the query: they do not\\n * `revert` if an interface is not supported. It is up to the caller to decide\\n * what to do in these cases.\\n */\\nlibrary ERC165Checker {\\n    // As per the EIP-165 spec, no interface should ever match 0xffffffff\\n    bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;\\n\\n    /**\\n     * @dev Returns true if `account` supports the {IERC165} interface,\\n     */\\n    function supportsERC165(address account) internal view returns (bool) {\\n        // Any contract that implements ERC165 must explicitly indicate support of\\n        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid\\n        return\\n            _supportsERC165Interface(account, type(IERC165).interfaceId) &&\\n            !_supportsERC165Interface(account, _INTERFACE_ID_INVALID);\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports the interface defined by\\n     * `interfaceId`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {\\n        // query support of both ERC165 as per the spec and support of _interfaceId\\n        return supportsERC165(account) && _supportsERC165Interface(account, interfaceId);\\n    }\\n\\n    /**\\n     * @dev Returns a boolean array where each value corresponds to the\\n     * interfaces passed in and whether they're supported or not. This allows\\n     * you to batch check interfaces for a contract where your expectation\\n     * is that some interfaces may not be supported.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function getSupportedInterfaces(address account, bytes4[] memory interfaceIds)\\n        internal\\n        view\\n        returns (bool[] memory)\\n    {\\n        // an array of booleans corresponding to interfaceIds and whether they're supported or not\\n        bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);\\n\\n        // query support of ERC165 itself\\n        if (supportsERC165(account)) {\\n            // query support of each interface in interfaceIds\\n            for (uint256 i = 0; i < interfaceIds.length; i++) {\\n                interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]);\\n            }\\n        }\\n\\n        return interfaceIdsSupported;\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports all the interfaces defined in\\n     * `interfaceIds`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * Batch-querying can lead to gas savings by skipping repeated checks for\\n     * {IERC165} support.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {\\n        // query support of ERC165 itself\\n        if (!supportsERC165(account)) {\\n            return false;\\n        }\\n\\n        // query support of each interface in _interfaceIds\\n        for (uint256 i = 0; i < interfaceIds.length; i++) {\\n            if (!_supportsERC165Interface(account, interfaceIds[i])) {\\n                return false;\\n            }\\n        }\\n\\n        // all interfaces supported\\n        return true;\\n    }\\n\\n    /**\\n     * @notice Query if a contract implements an interface, does not check ERC165 support\\n     * @param account The address of the contract to query for support of an interface\\n     * @param interfaceId The interface identifier, as specified in ERC-165\\n     * @return true if the contract at account indicates support of the interface with\\n     * identifier interfaceId, false otherwise\\n     * @dev Assumes that account contains a contract that supports ERC165, otherwise\\n     * the behavior of this method is undefined. This precondition can be checked\\n     * with {supportsERC165}.\\n     * Interface identification is specified in ERC-165.\\n     */\\n    function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {\\n        bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId);\\n        (bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams);\\n        if (result.length < 32) return false;\\n        return success && abi.decode(result, (bool));\\n    }\\n}\\n\",\"keccak256\":\"0xaf583f9537cf446d08c33909e52313d349a831f6b88f20361b76474e40b4c36f\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"},\"contracts/prize-pool/PrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\nimport \\\"@openzeppelin/contracts/security/ReentrancyGuard.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC721/IERC721.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\\\";\\nimport \\\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/IPrizePool.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizePool\\n  * @author PoolTogether Inc Team\\n  * @notice Escrows assets and deposits them into a yield source.  Exposes interest to Prize Strategy.\\n            Users deposit and withdraw from this contract to participate in Prize Pool.\\n            Accounting is managed using Controlled Tokens, whose mint and burn functions can only be called by this contract.\\n            Must be inherited to provide specific yield-bearing asset control, such as Compound cTokens\\n*/\\nabstract contract PrizePool is IPrizePool, Ownable, ReentrancyGuard, IERC721Receiver {\\n    using SafeCast for uint256;\\n    using SafeERC20 for IERC20;\\n    using ERC165Checker for address;\\n\\n    /// @notice Semver Version\\n    string public constant VERSION = \\\"4.0.0\\\";\\n\\n    /// @notice Prize Pool ticket. Can only be set once by calling `setTicket()`.\\n    ITicket internal ticket;\\n\\n    /// @notice The Prize Strategy that this Prize Pool is bound to.\\n    address internal prizeStrategy;\\n\\n    /// @notice The total amount of tickets a user can hold.\\n    uint256 internal balanceCap;\\n\\n    /// @notice The total amount of funds that the prize pool can hold.\\n    uint256 internal liquidityCap;\\n\\n    /// @notice the The awardable balance\\n    uint256 internal _currentAwardBalance;\\n\\n    /* ============ Modifiers ============ */\\n\\n    /// @dev Function modifier to ensure caller is the prize-strategy\\n    modifier onlyPrizeStrategy() {\\n        require(msg.sender == prizeStrategy, \\\"PrizePool/only-prizeStrategy\\\");\\n        _;\\n    }\\n\\n    /// @dev Function modifier to ensure the deposit amount does not exceed the liquidity cap (if set)\\n    modifier canAddLiquidity(uint256 _amount) {\\n        require(_canAddLiquidity(_amount), \\\"PrizePool/exceeds-liquidity-cap\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /// @notice Deploy the Prize Pool\\n    /// @param _owner Address of the Prize Pool owner\\n    constructor(address _owner) Ownable(_owner) ReentrancyGuard() {\\n        _setLiquidityCap(type(uint256).max);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizePool\\n    function balance() external override returns (uint256) {\\n        return _balance();\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardBalance() external view override returns (uint256) {\\n        return _currentAwardBalance;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function canAwardExternal(address _externalToken) external view override returns (bool) {\\n        return _canAwardExternal(_externalToken);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function isControlled(ITicket _controlledToken) external view override returns (bool) {\\n        return _isControlled(_controlledToken);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getAccountedBalance() external view override returns (uint256) {\\n        return _ticketTotalSupply();\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getBalanceCap() external view override returns (uint256) {\\n        return balanceCap;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getLiquidityCap() external view override returns (uint256) {\\n        return liquidityCap;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getTicket() external view override returns (ITicket) {\\n        return ticket;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getPrizeStrategy() external view override returns (address) {\\n        return prizeStrategy;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getToken() external view override returns (address) {\\n        return address(_token());\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function captureAwardBalance() external override nonReentrant returns (uint256) {\\n        uint256 ticketTotalSupply = _ticketTotalSupply();\\n        uint256 currentAwardBalance = _currentAwardBalance;\\n\\n        // it's possible for the balance to be slightly less due to rounding errors in the underlying yield source\\n        uint256 currentBalance = _balance();\\n        uint256 totalInterest = (currentBalance > ticketTotalSupply)\\n            ? currentBalance - ticketTotalSupply\\n            : 0;\\n\\n        uint256 unaccountedPrizeBalance = (totalInterest > currentAwardBalance)\\n            ? totalInterest - currentAwardBalance\\n            : 0;\\n\\n        if (unaccountedPrizeBalance > 0) {\\n            currentAwardBalance = totalInterest;\\n            _currentAwardBalance = currentAwardBalance;\\n\\n            emit AwardCaptured(unaccountedPrizeBalance);\\n        }\\n\\n        return currentAwardBalance;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function depositTo(address _to, uint256 _amount)\\n        external\\n        override\\n        nonReentrant\\n        canAddLiquidity(_amount)\\n    {\\n        _depositTo(msg.sender, _to, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function depositToAndDelegate(address _to, uint256 _amount, address _delegate)\\n        external\\n        override\\n        nonReentrant\\n        canAddLiquidity(_amount)\\n    {\\n        _depositTo(msg.sender, _to, _amount);\\n        ticket.controllerDelegateFor(msg.sender, _delegate);\\n    }\\n\\n    /// @notice Transfers tokens in from one user and mints tickets to another\\n    /// @notice _operator The user to transfer tokens from\\n    /// @notice _to The user to mint tickets to\\n    /// @notice _amount The amount to transfer and mint\\n    function _depositTo(address _operator, address _to, uint256 _amount) internal\\n    {\\n        require(_canDeposit(_to, _amount), \\\"PrizePool/exceeds-balance-cap\\\");\\n\\n        ITicket _ticket = ticket;\\n\\n        _token().safeTransferFrom(_operator, address(this), _amount);\\n\\n        _mint(_to, _amount, _ticket);\\n        _supply(_amount);\\n\\n        emit Deposited(_operator, _to, _ticket, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function withdrawFrom(address _from, uint256 _amount)\\n        external\\n        override\\n        nonReentrant\\n        returns (uint256)\\n    {\\n        ITicket _ticket = ticket;\\n\\n        // burn the tickets\\n        _ticket.controllerBurnFrom(msg.sender, _from, _amount);\\n\\n        // redeem the tickets\\n        uint256 _redeemed = _redeem(_amount);\\n\\n        _token().safeTransfer(_from, _redeemed);\\n\\n        emit Withdrawal(msg.sender, _from, _ticket, _amount, _redeemed);\\n\\n        return _redeemed;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function award(address _to, uint256 _amount) external override onlyPrizeStrategy {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        uint256 currentAwardBalance = _currentAwardBalance;\\n\\n        require(_amount <= currentAwardBalance, \\\"PrizePool/award-exceeds-avail\\\");\\n\\n        unchecked {\\n            _currentAwardBalance = currentAwardBalance - _amount;\\n        }\\n\\n        ITicket _ticket = ticket;\\n\\n        _mint(_to, _amount, _ticket);\\n\\n        emit Awarded(_to, _ticket, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function transferExternalERC20(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) external override onlyPrizeStrategy {\\n        if (_transferOut(_to, _externalToken, _amount)) {\\n            emit TransferredExternalERC20(_to, _externalToken, _amount);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardExternalERC20(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) external override onlyPrizeStrategy {\\n        if (_transferOut(_to, _externalToken, _amount)) {\\n            emit AwardedExternalERC20(_to, _externalToken, _amount);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardExternalERC721(\\n        address _to,\\n        address _externalToken,\\n        uint256[] calldata _tokenIds\\n    ) external override onlyPrizeStrategy {\\n        require(_canAwardExternal(_externalToken), \\\"PrizePool/invalid-external-token\\\");\\n\\n        if (_tokenIds.length == 0) {\\n            return;\\n        }\\n\\n        uint256[] memory _awardedTokenIds = new uint256[](_tokenIds.length); \\n        bool hasAwardedTokenIds;\\n\\n        for (uint256 i = 0; i < _tokenIds.length; i++) {\\n            try IERC721(_externalToken).safeTransferFrom(address(this), _to, _tokenIds[i]) {\\n                hasAwardedTokenIds = true;\\n                _awardedTokenIds[i] = _tokenIds[i];\\n            } catch (\\n                bytes memory error\\n            ) {\\n                emit ErrorAwardingExternalERC721(error);\\n            }\\n        }\\n        if (hasAwardedTokenIds) { \\n            emit AwardedExternalERC721(_to, _externalToken, _awardedTokenIds);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setBalanceCap(uint256 _balanceCap) external override onlyOwner returns (bool) {\\n        _setBalanceCap(_balanceCap);\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setLiquidityCap(uint256 _liquidityCap) external override onlyOwner {\\n        _setLiquidityCap(_liquidityCap);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setTicket(ITicket _ticket) external override onlyOwner returns (bool) {\\n        require(address(_ticket) != address(0), \\\"PrizePool/ticket-not-zero-address\\\");\\n        require(address(ticket) == address(0), \\\"PrizePool/ticket-already-set\\\");\\n\\n        ticket = _ticket;\\n\\n        emit TicketSet(_ticket);\\n\\n        _setBalanceCap(type(uint256).max);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setPrizeStrategy(address _prizeStrategy) external override onlyOwner {\\n        _setPrizeStrategy(_prizeStrategy);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function compLikeDelegate(ICompLike _compLike, address _to) external override onlyOwner {\\n        if (_compLike.balanceOf(address(this)) > 0) {\\n            _compLike.delegate(_to);\\n        }\\n    }\\n\\n    /// @inheritdoc IERC721Receiver\\n    function onERC721Received(\\n        address,\\n        address,\\n        uint256,\\n        bytes calldata\\n    ) external pure override returns (bytes4) {\\n        return IERC721Receiver.onERC721Received.selector;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /// @notice Transfer out `amount` of `externalToken` to recipient `to`\\n    /// @dev Only awardable `externalToken` can be transferred out\\n    /// @param _to Recipient address\\n    /// @param _externalToken Address of the external asset token being transferred\\n    /// @param _amount Amount of external assets to be transferred\\n    /// @return True if transfer is successful\\n    function _transferOut(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) internal returns (bool) {\\n        require(_canAwardExternal(_externalToken), \\\"PrizePool/invalid-external-token\\\");\\n\\n        if (_amount == 0) {\\n            return false;\\n        }\\n\\n        IERC20(_externalToken).safeTransfer(_to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @notice Called to mint controlled tokens.  Ensures that token listener callbacks are fired.\\n    /// @param _to The user who is receiving the tokens\\n    /// @param _amount The amount of tokens they are receiving\\n    /// @param _controlledToken The token that is going to be minted\\n    function _mint(\\n        address _to,\\n        uint256 _amount,\\n        ITicket _controlledToken\\n    ) internal {\\n        _controlledToken.controllerMint(_to, _amount);\\n    }\\n\\n    /// @dev Checks if `user` can deposit in the Prize Pool based on the current balance cap.\\n    /// @param _user Address of the user depositing.\\n    /// @param _amount The amount of tokens to be deposited into the Prize Pool.\\n    /// @return True if the Prize Pool can receive the specified `amount` of tokens.\\n    function _canDeposit(address _user, uint256 _amount) internal view returns (bool) {\\n        uint256 _balanceCap = balanceCap;\\n\\n        if (_balanceCap == type(uint256).max) return true;\\n\\n        return (ticket.balanceOf(_user) + _amount <= _balanceCap);\\n    }\\n\\n    /// @dev Checks if the Prize Pool can receive liquidity based on the current cap\\n    /// @param _amount The amount of liquidity to be added to the Prize Pool\\n    /// @return True if the Prize Pool can receive the specified amount of liquidity\\n    function _canAddLiquidity(uint256 _amount) internal view returns (bool) {\\n        uint256 _liquidityCap = liquidityCap;\\n        if (_liquidityCap == type(uint256).max) return true;\\n        return (_ticketTotalSupply() + _amount <= _liquidityCap);\\n    }\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param _controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function _isControlled(ITicket _controlledToken) internal view returns (bool) {\\n        return (ticket == _controlledToken);\\n    }\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @param _balanceCap New balance cap.\\n    function _setBalanceCap(uint256 _balanceCap) internal {\\n        balanceCap = _balanceCap;\\n        emit BalanceCapSet(_balanceCap);\\n    }\\n\\n    /// @notice Allows the owner to set a liquidity cap for the pool\\n    /// @param _liquidityCap New liquidity cap\\n    function _setLiquidityCap(uint256 _liquidityCap) internal {\\n        liquidityCap = _liquidityCap;\\n        emit LiquidityCapSet(_liquidityCap);\\n    }\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy\\n    function _setPrizeStrategy(address _prizeStrategy) internal {\\n        require(_prizeStrategy != address(0), \\\"PrizePool/prizeStrategy-not-zero\\\");\\n\\n        prizeStrategy = _prizeStrategy;\\n\\n        emit PrizeStrategySet(_prizeStrategy);\\n    }\\n\\n    /// @notice The current total of tickets.\\n    /// @return Ticket total supply.\\n    function _ticketTotalSupply() internal view returns (uint256) {\\n        return ticket.totalSupply();\\n    }\\n\\n    /// @dev Gets the current time as represented by the current block\\n    /// @return The timestamp of the current block\\n    function _currentTime() internal view virtual returns (uint256) {\\n        return block.timestamp;\\n    }\\n\\n    /* ============ Abstract Contract Implementatiton ============ */\\n\\n    /// @notice Determines whether the passed token can be transferred out as an external award.\\n    /// @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\\n    /// prize strategy should not be allowed to move those tokens.\\n    /// @param _externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function _canAwardExternal(address _externalToken) internal view virtual returns (bool);\\n\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token\\n    function _token() internal view virtual returns (IERC20);\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens\\n    function _balance() internal virtual returns (uint256);\\n\\n    /// @notice Supplies asset tokens to the yield source.\\n    /// @param _mintAmount The amount of asset tokens to be supplied\\n    function _supply(uint256 _mintAmount) internal virtual;\\n\\n    /// @notice Redeems asset tokens from the yield source.\\n    /// @param _redeemAmount The amount of yield-bearing tokens to be redeemed\\n    /// @return The actual amount of tokens that were redeemed.\\n    function _redeem(uint256 _redeemAmount) internal virtual returns (uint256);\\n}\\n\",\"keccak256\":\"0x7b5a51eb6c75a9a88a6f36c76cbaaab6db5396bacb2c82b3a2aeada33b3ca103\",\"license\":\"GPL-3.0\"},\"contracts/prize-pool/StakePrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./PrizePool.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 StakePrizePool\\n * @author PoolTogether Inc Team\\n * @notice The Stake Prize Pool is a prize pool in which users can deposit an ERC20 token.\\n *         These tokens are simply held by the Stake Prize Pool and become eligible for prizes.\\n *         Prizes are added manually by the Stake Prize Pool owner and are distributed to users at the end of the prize period.\\n */\\ncontract StakePrizePool is PrizePool {\\n    /// @notice Address of the stake token.\\n    IERC20 private stakeToken;\\n\\n    /// @dev Emitted when stake prize pool is deployed.\\n    /// @param stakeToken Address of the stake token.\\n    event Deployed(IERC20 indexed stakeToken);\\n\\n    /// @notice Deploy the Stake Prize Pool\\n    /// @param _owner Address of the Stake Prize Pool owner\\n    /// @param _stakeToken Address of the stake token\\n    constructor(address _owner, IERC20 _stakeToken) PrizePool(_owner) {\\n        require(address(_stakeToken) != address(0), \\\"StakePrizePool/stake-token-not-zero-address\\\");\\n        stakeToken = _stakeToken;\\n\\n        emit Deployed(_stakeToken);\\n    }\\n\\n    /// @notice Determines whether the passed token can be transferred out as an external award.\\n    /// @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\\n    /// prize strategy should not be allowed to move those tokens.\\n    /// @param _externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function _canAwardExternal(address _externalToken) internal view override returns (bool) {\\n        return address(stakeToken) != _externalToken;\\n    }\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens\\n    function _balance() internal view override returns (uint256) {\\n        return stakeToken.balanceOf(address(this));\\n    }\\n\\n    /// @notice Returns the address of the ERC20 asset token used for deposits.\\n    /// @return Address of the ERC20 asset token.\\n    function _token() internal view override returns (IERC20) {\\n        return stakeToken;\\n    }\\n\\n    /// @notice Supplies asset tokens to the yield source.\\n    /// @param _mintAmount The amount of asset tokens to be supplied\\n    function _supply(uint256 _mintAmount) internal pure override {\\n        // no-op because nothing else needs to be done\\n    }\\n\\n    /// @notice Redeems asset tokens from the yield source.\\n    /// @param _redeemAmount The amount of yield-bearing tokens to be redeemed\\n    /// @return The actual amount of tokens that were redeemed.\\n    function _redeem(uint256 _redeemAmount) internal pure override returns (uint256) {\\n        return _redeemAmount;\\n    }\\n}\\n\",\"keccak256\":\"0x12184756943a861a19404b43b2c8a6961de6c1168795aec8e54dcb61258be9b2\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/prize-pool/StakePrizePool.sol:StakePrizePool",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/prize-pool/StakePrizePool.sol:StakePrizePool",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 10,
                "contract": "contracts/prize-pool/StakePrizePool.sol:StakePrizePool",
                "label": "_status",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 13863,
                "contract": "contracts/prize-pool/StakePrizePool.sol:StakePrizePool",
                "label": "ticket",
                "offset": 0,
                "slot": "3",
                "type": "t_contract(ITicket)12213"
              },
              {
                "astId": 13866,
                "contract": "contracts/prize-pool/StakePrizePool.sol:StakePrizePool",
                "label": "prizeStrategy",
                "offset": 0,
                "slot": "4",
                "type": "t_address"
              },
              {
                "astId": 13869,
                "contract": "contracts/prize-pool/StakePrizePool.sol:StakePrizePool",
                "label": "balanceCap",
                "offset": 0,
                "slot": "5",
                "type": "t_uint256"
              },
              {
                "astId": 13872,
                "contract": "contracts/prize-pool/StakePrizePool.sol:StakePrizePool",
                "label": "liquidityCap",
                "offset": 0,
                "slot": "6",
                "type": "t_uint256"
              },
              {
                "astId": 13875,
                "contract": "contracts/prize-pool/StakePrizePool.sol:StakePrizePool",
                "label": "_currentAwardBalance",
                "offset": 0,
                "slot": "7",
                "type": "t_uint256"
              },
              {
                "astId": 14886,
                "contract": "contracts/prize-pool/StakePrizePool.sol:StakePrizePool",
                "label": "stakeToken",
                "offset": 0,
                "slot": "8",
                "type": "t_contract(IERC20)663"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(IERC20)663": {
                "encoding": "inplace",
                "label": "contract IERC20",
                "numberOfBytes": "20"
              },
              "t_contract(ITicket)12213": {
                "encoding": "inplace",
                "label": "contract ITicket",
                "numberOfBytes": "20"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "VERSION()": {
                "notice": "Semver Version"
              },
              "award(address,uint256)": {
                "notice": "Called by the prize strategy to award prizes."
              },
              "awardBalance()": {
                "notice": "Returns the balance that is available to award."
              },
              "awardExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to award external ERC20 prizes"
              },
              "awardExternalERC721(address,address,uint256[])": {
                "notice": "Called by the prize strategy to award external ERC721 prizes"
              },
              "captureAwardBalance()": {
                "notice": "Captures any available interest as award balance."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "compLikeDelegate(address,address)": {
                "notice": "Delegate the votes for a Compound COMP-like token held by the prize pool"
              },
              "constructor": {
                "notice": "Deploy the Stake Prize Pool"
              },
              "depositTo(address,uint256)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens"
              },
              "depositToAndDelegate(address,uint256,address)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller."
              },
              "getAccountedBalance()": {
                "notice": "Read internal Ticket accounted balance."
              },
              "getBalanceCap()": {
                "notice": "Read internal balanceCap variable"
              },
              "getLiquidityCap()": {
                "notice": "Read internal liquidityCap variable"
              },
              "getPrizeStrategy()": {
                "notice": "Read prizeStrategy variable"
              },
              "getTicket()": {
                "notice": "Read ticket variable"
              },
              "getToken()": {
                "notice": "Read token variable"
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setBalanceCap(uint256)": {
                "notice": "Allows the owner to set a balance cap per `token` for the pool."
              },
              "setLiquidityCap(uint256)": {
                "notice": "Allows the Governor to set a cap on the amount of liquidity that he pool can hold"
              },
              "setPrizeStrategy(address)": {
                "notice": "Sets the prize strategy of the prize pool.  Only callable by the owner."
              },
              "setTicket(address)": {
                "notice": "Set prize pool ticket."
              },
              "transferExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to transfer out external ERC20 tokens"
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              },
              "withdrawFrom(address,uint256)": {
                "notice": "Withdraw assets from the Prize Pool instantly."
              }
            },
            "notice": "The Stake Prize Pool is a prize pool in which users can deposit an ERC20 token.         These tokens are simply held by the Stake Prize Pool and become eligible for prizes.         Prizes are added manually by the Stake Prize Pool owner and are distributed to users at the end of the prize period.",
            "version": 1
          }
        }
      },
      "contracts/prize-pool/YieldSourcePrizePool.sol": {
        "YieldSourcePrizePool": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IYieldSource",
                  "name": "_yieldSource",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardCaptured",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Awarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardedExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256[]",
                  "name": "tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "AwardedExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "BalanceCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "ControlledTokenAdded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "yieldSource",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Deposited",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "bytes",
                  "name": "error",
                  "type": "bytes"
                }
              ],
              "name": "ErrorAwardingExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "LiquidityCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "PrizeStrategySet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Swept",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                }
              ],
              "name": "TicketSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "TransferredExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "redeemed",
                  "type": "uint256"
                }
              ],
              "name": "Withdrawal",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "VERSION",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "award",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "awardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "awardExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256[]",
                  "name": "_tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "awardExternalERC721",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "balance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                }
              ],
              "name": "canAwardExternal",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "captureAwardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ICompLike",
                  "name": "_compLike",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                }
              ],
              "name": "compLikeDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "depositTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_delegate",
                  "type": "address"
                }
              ],
              "name": "depositToAndDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getAccountedBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBalanceCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLiquidityCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeStrategy",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getTicket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_controlledToken",
                  "type": "address"
                }
              ],
              "name": "isControlled",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                },
                {
                  "internalType": "bytes",
                  "name": "",
                  "type": "bytes"
                }
              ],
              "name": "onERC721Received",
              "outputs": [
                {
                  "internalType": "bytes4",
                  "name": "",
                  "type": "bytes4"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "setBalanceCap",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "setLiquidityCap",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "setPrizeStrategy",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_ticket",
                  "type": "address"
                }
              ],
              "name": "setTicket",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "sweep",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "transferExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_from",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawFrom",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "yieldSource",
              "outputs": [
                {
                  "internalType": "contract IYieldSource",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "Deployed(address)": {
                "details": "Emitted when yield source prize pool is deployed.",
                "params": {
                  "yieldSource": "Address of the yield source."
                }
              },
              "Swept(uint256)": {
                "params": {
                  "amount": "The amount that was swept"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "award(address,uint256)": {
                "details": "The amount awarded must be less than the awardBalance()",
                "params": {
                  "amount": "The amount of assets to be awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardBalance()": {
                "details": "captureAwardBalance() should be called first",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "awardExternalERC20(address,address,uint256)": {
                "details": "Used to award any arbitrary tokens held by the Prize Pool",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardExternalERC721(address,address,uint256[])": {
                "details": "Used to award any arbitrary NFTs held by the Prize Pool",
                "params": {
                  "externalToken": "The address of the external NFT token being awarded",
                  "to": "The address of the winner that receives the award",
                  "tokenIds": "An array of NFT Token IDs to be transferred"
                }
              },
              "balance()": {
                "returns": {
                  "_0": "The underlying balance of assets"
                }
              },
              "canAwardExternal(address)": {
                "details": "Checks with the Prize Pool if a specific token type may be awarded as an external prize",
                "params": {
                  "externalToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token may be awarded, false otherwise"
                }
              },
              "captureAwardBalance()": {
                "details": "This function also captures the reserve fees.",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "compLikeDelegate(address,address)": {
                "params": {
                  "compLike": "The COMP-like token held by the prize pool that should be delegated",
                  "to": "The address to delegate to"
                }
              },
              "constructor": {
                "params": {
                  "_owner": "Address of the Yield Source Prize Pool owner",
                  "_yieldSource": "Address of the yield source"
                }
              },
              "depositTo(address,uint256)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "depositToAndDelegate(address,uint256,address)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "delegate": "The address to delegate to for the caller",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "getAccountedBalance()": {
                "returns": {
                  "_0": "uint256 accountBalance"
                }
              },
              "isControlled(address)": {
                "details": "Checks if a specific token is controlled by the Prize Pool",
                "params": {
                  "controlledToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token is a controlled token, false otherwise"
                }
              },
              "onERC721Received(address,address,uint256,bytes)": {
                "details": "Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`."
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setBalanceCap(uint256)": {
                "details": "If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.",
                "params": {
                  "balanceCap": "New balance cap."
                },
                "returns": {
                  "_0": "True if new balance cap has been successfully set."
                }
              },
              "setLiquidityCap(uint256)": {
                "params": {
                  "liquidityCap": "The new liquidity cap for the prize pool"
                }
              },
              "setPrizeStrategy(address)": {
                "params": {
                  "_prizeStrategy": "The new prize strategy."
                }
              },
              "setTicket(address)": {
                "params": {
                  "ticket": "Address of the ticket to set."
                },
                "returns": {
                  "_0": "True if ticket has been successfully set."
                }
              },
              "sweep()": {
                "details": "This becomes prize money"
              },
              "transferExternalERC20(address,address,uint256)": {
                "details": "Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              },
              "withdrawFrom(address,uint256)": {
                "params": {
                  "amount": "The amount of tokens to redeem for assets.",
                  "from": "The address to redeem tokens from."
                },
                "returns": {
                  "_0": "The actual amount withdrawn"
                }
              }
            },
            "title": "PoolTogether V4 YieldSourcePrizePool",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_13922": {
                  "entryPoint": null,
                  "id": 13922,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_15107": {
                  "entryPoint": null,
                  "id": 15107,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_18": {
                  "entryPoint": null,
                  "id": 18,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_3961": {
                  "entryPoint": null,
                  "id": 3961,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setLiquidityCap_14793": {
                  "entryPoint": 654,
                  "id": 14793,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 574,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_address_payable_fromMemory": {
                  "entryPoint": 713,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_contract$_IYieldSource_$4176_fromMemory": {
                  "entryPoint": 752,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_packed_t_bytes4__to_t_bytes4__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 815,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_11a209ccfa541311d13853078244f17ddd8fdab4bc6a8bba4b0700d66b1422e4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7dbbc08f44bcdf3b7293b9e33119edb15fece3a9f724a4cac7c7d47b1a9e7221__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 877,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:2475:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "103:170:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "149:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "158:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "161:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "151:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "151:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "151:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "133:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "120:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "120:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "145:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "116:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "116:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "113:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "174:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "193:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "187:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "187:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "178:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "237:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "212:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "212:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "212:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "252:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "262:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "252:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address_payable_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "69:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "80:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "92:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:259:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "397:287:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "443:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "452:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "455:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "445:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "445:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "418:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "427:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "414:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "414:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "439:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "410:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "410:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "407:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "468:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "487:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "481:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "481:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "472:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "506:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "546:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "556:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "546:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "570:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "595:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "606:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "591:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "591:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "585:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "585:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "574:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "644:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "619:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "619:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "619:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "661:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "671:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "661:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IYieldSource_$4176_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "355:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "366:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "378:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "386:6:84",
                            "type": ""
                          }
                        ],
                        "src": "278:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "806:89:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "823:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "832:6:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "844:3:84",
                                            "type": "",
                                            "value": "224"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "849:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "840:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "840:20:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "828:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "828:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "816:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "816:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "816:46:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "871:18:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "882:3:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "887:1:84",
                                    "type": "",
                                    "value": "4"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "878:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "878:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "871:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes4__to_t_bytes4__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "782:3:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "787:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "798:3:84",
                            "type": ""
                          }
                        ],
                        "src": "689:206:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1037:289:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1047:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1067:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1061:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1061:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1051:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1083:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1092:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1087:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1154:77:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "pos",
                                              "nodeType": "YulIdentifier",
                                              "src": "1179:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "1184:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1175:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1175:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1202:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1210:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "1198:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "1198:14:84"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "1214:4:84",
                                                  "type": "",
                                                  "value": "0x20"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1194:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1194:25:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "1188:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1188:32:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1168:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1168:53:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1168:53:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1113:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1116:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1110:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1110:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1124:21:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1126:17:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1135:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1138:4:84",
                                          "type": "",
                                          "value": "0x20"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1131:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1131:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1126:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1106:3:84",
                                "statements": []
                              },
                              "src": "1102:129:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1257:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "pos",
                                              "nodeType": "YulIdentifier",
                                              "src": "1270:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "1275:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1266:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1266:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1284:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1259:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1259:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1259:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1246:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1249:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1243:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1243:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1240:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1297:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1308:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1313:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1304:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1304:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1297:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "1013:3:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1018:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1029:3:84",
                            "type": ""
                          }
                        ],
                        "src": "900:426:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1505:231:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1522:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1533:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1515:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1515:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1515:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1556:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1567:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1552:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1552:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1572:2:84",
                                    "type": "",
                                    "value": "41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1545:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1545:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1545:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1595:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1606:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1591:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1591:18:84"
                                  },
                                  {
                                    "hexValue": "5969656c64536f757263655072697a65506f6f6c2f696e76616c69642d796965",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1611:34:84",
                                    "type": "",
                                    "value": "YieldSourcePrizePool/invalid-yie"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1584:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1584:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1584:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1666:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1677:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1662:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1662:18:84"
                                  },
                                  {
                                    "hexValue": "6c642d736f75726365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1682:11:84",
                                    "type": "",
                                    "value": "ld-source"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1655:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1655:39:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1655:39:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1703:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1715:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1726:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1711:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1711:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1703:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_11a209ccfa541311d13853078244f17ddd8fdab4bc6a8bba4b0700d66b1422e4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1482:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1496:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1331:405:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1915:240:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1932:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1943:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1925:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1925:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1925:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1966:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1977:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1962:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1962:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1982:2:84",
                                    "type": "",
                                    "value": "50"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1955:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1955:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1955:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2005:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2016:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2001:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2001:18:84"
                                  },
                                  {
                                    "hexValue": "5969656c64536f757263655072697a65506f6f6c2f7969656c642d736f757263",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2021:34:84",
                                    "type": "",
                                    "value": "YieldSourcePrizePool/yield-sourc"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1994:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1994:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1994:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2076:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2087:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2072:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2072:18:84"
                                  },
                                  {
                                    "hexValue": "652d6e6f742d7a65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2092:20:84",
                                    "type": "",
                                    "value": "e-not-zero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2065:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2065:48:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2065:48:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2122:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2134:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2145:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2130:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2130:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2122:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7dbbc08f44bcdf3b7293b9e33119edb15fece3a9f724a4cac7c7d47b1a9e7221__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1892:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1906:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1741:414:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2261:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2271:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2283:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2294:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2279:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2279:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2271:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2313:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2324:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2306:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2306:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2306:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2230:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2241:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2252:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2160:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2387:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2451:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2460:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2463:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2453:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2453:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2453:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2410:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2421:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "2436:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "2441:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2432:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "2432:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2445:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "2428:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2428:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2417:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2417:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2407:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2407:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2400:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2400:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2397:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2376:5:84",
                            "type": ""
                          }
                        ],
                        "src": "2342:131:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_address_payable_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_contract$_IYieldSource_$4176_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_packed_t_bytes4__to_t_bytes4__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        mstore(pos, and(value0, shl(224, 0xffffffff)))\n        end := add(pos, 4)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 0x20) }\n        {\n            mstore(add(pos, i), mload(add(add(value0, i), 0x20)))\n        }\n        if gt(i, length) { mstore(add(pos, length), 0) }\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_stringliteral_11a209ccfa541311d13853078244f17ddd8fdab4bc6a8bba4b0700d66b1422e4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 41)\n        mstore(add(headStart, 64), \"YieldSourcePrizePool/invalid-yie\")\n        mstore(add(headStart, 96), \"ld-source\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_7dbbc08f44bcdf3b7293b9e33119edb15fece3a9f724a4cac7c7d47b1a9e7221__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 50)\n        mstore(add(headStart, 64), \"YieldSourcePrizePool/yield-sourc\")\n        mstore(add(headStart, 96), \"e-not-zero-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b5060405162002bcc38038062002bcc8339810160408190526200003491620002f0565b818062000041816200023e565b506001600255620000546000196200028e565b506001600160a01b038116620000cc5760405162461bcd60e51b815260206004820152603260248201527f5969656c64536f757263655072697a65506f6f6c2f7969656c642d736f757263604482015271652d6e6f742d7a65726f2d6164647265737360701b60648201526084015b60405180910390fd5b606081901b6001600160601b03191660805260405163c89039c560e01b602082015260009081906001600160a01b0384169060240160408051601f19818403018152908290526200011d916200032f565b600060405180830381855afa9150503d80600081146200015a576040519150601f19603f3d011682016040523d82523d6000602084013e6200015f565b606091505b509150915060008082511115620001895781806020019051810190620001869190620002c9565b90505b8280156200019f57506001600160a01b03811615155b620001ff5760405162461bcd60e51b815260206004820152602960248201527f5969656c64536f757263655072697a65506f6f6c2f696e76616c69642d7969656044820152686c642d736f7572636560b81b6064820152608401620000c3565b6040516001600160a01b038516907ff40fcec21964ffb566044d083b4073f29f7f7929110ea19e1b3ebe375d89055e90600090a2505050505062000386565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60068190556040518181527f3ff20538222f568f27ff436c0c49dfd3e48d5b8f86533a3f759dc1c7089775ab9060200160405180910390a150565b600060208284031215620002dc57600080fd5b8151620002e9816200036d565b9392505050565b600080604083850312156200030457600080fd5b825162000311816200036d565b602084015190925062000324816200036d565b809150509250929050565b6000825160005b8181101562000352576020818601810151858301520162000336565b8181111562000362576000828501525b509190910192915050565b6001600160a01b03811681146200038357600080fd5b50565b60805160601c6127fd620003cf600039600081816103d10152818161177301528181611876015281816119a001528181611a0d01528181611c650152611dc301526127fd6000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80637b99adb11161010f578063c002c4d6116100a2578063e6d8a94b11610071578063e6d8a94b14610441578063f2fde38b14610449578063ffa1ad741461045c578063ffaad6a5146104a557600080fd5b8063c002c4d6146103fb578063d7a169eb1461040c578063d804abaf1461041f578063e30c39781461043057600080fd5b8063aec9c307116100de578063aec9c307146103b1578063b15a49c1146103c4578063b2470e5c146103cc578063b69ef8a8146103f357600080fd5b80637b99adb1146103675780638da5cb5b1461037a57806391ca480e1461038b5780639470b0bd1461039e57600080fd5b806333e5761f11610187578063630665b411610156578063630665b4146103315780636a3fd4f914610339578063715018a61461034c57806378b3d3271461035457600080fd5b806333e5761f1461030657806335faa4161461030e5780634e71e0c8146103165780635d8a776e1461031e57600080fd5b80631c65c78b116101c35780631c65c78b1461029d57806321df0da7146102c05780632b0ab144146102e05780632f7627e3146102f357600080fd5b806308234319146101f557806313f55e391461020c578063150b7a021461022157806316960d551461028a575b600080fd5b6005545b6040519081526020015b60405180910390f35b61021f61021a366004612480565b6104b8565b005b61025961022f3660046124c1565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517fffffffff000000000000000000000000000000000000000000000000000000009091168152602001610203565b61021f6102983660046123eb565b61057a565b6102b06102ab3660046123b1565b610844565b6040519015158152602001610203565b6102c86109eb565b6040516001600160a01b039091168152602001610203565b61021f6102ee366004612480565b6109fa565b61021f6103013660046125f0565b610aa9565b6101f9610c06565b61021f610c10565b61021f610d98565b61021f61032c366004612560565b610e26565b6007546101f9565b6102b06103473660046123b1565b610f4c565b61021f610f5d565b6102b06103623660046123b1565b610fd2565b61021f610375366004612629565b610feb565b6000546001600160a01b03166102c8565b61021f6103993660046123b1565b611060565b6101f96103ac366004612560565b6110d2565b6102b06103bf366004612629565b611233565b6006546101f9565b6102c87f000000000000000000000000000000000000000000000000000000000000000081565b6101f96112a7565b6003546001600160a01b03166102c8565b61021f61041a36600461258c565b6112b1565b6004546001600160a01b03166102c8565b6001546001600160a01b03166102c8565b6101f96113f1565b61021f6104573660046123b1565b6114ef565b6104986040518060400160405280600581526020017f342e302e3000000000000000000000000000000000000000000000000000000081525081565b60405161020391906126e7565b61021f6104b3366004612560565b61162b565b6004546001600160a01b031633146105175760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064015b60405180910390fd5b6105228383836116ec565b1561057557816001600160a01b0316836001600160a01b03167fb0bac59718cd343c80a813518afcf36846cfcfe6d56e2b3cab9bd49f5f9b251c8360405161056c91815260200190565b60405180910390a35b505050565b6004546001600160a01b031633146105d45760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b6105dd8361176f565b6106295760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e604482015260640161050e565b806106335761083e565b60008167ffffffffffffffff81111561064e5761064e61279c565b604051908082528060200260200182016040528015610677578160200160208202803683370190505b5090506000805b838110156107e857856001600160a01b03166342842e0e30898888868181106106a9576106a9612786565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b1681526001600160a01b03958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b15801561071857600080fd5b505af1925050508015610729575060015b61079a573d808015610757576040519150601f19603f3d011682016040523d82523d6000602084013e61075c565b606091505b507f17e975018310f88872b58d4d8263adca83cf5c1893496ea2a86923dab15276ad8160405161078c91906126e7565b60405180910390a1506107d6565b600191508484828181106107b0576107b0612786565b905060200201358382815181106107c9576107c9612786565b6020026020010181815250505b806107e081612755565b91505061067e565b50801561083b57846001600160a01b0316866001600160a01b03167f69c2de32bc4d47f488e72626a6cfdee85089342e52675e7de79c4b417623960c8460405161083291906126a3565b60405180910390a35b50505b50505050565b6000336108596000546001600160a01b031690565b6001600160a01b0316146108af5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6001600160a01b03821661092b5760405162461bcd60e51b815260206004820152602160248201527f5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d61646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161050e565b6003546001600160a01b0316156109845760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f7469636b65742d616c72656164792d73657400000000604482015260640161050e565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091556040517f9f9d59c87dbdc6ca82d9e5924782004b9aebc366c505c0ccab12f61e2a9f332190600090a26109e3600019611836565b506001919050565b60006109f5611872565b905090565b6004546001600160a01b03163314610a545760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b610a5f8383836116ec565b1561057557816001600160a01b0316836001600160a01b03167fc65f48aca3b7a99b7443d04b8ffbb073156179bc628dc3f7def50477489734698360405161056c91815260200190565b33610abc6000546001600160a01b031690565b6001600160a01b031614610b125760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610b5457600080fd5b505afa158015610b68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8c9190612642565b1115610c02576040517f5c19a95c0000000000000000000000000000000000000000000000000000000081526001600160a01b038281166004830152831690635c19a95c90602401600060405180830381600087803b158015610bee57600080fd5b505af115801561083b573d6000803e3d6000fd5b5050565b60006109f5611905565b600280541415610c625760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b6002805533610c796000546001600160a01b031690565b6001600160a01b031614610ccf5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6000610cd9611872565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a082319060240160206040518083038186803b158015610d1a57600080fd5b505afa158015610d2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d529190612642565b9050610d5d8161199b565b6040518181527f7f221332ee403570bf4d61630b58189ea566ff1635269001e9df6a890f413dd89060200160405180910390a1506001600255565b6001546001600160a01b03163314610df25760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161050e565b600154610e07906001600160a01b0316611a74565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6004546001600160a01b03163314610e805760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b80610e89575050565b60075480821115610edc5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f61776172642d657863656564732d617661696c000000604482015260640161050e565b8181036007556003546001600160a01b0316610ef9848483611ad1565b806001600160a01b0316846001600160a01b03167fe2554529d99ab7a67db6b4cea2b32c7d55ae325f958861e05f304fdded867e3185604051610f3e91815260200190565b60405180910390a350505050565b6000610f578261176f565b92915050565b33610f706000546001600160a01b031690565b6001600160a01b031614610fc65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b610fd06000611a74565b565b6003546000906001600160a01b03808416911614610f57565b33610ffe6000546001600160a01b031690565b6001600160a01b0316146110545760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b61105d81611b51565b50565b336110736000546001600160a01b031690565b6001600160a01b0316146110c95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b61105d81611b86565b60006002805414156111265760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280556003546040517f631b5dfb0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0385811660248301526044820185905290911690819063631b5dfb90606401600060405180830381600087803b15801561119957600080fd5b505af11580156111ad573d6000803e3d6000fd5b5050505060006111bc84611c33565b90506111db85826111cb611872565b6001600160a01b03169190611ce9565b60408051858152602081018390526001600160a01b03808516929088169133917fe56473357106d0cdea364a045d5ab7abb44b6bd1c0f092ba3734983a43459f8f910160405180910390a46001600255949350505050565b6000336112486000546001600160a01b031690565b6001600160a01b03161461129e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6109e382611836565b60006109f5611d92565b6002805414156113035760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280558161131181611e23565b61135d5760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d63617000604482015260640161050e565b611368338585611e59565b6003546040517f33e39b610000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b038481166024830152909116906333e39b6190604401600060405180830381600087803b1580156113ce57600080fd5b505af11580156113e2573d6000803e3d6000fd5b50506001600255505050505050565b60006002805414156114455760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280556000611453611905565b6007549091506000611463611d92565b9050600083821161147557600061147f565b61147f8483612712565b9050600083821161149157600061149b565b61149b8483612712565b905080156114e157600782905560405181815291935083917fce2b6e507c7ca1a20ce136810f524eefc19ba4c7e4866eb6cc0cba76e778d4be9060200160405180910390a15b505060016002555092915050565b336115026000546001600160a01b031690565b6001600160a01b0316146115585760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6001600160a01b0381166115d45760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161050e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b60028054141561167d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280558061168b81611e23565b6116d75760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d63617000604482015260640161050e565b6116e2338484611e59565b5050600160025550565b60006116f78361176f565b6117435760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e604482015260640161050e565b8161175057506000611768565b6117646001600160a01b0384168584611ce9565b5060015b9392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03838116908216148015906117685750806001600160a01b031663c89039c56040518163ffffffff1660e01b815260040160206040518083038186803b1580156117e257600080fd5b505afa1580156117f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181a91906123ce565b6001600160a01b0316836001600160a01b031614159392505050565b60058190556040518181527f439b9ac8f2088164a8d80921758209db1623cf1a37a48913679ef3a43d7a5cf7906020015b60405180910390a150565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c89039c56040518163ffffffff1660e01b815260040160206040518083038186803b1580156118cd57600080fd5b505afa1580156118e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f591906123ce565b600354604080517f18160ddd00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561196357600080fd5b505afa158015611977573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f59190612642565b6119d87f0000000000000000000000000000000000000000000000000000000000000000826119c8611872565b6001600160a01b03169190611f4b565b6040517f87a6eeef000000000000000000000000000000000000000000000000000000008152600481018290523060248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906387a6eeef90604401600060405180830381600087803b158015611a5957600080fd5b505af1158015611a6d573d6000803e3d6000fd5b5050505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f5d7b07580000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260248201849052821690635d7b075890604401600060405180830381600087803b158015611b3457600080fd5b505af1158015611b48573d6000803e3d6000fd5b50505050505050565b60068190556040518181527f3ff20538222f568f27ff436c0c49dfd3e48d5b8f86533a3f759dc1c7089775ab90602001611867565b6001600160a01b038116611bdc5760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f604482015260640161050e565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f7f58dc86bc2e435cb77ca0edb1df55e25f90caf2d6bd866971715437d456a21290600090a250565b6040517f013054c2000000000000000000000000000000000000000000000000000000008152600481018290526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063013054c290602401602060405180830381600087803b158015611cb157600080fd5b505af1158015611cc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f579190612642565b6040516001600160a01b0383166024820152604481018290526105759084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915261203e565b6040517fb99152d00000000000000000000000000000000000000000000000000000000081523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063b99152d090602401602060405180830381600087803b158015611e0f57600080fd5b505af1158015611977573d6000803e3d6000fd5b600654600090600019811415611e3c5750600192915050565b8083611e46611905565b611e5091906126fa565b11159392505050565b611e638282612123565b611eaf5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f657863656564732d62616c616e63652d636170000000604482015260640161050e565b6003546001600160a01b0316611eda843084611ec9611872565b6001600160a01b03169291906121d1565b611ee5838383611ad1565b611eee8261199b565b806001600160a01b0316836001600160a01b0316856001600160a01b03167f4174a9435a04d04d274c76779cad136a41fde6937c56241c09ab9d3c7064a1a985604051611f3d91815260200190565b60405180910390a450505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b158015611fb057600080fd5b505afa158015611fc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe89190612642565b611ff291906126fa565b6040516001600160a01b03851660248201526044810182905290915061083e9085907f095ea7b30000000000000000000000000000000000000000000000000000000090606401611d2e565b6000612093826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122229092919063ffffffff16565b80519091501561057557808060200190518101906120b191906125ce565b6105755760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161050e565b60055460009060001981141561213d576001915050610f57565b6003546040516370a0823160e01b81526001600160a01b038681166004830152839286929116906370a082319060240160206040518083038186803b15801561218557600080fd5b505afa158015612199573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121bd9190612642565b6121c791906126fa565b1115949350505050565b6040516001600160a01b038085166024830152831660448201526064810182905261083e9085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401611d2e565b60606122318484600085612239565b949350505050565b6060824710156122b15760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161050e565b843b6122ff5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161050e565b600080866001600160a01b0316858760405161231b9190612687565b60006040518083038185875af1925050503d8060008114612358576040519150601f19603f3d011682016040523d82523d6000602084013e61235d565b606091505b509150915061236d828286612378565b979650505050505050565b60608315612387575081611768565b8251156123975782518084602001fd5b8160405162461bcd60e51b815260040161050e91906126e7565b6000602082840312156123c357600080fd5b8135611768816127b2565b6000602082840312156123e057600080fd5b8151611768816127b2565b6000806000806060858703121561240157600080fd5b843561240c816127b2565b9350602085013561241c816127b2565b9250604085013567ffffffffffffffff8082111561243957600080fd5b818701915087601f83011261244d57600080fd5b81358181111561245c57600080fd5b8860208260051b850101111561247157600080fd5b95989497505060200194505050565b60008060006060848603121561249557600080fd5b83356124a0816127b2565b925060208401356124b0816127b2565b929592945050506040919091013590565b6000806000806000608086880312156124d957600080fd5b85356124e4816127b2565b945060208601356124f4816127b2565b935060408601359250606086013567ffffffffffffffff8082111561251857600080fd5b818801915088601f83011261252c57600080fd5b81358181111561253b57600080fd5b89602082850101111561254d57600080fd5b9699959850939650602001949392505050565b6000806040838503121561257357600080fd5b823561257e816127b2565b946020939093013593505050565b6000806000606084860312156125a157600080fd5b83356125ac816127b2565b92506020840135915060408401356125c3816127b2565b809150509250925092565b6000602082840312156125e057600080fd5b8151801515811461176857600080fd5b6000806040838503121561260357600080fd5b823561260e816127b2565b9150602083013561261e816127b2565b809150509250929050565b60006020828403121561263b57600080fd5b5035919050565b60006020828403121561265457600080fd5b5051919050565b60008151808452612673816020860160208601612729565b601f01601f19169290920160200192915050565b60008251612699818460208701612729565b9190910192915050565b6020808252825182820181905260009190848201906040850190845b818110156126db578351835292840192918401916001016126bf565b50909695505050505050565b602081526000611768602083018461265b565b6000821982111561270d5761270d612770565b500190565b60008282101561272457612724612770565b500390565b60005b8381101561274457818101518382015260200161272c565b8381111561083e5750506000910152565b600060001982141561276957612769612770565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461105d57600080fdfea264697066735822122070ce217d2c1aa69bc791790960ce8f070b4000d06302457f3216b45576f7ed2064736f6c63430008060033",
              "opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2BCC CODESIZE SUB DUP1 PUSH3 0x2BCC DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x2F0 JUMP JUMPDEST DUP2 DUP1 PUSH3 0x41 DUP2 PUSH3 0x23E JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x2 SSTORE PUSH3 0x54 PUSH1 0x0 NOT PUSH3 0x28E JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0xCC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x32 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5969656C64536F757263655072697A65506F6F6C2F7969656C642D736F757263 PUSH1 0x44 DUP3 ADD MSTORE PUSH18 0x652D6E6F742D7A65726F2D61646472657373 PUSH1 0x70 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x60 DUP2 SWAP1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND PUSH1 0x80 MSTORE PUSH1 0x40 MLOAD PUSH4 0xC89039C5 PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH1 0x24 ADD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP1 DUP3 SWAP1 MSTORE PUSH3 0x11D SWAP2 PUSH3 0x32F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS STATICCALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH3 0x15A JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH3 0x15F JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 DUP3 MLOAD GT ISZERO PUSH3 0x189 JUMPI DUP2 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH3 0x186 SWAP2 SWAP1 PUSH3 0x2C9 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP3 DUP1 ISZERO PUSH3 0x19F JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO ISZERO JUMPDEST PUSH3 0x1FF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5969656C64536F757263655072697A65506F6F6C2F696E76616C69642D796965 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x6C642D736F75726365 PUSH1 0xB8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0xC3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xF40FCEC21964FFB566044D083B4073F29F7F7929110EA19E1B3EBE375D89055E SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP POP POP PUSH3 0x386 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x6 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x3FF20538222F568F27FF436C0C49DFD3E48D5B8F86533A3F759DC1C7089775AB SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x2DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH3 0x2E9 DUP2 PUSH3 0x36D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x304 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH3 0x311 DUP2 PUSH3 0x36D JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x324 DUP2 PUSH3 0x36D JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x352 JUMPI PUSH1 0x20 DUP2 DUP7 ADD DUP2 ADD MLOAD DUP6 DUP4 ADD MSTORE ADD PUSH3 0x336 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH3 0x362 JUMPI PUSH1 0x0 DUP3 DUP6 ADD MSTORE JUMPDEST POP SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x383 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH2 0x27FD PUSH3 0x3CF PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x3D1 ADD MSTORE DUP2 DUP2 PUSH2 0x1773 ADD MSTORE DUP2 DUP2 PUSH2 0x1876 ADD MSTORE DUP2 DUP2 PUSH2 0x19A0 ADD MSTORE DUP2 DUP2 PUSH2 0x1A0D ADD MSTORE DUP2 DUP2 PUSH2 0x1C65 ADD MSTORE PUSH2 0x1DC3 ADD MSTORE PUSH2 0x27FD 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 0x1F0 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7B99ADB1 GT PUSH2 0x10F JUMPI DUP1 PUSH4 0xC002C4D6 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xE6D8A94B GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xE6D8A94B EQ PUSH2 0x441 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x449 JUMPI DUP1 PUSH4 0xFFA1AD74 EQ PUSH2 0x45C JUMPI DUP1 PUSH4 0xFFAAD6A5 EQ PUSH2 0x4A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC002C4D6 EQ PUSH2 0x3FB JUMPI DUP1 PUSH4 0xD7A169EB EQ PUSH2 0x40C JUMPI DUP1 PUSH4 0xD804ABAF EQ PUSH2 0x41F JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x430 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xAEC9C307 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0xAEC9C307 EQ PUSH2 0x3B1 JUMPI DUP1 PUSH4 0xB15A49C1 EQ PUSH2 0x3C4 JUMPI DUP1 PUSH4 0xB2470E5C EQ PUSH2 0x3CC JUMPI DUP1 PUSH4 0xB69EF8A8 EQ PUSH2 0x3F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7B99ADB1 EQ PUSH2 0x367 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x37A JUMPI DUP1 PUSH4 0x91CA480E EQ PUSH2 0x38B JUMPI DUP1 PUSH4 0x9470B0BD EQ PUSH2 0x39E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E5761F GT PUSH2 0x187 JUMPI DUP1 PUSH4 0x630665B4 GT PUSH2 0x156 JUMPI DUP1 PUSH4 0x630665B4 EQ PUSH2 0x331 JUMPI DUP1 PUSH4 0x6A3FD4F9 EQ PUSH2 0x339 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x34C JUMPI DUP1 PUSH4 0x78B3D327 EQ PUSH2 0x354 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E5761F EQ PUSH2 0x306 JUMPI DUP1 PUSH4 0x35FAA416 EQ PUSH2 0x30E JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x316 JUMPI DUP1 PUSH4 0x5D8A776E EQ PUSH2 0x31E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1C65C78B GT PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x1C65C78B EQ PUSH2 0x29D JUMPI DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0x2C0 JUMPI DUP1 PUSH4 0x2B0AB144 EQ PUSH2 0x2E0 JUMPI DUP1 PUSH4 0x2F7627E3 EQ PUSH2 0x2F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8234319 EQ PUSH2 0x1F5 JUMPI DUP1 PUSH4 0x13F55E39 EQ PUSH2 0x20C JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x221 JUMPI DUP1 PUSH4 0x16960D55 EQ PUSH2 0x28A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x5 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x21F PUSH2 0x21A CALLDATASIZE PUSH1 0x4 PUSH2 0x2480 JUMP JUMPDEST PUSH2 0x4B8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x259 PUSH2 0x22F CALLDATASIZE PUSH1 0x4 PUSH2 0x24C1 JUMP JUMPDEST PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x203 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x298 CALLDATASIZE PUSH1 0x4 PUSH2 0x23EB JUMP JUMPDEST PUSH2 0x57A JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x2AB CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0x844 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x203 JUMP JUMPDEST PUSH2 0x2C8 PUSH2 0x9EB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x203 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x2EE CALLDATASIZE PUSH1 0x4 PUSH2 0x2480 JUMP JUMPDEST PUSH2 0x9FA JUMP JUMPDEST PUSH2 0x21F PUSH2 0x301 CALLDATASIZE PUSH1 0x4 PUSH2 0x25F0 JUMP JUMPDEST PUSH2 0xAA9 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0xC06 JUMP JUMPDEST PUSH2 0x21F PUSH2 0xC10 JUMP JUMPDEST PUSH2 0x21F PUSH2 0xD98 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x32C CALLDATASIZE PUSH1 0x4 PUSH2 0x2560 JUMP JUMPDEST PUSH2 0xE26 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH2 0x1F9 JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x347 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0xF4C JUMP JUMPDEST PUSH2 0x21F PUSH2 0xF5D JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x362 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0xFD2 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x375 CALLDATASIZE PUSH1 0x4 PUSH2 0x2629 JUMP JUMPDEST PUSH2 0xFEB JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x399 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0x1060 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0x3AC CALLDATASIZE PUSH1 0x4 PUSH2 0x2560 JUMP JUMPDEST PUSH2 0x10D2 JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x3BF CALLDATASIZE PUSH1 0x4 PUSH2 0x2629 JUMP JUMPDEST PUSH2 0x1233 JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH2 0x1F9 JUMP JUMPDEST PUSH2 0x2C8 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0x12A7 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x41A CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0x12B1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0x13F1 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x457 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0x14EF JUMP JUMPDEST PUSH2 0x498 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x342E302E30000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x203 SWAP2 SWAP1 PUSH2 0x26E7 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x4B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x2560 JUMP JUMPDEST PUSH2 0x162B JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x517 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x522 DUP4 DUP4 DUP4 PUSH2 0x16EC JUMP JUMPDEST ISZERO PUSH2 0x575 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xB0BAC59718CD343C80A813518AFCF36846CFCFE6D56E2B3CAB9BD49F5F9B251C DUP4 PUSH1 0x40 MLOAD PUSH2 0x56C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x5D4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x5DD DUP4 PUSH2 0x176F JUMP JUMPDEST PUSH2 0x629 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP1 PUSH2 0x633 JUMPI PUSH2 0x83E JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x64E JUMPI PUSH2 0x64E PUSH2 0x279C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x677 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP1 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x7E8 JUMPI DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x42842E0E ADDRESS DUP10 DUP9 DUP9 DUP7 DUP2 DUP2 LT PUSH2 0x6A9 JUMPI PUSH2 0x6A9 PUSH2 0x2786 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP9 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP6 DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP5 SWAP1 SWAP4 AND PUSH1 0x24 DUP6 ADD MSTORE POP PUSH1 0x20 SWAP1 SWAP2 MUL ADD CALLDATALOAD PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x718 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x729 JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x79A JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x757 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x75C JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH32 0x17E975018310F88872B58D4D8263ADCA83CF5C1893496EA2A86923DAB15276AD DUP2 PUSH1 0x40 MLOAD PUSH2 0x78C SWAP2 SWAP1 PUSH2 0x26E7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP PUSH2 0x7D6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP DUP5 DUP5 DUP3 DUP2 DUP2 LT PUSH2 0x7B0 JUMPI PUSH2 0x7B0 PUSH2 0x2786 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x7C9 JUMPI PUSH2 0x7C9 PUSH2 0x2786 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0x7E0 DUP2 PUSH2 0x2755 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x67E JUMP JUMPDEST POP DUP1 ISZERO PUSH2 0x83B JUMPI DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x69C2DE32BC4D47F488E72626A6CFDEE85089342E52675E7DE79C4B417623960C DUP5 PUSH1 0x40 MLOAD PUSH2 0x832 SWAP2 SWAP1 PUSH2 0x26A3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x859 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x92B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D6E6F742D7A65726F2D616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x984 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D616C72656164792D73657400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x9F9D59C87DBDC6CA82D9E5924782004B9AEBC366C505C0CCAB12F61E2A9F3321 SWAP1 PUSH1 0x0 SWAP1 LOG2 PUSH2 0x9E3 PUSH1 0x0 NOT PUSH2 0x1836 JUMP JUMPDEST POP PUSH1 0x1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F5 PUSH2 0x1872 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xA54 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0xA5F DUP4 DUP4 DUP4 PUSH2 0x16EC JUMP JUMPDEST ISZERO PUSH2 0x575 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xC65F48ACA3B7A99B7443D04B8FFBB073156179BC628DC3F7DEF5047748973469 DUP4 PUSH1 0x40 MLOAD PUSH2 0x56C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST CALLER PUSH2 0xABC PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xB12 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB68 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 0xB8C SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST GT ISZERO PUSH2 0xC02 JUMPI PUSH1 0x40 MLOAD PUSH32 0x5C19A95C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x5C19A95C SWAP1 PUSH1 0x24 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBEE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x83B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F5 PUSH2 0x1905 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0xC62 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE CALLER PUSH2 0xC79 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xCCF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCD9 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xD1A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD2E 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 0xD52 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST SWAP1 POP PUSH2 0xD5D DUP2 PUSH2 0x199B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x7F221332EE403570BF4D61630B58189EA566FF1635269001E9DF6A890F413DD8 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP PUSH1 0x1 PUSH1 0x2 SSTORE JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xDF2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0xE07 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1A74 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE80 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP1 PUSH2 0xE89 JUMPI POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD DUP1 DUP3 GT ISZERO PUSH2 0xEDC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F61776172642D657863656564732D617661696C000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x7 SSTORE PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xEF9 DUP5 DUP5 DUP4 PUSH2 0x1AD1 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xE2554529D99AB7A67DB6B4CEA2B32C7D55AE325F958861E05F304FDDED867E31 DUP6 PUSH1 0x40 MLOAD PUSH2 0xF3E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF57 DUP3 PUSH2 0x176F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0xF70 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xFC6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0xFD0 PUSH1 0x0 PUSH2 0x1A74 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND EQ PUSH2 0xF57 JUMP JUMPDEST CALLER PUSH2 0xFFE PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1054 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x105D DUP2 PUSH2 0x1B51 JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH2 0x1073 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x10C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x105D DUP2 PUSH2 0x1B86 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x1126 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x631B5DFB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP6 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 DUP2 SWAP1 PUSH4 0x631B5DFB SWAP1 PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1199 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x11AD JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 PUSH2 0x11BC DUP5 PUSH2 0x1C33 JUMP JUMPDEST SWAP1 POP PUSH2 0x11DB DUP6 DUP3 PUSH2 0x11CB PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x1CE9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP3 SWAP1 DUP9 AND SWAP2 CALLER SWAP2 PUSH32 0xE56473357106D0CDEA364A045D5AB7ABB44B6BD1C0F092BA3734983A43459F8F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x1 PUSH1 0x2 SSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x1248 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x129E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x9E3 DUP3 PUSH2 0x1836 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F5 PUSH2 0x1D92 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x1303 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP2 PUSH2 0x1311 DUP2 PUSH2 0x1E23 JUMP JUMPDEST PUSH2 0x135D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x1368 CALLER DUP6 DUP6 PUSH2 0x1E59 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x33E39B6100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x33E39B61 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x13CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x13E2 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x1445 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x0 PUSH2 0x1453 PUSH2 0x1905 JUMP JUMPDEST PUSH1 0x7 SLOAD SWAP1 SWAP2 POP PUSH1 0x0 PUSH2 0x1463 PUSH2 0x1D92 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x1475 JUMPI PUSH1 0x0 PUSH2 0x147F JUMP JUMPDEST PUSH2 0x147F DUP5 DUP4 PUSH2 0x2712 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x1491 JUMPI PUSH1 0x0 PUSH2 0x149B JUMP JUMPDEST PUSH2 0x149B DUP5 DUP4 PUSH2 0x2712 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x14E1 JUMPI PUSH1 0x7 DUP3 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE SWAP2 SWAP4 POP DUP4 SWAP2 PUSH32 0xCE2B6E507C7CA1A20CE136810F524EEFC19BA4C7E4866EB6CC0CBA76E778D4BE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x1502 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1558 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x15D4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x167D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP1 PUSH2 0x168B DUP2 PUSH2 0x1E23 JUMP JUMPDEST PUSH2 0x16D7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x16E2 CALLER DUP5 DUP5 PUSH2 0x1E59 JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16F7 DUP4 PUSH2 0x176F JUMP JUMPDEST PUSH2 0x1743 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP2 PUSH2 0x1750 JUMPI POP PUSH1 0x0 PUSH2 0x1768 JUMP JUMPDEST PUSH2 0x1764 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP6 DUP5 PUSH2 0x1CE9 JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND SWAP1 DUP3 AND EQ DUP1 ISZERO SWAP1 PUSH2 0x1768 JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC89039C5 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x17E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x17F6 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 0x181A SWAP2 SWAP1 PUSH2 0x23CE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x5 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x439B9AC8F2088164A8D80921758209DB1623CF1A37A48913679EF3A43D7A5CF7 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC89039C5 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x18CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x18E1 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 0x9F5 SWAP2 SWAP1 PUSH2 0x23CE JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x18160DDD00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 MLOAD PUSH1 0x0 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 PUSH4 0x18160DDD SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1963 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1977 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 0x9F5 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH2 0x19D8 PUSH32 0x0 DUP3 PUSH2 0x19C8 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x1F4B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x87A6EEEF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x87A6EEEF SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1A59 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1A6D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x5D7B075800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 AND SWAP1 PUSH4 0x5D7B0758 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1B34 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1B48 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x6 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x3FF20538222F568F27FF436C0C49DFD3E48D5B8F86533A3F759DC1C7089775AB SWAP1 PUSH1 0x20 ADD PUSH2 0x1867 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1BDC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7072697A6553747261746567792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x7F58DC86BC2E435CB77CA0EDB1DF55E25F90CAF2D6BD866971715437D456A212 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x13054C200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x13054C2 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1CB1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1CC5 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 0xF57 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x575 SWAP1 DUP5 SWAP1 PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xB99152D000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xB99152D0 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1E0F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1977 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x1E3C JUMPI POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP4 PUSH2 0x1E46 PUSH2 0x1905 JUMP JUMPDEST PUSH2 0x1E50 SWAP2 SWAP1 PUSH2 0x26FA JUMP JUMPDEST GT ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1E63 DUP3 DUP3 PUSH2 0x2123 JUMP JUMPDEST PUSH2 0x1EAF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D62616C616E63652D636170000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1EDA DUP5 ADDRESS DUP5 PUSH2 0x1EC9 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x21D1 JUMP JUMPDEST PUSH2 0x1EE5 DUP4 DUP4 DUP4 PUSH2 0x1AD1 JUMP JUMPDEST PUSH2 0x1EEE DUP3 PUSH2 0x199B JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4174A9435A04D04D274C76779CAD136A41FDE6937C56241C09AB9D3C7064A1A9 DUP6 PUSH1 0x40 MLOAD PUSH2 0x1F3D SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDD62ED3E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP2 DUP7 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1FB0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1FC4 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 0x1FE8 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH2 0x1FF2 SWAP2 SWAP1 PUSH2 0x26FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x83E SWAP1 DUP6 SWAP1 PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x1D2E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2093 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2222 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x575 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x20B1 SWAP2 SWAP1 PUSH2 0x25CE JUMP JUMPDEST PUSH2 0x575 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x213D JUMPI PUSH1 0x1 SWAP2 POP POP PUSH2 0xF57 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 SWAP3 DUP7 SWAP3 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2185 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2199 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 0x21BD SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH2 0x21C7 SWAP2 SWAP1 PUSH2 0x26FA JUMP JUMPDEST GT ISZERO SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x83E SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD PUSH2 0x1D2E JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2231 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x2239 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x22B1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x22FF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x231B SWAP2 SWAP1 PUSH2 0x2687 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x2358 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x235D JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x236D DUP3 DUP3 DUP7 PUSH2 0x2378 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x2387 JUMPI POP DUP2 PUSH2 0x1768 JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x2397 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x50E SWAP2 SWAP1 PUSH2 0x26E7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23C3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1768 DUP2 PUSH2 0x27B2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1768 DUP2 PUSH2 0x27B2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2401 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x240C DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x241C DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2439 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x244D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x245C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x2471 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2495 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x24A0 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x24B0 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x24D9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x24E4 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x24F4 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2518 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x252C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x253B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x254D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2573 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x257E DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x25A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x25AC DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x25C3 DUP2 PUSH2 0x27B2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x25E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x1768 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2603 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x260E DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x261E DUP2 PUSH2 0x27B2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x263B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2654 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x2673 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2729 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x2699 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2729 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x26DB JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x26BF JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1768 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x265B JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x270D JUMPI PUSH2 0x270D PUSH2 0x2770 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2724 JUMPI PUSH2 0x2724 PUSH2 0x2770 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2744 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x272C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x83E JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2769 JUMPI PUSH2 0x2769 PUSH2 0x2770 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x105D JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH17 0xCE217D2C1AA69BC791790960CE8F070B40 STOP 0xD0 PUSH4 0x2457F32 AND 0xB4 SSTORE PUSH23 0xF7ED2064736F6C63430008060033000000000000000000 ",
              "sourceMap": "641:3753:61:-:0;;;1399:772;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1464:6;;1648:24:22;1464:6:61;1648:9:22;:24::i;:::-;-1:-1:-1;1637:1:0;1742:7;:22;2625:35:59::2;-1:-1:-1::0;;2625:16:59::2;:35::i;:::-;-1:-1:-1::0;;;;;;1503:35:61;::::1;1482:132;;;::::0;-1:-1:-1;;;1482:132:61;;1943:2:84;1482:132:61::1;::::0;::::1;1925:21:84::0;1982:2;1962:18;;;1955:30;2021:34;2001:18;;;1994:62;-1:-1:-1;;;2072:18:84;;;2065:48;2130:19;;1482:132:61::1;;;;;;;;;1625:26;::::0;;;-1:-1:-1;;;;;;1625:26:61;::::1;::::0;1813:52:::1;::::0;-1:-1:-1;;;1813:52:61::1;::::0;::::1;816:46:84::0;1730:14:61::1;::::0;;;-1:-1:-1;;;;;1625:26:61;::::1;::::0;878:11:84;;1813:52:61::1;::::0;;-1:-1:-1;;1813:52:61;;::::1;::::0;;;;;;;1767:108:::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1729:146;;;;1885:24;1937:1:::0;1923:4:::1;:11;:15;1919:92;;;1984:4;1973:27;;;;;;;;;;;;:::i;:::-;1954:46;;1919:92;2028:9;:43;;;;-1:-1:-1::0;;;;;;2041:30:61;::::1;::::0;::::1;2028:43;2020:97;;;::::0;-1:-1:-1;;;2020:97:61;;1533:2:84;2020:97:61::1;::::0;::::1;1515:21:84::0;1572:2;1552:18;;;1545:30;1611:34;1591:18;;;1584:62;-1:-1:-1;;;1662:18:84;;;1655:39;1711:19;;2020:97:61::1;1505:231:84::0;2020:97:61::1;2133:31;::::0;-1:-1:-1;;;;;2133:31:61;::::1;::::0;::::1;::::0;;;::::1;1472:699;;;1399:772:::0;;641:3753;;3470:174:22;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;;;;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;13592:148:59:-;13660:12;:28;;;13703:30;;2306:25:84;;;13703:30:59;;2294:2:84;2279:18;13703:30:59;;;;;;;13592:148;:::o;14:259:84:-;92:6;145:2;133:9;124:7;120:23;116:32;113:2;;;161:1;158;151:12;113:2;193:9;187:16;212:31;237:5;212:31;:::i;:::-;262:5;103:170;-1:-1:-1;;;103:170:84:o;278:406::-;378:6;386;439:2;427:9;418:7;414:23;410:32;407:2;;;455:1;452;445:12;407:2;487:9;481:16;506:31;531:5;506:31;:::i;:::-;606:2;591:18;;585:25;556:5;;-1:-1:-1;619:33:84;585:25;619:33;:::i;:::-;671:7;661:17;;;397:287;;;;;:::o;900:426::-;1029:3;1067:6;1061:13;1092:1;1102:129;1116:6;1113:1;1110:13;1102:129;;;1214:4;1198:14;;;1194:25;;1188:32;1175:11;;;1168:53;1131:12;1102:129;;;1249:6;1246:1;1243:13;1240:2;;;1284:1;1275:6;1270:3;1266:16;1259:27;1240:2;-1:-1:-1;1304:16:84;;;;;1037:289;-1:-1:-1;;1037:289:84:o;2342:131::-;-1:-1:-1;;;;;2417:31:84;;2407:42;;2397:2;;2463:1;2460;2453:12;2397:2;2387:86;:::o;:::-;641:3753:61;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@VERSION_13859": {
                  "entryPoint": null,
                  "id": 13859,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_balance_15180": {
                  "entryPoint": 7570,
                  "id": 15180,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_callOptionalReturn_1116": {
                  "entryPoint": 8254,
                  "id": 1116,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_canAddLiquidity_14748": {
                  "entryPoint": 7715,
                  "id": 14748,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_canAwardExternal_15164": {
                  "entryPoint": 5999,
                  "id": 15164,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_canDeposit_14717": {
                  "entryPoint": 8483,
                  "id": 14717,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_depositTo_14211": {
                  "entryPoint": 7769,
                  "id": 14211,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_isControlled_14763": {
                  "entryPoint": null,
                  "id": 14763,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_mint_14682": {
                  "entryPoint": 6865,
                  "id": 14682,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_redeem_15238": {
                  "entryPoint": 7219,
                  "id": 15238,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setBalanceCap_14778": {
                  "entryPoint": 6198,
                  "id": 14778,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setLiquidityCap_14793": {
                  "entryPoint": 6993,
                  "id": 14793,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 6772,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setPrizeStrategy_14818": {
                  "entryPoint": 7046,
                  "id": 14818,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_supply_15223": {
                  "entryPoint": 6555,
                  "id": 15223,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_ticketTotalSupply_14829": {
                  "entryPoint": 6405,
                  "id": 14829,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_token_15195": {
                  "entryPoint": 6258,
                  "id": 15195,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_transferOut_14663": {
                  "entryPoint": 5868,
                  "id": 14663,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@awardBalance_13943": {
                  "entryPoint": null,
                  "id": 13943,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@awardExternalERC20_14370": {
                  "entryPoint": 2554,
                  "id": 14370,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@awardExternalERC721_14473": {
                  "entryPoint": 1402,
                  "id": 14473,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@award_14316": {
                  "entryPoint": 3622,
                  "id": 14316,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@balance_13933": {
                  "entryPoint": 4775,
                  "id": 13933,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@canAwardExternal_13957": {
                  "entryPoint": 3916,
                  "id": 13957,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@captureAwardBalance_14105": {
                  "entryPoint": 5105,
                  "id": 14105,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@claimOwnership_4038": {
                  "entryPoint": 3480,
                  "id": 4038,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@compLikeDelegate_14606": {
                  "entryPoint": 2729,
                  "id": 14606,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@depositToAndDelegate_14159": {
                  "entryPoint": 4785,
                  "id": 14159,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@depositTo_14127": {
                  "entryPoint": 5675,
                  "id": 14127,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@functionCallWithValue_2255": {
                  "entryPoint": 8761,
                  "id": 2255,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_2185": {
                  "entryPoint": 8738,
                  "id": 2185,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getAccountedBalance_13983": {
                  "entryPoint": 3078,
                  "id": 13983,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getBalanceCap_13993": {
                  "entryPoint": null,
                  "id": 13993,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getLiquidityCap_14003": {
                  "entryPoint": null,
                  "id": 14003,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizeStrategy_14024": {
                  "entryPoint": null,
                  "id": 14024,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getTicket_14014": {
                  "entryPoint": null,
                  "id": 14014,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getToken_14038": {
                  "entryPoint": 2539,
                  "id": 14038,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_2114": {
                  "entryPoint": null,
                  "id": 2114,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@isControlled_13972": {
                  "entryPoint": 4050,
                  "id": 13972,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@onERC721Received_14626": {
                  "entryPoint": null,
                  "id": 14626,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@owner_3970": {
                  "entryPoint": null,
                  "id": 3970,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3979": {
                  "entryPoint": null,
                  "id": 3979,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3993": {
                  "entryPoint": 3933,
                  "id": 3993,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeIncreaseAllowance_1030": {
                  "entryPoint": 8011,
                  "id": 1030,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@safeTransferFrom_950": {
                  "entryPoint": 8657,
                  "id": 950,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@safeTransfer_924": {
                  "entryPoint": 7401,
                  "id": 924,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setBalanceCap_14491": {
                  "entryPoint": 4659,
                  "id": 14491,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setLiquidityCap_14505": {
                  "entryPoint": 4075,
                  "id": 14505,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setPrizeStrategy_14576": {
                  "entryPoint": 4192,
                  "id": 14576,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setTicket_14562": {
                  "entryPoint": 2116,
                  "id": 14562,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@sweep_15135": {
                  "entryPoint": 3088,
                  "id": 15135,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferExternalERC20_14343": {
                  "entryPoint": 1208,
                  "id": 14343,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@transferOwnership_4020": {
                  "entryPoint": 5359,
                  "id": 4020,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_2390": {
                  "entryPoint": 9080,
                  "id": 2390,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@withdrawFrom_14263": {
                  "entryPoint": 4306,
                  "id": 14263,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@yieldSource_15012": {
                  "entryPoint": null,
                  "id": 15012,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 9137,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address_fromMemory": {
                  "entryPoint": 9166,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_calldata_ptr": {
                  "entryPoint": 9195,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 9344,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr": {
                  "entryPoint": 9409,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 9568,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint256t_address": {
                  "entryPoint": 9612,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 9678,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_ICompLike_$11027t_address": {
                  "entryPoint": 9712,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_contract$_ITicket_$12213": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 9769,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 9794,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_bytes": {
                  "entryPoint": 9819,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 9863,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 9891,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed": {
                  "entryPoint": 9959,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IYieldSource_$4176__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 9978,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 10002,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 10025,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "increment_t_uint256": {
                  "entryPoint": 10069,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 10096,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 10118,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 10140,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 10162,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:16589:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "84:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "130:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "142:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "132:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "132:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "132:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "105:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "101:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "101:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "126:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "97:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "97:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "94:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "155:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "181:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "168:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "168:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "159:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "225:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "200:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "200:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "200:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "250:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "50:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "61:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "73:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "347:170:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "393:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "402:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "405:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "395:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "395:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "395:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "368:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "377:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "364:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "364:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "389:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "360:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "360:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "357:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "418:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "437:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "431:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "431:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "422:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "481:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "456:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "456:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "456:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "496:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "506:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "496:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "313:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "324:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "336:6:84",
                            "type": ""
                          }
                        ],
                        "src": "266:251:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "661:752:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "707:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "716:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "719:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "709:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "709:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "709:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "682:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "691:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "678:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "678:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "703:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "674:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "674:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "671:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "732:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "758:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "745:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "745:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "736:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "802:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "777:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "777:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "777:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "817:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "827:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "817:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "841:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "873:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "884:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "869:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "869:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "845:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "922:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "897:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "897:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "897:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "939:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "949:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "939:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "965:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "996:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1007:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "992:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "992:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "979:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "979:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "969:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1020:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1030:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1024:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1075:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1084:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1087:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1077:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1077:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1077:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1063:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1071:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1060:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1060:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1057:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1100:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1114:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1125:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1110:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1110:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1104:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1180:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1189:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1192:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1182:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1182:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1182:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1159:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1163:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1155:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1155:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1170:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1151:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1151:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1144:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1144:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1141:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1205:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1232:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1219:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1219:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1209:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1262:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1271:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1274:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1264:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1264:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1264:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1250:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1258:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1247:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1247:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1244:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1336:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1345:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1348:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1338:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1338:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1338:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1301:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1309:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1312:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1305:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1305:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1297:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1297:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1322:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1293:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1293:32:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1327:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1290:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1290:45:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1287:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1361:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1375:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1379:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1371:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1371:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1361:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1391:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1401:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1391:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "603:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "614:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "626:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "634:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "642:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "650:6:84",
                            "type": ""
                          }
                        ],
                        "src": "522:891:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1522:352:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1568:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1577:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1580:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1570:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1570:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1570:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1543:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1552:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1539:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1539:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1564:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1535:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1535:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1532:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1593:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1619:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1606:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1606:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1597:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1663:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1638:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1638:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1638:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1678:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1688:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1678:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1702:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1734:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1745:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1730:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1730:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1717:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1717:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1706:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1783:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1758:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1758:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1758:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1800:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1810:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1800:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1826:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1853:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1864:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1849:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1849:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1836:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1836:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1826:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1472:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1483:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1495:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1503:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1511:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1418:456:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2019:796:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2066:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2075:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2078:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2068:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2068:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2068:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2040:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2049:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2036:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2036:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2061:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2032:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2032:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2029:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2091:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2117:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2104:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2104:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2095:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2161:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2136:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2136:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2136:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2176:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2186:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2176:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2200:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2232:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2243:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2228:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2228:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2215:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2215:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2204:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2281:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2256:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2256:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2256:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2298:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2308:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2298:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2324:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2351:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2362:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2347:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2347:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2334:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2334:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2324:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2375:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2406:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2417:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2402:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2402:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2389:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2389:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2379:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2430:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2440:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2434:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2485:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2494:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2497:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2487:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2487:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2487:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2473:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2481:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2470:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2470:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2467:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2510:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2524:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2535:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2520:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2520:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2514:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2590:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2599:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2602:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2592:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2592:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2592:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2569:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2573:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2565:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2565:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2580:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2561:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2561:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2554:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2554:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2551:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2615:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2642:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2629:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2629:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "2619:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2672:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2681:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2684:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2674:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2674:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2674:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "2660:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2668:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2657:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2657:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2654:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2738:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2747:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2750:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2740:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2740:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2740:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2711:2:84"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "2715:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2707:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2707:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2724:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2703:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2703:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2729:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2700:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2700:37:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2697:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2763:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2777:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2781:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2773:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2773:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2763:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2793:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "2803:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2793:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1953:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1964:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1976:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1984:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1992:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2000:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2008:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1879:936:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2907:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2953:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2962:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2965:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2955:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2955:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2955:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2928:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2937:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2924:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2924:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2949:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2920:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2920:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2917:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2978:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3004:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2991:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2991:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2982:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3048:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3023:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3023:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3023:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3063:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3073:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3063:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3087:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3114:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3125:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3110:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3110:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3097:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3097:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3087:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2865:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2876:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2888:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2896:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2820:315:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3244:352:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3290:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3299:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3302:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3292:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3292:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3292:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3265:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3274:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3261:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3261:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3286:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3257:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3257:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3254:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3315:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3341:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3328:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3328:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3319:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3385:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3360:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3360:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3360:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3400:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3410:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3400:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3424:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3451:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3462:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3447:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3447:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3434:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3434:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3424:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3475:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3507:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3518:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3503:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3503:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3490:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3490:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3479:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3556:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3531:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3531:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3531:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3573:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "3583:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "3573:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3194:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3205:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3217:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3225:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3233:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3140:456:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3679:199:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3725:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3734:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3737:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3727:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3727:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3727:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3700:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3709:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3696:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3696:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3721:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3692:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3692:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3689:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3750:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3769:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3763:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3763:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3754:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3832:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3841:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3844:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3834:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3834:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3834:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3801:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3822:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "3815:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3815:13:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "3808:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3808:21:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "3798:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3798:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3791:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3791:40:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3788:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3857:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3867:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3857:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3645:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3656:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3668:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3601:277:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3989:301:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4035:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4044:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4047:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4037:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4037:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4037:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4010:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4019:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4006:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4006:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4031:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4002:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4002:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3999:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4060:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4086:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4073:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4073:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4064:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4130:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4105:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4105:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4105:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4145:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4155:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4145:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4169:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4201:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4212:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4197:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4197:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4184:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4184:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4173:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4250:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4225:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4225:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4225:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4267:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "4277:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4267:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ICompLike_$11027t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3947:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3958:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3970:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3978:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3883:407:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4382:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4428:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4437:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4440:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4430:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4430:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4430:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4403:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4412:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4399:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4399:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4424:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4395:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4395:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4392:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4453:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4479:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4466:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4466:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4457:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4523:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4498:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4498:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4498:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4538:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4548:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4538:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$12213",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4348:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4359:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4371:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4295:264:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4634:110:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4680:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4689:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4692:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4682:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4682:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4682:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4655:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4664:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4651:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4651:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4676:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4647:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4647:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4644:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4705:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4728:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4715:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4715:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4705:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4600:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4611:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4623:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4564:180:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4830:103:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4876:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4885:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4888:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4878:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4878:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4878:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4851:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4860:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4847:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4847:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4872:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4843:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4843:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4840:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4901:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4917:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4911:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4911:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4901:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4796:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4807:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4819:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4749:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4987:267:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4997:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "5017:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5011:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5011:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "5001:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5039:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5044:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5032:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5032:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5032:19:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5086:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5093:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5082:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5082:16:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5104:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5109:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5100:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5100:14:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5116:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5060:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5060:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5060:63:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5132:116:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5147:3:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "5160:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5168:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5156:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5156:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5173:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "5152:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5152:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5143:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5143:98:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5243:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5139:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5139:109:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "5132:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_bytes",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4964:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4971:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "4979:3:84",
                            "type": ""
                          }
                        ],
                        "src": "4938:316:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5396:137:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5406:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5426:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5420:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5420:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "5410:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5468:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5476:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5464:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5464:17:84"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5483:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5488:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5442:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5442:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5442:53:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5504:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5515:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5520:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5511:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5511:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "5504:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "5372:3:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5377:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "5388:3:84",
                            "type": ""
                          }
                        ],
                        "src": "5259:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5639:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5649:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5661:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5672:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5657:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5657:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5649:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5691:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5706:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5714:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5702:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5702:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5684:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5684:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5684:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5608:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5619:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5630:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5538:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5898:198:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5908:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5920:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5931:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5916:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5916:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5908:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5943:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5953:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5947:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6011:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6026:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6034:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6022:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6022:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6004:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6004:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6004:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6058:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6069:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6054:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6054:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6078:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6086:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6074:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6074:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6047:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6047:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6047:43:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5859:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5870:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5878:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5889:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5769:327:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6258:241:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6268:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6280:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6291:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6276:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6276:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6268:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6303:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6313:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6307:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6371:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6386:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6394:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6382:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6382:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6364:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6364:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6364:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6418:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6429:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6414:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6414:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6438:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6446:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6434:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6434:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6407:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6407:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6407:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6470:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6481:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6466:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6466:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6486:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6459:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6459:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6459:34:84"
                            }
                          ]
                        },
                        "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": "6211:9:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "6222:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6230:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6238:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6249:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6101:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6633:168:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6643:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6655:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6666:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6651:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6651:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6643:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6685:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6700:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6708:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6696:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6696:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6678:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6678:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6678:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6772:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6783:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6768:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6768:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6788:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6761:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6761:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6761:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6594:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6605:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6613:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6624:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6504:297:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6957:481:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6967:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6977:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6971:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6988:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7006:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7017:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7002:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7002:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6992:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7036:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7047:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7029:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7029:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7029:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7059:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "7070:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "7063:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7085:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7105:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7099:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7099:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "7089:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7128:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7136:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7121:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7121:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7121:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7152:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7163:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7174:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7159:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7159:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "7152:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7186:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7204:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7212:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7200:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7200:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "7190:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7224:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7233:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "7228:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7292:120:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "7313:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "7324:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "7318:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7318:13:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7306:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7306:26:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7306:26:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7345:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "7356:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7361:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7352:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7352:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7345:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7377:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "7391:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7399:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7387:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7387:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "7377:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "7254:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7257:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7251:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7251:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "7265:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7267:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "7276:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7279:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7272:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7272:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "7267:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "7247:3:84",
                                "statements": []
                              },
                              "src": "7243:169:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7421:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "7429:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7421:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6926:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6937:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6948:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6806:632:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7538:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7548:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7560:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7571:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7556:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7556:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7548:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7590:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "7615:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "7608:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7608:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "7601:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7601:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7583:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7583:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7583:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7507:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7518:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7529:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7443:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7734:149:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7744:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7756:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7767:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7752:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7752:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7744:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7786:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7801:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7809:66:84",
                                        "type": "",
                                        "value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7797:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7797:79:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7779:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7779:98:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7779:98:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7703:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7714:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7725:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7635:248:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8007:98:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8024:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8035:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8017:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8017:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8017:21:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8047:52:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8072:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8084:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8095:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8080:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8080:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "8055:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8055:44:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8047:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7976:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7987:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7998:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7888:217:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8228:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8238:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8250:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8261:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8246:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8246:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8238:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8280:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8295:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8303:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8291:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8291:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8273:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8273:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8273:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8197:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8208:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8219:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8110:243:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8480:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8490:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8502:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8513:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8498:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8498:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8490:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8532:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8547:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8555:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8543:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8543:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8525:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8525:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8525:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IYieldSource_$4176__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8449:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8460:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8471:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8358:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8731:98:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8748:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8759:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8741:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8741:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8741:21:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8771:52:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8796:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8808:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8819:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8804:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8804:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "8779:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8779:44:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8771:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8700:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8711:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8722:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8610:219:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9008:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9025:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9036:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9018:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9018:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9018:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9059:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9070:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9055:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9055:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9075:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9048:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9048:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9048:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9098:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9109:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9094:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9094:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9114:34:84",
                                    "type": "",
                                    "value": "PrizePool/prizeStrategy-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9087:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9087:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9087:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9158:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9170:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9181:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9166:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9166:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9158:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8985:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8999:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8834:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9369:178:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9386:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9397:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9379:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9379:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9379:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9420:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9431:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9416:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9416:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9436:2:84",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9409:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9409:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9409:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9459:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9470:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9455:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9455:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f6f6e6c792d7072697a655374726174656779",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9475:30:84",
                                    "type": "",
                                    "value": "PrizePool/only-prizeStrategy"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9448:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9448:58:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9448:58:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9515:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9527:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9538:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9523:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9523:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9515:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9346:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9360:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9195:352:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9726:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9743:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9754:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9736:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9736:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9736:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9777:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9788:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9773:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9773:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9793:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9766:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9766:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9766:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9816:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9827:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9812:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9812:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9832:34:84",
                                    "type": "",
                                    "value": "PrizePool/ticket-not-zero-addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9805:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9805:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9805:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9887:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9898:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9883:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9883:18:84"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9903:3:84",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9876:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9876:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9876:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9916:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9928:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9939:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9924:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9924:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9916:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9703:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9717:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9552:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10128:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10145:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10156:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10138:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10138:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10138:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10179:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10190:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10175:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10175:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10195:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10168:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10168:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10168:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10218:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10229:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10214:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10214:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10234:34:84",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10207:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10207:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10207:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10289:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10300:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10285:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10285:18:84"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10305:8:84",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10278:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10278:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10278:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10323:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10335:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10346:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10331:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10331:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10323:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10105:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10119:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9954:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10535:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10552:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10563:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10545:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10545:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10545:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10586:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10597:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10582:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10582:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10602:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10575:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10575:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10575:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10625:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10636:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10621:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10621:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10641:26:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10614:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10614:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10614:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10677:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10689:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10700:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10685:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10685:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10677:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10512:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10526:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10361:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10888:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10905:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10916:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10898:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10898:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10898:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10939:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10950:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10935:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10935:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10955:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10928:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10928:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10928:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10978:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10989:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10974:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10974:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10994:34:84",
                                    "type": "",
                                    "value": "PrizePool/invalid-external-token"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10967:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10967:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10967:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11038:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11050:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11061:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11046:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11046:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11038:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10865:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10879:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10714:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11249:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11266:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11277:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11259:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11259:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11259:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11300:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11311:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11296:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11296:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11316:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11289:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11289:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11289:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11339:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11350:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11335:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11335:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11355:33:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11328:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11328:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11328:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11398:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11410:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11421:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11406:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11406:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11398:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11226:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11240:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11075:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11609:178:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11626:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11637:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11619:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11619:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11619:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11660:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11671:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11656:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11656:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11676:2:84",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11649:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11649:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11649:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11699:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11710:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11695:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11695:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f7469636b65742d616c72656164792d736574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11715:30:84",
                                    "type": "",
                                    "value": "PrizePool/ticket-already-set"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11688:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11688:58:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11688:58:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11755:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11767:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11778:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11763:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11763:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11755:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11586:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11600:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11435:352:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11966:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11983:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11994:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11976:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11976:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11976:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12017:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12028:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12013:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12013:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12033:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12006:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12006:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12006:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12056:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12067:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12052:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12052:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f61776172642d657863656564732d617661696c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12072:31:84",
                                    "type": "",
                                    "value": "PrizePool/award-exceeds-avail"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12045:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12045:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12045:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12113:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12125:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12136:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12121:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12121:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12113:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11943:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11957:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11792:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12324:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12341:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12352:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12334:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12334:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12334:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12375:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12386:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12371:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12371:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12391:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12364:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12364:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12364:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12414:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12425:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12410:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12410:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12430:31:84",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12403:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12403:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12403:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12471:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12483:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12494:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12479:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12479:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12471:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12301:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12315:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12150:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12682:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12699:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12710:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12692:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12692:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12692:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12733:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12744:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12729:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12729:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12749:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12722:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12722:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12722:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12772:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12783:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12768:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12768:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12788:34:84",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12761:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12761:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12761:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12843:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12854:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12839:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12839:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12859:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12832:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12832:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12832:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12876:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12888:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12899:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12884:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12884:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12876:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12659:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12673:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12508:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13088:232:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13105:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13116:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13098:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13098:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13098:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13139:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13150:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13135:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13135:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13155:2:84",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13128:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13128:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13128:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13178:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13189:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13174:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13174:18:84"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13194:34:84",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13167:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13167:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13167:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13249:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13260:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13245:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13245:18:84"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13265:12:84",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13238:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13238:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13238:40:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13287:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13299:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13310:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13295:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13295:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13287:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13065:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13079:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12914:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13499:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13516:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13527:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13509:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13509:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13509:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13550:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13561:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13546:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13546:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13566:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13539:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13539:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13539:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13589:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13600:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13585:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13585:18:84"
                                  },
                                  {
                                    "hexValue": "5265656e7472616e637947756172643a207265656e7472616e742063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13605:33:84",
                                    "type": "",
                                    "value": "ReentrancyGuard: reentrant call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13578:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13578:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13578:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13648:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13660:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13671:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13656:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13656:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13648:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13476:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13490:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13325:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13859:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13876:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13887:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13869:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13869:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13869:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13910:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13921:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13906:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13906:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13926:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13899:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13899:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13899:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13949:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13960:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13945:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13945:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f657863656564732d6c69717569646974792d636170",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13965:33:84",
                                    "type": "",
                                    "value": "PrizePool/exceeds-liquidity-cap"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13938:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13938:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13938:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14008:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14020:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14031:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14016:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14016:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14008:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13836:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13850:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13685:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14219:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14236:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14247:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14229:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14229:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14229:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14270:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14281:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14266:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14266:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14286:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14259:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14259:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14259:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14309:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14320:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14305:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14305:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f657863656564732d62616c616e63652d636170",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14325:31:84",
                                    "type": "",
                                    "value": "PrizePool/exceeds-balance-cap"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14298:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14298:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14298:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14366:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14378:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14389:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14374:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14374:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14366:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14196:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14210:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14045:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14504:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "14514:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14526:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14537:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14522:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14522:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14514:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14556:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14567:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14549:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14549:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14549:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14473:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14484:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14495:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14403:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14714:168:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "14724:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14736:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14747:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14732:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14732:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14724:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14766:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14777:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14759:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14759:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14759:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14804:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14815:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14800:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14800:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "14824:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14832:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "14820:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14820:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14793:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14793:83:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14793:83:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14675:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "14686:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14694:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14705:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14585:297:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15016:119:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15026:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15038:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15049:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15034:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15034:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15026:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15068:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "15079:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15061:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15061:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15061:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15106:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15117:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15102:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15102:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "15122:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15095:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15095:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15095:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14977:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "14988:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14996:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15007:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14887:248:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15188:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15215:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "15217:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15217:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15217:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15204:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "15211:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "15207:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15207:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15201:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15201:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "15198:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15246:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15257:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15260:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15253:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15253:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "15246:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "15171:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "15174:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "15180:3:84",
                            "type": ""
                          }
                        ],
                        "src": "15140:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15322:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15344:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "15346:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15346:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15346:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15338:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15341:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15335:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15335:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "15332:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15375:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15387:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15390:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "15383:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15383:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "15375:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "15304:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "15307:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "15313:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15273:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15456:205:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "15466:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "15475:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "15470:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15535:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "15560:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "15565:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "15556:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "15556:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "15579:3:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "15584:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "15575:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "15575:11:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "15569:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "15569:18:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "15549:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15549:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15549:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "15496:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "15499:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15493:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15493:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "15507:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "15509:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "15518:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "15521:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "15514:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15514:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "15509:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "15489:3:84",
                                "statements": []
                              },
                              "src": "15485:113:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15624:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "15637:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "15642:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "15633:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "15633:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "15651:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "15626:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15626:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15626:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "15613:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "15616:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15610:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15610:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "15607:2:84"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "15434:3:84",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "15439:3:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "15444:6:84",
                            "type": ""
                          }
                        ],
                        "src": "15403:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15713:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15804:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "15806:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15806:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15806:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "15729:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15736:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "15726:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15726:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "15723:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15835:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "15846:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15853:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15842:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15842:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "15835:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "15695:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "15705:3:84",
                            "type": ""
                          }
                        ],
                        "src": "15666:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15898:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15915:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15918:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15908:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15908:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15908:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16012:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16015:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16005:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16005:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16005:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16036:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16039:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "16029:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16029:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16029:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15866:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16087:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16104:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16107:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16097:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16097:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16097:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16201:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16204:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16194:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16194:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16194:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16225:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16228:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "16218:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16218:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16218:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "16055:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16276:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16293:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16296:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16286:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16286:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16286:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16390:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16393:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16383:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16383:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16383:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16414:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16417:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "16407:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16407:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16407:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "16244:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16478:109:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "16565:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "16574:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "16577:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "16567:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16567:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "16567:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "16501:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "16512:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "16519:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "16508:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16508:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "16498:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16498:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "16491:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16491:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "16488:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "16467:5:84",
                            "type": ""
                          }
                        ],
                        "src": "16433:154:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let offset := calldataload(add(headStart, 64))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value2 := add(_2, 32)\n        value3 := length\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        value2 := calldataload(add(headStart, 64))\n        let offset := calldataload(add(headStart, 96))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, length), 32), dataEnd) { revert(0, 0) }\n        value3 := add(_2, 32)\n        value4 := length\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_uint256t_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n        let value_1 := calldataload(add(headStart, 64))\n        validator_revert_address(value_1)\n        value2 := value_1\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_ICompLike_$11027t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_contract$_ITicket_$12213(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_bytes(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n        end := add(add(pos, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 0x20)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\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    {\n        tail := add(headStart, 96)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff00000000000000000000000000000000000000000000000000000000))\n    }\n    function abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_bytes(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IYieldSource_$4176__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_bytes(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"PrizePool/prizeStrategy-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"PrizePool/only-prizeStrategy\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"PrizePool/ticket-not-zero-addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Address: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r call\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"PrizePool/invalid-external-token\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"PrizePool/ticket-already-set\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"PrizePool/award-exceeds-avail\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"Address: call to non-contract\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"SafeERC20: ERC20 operation did n\")\n        mstore(add(headStart, 96), \"ot succeed\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ReentrancyGuard: reentrant call\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"PrizePool/exceeds-liquidity-cap\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"PrizePool/exceeds-balance-cap\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\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) { mstore(add(dst, length), 0) }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "15012": [
                  {
                    "length": 32,
                    "start": 977
                  },
                  {
                    "length": 32,
                    "start": 6003
                  },
                  {
                    "length": 32,
                    "start": 6262
                  },
                  {
                    "length": 32,
                    "start": 6560
                  },
                  {
                    "length": 32,
                    "start": 6669
                  },
                  {
                    "length": 32,
                    "start": 7269
                  },
                  {
                    "length": 32,
                    "start": 7619
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101f05760003560e01c80637b99adb11161010f578063c002c4d6116100a2578063e6d8a94b11610071578063e6d8a94b14610441578063f2fde38b14610449578063ffa1ad741461045c578063ffaad6a5146104a557600080fd5b8063c002c4d6146103fb578063d7a169eb1461040c578063d804abaf1461041f578063e30c39781461043057600080fd5b8063aec9c307116100de578063aec9c307146103b1578063b15a49c1146103c4578063b2470e5c146103cc578063b69ef8a8146103f357600080fd5b80637b99adb1146103675780638da5cb5b1461037a57806391ca480e1461038b5780639470b0bd1461039e57600080fd5b806333e5761f11610187578063630665b411610156578063630665b4146103315780636a3fd4f914610339578063715018a61461034c57806378b3d3271461035457600080fd5b806333e5761f1461030657806335faa4161461030e5780634e71e0c8146103165780635d8a776e1461031e57600080fd5b80631c65c78b116101c35780631c65c78b1461029d57806321df0da7146102c05780632b0ab144146102e05780632f7627e3146102f357600080fd5b806308234319146101f557806313f55e391461020c578063150b7a021461022157806316960d551461028a575b600080fd5b6005545b6040519081526020015b60405180910390f35b61021f61021a366004612480565b6104b8565b005b61025961022f3660046124c1565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517fffffffff000000000000000000000000000000000000000000000000000000009091168152602001610203565b61021f6102983660046123eb565b61057a565b6102b06102ab3660046123b1565b610844565b6040519015158152602001610203565b6102c86109eb565b6040516001600160a01b039091168152602001610203565b61021f6102ee366004612480565b6109fa565b61021f6103013660046125f0565b610aa9565b6101f9610c06565b61021f610c10565b61021f610d98565b61021f61032c366004612560565b610e26565b6007546101f9565b6102b06103473660046123b1565b610f4c565b61021f610f5d565b6102b06103623660046123b1565b610fd2565b61021f610375366004612629565b610feb565b6000546001600160a01b03166102c8565b61021f6103993660046123b1565b611060565b6101f96103ac366004612560565b6110d2565b6102b06103bf366004612629565b611233565b6006546101f9565b6102c87f000000000000000000000000000000000000000000000000000000000000000081565b6101f96112a7565b6003546001600160a01b03166102c8565b61021f61041a36600461258c565b6112b1565b6004546001600160a01b03166102c8565b6001546001600160a01b03166102c8565b6101f96113f1565b61021f6104573660046123b1565b6114ef565b6104986040518060400160405280600581526020017f342e302e3000000000000000000000000000000000000000000000000000000081525081565b60405161020391906126e7565b61021f6104b3366004612560565b61162b565b6004546001600160a01b031633146105175760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064015b60405180910390fd5b6105228383836116ec565b1561057557816001600160a01b0316836001600160a01b03167fb0bac59718cd343c80a813518afcf36846cfcfe6d56e2b3cab9bd49f5f9b251c8360405161056c91815260200190565b60405180910390a35b505050565b6004546001600160a01b031633146105d45760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b6105dd8361176f565b6106295760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e604482015260640161050e565b806106335761083e565b60008167ffffffffffffffff81111561064e5761064e61279c565b604051908082528060200260200182016040528015610677578160200160208202803683370190505b5090506000805b838110156107e857856001600160a01b03166342842e0e30898888868181106106a9576106a9612786565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b1681526001600160a01b03958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b15801561071857600080fd5b505af1925050508015610729575060015b61079a573d808015610757576040519150601f19603f3d011682016040523d82523d6000602084013e61075c565b606091505b507f17e975018310f88872b58d4d8263adca83cf5c1893496ea2a86923dab15276ad8160405161078c91906126e7565b60405180910390a1506107d6565b600191508484828181106107b0576107b0612786565b905060200201358382815181106107c9576107c9612786565b6020026020010181815250505b806107e081612755565b91505061067e565b50801561083b57846001600160a01b0316866001600160a01b03167f69c2de32bc4d47f488e72626a6cfdee85089342e52675e7de79c4b417623960c8460405161083291906126a3565b60405180910390a35b50505b50505050565b6000336108596000546001600160a01b031690565b6001600160a01b0316146108af5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6001600160a01b03821661092b5760405162461bcd60e51b815260206004820152602160248201527f5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d61646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161050e565b6003546001600160a01b0316156109845760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f7469636b65742d616c72656164792d73657400000000604482015260640161050e565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091556040517f9f9d59c87dbdc6ca82d9e5924782004b9aebc366c505c0ccab12f61e2a9f332190600090a26109e3600019611836565b506001919050565b60006109f5611872565b905090565b6004546001600160a01b03163314610a545760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b610a5f8383836116ec565b1561057557816001600160a01b0316836001600160a01b03167fc65f48aca3b7a99b7443d04b8ffbb073156179bc628dc3f7def50477489734698360405161056c91815260200190565b33610abc6000546001600160a01b031690565b6001600160a01b031614610b125760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610b5457600080fd5b505afa158015610b68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8c9190612642565b1115610c02576040517f5c19a95c0000000000000000000000000000000000000000000000000000000081526001600160a01b038281166004830152831690635c19a95c90602401600060405180830381600087803b158015610bee57600080fd5b505af115801561083b573d6000803e3d6000fd5b5050565b60006109f5611905565b600280541415610c625760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b6002805533610c796000546001600160a01b031690565b6001600160a01b031614610ccf5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6000610cd9611872565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a082319060240160206040518083038186803b158015610d1a57600080fd5b505afa158015610d2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d529190612642565b9050610d5d8161199b565b6040518181527f7f221332ee403570bf4d61630b58189ea566ff1635269001e9df6a890f413dd89060200160405180910390a1506001600255565b6001546001600160a01b03163314610df25760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161050e565b600154610e07906001600160a01b0316611a74565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6004546001600160a01b03163314610e805760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b80610e89575050565b60075480821115610edc5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f61776172642d657863656564732d617661696c000000604482015260640161050e565b8181036007556003546001600160a01b0316610ef9848483611ad1565b806001600160a01b0316846001600160a01b03167fe2554529d99ab7a67db6b4cea2b32c7d55ae325f958861e05f304fdded867e3185604051610f3e91815260200190565b60405180910390a350505050565b6000610f578261176f565b92915050565b33610f706000546001600160a01b031690565b6001600160a01b031614610fc65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b610fd06000611a74565b565b6003546000906001600160a01b03808416911614610f57565b33610ffe6000546001600160a01b031690565b6001600160a01b0316146110545760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b61105d81611b51565b50565b336110736000546001600160a01b031690565b6001600160a01b0316146110c95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b61105d81611b86565b60006002805414156111265760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280556003546040517f631b5dfb0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0385811660248301526044820185905290911690819063631b5dfb90606401600060405180830381600087803b15801561119957600080fd5b505af11580156111ad573d6000803e3d6000fd5b5050505060006111bc84611c33565b90506111db85826111cb611872565b6001600160a01b03169190611ce9565b60408051858152602081018390526001600160a01b03808516929088169133917fe56473357106d0cdea364a045d5ab7abb44b6bd1c0f092ba3734983a43459f8f910160405180910390a46001600255949350505050565b6000336112486000546001600160a01b031690565b6001600160a01b03161461129e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6109e382611836565b60006109f5611d92565b6002805414156113035760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280558161131181611e23565b61135d5760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d63617000604482015260640161050e565b611368338585611e59565b6003546040517f33e39b610000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b038481166024830152909116906333e39b6190604401600060405180830381600087803b1580156113ce57600080fd5b505af11580156113e2573d6000803e3d6000fd5b50506001600255505050505050565b60006002805414156114455760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280556000611453611905565b6007549091506000611463611d92565b9050600083821161147557600061147f565b61147f8483612712565b9050600083821161149157600061149b565b61149b8483612712565b905080156114e157600782905560405181815291935083917fce2b6e507c7ca1a20ce136810f524eefc19ba4c7e4866eb6cc0cba76e778d4be9060200160405180910390a15b505060016002555092915050565b336115026000546001600160a01b031690565b6001600160a01b0316146115585760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6001600160a01b0381166115d45760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161050e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b60028054141561167d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280558061168b81611e23565b6116d75760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d63617000604482015260640161050e565b6116e2338484611e59565b5050600160025550565b60006116f78361176f565b6117435760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e604482015260640161050e565b8161175057506000611768565b6117646001600160a01b0384168584611ce9565b5060015b9392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03838116908216148015906117685750806001600160a01b031663c89039c56040518163ffffffff1660e01b815260040160206040518083038186803b1580156117e257600080fd5b505afa1580156117f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181a91906123ce565b6001600160a01b0316836001600160a01b031614159392505050565b60058190556040518181527f439b9ac8f2088164a8d80921758209db1623cf1a37a48913679ef3a43d7a5cf7906020015b60405180910390a150565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c89039c56040518163ffffffff1660e01b815260040160206040518083038186803b1580156118cd57600080fd5b505afa1580156118e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f591906123ce565b600354604080517f18160ddd00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561196357600080fd5b505afa158015611977573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f59190612642565b6119d87f0000000000000000000000000000000000000000000000000000000000000000826119c8611872565b6001600160a01b03169190611f4b565b6040517f87a6eeef000000000000000000000000000000000000000000000000000000008152600481018290523060248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906387a6eeef90604401600060405180830381600087803b158015611a5957600080fd5b505af1158015611a6d573d6000803e3d6000fd5b5050505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f5d7b07580000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260248201849052821690635d7b075890604401600060405180830381600087803b158015611b3457600080fd5b505af1158015611b48573d6000803e3d6000fd5b50505050505050565b60068190556040518181527f3ff20538222f568f27ff436c0c49dfd3e48d5b8f86533a3f759dc1c7089775ab90602001611867565b6001600160a01b038116611bdc5760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f604482015260640161050e565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f7f58dc86bc2e435cb77ca0edb1df55e25f90caf2d6bd866971715437d456a21290600090a250565b6040517f013054c2000000000000000000000000000000000000000000000000000000008152600481018290526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063013054c290602401602060405180830381600087803b158015611cb157600080fd5b505af1158015611cc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f579190612642565b6040516001600160a01b0383166024820152604481018290526105759084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915261203e565b6040517fb99152d00000000000000000000000000000000000000000000000000000000081523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063b99152d090602401602060405180830381600087803b158015611e0f57600080fd5b505af1158015611977573d6000803e3d6000fd5b600654600090600019811415611e3c5750600192915050565b8083611e46611905565b611e5091906126fa565b11159392505050565b611e638282612123565b611eaf5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f657863656564732d62616c616e63652d636170000000604482015260640161050e565b6003546001600160a01b0316611eda843084611ec9611872565b6001600160a01b03169291906121d1565b611ee5838383611ad1565b611eee8261199b565b806001600160a01b0316836001600160a01b0316856001600160a01b03167f4174a9435a04d04d274c76779cad136a41fde6937c56241c09ab9d3c7064a1a985604051611f3d91815260200190565b60405180910390a450505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b158015611fb057600080fd5b505afa158015611fc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe89190612642565b611ff291906126fa565b6040516001600160a01b03851660248201526044810182905290915061083e9085907f095ea7b30000000000000000000000000000000000000000000000000000000090606401611d2e565b6000612093826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122229092919063ffffffff16565b80519091501561057557808060200190518101906120b191906125ce565b6105755760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161050e565b60055460009060001981141561213d576001915050610f57565b6003546040516370a0823160e01b81526001600160a01b038681166004830152839286929116906370a082319060240160206040518083038186803b15801561218557600080fd5b505afa158015612199573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121bd9190612642565b6121c791906126fa565b1115949350505050565b6040516001600160a01b038085166024830152831660448201526064810182905261083e9085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401611d2e565b60606122318484600085612239565b949350505050565b6060824710156122b15760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161050e565b843b6122ff5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161050e565b600080866001600160a01b0316858760405161231b9190612687565b60006040518083038185875af1925050503d8060008114612358576040519150601f19603f3d011682016040523d82523d6000602084013e61235d565b606091505b509150915061236d828286612378565b979650505050505050565b60608315612387575081611768565b8251156123975782518084602001fd5b8160405162461bcd60e51b815260040161050e91906126e7565b6000602082840312156123c357600080fd5b8135611768816127b2565b6000602082840312156123e057600080fd5b8151611768816127b2565b6000806000806060858703121561240157600080fd5b843561240c816127b2565b9350602085013561241c816127b2565b9250604085013567ffffffffffffffff8082111561243957600080fd5b818701915087601f83011261244d57600080fd5b81358181111561245c57600080fd5b8860208260051b850101111561247157600080fd5b95989497505060200194505050565b60008060006060848603121561249557600080fd5b83356124a0816127b2565b925060208401356124b0816127b2565b929592945050506040919091013590565b6000806000806000608086880312156124d957600080fd5b85356124e4816127b2565b945060208601356124f4816127b2565b935060408601359250606086013567ffffffffffffffff8082111561251857600080fd5b818801915088601f83011261252c57600080fd5b81358181111561253b57600080fd5b89602082850101111561254d57600080fd5b9699959850939650602001949392505050565b6000806040838503121561257357600080fd5b823561257e816127b2565b946020939093013593505050565b6000806000606084860312156125a157600080fd5b83356125ac816127b2565b92506020840135915060408401356125c3816127b2565b809150509250925092565b6000602082840312156125e057600080fd5b8151801515811461176857600080fd5b6000806040838503121561260357600080fd5b823561260e816127b2565b9150602083013561261e816127b2565b809150509250929050565b60006020828403121561263b57600080fd5b5035919050565b60006020828403121561265457600080fd5b5051919050565b60008151808452612673816020860160208601612729565b601f01601f19169290920160200192915050565b60008251612699818460208701612729565b9190910192915050565b6020808252825182820181905260009190848201906040850190845b818110156126db578351835292840192918401916001016126bf565b50909695505050505050565b602081526000611768602083018461265b565b6000821982111561270d5761270d612770565b500190565b60008282101561272457612724612770565b500390565b60005b8381101561274457818101518382015260200161272c565b8381111561083e5750506000910152565b600060001982141561276957612769612770565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461105d57600080fdfea264697066735822122070ce217d2c1aa69bc791790960ce8f070b4000d06302457f3216b45576f7ed2064736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1F0 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7B99ADB1 GT PUSH2 0x10F JUMPI DUP1 PUSH4 0xC002C4D6 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xE6D8A94B GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xE6D8A94B EQ PUSH2 0x441 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x449 JUMPI DUP1 PUSH4 0xFFA1AD74 EQ PUSH2 0x45C JUMPI DUP1 PUSH4 0xFFAAD6A5 EQ PUSH2 0x4A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC002C4D6 EQ PUSH2 0x3FB JUMPI DUP1 PUSH4 0xD7A169EB EQ PUSH2 0x40C JUMPI DUP1 PUSH4 0xD804ABAF EQ PUSH2 0x41F JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x430 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xAEC9C307 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0xAEC9C307 EQ PUSH2 0x3B1 JUMPI DUP1 PUSH4 0xB15A49C1 EQ PUSH2 0x3C4 JUMPI DUP1 PUSH4 0xB2470E5C EQ PUSH2 0x3CC JUMPI DUP1 PUSH4 0xB69EF8A8 EQ PUSH2 0x3F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7B99ADB1 EQ PUSH2 0x367 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x37A JUMPI DUP1 PUSH4 0x91CA480E EQ PUSH2 0x38B JUMPI DUP1 PUSH4 0x9470B0BD EQ PUSH2 0x39E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E5761F GT PUSH2 0x187 JUMPI DUP1 PUSH4 0x630665B4 GT PUSH2 0x156 JUMPI DUP1 PUSH4 0x630665B4 EQ PUSH2 0x331 JUMPI DUP1 PUSH4 0x6A3FD4F9 EQ PUSH2 0x339 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x34C JUMPI DUP1 PUSH4 0x78B3D327 EQ PUSH2 0x354 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E5761F EQ PUSH2 0x306 JUMPI DUP1 PUSH4 0x35FAA416 EQ PUSH2 0x30E JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x316 JUMPI DUP1 PUSH4 0x5D8A776E EQ PUSH2 0x31E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1C65C78B GT PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x1C65C78B EQ PUSH2 0x29D JUMPI DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0x2C0 JUMPI DUP1 PUSH4 0x2B0AB144 EQ PUSH2 0x2E0 JUMPI DUP1 PUSH4 0x2F7627E3 EQ PUSH2 0x2F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8234319 EQ PUSH2 0x1F5 JUMPI DUP1 PUSH4 0x13F55E39 EQ PUSH2 0x20C JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x221 JUMPI DUP1 PUSH4 0x16960D55 EQ PUSH2 0x28A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x5 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x21F PUSH2 0x21A CALLDATASIZE PUSH1 0x4 PUSH2 0x2480 JUMP JUMPDEST PUSH2 0x4B8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x259 PUSH2 0x22F CALLDATASIZE PUSH1 0x4 PUSH2 0x24C1 JUMP JUMPDEST PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x203 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x298 CALLDATASIZE PUSH1 0x4 PUSH2 0x23EB JUMP JUMPDEST PUSH2 0x57A JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x2AB CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0x844 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x203 JUMP JUMPDEST PUSH2 0x2C8 PUSH2 0x9EB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x203 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x2EE CALLDATASIZE PUSH1 0x4 PUSH2 0x2480 JUMP JUMPDEST PUSH2 0x9FA JUMP JUMPDEST PUSH2 0x21F PUSH2 0x301 CALLDATASIZE PUSH1 0x4 PUSH2 0x25F0 JUMP JUMPDEST PUSH2 0xAA9 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0xC06 JUMP JUMPDEST PUSH2 0x21F PUSH2 0xC10 JUMP JUMPDEST PUSH2 0x21F PUSH2 0xD98 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x32C CALLDATASIZE PUSH1 0x4 PUSH2 0x2560 JUMP JUMPDEST PUSH2 0xE26 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH2 0x1F9 JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x347 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0xF4C JUMP JUMPDEST PUSH2 0x21F PUSH2 0xF5D JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x362 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0xFD2 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x375 CALLDATASIZE PUSH1 0x4 PUSH2 0x2629 JUMP JUMPDEST PUSH2 0xFEB JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x399 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0x1060 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0x3AC CALLDATASIZE PUSH1 0x4 PUSH2 0x2560 JUMP JUMPDEST PUSH2 0x10D2 JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x3BF CALLDATASIZE PUSH1 0x4 PUSH2 0x2629 JUMP JUMPDEST PUSH2 0x1233 JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH2 0x1F9 JUMP JUMPDEST PUSH2 0x2C8 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0x12A7 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x41A CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0x12B1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0x13F1 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x457 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0x14EF JUMP JUMPDEST PUSH2 0x498 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x342E302E30000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x203 SWAP2 SWAP1 PUSH2 0x26E7 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x4B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x2560 JUMP JUMPDEST PUSH2 0x162B JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x517 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x522 DUP4 DUP4 DUP4 PUSH2 0x16EC JUMP JUMPDEST ISZERO PUSH2 0x575 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xB0BAC59718CD343C80A813518AFCF36846CFCFE6D56E2B3CAB9BD49F5F9B251C DUP4 PUSH1 0x40 MLOAD PUSH2 0x56C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x5D4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x5DD DUP4 PUSH2 0x176F JUMP JUMPDEST PUSH2 0x629 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP1 PUSH2 0x633 JUMPI PUSH2 0x83E JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x64E JUMPI PUSH2 0x64E PUSH2 0x279C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x677 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP1 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x7E8 JUMPI DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x42842E0E ADDRESS DUP10 DUP9 DUP9 DUP7 DUP2 DUP2 LT PUSH2 0x6A9 JUMPI PUSH2 0x6A9 PUSH2 0x2786 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP9 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP6 DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP5 SWAP1 SWAP4 AND PUSH1 0x24 DUP6 ADD MSTORE POP PUSH1 0x20 SWAP1 SWAP2 MUL ADD CALLDATALOAD PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x718 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x729 JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x79A JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x757 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x75C JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH32 0x17E975018310F88872B58D4D8263ADCA83CF5C1893496EA2A86923DAB15276AD DUP2 PUSH1 0x40 MLOAD PUSH2 0x78C SWAP2 SWAP1 PUSH2 0x26E7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP PUSH2 0x7D6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP DUP5 DUP5 DUP3 DUP2 DUP2 LT PUSH2 0x7B0 JUMPI PUSH2 0x7B0 PUSH2 0x2786 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x7C9 JUMPI PUSH2 0x7C9 PUSH2 0x2786 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0x7E0 DUP2 PUSH2 0x2755 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x67E JUMP JUMPDEST POP DUP1 ISZERO PUSH2 0x83B JUMPI DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x69C2DE32BC4D47F488E72626A6CFDEE85089342E52675E7DE79C4B417623960C DUP5 PUSH1 0x40 MLOAD PUSH2 0x832 SWAP2 SWAP1 PUSH2 0x26A3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x859 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x92B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D6E6F742D7A65726F2D616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x984 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D616C72656164792D73657400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x9F9D59C87DBDC6CA82D9E5924782004B9AEBC366C505C0CCAB12F61E2A9F3321 SWAP1 PUSH1 0x0 SWAP1 LOG2 PUSH2 0x9E3 PUSH1 0x0 NOT PUSH2 0x1836 JUMP JUMPDEST POP PUSH1 0x1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F5 PUSH2 0x1872 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xA54 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0xA5F DUP4 DUP4 DUP4 PUSH2 0x16EC JUMP JUMPDEST ISZERO PUSH2 0x575 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xC65F48ACA3B7A99B7443D04B8FFBB073156179BC628DC3F7DEF5047748973469 DUP4 PUSH1 0x40 MLOAD PUSH2 0x56C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST CALLER PUSH2 0xABC PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xB12 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB68 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 0xB8C SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST GT ISZERO PUSH2 0xC02 JUMPI PUSH1 0x40 MLOAD PUSH32 0x5C19A95C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x5C19A95C SWAP1 PUSH1 0x24 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBEE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x83B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F5 PUSH2 0x1905 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0xC62 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE CALLER PUSH2 0xC79 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xCCF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCD9 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xD1A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD2E 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 0xD52 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST SWAP1 POP PUSH2 0xD5D DUP2 PUSH2 0x199B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x7F221332EE403570BF4D61630B58189EA566FF1635269001E9DF6A890F413DD8 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP PUSH1 0x1 PUSH1 0x2 SSTORE JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xDF2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0xE07 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1A74 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE80 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP1 PUSH2 0xE89 JUMPI POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD DUP1 DUP3 GT ISZERO PUSH2 0xEDC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F61776172642D657863656564732D617661696C000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x7 SSTORE PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xEF9 DUP5 DUP5 DUP4 PUSH2 0x1AD1 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xE2554529D99AB7A67DB6B4CEA2B32C7D55AE325F958861E05F304FDDED867E31 DUP6 PUSH1 0x40 MLOAD PUSH2 0xF3E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF57 DUP3 PUSH2 0x176F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0xF70 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xFC6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0xFD0 PUSH1 0x0 PUSH2 0x1A74 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND EQ PUSH2 0xF57 JUMP JUMPDEST CALLER PUSH2 0xFFE PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1054 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x105D DUP2 PUSH2 0x1B51 JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH2 0x1073 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x10C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x105D DUP2 PUSH2 0x1B86 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x1126 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x631B5DFB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP6 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 DUP2 SWAP1 PUSH4 0x631B5DFB SWAP1 PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1199 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x11AD JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 PUSH2 0x11BC DUP5 PUSH2 0x1C33 JUMP JUMPDEST SWAP1 POP PUSH2 0x11DB DUP6 DUP3 PUSH2 0x11CB PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x1CE9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP3 SWAP1 DUP9 AND SWAP2 CALLER SWAP2 PUSH32 0xE56473357106D0CDEA364A045D5AB7ABB44B6BD1C0F092BA3734983A43459F8F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x1 PUSH1 0x2 SSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x1248 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x129E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x9E3 DUP3 PUSH2 0x1836 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F5 PUSH2 0x1D92 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x1303 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP2 PUSH2 0x1311 DUP2 PUSH2 0x1E23 JUMP JUMPDEST PUSH2 0x135D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x1368 CALLER DUP6 DUP6 PUSH2 0x1E59 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x33E39B6100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x33E39B61 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x13CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x13E2 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x1445 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x0 PUSH2 0x1453 PUSH2 0x1905 JUMP JUMPDEST PUSH1 0x7 SLOAD SWAP1 SWAP2 POP PUSH1 0x0 PUSH2 0x1463 PUSH2 0x1D92 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x1475 JUMPI PUSH1 0x0 PUSH2 0x147F JUMP JUMPDEST PUSH2 0x147F DUP5 DUP4 PUSH2 0x2712 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x1491 JUMPI PUSH1 0x0 PUSH2 0x149B JUMP JUMPDEST PUSH2 0x149B DUP5 DUP4 PUSH2 0x2712 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x14E1 JUMPI PUSH1 0x7 DUP3 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE SWAP2 SWAP4 POP DUP4 SWAP2 PUSH32 0xCE2B6E507C7CA1A20CE136810F524EEFC19BA4C7E4866EB6CC0CBA76E778D4BE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x1502 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1558 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x15D4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x167D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP1 PUSH2 0x168B DUP2 PUSH2 0x1E23 JUMP JUMPDEST PUSH2 0x16D7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x16E2 CALLER DUP5 DUP5 PUSH2 0x1E59 JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16F7 DUP4 PUSH2 0x176F JUMP JUMPDEST PUSH2 0x1743 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP2 PUSH2 0x1750 JUMPI POP PUSH1 0x0 PUSH2 0x1768 JUMP JUMPDEST PUSH2 0x1764 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP6 DUP5 PUSH2 0x1CE9 JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND SWAP1 DUP3 AND EQ DUP1 ISZERO SWAP1 PUSH2 0x1768 JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC89039C5 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x17E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x17F6 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 0x181A SWAP2 SWAP1 PUSH2 0x23CE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x5 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x439B9AC8F2088164A8D80921758209DB1623CF1A37A48913679EF3A43D7A5CF7 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC89039C5 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x18CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x18E1 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 0x9F5 SWAP2 SWAP1 PUSH2 0x23CE JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x18160DDD00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 MLOAD PUSH1 0x0 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 PUSH4 0x18160DDD SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1963 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1977 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 0x9F5 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH2 0x19D8 PUSH32 0x0 DUP3 PUSH2 0x19C8 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x1F4B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x87A6EEEF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x87A6EEEF SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1A59 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1A6D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x5D7B075800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 AND SWAP1 PUSH4 0x5D7B0758 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1B34 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1B48 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x6 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x3FF20538222F568F27FF436C0C49DFD3E48D5B8F86533A3F759DC1C7089775AB SWAP1 PUSH1 0x20 ADD PUSH2 0x1867 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1BDC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7072697A6553747261746567792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x7F58DC86BC2E435CB77CA0EDB1DF55E25F90CAF2D6BD866971715437D456A212 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x13054C200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x13054C2 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1CB1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1CC5 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 0xF57 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x575 SWAP1 DUP5 SWAP1 PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xB99152D000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xB99152D0 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1E0F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1977 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x1E3C JUMPI POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP4 PUSH2 0x1E46 PUSH2 0x1905 JUMP JUMPDEST PUSH2 0x1E50 SWAP2 SWAP1 PUSH2 0x26FA JUMP JUMPDEST GT ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1E63 DUP3 DUP3 PUSH2 0x2123 JUMP JUMPDEST PUSH2 0x1EAF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D62616C616E63652D636170000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1EDA DUP5 ADDRESS DUP5 PUSH2 0x1EC9 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x21D1 JUMP JUMPDEST PUSH2 0x1EE5 DUP4 DUP4 DUP4 PUSH2 0x1AD1 JUMP JUMPDEST PUSH2 0x1EEE DUP3 PUSH2 0x199B JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4174A9435A04D04D274C76779CAD136A41FDE6937C56241C09AB9D3C7064A1A9 DUP6 PUSH1 0x40 MLOAD PUSH2 0x1F3D SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDD62ED3E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP2 DUP7 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1FB0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1FC4 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 0x1FE8 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH2 0x1FF2 SWAP2 SWAP1 PUSH2 0x26FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x83E SWAP1 DUP6 SWAP1 PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x1D2E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2093 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2222 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x575 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x20B1 SWAP2 SWAP1 PUSH2 0x25CE JUMP JUMPDEST PUSH2 0x575 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x213D JUMPI PUSH1 0x1 SWAP2 POP POP PUSH2 0xF57 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 SWAP3 DUP7 SWAP3 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2185 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2199 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 0x21BD SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH2 0x21C7 SWAP2 SWAP1 PUSH2 0x26FA JUMP JUMPDEST GT ISZERO SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x83E SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD PUSH2 0x1D2E JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2231 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x2239 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x22B1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x22FF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x231B SWAP2 SWAP1 PUSH2 0x2687 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x2358 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x235D JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x236D DUP3 DUP3 DUP7 PUSH2 0x2378 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x2387 JUMPI POP DUP2 PUSH2 0x1768 JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x2397 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x50E SWAP2 SWAP1 PUSH2 0x26E7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23C3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1768 DUP2 PUSH2 0x27B2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1768 DUP2 PUSH2 0x27B2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2401 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x240C DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x241C DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2439 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x244D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x245C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x2471 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2495 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x24A0 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x24B0 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x24D9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x24E4 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x24F4 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2518 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x252C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x253B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x254D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2573 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x257E DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x25A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x25AC DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x25C3 DUP2 PUSH2 0x27B2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x25E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x1768 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2603 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x260E DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x261E DUP2 PUSH2 0x27B2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x263B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2654 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x2673 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2729 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x2699 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2729 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x26DB JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x26BF JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1768 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x265B JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x270D JUMPI PUSH2 0x270D PUSH2 0x2770 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2724 JUMPI PUSH2 0x2724 PUSH2 0x2770 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2744 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x272C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x83E JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2769 JUMPI PUSH2 0x2769 PUSH2 0x2770 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x105D JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH17 0xCE217D2C1AA69BC791790960CE8F070B40 STOP 0xD0 PUSH4 0x2457F32 AND 0xB4 SSTORE PUSH23 0xF7ED2064736F6C63430008060033000000000000000000 ",
              "sourceMap": "641:3753:61:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3545:100:59;3628:10;;3545:100;;;14549:25:84;;;14537:2;14522:18;3545:100:59;;;;;;;;7453:299;;;;;;:::i;:::-;;:::i;:::-;;10285:212;;;;;;:::i;:::-;10449:41;10285:212;;;;;;;;;;;7809:66:84;7797:79;;;7779:98;;7767:2;7752:18;10285:212:59;7734:149:84;8118:961:59;;;;;;:::i;:::-;;:::i;9466:379::-;;;;;;:::i;:::-;;:::i;:::-;;;7608:14:84;;7601:22;7583:41;;7571:2;7556:18;9466:379:59;7538:92:84;4095:102:59;;;:::i;:::-;;;-1:-1:-1;;;;;5702:55:84;;;5684:74;;5672:2;5657:18;4095:102:59;5639:125:84;7789:292:59;;;;;;:::i;:::-;;:::i;10047:196::-;;;;;;:::i;:::-;;:::i;3392:116::-;;;:::i;2297:173:61:-;;;:::i;3147:129:22:-;;;:::i;6909:507:59:-;;;;;;:::i;:::-;;:::i;2886:109::-;2968:20;;2886:109;;3032:145;;;;;;:::i;:::-;;:::i;2508:94:22:-;;;:::i;3214:141:59:-;;;;;;:::i;:::-;;:::i;9305:124::-;;;;;;:::i;:::-;;:::i;1814:85:22:-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:22;1814:85;;9882:128:59;;;;;;:::i;:::-;;:::i;6371:501::-;;;;;;:::i;:::-;;:::i;9116:152::-;;;;;;:::i;:::-;;:::i;3682:104::-;3767:12;;3682:104;;799:41:61;;;;;2760:89:59;;;:::i;3823:92::-;3902:6;;-1:-1:-1;;;;;3902:6:59;3823:92;;5405:285;;;;;;:::i;:::-;;:::i;3952:106::-;4038:13;;-1:-1:-1;;;;;4038:13:59;3952:106;;2014:101:22;2095:13;;-1:-1:-1;;;;;2095:13:22;2014:101;;4234:903:59;;;:::i;2751:234:22:-;;;;;;:::i;:::-;;:::i;1362:40:59:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;5174:194::-;;;;;;:::i;:::-;;:::i;7453:299::-;2094:13;;-1:-1:-1;;;;;2094:13:59;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:59;;9397:2:84;2072:68:59;;;9379:21:84;9436:2;9416:18;;;9409:30;9475;9455:18;;;9448:58;9523:18;;2072:68:59;;;;;;;;;7618:42:::1;7631:3;7636:14;7652:7;7618:12;:42::i;:::-;7614:132;;;7711:14;-1:-1:-1::0;;;;;7681:54:59::1;7706:3;-1:-1:-1::0;;;;;7681:54:59::1;;7727:7;7681:54;;;;14549:25:84::0;;14537:2;14522:18;;14504:76;7681:54:59::1;;;;;;;;7614:132;7453:299:::0;;;:::o;8118:961::-;2094:13;;-1:-1:-1;;;;;2094:13:59;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:59;;9397:2:84;2072:68:59;;;9379:21:84;9436:2;9416:18;;;9409:30;9475;9455:18;;;9448:58;9523:18;;2072:68:59;9369:178:84;2072:68:59;8298:33:::1;8316:14;8298:17;:33::i;:::-;8290:78;;;::::0;-1:-1:-1;;;8290:78:59;;10916:2:84;8290:78:59::1;::::0;::::1;10898:21:84::0;;;10935:18;;;10928:30;10994:34;10974:18;;;10967:62;11046:18;;8290:78:59::1;10888:182:84::0;8290:78:59::1;8383:21:::0;8379:58:::1;;8420:7;;8379:58;8447:33;8497:9:::0;8483:31:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;8483:31:59::1;-1:-1:-1::0;8447:67:59;-1:-1:-1;8525:23:59::1;::::0;8559:390:::1;8579:20:::0;;::::1;8559:390;;;8632:14;-1:-1:-1::0;;;;;8624:40:59::1;;8673:4;8680:3;8685:9;;8695:1;8685:12;;;;;;;:::i;:::-;8624:74;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;6382:15:84;;;8624:74:59::1;::::0;::::1;6364:34:84::0;6434:15;;;;6414:18;;;6407:43;-1:-1:-1;8685:12:59::1;::::0;;::::1;;;6466:18:84::0;;;6459:34;6276:18;;8624:74:59::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;8620:319;;;::::0;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8890:34;8918:5;8890:34;;;;;;:::i;:::-;;;;;;;;8810:129;8620:319;;;8738:4;8717:25;;8782:9;;8792:1;8782:12;;;;;;;:::i;:::-;;;;;;;8760:16;8777:1;8760:19;;;;;;;;:::i;:::-;;;;;;:34;;;::::0;::::1;8620:319;8601:3:::0;::::1;::::0;::::1;:::i;:::-;;;;8559:390;;;;8962:18;8958:115;;;9029:14;-1:-1:-1::0;;;;;9002:60:59::1;9024:3;-1:-1:-1::0;;;;;9002:60:59::1;;9045:16;9002:60;;;;;;:::i;:::-;;;;;;;;8958:115;8280:799;;2150:1;8118:961:::0;;;;:::o;9466:379::-;9539:4;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;10563:2:84;3819:58:22;;;10545:21:84;10602:2;10582:18;;;10575:30;10641:26;10621:18;;;10614:54;10685:18;;3819:58:22;10535:174:84;3819:58:22;-1:-1:-1;;;;;9563:30:59;::::1;9555:76;;;::::0;-1:-1:-1;;;9555:76:59;;9754:2:84;9555:76:59::1;::::0;::::1;9736:21:84::0;9793:2;9773:18;;;9766:30;9832:34;9812:18;;;9805:62;9903:3;9883:18;;;9876:31;9924:19;;9555:76:59::1;9726:223:84::0;9555:76:59::1;9657:6;::::0;-1:-1:-1;;;;;9657:6:59::1;9649:29:::0;9641:70:::1;;;::::0;-1:-1:-1;;;9641:70:59;;11637:2:84;9641:70:59::1;::::0;::::1;11619:21:84::0;11676:2;11656:18;;;11649:30;11715;11695:18;;;11688:58;11763:18;;9641:70:59::1;11609:178:84::0;9641:70:59::1;9722:6;:16:::0;;-1:-1:-1;;9722:16:59::1;-1:-1:-1::0;;;;;9722:16:59;::::1;::::0;;::::1;::::0;;;9754:18:::1;::::0;::::1;::::0;-1:-1:-1;;9754:18:59::1;9783:33;-1:-1:-1::0;;9783:14:59::1;:33::i;:::-;-1:-1:-1::0;9834:4:59::1;9466:379:::0;;;:::o;4095:102::-;4147:7;4181:8;:6;:8::i;:::-;4166:24;;4095:102;:::o;7789:292::-;2094:13;;-1:-1:-1;;;;;2094:13:59;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:59;;9397:2:84;2072:68:59;;;9379:21:84;9436:2;9416:18;;;9409:30;9475;9455:18;;;9448:58;9523:18;;2072:68:59;9369:178:84;2072:68:59;7951:42:::1;7964:3;7969:14;7985:7;7951:12;:42::i;:::-;7947:128;;;8040:14;-1:-1:-1::0;;;;;8014:50:59::1;8035:3;-1:-1:-1::0;;;;;8014:50:59::1;;8056:7;8014:50;;;;14549:25:84::0;;14537:2;14522:18;;14504:76;10047:196:59;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;10563:2:84;3819:58:22;;;10545:21:84;10602:2;10582:18;;;10575:30;10641:26;10621:18;;;10614:54;10685:18;;3819:58:22;10535:174:84;3819:58:22;10149:34:59::1;::::0;-1:-1:-1;;;10149:34:59;;10177:4:::1;10149:34;::::0;::::1;5684:74:84::0;10186:1:59::1;::::0;-1:-1:-1;;;;;10149:19:59;::::1;::::0;::::1;::::0;5657:18:84;;10149:34:59::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;10145:92;;;10203:23;::::0;;;;-1:-1:-1;;;;;5702:55:84;;;10203:23:59::1;::::0;::::1;5684:74:84::0;10203:18:59;::::1;::::0;::::1;::::0;5657::84;;10203:23:59::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;10145:92;10047:196:::0;;:::o;3392:116::-;3455:7;3481:20;:18;:20::i;2297:173:61:-;1680:1:0;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:0;;13527:2:84;2251:63:0;;;13509:21:84;13566:2;13546:18;;;13539:30;13605:33;13585:18;;;13578:61;13656:18;;2251:63:0;13499:181:84;2251:63:0;1680:1;2389:18;;3838:10:22::1;3827:7;1860::::0;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7:::1;-1:-1:-1::0;;;;;3827:21:22::1;;3819:58;;;::::0;-1:-1:-1;;;3819:58:22;;10563:2:84;3819:58:22::1;::::0;::::1;10545:21:84::0;10602:2;10582:18;;;10575:30;10641:26;10621:18;;;10614:54;10685:18;;3819:58:22::1;10535:174:84::0;3819:58:22::1;2356:15:61::2;2374:8;:6;:8::i;:::-;:33;::::0;-1:-1:-1;;;2374:33:61;;2401:4:::2;2374:33;::::0;::::2;5684:74:84::0;-1:-1:-1;;;;;2374:18:61;;;::::2;::::0;::::2;::::0;5657::84;;2374:33:61::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2356:51;;2417:16;2425:7;2417;:16::i;:::-;2449:14;::::0;14549:25:84;;;2449:14:61::2;::::0;14537:2:84;14522:18;2449:14:61::2;;;;;;;-1:-1:-1::0;1637:1:0;2562:7;:22;2297:173:61:o;3147:129:22:-;4050:13;;-1:-1:-1;;;;;4050:13:22;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:22;;11277:2:84;4028:71:22;;;11259:21:84;11316:2;11296:18;;;11289:30;11355:33;11335:18;;;11328:61;11406:18;;4028:71:22;11249:181:84;4028:71:22;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:22::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:22::1;::::0;;3147:129::o;6909:507:59:-;2094:13;;-1:-1:-1;;;;;2094:13:59;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:59;;9397:2:84;2072:68:59;;;9379:21:84;9436:2;9416:18;;;9409:30;9475;9455:18;;;9448:58;9523:18;;2072:68:59;9369:178:84;2072:68:59;7004:12;7000:49:::1;;10047:196:::0;;:::o;7000:49::-:1;7089:20;::::0;7128:30;;::::1;;7120:72;;;::::0;-1:-1:-1;;;7120:72:59;;11994:2:84;7120:72:59::1;::::0;::::1;11976:21:84::0;12033:2;12013:18;;;12006:30;12072:31;12052:18;;;12045:59;12121:18;;7120:72:59::1;11966:179:84::0;7120:72:59::1;7250:29:::0;;::::1;7227:20;:52:::0;7318:6:::1;::::0;-1:-1:-1;;;;;7318:6:59::1;7335:28;7341:3:::0;7272:7;7318:6;7335:5:::1;:28::i;:::-;7392:7;-1:-1:-1::0;;;;;7379:30:59::1;7387:3;-1:-1:-1::0;;;;;7379:30:59::1;;7401:7;7379:30;;;;14549:25:84::0;;14537:2;14522:18;;14504:76;7379:30:59::1;;;;;;;;6990:426;;6909:507:::0;;:::o;3032:145::-;3114:4;3137:33;3155:14;3137:17;:33::i;:::-;3130:40;3032:145;-1:-1:-1;;3032:145:59:o;2508:94:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;10563:2:84;3819:58:22;;;10545:21:84;10602:2;10582:18;;;10575:30;10641:26;10621:18;;;10614:54;10685:18;;3819:58:22;10535:174:84;3819:58:22;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;3214:141:59:-;13170:6;;3294:4;;-1:-1:-1;;;;;13170:26:59;;;:6;;:26;3317:31;13074:130;9305:124;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;10563:2:84;3819:58:22;;;10545:21:84;10602:2;10582:18;;;10575:30;10641:26;10621:18;;;10614:54;10685:18;;3819:58:22;10535:174:84;3819:58:22;9391:31:59::1;9408:13;9391:16;:31::i;:::-;9305:124:::0;:::o;9882:128::-;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;10563:2:84;3819:58:22;;;10545:21:84;10602:2;10582:18;;;10575:30;10641:26;10621:18;;;10614:54;10685:18;;3819:58:22;10535:174:84;3819:58:22;9970:33:59::1;9988:14;9970:17;:33::i;6371:501::-:0;6497:7;1680:1:0;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:0;;13527:2:84;2251:63:0;;;13509:21:84;13566:2;13546:18;;;13539:30;13605:33;13585:18;;;13578:61;13656:18;;2251:63:0;13499:181:84;2251:63:0;1680:1;2389:18;;6538:6:59::1;::::0;6583:54:::1;::::0;;;;6610:10:::1;6583:54;::::0;::::1;6364:34:84::0;-1:-1:-1;;;;;6434:15:84;;;6414:18;;;6407:43;6466:18;;;6459:34;;;6538:6:59;;::::1;::::0;;;6583:26:::1;::::0;6276:18:84;;6583:54:59::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;6678:17;6698:16;6706:7;6698;:16::i;:::-;6678:36;;6725:39;6747:5;6754:9;6725:8;:6;:8::i;:::-;-1:-1:-1::0;;;;;6725:21:59::1;::::0;:39;:21:::1;:39::i;:::-;6780:58;::::0;;15061:25:84;;;15117:2;15102:18;;15095:34;;;-1:-1:-1;;;;;6780:58:59;;::::1;::::0;;;::::1;::::0;6791:10:::1;::::0;6780:58:::1;::::0;15034:18:84;6780:58:59::1;;;;;;;1637:1:0::0;2562:7;:22;6856:9:59;6371:501;-1:-1:-1;;;;6371:501:59:o;9116:152::-;9197:4;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;10563:2:84;3819:58:22;;;10545:21:84;10602:2;10582:18;;;10575:30;10641:26;10621:18;;;10614:54;10685:18;;3819:58:22;10535:174:84;3819:58:22;9213:27:59::1;9228:11;9213:14;:27::i;2760:89::-:0;2806:7;2832:10;:8;:10::i;5405:285::-;1680:1:0;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:0;;13527:2:84;2251:63:0;;;13509:21:84;13566:2;13546:18;;;13539:30;13605:33;13585:18;;;13578:61;13656:18;;2251:63:0;13499:181:84;2251:63:0;1680:1;2389:18;;5563:7:59;2327:25:::1;5563:7:::0;2327:16:::1;:25::i;:::-;2319:69;;;::::0;-1:-1:-1;;;2319:69:59;;13887:2:84;2319:69:59::1;::::0;::::1;13869:21:84::0;13926:2;13906:18;;;13899:30;13965:33;13945:18;;;13938:61;14016:18;;2319:69:59::1;13859:181:84::0;2319:69:59::1;5586:36:::2;5597:10;5609:3;5614:7;5586:10;:36::i;:::-;5632:6;::::0;:51:::2;::::0;;;;5661:10:::2;5632:51;::::0;::::2;6004:34:84::0;-1:-1:-1;;;;;6074:15:84;;;6054:18;;;6047:43;5632:6:59;;::::2;::::0;:28:::2;::::0;5916:18:84;;5632:51:59::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;1637:1:0;2562:7;:22;-1:-1:-1;;;;;;5405:285:59:o;4234:903::-;4305:7;1680:1:0;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:0;;13527:2:84;2251:63:0;;;13509:21:84;13566:2;13546:18;;;13539:30;13605:33;13585:18;;;13578:61;13656:18;;2251:63:0;13499:181:84;2251:63:0;1680:1;2389:18;;4324:25:59::1;4352:20;:18;:20::i;:::-;4412;::::0;4324:48;;-1:-1:-1;4382:27:59::1;4583:10;:8;:10::i;:::-;4558:35;;4603:21;4645:17;4628:14;:34;4627:101;;4727:1;4627:101;;;4678:34;4695:17:::0;4678:14;:34:::1;:::i;:::-;4603:125;;4739:31;4790:19;4774:13;:35;4773:103;;4875:1;4773:103;;;4825:35;4841:19:::0;4825:13;:35:::1;:::i;:::-;4739:137:::0;-1:-1:-1;4891:27:59;;4887:207:::1;;4983:20;:42:::0;;;5045:38:::1;::::0;14549:25:84;;;4956:13:59;;-1:-1:-1;4956:13:59;;5045:38:::1;::::0;14537:2:84;14522:18;5045:38:59::1;;;;;;;4887:207;-1:-1:-1::0;;1637:1:0;2562:7;:22;-1:-1:-1;5111:19:59;4234:903;-1:-1:-1;;4234:903:59:o;2751:234:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;10563:2:84;3819:58:22;;;10545:21:84;10602:2;10582:18;;;10575:30;10641:26;10621:18;;;10614:54;10685:18;;3819:58:22;10535:174:84;3819:58:22;-1:-1:-1;;;;;2834:23:22;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:22;;12710:2:84;2826:73:22::1;::::0;::::1;12692:21:84::0;12749:2;12729:18;;;12722:30;12788:34;12768:18;;;12761:62;12859:7;12839:18;;;12832:35;12884:19;;2826:73:22::1;12682:227:84::0;2826:73:22::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:22::1;-1:-1:-1::0;;;;;2910:25:22;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:22::1;2751:234:::0;:::o;5174:194:59:-;1680:1:0;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:0;;13527:2:84;2251:63:0;;;13509:21:84;13566:2;13546:18;;;13539:30;13605:33;13585:18;;;13578:61;13656:18;;2251:63:0;13499:181:84;2251:63:0;1680:1;2389:18;;5302:7:59;2327:25:::1;5302:7:::0;2327:16:::1;:25::i;:::-;2319:69;;;::::0;-1:-1:-1;;;2319:69:59;;13887:2:84;2319:69:59::1;::::0;::::1;13869:21:84::0;13926:2;13906:18;;;13899:30;13965:33;13945:18;;;13938:61;14016:18;;2319:69:59::1;13859:181:84::0;2319:69:59::1;5325:36:::2;5336:10;5348:3;5353:7;5325:10;:36::i;:::-;-1:-1:-1::0;;1637:1:0;2562:7;:22;-1:-1:-1;5174:194:59:o;10936:372::-;11060:4;11084:33;11102:14;11084:17;:33::i;:::-;11076:78;;;;-1:-1:-1;;;11076:78:59;;10916:2:84;11076:78:59;;;10898:21:84;;;10935:18;;;10928:30;10994:34;10974:18;;;10967:62;11046:18;;11076:78:59;10888:182:84;11076:78:59;11169:12;11165:55;;-1:-1:-1;11204:5:59;11197:12;;11165:55;11230:49;-1:-1:-1;;;;;11230:35:59;;11266:3;11271:7;11230:35;:49::i;:::-;-1:-1:-1;11297:4:59;10936:372;;;;;;:::o;2887:286:61:-;2970:4;3014:11;-1:-1:-1;;;;;3056:39:61;;;;;;;;;;:100;;;3129:12;-1:-1:-1;;;;;3129:25:61;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3111:45:61;:14;-1:-1:-1;;;;;3111:45:61;;;3035:131;2887:286;-1:-1:-1;;;2887:286:61:o;13334:136:59:-;13398:10;:24;;;13437:26;;14549:25:84;;;13437:26:59;;14537:2:84;14522:18;13437:26:59;;;;;;;;13334:136;:::o;3594:116:61:-;3644:6;3676:11;-1:-1:-1;;;;;3676:24:61;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14215:106:59:-;14294:6;;:20;;;;;;;;14268:7;;-1:-1:-1;;;;;14294:6:59;;:18;;:20;;;;;;;;;;;;;;:6;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;3844:201:61:-;3910:65;3949:11;3963;3910:8;:6;:8::i;:::-;-1:-1:-1;;;;;3910:30:61;;:65;:30;:65::i;:::-;3985:53;;;;;;;;14759:25:84;;;4032:4:61;14800:18:84;;;14793:83;3985:11:61;-1:-1:-1;;;;;3985:25:61;;;;14732:18:84;;3985:53:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3844:201;:::o;3470:174:22:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;11602:172:59:-;11722:45;;;;;-1:-1:-1;;;;;6696:55:84;;;11722:45:59;;;6678:74:84;6768:18;;;6761:34;;;11722:31:59;;;;;6651:18:84;;11722:45:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11602:172;;;:::o;13592:148::-;13660:12;:28;;;13703:30;;14549:25:84;;;13703:30:59;;14537:2:84;14522:18;13703:30:59;14504:76:84;13887:239:59;-1:-1:-1;;;;;13965:28:59;;13957:73;;;;-1:-1:-1;;;13957:73:59;;9036:2:84;13957:73:59;;;9018:21:84;;;9055:18;;;9048:30;9114:34;9094:18;;;9087:62;9166:18;;13957:73:59;9008:182:84;13957:73:59;14041:13;:30;;-1:-1:-1;;14041:30:59;-1:-1:-1;;;;;14041:30:59;;;;;;;;14087:32;;;;-1:-1:-1;;14087:32:59;13887:239;:::o;4254:138:61:-;4347:38;;;;;;;;14549:25:84;;;4321:7:61;;4347:11;-1:-1:-1;;;;;4347:23:61;;;;14522:18:84;;4347:38:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;634:205:6:-;773:58;;-1:-1:-1;;;;;6696:55:84;;773:58:6;;;6678:74:84;6768:18;;;6761:34;;;746:86:6;;766:5;;796:23;;6651:18:84;;773:58:6;;;;-1:-1:-1;;773:58:6;;;;;;;;;;;;;;;;;;;;;;;;;;;746:19;:86::i;3337:121:61:-;3410:41;;;;;3445:4;3410:41;;;5684:74:84;3384:7:61;;3410:11;-1:-1:-1;;;;;3410:26:61;;;;5657:18:84;;3410:41:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12605:252:59;12711:12;;12671:4;;-1:-1:-1;;12737:34:59;;12733:51;;;-1:-1:-1;12780:4:59;;12605:252;-1:-1:-1;;12605:252:59:o;12733:51::-;12836:13;12825:7;12802:20;:18;:20::i;:::-;:30;;;;:::i;:::-;:47;;;12605:252;-1:-1:-1;;;12605:252:59:o;5938:396::-;6038:25;6050:3;6055:7;6038:11;:25::i;:::-;6030:67;;;;-1:-1:-1;;;6030:67:59;;14247:2:84;6030:67:59;;;14229:21:84;14286:2;14266:18;;;14259:30;14325:31;14305:18;;;14298:59;14374:18;;6030:67:59;14219:179:84;6030:67:59;6126:6;;-1:-1:-1;;;;;6126:6:59;6143:60;6169:9;6188:4;6195:7;6143:8;:6;:8::i;:::-;-1:-1:-1;;;;;6143:25:59;;:60;;:25;:60::i;:::-;6214:28;6220:3;6225:7;6234;6214:5;:28::i;:::-;6252:16;6260:7;6252;:16::i;:::-;6310:7;-1:-1:-1;;;;;6284:43:59;6305:3;-1:-1:-1;;;;;6284:43:59;6294:9;-1:-1:-1;;;;;6284:43:59;;6319:7;6284:43;;;;14549:25:84;;14537:2;14522:18;;14504:76;6284:43:59;;;;;;;;6020:314;5938:396;;;:::o;1955:310:6:-;2104:39;;;;;2128:4;2104:39;;;6004:34:84;-1:-1:-1;;;;;6074:15:84;;;6054:18;;;6047:43;2081:20:6;;2146:5;;2104:15;;;;;5916:18:84;;2104:39:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;;:::i;:::-;2188:69;;-1:-1:-1;;;;;6696:55:84;;2188:69:6;;;6678:74:84;6768:18;;;6761:34;;;2081:70:6;;-1:-1:-1;2161:97:6;;2181:5;;2211:22;;6651:18:84;;2188:69:6;6633:168:84;3140:706:6;3559:23;3585:69;3613:4;3585:69;;;;;;;;;;;;;;;;;3593:5;-1:-1:-1;;;;;3585:27:6;;;:69;;;;;:::i;:::-;3668:17;;3559:95;;-1:-1:-1;3668:21:6;3664:176;;3763:10;3752:30;;;;;;;;;;;;:::i;:::-;3744:85;;;;-1:-1:-1;;;3744:85:6;;13116:2:84;3744:85:6;;;13098:21:84;13155:2;13135:18;;;13128:30;13194:34;13174:18;;;13167:62;13265:12;13245:18;;;13238:40;13295:19;;3744:85:6;13088:232:84;12093:259:59;12207:10;;12169:4;;-1:-1:-1;;12232:32:59;;12228:49;;;12273:4;12266:11;;;;;12228:49;12296:6;;:23;;-1:-1:-1;;;12296:23:59;;-1:-1:-1;;;;;5702:55:84;;;12296:23:59;;;5684:74:84;12333:11:59;;12322:7;;12296:6;;;:16;;5657:18:84;;12296:23:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;;;;:::i;:::-;:48;;;12093:259;-1:-1:-1;;;;12093:259:59:o;845:241:6:-;1010:68;;-1:-1:-1;;;;;6382:15:84;;;1010:68:6;;;6364:34:84;6434:15;;6414:18;;;6407:43;6466:18;;;6459:34;;;983:96:6;;1003:5;;1033:27;;6276:18:84;;1010:68:6;6258:241:84;3461:223:11;3594:12;3625:52;3647:6;3655:4;3661:1;3664:12;3625:21;:52::i;:::-;3618:59;3461:223;-1:-1:-1;;;;3461:223:11:o;4548:499::-;4713:12;4770:5;4745:21;:30;;4737:81;;;;-1:-1:-1;;;4737:81:11;;10156:2:84;4737:81:11;;;10138:21:84;10195:2;10175:18;;;10168:30;10234:34;10214:18;;;10207:62;10305:8;10285:18;;;10278:36;10331:19;;4737:81:11;10128:228:84;4737:81:11;1034:20;;4828:60;;;;-1:-1:-1;;;4828:60:11;;12352:2:84;4828:60:11;;;12334:21:84;12391:2;12371:18;;;12364:30;12430:31;12410:18;;;12403:59;12479:18;;4828:60:11;12324:179:84;4828:60:11;4900:12;4914:23;4941:6;-1:-1:-1;;;;;4941:11:11;4960:5;4967:4;4941:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4899:73;;;;4989:51;5006:7;5015:10;5027:12;4989:16;:51::i;:::-;4982:58;4548:499;-1:-1:-1;;;;;;;4548:499:11:o;7161:692::-;7307:12;7335:7;7331:516;;;-1:-1:-1;7365:10:11;7358:17;;7331:516;7476:17;;:21;7472:365;;7670:10;7664:17;7730:15;7717:10;7713:2;7709:19;7702:44;7472:365;7809:12;7802:20;;-1:-1:-1;;;7802:20:11;;;;;;;;:::i;14:247:84:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;200:31;225:5;200:31;:::i;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:2;;;405:1;402;395:12;357:2;437:9;431:16;456:31;481:5;456:31;:::i;522:891::-;626:6;634;642;650;703:2;691:9;682:7;678:23;674:32;671:2;;;719:1;716;709:12;671:2;758:9;745:23;777:31;802:5;777:31;:::i;:::-;827:5;-1:-1:-1;884:2:84;869:18;;856:32;897:33;856:32;897:33;:::i;:::-;949:7;-1:-1:-1;1007:2:84;992:18;;979:32;1030:18;1060:14;;;1057:2;;;1087:1;1084;1077:12;1057:2;1125:6;1114:9;1110:22;1100:32;;1170:7;1163:4;1159:2;1155:13;1151:27;1141:2;;1192:1;1189;1182:12;1141:2;1232;1219:16;1258:2;1250:6;1247:14;1244:2;;;1274:1;1271;1264:12;1244:2;1327:7;1322:2;1312:6;1309:1;1305:14;1301:2;1297:23;1293:32;1290:45;1287:2;;;1348:1;1345;1338:12;1287:2;661:752;;;;-1:-1:-1;;1379:2:84;1371:11;;-1:-1:-1;;;661:752:84:o;1418:456::-;1495:6;1503;1511;1564:2;1552:9;1543:7;1539:23;1535:32;1532:2;;;1580:1;1577;1570:12;1532:2;1619:9;1606:23;1638:31;1663:5;1638:31;:::i;:::-;1688:5;-1:-1:-1;1745:2:84;1730:18;;1717:32;1758:33;1717:32;1758:33;:::i;:::-;1522:352;;1810:7;;-1:-1:-1;;;1864:2:84;1849:18;;;;1836:32;;1522:352::o;1879:936::-;1976:6;1984;1992;2000;2008;2061:3;2049:9;2040:7;2036:23;2032:33;2029:2;;;2078:1;2075;2068:12;2029:2;2117:9;2104:23;2136:31;2161:5;2136:31;:::i;:::-;2186:5;-1:-1:-1;2243:2:84;2228:18;;2215:32;2256:33;2215:32;2256:33;:::i;:::-;2308:7;-1:-1:-1;2362:2:84;2347:18;;2334:32;;-1:-1:-1;2417:2:84;2402:18;;2389:32;2440:18;2470:14;;;2467:2;;;2497:1;2494;2487:12;2467:2;2535:6;2524:9;2520:22;2510:32;;2580:7;2573:4;2569:2;2565:13;2561:27;2551:2;;2602:1;2599;2592:12;2551:2;2642;2629:16;2668:2;2660:6;2657:14;2654:2;;;2684:1;2681;2674:12;2654:2;2729:7;2724:2;2715:6;2711:2;2707:15;2703:24;2700:37;2697:2;;;2750:1;2747;2740:12;2697:2;2019:796;;;;-1:-1:-1;2019:796:84;;-1:-1:-1;2781:2:84;2773:11;;2803:6;2019:796;-1:-1:-1;;;2019:796:84:o;2820:315::-;2888:6;2896;2949:2;2937:9;2928:7;2924:23;2920:32;2917:2;;;2965:1;2962;2955:12;2917:2;3004:9;2991:23;3023:31;3048:5;3023:31;:::i;:::-;3073:5;3125:2;3110:18;;;;3097:32;;-1:-1:-1;;;2907:228:84:o;3140:456::-;3217:6;3225;3233;3286:2;3274:9;3265:7;3261:23;3257:32;3254:2;;;3302:1;3299;3292:12;3254:2;3341:9;3328:23;3360:31;3385:5;3360:31;:::i;:::-;3410:5;-1:-1:-1;3462:2:84;3447:18;;3434:32;;-1:-1:-1;3518:2:84;3503:18;;3490:32;3531:33;3490:32;3531:33;:::i;:::-;3583:7;3573:17;;;3244:352;;;;;:::o;3601:277::-;3668:6;3721:2;3709:9;3700:7;3696:23;3692:32;3689:2;;;3737:1;3734;3727:12;3689:2;3769:9;3763:16;3822:5;3815:13;3808:21;3801:5;3798:32;3788:2;;3844:1;3841;3834:12;3883:407;3970:6;3978;4031:2;4019:9;4010:7;4006:23;4002:32;3999:2;;;4047:1;4044;4037:12;3999:2;4086:9;4073:23;4105:31;4130:5;4105:31;:::i;:::-;4155:5;-1:-1:-1;4212:2:84;4197:18;;4184:32;4225:33;4184:32;4225:33;:::i;:::-;4277:7;4267:17;;;3989:301;;;;;:::o;4564:180::-;4623:6;4676:2;4664:9;4655:7;4651:23;4647:32;4644:2;;;4692:1;4689;4682:12;4644:2;-1:-1:-1;4715:23:84;;4634:110;-1:-1:-1;4634:110:84:o;4749:184::-;4819:6;4872:2;4860:9;4851:7;4847:23;4843:32;4840:2;;;4888:1;4885;4878:12;4840:2;-1:-1:-1;4911:16:84;;4830:103;-1:-1:-1;4830:103:84:o;4938:316::-;4979:3;5017:5;5011:12;5044:6;5039:3;5032:19;5060:63;5116:6;5109:4;5104:3;5100:14;5093:4;5086:5;5082:16;5060:63;:::i;:::-;5168:2;5156:15;-1:-1:-1;;5152:88:84;5143:98;;;;5243:4;5139:109;;4987:267;-1:-1:-1;;4987:267:84:o;5259:274::-;5388:3;5426:6;5420:13;5442:53;5488:6;5483:3;5476:4;5468:6;5464:17;5442:53;:::i;:::-;5511:16;;;;;5396:137;-1:-1:-1;;5396:137:84:o;6806:632::-;6977:2;7029:21;;;7099:13;;7002:18;;;7121:22;;;6948:4;;6977:2;7200:15;;;;7174:2;7159:18;;;6948:4;7243:169;7257:6;7254:1;7251:13;7243:169;;;7318:13;;7306:26;;7387:15;;;;7352:12;;;;7279:1;7272:9;7243:169;;;-1:-1:-1;7429:3:84;;6957:481;-1:-1:-1;;;;;;6957:481:84:o;7888:217::-;8035:2;8024:9;8017:21;7998:4;8055:44;8095:2;8084:9;8080:18;8072:6;8055:44;:::i;15140:128::-;15180:3;15211:1;15207:6;15204:1;15201:13;15198:2;;;15217:18;;:::i;:::-;-1:-1:-1;15253:9:84;;15188:80::o;15273:125::-;15313:4;15341:1;15338;15335:8;15332:2;;;15346:18;;:::i;:::-;-1:-1:-1;15383:9:84;;15322:76::o;15403:258::-;15475:1;15485:113;15499:6;15496:1;15493:13;15485:113;;;15575:11;;;15569:18;15556:11;;;15549:39;15521:2;15514:10;15485:113;;;15616:6;15613:1;15610:13;15607:2;;;-1:-1:-1;;15651:1:84;15633:16;;15626:27;15456:205::o;15666:195::-;15705:3;-1:-1:-1;;15729:5:84;15726:77;15723:2;;;15806:18;;:::i;:::-;-1:-1:-1;15853:1:84;15842:13;;15713:148::o;15866:184::-;-1:-1:-1;;;15915:1:84;15908:88;16015:4;16012:1;16005:15;16039:4;16036:1;16029:15;16055:184;-1:-1:-1;;;16104:1:84;16097:88;16204:4;16201:1;16194:15;16228:4;16225:1;16218:15;16244:184;-1:-1:-1;;;16293:1:84;16286:88;16393:4;16390:1;16383:15;16417:4;16414:1;16407:15;16433:154;-1:-1:-1;;;;;16512:5:84;16508:54;16501:5;16498:65;16488:2;;16577:1;16574;16567:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "2047400",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "VERSION()": "infinite",
                "award(address,uint256)": "infinite",
                "awardBalance()": "2326",
                "awardExternalERC20(address,address,uint256)": "infinite",
                "awardExternalERC721(address,address,uint256[])": "infinite",
                "balance()": "infinite",
                "canAwardExternal(address)": "infinite",
                "captureAwardBalance()": "infinite",
                "claimOwnership()": "54531",
                "compLikeDelegate(address,address)": "infinite",
                "depositTo(address,uint256)": "infinite",
                "depositToAndDelegate(address,uint256,address)": "infinite",
                "getAccountedBalance()": "infinite",
                "getBalanceCap()": "2317",
                "getLiquidityCap()": "2348",
                "getPrizeStrategy()": "2420",
                "getTicket()": "2376",
                "getToken()": "infinite",
                "isControlled(address)": "2634",
                "onERC721Received(address,address,uint256,bytes)": "infinite",
                "owner()": "2399",
                "pendingOwner()": "2442",
                "renounceOwnership()": "28224",
                "setBalanceCap(uint256)": "25708",
                "setLiquidityCap(uint256)": "25649",
                "setPrizeStrategy(address)": "infinite",
                "setTicket(address)": "53354",
                "sweep()": "infinite",
                "transferExternalERC20(address,address,uint256)": "infinite",
                "transferOwnership(address)": "27966",
                "withdrawFrom(address,uint256)": "infinite",
                "yieldSource()": "infinite"
              },
              "internal": {
                "_balance()": "infinite",
                "_canAwardExternal(address)": "infinite",
                "_redeem(uint256)": "infinite",
                "_supply(uint256)": "infinite",
                "_token()": "infinite"
              }
            },
            "methodIdentifiers": {
              "VERSION()": "ffa1ad74",
              "award(address,uint256)": "5d8a776e",
              "awardBalance()": "630665b4",
              "awardExternalERC20(address,address,uint256)": "2b0ab144",
              "awardExternalERC721(address,address,uint256[])": "16960d55",
              "balance()": "b69ef8a8",
              "canAwardExternal(address)": "6a3fd4f9",
              "captureAwardBalance()": "e6d8a94b",
              "claimOwnership()": "4e71e0c8",
              "compLikeDelegate(address,address)": "2f7627e3",
              "depositTo(address,uint256)": "ffaad6a5",
              "depositToAndDelegate(address,uint256,address)": "d7a169eb",
              "getAccountedBalance()": "33e5761f",
              "getBalanceCap()": "08234319",
              "getLiquidityCap()": "b15a49c1",
              "getPrizeStrategy()": "d804abaf",
              "getTicket()": "c002c4d6",
              "getToken()": "21df0da7",
              "isControlled(address)": "78b3d327",
              "onERC721Received(address,address,uint256,bytes)": "150b7a02",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setBalanceCap(uint256)": "aec9c307",
              "setLiquidityCap(uint256)": "7b99adb1",
              "setPrizeStrategy(address)": "91ca480e",
              "setTicket(address)": "1c65c78b",
              "sweep()": "35faa416",
              "transferExternalERC20(address,address,uint256)": "13f55e39",
              "transferOwnership(address)": "f2fde38b",
              "withdrawFrom(address,uint256)": "9470b0bd",
              "yieldSource()": "b2470e5c"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IYieldSource\",\"name\":\"_yieldSource\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardCaptured\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Awarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardedExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"AwardedExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"balanceCap\",\"type\":\"uint256\"}],\"name\":\"BalanceCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"ControlledTokenAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"yieldSource\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Deposited\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"error\",\"type\":\"bytes\"}],\"name\":\"ErrorAwardingExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidityCap\",\"type\":\"uint256\"}],\"name\":\"LiquidityCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"prizeStrategy\",\"type\":\"address\"}],\"name\":\"PrizeStrategySet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Swept\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"}],\"name\":\"TicketSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"TransferredExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"redeemed\",\"type\":\"uint256\"}],\"name\":\"Withdrawal\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"award\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"awardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"awardExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"_tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"awardExternalERC721\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"balance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"}],\"name\":\"canAwardExternal\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"captureAwardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ICompLike\",\"name\":\"_compLike\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"}],\"name\":\"compLikeDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"depositTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_delegate\",\"type\":\"address\"}],\"name\":\"depositToAndDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAccountedBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBalanceCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLiquidityCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeStrategy\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getTicket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_controlledToken\",\"type\":\"address\"}],\"name\":\"isControlled\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_balanceCap\",\"type\":\"uint256\"}],\"name\":\"setBalanceCap\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_liquidityCap\",\"type\":\"uint256\"}],\"name\":\"setLiquidityCap\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_prizeStrategy\",\"type\":\"address\"}],\"name\":\"setPrizeStrategy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_ticket\",\"type\":\"address\"}],\"name\":\"setTicket\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"sweep\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"transferExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFrom\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"yieldSource\",\"outputs\":[{\"internalType\":\"contract IYieldSource\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"Deployed(address)\":{\"details\":\"Emitted when yield source prize pool is deployed.\",\"params\":{\"yieldSource\":\"Address of the yield source.\"}},\"Swept(uint256)\":{\"params\":{\"amount\":\"The amount that was swept\"}}},\"kind\":\"dev\",\"methods\":{\"award(address,uint256)\":{\"details\":\"The amount awarded must be less than the awardBalance()\",\"params\":{\"amount\":\"The amount of assets to be awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardBalance()\":{\"details\":\"captureAwardBalance() should be called first\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"awardExternalERC20(address,address,uint256)\":{\"details\":\"Used to award any arbitrary tokens held by the Prize Pool\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardExternalERC721(address,address,uint256[])\":{\"details\":\"Used to award any arbitrary NFTs held by the Prize Pool\",\"params\":{\"externalToken\":\"The address of the external NFT token being awarded\",\"to\":\"The address of the winner that receives the award\",\"tokenIds\":\"An array of NFT Token IDs to be transferred\"}},\"balance()\":{\"returns\":{\"_0\":\"The underlying balance of assets\"}},\"canAwardExternal(address)\":{\"details\":\"Checks with the Prize Pool if a specific token type may be awarded as an external prize\",\"params\":{\"externalToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token may be awarded, false otherwise\"}},\"captureAwardBalance()\":{\"details\":\"This function also captures the reserve fees.\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"compLikeDelegate(address,address)\":{\"params\":{\"compLike\":\"The COMP-like token held by the prize pool that should be delegated\",\"to\":\"The address to delegate to\"}},\"constructor\":{\"params\":{\"_owner\":\"Address of the Yield Source Prize Pool owner\",\"_yieldSource\":\"Address of the yield source\"}},\"depositTo(address,uint256)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"to\":\"The address receiving the newly minted tokens\"}},\"depositToAndDelegate(address,uint256,address)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"delegate\":\"The address to delegate to for the caller\",\"to\":\"The address receiving the newly minted tokens\"}},\"getAccountedBalance()\":{\"returns\":{\"_0\":\"uint256 accountBalance\"}},\"isControlled(address)\":{\"details\":\"Checks if a specific token is controlled by the Prize Pool\",\"params\":{\"controlledToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token is a controlled token, false otherwise\"}},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\"},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setBalanceCap(uint256)\":{\"details\":\"If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.\",\"params\":{\"balanceCap\":\"New balance cap.\"},\"returns\":{\"_0\":\"True if new balance cap has been successfully set.\"}},\"setLiquidityCap(uint256)\":{\"params\":{\"liquidityCap\":\"The new liquidity cap for the prize pool\"}},\"setPrizeStrategy(address)\":{\"params\":{\"_prizeStrategy\":\"The new prize strategy.\"}},\"setTicket(address)\":{\"params\":{\"ticket\":\"Address of the ticket to set.\"},\"returns\":{\"_0\":\"True if ticket has been successfully set.\"}},\"sweep()\":{\"details\":\"This becomes prize money\"},\"transferExternalERC20(address,address,uint256)\":{\"details\":\"Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}},\"withdrawFrom(address,uint256)\":{\"params\":{\"amount\":\"The amount of tokens to redeem for assets.\",\"from\":\"The address to redeem tokens from.\"},\"returns\":{\"_0\":\"The actual amount withdrawn\"}}},\"title\":\"PoolTogether V4 YieldSourcePrizePool\",\"version\":1},\"userdoc\":{\"events\":{\"Swept(uint256)\":{\"notice\":\"Emitted when stray deposit token balance in this contract is swept\"}},\"kind\":\"user\",\"methods\":{\"VERSION()\":{\"notice\":\"Semver Version\"},\"award(address,uint256)\":{\"notice\":\"Called by the prize strategy to award prizes.\"},\"awardBalance()\":{\"notice\":\"Returns the balance that is available to award.\"},\"awardExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to award external ERC20 prizes\"},\"awardExternalERC721(address,address,uint256[])\":{\"notice\":\"Called by the prize strategy to award external ERC721 prizes\"},\"captureAwardBalance()\":{\"notice\":\"Captures any available interest as award balance.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"compLikeDelegate(address,address)\":{\"notice\":\"Delegate the votes for a Compound COMP-like token held by the prize pool\"},\"constructor\":{\"notice\":\"Deploy the Prize Pool and Yield Service with the required contract connections\"},\"depositTo(address,uint256)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens\"},\"depositToAndDelegate(address,uint256,address)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller.\"},\"getAccountedBalance()\":{\"notice\":\"Read internal Ticket accounted balance.\"},\"getBalanceCap()\":{\"notice\":\"Read internal balanceCap variable\"},\"getLiquidityCap()\":{\"notice\":\"Read internal liquidityCap variable\"},\"getPrizeStrategy()\":{\"notice\":\"Read prizeStrategy variable\"},\"getTicket()\":{\"notice\":\"Read ticket variable\"},\"getToken()\":{\"notice\":\"Read token variable\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setBalanceCap(uint256)\":{\"notice\":\"Allows the owner to set a balance cap per `token` for the pool.\"},\"setLiquidityCap(uint256)\":{\"notice\":\"Allows the Governor to set a cap on the amount of liquidity that he pool can hold\"},\"setPrizeStrategy(address)\":{\"notice\":\"Sets the prize strategy of the prize pool.  Only callable by the owner.\"},\"setTicket(address)\":{\"notice\":\"Set prize pool ticket.\"},\"sweep()\":{\"notice\":\"Sweeps any stray balance of deposit tokens into the yield source.\"},\"transferExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to transfer out external ERC20 tokens\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"},\"withdrawFrom(address,uint256)\":{\"notice\":\"Withdraw assets from the Prize Pool instantly.\"},\"yieldSource()\":{\"notice\":\"Address of the yield source.\"}},\"notice\":\"The Yield Source Prize Pool uses a yield source contract to generate prizes.         Funds that are deposited into the prize pool are then deposited into a yield source. (i.e. Aave, Compound, etc...)\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/prize-pool/YieldSourcePrizePool.sol\":\"YieldSourcePrizePool\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Contract module that helps prevent reentrant calls to a function.\\n *\\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\\n * available, which can be applied to functions to make sure there are no nested\\n * (reentrant) calls to them.\\n *\\n * Note that because there is a single `nonReentrant` guard, functions marked as\\n * `nonReentrant` may not call one another. This can be worked around by making\\n * those functions `private`, and then adding `external` `nonReentrant` entry\\n * points to them.\\n *\\n * TIP: If you would like to learn more about reentrancy and alternative ways\\n * to protect against it, check out our blog post\\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\\n */\\nabstract contract ReentrancyGuard {\\n    // Booleans are more expensive than uint256 or any type that takes up a full\\n    // word because each write operation emits an extra SLOAD to first read the\\n    // slot's contents, replace the bits taken up by the boolean, and then write\\n    // back. This is the compiler's defense against contract upgrades and\\n    // pointer aliasing, and it cannot be disabled.\\n\\n    // The values being non-zero value makes deployment a bit more expensive,\\n    // but in exchange the refund on every call to nonReentrant will be lower in\\n    // amount. Since refunds are capped to a percentage of the total\\n    // transaction's gas, it is best to keep them low in cases like this one, to\\n    // increase the likelihood of the full refund coming into effect.\\n    uint256 private constant _NOT_ENTERED = 1;\\n    uint256 private constant _ENTERED = 2;\\n\\n    uint256 private _status;\\n\\n    constructor() {\\n        _status = _NOT_ENTERED;\\n    }\\n\\n    /**\\n     * @dev Prevents a contract from calling itself, directly or indirectly.\\n     * Calling a `nonReentrant` function from another `nonReentrant`\\n     * function is not supported. It is possible to prevent this from happening\\n     * by making the `nonReentrant` function external, and make it call a\\n     * `private` function that does the actual work.\\n     */\\n    modifier nonReentrant() {\\n        // On the first call to nonReentrant, _notEntered will be true\\n        require(_status != _ENTERED, \\\"ReentrancyGuard: reentrant call\\\");\\n\\n        // Any calls to nonReentrant after this point will fail\\n        _status = _ENTERED;\\n\\n        _;\\n\\n        // By storing the original value once again, a refund is triggered (see\\n        // https://eips.ethereum.org/EIPS/eip-2200)\\n        _status = _NOT_ENTERED;\\n    }\\n}\\n\",\"keccak256\":\"0x842ccf9a6cd33e17b7acef8372ca42090755217b358fe0c44c98e951ea549d3a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../../utils/introspection/IERC165.sol\\\";\\n\\n/**\\n * @dev Required interface of an ERC721 compliant contract.\\n */\\ninterface IERC721 is IERC165 {\\n    /**\\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\\n     */\\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\\n     */\\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\\n\\n    /**\\n     * @dev Returns the number of tokens in ``owner``'s account.\\n     */\\n    function balanceOf(address owner) external view returns (uint256 balance);\\n\\n    /**\\n     * @dev Returns the owner of the `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function ownerOf(uint256 tokenId) external view returns (address owner);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Transfers `tokenId` token from `from` to `to`.\\n     *\\n     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\\n     * The approval is cleared when the token is transferred.\\n     *\\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\\n     *\\n     * Requirements:\\n     *\\n     * - The caller must own the token or be an approved operator.\\n     * - `tokenId` must exist.\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address to, uint256 tokenId) external;\\n\\n    /**\\n     * @dev Returns the account approved for `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function getApproved(uint256 tokenId) external view returns (address operator);\\n\\n    /**\\n     * @dev Approve or remove `operator` as an operator for the caller.\\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\\n     *\\n     * Requirements:\\n     *\\n     * - The `operator` cannot be the caller.\\n     *\\n     * Emits an {ApprovalForAll} event.\\n     */\\n    function setApprovalForAll(address operator, bool _approved) external;\\n\\n    /**\\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\\n     *\\n     * See {setApprovalForAll}\\n     */\\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external;\\n}\\n\",\"keccak256\":\"0xf101e8720213560fab41104d53b3cc7ba0456ef3a98455aa7f022391783144a0\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title ERC721 token receiver interface\\n * @dev Interface for any contract that wants to support safeTransfers\\n * from ERC721 asset contracts.\\n */\\ninterface IERC721Receiver {\\n    /**\\n     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\\n     * by `operator` from `from`, this function is called.\\n     *\\n     * It must return its Solidity selector to confirm the token transfer.\\n     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\\n     *\\n     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\\n     */\\n    function onERC721Received(\\n        address operator,\\n        address from,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external returns (bytes4);\\n}\\n\",\"keccak256\":\"0xd9517254724276e2e8de3769183c1f738f445f0095c26fd9b86d3c6687e887b9\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC165.sol\\\";\\n\\n/**\\n * @dev Library used to query support of an interface declared via {IERC165}.\\n *\\n * Note that these functions return the actual result of the query: they do not\\n * `revert` if an interface is not supported. It is up to the caller to decide\\n * what to do in these cases.\\n */\\nlibrary ERC165Checker {\\n    // As per the EIP-165 spec, no interface should ever match 0xffffffff\\n    bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;\\n\\n    /**\\n     * @dev Returns true if `account` supports the {IERC165} interface,\\n     */\\n    function supportsERC165(address account) internal view returns (bool) {\\n        // Any contract that implements ERC165 must explicitly indicate support of\\n        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid\\n        return\\n            _supportsERC165Interface(account, type(IERC165).interfaceId) &&\\n            !_supportsERC165Interface(account, _INTERFACE_ID_INVALID);\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports the interface defined by\\n     * `interfaceId`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {\\n        // query support of both ERC165 as per the spec and support of _interfaceId\\n        return supportsERC165(account) && _supportsERC165Interface(account, interfaceId);\\n    }\\n\\n    /**\\n     * @dev Returns a boolean array where each value corresponds to the\\n     * interfaces passed in and whether they're supported or not. This allows\\n     * you to batch check interfaces for a contract where your expectation\\n     * is that some interfaces may not be supported.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function getSupportedInterfaces(address account, bytes4[] memory interfaceIds)\\n        internal\\n        view\\n        returns (bool[] memory)\\n    {\\n        // an array of booleans corresponding to interfaceIds and whether they're supported or not\\n        bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);\\n\\n        // query support of ERC165 itself\\n        if (supportsERC165(account)) {\\n            // query support of each interface in interfaceIds\\n            for (uint256 i = 0; i < interfaceIds.length; i++) {\\n                interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]);\\n            }\\n        }\\n\\n        return interfaceIdsSupported;\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports all the interfaces defined in\\n     * `interfaceIds`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * Batch-querying can lead to gas savings by skipping repeated checks for\\n     * {IERC165} support.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {\\n        // query support of ERC165 itself\\n        if (!supportsERC165(account)) {\\n            return false;\\n        }\\n\\n        // query support of each interface in _interfaceIds\\n        for (uint256 i = 0; i < interfaceIds.length; i++) {\\n            if (!_supportsERC165Interface(account, interfaceIds[i])) {\\n                return false;\\n            }\\n        }\\n\\n        // all interfaces supported\\n        return true;\\n    }\\n\\n    /**\\n     * @notice Query if a contract implements an interface, does not check ERC165 support\\n     * @param account The address of the contract to query for support of an interface\\n     * @param interfaceId The interface identifier, as specified in ERC-165\\n     * @return true if the contract at account indicates support of the interface with\\n     * identifier interfaceId, false otherwise\\n     * @dev Assumes that account contains a contract that supports ERC165, otherwise\\n     * the behavior of this method is undefined. This precondition can be checked\\n     * with {supportsERC165}.\\n     * Interface identification is specified in ERC-165.\\n     */\\n    function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {\\n        bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId);\\n        (bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams);\\n        if (result.length < 32) return false;\\n        return success && abi.decode(result, (bool));\\n    }\\n}\\n\",\"keccak256\":\"0xaf583f9537cf446d08c33909e52313d349a831f6b88f20361b76474e40b4c36f\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.\\n/// @notice Prize Pools subclasses need to implement this interface so that yield can be generated.\\ninterface IYieldSource {\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token address.\\n    function depositToken() external view returns (address);\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens.\\n    function balanceOfToken(address addr) external returns (uint256);\\n\\n    /// @notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\\n    /// @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\\n    /// @param to The user whose balance will receive the tokens\\n    function supplyTokenTo(uint256 amount, address to) external;\\n\\n    /// @notice Redeems tokens from the yield source.\\n    /// @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\\n    /// @return The actual amount of interst bearing tokens that were redeemed.\\n    function redeemToken(uint256 amount) external returns (uint256);\\n}\\n\",\"keccak256\":\"0x659c59f7b0a4cac6ce4c46a8ccec1d8d7ab14aa08451c0d521804fec9ccc95f1\",\"license\":\"GPL-3.0\"},\"contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"},\"contracts/prize-pool/PrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\nimport \\\"@openzeppelin/contracts/security/ReentrancyGuard.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC721/IERC721.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\\\";\\nimport \\\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/IPrizePool.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizePool\\n  * @author PoolTogether Inc Team\\n  * @notice Escrows assets and deposits them into a yield source.  Exposes interest to Prize Strategy.\\n            Users deposit and withdraw from this contract to participate in Prize Pool.\\n            Accounting is managed using Controlled Tokens, whose mint and burn functions can only be called by this contract.\\n            Must be inherited to provide specific yield-bearing asset control, such as Compound cTokens\\n*/\\nabstract contract PrizePool is IPrizePool, Ownable, ReentrancyGuard, IERC721Receiver {\\n    using SafeCast for uint256;\\n    using SafeERC20 for IERC20;\\n    using ERC165Checker for address;\\n\\n    /// @notice Semver Version\\n    string public constant VERSION = \\\"4.0.0\\\";\\n\\n    /// @notice Prize Pool ticket. Can only be set once by calling `setTicket()`.\\n    ITicket internal ticket;\\n\\n    /// @notice The Prize Strategy that this Prize Pool is bound to.\\n    address internal prizeStrategy;\\n\\n    /// @notice The total amount of tickets a user can hold.\\n    uint256 internal balanceCap;\\n\\n    /// @notice The total amount of funds that the prize pool can hold.\\n    uint256 internal liquidityCap;\\n\\n    /// @notice the The awardable balance\\n    uint256 internal _currentAwardBalance;\\n\\n    /* ============ Modifiers ============ */\\n\\n    /// @dev Function modifier to ensure caller is the prize-strategy\\n    modifier onlyPrizeStrategy() {\\n        require(msg.sender == prizeStrategy, \\\"PrizePool/only-prizeStrategy\\\");\\n        _;\\n    }\\n\\n    /// @dev Function modifier to ensure the deposit amount does not exceed the liquidity cap (if set)\\n    modifier canAddLiquidity(uint256 _amount) {\\n        require(_canAddLiquidity(_amount), \\\"PrizePool/exceeds-liquidity-cap\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /// @notice Deploy the Prize Pool\\n    /// @param _owner Address of the Prize Pool owner\\n    constructor(address _owner) Ownable(_owner) ReentrancyGuard() {\\n        _setLiquidityCap(type(uint256).max);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizePool\\n    function balance() external override returns (uint256) {\\n        return _balance();\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardBalance() external view override returns (uint256) {\\n        return _currentAwardBalance;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function canAwardExternal(address _externalToken) external view override returns (bool) {\\n        return _canAwardExternal(_externalToken);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function isControlled(ITicket _controlledToken) external view override returns (bool) {\\n        return _isControlled(_controlledToken);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getAccountedBalance() external view override returns (uint256) {\\n        return _ticketTotalSupply();\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getBalanceCap() external view override returns (uint256) {\\n        return balanceCap;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getLiquidityCap() external view override returns (uint256) {\\n        return liquidityCap;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getTicket() external view override returns (ITicket) {\\n        return ticket;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getPrizeStrategy() external view override returns (address) {\\n        return prizeStrategy;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getToken() external view override returns (address) {\\n        return address(_token());\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function captureAwardBalance() external override nonReentrant returns (uint256) {\\n        uint256 ticketTotalSupply = _ticketTotalSupply();\\n        uint256 currentAwardBalance = _currentAwardBalance;\\n\\n        // it's possible for the balance to be slightly less due to rounding errors in the underlying yield source\\n        uint256 currentBalance = _balance();\\n        uint256 totalInterest = (currentBalance > ticketTotalSupply)\\n            ? currentBalance - ticketTotalSupply\\n            : 0;\\n\\n        uint256 unaccountedPrizeBalance = (totalInterest > currentAwardBalance)\\n            ? totalInterest - currentAwardBalance\\n            : 0;\\n\\n        if (unaccountedPrizeBalance > 0) {\\n            currentAwardBalance = totalInterest;\\n            _currentAwardBalance = currentAwardBalance;\\n\\n            emit AwardCaptured(unaccountedPrizeBalance);\\n        }\\n\\n        return currentAwardBalance;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function depositTo(address _to, uint256 _amount)\\n        external\\n        override\\n        nonReentrant\\n        canAddLiquidity(_amount)\\n    {\\n        _depositTo(msg.sender, _to, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function depositToAndDelegate(address _to, uint256 _amount, address _delegate)\\n        external\\n        override\\n        nonReentrant\\n        canAddLiquidity(_amount)\\n    {\\n        _depositTo(msg.sender, _to, _amount);\\n        ticket.controllerDelegateFor(msg.sender, _delegate);\\n    }\\n\\n    /// @notice Transfers tokens in from one user and mints tickets to another\\n    /// @notice _operator The user to transfer tokens from\\n    /// @notice _to The user to mint tickets to\\n    /// @notice _amount The amount to transfer and mint\\n    function _depositTo(address _operator, address _to, uint256 _amount) internal\\n    {\\n        require(_canDeposit(_to, _amount), \\\"PrizePool/exceeds-balance-cap\\\");\\n\\n        ITicket _ticket = ticket;\\n\\n        _token().safeTransferFrom(_operator, address(this), _amount);\\n\\n        _mint(_to, _amount, _ticket);\\n        _supply(_amount);\\n\\n        emit Deposited(_operator, _to, _ticket, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function withdrawFrom(address _from, uint256 _amount)\\n        external\\n        override\\n        nonReentrant\\n        returns (uint256)\\n    {\\n        ITicket _ticket = ticket;\\n\\n        // burn the tickets\\n        _ticket.controllerBurnFrom(msg.sender, _from, _amount);\\n\\n        // redeem the tickets\\n        uint256 _redeemed = _redeem(_amount);\\n\\n        _token().safeTransfer(_from, _redeemed);\\n\\n        emit Withdrawal(msg.sender, _from, _ticket, _amount, _redeemed);\\n\\n        return _redeemed;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function award(address _to, uint256 _amount) external override onlyPrizeStrategy {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        uint256 currentAwardBalance = _currentAwardBalance;\\n\\n        require(_amount <= currentAwardBalance, \\\"PrizePool/award-exceeds-avail\\\");\\n\\n        unchecked {\\n            _currentAwardBalance = currentAwardBalance - _amount;\\n        }\\n\\n        ITicket _ticket = ticket;\\n\\n        _mint(_to, _amount, _ticket);\\n\\n        emit Awarded(_to, _ticket, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function transferExternalERC20(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) external override onlyPrizeStrategy {\\n        if (_transferOut(_to, _externalToken, _amount)) {\\n            emit TransferredExternalERC20(_to, _externalToken, _amount);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardExternalERC20(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) external override onlyPrizeStrategy {\\n        if (_transferOut(_to, _externalToken, _amount)) {\\n            emit AwardedExternalERC20(_to, _externalToken, _amount);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardExternalERC721(\\n        address _to,\\n        address _externalToken,\\n        uint256[] calldata _tokenIds\\n    ) external override onlyPrizeStrategy {\\n        require(_canAwardExternal(_externalToken), \\\"PrizePool/invalid-external-token\\\");\\n\\n        if (_tokenIds.length == 0) {\\n            return;\\n        }\\n\\n        uint256[] memory _awardedTokenIds = new uint256[](_tokenIds.length); \\n        bool hasAwardedTokenIds;\\n\\n        for (uint256 i = 0; i < _tokenIds.length; i++) {\\n            try IERC721(_externalToken).safeTransferFrom(address(this), _to, _tokenIds[i]) {\\n                hasAwardedTokenIds = true;\\n                _awardedTokenIds[i] = _tokenIds[i];\\n            } catch (\\n                bytes memory error\\n            ) {\\n                emit ErrorAwardingExternalERC721(error);\\n            }\\n        }\\n        if (hasAwardedTokenIds) { \\n            emit AwardedExternalERC721(_to, _externalToken, _awardedTokenIds);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setBalanceCap(uint256 _balanceCap) external override onlyOwner returns (bool) {\\n        _setBalanceCap(_balanceCap);\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setLiquidityCap(uint256 _liquidityCap) external override onlyOwner {\\n        _setLiquidityCap(_liquidityCap);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setTicket(ITicket _ticket) external override onlyOwner returns (bool) {\\n        require(address(_ticket) != address(0), \\\"PrizePool/ticket-not-zero-address\\\");\\n        require(address(ticket) == address(0), \\\"PrizePool/ticket-already-set\\\");\\n\\n        ticket = _ticket;\\n\\n        emit TicketSet(_ticket);\\n\\n        _setBalanceCap(type(uint256).max);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setPrizeStrategy(address _prizeStrategy) external override onlyOwner {\\n        _setPrizeStrategy(_prizeStrategy);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function compLikeDelegate(ICompLike _compLike, address _to) external override onlyOwner {\\n        if (_compLike.balanceOf(address(this)) > 0) {\\n            _compLike.delegate(_to);\\n        }\\n    }\\n\\n    /// @inheritdoc IERC721Receiver\\n    function onERC721Received(\\n        address,\\n        address,\\n        uint256,\\n        bytes calldata\\n    ) external pure override returns (bytes4) {\\n        return IERC721Receiver.onERC721Received.selector;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /// @notice Transfer out `amount` of `externalToken` to recipient `to`\\n    /// @dev Only awardable `externalToken` can be transferred out\\n    /// @param _to Recipient address\\n    /// @param _externalToken Address of the external asset token being transferred\\n    /// @param _amount Amount of external assets to be transferred\\n    /// @return True if transfer is successful\\n    function _transferOut(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) internal returns (bool) {\\n        require(_canAwardExternal(_externalToken), \\\"PrizePool/invalid-external-token\\\");\\n\\n        if (_amount == 0) {\\n            return false;\\n        }\\n\\n        IERC20(_externalToken).safeTransfer(_to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @notice Called to mint controlled tokens.  Ensures that token listener callbacks are fired.\\n    /// @param _to The user who is receiving the tokens\\n    /// @param _amount The amount of tokens they are receiving\\n    /// @param _controlledToken The token that is going to be minted\\n    function _mint(\\n        address _to,\\n        uint256 _amount,\\n        ITicket _controlledToken\\n    ) internal {\\n        _controlledToken.controllerMint(_to, _amount);\\n    }\\n\\n    /// @dev Checks if `user` can deposit in the Prize Pool based on the current balance cap.\\n    /// @param _user Address of the user depositing.\\n    /// @param _amount The amount of tokens to be deposited into the Prize Pool.\\n    /// @return True if the Prize Pool can receive the specified `amount` of tokens.\\n    function _canDeposit(address _user, uint256 _amount) internal view returns (bool) {\\n        uint256 _balanceCap = balanceCap;\\n\\n        if (_balanceCap == type(uint256).max) return true;\\n\\n        return (ticket.balanceOf(_user) + _amount <= _balanceCap);\\n    }\\n\\n    /// @dev Checks if the Prize Pool can receive liquidity based on the current cap\\n    /// @param _amount The amount of liquidity to be added to the Prize Pool\\n    /// @return True if the Prize Pool can receive the specified amount of liquidity\\n    function _canAddLiquidity(uint256 _amount) internal view returns (bool) {\\n        uint256 _liquidityCap = liquidityCap;\\n        if (_liquidityCap == type(uint256).max) return true;\\n        return (_ticketTotalSupply() + _amount <= _liquidityCap);\\n    }\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param _controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function _isControlled(ITicket _controlledToken) internal view returns (bool) {\\n        return (ticket == _controlledToken);\\n    }\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @param _balanceCap New balance cap.\\n    function _setBalanceCap(uint256 _balanceCap) internal {\\n        balanceCap = _balanceCap;\\n        emit BalanceCapSet(_balanceCap);\\n    }\\n\\n    /// @notice Allows the owner to set a liquidity cap for the pool\\n    /// @param _liquidityCap New liquidity cap\\n    function _setLiquidityCap(uint256 _liquidityCap) internal {\\n        liquidityCap = _liquidityCap;\\n        emit LiquidityCapSet(_liquidityCap);\\n    }\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy\\n    function _setPrizeStrategy(address _prizeStrategy) internal {\\n        require(_prizeStrategy != address(0), \\\"PrizePool/prizeStrategy-not-zero\\\");\\n\\n        prizeStrategy = _prizeStrategy;\\n\\n        emit PrizeStrategySet(_prizeStrategy);\\n    }\\n\\n    /// @notice The current total of tickets.\\n    /// @return Ticket total supply.\\n    function _ticketTotalSupply() internal view returns (uint256) {\\n        return ticket.totalSupply();\\n    }\\n\\n    /// @dev Gets the current time as represented by the current block\\n    /// @return The timestamp of the current block\\n    function _currentTime() internal view virtual returns (uint256) {\\n        return block.timestamp;\\n    }\\n\\n    /* ============ Abstract Contract Implementatiton ============ */\\n\\n    /// @notice Determines whether the passed token can be transferred out as an external award.\\n    /// @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\\n    /// prize strategy should not be allowed to move those tokens.\\n    /// @param _externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function _canAwardExternal(address _externalToken) internal view virtual returns (bool);\\n\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token\\n    function _token() internal view virtual returns (IERC20);\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens\\n    function _balance() internal virtual returns (uint256);\\n\\n    /// @notice Supplies asset tokens to the yield source.\\n    /// @param _mintAmount The amount of asset tokens to be supplied\\n    function _supply(uint256 _mintAmount) internal virtual;\\n\\n    /// @notice Redeems asset tokens from the yield source.\\n    /// @param _redeemAmount The amount of yield-bearing tokens to be redeemed\\n    /// @return The actual amount of tokens that were redeemed.\\n    function _redeem(uint256 _redeemAmount) internal virtual returns (uint256);\\n}\\n\",\"keccak256\":\"0x7b5a51eb6c75a9a88a6f36c76cbaaab6db5396bacb2c82b3a2aeada33b3ca103\",\"license\":\"GPL-3.0\"},\"contracts/prize-pool/YieldSourcePrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/utils/Address.sol\\\";\\nimport \\\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\\\";\\n\\nimport \\\"./PrizePool.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 YieldSourcePrizePool\\n * @author PoolTogether Inc Team\\n * @notice The Yield Source Prize Pool uses a yield source contract to generate prizes.\\n *         Funds that are deposited into the prize pool are then deposited into a yield source. (i.e. Aave, Compound, etc...)\\n */\\ncontract YieldSourcePrizePool is PrizePool {\\n    using SafeERC20 for IERC20;\\n    using Address for address;\\n\\n    /// @notice Address of the yield source.\\n    IYieldSource public immutable yieldSource;\\n\\n    /// @dev Emitted when yield source prize pool is deployed.\\n    /// @param yieldSource Address of the yield source.\\n    event Deployed(address indexed yieldSource);\\n\\n    /// @notice Emitted when stray deposit token balance in this contract is swept\\n    /// @param amount The amount that was swept\\n    event Swept(uint256 amount);\\n\\n    /// @notice Deploy the Prize Pool and Yield Service with the required contract connections\\n    /// @param _owner Address of the Yield Source Prize Pool owner\\n    /// @param _yieldSource Address of the yield source\\n    constructor(address _owner, IYieldSource _yieldSource) PrizePool(_owner) {\\n        require(\\n            address(_yieldSource) != address(0),\\n            \\\"YieldSourcePrizePool/yield-source-not-zero-address\\\"\\n        );\\n\\n        yieldSource = _yieldSource;\\n\\n        // A hack to determine whether it's an actual yield source\\n        (bool succeeded, bytes memory data) = address(_yieldSource).staticcall(\\n            abi.encodePacked(_yieldSource.depositToken.selector)\\n        );\\n        address resultingAddress;\\n        if (data.length > 0) {\\n            resultingAddress = abi.decode(data, (address));\\n        }\\n        require(succeeded && resultingAddress != address(0), \\\"YieldSourcePrizePool/invalid-yield-source\\\");\\n\\n        emit Deployed(address(_yieldSource));\\n    }\\n\\n    /// @notice Sweeps any stray balance of deposit tokens into the yield source.\\n    /// @dev This becomes prize money\\n    function sweep() external nonReentrant onlyOwner {\\n        uint256 balance = _token().balanceOf(address(this));\\n        _supply(balance);\\n\\n        emit Swept(balance);\\n    }\\n\\n    /// @notice Determines whether the passed token can be transferred out as an external award.\\n    /// @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\\n    /// prize strategy should not be allowed to move those tokens.\\n    /// @param _externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function _canAwardExternal(address _externalToken) internal view override returns (bool) {\\n        IYieldSource _yieldSource = yieldSource;\\n        return (\\n            _externalToken != address(_yieldSource) &&\\n            _externalToken != _yieldSource.depositToken()\\n        );\\n    }\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens\\n    function _balance() internal override returns (uint256) {\\n        return yieldSource.balanceOfToken(address(this));\\n    }\\n\\n    /// @notice Returns the address of the ERC20 asset token used for deposits.\\n    /// @return Address of the ERC20 asset token.\\n    function _token() internal view override returns (IERC20) {\\n        return IERC20(yieldSource.depositToken());\\n    }\\n\\n    /// @notice Supplies asset tokens to the yield source.\\n    /// @param _mintAmount The amount of asset tokens to be supplied\\n    function _supply(uint256 _mintAmount) internal override {\\n        _token().safeIncreaseAllowance(address(yieldSource), _mintAmount);\\n        yieldSource.supplyTokenTo(_mintAmount, address(this));\\n    }\\n\\n    /// @notice Redeems asset tokens from the yield source.\\n    /// @param _redeemAmount The amount of yield-bearing tokens to be redeemed\\n    /// @return The actual amount of tokens that were redeemed.\\n    function _redeem(uint256 _redeemAmount) internal override returns (uint256) {\\n        return yieldSource.redeemToken(_redeemAmount);\\n    }\\n}\\n\",\"keccak256\":\"0xea1dbad0263a736729c5f212befe3cba0bf6f7d1625731779cdab56cd02e41df\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 10,
                "contract": "contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "_status",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 13863,
                "contract": "contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "ticket",
                "offset": 0,
                "slot": "3",
                "type": "t_contract(ITicket)12213"
              },
              {
                "astId": 13866,
                "contract": "contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "prizeStrategy",
                "offset": 0,
                "slot": "4",
                "type": "t_address"
              },
              {
                "astId": 13869,
                "contract": "contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "balanceCap",
                "offset": 0,
                "slot": "5",
                "type": "t_uint256"
              },
              {
                "astId": 13872,
                "contract": "contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "liquidityCap",
                "offset": 0,
                "slot": "6",
                "type": "t_uint256"
              },
              {
                "astId": 13875,
                "contract": "contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "_currentAwardBalance",
                "offset": 0,
                "slot": "7",
                "type": "t_uint256"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(ITicket)12213": {
                "encoding": "inplace",
                "label": "contract ITicket",
                "numberOfBytes": "20"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "events": {
              "Swept(uint256)": {
                "notice": "Emitted when stray deposit token balance in this contract is swept"
              }
            },
            "kind": "user",
            "methods": {
              "VERSION()": {
                "notice": "Semver Version"
              },
              "award(address,uint256)": {
                "notice": "Called by the prize strategy to award prizes."
              },
              "awardBalance()": {
                "notice": "Returns the balance that is available to award."
              },
              "awardExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to award external ERC20 prizes"
              },
              "awardExternalERC721(address,address,uint256[])": {
                "notice": "Called by the prize strategy to award external ERC721 prizes"
              },
              "captureAwardBalance()": {
                "notice": "Captures any available interest as award balance."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "compLikeDelegate(address,address)": {
                "notice": "Delegate the votes for a Compound COMP-like token held by the prize pool"
              },
              "constructor": {
                "notice": "Deploy the Prize Pool and Yield Service with the required contract connections"
              },
              "depositTo(address,uint256)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens"
              },
              "depositToAndDelegate(address,uint256,address)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller."
              },
              "getAccountedBalance()": {
                "notice": "Read internal Ticket accounted balance."
              },
              "getBalanceCap()": {
                "notice": "Read internal balanceCap variable"
              },
              "getLiquidityCap()": {
                "notice": "Read internal liquidityCap variable"
              },
              "getPrizeStrategy()": {
                "notice": "Read prizeStrategy variable"
              },
              "getTicket()": {
                "notice": "Read ticket variable"
              },
              "getToken()": {
                "notice": "Read token variable"
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setBalanceCap(uint256)": {
                "notice": "Allows the owner to set a balance cap per `token` for the pool."
              },
              "setLiquidityCap(uint256)": {
                "notice": "Allows the Governor to set a cap on the amount of liquidity that he pool can hold"
              },
              "setPrizeStrategy(address)": {
                "notice": "Sets the prize strategy of the prize pool.  Only callable by the owner."
              },
              "setTicket(address)": {
                "notice": "Set prize pool ticket."
              },
              "sweep()": {
                "notice": "Sweeps any stray balance of deposit tokens into the yield source."
              },
              "transferExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to transfer out external ERC20 tokens"
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              },
              "withdrawFrom(address,uint256)": {
                "notice": "Withdraw assets from the Prize Pool instantly."
              },
              "yieldSource()": {
                "notice": "Address of the yield source."
              }
            },
            "notice": "The Yield Source Prize Pool uses a yield source contract to generate prizes.         Funds that are deposited into the prize pool are then deposited into a yield source. (i.e. Aave, Compound, etc...)",
            "version": 1
          }
        }
      },
      "contracts/prize-strategy/PrizeSplit.sol": {
        "PrizeSplit": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "prizeAwarded",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "contract IControlledToken",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "PrizeSplitAwarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "target",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitRemoved",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "target",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint16",
                  "name": "percentage",
                  "type": "uint16"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "ONE_AS_FIXED_POINT_3",
              "outputs": [
                {
                  "internalType": "uint16",
                  "name": "",
                  "type": "uint16"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizePool",
              "outputs": [
                {
                  "internalType": "contract IPrizePool",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_prizeSplitIndex",
                  "type": "uint256"
                }
              ],
              "name": "getPrizeSplit",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeSplits",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "_prizeSplit",
                  "type": "tuple"
                },
                {
                  "internalType": "uint8",
                  "name": "_prizeSplitIndex",
                  "type": "uint8"
                }
              ],
              "name": "setPrizeSplit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "_newPrizeSplits",
                  "type": "tuple[]"
                }
              ],
              "name": "setPrizeSplits",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "getPrizePool()": {
                "returns": {
                  "_0": "IPrizePool"
                }
              },
              "getPrizeSplit(uint256)": {
                "details": "Read PrizeSplitConfig struct from prizeSplits array.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig"
                },
                "returns": {
                  "_0": "PrizeSplitConfig Single prize split config"
                }
              },
              "getPrizeSplits()": {
                "details": "Read all PrizeSplitConfig structs stored in prizeSplits.",
                "returns": {
                  "_0": "Array of PrizeSplitConfig structs"
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "details": "Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig to update",
                  "prizeStrategySplit": "PrizeSplitConfig config struct"
                }
              },
              "setPrizeSplits((address,uint16)[])": {
                "details": "Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.",
                "params": {
                  "newPrizeSplits": "Array of PrizeSplitConfig structs"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "PrizeSplit Interface",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "ONE_AS_FIXED_POINT_3()": "45a9f187",
              "claimOwnership()": "4e71e0c8",
              "getPrizePool()": "884bf67c",
              "getPrizeSplit(uint256)": "cf713d6e",
              "getPrizeSplits()": "cf1e3b59",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setPrizeSplit((address,uint16),uint8)": "056ea84f",
              "setPrizeSplits((address,uint16)[])": "063a2298",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"prizeAwarded\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"contract IControlledToken\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"PrizeSplitAwarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"target\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"ONE_AS_FIXED_POINT_3\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"\",\"type\":\"uint16\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizePool\",\"outputs\":[{\"internalType\":\"contract IPrizePool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_prizeSplitIndex\",\"type\":\"uint256\"}],\"name\":\"getPrizeSplit\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeSplits\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"_prizeSplit\",\"type\":\"tuple\"},{\"internalType\":\"uint8\",\"name\":\"_prizeSplitIndex\",\"type\":\"uint8\"}],\"name\":\"setPrizeSplit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"_newPrizeSplits\",\"type\":\"tuple[]\"}],\"name\":\"setPrizeSplits\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"getPrizePool()\":{\"returns\":{\"_0\":\"IPrizePool\"}},\"getPrizeSplit(uint256)\":{\"details\":\"Read PrizeSplitConfig struct from prizeSplits array.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig\"},\"returns\":{\"_0\":\"PrizeSplitConfig Single prize split config\"}},\"getPrizeSplits()\":{\"details\":\"Read all PrizeSplitConfig structs stored in prizeSplits.\",\"returns\":{\"_0\":\"Array of PrizeSplitConfig structs\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setPrizeSplit((address,uint16),uint8)\":{\"details\":\"Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig to update\",\"prizeStrategySplit\":\"PrizeSplitConfig config struct\"}},\"setPrizeSplits((address,uint16)[])\":{\"details\":\"Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\",\"params\":{\"newPrizeSplits\":\"Array of PrizeSplitConfig structs\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"PrizeSplit Interface\",\"version\":1},\"userdoc\":{\"events\":{\"PrizeSplitAwarded(address,uint256,address)\":{\"notice\":\"Emit when an individual prize split is awarded.\"},\"PrizeSplitRemoved(uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is removed.\"},\"PrizeSplitSet(address,uint16,uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is added or updated.\"}},\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"getPrizePool()\":{\"notice\":\"Get PrizePool address\"},\"getPrizeSplit(uint256)\":{\"notice\":\"Read prize split config from active PrizeSplits.\"},\"getPrizeSplits()\":{\"notice\":\"Read all prize splits configs.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setPrizeSplit((address,uint16),uint8)\":{\"notice\":\"Updates a previously set prize split config.\"},\"setPrizeSplits((address,uint16)[])\":{\"notice\":\"Set and remove prize split(s) configs. Only callable by owner.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/prize-strategy/PrizeSplit.sol\":\"PrizeSplit\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeSplit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IControlledToken.sol\\\";\\nimport \\\"./IPrizePool.sol\\\";\\n\\n/**\\n * @title Abstract prize split contract for adding unique award distribution to static addresses.\\n * @author PoolTogether Inc Team\\n */\\ninterface IPrizeSplit {\\n    /**\\n     * @notice Emit when an individual prize split is awarded.\\n     * @param user          User address being awarded\\n     * @param prizeAwarded  Awarded prize amount\\n     * @param token         Token address\\n     */\\n    event PrizeSplitAwarded(\\n        address indexed user,\\n        uint256 prizeAwarded,\\n        IControlledToken indexed token\\n    );\\n\\n    /**\\n     * @notice The prize split configuration struct.\\n     * @dev    The prize split configuration struct used to award prize splits during distribution.\\n     * @param target     Address of recipient receiving the prize split distribution\\n     * @param percentage Percentage of prize split using a 0-1000 range for single decimal precision i.e. 125 = 12.5%\\n     */\\n    struct PrizeSplitConfig {\\n        address target;\\n        uint16 percentage;\\n    }\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is added or updated.\\n     * @dev    Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.\\n     * @param target     Address of prize split recipient\\n     * @param percentage Percentage of prize split. Must be between 0 and 1000 for single decimal precision\\n     * @param index      Index of prize split in the prizeSplts array\\n     */\\n    event PrizeSplitSet(address indexed target, uint16 percentage, uint256 index);\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is removed.\\n     * @dev    Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.\\n     * @param target Index of a previously active prize split config\\n     */\\n    event PrizeSplitRemoved(uint256 indexed target);\\n\\n    /**\\n     * @notice Read prize split config from active PrizeSplits.\\n     * @dev    Read PrizeSplitConfig struct from prizeSplits array.\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig\\n     * @return PrizeSplitConfig Single prize split config\\n     */\\n    function getPrizeSplit(uint256 prizeSplitIndex) external view returns (PrizeSplitConfig memory);\\n\\n    /**\\n     * @notice Read all prize splits configs.\\n     * @dev    Read all PrizeSplitConfig structs stored in prizeSplits.\\n     * @return Array of PrizeSplitConfig structs\\n     */\\n    function getPrizeSplits() external view returns (PrizeSplitConfig[] memory);\\n\\n    /**\\n     * @notice Get PrizePool address\\n     * @return IPrizePool\\n     */\\n    function getPrizePool() external view returns (IPrizePool);\\n\\n    /**\\n     * @notice Set and remove prize split(s) configs. Only callable by owner.\\n     * @dev Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\\n     * @param newPrizeSplits Array of PrizeSplitConfig structs\\n     */\\n    function setPrizeSplits(PrizeSplitConfig[] calldata newPrizeSplits) external;\\n\\n    /**\\n     * @notice Updates a previously set prize split config.\\n     * @dev Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\\n     * @param prizeStrategySplit PrizeSplitConfig config struct\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig to update\\n     */\\n    function setPrizeSplit(PrizeSplitConfig memory prizeStrategySplit, uint8 prizeSplitIndex)\\n        external;\\n}\\n\",\"keccak256\":\"0xf9946a5bbe45641a0f86674135eb56310b3a97f09e5665fd1c11bc213d42d2ac\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"},\"contracts/prize-strategy/PrizeSplit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"../interfaces/IPrizeSplit.sol\\\";\\n\\n/**\\n * @title PrizeSplit Interface\\n * @author PoolTogether Inc Team\\n */\\nabstract contract PrizeSplit is IPrizeSplit, Ownable {\\n    /* ============ Global Variables ============ */\\n    PrizeSplitConfig[] internal _prizeSplits;\\n\\n    uint16 public constant ONE_AS_FIXED_POINT_3 = 1000;\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeSplit\\n    function getPrizeSplit(uint256 _prizeSplitIndex)\\n        external\\n        view\\n        override\\n        returns (PrizeSplitConfig memory)\\n    {\\n        return _prizeSplits[_prizeSplitIndex];\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function getPrizeSplits() external view override returns (PrizeSplitConfig[] memory) {\\n        return _prizeSplits;\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function setPrizeSplits(PrizeSplitConfig[] calldata _newPrizeSplits)\\n        external\\n        override\\n        onlyOwner\\n    {\\n        uint256 newPrizeSplitsLength = _newPrizeSplits.length;\\n        require(newPrizeSplitsLength <= type(uint8).max, \\\"PrizeSplit/invalid-prizesplits-length\\\");\\n\\n        // Add and/or update prize split configs using _newPrizeSplits PrizeSplitConfig structs array.\\n        for (uint256 index = 0; index < newPrizeSplitsLength; index++) {\\n            PrizeSplitConfig memory split = _newPrizeSplits[index];\\n\\n            // REVERT when setting the canonical burn address.\\n            require(split.target != address(0), \\\"PrizeSplit/invalid-prizesplit-target\\\");\\n\\n            // IF the CURRENT prizeSplits length is below the NEW prizeSplits\\n            // PUSH the PrizeSplit struct to end of the list.\\n            if (_prizeSplits.length <= index) {\\n                _prizeSplits.push(split);\\n            } else {\\n                // ELSE update an existing PrizeSplit struct with new parameters\\n                PrizeSplitConfig memory currentSplit = _prizeSplits[index];\\n\\n                // IF new PrizeSplit DOES NOT match the current PrizeSplit\\n                // WRITE to STORAGE with the new PrizeSplit\\n                if (\\n                    split.target != currentSplit.target ||\\n                    split.percentage != currentSplit.percentage\\n                ) {\\n                    _prizeSplits[index] = split;\\n                } else {\\n                    continue;\\n                }\\n            }\\n\\n            // Emit the added/updated prize split config.\\n            emit PrizeSplitSet(split.target, split.percentage, index);\\n        }\\n\\n        // Remove old prize splits configs. Match storage _prizesSplits.length with the passed newPrizeSplits.length\\n        while (_prizeSplits.length > newPrizeSplitsLength) {\\n            uint256 _index;\\n            unchecked {\\n                _index = _prizeSplits.length - 1;\\n            }\\n            _prizeSplits.pop();\\n            emit PrizeSplitRemoved(_index);\\n        }\\n\\n        // Total prize split do not exceed 100%\\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \\\"PrizeSplit/invalid-prizesplit-percentage-total\\\");\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function setPrizeSplit(PrizeSplitConfig memory _prizeSplit, uint8 _prizeSplitIndex)\\n        external\\n        override\\n        onlyOwner\\n    {\\n        require(_prizeSplitIndex < _prizeSplits.length, \\\"PrizeSplit/nonexistent-prizesplit\\\");\\n        require(_prizeSplit.target != address(0), \\\"PrizeSplit/invalid-prizesplit-target\\\");\\n\\n        // Update the prize split config\\n        _prizeSplits[_prizeSplitIndex] = _prizeSplit;\\n\\n        // Total prize split do not exceed 100%\\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \\\"PrizeSplit/invalid-prizesplit-percentage-total\\\");\\n\\n        // Emit updated prize split config\\n        emit PrizeSplitSet(\\n            _prizeSplit.target,\\n            _prizeSplit.percentage,\\n            _prizeSplitIndex\\n        );\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates total prize split percentage amount.\\n     * @dev Calculates total PrizeSplitConfig percentage(s) amount. Used to check the total does not exceed 100% of award distribution.\\n     * @return Total prize split(s) percentage amount\\n     */\\n    function _totalPrizeSplitPercentageAmount() internal view returns (uint256) {\\n        uint256 _tempTotalPercentage;\\n        uint256 prizeSplitsLength = _prizeSplits.length;\\n\\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\\n            _tempTotalPercentage += _prizeSplits[index].percentage;\\n        }\\n\\n        return _tempTotalPercentage;\\n    }\\n\\n    /**\\n     * @notice Distributes prize split(s).\\n     * @dev Distributes prize split(s) by awarding ticket or sponsorship tokens.\\n     * @param _prize Starting prize award amount\\n     * @return The remainder after splits are taken\\n     */\\n    function _distributePrizeSplits(uint256 _prize) internal returns (uint256) {\\n        uint256 _prizeTemp = _prize;\\n        uint256 prizeSplitsLength = _prizeSplits.length;\\n\\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\\n            PrizeSplitConfig memory split = _prizeSplits[index];\\n            uint256 _splitAmount = (_prize * split.percentage) / 1000;\\n\\n            // Award the prize split distribution amount.\\n            _awardPrizeSplitAmount(split.target, _splitAmount);\\n\\n            // Update the remaining prize amount after distributing the prize split percentage.\\n            _prizeTemp -= _splitAmount;\\n        }\\n\\n        return _prizeTemp;\\n    }\\n\\n    /**\\n     * @notice Mints ticket or sponsorship tokens to prize split recipient.\\n     * @dev Mints ticket or sponsorship tokens to prize split recipient via the linked PrizePool contract.\\n     * @param _target Recipient of minted tokens\\n     * @param _amount Amount of minted tokens\\n     */\\n    function _awardPrizeSplitAmount(address _target, uint256 _amount) internal virtual;\\n}\\n\",\"keccak256\":\"0x1d11be0738fa1cbcfd6ad33a417c30116cd202a311828e3cfe6a176eaee53dbe\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/prize-strategy/PrizeSplit.sol:PrizeSplit",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/prize-strategy/PrizeSplit.sol:PrizeSplit",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 15252,
                "contract": "contracts/prize-strategy/PrizeSplit.sol:PrizeSplit",
                "label": "_prizeSplits",
                "offset": 0,
                "slot": "2",
                "type": "t_array(t_struct(PrizeSplitConfig)11903_storage)dyn_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(PrizeSplitConfig)11903_storage)dyn_storage": {
                "base": "t_struct(PrizeSplitConfig)11903_storage",
                "encoding": "dynamic_array",
                "label": "struct IPrizeSplit.PrizeSplitConfig[]",
                "numberOfBytes": "32"
              },
              "t_struct(PrizeSplitConfig)11903_storage": {
                "encoding": "inplace",
                "label": "struct IPrizeSplit.PrizeSplitConfig",
                "members": [
                  {
                    "astId": 11900,
                    "contract": "contracts/prize-strategy/PrizeSplit.sol:PrizeSplit",
                    "label": "target",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_address"
                  },
                  {
                    "astId": 11902,
                    "contract": "contracts/prize-strategy/PrizeSplit.sol:PrizeSplit",
                    "label": "percentage",
                    "offset": 20,
                    "slot": "0",
                    "type": "t_uint16"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint16": {
                "encoding": "inplace",
                "label": "uint16",
                "numberOfBytes": "2"
              }
            }
          },
          "userdoc": {
            "events": {
              "PrizeSplitAwarded(address,uint256,address)": {
                "notice": "Emit when an individual prize split is awarded."
              },
              "PrizeSplitRemoved(uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is removed."
              },
              "PrizeSplitSet(address,uint16,uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is added or updated."
              }
            },
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "getPrizePool()": {
                "notice": "Get PrizePool address"
              },
              "getPrizeSplit(uint256)": {
                "notice": "Read prize split config from active PrizeSplits."
              },
              "getPrizeSplits()": {
                "notice": "Read all prize splits configs."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "notice": "Updates a previously set prize split config."
              },
              "setPrizeSplits((address,uint16)[])": {
                "notice": "Set and remove prize split(s) configs. Only callable by owner."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/prize-strategy/PrizeSplitStrategy.sol": {
        "PrizeSplitStrategy": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IPrizePool",
                  "name": "_prizePool",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "contract IPrizePool",
                  "name": "prizePool",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "totalPrizeCaptured",
                  "type": "uint256"
                }
              ],
              "name": "Distributed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "prizeAwarded",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "contract IControlledToken",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "PrizeSplitAwarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "target",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitRemoved",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "target",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint16",
                  "name": "percentage",
                  "type": "uint16"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "ONE_AS_FIXED_POINT_3",
              "outputs": [
                {
                  "internalType": "uint16",
                  "name": "",
                  "type": "uint16"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "distribute",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizePool",
              "outputs": [
                {
                  "internalType": "contract IPrizePool",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_prizeSplitIndex",
                  "type": "uint256"
                }
              ],
              "name": "getPrizeSplit",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeSplits",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "_prizeSplit",
                  "type": "tuple"
                },
                {
                  "internalType": "uint8",
                  "name": "_prizeSplitIndex",
                  "type": "uint8"
                }
              ],
              "name": "setPrizeSplit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "_newPrizeSplits",
                  "type": "tuple[]"
                }
              ],
              "name": "setPrizeSplits",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "Deployed(address,address)": {
                "params": {
                  "owner": "Contract owner",
                  "prizePool": "Linked PrizePool contract"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_owner": "Owner address",
                  "_prizePool": "PrizePool address"
                }
              },
              "distribute()": {
                "details": "Permissionless function to initialize distribution of interst",
                "returns": {
                  "_0": "Prize captured from PrizePool"
                }
              },
              "getPrizePool()": {
                "returns": {
                  "_0": "IPrizePool"
                }
              },
              "getPrizeSplit(uint256)": {
                "details": "Read PrizeSplitConfig struct from prizeSplits array.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig"
                },
                "returns": {
                  "_0": "PrizeSplitConfig Single prize split config"
                }
              },
              "getPrizeSplits()": {
                "details": "Read all PrizeSplitConfig structs stored in prizeSplits.",
                "returns": {
                  "_0": "Array of PrizeSplitConfig structs"
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "details": "Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig to update",
                  "prizeStrategySplit": "PrizeSplitConfig config struct"
                }
              },
              "setPrizeSplits((address,uint16)[])": {
                "details": "Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.",
                "params": {
                  "newPrizeSplits": "Array of PrizeSplitConfig structs"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "PoolTogether V4 PrizeSplitStrategy",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_15646": {
                  "entryPoint": null,
                  "id": 15646,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_3961": {
                  "entryPoint": null,
                  "id": 3961,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 269,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IPrizePool_$11883_fromMemory": {
                  "entryPoint": 349,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_contract$_IPrizePool_$11883__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f9fc44fe3aa7ee21ea2cdd22b631ab2cd09324a8cfe0653e1e16eb1ea032e2b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 412,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1200:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "132:287:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "178:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "187:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "190:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "180:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "180:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "180:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "153:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "162:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "149:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "149:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "174:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "145:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "145:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "142:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "203:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "222:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "216:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "216:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "207:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "266:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "241:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "241:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "241:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "281:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "291:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "281:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "305:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "330:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "341:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "326:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "326:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "320:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "320:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "309:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "379:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "354:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "354:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "354:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "396:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "406:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "396:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IPrizePool_$11883_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "90:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "101:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "113:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "121:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:405:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "545:102:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "555:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "567:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "578:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "563:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "563:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "555:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "597:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "612:6:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "628:3:84",
                                                "type": "",
                                                "value": "160"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "633:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "624:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "624:11:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "637:1:84",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "620:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "620:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "608:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "608:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "590:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "590:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "590:51:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizePool_$11883__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "514:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "525:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "536:4:84",
                            "type": ""
                          }
                        ],
                        "src": "424:223:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "826:236:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "843:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "854:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "836:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "836:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "836:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "877:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "888:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "873:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "873:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "893:2:84",
                                    "type": "",
                                    "value": "46"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "866:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "866:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "866:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "916:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "927:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "912:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "912:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c697453747261746567792f7072697a652d706f6f6c2d6e6f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "932:34:84",
                                    "type": "",
                                    "value": "PrizeSplitStrategy/prize-pool-no"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "905:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "905:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "905:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "987:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "998:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "983:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "983:18:84"
                                  },
                                  {
                                    "hexValue": "742d7a65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1003:16:84",
                                    "type": "",
                                    "value": "t-zero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "976:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "976:44:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "976:44:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1029:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1041:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1052:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1037:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1037:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1029:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f9fc44fe3aa7ee21ea2cdd22b631ab2cd09324a8cfe0653e1e16eb1ea032e2b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "803:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "817:4:84",
                            "type": ""
                          }
                        ],
                        "src": "652:410:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1112:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1176:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1185:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1188:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1178:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1178:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1178:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1135:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1146:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1161:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1166:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1157:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1157:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1170:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1153:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1153:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1142:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1142:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1132:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1132:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1125:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1125:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1122:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1101:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1067:131:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IPrizePool_$11883_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_contract$_IPrizePool_$11883__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_stringliteral_f9fc44fe3aa7ee21ea2cdd22b631ab2cd09324a8cfe0653e1e16eb1ea032e2b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 46)\n        mstore(add(headStart, 64), \"PrizeSplitStrategy/prize-pool-no\")\n        mstore(add(headStart, 96), \"t-zero-address\")\n        tail := add(headStart, 128)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b506040516200154e3803806200154e83398101604081905262000034916200015d565b8162000040816200010d565b506001600160a01b038116620000b35760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c697453747261746567792f7072697a652d706f6f6c2d6e6f60448201526d742d7a65726f2d6164647265737360901b606482015260840160405180910390fd5b606081901b6001600160601b0319166080526040516001600160a01b0380831682528316907f09e48df7857bd0c1e0d31bb8a85d42cf1874817895f171c917f6ee2cea73ec209060200160405180910390a25050620001b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156200017157600080fd5b82516200017e816200019c565b602084015190925062000191816200019c565b809150509250929050565b6001600160a01b0381168114620001b257600080fd5b50565b60805160601c611365620001e96000396000818161013401528181610b0d01528181610eab0152610f7c01526113656000f3fe608060405234801561001057600080fd5b50600436106100d45760003560e01c80638da5cb5b11610081578063e30c39781161005b578063e30c3978146101cd578063e4fc6b6d146101de578063f2fde38b146101f457600080fd5b80638da5cb5b1461016c578063cf1e3b591461017d578063cf713d6e1461019257600080fd5b80634e71e0c8116100b25780634e71e0c814610122578063715018a61461012a578063884bf67c1461013257600080fd5b8063056ea84f146100d9578063063a2298146100ee57806345a9f18714610101575b600080fd5b6100ec6100e7366004611176565b610207565b005b6100ec6100fc3660046110c8565b6104b6565b61010a6103e881565b60405161ffff90911681526020015b60405180910390f35b6100ec61092b565b6100ec6109b9565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610119565b6000546001600160a01b0316610154565b610185610a2e565b60405161011991906111e6565b6101a56101a03660046111b4565b610aa5565b6040805182516001600160a01b0316815260209283015161ffff169281019290925201610119565b6001546001600160a01b0316610154565b6101e6610b08565b604051908152602001610119565b6100ec6102023660046110a4565b610bfc565b3361021a6000546001600160a01b031690565b6001600160a01b0316146102755760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b60025460ff8216106102ef5760405162461bcd60e51b815260206004820152602160248201527f5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c6960448201527f7400000000000000000000000000000000000000000000000000000000000000606482015260840161026c565b81516001600160a01b031661036b5760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161026c565b8160028260ff168154811061038257610382611301565b60009182526020808320845192018054949091015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199094166001600160a01b0390921691909117929092179091556103da610d38565b90506103e88111156104545760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161026c565b82600001516001600160a01b03167f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a348460200151846040516104a992919061ffff92909216825260ff16602082015260400190565b60405180910390a2505050565b336104c96000546001600160a01b031690565b6001600160a01b03161461051f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b8060ff8111156105975760405162461bcd60e51b815260206004820152602560248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c60448201527f656e677468000000000000000000000000000000000000000000000000000000606482015260840161026c565b60005b8181101561081b5760008484838181106105b6576105b6611301565b9050604002018036038101906105cc919061115a565b80519091506001600160a01b031661064b5760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161026c565b60025482106106d0576002805460018101825560009190915281517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9091018054602084015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199091166001600160a01b03909316929092179190911790556107b6565b6000600283815481106106e5576106e5611301565b6000918252602091829020604080518082019091529101546001600160a01b03808216808452600160a01b90920461ffff1693830193909352845191935091161415806107425750806020015161ffff16826020015161ffff1614155b156107ad57816002848154811061075b5761075b611301565b6000918252602091829020835191018054939092015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199093166001600160a01b03909116179190911790556107b4565b5050610809565b505b80516020808301516040805161ffff90921682529181018590526001600160a01b03909216917f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a34910160405180910390a2505b80610813816112ba565b91505061059a565b505b6002548110156108a15760028054600019810191908061083f5761083f6112eb565b6000828152602081208201600019908101805475ffffffffffffffffffffffffffffffffffffffffffff1916905590910190915560405182917f99fa473fdf53414bcd014cf6e7509fc58c68f7b86174767faa6ad5100cd5bae591a25061081d565b60006108ab610d38565b90506103e88111156109255760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161026c565b50505050565b6001546001600160a01b031633146109855760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161026c565b60015461099a906001600160a01b0316610d9a565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336109cc6000546001600160a01b031690565b6001600160a01b031614610a225760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b610a2c6000610d9a565b565b60606002805480602002602001604051908101604052809291908181526020016000905b82821015610a9c57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff1681830152825260019092019101610a52565b50505050905090565b604080518082019091526000808252602082015260028281548110610acc57610acc611301565b6000918252602091829020604080518082019091529101546001600160a01b0381168252600160a01b900461ffff169181019190915292915050565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e6d8a94b6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610b6657600080fd5b505af1158015610b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9e91906111cd565b905080610bad57600091505090565b6000610bb882610df7565b90507fddc9c30275a04c48091f24199f9c405765de34d979d6847f5b9798a57232d2e5610be582846112a3565b60405190815260200160405180910390a150919050565b33610c0f6000546001600160a01b031690565b6001600160a01b031614610c655760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b6001600160a01b038116610ce15760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161026c565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6002546000908190815b81811015610d925760028181548110610d5d57610d5d611301565b600091825260209091200154610d7e90600160a01b900461ffff168461124a565b925080610d8a816112ba565b915050610d42565b509092915050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000908290825b81811015610e9e57600060028281548110610e1e57610e1e611301565b60009182526020808320604080518082019091529201546001600160a01b0381168352600160a01b900461ffff169082018190529092506103e890610e639089611284565b610e6d9190611262565b9050610e7d826000015182610ea7565b610e8781866112a3565b945050508080610e96906112ba565b915050610e01565b50909392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b158015610f0257600080fd5b505afa158015610f16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3a919061113d565b6040517f5d8a776e0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152602482018590529192507f000000000000000000000000000000000000000000000000000000000000000090911690635d8a776e90604401600060405180830381600087803b158015610fc257600080fd5b505af1158015610fd6573d6000803e3d6000fd5b50505050806001600160a01b0316836001600160a01b03167f40b9722744d0ba62d8b847077d65a712335b6769aa37fff7ad7852ec299222a78460405161101f91815260200190565b60405180910390a3505050565b60006040828403121561103e57600080fd5b6040516040810181811067ffffffffffffffff8211171561106f57634e487b7160e01b600052604160045260246000fd5b604052905080823561108081611317565b8152602083013561ffff8116811461109757600080fd5b6020919091015292915050565b6000602082840312156110b657600080fd5b81356110c181611317565b9392505050565b600080602083850312156110db57600080fd5b823567ffffffffffffffff808211156110f357600080fd5b818501915085601f83011261110757600080fd5b81358181111561111657600080fd5b8660208260061b850101111561112b57600080fd5b60209290920196919550909350505050565b60006020828403121561114f57600080fd5b81516110c181611317565b60006040828403121561116c57600080fd5b6110c1838361102c565b6000806060838503121561118957600080fd5b611193848461102c565b9150604083013560ff811681146111a957600080fd5b809150509250929050565b6000602082840312156111c657600080fd5b5035919050565b6000602082840312156111df57600080fd5b5051919050565b602080825282518282018190526000919060409081850190868401855b8281101561123d5761122d84835180516001600160a01b0316825260209081015161ffff16910152565b9284019290850190600101611203565b5091979650505050505050565b6000821982111561125d5761125d6112d5565b500190565b60008261127f57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561129e5761129e6112d5565b500290565b6000828210156112b5576112b56112d5565b500390565b60006000198214156112ce576112ce6112d5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461132c57600080fd5b5056fea26469706673582212206df9c197165054cfd15465cda9e08d6c27a3028be783ae24a99c1a3aa1f0b5bc64736f6c63430008060033",
              "opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x154E CODESIZE SUB DUP1 PUSH3 0x154E DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x15D JUMP JUMPDEST DUP2 PUSH3 0x40 DUP2 PUSH3 0x10D JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0xB3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C697453747261746567792F7072697A652D706F6F6C2D6E6F PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x742D7A65726F2D61646472657373 PUSH1 0x90 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x60 DUP2 SWAP1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND PUSH1 0x80 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND DUP3 MSTORE DUP4 AND SWAP1 PUSH32 0x9E48DF7857BD0C1E0D31BB8A85D42CF1874817895F171C917F6EE2CEA73EC20 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH3 0x1B5 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x171 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH3 0x17E DUP2 PUSH3 0x19C JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x191 DUP2 PUSH3 0x19C JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x1B2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH2 0x1365 PUSH3 0x1E9 PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x134 ADD MSTORE DUP2 DUP2 PUSH2 0xB0D ADD MSTORE DUP2 DUP2 PUSH2 0xEAB ADD MSTORE PUSH2 0xF7C ADD MSTORE PUSH2 0x1365 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 0xD4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xE30C3978 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1CD JUMPI DUP1 PUSH4 0xE4FC6B6D EQ PUSH2 0x1DE JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x16C JUMPI DUP1 PUSH4 0xCF1E3B59 EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0xCF713D6E EQ PUSH2 0x192 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4E71E0C8 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x12A JUMPI DUP1 PUSH4 0x884BF67C EQ PUSH2 0x132 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x56EA84F EQ PUSH2 0xD9 JUMPI DUP1 PUSH4 0x63A2298 EQ PUSH2 0xEE JUMPI DUP1 PUSH4 0x45A9F187 EQ PUSH2 0x101 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEC PUSH2 0xE7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1176 JUMP JUMPDEST PUSH2 0x207 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xEC PUSH2 0xFC CALLDATASIZE PUSH1 0x4 PUSH2 0x10C8 JUMP JUMPDEST PUSH2 0x4B6 JUMP JUMPDEST PUSH2 0x10A PUSH2 0x3E8 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xEC PUSH2 0x92B JUMP JUMPDEST PUSH2 0xEC PUSH2 0x9B9 JUMP JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x185 PUSH2 0xA2E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x11E6 JUMP JUMPDEST PUSH2 0x1A5 PUSH2 0x1A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x11B4 JUMP JUMPDEST PUSH2 0xAA5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH2 0xFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x119 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x1E6 PUSH2 0xB08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0xEC PUSH2 0x202 CALLDATASIZE PUSH1 0x4 PUSH2 0x10A4 JUMP JUMPDEST PUSH2 0xBFC JUMP JUMPDEST CALLER PUSH2 0x21A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x275 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH1 0xFF DUP3 AND LT PUSH2 0x2EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F6E6F6E6578697374656E742D7072697A6573706C69 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7400000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x36B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST DUP2 PUSH1 0x2 DUP3 PUSH1 0xFF AND DUP2 SLOAD DUP2 LT PUSH2 0x382 JUMPI PUSH2 0x382 PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP5 MLOAD SWAP3 ADD DUP1 SLOAD SWAP5 SWAP1 SWAP2 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE PUSH2 0x3DA PUSH2 0xD38 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x454 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST DUP3 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 DUP5 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x40 MLOAD PUSH2 0x4A9 SWAP3 SWAP2 SWAP1 PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH1 0xFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST CALLER PUSH2 0x4C9 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x51F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST DUP1 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x597 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C6974732D6C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x656E677468000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x81B JUMPI PUSH1 0x0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x5B6 JUMPI PUSH2 0x5B6 PUSH2 0x1301 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MUL ADD DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5CC SWAP2 SWAP1 PUSH2 0x115A JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x64B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x2 SLOAD DUP3 LT PUSH2 0x6D0 JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH32 0x405787FA12A823E0F2B7631CC41B3BA8828B3321CA811111FA75CD3AA3BB5ACE SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x7B6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x6E5 JUMPI PUSH2 0x6E5 PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP3 DIV PUSH2 0xFFFF AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE DUP5 MLOAD SWAP2 SWAP4 POP SWAP2 AND EQ ISZERO DUP1 PUSH2 0x742 JUMPI POP DUP1 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND DUP3 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x7AD JUMPI DUP2 PUSH1 0x2 DUP5 DUP2 SLOAD DUP2 LT PUSH2 0x75B JUMPI PUSH2 0x75B PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD SWAP2 ADD DUP1 SLOAD SWAP4 SWAP1 SWAP3 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x7B4 JUMP JUMPDEST POP POP PUSH2 0x809 JUMP JUMPDEST POP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x40 DUP1 MLOAD PUSH2 0xFFFF SWAP1 SWAP3 AND DUP3 MSTORE SWAP2 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMPDEST DUP1 PUSH2 0x813 DUP2 PUSH2 0x12BA JUMP JUMPDEST SWAP2 POP POP PUSH2 0x59A JUMP JUMPDEST POP JUMPDEST PUSH1 0x2 SLOAD DUP2 LT ISZERO PUSH2 0x8A1 JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP1 PUSH2 0x83F JUMPI PUSH2 0x83F PUSH2 0x12EB JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 DUP3 ADD PUSH1 0x0 NOT SWAP1 DUP2 ADD DUP1 SLOAD PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE SWAP1 SWAP2 ADD SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD DUP3 SWAP2 PUSH32 0x99FA473FDF53414BCD014CF6E7509FC58C68F7B86174767FAA6AD5100CD5BAE5 SWAP2 LOG2 POP PUSH2 0x81D JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8AB PUSH2 0xD38 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x925 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x985 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x99A SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xD9A JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x9CC PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA22 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST PUSH2 0xA2C PUSH1 0x0 PUSH2 0xD9A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0xA9C JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP1 DUP5 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP2 DUP4 ADD MSTORE DUP3 MSTORE PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0xA52 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xACC JUMPI PUSH2 0xACC PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE6D8A94B PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB66 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xB7A 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 0xB9E SWAP2 SWAP1 PUSH2 0x11CD JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0xBAD JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBB8 DUP3 PUSH2 0xDF7 JUMP JUMPDEST SWAP1 POP PUSH32 0xDDC9C30275A04C48091F24199F9C405765DE34D979D6847F5B9798A57232D2E5 PUSH2 0xBE5 DUP3 DUP5 PUSH2 0x12A3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0xC0F PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC65 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xCE1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xD92 JUMPI PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xD5D JUMPI PUSH2 0xD5D PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH2 0xD7E SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP5 PUSH2 0x124A JUMP JUMPDEST SWAP3 POP DUP1 PUSH2 0xD8A DUP2 PUSH2 0x12BA JUMP JUMPDEST SWAP2 POP POP PUSH2 0xD42 JUMP JUMPDEST POP SWAP1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 DUP3 SWAP1 DUP3 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE9E JUMPI PUSH1 0x0 PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xE1E JUMPI PUSH2 0xE1E PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP3 POP PUSH2 0x3E8 SWAP1 PUSH2 0xE63 SWAP1 DUP10 PUSH2 0x1284 JUMP JUMPDEST PUSH2 0xE6D SWAP2 SWAP1 PUSH2 0x1262 JUMP JUMPDEST SWAP1 POP PUSH2 0xE7D DUP3 PUSH1 0x0 ADD MLOAD DUP3 PUSH2 0xEA7 JUMP JUMPDEST PUSH2 0xE87 DUP2 DUP7 PUSH2 0x12A3 JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0xE96 SWAP1 PUSH2 0x12BA JUMP JUMPDEST SWAP2 POP POP PUSH2 0xE01 JUMP JUMPDEST POP SWAP1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC002C4D6 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xF02 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF16 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 0xF3A SWAP2 SWAP1 PUSH2 0x113D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x5D8A776E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP3 POP PUSH32 0x0 SWAP1 SWAP2 AND SWAP1 PUSH4 0x5D8A776E SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xFC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xFD6 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x40B9722744D0BA62D8B847077D65A712335B6769AA37FFF7AD7852EC299222A7 DUP5 PUSH1 0x40 MLOAD PUSH2 0x101F SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x103E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x40 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x106F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 POP DUP1 DUP3 CALLDATALOAD PUSH2 0x1080 DUP2 PUSH2 0x1317 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x1097 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x10C1 DUP2 PUSH2 0x1317 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x10DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x10F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1107 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1116 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x6 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x112B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x114F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x10C1 DUP2 PUSH2 0x1317 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x116C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10C1 DUP4 DUP4 PUSH2 0x102C JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x60 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1189 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1193 DUP5 DUP5 PUSH2 0x102C JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP4 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x11A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x123D JUMPI PUSH2 0x122D DUP5 DUP4 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH2 0xFFFF AND SWAP2 ADD MSTORE JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1203 JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x125D JUMPI PUSH2 0x125D PUSH2 0x12D5 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x127F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x129E JUMPI PUSH2 0x129E PUSH2 0x12D5 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x12B5 JUMPI PUSH2 0x12B5 PUSH2 0x12D5 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x12CE JUMPI PUSH2 0x12CE PUSH2 0x12D5 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x132C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH14 0xF9C197165054CFD15465CDA9E08D PUSH13 0x27A3028BE783AE24A99C1A3AA1 CREATE 0xB5 0xBC PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "877:1936:63:-:0;;;1436:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1495:6;1648:24:22;1495:6:63;1648:9:22;:24::i;:::-;-1:-1:-1;;;;;;1534:33:63;::::1;1513:126;;;::::0;-1:-1:-1;;;1513:126:63;;854:2:84;1513:126:63::1;::::0;::::1;836:21:84::0;893:2;873:18;;;866:30;932:34;912:18;;;905:62;-1:-1:-1;;;983:18:84;;;976:44;1037:19;;1513:126:63::1;;;;;;;;1649:22;::::0;;;-1:-1:-1;;;;;;1649:22:63;::::1;::::0;1686:28:::1;::::0;-1:-1:-1;;;;;608:32:84;;;590:51;;1686:28:63;::::1;::::0;::::1;::::0;578:2:84;563:18;1686:28:63::1;;;;;;;1436:285:::0;;877:1936;;3470:174:22;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;;;;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:405:84:-;113:6;121;174:2;162:9;153:7;149:23;145:32;142:2;;;190:1;187;180:12;142:2;222:9;216:16;241:31;266:5;241:31;:::i;:::-;341:2;326:18;;320:25;291:5;;-1:-1:-1;354:33:84;320:25;354:33;:::i;:::-;406:7;396:17;;;132:287;;;;;:::o;1067:131::-;-1:-1:-1;;;;;1142:31:84;;1132:42;;1122:2;;1188:1;1185;1178:12;1122:2;1112:86;:::o;:::-;877:1936:63;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@ONE_AS_FIXED_POINT_3_15255": {
                  "entryPoint": null,
                  "id": 15255,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_awardPrizeSplitAmount_15721": {
                  "entryPoint": 3751,
                  "id": 15721,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_distributePrizeSplits_15580": {
                  "entryPoint": 3575,
                  "id": 15580,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_4058": {
                  "entryPoint": 3482,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_totalPrizeSplitPercentageAmount_15521": {
                  "entryPoint": 3384,
                  "id": 15521,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@claimOwnership_4038": {
                  "entryPoint": 2347,
                  "id": 4038,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@distribute_15680": {
                  "entryPoint": 2824,
                  "id": 15680,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizePool_15691": {
                  "entryPoint": null,
                  "id": 15691,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizeSplit_15270": {
                  "entryPoint": 2725,
                  "id": 15270,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getPrizeSplits_15282": {
                  "entryPoint": 2606,
                  "id": 15282,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_3970": {
                  "entryPoint": null,
                  "id": 3970,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3979": {
                  "entryPoint": null,
                  "id": 3979,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3993": {
                  "entryPoint": 2489,
                  "id": 3993,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setPrizeSplit_15485": {
                  "entryPoint": 519,
                  "id": 15485,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@setPrizeSplits_15427": {
                  "entryPoint": 1206,
                  "id": 15427,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@transferOwnership_4020": {
                  "entryPoint": 3068,
                  "id": 4020,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_struct_PrizeSplitConfig": {
                  "entryPoint": 4140,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 4260,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_calldata_ptr_$dyn_calldata_ptr": {
                  "entryPoint": 4296,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_contract$_ITicket_$12213_fromMemory": {
                  "entryPoint": 4413,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr": {
                  "entryPoint": 4442,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptrt_uint8": {
                  "entryPoint": 4470,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 4532,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 4557,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_struct_PrizeSplitConfig": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 4582,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizePool_$11883__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr__to_t_struct$_PrizeSplitConfig_$11903_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16_t_uint256__to_t_uint16_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16_t_uint8__to_t_uint16_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 4682,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 4706,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint256": {
                  "entryPoint": 4740,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 4771,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 4794,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 4821,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x31": {
                  "entryPoint": 4843,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 4865,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 4887,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:10448:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "87:740:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "131:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "140:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "143:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "133:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "133:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "133:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "108:3:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "113:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "104:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "104:19:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "125:4:84",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "100:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "100:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "97:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "156:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "176:4:84",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "170:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "170:11:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "160:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "190:35:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "212:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "220:4:84",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "208:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "208:17:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "194:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "308:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "329:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "332:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "322:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "322:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "322:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "430:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "433:4:84",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "423:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "423:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "423:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "458:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "461:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "451:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "451:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "451:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "243:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "255:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "240:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "240:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "279:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "291:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "276:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "276:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "237:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "237:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "234:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:4:84",
                                    "type": "",
                                    "value": "0x40"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "498:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:24:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:24:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "518:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "527:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "518:5:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "542:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "570:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "557:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "557:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "546:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "614:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "589:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "589:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "589:33:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "638:6:84"
                                  },
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "646:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "631:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "631:23:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "631:23:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "663:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "695:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "706:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "691:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "691:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "678:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "678:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "667:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "764:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "773:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "776:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "766:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "766:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "766:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "732:7:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "745:7:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "754:6:84",
                                            "type": "",
                                            "value": "0xffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "741:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "741:20:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "729:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "729:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "722:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "722:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "719:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "800:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "808:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "796:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "796:15:84"
                                  },
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "813:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "789:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "789:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "789:32:84"
                            }
                          ]
                        },
                        "name": "abi_decode_struct_PrizeSplitConfig",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "58:9:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "69:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "77:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:813:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "902:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "948:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "957:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "960:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "950:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "950:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "950:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "923:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "932:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "919:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "919:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "944:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "915:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "915:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "912:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "973:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "999:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "986:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "986:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "977:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1043:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1018:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1018:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1018:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1058:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1068:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1058:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "868:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "879:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "891:6:84",
                            "type": ""
                          }
                        ],
                        "src": "832:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1226:510:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1272:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1281:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1284:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1274:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1274:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1274:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1247:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1256:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1243:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1243:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1268:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1239:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1239:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1236:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1297:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1324:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1311:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1311:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1301:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1343:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1353:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1347:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1398:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1407:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1410:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1400:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1400:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1400:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1386:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1394:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1383:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1383:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1380:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1423:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1437:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1448:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1433:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1433:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1427:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1503:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1512:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1515:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1505:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1505:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1505:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1482:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1486:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1478:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1478:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1493:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1474:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1474:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1467:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1467:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1464:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1528:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1555:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1542:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1542:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1532:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1585:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1594:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1597:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1587:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1587:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1587:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1573:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1581:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1570:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1570:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1567:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1659:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1668:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1671:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1661:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1661:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1661:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1624:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1632:1:84",
                                                "type": "",
                                                "value": "6"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1635:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1628:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1628:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1620:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1620:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1645:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1616:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1616:32:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1650:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1613:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1613:45:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1610:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1684:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1698:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1702:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1694:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1694:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1684:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1714:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1724:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1714:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_calldata_ptr_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1184:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1195:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1207:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1215:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1084:652:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1839:170:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1885:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1894:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1897:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1887:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1887:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1887:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1860:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1869:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1856:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1856:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1881:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1852:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1852:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1849:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1910:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1929:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1923:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1923:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1914:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1973:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1948:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1948:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1948:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1988:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1998:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1988:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$12213_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1805:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1816:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1828:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1741:268:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2119:141:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2165:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2174:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2177:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2167:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2167:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2167:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2140:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2149:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2136:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2136:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2161:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2132:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2132:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2129:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2190:64:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2235:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2246:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeSplitConfig",
                                  "nodeType": "YulIdentifier",
                                  "src": "2200:34:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2200:54:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2190:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2085:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2096:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2108:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2014:246:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2385:283:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2431:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2440:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2443:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2433:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2433:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2433:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2406:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2415:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2402:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2402:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2427:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2398:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2398:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2395:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2456:64:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2501:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2512:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeSplitConfig",
                                  "nodeType": "YulIdentifier",
                                  "src": "2466:34:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2466:54:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2456:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2529:45:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2559:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2570:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2555:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2555:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2542:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2542:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2533:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2622:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2631:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2634:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2624:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2624:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2624:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2596:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2607:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2614:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2603:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2603:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2593:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2593:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2586:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2586:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2583:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2647:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2657:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2647:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptrt_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2343:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2354:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2366:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2374:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2265:403:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2743:110:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2789:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2798:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2801:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2791:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2791:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2791:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2764:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2773:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2760:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2760:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2785:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2756:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2756:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2753:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2814:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2837:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2824:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2824:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2814:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2709:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2720:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2732:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2673:180:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2939:103:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2985:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2994:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2997:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2987:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2987:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2987:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2960:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2969:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2956:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2956:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2981:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2952:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2952:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2949:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3010:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3026:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3020:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3020:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3010:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2905:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2916:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2928:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2858:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3107:159:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3124:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "3139:5:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3133:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3133:12:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3147:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3129:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3129:61:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3117:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3117:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3117:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3211:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3216:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3207:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3207:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3237:5:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3244:4:84",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3233:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3233:16:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3227:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3227:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3252:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3223:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3223:36:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3200:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3200:60:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3200:60:84"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_PrizeSplitConfig",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3091:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3098:3:84",
                            "type": ""
                          }
                        ],
                        "src": "3047:219:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3372:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3382:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3394:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3405:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3390:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3390:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3382:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3424:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3439:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3447:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3435:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3435:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3417:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3417:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3417:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3341:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3352:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3363:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3271:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3631:168:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3641:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3653:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3664:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3649:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3649:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3641:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3683:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3698:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3706:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3694:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3694:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3676:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3676:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3676:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3770:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3781:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3766:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3766:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3786:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3759:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3759:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3759:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3592:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3603:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3611:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3622:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3502:297:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4025:530:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4035:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4045:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4039:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4056:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4074:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4085:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4070:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4070:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4060:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4104:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4115:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4097:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4097:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4097:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4127:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "4138:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "4131:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4153:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4173:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4167:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4167:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4157:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4196:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4204:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4189:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4189:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4189:22:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4220:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4230:2:84",
                                "type": "",
                                "value": "64"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "4224:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4241:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4252:9:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4263:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4248:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4248:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "4241:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4275:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4293:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4301:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4289:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4289:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "4279:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4313:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4322:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4317:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4381:148:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "4436:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "4430:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4430:13:84"
                                        },
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4445:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_struct_PrizeSplitConfig",
                                        "nodeType": "YulIdentifier",
                                        "src": "4395:34:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4395:54:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4395:54:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4462:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4473:3:84"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4478:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4469:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4469:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4462:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4494:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "4508:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4516:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4504:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4504:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4494:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4343:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4346:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4340:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4340:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4354:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4356:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4365:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4368:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4361:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4361:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4356:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4336:3:84",
                                "statements": []
                              },
                              "src": "4332:197:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4538:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "4546:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4538:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3994:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4005:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4016:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3804:751:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4681:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4691:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4703:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4714:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4699:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4699:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4691:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4733:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4748:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4756:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4744:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4744:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4726:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4726:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4726:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizePool_$11883__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4650:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4661:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4672:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4560:246:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4985:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5002:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5013:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4995:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4995:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4995:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5036:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5047:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5032:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5032:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5052:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5025:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5025:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5025:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5075:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5086:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5071:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5071:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5091:26:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5064:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5064:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5064:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5127:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5139:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5150:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5135:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5135:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5127:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4962:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4976:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4811:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5338:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5355:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5366:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5348:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5348:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5348:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5389:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5400:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5385:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5385:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5405:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5378:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5378:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5378:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5428:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5439:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5424:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5424:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5444:33:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5417:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5417:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5417:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5487:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5499:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5510:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5495:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5495:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5487:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5315:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5329:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5164:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5698:236:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5715:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5726:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5708:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5708:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5708:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5749:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5760:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5745:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5745:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5765:2:84",
                                    "type": "",
                                    "value": "46"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5738:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5738:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5738:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5788:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5799:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5784:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5784:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d7065",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5804:34:84",
                                    "type": "",
                                    "value": "PrizeSplit/invalid-prizesplit-pe"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5777:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5777:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5777:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5859:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5870:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5855:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5855:18:84"
                                  },
                                  {
                                    "hexValue": "7263656e746167652d746f74616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5875:16:84",
                                    "type": "",
                                    "value": "rcentage-total"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5848:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5848:44:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5848:44:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5901:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5913:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5924:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5909:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5909:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5901:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5675:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5689:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5524:410:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6113:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6130:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6141:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6123:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6123:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6123:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6164:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6175:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6160:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6160:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6180:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6153:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6153:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6153:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6203:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6214:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6199:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6199:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d7461",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6219:34:84",
                                    "type": "",
                                    "value": "PrizeSplit/invalid-prizesplit-ta"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6192:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6192:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6192:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6274:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6285:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6270:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6270:18:84"
                                  },
                                  {
                                    "hexValue": "72676574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6290:6:84",
                                    "type": "",
                                    "value": "rget"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6263:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6263:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6263:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6306:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6318:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6329:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6314:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6314:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6306:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6090:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6104:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5939:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6518:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6535:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6546:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6528:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6528:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6528:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6569:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6580:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6565:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6565:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6585:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6558:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6558:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6558:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6608:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6619:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6604:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6604:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6624:34:84",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6597:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6597:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6597:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6679:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6690:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6675:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6675:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6695:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6668:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6668:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6668:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6712:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6724:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6735:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6720:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6720:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6712:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6495:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6509:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6344:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6924:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6941:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6952:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6934:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6934:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6934:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6975:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6986:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6971:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6971:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6991:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6964:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6964:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6964:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7014:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7025:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7010:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7010:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7030:34:84",
                                    "type": "",
                                    "value": "PrizeSplit/invalid-prizesplits-l"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7003:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7003:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7003:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7085:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7096:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7081:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7081:18:84"
                                  },
                                  {
                                    "hexValue": "656e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7101:7:84",
                                    "type": "",
                                    "value": "ength"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7074:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7074:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7074:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7118:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7130:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7141:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7126:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7126:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7118:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6901:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6915:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6750:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7330:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7347:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7358:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7340:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7340:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7340:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7381:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7392:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7377:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7377:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7397:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7370:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7370:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7370:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7420:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7431:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7416:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7416:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c69",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7436:34:84",
                                    "type": "",
                                    "value": "PrizeSplit/nonexistent-prizespli"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7409:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7409:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7409:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7491:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7502:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7487:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7487:18:84"
                                  },
                                  {
                                    "hexValue": "74",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7507:3:84",
                                    "type": "",
                                    "value": "t"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7480:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7480:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7480:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7520:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7532:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7543:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7528:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7528:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7520:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7307:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7321:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7156:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7729:104:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7739:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7751:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7762:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7747:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7747:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7739:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7809:6:84"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7817:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeSplitConfig",
                                  "nodeType": "YulIdentifier",
                                  "src": "7774:34:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7774:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7774:53:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr__to_t_struct$_PrizeSplitConfig_$11903_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7698:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7709:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7720:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7558:275:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7937:89:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7947:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7959:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7970:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7955:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7955:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7947:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7989:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8004:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8012:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8000:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8000:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7982:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7982:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7982:38:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7906:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7917:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7928:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7838:188:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8158:132:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8168:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8180:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8191:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8176:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8176:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8168:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8210:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8225:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8233:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8221:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8221:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8203:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8203:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8203:38:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8261:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8272:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8257:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8257:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8277:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8250:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8250:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8250:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16_t_uint256__to_t_uint16_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8119:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8130:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8138:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8149:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8031:259:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8420:143:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8430:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8442:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8453:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8438:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8438:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8430:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8472:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8487:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8495:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8483:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8483:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8465:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8465:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8465:38:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8523:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8534:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8519:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8519:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8543:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8551:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8539:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8539:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8512:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8512:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8512:45:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16_t_uint8__to_t_uint16_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8381:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8392:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8400:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8411:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8295:268:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8669:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8679:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8691:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8702:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8687:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8687:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8679:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8721:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8732:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8714:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8714:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8714:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8638:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8649:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8660:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8568:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8798:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8825:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8827:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8827:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8827:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8814:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "8821:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "8817:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8817:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8811:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8811:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8808:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8856:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8867:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8870:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8863:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8863:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8856:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8781:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8784:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8790:3:84",
                            "type": ""
                          }
                        ],
                        "src": "8750:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8929:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8960:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8981:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8984:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8974:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8974:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8974:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9082:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9085:4:84",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9075:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9075:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9075:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9110:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9113:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9103:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9103:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9103:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8949:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8942:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8942:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8939:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9137:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9146:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9149:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "9142:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9142:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "9137:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8914:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8917:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "8923:1:84",
                            "type": ""
                          }
                        ],
                        "src": "8883:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9214:176:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9333:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9335:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9335:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9335:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "9245:1:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "9238:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9238:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "9231:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9231:17:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "9253:1:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9260:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          },
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "9328:1:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "9256:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9256:74:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9250:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9250:81:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9227:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9227:105:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9224:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9364:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9379:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9382:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "9375:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9375:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "9364:7:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9193:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9196:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "9202:7:84",
                            "type": ""
                          }
                        ],
                        "src": "9162:228:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9444:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9466:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9468:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9468:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9468:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9460:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9463:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9457:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9457:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9454:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9497:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9509:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9512:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "9505:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9505:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "9497:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9426:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9429:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "9435:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9395:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9572:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9663:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9665:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9665:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9665:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9588:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9595:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "9585:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9585:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9582:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9694:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9705:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9712:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9701:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9701:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "9694:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "9554:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "9564:3:84",
                            "type": ""
                          }
                        ],
                        "src": "9525:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9757:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9774:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9777:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9767:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9767:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9767:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9871:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9874:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9864:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9864:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9864:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9895:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9898:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9888:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9888:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9888:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9725:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9946:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9963:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9966:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9956:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9956:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9956:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10060:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10063:4:84",
                                    "type": "",
                                    "value": "0x31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10053:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10053:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10053:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10084:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10087:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10077:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10077:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10077:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x31",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9914:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10135:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10152:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10155:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10145:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10145:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10145:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10249:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10252:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10242:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10242:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10242:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10273:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10276:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10266:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10266:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10266:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "10103:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10337:109:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10424:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10433:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10436:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "10426:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10426:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10426:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "10360:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "10371:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "10378:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "10367:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10367:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "10357:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10357:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "10350:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10350:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "10347:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "10326:5:84",
                            "type": ""
                          }
                        ],
                        "src": "10292:154:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_struct_PrizeSplitConfig(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x40) { revert(0, 0) }\n        let memPtr := mload(0x40)\n        let newFreePtr := add(memPtr, 0x40)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(0x40, newFreePtr)\n        value := memPtr\n        let value_1 := calldataload(headStart)\n        validator_revert_address(value_1)\n        mstore(memPtr, value_1)\n        let value_2 := calldataload(add(headStart, 32))\n        if iszero(eq(value_2, and(value_2, 0xffff))) { revert(0, 0) }\n        mstore(add(memPtr, 32), value_2)\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(6, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_2, 32)\n        value1 := length\n    }\n    function abi_decode_tuple_t_contract$_ITicket_$12213_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeSplitConfig(headStart, dataEnd)\n    }\n    function abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptrt_uint8(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeSplitConfig(headStart, dataEnd)\n        let value := calldataload(add(headStart, 64))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value1 := value\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_struct_PrizeSplitConfig(value, pos)\n    {\n        mstore(pos, and(mload(value), 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(pos, 0x20), and(mload(add(value, 0x20)), 0xffff))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        let _2 := 64\n        pos := add(headStart, _2)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            abi_encode_struct_PrizeSplitConfig(mload(srcPtr), pos)\n            pos := add(pos, _2)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_contract$_IPrizePool_$11883__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 46)\n        mstore(add(headStart, 64), \"PrizeSplit/invalid-prizesplit-pe\")\n        mstore(add(headStart, 96), \"rcentage-total\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"PrizeSplit/invalid-prizesplit-ta\")\n        mstore(add(headStart, 96), \"rget\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"PrizeSplit/invalid-prizesplits-l\")\n        mstore(add(headStart, 96), \"ength\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"PrizeSplit/nonexistent-prizespli\")\n        mstore(add(headStart, 96), \"t\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr__to_t_struct$_PrizeSplitConfig_$11903_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        abi_encode_struct_PrizeSplitConfig(value0, headStart)\n    }\n    function abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffff))\n    }\n    function abi_encode_tuple_t_uint16_t_uint256__to_t_uint16_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_uint16_t_uint8__to_t_uint16_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffff))\n        mstore(add(headStart, 32), and(value1, 0xff))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n        product := mul(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x31()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x31)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "15603": [
                  {
                    "length": 32,
                    "start": 308
                  },
                  {
                    "length": 32,
                    "start": 2829
                  },
                  {
                    "length": 32,
                    "start": 3755
                  },
                  {
                    "length": 32,
                    "start": 3964
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100d45760003560e01c80638da5cb5b11610081578063e30c39781161005b578063e30c3978146101cd578063e4fc6b6d146101de578063f2fde38b146101f457600080fd5b80638da5cb5b1461016c578063cf1e3b591461017d578063cf713d6e1461019257600080fd5b80634e71e0c8116100b25780634e71e0c814610122578063715018a61461012a578063884bf67c1461013257600080fd5b8063056ea84f146100d9578063063a2298146100ee57806345a9f18714610101575b600080fd5b6100ec6100e7366004611176565b610207565b005b6100ec6100fc3660046110c8565b6104b6565b61010a6103e881565b60405161ffff90911681526020015b60405180910390f35b6100ec61092b565b6100ec6109b9565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610119565b6000546001600160a01b0316610154565b610185610a2e565b60405161011991906111e6565b6101a56101a03660046111b4565b610aa5565b6040805182516001600160a01b0316815260209283015161ffff169281019290925201610119565b6001546001600160a01b0316610154565b6101e6610b08565b604051908152602001610119565b6100ec6102023660046110a4565b610bfc565b3361021a6000546001600160a01b031690565b6001600160a01b0316146102755760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b60025460ff8216106102ef5760405162461bcd60e51b815260206004820152602160248201527f5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c6960448201527f7400000000000000000000000000000000000000000000000000000000000000606482015260840161026c565b81516001600160a01b031661036b5760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161026c565b8160028260ff168154811061038257610382611301565b60009182526020808320845192018054949091015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199094166001600160a01b0390921691909117929092179091556103da610d38565b90506103e88111156104545760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161026c565b82600001516001600160a01b03167f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a348460200151846040516104a992919061ffff92909216825260ff16602082015260400190565b60405180910390a2505050565b336104c96000546001600160a01b031690565b6001600160a01b03161461051f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b8060ff8111156105975760405162461bcd60e51b815260206004820152602560248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c60448201527f656e677468000000000000000000000000000000000000000000000000000000606482015260840161026c565b60005b8181101561081b5760008484838181106105b6576105b6611301565b9050604002018036038101906105cc919061115a565b80519091506001600160a01b031661064b5760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161026c565b60025482106106d0576002805460018101825560009190915281517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9091018054602084015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199091166001600160a01b03909316929092179190911790556107b6565b6000600283815481106106e5576106e5611301565b6000918252602091829020604080518082019091529101546001600160a01b03808216808452600160a01b90920461ffff1693830193909352845191935091161415806107425750806020015161ffff16826020015161ffff1614155b156107ad57816002848154811061075b5761075b611301565b6000918252602091829020835191018054939092015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199093166001600160a01b03909116179190911790556107b4565b5050610809565b505b80516020808301516040805161ffff90921682529181018590526001600160a01b03909216917f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a34910160405180910390a2505b80610813816112ba565b91505061059a565b505b6002548110156108a15760028054600019810191908061083f5761083f6112eb565b6000828152602081208201600019908101805475ffffffffffffffffffffffffffffffffffffffffffff1916905590910190915560405182917f99fa473fdf53414bcd014cf6e7509fc58c68f7b86174767faa6ad5100cd5bae591a25061081d565b60006108ab610d38565b90506103e88111156109255760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161026c565b50505050565b6001546001600160a01b031633146109855760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161026c565b60015461099a906001600160a01b0316610d9a565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336109cc6000546001600160a01b031690565b6001600160a01b031614610a225760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b610a2c6000610d9a565b565b60606002805480602002602001604051908101604052809291908181526020016000905b82821015610a9c57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff1681830152825260019092019101610a52565b50505050905090565b604080518082019091526000808252602082015260028281548110610acc57610acc611301565b6000918252602091829020604080518082019091529101546001600160a01b0381168252600160a01b900461ffff169181019190915292915050565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e6d8a94b6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610b6657600080fd5b505af1158015610b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9e91906111cd565b905080610bad57600091505090565b6000610bb882610df7565b90507fddc9c30275a04c48091f24199f9c405765de34d979d6847f5b9798a57232d2e5610be582846112a3565b60405190815260200160405180910390a150919050565b33610c0f6000546001600160a01b031690565b6001600160a01b031614610c655760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b6001600160a01b038116610ce15760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161026c565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6002546000908190815b81811015610d925760028181548110610d5d57610d5d611301565b600091825260209091200154610d7e90600160a01b900461ffff168461124a565b925080610d8a816112ba565b915050610d42565b509092915050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000908290825b81811015610e9e57600060028281548110610e1e57610e1e611301565b60009182526020808320604080518082019091529201546001600160a01b0381168352600160a01b900461ffff169082018190529092506103e890610e639089611284565b610e6d9190611262565b9050610e7d826000015182610ea7565b610e8781866112a3565b945050508080610e96906112ba565b915050610e01565b50909392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b158015610f0257600080fd5b505afa158015610f16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3a919061113d565b6040517f5d8a776e0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152602482018590529192507f000000000000000000000000000000000000000000000000000000000000000090911690635d8a776e90604401600060405180830381600087803b158015610fc257600080fd5b505af1158015610fd6573d6000803e3d6000fd5b50505050806001600160a01b0316836001600160a01b03167f40b9722744d0ba62d8b847077d65a712335b6769aa37fff7ad7852ec299222a78460405161101f91815260200190565b60405180910390a3505050565b60006040828403121561103e57600080fd5b6040516040810181811067ffffffffffffffff8211171561106f57634e487b7160e01b600052604160045260246000fd5b604052905080823561108081611317565b8152602083013561ffff8116811461109757600080fd5b6020919091015292915050565b6000602082840312156110b657600080fd5b81356110c181611317565b9392505050565b600080602083850312156110db57600080fd5b823567ffffffffffffffff808211156110f357600080fd5b818501915085601f83011261110757600080fd5b81358181111561111657600080fd5b8660208260061b850101111561112b57600080fd5b60209290920196919550909350505050565b60006020828403121561114f57600080fd5b81516110c181611317565b60006040828403121561116c57600080fd5b6110c1838361102c565b6000806060838503121561118957600080fd5b611193848461102c565b9150604083013560ff811681146111a957600080fd5b809150509250929050565b6000602082840312156111c657600080fd5b5035919050565b6000602082840312156111df57600080fd5b5051919050565b602080825282518282018190526000919060409081850190868401855b8281101561123d5761122d84835180516001600160a01b0316825260209081015161ffff16910152565b9284019290850190600101611203565b5091979650505050505050565b6000821982111561125d5761125d6112d5565b500190565b60008261127f57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561129e5761129e6112d5565b500290565b6000828210156112b5576112b56112d5565b500390565b60006000198214156112ce576112ce6112d5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461132c57600080fd5b5056fea26469706673582212206df9c197165054cfd15465cda9e08d6c27a3028be783ae24a99c1a3aa1f0b5bc64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xD4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xE30C3978 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1CD JUMPI DUP1 PUSH4 0xE4FC6B6D EQ PUSH2 0x1DE JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x16C JUMPI DUP1 PUSH4 0xCF1E3B59 EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0xCF713D6E EQ PUSH2 0x192 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4E71E0C8 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x12A JUMPI DUP1 PUSH4 0x884BF67C EQ PUSH2 0x132 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x56EA84F EQ PUSH2 0xD9 JUMPI DUP1 PUSH4 0x63A2298 EQ PUSH2 0xEE JUMPI DUP1 PUSH4 0x45A9F187 EQ PUSH2 0x101 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEC PUSH2 0xE7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1176 JUMP JUMPDEST PUSH2 0x207 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xEC PUSH2 0xFC CALLDATASIZE PUSH1 0x4 PUSH2 0x10C8 JUMP JUMPDEST PUSH2 0x4B6 JUMP JUMPDEST PUSH2 0x10A PUSH2 0x3E8 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xEC PUSH2 0x92B JUMP JUMPDEST PUSH2 0xEC PUSH2 0x9B9 JUMP JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x185 PUSH2 0xA2E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x11E6 JUMP JUMPDEST PUSH2 0x1A5 PUSH2 0x1A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x11B4 JUMP JUMPDEST PUSH2 0xAA5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH2 0xFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x119 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x1E6 PUSH2 0xB08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0xEC PUSH2 0x202 CALLDATASIZE PUSH1 0x4 PUSH2 0x10A4 JUMP JUMPDEST PUSH2 0xBFC JUMP JUMPDEST CALLER PUSH2 0x21A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x275 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH1 0xFF DUP3 AND LT PUSH2 0x2EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F6E6F6E6578697374656E742D7072697A6573706C69 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7400000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x36B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST DUP2 PUSH1 0x2 DUP3 PUSH1 0xFF AND DUP2 SLOAD DUP2 LT PUSH2 0x382 JUMPI PUSH2 0x382 PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP5 MLOAD SWAP3 ADD DUP1 SLOAD SWAP5 SWAP1 SWAP2 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE PUSH2 0x3DA PUSH2 0xD38 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x454 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST DUP3 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 DUP5 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x40 MLOAD PUSH2 0x4A9 SWAP3 SWAP2 SWAP1 PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH1 0xFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST CALLER PUSH2 0x4C9 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x51F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST DUP1 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x597 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C6974732D6C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x656E677468000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x81B JUMPI PUSH1 0x0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x5B6 JUMPI PUSH2 0x5B6 PUSH2 0x1301 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MUL ADD DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5CC SWAP2 SWAP1 PUSH2 0x115A JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x64B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x2 SLOAD DUP3 LT PUSH2 0x6D0 JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH32 0x405787FA12A823E0F2B7631CC41B3BA8828B3321CA811111FA75CD3AA3BB5ACE SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x7B6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x6E5 JUMPI PUSH2 0x6E5 PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP3 DIV PUSH2 0xFFFF AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE DUP5 MLOAD SWAP2 SWAP4 POP SWAP2 AND EQ ISZERO DUP1 PUSH2 0x742 JUMPI POP DUP1 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND DUP3 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x7AD JUMPI DUP2 PUSH1 0x2 DUP5 DUP2 SLOAD DUP2 LT PUSH2 0x75B JUMPI PUSH2 0x75B PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD SWAP2 ADD DUP1 SLOAD SWAP4 SWAP1 SWAP3 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x7B4 JUMP JUMPDEST POP POP PUSH2 0x809 JUMP JUMPDEST POP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x40 DUP1 MLOAD PUSH2 0xFFFF SWAP1 SWAP3 AND DUP3 MSTORE SWAP2 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMPDEST DUP1 PUSH2 0x813 DUP2 PUSH2 0x12BA JUMP JUMPDEST SWAP2 POP POP PUSH2 0x59A JUMP JUMPDEST POP JUMPDEST PUSH1 0x2 SLOAD DUP2 LT ISZERO PUSH2 0x8A1 JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP1 PUSH2 0x83F JUMPI PUSH2 0x83F PUSH2 0x12EB JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 DUP3 ADD PUSH1 0x0 NOT SWAP1 DUP2 ADD DUP1 SLOAD PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE SWAP1 SWAP2 ADD SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD DUP3 SWAP2 PUSH32 0x99FA473FDF53414BCD014CF6E7509FC58C68F7B86174767FAA6AD5100CD5BAE5 SWAP2 LOG2 POP PUSH2 0x81D JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8AB PUSH2 0xD38 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x925 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x985 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x99A SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xD9A JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x9CC PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA22 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST PUSH2 0xA2C PUSH1 0x0 PUSH2 0xD9A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0xA9C JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP1 DUP5 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP2 DUP4 ADD MSTORE DUP3 MSTORE PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0xA52 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xACC JUMPI PUSH2 0xACC PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE6D8A94B PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB66 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xB7A 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 0xB9E SWAP2 SWAP1 PUSH2 0x11CD JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0xBAD JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBB8 DUP3 PUSH2 0xDF7 JUMP JUMPDEST SWAP1 POP PUSH32 0xDDC9C30275A04C48091F24199F9C405765DE34D979D6847F5B9798A57232D2E5 PUSH2 0xBE5 DUP3 DUP5 PUSH2 0x12A3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0xC0F PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC65 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xCE1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xD92 JUMPI PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xD5D JUMPI PUSH2 0xD5D PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH2 0xD7E SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP5 PUSH2 0x124A JUMP JUMPDEST SWAP3 POP DUP1 PUSH2 0xD8A DUP2 PUSH2 0x12BA JUMP JUMPDEST SWAP2 POP POP PUSH2 0xD42 JUMP JUMPDEST POP SWAP1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 DUP3 SWAP1 DUP3 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE9E JUMPI PUSH1 0x0 PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xE1E JUMPI PUSH2 0xE1E PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP3 POP PUSH2 0x3E8 SWAP1 PUSH2 0xE63 SWAP1 DUP10 PUSH2 0x1284 JUMP JUMPDEST PUSH2 0xE6D SWAP2 SWAP1 PUSH2 0x1262 JUMP JUMPDEST SWAP1 POP PUSH2 0xE7D DUP3 PUSH1 0x0 ADD MLOAD DUP3 PUSH2 0xEA7 JUMP JUMPDEST PUSH2 0xE87 DUP2 DUP7 PUSH2 0x12A3 JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0xE96 SWAP1 PUSH2 0x12BA JUMP JUMPDEST SWAP2 POP POP PUSH2 0xE01 JUMP JUMPDEST POP SWAP1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC002C4D6 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xF02 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF16 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 0xF3A SWAP2 SWAP1 PUSH2 0x113D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x5D8A776E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP3 POP PUSH32 0x0 SWAP1 SWAP2 AND SWAP1 PUSH4 0x5D8A776E SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xFC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xFD6 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x40B9722744D0BA62D8B847077D65A712335B6769AA37FFF7AD7852EC299222A7 DUP5 PUSH1 0x40 MLOAD PUSH2 0x101F SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x103E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x40 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x106F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 POP DUP1 DUP3 CALLDATALOAD PUSH2 0x1080 DUP2 PUSH2 0x1317 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x1097 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x10C1 DUP2 PUSH2 0x1317 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x10DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x10F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1107 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1116 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x6 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x112B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x114F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x10C1 DUP2 PUSH2 0x1317 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x116C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10C1 DUP4 DUP4 PUSH2 0x102C JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x60 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1189 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1193 DUP5 DUP5 PUSH2 0x102C JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP4 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x11A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x123D JUMPI PUSH2 0x122D DUP5 DUP4 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH2 0xFFFF AND SWAP2 ADD MSTORE JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1203 JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x125D JUMPI PUSH2 0x125D PUSH2 0x12D5 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x127F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x129E JUMPI PUSH2 0x129E PUSH2 0x12D5 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x12B5 JUMPI PUSH2 0x12B5 PUSH2 0x12D5 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x12CE JUMPI PUSH2 0x12CE PUSH2 0x12D5 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x132C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH14 0xF9C197165054CFD15465CDA9E08D PUSH13 0x27A3028BE783AE24A99C1A3AA1 CREATE 0xB5 0xBC PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "877:1936:63:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3265:835:62;;;;;;:::i;:::-;;:::i;:::-;;942:2285;;;;;;:::i;:::-;;:::i;404:50::-;;450:4;404:50;;;;;8012:6:84;8000:19;;;7982:38;;7970:2;7955:18;404:50:62;;;;;;;;3147:129:22;;;:::i;2508:94::-;;;:::i;2147:101:63:-;2232:9;2147:101;;;-1:-1:-1;;;;;3435:55:84;;;3417:74;;3405:2;3390:18;2147:101:63;3372:125:84;1814:85:22;1860:7;1886:6;-1:-1:-1;;;;;1886:6:22;1814:85;;783:121:62;;;:::i;:::-;;;;;;;:::i;549:196::-;;;;;;:::i;:::-;;:::i;:::-;;;;3133:12:84;;-1:-1:-1;;;;;3129:61:84;3117:74;;3244:4;3233:16;;;3227:23;3252:6;3223:36;3207:14;;;3200:60;;;;7747:18;549:196:62;7729:104:84;2014:101:22;2095:13;;-1:-1:-1;;;;;2095:13:22;2014:101;;1813:296:63;;;:::i;:::-;;;8714:25:84;;;8702:2;8687:18;1813:296:63;8669:76:84;2751:234:22;;;;;;:::i;:::-;;:::i;3265:835:62:-;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;5013:2:84;3819:58:22;;;4995:21:84;5052:2;5032:18;;;5025:30;5091:26;5071:18;;;5064:54;5135:18;;3819:58:22;;;;;;;;;3442:12:62::1;:19:::0;3423:38:::1;::::0;::::1;;3415:84;;;::::0;-1:-1:-1;;;3415:84:62;;7358:2:84;3415:84:62::1;::::0;::::1;7340:21:84::0;7397:2;7377:18;;;7370:30;7436:34;7416:18;;;7409:62;7507:3;7487:18;;;7480:31;7528:19;;3415:84:62::1;7330:223:84::0;3415:84:62::1;3517:18:::0;;-1:-1:-1;;;;;3517:32:62::1;3509:81;;;::::0;-1:-1:-1;;;3509:81:62;;6141:2:84;3509:81:62::1;::::0;::::1;6123:21:84::0;6180:2;6160:18;;;6153:30;6219:34;6199:18;;;6192:62;6290:6;6270:18;;;6263:34;6314:19;;3509:81:62::1;6113:226:84::0;3509:81:62::1;3675:11;3642:12;3655:16;3642:30;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;:44;;:30;::::1;:44:::0;;;;;::::1;::::0;::::1;;-1:-1:-1::0;;;3642:44:62::1;-1:-1:-1::0;;3642:44:62;;;-1:-1:-1;;;;;3642:44:62;;::::1;::::0;;;;;;;::::1;::::0;;;3771:34:::1;:32;:34::i;:::-;3745:60:::0;-1:-1:-1;450:4:62::1;3823:39:::0;::::1;;3815:98;;;::::0;-1:-1:-1;;;3815:98:62;;5726:2:84;3815:98:62::1;::::0;::::1;5708:21:84::0;5765:2;5745:18;;;5738:30;5804:34;5784:18;;;5777:62;5875:16;5855:18;;;5848:44;5909:19;;3815:98:62::1;5698:236:84::0;3815:98:62::1;3999:11;:18;;;-1:-1:-1::0;;;;;3972:121:62::1;;4031:11;:22;;;4067:16;3972:121;;;;;;8495:6:84::0;8483:19;;;;8465:38;;8551:4;8539:17;8534:2;8519:18;;8512:45;8453:2;8438:18;;8420:143;3972:121:62::1;;;;;;;;3405:695;3265:835:::0;;:::o;942:2285::-;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;5013:2:84;3819:58:22;;;4995:21:84;5052:2;5032:18;;;5025:30;5091:26;5071:18;;;5064:54;5135:18;;3819:58:22;4985:174:84;3819:58:22;1108:15:62;1172::::1;1148:39:::0;::::1;;1140:89;;;::::0;-1:-1:-1;;;1140:89:62;;6952:2:84;1140:89:62::1;::::0;::::1;6934:21:84::0;6991:2;6971:18;;;6964:30;7030:34;7010:18;;;7003:62;7101:7;7081:18;;;7074:35;7126:19;;1140:89:62::1;6924:227:84::0;1140:89:62::1;1348:13;1343:1270;1375:20;1367:5;:28;1343:1270;;;1420:29;1452:15;;1468:5;1452:22;;;;;;;:::i;:::-;;;;;;1420:54;;;;;;;;;;:::i;:::-;1560:12:::0;;1420:54;;-1:-1:-1;;;;;;1560:26:62::1;1552:75;;;::::0;-1:-1:-1;;;1552:75:62;;6141:2:84;1552:75:62::1;::::0;::::1;6123:21:84::0;6180:2;6160:18;;;6153:30;6219:34;6199:18;;;6192:62;6290:6;6270:18;;;6263:34;6314:19;;1552:75:62::1;6113:226:84::0;1552:75:62::1;1786:12;:19:::0;:28;-1:-1:-1;1782:691:62::1;;1834:12;:24:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;1834:24:62;;;;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;;-1:-1:-1::0;;;1834:24:62::1;-1:-1:-1::0;;1834:24:62;;;-1:-1:-1;;;;;1834:24:62;;::::1;::::0;;;;;;;::::1;::::0;;1782:691:::1;;;1978:36;2017:12;2030:5;2017:19;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;1978:58:::1;::::0;;;;::::1;::::0;;;2017:19;::::1;1978:58:::0;-1:-1:-1;;;;;1978:58:62;;::::1;::::0;;;-1:-1:-1;;;1978:58:62;;::::1;;;::::0;;::::1;::::0;;;;2215:12;;1978:58;;-1:-1:-1;2215:35:62;::::1;;;::::0;:102:::1;;;2294:12;:23;;;2274:43;;:5;:16;;;:43;;;;2215:102;2190:269;;;2380:5;2358:12;2371:5;2358:19;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;:27;;:19;::::1;:27:::0;;;;;::::1;::::0;::::1;;-1:-1:-1::0;;;2358:27:62::1;-1:-1:-1::0;;2358:27:62;;;-1:-1:-1;;;;;2358:27:62;;::::1;::::0;;;;::::1;::::0;;2190:269:::1;;;2432:8;;;;2190:269;1879:594;1782:691;2564:12:::0;;2578:16:::1;::::0;;::::1;::::0;2550:52:::1;::::0;;8233:6:84;8221:19;;;8203:38;;8257:18;;;8250:34;;;-1:-1:-1;;;;;2550:52:62;;::::1;::::0;::::1;::::0;8176:18:84;2550:52:62::1;;;;;;;1406:1207;1343:1270;1397:7:::0;::::1;::::0;::::1;:::i;:::-;;;;1343:1270;;;;2740:254;2747:12;:19:::0;:42;-1:-1:-1;2740:254:62::1;;;2870:12;:19:::0;;-1:-1:-1;;2870:23:62;;;:12;:19;2921:18:::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;2921:18:62;;;;;-1:-1:-1;;2921:18:62;;;;;;;;;2958:25:::1;::::0;2976:6;;2958:25:::1;::::0;::::1;2791:203;2740:254;;;3052:23;3078:34;:32;:34::i;:::-;3052:60:::0;-1:-1:-1;450:4:62::1;3130:39:::0;::::1;;3122:98;;;::::0;-1:-1:-1;;;3122:98:62;;5726:2:84;3122:98:62::1;::::0;::::1;5708:21:84::0;5765:2;5745:18;;;5738:30;5804:34;5784:18;;;5777:62;5875:16;5855:18;;;5848:44;5909:19;;3122:98:62::1;5698:236:84::0;3122:98:62::1;1067:2160;;942:2285:::0;;:::o;3147:129:22:-;4050:13;;-1:-1:-1;;;;;4050:13:22;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:22;;5366:2:84;4028:71:22;;;5348:21:84;5405:2;5385:18;;;5378:30;5444:33;5424:18;;;5417:61;5495:18;;4028:71:22;5338:181:84;4028:71:22;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:22::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:22::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;5013:2:84;3819:58:22;;;4995:21:84;5052:2;5032:18;;;5025:30;5091:26;5071:18;;;5064:54;5135:18;;3819:58:22;4985:174:84;3819:58:22;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;783:121:62:-;841:25;885:12;878:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;878:19:62;;;;-1:-1:-1;;;878:19:62;;;;;;;;;;;;;;;;;;;;;;;;;783:121;:::o;549:196::-;-1:-1:-1;;;;;;;;;;;;;;;;;708:12:62;721:16;708:30;;;;;;;;:::i;:::-;;;;;;;;;;701:37;;;;;;;;;708:30;;701:37;-1:-1:-1;;;;;701:37:62;;;;-1:-1:-1;;;701:37:62;;;;;;;;;;;;;-1:-1:-1;;549:196:62:o;1813:296:63:-;1862:7;1881:13;1897:9;-1:-1:-1;;;;;1897:29:63;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1881:47;-1:-1:-1;1943:10:63;1939:24;;1962:1;1955:8;;;1813:296;:::o;1939:24::-;1974:22;1999:29;2022:5;1999:22;:29::i;:::-;1974:54;-1:-1:-1;2044:35:63;2056:22;1974:54;2056:5;:22;:::i;:::-;2044:35;;8714:25:84;;;8702:2;8687:18;2044:35:63;;;;;;;-1:-1:-1;2097:5:63;1813:296;-1:-1:-1;1813:296:63:o;2751:234:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;5013:2:84;3819:58:22;;;4995:21:84;5052:2;5032:18;;;5025:30;5091:26;5071:18;;;5064:54;5135:18;;3819:58:22;4985:174:84;3819:58:22;-1:-1:-1;;;;;2834:23:22;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:22;;6546:2:84;2826:73:22::1;::::0;::::1;6528:21:84::0;6585:2;6565:18;;;6558:30;6624:34;6604:18;;;6597:62;6695:7;6675:18;;;6668:35;6720:19;;2826:73:22::1;6518:227:84::0;2826:73:22::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:22::1;-1:-1:-1::0;;;;;2910:25:22;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:22::1;2751:234:::0;:::o;4431:365:62:-;4583:12;:19;4498:7;;;;;4613:139;4645:17;4637:5;:25;4613:139;;;4711:12;4724:5;4711:19;;;;;;;;:::i;:::-;;;;;;;;;;:30;4687:54;;-1:-1:-1;;;4711:30:62;;;;4687:54;;:::i;:::-;;-1:-1:-1;4664:7:62;;;;:::i;:::-;;;;4613:139;;;-1:-1:-1;4769:20:62;;4431:365;-1:-1:-1;;4431:365:62:o;3470:174:22:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;5043:681:62:-;5193:12;:19;5109:7;;5149:6;;5109:7;5223:467;5255:17;5247:5;:25;5223:467;;;5297:29;5329:12;5342:5;5329:19;;;;;;;;:::i;:::-;;;;;;;;;5297:51;;;;;;;;;5329:19;;5297:51;-1:-1:-1;;;;;5297:51:62;;;;-1:-1:-1;;;5297:51:62;;;;;;;;;;;;-1:-1:-1;5415:4:62;;5386:25;;:6;:25;:::i;:::-;5385:34;;;;:::i;:::-;5362:57;;5492:50;5515:5;:12;;;5529;5492:22;:50::i;:::-;5653:26;5667:12;5653:26;;:::i;:::-;;;5283:407;;5274:7;;;;;:::i;:::-;;;;5223:467;;;-1:-1:-1;5707:10:62;;5043:681;-1:-1:-1;;;5043:681:62:o;2572:239:63:-;2662:24;2689:9;-1:-1:-1;;;;;2689:19:63;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2720:29;;;;;-1:-1:-1;;;;;3694:55:84;;;2720:29:63;;;3676:74:84;3766:18;;;3759:34;;;2662:48:63;;-1:-1:-1;2720:9:63;:15;;;;;;3649:18:84;;2720:29:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2796:7;-1:-1:-1;;;;;2764:40:63;2782:3;-1:-1:-1;;;;;2764:40:63;;2787:7;2764:40;;;;8714:25:84;;8702:2;8687:18;;8669:76;2764:40:63;;;;;;;;2652:159;2572:239;;:::o;14:813:84:-;77:5;125:4;113:9;108:3;104:19;100:30;97:2;;;143:1;140;133:12;97:2;176:4;170:11;220:4;212:6;208:17;291:6;279:10;276:22;255:18;243:10;240:34;237:62;234:2;;;-1:-1:-1;;;329:1:84;322:88;433:4;430:1;423:15;461:4;458:1;451:15;234:2;492:4;485:24;527:6;-1:-1:-1;527:6:84;557:23;;589:33;557:23;589:33;:::i;:::-;631:23;;706:2;691:18;;678:32;754:6;741:20;;729:33;;719:2;;776:1;773;766:12;719:2;808;796:15;;;;789:32;87:740;;-1:-1:-1;;87:740:84:o;832:247::-;891:6;944:2;932:9;923:7;919:23;915:32;912:2;;;960:1;957;950:12;912:2;999:9;986:23;1018:31;1043:5;1018:31;:::i;:::-;1068:5;902:177;-1:-1:-1;;;902:177:84:o;1084:652::-;1207:6;1215;1268:2;1256:9;1247:7;1243:23;1239:32;1236:2;;;1284:1;1281;1274:12;1236:2;1324:9;1311:23;1353:18;1394:2;1386:6;1383:14;1380:2;;;1410:1;1407;1400:12;1380:2;1448:6;1437:9;1433:22;1423:32;;1493:7;1486:4;1482:2;1478:13;1474:27;1464:2;;1515:1;1512;1505:12;1464:2;1555;1542:16;1581:2;1573:6;1570:14;1567:2;;;1597:1;1594;1587:12;1567:2;1650:7;1645:2;1635:6;1632:1;1628:14;1624:2;1620:23;1616:32;1613:45;1610:2;;;1671:1;1668;1661:12;1610:2;1702;1694:11;;;;;1724:6;;-1:-1:-1;1226:510:84;;-1:-1:-1;;;;1226:510:84:o;1741:268::-;1828:6;1881:2;1869:9;1860:7;1856:23;1852:32;1849:2;;;1897:1;1894;1887:12;1849:2;1929:9;1923:16;1948:31;1973:5;1948:31;:::i;2014:246::-;2108:6;2161:2;2149:9;2140:7;2136:23;2132:32;2129:2;;;2177:1;2174;2167:12;2129:2;2200:54;2246:7;2235:9;2200:54;:::i;2265:403::-;2366:6;2374;2427:2;2415:9;2406:7;2402:23;2398:32;2395:2;;;2443:1;2440;2433:12;2395:2;2466:54;2512:7;2501:9;2466:54;:::i;:::-;2456:64;;2570:2;2559:9;2555:18;2542:32;2614:4;2607:5;2603:16;2596:5;2593:27;2583:2;;2634:1;2631;2624:12;2583:2;2657:5;2647:15;;;2385:283;;;;;:::o;2673:180::-;2732:6;2785:2;2773:9;2764:7;2760:23;2756:32;2753:2;;;2801:1;2798;2791:12;2753:2;-1:-1:-1;2824:23:84;;2743:110;-1:-1:-1;2743:110:84:o;2858:184::-;2928:6;2981:2;2969:9;2960:7;2956:23;2952:32;2949:2;;;2997:1;2994;2987:12;2949:2;-1:-1:-1;3020:16:84;;2939:103;-1:-1:-1;2939:103:84:o;3804:751::-;4045:2;4097:21;;;4167:13;;4070:18;;;4189:22;;;4016:4;;4045:2;4230;;4248:18;;;;4289:15;;;4016:4;4332:197;4346:6;4343:1;4340:13;4332:197;;;4395:54;4445:3;4436:6;4430:13;3133:12;;-1:-1:-1;;;;;3129:61:84;3117:74;;3244:4;3233:16;;;3227:23;3252:6;3223:36;3207:14;;3200:60;3107:159;4395:54;4469:12;;;;4504:15;;;;4368:1;4361:9;4332:197;;;-1:-1:-1;4546:3:84;;4025:530;-1:-1:-1;;;;;;;4025:530:84:o;8750:128::-;8790:3;8821:1;8817:6;8814:1;8811:13;8808:2;;;8827:18;;:::i;:::-;-1:-1:-1;8863:9:84;;8798:80::o;8883:274::-;8923:1;8949;8939:2;;-1:-1:-1;;;8981:1:84;8974:88;9085:4;9082:1;9075:15;9113:4;9110:1;9103:15;8939:2;-1:-1:-1;9142:9:84;;8929:228::o;9162:::-;9202:7;9328:1;-1:-1:-1;;9256:74:84;9253:1;9250:81;9245:1;9238:9;9231:17;9227:105;9224:2;;;9335:18;;:::i;:::-;-1:-1:-1;9375:9:84;;9214:176::o;9395:125::-;9435:4;9463:1;9460;9457:8;9454:2;;;9468:18;;:::i;:::-;-1:-1:-1;9505:9:84;;9444:76::o;9525:195::-;9564:3;-1:-1:-1;;9588:5:84;9585:77;9582:2;;;9665:18;;:::i;:::-;-1:-1:-1;9712:1:84;9701:13;;9572:148::o;9725:184::-;-1:-1:-1;;;9774:1:84;9767:88;9874:4;9871:1;9864:15;9898:4;9895:1;9888:15;9914:184;-1:-1:-1;;;9963:1:84;9956:88;10063:4;10060:1;10053:15;10087:4;10084:1;10077:15;10103:184;-1:-1:-1;;;10152:1:84;10145:88;10252:4;10249:1;10242:15;10276:4;10273:1;10266:15;10292:154;-1:-1:-1;;;;;10371:5:84;10367:54;10360:5;10357:65;10347:2;;10436:1;10433;10426:12;10347:2;10337:109;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "993000",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "ONE_AS_FIXED_POINT_3()": "261",
                "claimOwnership()": "54464",
                "distribute()": "infinite",
                "getPrizePool()": "infinite",
                "getPrizeSplit(uint256)": "4877",
                "getPrizeSplits()": "infinite",
                "owner()": "2354",
                "pendingOwner()": "2353",
                "renounceOwnership()": "28180",
                "setPrizeSplit((address,uint16),uint8)": "infinite",
                "setPrizeSplits((address,uint16)[])": "infinite",
                "transferOwnership(address)": "27966"
              },
              "internal": {
                "_awardPrizeSplitAmount(address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "ONE_AS_FIXED_POINT_3()": "45a9f187",
              "claimOwnership()": "4e71e0c8",
              "distribute()": "e4fc6b6d",
              "getPrizePool()": "884bf67c",
              "getPrizeSplit(uint256)": "cf713d6e",
              "getPrizeSplits()": "cf1e3b59",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setPrizeSplit((address,uint16),uint8)": "056ea84f",
              "setPrizeSplits((address,uint16)[])": "063a2298",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IPrizePool\",\"name\":\"_prizePool\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"contract IPrizePool\",\"name\":\"prizePool\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalPrizeCaptured\",\"type\":\"uint256\"}],\"name\":\"Distributed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"prizeAwarded\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"contract IControlledToken\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"PrizeSplitAwarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"target\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"ONE_AS_FIXED_POINT_3\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"\",\"type\":\"uint16\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"distribute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizePool\",\"outputs\":[{\"internalType\":\"contract IPrizePool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_prizeSplitIndex\",\"type\":\"uint256\"}],\"name\":\"getPrizeSplit\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeSplits\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"_prizeSplit\",\"type\":\"tuple\"},{\"internalType\":\"uint8\",\"name\":\"_prizeSplitIndex\",\"type\":\"uint8\"}],\"name\":\"setPrizeSplit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"_newPrizeSplits\",\"type\":\"tuple[]\"}],\"name\":\"setPrizeSplits\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"Deployed(address,address)\":{\"params\":{\"owner\":\"Contract owner\",\"prizePool\":\"Linked PrizePool contract\"}}},\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_owner\":\"Owner address\",\"_prizePool\":\"PrizePool address\"}},\"distribute()\":{\"details\":\"Permissionless function to initialize distribution of interst\",\"returns\":{\"_0\":\"Prize captured from PrizePool\"}},\"getPrizePool()\":{\"returns\":{\"_0\":\"IPrizePool\"}},\"getPrizeSplit(uint256)\":{\"details\":\"Read PrizeSplitConfig struct from prizeSplits array.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig\"},\"returns\":{\"_0\":\"PrizeSplitConfig Single prize split config\"}},\"getPrizeSplits()\":{\"details\":\"Read all PrizeSplitConfig structs stored in prizeSplits.\",\"returns\":{\"_0\":\"Array of PrizeSplitConfig structs\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setPrizeSplit((address,uint16),uint8)\":{\"details\":\"Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig to update\",\"prizeStrategySplit\":\"PrizeSplitConfig config struct\"}},\"setPrizeSplits((address,uint16)[])\":{\"details\":\"Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\",\"params\":{\"newPrizeSplits\":\"Array of PrizeSplitConfig structs\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"PoolTogether V4 PrizeSplitStrategy\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address)\":{\"notice\":\"Deployed Event\"},\"Distributed(uint256)\":{\"notice\":\"Emit when a strategy captures award amount from PrizePool.\"},\"PrizeSplitAwarded(address,uint256,address)\":{\"notice\":\"Emit when an individual prize split is awarded.\"},\"PrizeSplitRemoved(uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is removed.\"},\"PrizeSplitSet(address,uint16,uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is added or updated.\"}},\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Deploy the PrizeSplitStrategy smart contract.\"},\"distribute()\":{\"notice\":\"Capture the award balance and distribute to prize splits.\"},\"getPrizePool()\":{\"notice\":\"Get PrizePool address\"},\"getPrizeSplit(uint256)\":{\"notice\":\"Read prize split config from active PrizeSplits.\"},\"getPrizeSplits()\":{\"notice\":\"Read all prize splits configs.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setPrizeSplit((address,uint16),uint8)\":{\"notice\":\"Updates a previously set prize split config.\"},\"setPrizeSplits((address,uint16)[])\":{\"notice\":\"Set and remove prize split(s) configs. Only callable by owner.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"Captures PrizePool interest for PrizeReserve and additional PrizeSplit recipients. The PrizeSplitStrategy will have at minimum a single PrizeSplit with 100% of the captured interest transfered to the PrizeReserve. Additional PrizeSplits can be added, depending on the deployers requirements (i.e. percentage to charity). In contrast to previous PoolTogether iterations, interest can be captured independent of a new Draw. Ideally (to save gas) interest is only captured when also distributing the captured prize(s) to applicable Prize Distributor(s).\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/prize-strategy/PrizeSplitStrategy.sol\":\"PrizeSplitStrategy\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeSplit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IControlledToken.sol\\\";\\nimport \\\"./IPrizePool.sol\\\";\\n\\n/**\\n * @title Abstract prize split contract for adding unique award distribution to static addresses.\\n * @author PoolTogether Inc Team\\n */\\ninterface IPrizeSplit {\\n    /**\\n     * @notice Emit when an individual prize split is awarded.\\n     * @param user          User address being awarded\\n     * @param prizeAwarded  Awarded prize amount\\n     * @param token         Token address\\n     */\\n    event PrizeSplitAwarded(\\n        address indexed user,\\n        uint256 prizeAwarded,\\n        IControlledToken indexed token\\n    );\\n\\n    /**\\n     * @notice The prize split configuration struct.\\n     * @dev    The prize split configuration struct used to award prize splits during distribution.\\n     * @param target     Address of recipient receiving the prize split distribution\\n     * @param percentage Percentage of prize split using a 0-1000 range for single decimal precision i.e. 125 = 12.5%\\n     */\\n    struct PrizeSplitConfig {\\n        address target;\\n        uint16 percentage;\\n    }\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is added or updated.\\n     * @dev    Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.\\n     * @param target     Address of prize split recipient\\n     * @param percentage Percentage of prize split. Must be between 0 and 1000 for single decimal precision\\n     * @param index      Index of prize split in the prizeSplts array\\n     */\\n    event PrizeSplitSet(address indexed target, uint16 percentage, uint256 index);\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is removed.\\n     * @dev    Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.\\n     * @param target Index of a previously active prize split config\\n     */\\n    event PrizeSplitRemoved(uint256 indexed target);\\n\\n    /**\\n     * @notice Read prize split config from active PrizeSplits.\\n     * @dev    Read PrizeSplitConfig struct from prizeSplits array.\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig\\n     * @return PrizeSplitConfig Single prize split config\\n     */\\n    function getPrizeSplit(uint256 prizeSplitIndex) external view returns (PrizeSplitConfig memory);\\n\\n    /**\\n     * @notice Read all prize splits configs.\\n     * @dev    Read all PrizeSplitConfig structs stored in prizeSplits.\\n     * @return Array of PrizeSplitConfig structs\\n     */\\n    function getPrizeSplits() external view returns (PrizeSplitConfig[] memory);\\n\\n    /**\\n     * @notice Get PrizePool address\\n     * @return IPrizePool\\n     */\\n    function getPrizePool() external view returns (IPrizePool);\\n\\n    /**\\n     * @notice Set and remove prize split(s) configs. Only callable by owner.\\n     * @dev Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\\n     * @param newPrizeSplits Array of PrizeSplitConfig structs\\n     */\\n    function setPrizeSplits(PrizeSplitConfig[] calldata newPrizeSplits) external;\\n\\n    /**\\n     * @notice Updates a previously set prize split config.\\n     * @dev Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\\n     * @param prizeStrategySplit PrizeSplitConfig config struct\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig to update\\n     */\\n    function setPrizeSplit(PrizeSplitConfig memory prizeStrategySplit, uint8 prizeSplitIndex)\\n        external;\\n}\\n\",\"keccak256\":\"0xf9946a5bbe45641a0f86674135eb56310b3a97f09e5665fd1c11bc213d42d2ac\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IStrategy.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\ninterface IStrategy {\\n    /**\\n     * @notice Emit when a strategy captures award amount from PrizePool.\\n     * @param totalPrizeCaptured  Total prize captured from the PrizePool\\n     */\\n    event Distributed(uint256 totalPrizeCaptured);\\n\\n    /**\\n     * @notice Capture the award balance and distribute to prize splits.\\n     * @dev    Permissionless function to initialize distribution of interst\\n     * @return Prize captured from PrizePool\\n     */\\n    function distribute() external returns (uint256);\\n}\\n\",\"keccak256\":\"0x3c30617be7a8c311c320fe3b50c77c4270333ddcfe5b01822fcbe85e2db4623e\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"},\"contracts/prize-strategy/PrizeSplit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"../interfaces/IPrizeSplit.sol\\\";\\n\\n/**\\n * @title PrizeSplit Interface\\n * @author PoolTogether Inc Team\\n */\\nabstract contract PrizeSplit is IPrizeSplit, Ownable {\\n    /* ============ Global Variables ============ */\\n    PrizeSplitConfig[] internal _prizeSplits;\\n\\n    uint16 public constant ONE_AS_FIXED_POINT_3 = 1000;\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeSplit\\n    function getPrizeSplit(uint256 _prizeSplitIndex)\\n        external\\n        view\\n        override\\n        returns (PrizeSplitConfig memory)\\n    {\\n        return _prizeSplits[_prizeSplitIndex];\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function getPrizeSplits() external view override returns (PrizeSplitConfig[] memory) {\\n        return _prizeSplits;\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function setPrizeSplits(PrizeSplitConfig[] calldata _newPrizeSplits)\\n        external\\n        override\\n        onlyOwner\\n    {\\n        uint256 newPrizeSplitsLength = _newPrizeSplits.length;\\n        require(newPrizeSplitsLength <= type(uint8).max, \\\"PrizeSplit/invalid-prizesplits-length\\\");\\n\\n        // Add and/or update prize split configs using _newPrizeSplits PrizeSplitConfig structs array.\\n        for (uint256 index = 0; index < newPrizeSplitsLength; index++) {\\n            PrizeSplitConfig memory split = _newPrizeSplits[index];\\n\\n            // REVERT when setting the canonical burn address.\\n            require(split.target != address(0), \\\"PrizeSplit/invalid-prizesplit-target\\\");\\n\\n            // IF the CURRENT prizeSplits length is below the NEW prizeSplits\\n            // PUSH the PrizeSplit struct to end of the list.\\n            if (_prizeSplits.length <= index) {\\n                _prizeSplits.push(split);\\n            } else {\\n                // ELSE update an existing PrizeSplit struct with new parameters\\n                PrizeSplitConfig memory currentSplit = _prizeSplits[index];\\n\\n                // IF new PrizeSplit DOES NOT match the current PrizeSplit\\n                // WRITE to STORAGE with the new PrizeSplit\\n                if (\\n                    split.target != currentSplit.target ||\\n                    split.percentage != currentSplit.percentage\\n                ) {\\n                    _prizeSplits[index] = split;\\n                } else {\\n                    continue;\\n                }\\n            }\\n\\n            // Emit the added/updated prize split config.\\n            emit PrizeSplitSet(split.target, split.percentage, index);\\n        }\\n\\n        // Remove old prize splits configs. Match storage _prizesSplits.length with the passed newPrizeSplits.length\\n        while (_prizeSplits.length > newPrizeSplitsLength) {\\n            uint256 _index;\\n            unchecked {\\n                _index = _prizeSplits.length - 1;\\n            }\\n            _prizeSplits.pop();\\n            emit PrizeSplitRemoved(_index);\\n        }\\n\\n        // Total prize split do not exceed 100%\\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \\\"PrizeSplit/invalid-prizesplit-percentage-total\\\");\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function setPrizeSplit(PrizeSplitConfig memory _prizeSplit, uint8 _prizeSplitIndex)\\n        external\\n        override\\n        onlyOwner\\n    {\\n        require(_prizeSplitIndex < _prizeSplits.length, \\\"PrizeSplit/nonexistent-prizesplit\\\");\\n        require(_prizeSplit.target != address(0), \\\"PrizeSplit/invalid-prizesplit-target\\\");\\n\\n        // Update the prize split config\\n        _prizeSplits[_prizeSplitIndex] = _prizeSplit;\\n\\n        // Total prize split do not exceed 100%\\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \\\"PrizeSplit/invalid-prizesplit-percentage-total\\\");\\n\\n        // Emit updated prize split config\\n        emit PrizeSplitSet(\\n            _prizeSplit.target,\\n            _prizeSplit.percentage,\\n            _prizeSplitIndex\\n        );\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates total prize split percentage amount.\\n     * @dev Calculates total PrizeSplitConfig percentage(s) amount. Used to check the total does not exceed 100% of award distribution.\\n     * @return Total prize split(s) percentage amount\\n     */\\n    function _totalPrizeSplitPercentageAmount() internal view returns (uint256) {\\n        uint256 _tempTotalPercentage;\\n        uint256 prizeSplitsLength = _prizeSplits.length;\\n\\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\\n            _tempTotalPercentage += _prizeSplits[index].percentage;\\n        }\\n\\n        return _tempTotalPercentage;\\n    }\\n\\n    /**\\n     * @notice Distributes prize split(s).\\n     * @dev Distributes prize split(s) by awarding ticket or sponsorship tokens.\\n     * @param _prize Starting prize award amount\\n     * @return The remainder after splits are taken\\n     */\\n    function _distributePrizeSplits(uint256 _prize) internal returns (uint256) {\\n        uint256 _prizeTemp = _prize;\\n        uint256 prizeSplitsLength = _prizeSplits.length;\\n\\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\\n            PrizeSplitConfig memory split = _prizeSplits[index];\\n            uint256 _splitAmount = (_prize * split.percentage) / 1000;\\n\\n            // Award the prize split distribution amount.\\n            _awardPrizeSplitAmount(split.target, _splitAmount);\\n\\n            // Update the remaining prize amount after distributing the prize split percentage.\\n            _prizeTemp -= _splitAmount;\\n        }\\n\\n        return _prizeTemp;\\n    }\\n\\n    /**\\n     * @notice Mints ticket or sponsorship tokens to prize split recipient.\\n     * @dev Mints ticket or sponsorship tokens to prize split recipient via the linked PrizePool contract.\\n     * @param _target Recipient of minted tokens\\n     * @param _amount Amount of minted tokens\\n     */\\n    function _awardPrizeSplitAmount(address _target, uint256 _amount) internal virtual;\\n}\\n\",\"keccak256\":\"0x1d11be0738fa1cbcfd6ad33a417c30116cd202a311828e3cfe6a176eaee53dbe\",\"license\":\"GPL-3.0\"},\"contracts/prize-strategy/PrizeSplitStrategy.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./PrizeSplit.sol\\\";\\nimport \\\"../interfaces/IStrategy.sol\\\";\\nimport \\\"../interfaces/IPrizePool.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeSplitStrategy\\n  * @author PoolTogether Inc Team\\n  * @notice Captures PrizePool interest for PrizeReserve and additional PrizeSplit recipients.\\n            The PrizeSplitStrategy will have at minimum a single PrizeSplit with 100% of the captured\\n            interest transfered to the PrizeReserve. Additional PrizeSplits can be added, depending on\\n            the deployers requirements (i.e. percentage to charity). In contrast to previous PoolTogether\\n            iterations, interest can be captured independent of a new Draw. Ideally (to save gas) interest\\n            is only captured when also distributing the captured prize(s) to applicable Prize Distributor(s).\\n*/\\ncontract PrizeSplitStrategy is PrizeSplit, IStrategy {\\n    /**\\n     * @notice PrizePool address\\n     */\\n    IPrizePool internal immutable prizePool;\\n\\n    /**\\n     * @notice Deployed Event\\n     * @param owner Contract owner\\n     * @param prizePool Linked PrizePool contract\\n     */\\n    event Deployed(address indexed owner, IPrizePool prizePool);\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Deploy the PrizeSplitStrategy smart contract.\\n     * @param _owner     Owner address\\n     * @param _prizePool PrizePool address\\n     */\\n    constructor(address _owner, IPrizePool _prizePool) Ownable(_owner) {\\n        require(\\n            address(_prizePool) != address(0),\\n            \\\"PrizeSplitStrategy/prize-pool-not-zero-address\\\"\\n        );\\n        prizePool = _prizePool;\\n        emit Deployed(_owner, _prizePool);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IStrategy\\n    function distribute() external override returns (uint256) {\\n        uint256 prize = prizePool.captureAwardBalance();\\n\\n        if (prize == 0) return 0;\\n\\n        uint256 prizeRemaining = _distributePrizeSplits(prize);\\n\\n        emit Distributed(prize - prizeRemaining);\\n\\n        return prize;\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function getPrizePool() external view override returns (IPrizePool) {\\n        return prizePool;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Award ticket tokens to prize split recipient.\\n     * @dev Award ticket tokens to prize split recipient via the linked PrizePool contract.\\n     * @param _to Recipient of minted tokens.\\n     * @param _amount Amount of minted tokens.\\n     */\\n    function _awardPrizeSplitAmount(address _to, uint256 _amount) internal override {\\n        IControlledToken _ticket = prizePool.getTicket();\\n        prizePool.award(_to, _amount);\\n        emit PrizeSplitAwarded(_to, _amount, _ticket);\\n    }\\n}\\n\",\"keccak256\":\"0x96db683d90ff551b707be4868fa227c0d1be35d1f58897d084e09cc5a115913b\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/prize-strategy/PrizeSplitStrategy.sol:PrizeSplitStrategy",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/prize-strategy/PrizeSplitStrategy.sol:PrizeSplitStrategy",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 15252,
                "contract": "contracts/prize-strategy/PrizeSplitStrategy.sol:PrizeSplitStrategy",
                "label": "_prizeSplits",
                "offset": 0,
                "slot": "2",
                "type": "t_array(t_struct(PrizeSplitConfig)11903_storage)dyn_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(PrizeSplitConfig)11903_storage)dyn_storage": {
                "base": "t_struct(PrizeSplitConfig)11903_storage",
                "encoding": "dynamic_array",
                "label": "struct IPrizeSplit.PrizeSplitConfig[]",
                "numberOfBytes": "32"
              },
              "t_struct(PrizeSplitConfig)11903_storage": {
                "encoding": "inplace",
                "label": "struct IPrizeSplit.PrizeSplitConfig",
                "members": [
                  {
                    "astId": 11900,
                    "contract": "contracts/prize-strategy/PrizeSplitStrategy.sol:PrizeSplitStrategy",
                    "label": "target",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_address"
                  },
                  {
                    "astId": 11902,
                    "contract": "contracts/prize-strategy/PrizeSplitStrategy.sol:PrizeSplitStrategy",
                    "label": "percentage",
                    "offset": 20,
                    "slot": "0",
                    "type": "t_uint16"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint16": {
                "encoding": "inplace",
                "label": "uint16",
                "numberOfBytes": "2"
              }
            }
          },
          "userdoc": {
            "events": {
              "Deployed(address,address)": {
                "notice": "Deployed Event"
              },
              "Distributed(uint256)": {
                "notice": "Emit when a strategy captures award amount from PrizePool."
              },
              "PrizeSplitAwarded(address,uint256,address)": {
                "notice": "Emit when an individual prize split is awarded."
              },
              "PrizeSplitRemoved(uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is removed."
              },
              "PrizeSplitSet(address,uint16,uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is added or updated."
              }
            },
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Deploy the PrizeSplitStrategy smart contract."
              },
              "distribute()": {
                "notice": "Capture the award balance and distribute to prize splits."
              },
              "getPrizePool()": {
                "notice": "Get PrizePool address"
              },
              "getPrizeSplit(uint256)": {
                "notice": "Read prize split config from active PrizeSplits."
              },
              "getPrizeSplits()": {
                "notice": "Read all prize splits configs."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "notice": "Updates a previously set prize split config."
              },
              "setPrizeSplits((address,uint16)[])": {
                "notice": "Set and remove prize split(s) configs. Only callable by owner."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "Captures PrizePool interest for PrizeReserve and additional PrizeSplit recipients. The PrizeSplitStrategy will have at minimum a single PrizeSplit with 100% of the captured interest transfered to the PrizeReserve. Additional PrizeSplits can be added, depending on the deployers requirements (i.e. percentage to charity). In contrast to previous PoolTogether iterations, interest can be captured independent of a new Draw. Ideally (to save gas) interest is only captured when also distributing the captured prize(s) to applicable Prize Distributor(s).",
            "version": 1
          }
        }
      },
      "contracts/test/DrawBeaconHarness.sol": {
        "DrawBeaconHarness": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "_drawBuffer",
                  "type": "address"
                },
                {
                  "internalType": "contract RNGInterface",
                  "name": "_rng",
                  "type": "address"
                },
                {
                  "internalType": "uint32",
                  "name": "_nextDrawId",
                  "type": "uint32"
                },
                {
                  "internalType": "uint64",
                  "name": "_beaconPeriodStart",
                  "type": "uint64"
                },
                {
                  "internalType": "uint32",
                  "name": "_drawPeriodSeconds",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "_rngTimeout",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "drawPeriodSeconds",
                  "type": "uint32"
                }
              ],
              "name": "BeaconPeriodSecondsUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint64",
                  "name": "startedAt",
                  "type": "uint64"
                }
              ],
              "name": "BeaconPeriodStarted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "nextDrawId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint64",
                  "name": "beaconPeriodStartedAt",
                  "type": "uint64"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IDrawBuffer",
                  "name": "newDrawBuffer",
                  "type": "address"
                }
              ],
              "name": "DrawBufferUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "rngRequestId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "rngLockBlock",
                  "type": "uint32"
                }
              ],
              "name": "DrawCancelled",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "randomNumber",
                  "type": "uint256"
                }
              ],
              "name": "DrawCompleted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "rngRequestId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "rngLockBlock",
                  "type": "uint32"
                }
              ],
              "name": "DrawStarted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract RNGInterface",
                  "name": "rngService",
                  "type": "address"
                }
              ],
              "name": "RngServiceUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "rngTimeout",
                  "type": "uint32"
                }
              ],
              "name": "RngTimeoutSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "_currentTimeInternal",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "beaconPeriodEndAt",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "beaconPeriodRemainingSeconds",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "_time",
                  "type": "uint64"
                }
              ],
              "name": "calculateNextBeaconPeriodStartTime",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "calculateNextBeaconPeriodStartTimeFromCurrentTime",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "canCompleteDraw",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "canStartDraw",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "cancelDraw",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "completeDraw",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "currentTime",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBeaconPeriodSeconds",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBeaconPeriodStartedAt",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLastRngLockBlock",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLastRngRequestId",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getNextDrawId",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getRngService",
              "outputs": [
                {
                  "internalType": "contract RNGInterface",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getRngTimeout",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isBeaconPeriodOver",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isRngCompleted",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isRngRequested",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isRngTimedOut",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_beaconPeriodSeconds",
                  "type": "uint32"
                }
              ],
              "name": "setBeaconPeriodSeconds",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "_time",
                  "type": "uint64"
                }
              ],
              "name": "setCurrentTime",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "newDrawBuffer",
                  "type": "address"
                }
              ],
              "name": "setDrawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "lockBlock",
                  "type": "uint32"
                }
              ],
              "name": "setRngRequest",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract RNGInterface",
                  "name": "_rngService",
                  "type": "address"
                }
              ],
              "name": "setRngService",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_rngTimeout",
                  "type": "uint32"
                }
              ],
              "name": "setRngTimeout",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "startDraw",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "beaconPeriodEndAt()": {
                "returns": {
                  "_0": "The timestamp at which the beacon period ends."
                }
              },
              "beaconPeriodRemainingSeconds()": {
                "returns": {
                  "_0": "The number of seconds remaining until the beacon period can be complete."
                }
              },
              "calculateNextBeaconPeriodStartTime(uint64)": {
                "params": {
                  "time": "The timestamp to use as the current time"
                },
                "returns": {
                  "_0": "The timestamp at which the next beacon period would start"
                }
              },
              "calculateNextBeaconPeriodStartTimeFromCurrentTime()": {
                "returns": {
                  "_0": "The next beacon period start time"
                }
              },
              "canCompleteDraw()": {
                "returns": {
                  "_0": "True if a Draw can be completed, false otherwise."
                }
              },
              "canStartDraw()": {
                "returns": {
                  "_0": "True if a Draw can be started, false otherwise."
                }
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "getLastRngLockBlock()": {
                "returns": {
                  "_0": "The block number that the RNG request is locked to"
                }
              },
              "getLastRngRequestId()": {
                "returns": {
                  "_0": "The current Request ID"
                }
              },
              "isBeaconPeriodOver()": {
                "returns": {
                  "_0": "True if the beacon period is over, false otherwise"
                }
              },
              "isRngCompleted()": {
                "returns": {
                  "_0": "True if a random number request has completed, false otherwise."
                }
              },
              "isRngRequested()": {
                "returns": {
                  "_0": "True if a random number has been requested, false otherwise."
                }
              },
              "isRngTimedOut()": {
                "returns": {
                  "_0": "True if a random number request has timed out, false otherwise."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setBeaconPeriodSeconds(uint32)": {
                "params": {
                  "beaconPeriodSeconds": "The new beacon period in seconds.  Must be greater than zero."
                }
              },
              "setDrawBuffer(address)": {
                "details": "All subsequent Draw requests/completions will be pushed to the new DrawBuffer.",
                "params": {
                  "newDrawBuffer": "DrawBuffer address"
                },
                "returns": {
                  "_0": "DrawBuffer"
                }
              },
              "setRngService(address)": {
                "params": {
                  "rngService": "The address of the new RNG service interface"
                }
              },
              "setRngTimeout(uint32)": {
                "params": {
                  "rngTimeout": "The RNG request timeout in seconds."
                }
              },
              "startDraw()": {
                "details": "The RNG-Request-Fee is expected to be held within this contract before calling this function"
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_15758": {
                  "entryPoint": null,
                  "id": 15758,
                  "parameterSlots": 7,
                  "returnSlots": 0
                },
                "@_3961": {
                  "entryPoint": null,
                  "id": 3961,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_5471": {
                  "entryPoint": null,
                  "id": 5471,
                  "parameterSlots": 7,
                  "returnSlots": 0
                },
                "@_setBeaconPeriodSeconds_6144": {
                  "entryPoint": 662,
                  "id": 6144,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setDrawBuffer_6122": {
                  "entryPoint": 843,
                  "id": 6122,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_4058": {
                  "entryPoint": 582,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngService_5953": {
                  "entryPoint": 1153,
                  "id": 5953,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngTimeout_6166": {
                  "entryPoint": 1227,
                  "id": 6166,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$11318t_contract$_RNGInterface_$4142t_uint32t_uint64t_uint32t_uint32_fromMemory": {
                  "entryPoint": 1436,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 7
                },
                "abi_decode_uint32_fromMemory": {
                  "entryPoint": 1410,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2e1f6f2153738bab0f111b529052ab9d11cec8be1adca6d957057b7794d36189__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d15f1d335d4e5d31fe5a2ef60ebf117a328854d80ecc8b909c3df0aa87e4a529__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 1607,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:4142:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "73:108:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "83:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "98:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "92:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "92:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "83:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "159:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "168:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "171:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "161:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "161:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "161:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "127:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "138:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "145:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "134:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "134:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "124:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "124:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "117:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "117:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "114:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "63:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:167:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "407:766:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "463:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "466:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "428:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "437:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "424:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "424:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "449:3:84",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "420:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "420:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "417:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "479:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "498:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "492:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "492:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "483:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "542:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "517:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "517:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "517:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "557:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "567:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "557:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "581:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "606:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "617:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "602:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "602:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "596:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "596:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "585:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "655:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "630:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "630:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "630:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "672:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "682:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "672:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "698:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "723:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "734:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "719:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "719:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "713:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "713:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "702:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "772:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "747:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "747:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "747:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "789:17:84",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "799:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "789:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "815:58:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "858:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "869:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "854:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "854:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "825:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "825:48:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "815:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "882:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "907:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "918:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "903:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "903:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "897:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "897:26:84"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "886:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "989:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "998:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1001:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "991:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "991:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "991:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "945:7:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "958:7:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "975:2:84",
                                                    "type": "",
                                                    "value": "64"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "979:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "971:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "971:10:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "983:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "967:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "967:18:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "954:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "954:32:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "942:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "942:45:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "935:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "935:53:84"
                              },
                              "nodeType": "YulIf",
                              "src": "932:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1014:17:84",
                              "value": {
                                "name": "value_3",
                                "nodeType": "YulIdentifier",
                                "src": "1024:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "1014:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1040:59:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1083:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1094:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1079:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1079:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1050:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1050:49:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "1040:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1108:59:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1151:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1162:3:84",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1147:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1147:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1118:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1118:49:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value6",
                                  "nodeType": "YulIdentifier",
                                  "src": "1108:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$11318t_contract$_RNGInterface_$4142t_uint32t_uint64t_uint32t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "325:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "336:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "348:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "356:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "364:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "372:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "380:6:84",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "388:6:84",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "396:6:84",
                            "type": ""
                          }
                        ],
                        "src": "186:987:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1352:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1369:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1380:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1362:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1362:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1362:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1403:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1414:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1399:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1399:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1419:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1392:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1392:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1392:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1442:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1453:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1438:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1438:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f6e6578742d647261772d69642d6774652d6f6e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1458:33:84",
                                    "type": "",
                                    "value": "DrawBeacon/next-draw-id-gte-one"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1431:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1431:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1431:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1501:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1513:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1524:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1509:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1509:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1501:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2e1f6f2153738bab0f111b529052ab9d11cec8be1adca6d957057b7794d36189__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1329:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1343:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1178:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1712:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1729:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1740:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1722:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1722:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1722:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1763:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1774:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1759:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1759:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1779:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1752:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1752:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1752:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1802:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1813:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1798:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1798:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f6578697374696e672d647261772d686973746f7279",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1818:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/existing-draw-history"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1791:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1791:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1791:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1873:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1884:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1869:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1869:18:84"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1889:10:84",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1862:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1862:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1862:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1909:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1921:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1932:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1917:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1917:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1909:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1689:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1703:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1538:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2121:232:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2138:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2149:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2131:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2131:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2131:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2172:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2183:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2168:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2168:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2188:2:84",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2161:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2161:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2161:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2211:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2222:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2207:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2207:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d67726561746572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2227:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/beacon-period-greater"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2200:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2200:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2200:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2282:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2293:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2278:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2278:18:84"
                                  },
                                  {
                                    "hexValue": "2d7468616e2d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2298:12:84",
                                    "type": "",
                                    "value": "-than-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2271:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2271:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2271:40:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2320:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2332:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2343:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2328:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2328:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2320:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2098:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2112:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1947:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2532:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2549:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2560:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2542:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2542:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2542:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2583:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2594:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2579:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2579:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2599:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2572:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2572:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2572:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2622:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2633:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2618:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2618:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d74696d656f75742d67742d36302d736563",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2638:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-timeout-gt-60-sec"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2611:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2611:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2611:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2693:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2704:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2689:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2689:18:84"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2709:3:84",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2682:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2682:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2682:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2722:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2734:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2745:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2730:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2730:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2722:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2509:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2523:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2358:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2934:173:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2951:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2962:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2944:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2944:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2944:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2985:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2996:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2981:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2981:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3001:2:84",
                                    "type": "",
                                    "value": "23"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2974:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2974:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2974:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3024:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3035:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3020:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3020:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3040:25:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3013:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3013:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3013:53:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3075:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3087:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3098:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3083:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3083:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3075:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d15f1d335d4e5d31fe5a2ef60ebf117a328854d80ecc8b909c3df0aa87e4a529__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2911:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2925:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2760:347:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3286:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3303:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3314:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3296:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3296:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3296:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3337:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3348:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3333:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3333:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3353:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3326:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3326:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3326:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3376:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3387:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3372:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3372:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3392:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/draw-history-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3365:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3365:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3365:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3447:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3458:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3443:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3443:18:84"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3463:10:84",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3436:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3436:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3436:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3483:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3495:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3506:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3491:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3491:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3483:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3263:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3277:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3112:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3620:93:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3630:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3642:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3653:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3638:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3638:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3630:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3672:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3687:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3695:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3683:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3683:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3665:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3665:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3665:42:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3589:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3600:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3611:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3521:192:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3843:161:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3853:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3865:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3876:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3861:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3861:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3853:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3895:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3910:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3918:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3906:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3906:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3888:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3888:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3888:42:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3950:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3961:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3946:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3946:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3970:6:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3986:2:84",
                                                "type": "",
                                                "value": "64"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3990:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "3982:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3982:10:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3994:1:84",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "3978:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3978:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3966:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3966:31:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3939:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3939:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3939:59:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3804:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3815:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3823:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3834:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3718:286:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4054:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4118:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4127:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4130:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4120:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4120:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4120:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4077:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4088:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "4103:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "4108:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4099:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "4099:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4112:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "4095:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4095:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4084:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4084:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "4074:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4074:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4067:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4067:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4064:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4043:5:84",
                            "type": ""
                          }
                        ],
                        "src": "4009:131:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_uint32_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$11318t_contract$_RNGInterface_$4142t_uint32t_uint64t_uint32t_uint32_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        value3 := abi_decode_uint32_fromMemory(add(headStart, 96))\n        let value_3 := mload(add(headStart, 128))\n        if iszero(eq(value_3, and(value_3, sub(shl(64, 1), 1)))) { revert(0, 0) }\n        value4 := value_3\n        value5 := abi_decode_uint32_fromMemory(add(headStart, 160))\n        value6 := abi_decode_uint32_fromMemory(add(headStart, 192))\n    }\n    function abi_encode_tuple_t_stringliteral_2e1f6f2153738bab0f111b529052ab9d11cec8be1adca6d957057b7794d36189__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"DrawBeacon/next-draw-id-gte-one\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"DrawBeacon/existing-draw-history\")\n        mstore(add(headStart, 96), \"-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"DrawBeacon/beacon-period-greater\")\n        mstore(add(headStart, 96), \"-than-zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-timeout-gt-60-sec\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d15f1d335d4e5d31fe5a2ef60ebf117a328854d80ecc8b909c3df0aa87e4a529__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 23)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"DrawBeacon/draw-history-not-zero\")\n        mstore(add(headStart, 96), \"-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, sub(shl(64, 1), 1)))\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b50604051620025c8380380620025c883398101604081905262000034916200059c565b8686868686868686620000478162000246565b506000836001600160401b031611620000a95760405162461bcd60e51b815260206004820152602a6024820152600080516020620025a88339815191526044820152692d7468616e2d7a65726f60b01b60648201526084015b60405180910390fd5b6001600160a01b038516620001015760405162461bcd60e51b815260206004820152601760248201527f44726177426561636f6e2f726e672d6e6f742d7a65726f0000000000000000006044820152606401620000a0565b60018463ffffffff1610156200015a5760405162461bcd60e51b815260206004820152601f60248201527f44726177426561636f6e2f6e6578742d647261772d69642d6774652d6f6e65006044820152606401620000a0565b6005805463ffffffff861668010000000000000000026001600160601b03199091166001600160401b03861617179055620001958262000296565b620001a0866200034b565b50620001ac8562000481565b620001b781620004cb565b6040805163ffffffff861681526001600160401b03851660208201527f3125f2f28108d5eabe48aa2a11adff21d6f9244f0436278992999404ba4fc5ad910160405180910390a16040516001600160401b038416907f9e5f7e6ac833c4735b5548bbeec59dac4d413789aa351fbe11a654dac0c4306c90600090a2505050505050505050505050505062000660565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008163ffffffff1611620002f05760405162461bcd60e51b815260206004820152602a6024820152600080516020620025a88339815191526044820152692d7468616e2d7a65726f60b01b6064820152608401620000a0565b6004805463ffffffff60c01b1916600160c01b63ffffffff8416908102919091179091556040519081527f4727494dbd863e2084366f539d6ec569aaf7ab78582a34f006f004266777cd19906020015b60405180910390a150565b6004546000906001600160a01b03908116908316620003be5760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f6044820152672d6164647265737360c01b6064820152608401620000a0565b806001600160a01b0316836001600160a01b03161415620004335760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f6578697374696e672d647261772d686973746f72796044820152672d6164647265737360c01b6064820152608401620000a0565b600480546001600160a01b0319166001600160a01b0385169081179091556040517feb70b03fab908e126e5efc33f8dfd2731fa89c716282a86769025f8dd4a6c1e090600090a25090919050565b600280546001600160a01b0319166001600160a01b0383169081179091556040517ff935763cc7c57ee8ed6318ed71e756cca0731294c9f46ff5b386f36d6ff1417a90600090a250565b603c8163ffffffff16116200052d5760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f726e672d74696d656f75742d67742d36302d7365636044820152607360f81b6064820152608401620000a0565b6004805463ffffffff60a01b1916600160a01b63ffffffff8416908102919091179091556040519081527f521671714dd36d366adf3fe2efec91d3f58a3131aad68e268821d8144b5d08459060200162000340565b805163ffffffff811681146200059757600080fd5b919050565b600080600080600080600060e0888a031215620005b857600080fd5b8751620005c58162000647565b6020890151909750620005d88162000647565b6040890151909650620005eb8162000647565b9450620005fb6060890162000582565b60808901519094506001600160401b03811681146200061957600080fd5b92506200062960a0890162000582565b91506200063960c0890162000582565b905092959891949750929550565b6001600160a01b03811681146200065d57600080fd5b50565b611f3880620006706000396000f3fe608060405234801561001057600080fd5b50600436106102265760003560e01c8063715018a61161012a578063a104fd79116100bd578063d18e81b31161008c578063e30c397811610071578063e30c3978146104b6578063e4a75bb8146104c7578063f2fde38b146104cf57600080fd5b8063d18e81b314610495578063d1e77657146104ae57600080fd5b8063a104fd791461044d578063a3ae35ab14610455578063ab70d49c14610468578063c57708c21461047b57600080fd5b80637f4296d7116100f95780637f4296d71461040e57806389c36f8e146104215780638da5cb5b14610429578063919bead01461043a57600080fd5b8063715018a6146103e5578063738bbea8146103ed57806375e38f16146103f55780637ce52b18146103fd57600080fd5b806339f92c30116101bd5780634aba4f6b1161018c5780635020ea56116101715780635020ea561461037e578063642d43db146103915780636bea5344146103cf57600080fd5b80634aba4f6b1461036e5780634e71e0c81461037657600080fd5b806339f92c301461031a5780633e7a39081461032c5780634019f2d614610341578063412a616a1461036657600080fd5b8063111070e4116101f9578063111070e4146102bd5780631b5344a2146102cd5780632a7ad609146103045780632ae168a61461031257600080fd5b80630996f6e11461022b57806309ad71a5146102485780630bdeecbd1461029a5780630d2bcb79146102a2575b600080fd5b6102336104e2565b60405190151581526020015b60405180910390f35b610298610256366004611cdf565b6005805467ffffffffffffffff909216600160601b027fffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffff909216919091179055565b005b610298610503565b425b60405167ffffffffffffffff909116815260200161023f565b60035463ffffffff161515610233565b60045474010000000000000000000000000000000000000000900463ffffffff165b60405163ffffffff909116815260200161023f565b60035463ffffffff166102ef565b6102986108c6565b60055467ffffffffffffffff166102a4565b600454600160c01b900463ffffffff166102ef565b6004546001600160a01b03165b6040516001600160a01b03909116815260200161023f565b610298610bcf565b610233610c99565b610298610d38565b61029861038c366004611c3d565b610dc6565b61029861039f366004611c77565b6003805463ffffffff9283166401000000000267ffffffffffffffff199091169290931691909117919091179055565b600354640100000000900463ffffffff166102ef565b610298610e43565b610233610eb8565b6102a4610f41565b6002546001600160a01b031661034e565b61029861041c366004611bb7565b610f4b565b6102a4610fc5565b6000546001600160a01b031661034e565b610298610448366004611c3d565b610ffb565b6102a4611075565b6102a4610463366004611cdf565b61107f565b61034e610476366004611bb7565b6110b2565b60055468010000000000000000900463ffffffff166102ef565b600554600160601b900467ffffffffffffffff166102a4565b610233611126565b6001546001600160a01b031661034e565b610233611130565b6102986104dd366004611bb7565b611152565b60006104ec61128e565b80156104fe575060035463ffffffff16155b905090565b60035463ffffffff1661055d5760405162461bcd60e51b815260206004820152601c60248201527f44726177426561636f6e2f726e672d6e6f742d7265717565737465640000000060448201526064015b60405180910390fd5b610565610c99565b6105b15760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d636f6d706c65746500000000006044820152606401610554565b6002546003546040517f9d2a5f9800000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690639d2a5f9890602401602060405180830381600087803b15801561061a57600080fd5b505af115801561062e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106529190611c24565b60055460045491925063ffffffff68010000000000000000820481169267ffffffffffffffff90921691600160c01b90041660006106a160055467ffffffffffffffff600160601b9091041690565b6040805160a08101825287815263ffffffff8781166020830190815260035468010000000000000000900467ffffffffffffffff90811684860190815289821660608601908152898516608087019081526004805498517f089eb925000000000000000000000000000000000000000000000000000000008152885191810191909152945186166024860152915183166044850152519091166064830152519091166084820152929350916001600160a01b039091169063089eb9259060a401602060405180830381600087803b15801561077b57600080fd5b505af115801561078f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b39190611c5a565b5060006107c18585856112be565b6005805467ffffffffffffffff191667ffffffffffffffff831617905590506107eb866001611d8e565b6005805463ffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff909216919091179055600380547fffffffffffffffffffffffffffffffff000000000000000000000000000000001690556040518781527f13f646a3648ee5b5a0e8d6bc3d2d623fddf38fa7c8c5dfdbdbe6a913112edc6c9060200160405180910390a160405167ffffffffffffffff8216907f9e5f7e6ac833c4735b5548bbeec59dac4d413789aa351fbe11a654dac0c4306c90600090a250505050505050565b6108ce61128e565b6109405760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6e6f742d6f766560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610554565b60035463ffffffff16156109965760405162461bcd60e51b815260206004820181905260248201527f44726177426561636f6e2f726e672d616c72656164792d7265717565737465646044820152606401610554565b600254604080517f0d37b537000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692630d37b5379260048083019392829003018186803b1580156109f457600080fd5b505afa158015610a08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2c9190611bd4565b90925090506001600160a01b03821615801590610a495750600081115b15610a6857600254610a68906001600160a01b03848116911683611303565b600254604080517f8678a7b2000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692638678a7b2926004808301939282900301818787803b158015610ac757600080fd5b505af1158015610adb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aff9190611cb0565b6003805463ffffffff8084166401000000000267ffffffffffffffff19909216908516171790559092509050610b4660055467ffffffffffffffff600160601b9091041690565b6003805467ffffffffffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff90921691909117905560405163ffffffff82811682528316907f0de3a7af7d3c2126e4fb96a7065b39f8bb17e3b9111c092e11236942fb38ca619060200160405180910390a250505050565b610bd7610eb8565b610c235760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d74696d65646f757400000000006044820152606401610554565b600380547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811690915560405163ffffffff640100000000830481168083529216919082907f67638a3a7093a89cc6046dca58aa93d6343e30847e8f84fc3759d9d4a3e6e38b9060200160405180910390a25050565b6002546003546040517f3a19b9bc00000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690633a19b9bc9060240160206040518083038186803b158015610d0057600080fd5b505afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104fe9190611c02565b6001546001600160a01b03163314610d925760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610554565b600154610da7906001600160a01b0316611433565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b33610dd96000546001600160a01b031690565b6001600160a01b031614610e2f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610554565b610e37611490565b610e408161150a565b50565b33610e566000546001600160a01b031690565b6001600160a01b031614610eac5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610554565b610eb66000611433565b565b60035460009068010000000000000000900467ffffffffffffffff16610ede5750600090565b60055460035460045467ffffffffffffffff600160601b909304831692610f3192680100000000000000009004169063ffffffff7401000000000000000000000000000000000000000090910416611db6565b67ffffffffffffffff1610905090565b60006104fe61160a565b33610f5e6000546001600160a01b031690565b6001600160a01b031614610fb45760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610554565b610fbc611490565b610e408161166b565b6005546004546000916104fe9167ffffffffffffffff80831692600160c01b90920463ffffffff1691600160601b9004166112be565b3361100e6000546001600160a01b031690565b6001600160a01b0316146110645760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610554565b61106c611490565b610e40816116c2565b60006104fe6117aa565b6005546004546000916110ac9167ffffffffffffffff90911690600160c01b900463ffffffff16846112be565b92915050565b6000336110c76000546001600160a01b031690565b6001600160a01b03161461111d5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610554565b6110ac826117d5565b60006104fe61128e565b600061114360035463ffffffff16151590565b80156104fe57506104fe610c99565b336111656000546001600160a01b031690565b6001600160a01b0316146111bb5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610554565b6001600160a01b0381166112375760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610554565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600554600090600160601b900467ffffffffffffffff166112ad6117aa565b67ffffffffffffffff161115905090565b60008063ffffffff84166112d28685611e57565b6112dc9190611dd9565b90506112ee63ffffffff851682611e27565b6112f89086611db6565b9150505b9392505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b15801561136857600080fd5b505afa15801561137c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a09190611c24565b6113aa9190611d76565b604080516001600160a01b038616602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b30000000000000000000000000000000000000000000000000000000017905290915061142d90859061193e565b50505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6003544390640100000000900463ffffffff1615806114be5750600354640100000000900463ffffffff1681105b610e405760405162461bcd60e51b815260206004820152601860248201527f44726177426561636f6e2f726e672d696e2d666c6967687400000000000000006044820152606401610554565b603c8163ffffffff16116115865760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f726e672d74696d656f75742d67742d36302d73656360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610554565b600480547fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000063ffffffff8416908102919091179091556040519081527f521671714dd36d366adf3fe2efec91d3f58a3131aad68e268821d8144b5d0845906020015b60405180910390a150565b6000806116156117aa565b9050600061163460055467ffffffffffffffff600160601b9091041690565b90508067ffffffffffffffff168267ffffffffffffffff161161165a5760009250505090565b6116648183611e57565b9250505090565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517ff935763cc7c57ee8ed6318ed71e756cca0731294c9f46ff5b386f36d6ff1417a90600090a250565b60008163ffffffff161161173e5760405162461bcd60e51b815260206004820152602a60248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6772656174657260448201527f2d7468616e2d7a65726f000000000000000000000000000000000000000000006064820152608401610554565b600480547fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b63ffffffff8416908102919091179091556040519081527f4727494dbd863e2084366f539d6ec569aaf7ab78582a34f006f004266777cd19906020016115ff565b6004546005546000916104fe91600160c01b90910463ffffffff169067ffffffffffffffff16611db6565b6004546000906001600160a01b0390811690831661185b5760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f60448201527f2d616464726573730000000000000000000000000000000000000000000000006064820152608401610554565b806001600160a01b0316836001600160a01b031614156118e35760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f6578697374696e672d647261772d686973746f727960448201527f2d616464726573730000000000000000000000000000000000000000000000006064820152608401610554565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385169081179091556040517feb70b03fab908e126e5efc33f8dfd2731fa89c716282a86769025f8dd4a6c1e090600090a25090919050565b6000611993826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611a289092919063ffffffff16565b805190915015611a2357808060200190518101906119b19190611c02565b611a235760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610554565b505050565b6060611a378484600085611a3f565b949350505050565b606082471015611ab75760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610554565b843b611b055760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610554565b600080866001600160a01b03168587604051611b219190611d09565b60006040518083038185875af1925050503d8060008114611b5e576040519150601f19603f3d011682016040523d82523d6000602084013e611b63565b606091505b5091509150611b73828286611b7e565b979650505050505050565b60608315611b8d5750816112fc565b825115611b9d5782518084602001fd5b8160405162461bcd60e51b81526004016105549190611d25565b600060208284031215611bc957600080fd5b81356112fc81611edb565b60008060408385031215611be757600080fd5b8251611bf281611edb565b6020939093015192949293505050565b600060208284031215611c1457600080fd5b815180151581146112fc57600080fd5b600060208284031215611c3657600080fd5b5051919050565b600060208284031215611c4f57600080fd5b81356112fc81611ef0565b600060208284031215611c6c57600080fd5b81516112fc81611ef0565b60008060408385031215611c8a57600080fd5b8235611c9581611ef0565b91506020830135611ca581611ef0565b809150509250929050565b60008060408385031215611cc357600080fd5b8251611cce81611ef0565b6020840151909250611ca581611ef0565b600060208284031215611cf157600080fd5b813567ffffffffffffffff811681146112fc57600080fd5b60008251611d1b818460208701611e80565b9190910192915050565b6020815260008251806020840152611d44816040850160208701611e80565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008219821115611d8957611d89611eac565b500190565b600063ffffffff808316818516808303821115611dad57611dad611eac565b01949350505050565b600067ffffffffffffffff808316818516808303821115611dad57611dad611eac565b600067ffffffffffffffff80841680611e1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b92169190910492915050565b600067ffffffffffffffff80831681851681830481118215151615611e4e57611e4e611eac565b02949350505050565b600067ffffffffffffffff83811690831681811015611e7857611e78611eac565b039392505050565b60005b83811015611e9b578181015183820152602001611e83565b8381111561142d5750506000910152565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6001600160a01b0381168114610e4057600080fd5b63ffffffff81168114610e4057600080fdfea26469706673582212205860c520822e64c68b1aa2d7645cf3d01b12ec6e622d49b3ce172b5b61a51b1d64736f6c6343000806003344726177426561636f6e2f626561636f6e2d706572696f642d67726561746572",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x25C8 CODESIZE SUB DUP1 PUSH3 0x25C8 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x59C JUMP JUMPDEST DUP7 DUP7 DUP7 DUP7 DUP7 DUP7 DUP7 DUP7 PUSH3 0x47 DUP2 PUSH3 0x246 JUMP JUMPDEST POP PUSH1 0x0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND GT PUSH3 0xA9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x25A8 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x2D7468616E2D7A65726F PUSH1 0xB0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH3 0x101 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D7A65726F000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0xA0 JUMP JUMPDEST PUSH1 0x1 DUP5 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH3 0x15A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F6E6578742D647261772D69642D6774652D6F6E6500 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0xA0 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH4 0xFFFFFFFF DUP7 AND PUSH9 0x10000000000000000 MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND OR OR SWAP1 SSTORE PUSH3 0x195 DUP3 PUSH3 0x296 JUMP JUMPDEST PUSH3 0x1A0 DUP7 PUSH3 0x34B JUMP JUMPDEST POP PUSH3 0x1AC DUP6 PUSH3 0x481 JUMP JUMPDEST PUSH3 0x1B7 DUP2 PUSH3 0x4CB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP7 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x3125F2F28108D5EABE48AA2A11ADFF21D6F9244F0436278992999404BA4FC5AD SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND SWAP1 PUSH32 0x9E5F7E6AC833C4735B5548BBEEC59DAC4D413789AA351FBE11A654DAC0C4306C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP POP POP POP POP POP POP POP POP POP POP POP PUSH3 0x660 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND GT PUSH3 0x2F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x25A8 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x2D7468616E2D7A65726F PUSH1 0xB0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0xA0 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xC0 SHL NOT AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x4727494DBD863E2084366F539D6EC569AAF7AB78582A34F006F004266777CD19 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND PUSH3 0x3BE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F647261772D686973746F72792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0x2D61646472657373 PUSH1 0xC0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0xA0 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH3 0x433 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F6578697374696E672D647261772D686973746F7279 PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0x2D61646472657373 PUSH1 0xC0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0xA0 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xEB70B03FAB908E126E5EFC33F8DFD2731FA89C716282A86769025F8DD4A6C1E0 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xF935763CC7C57EE8ED6318ED71E756CCA0731294C9F46FF5B386F36D6FF1417A SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x3C DUP2 PUSH4 0xFFFFFFFF AND GT PUSH3 0x52D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D74696D656F75742D67742D36302D736563 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x73 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0xA0 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xA0 SHL NOT AND PUSH1 0x1 PUSH1 0xA0 SHL PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x521671714DD36D366ADF3FE2EFEC91D3F58A3131AAD68E268821D8144B5D0845 SWAP1 PUSH1 0x20 ADD PUSH3 0x340 JUMP JUMPDEST DUP1 MLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH3 0x597 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH3 0x5B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 MLOAD PUSH3 0x5C5 DUP2 PUSH3 0x647 JUMP JUMPDEST PUSH1 0x20 DUP10 ADD MLOAD SWAP1 SWAP8 POP PUSH3 0x5D8 DUP2 PUSH3 0x647 JUMP JUMPDEST PUSH1 0x40 DUP10 ADD MLOAD SWAP1 SWAP7 POP PUSH3 0x5EB DUP2 PUSH3 0x647 JUMP JUMPDEST SWAP5 POP PUSH3 0x5FB PUSH1 0x60 DUP10 ADD PUSH3 0x582 JUMP JUMPDEST PUSH1 0x80 DUP10 ADD MLOAD SWAP1 SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x619 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP PUSH3 0x629 PUSH1 0xA0 DUP10 ADD PUSH3 0x582 JUMP JUMPDEST SWAP2 POP PUSH3 0x639 PUSH1 0xC0 DUP10 ADD PUSH3 0x582 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x65D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1F38 DUP1 PUSH3 0x670 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 0x226 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x12A JUMPI DUP1 PUSH4 0xA104FD79 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0xD18E81B3 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xE30C3978 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x4B6 JUMPI DUP1 PUSH4 0xE4A75BB8 EQ PUSH2 0x4C7 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x4CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xD18E81B3 EQ PUSH2 0x495 JUMPI DUP1 PUSH4 0xD1E77657 EQ PUSH2 0x4AE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA104FD79 EQ PUSH2 0x44D JUMPI DUP1 PUSH4 0xA3AE35AB EQ PUSH2 0x455 JUMPI DUP1 PUSH4 0xAB70D49C EQ PUSH2 0x468 JUMPI DUP1 PUSH4 0xC57708C2 EQ PUSH2 0x47B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7F4296D7 GT PUSH2 0xF9 JUMPI DUP1 PUSH4 0x7F4296D7 EQ PUSH2 0x40E JUMPI DUP1 PUSH4 0x89C36F8E EQ PUSH2 0x421 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x429 JUMPI DUP1 PUSH4 0x919BEAD0 EQ PUSH2 0x43A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x3E5 JUMPI DUP1 PUSH4 0x738BBEA8 EQ PUSH2 0x3ED JUMPI DUP1 PUSH4 0x75E38F16 EQ PUSH2 0x3F5 JUMPI DUP1 PUSH4 0x7CE52B18 EQ PUSH2 0x3FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x39F92C30 GT PUSH2 0x1BD JUMPI DUP1 PUSH4 0x4ABA4F6B GT PUSH2 0x18C JUMPI DUP1 PUSH4 0x5020EA56 GT PUSH2 0x171 JUMPI DUP1 PUSH4 0x5020EA56 EQ PUSH2 0x37E JUMPI DUP1 PUSH4 0x642D43DB EQ PUSH2 0x391 JUMPI DUP1 PUSH4 0x6BEA5344 EQ PUSH2 0x3CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4ABA4F6B EQ PUSH2 0x36E JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x376 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x39F92C30 EQ PUSH2 0x31A JUMPI DUP1 PUSH4 0x3E7A3908 EQ PUSH2 0x32C JUMPI DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0x341 JUMPI DUP1 PUSH4 0x412A616A EQ PUSH2 0x366 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x111070E4 GT PUSH2 0x1F9 JUMPI DUP1 PUSH4 0x111070E4 EQ PUSH2 0x2BD JUMPI DUP1 PUSH4 0x1B5344A2 EQ PUSH2 0x2CD JUMPI DUP1 PUSH4 0x2A7AD609 EQ PUSH2 0x304 JUMPI DUP1 PUSH4 0x2AE168A6 EQ PUSH2 0x312 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x996F6E1 EQ PUSH2 0x22B JUMPI DUP1 PUSH4 0x9AD71A5 EQ PUSH2 0x248 JUMPI DUP1 PUSH4 0xBDEECBD EQ PUSH2 0x29A JUMPI DUP1 PUSH4 0xD2BCB79 EQ PUSH2 0x2A2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x233 PUSH2 0x4E2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x298 PUSH2 0x256 CALLDATASIZE PUSH1 0x4 PUSH2 0x1CDF JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x60 SHL MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x298 PUSH2 0x503 JUMP JUMPDEST TIMESTAMP JUMPDEST PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x23F JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO ISZERO PUSH2 0x233 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x23F JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x2EF JUMP JUMPDEST PUSH2 0x298 PUSH2 0x8C6 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x2A4 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x2EF JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x23F JUMP JUMPDEST PUSH2 0x298 PUSH2 0xBCF JUMP JUMPDEST PUSH2 0x233 PUSH2 0xC99 JUMP JUMPDEST PUSH2 0x298 PUSH2 0xD38 JUMP JUMPDEST PUSH2 0x298 PUSH2 0x38C CALLDATASIZE PUSH1 0x4 PUSH2 0x1C3D JUMP JUMPDEST PUSH2 0xDC6 JUMP JUMPDEST PUSH2 0x298 PUSH2 0x39F CALLDATASIZE PUSH1 0x4 PUSH2 0x1C77 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH4 0xFFFFFFFF SWAP3 DUP4 AND PUSH5 0x100000000 MUL PUSH8 0xFFFFFFFFFFFFFFFF NOT SWAP1 SWAP2 AND SWAP3 SWAP1 SWAP4 AND SWAP2 SWAP1 SWAP2 OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x2EF JUMP JUMPDEST PUSH2 0x298 PUSH2 0xE43 JUMP JUMPDEST PUSH2 0x233 PUSH2 0xEB8 JUMP JUMPDEST PUSH2 0x2A4 PUSH2 0xF41 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x34E JUMP JUMPDEST PUSH2 0x298 PUSH2 0x41C CALLDATASIZE PUSH1 0x4 PUSH2 0x1BB7 JUMP JUMPDEST PUSH2 0xF4B JUMP JUMPDEST PUSH2 0x2A4 PUSH2 0xFC5 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x34E JUMP JUMPDEST PUSH2 0x298 PUSH2 0x448 CALLDATASIZE PUSH1 0x4 PUSH2 0x1C3D JUMP JUMPDEST PUSH2 0xFFB JUMP JUMPDEST PUSH2 0x2A4 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0x2A4 PUSH2 0x463 CALLDATASIZE PUSH1 0x4 PUSH2 0x1CDF JUMP JUMPDEST PUSH2 0x107F JUMP JUMPDEST PUSH2 0x34E PUSH2 0x476 CALLDATASIZE PUSH1 0x4 PUSH2 0x1BB7 JUMP JUMPDEST PUSH2 0x10B2 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x2EF JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x60 SHL SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x2A4 JUMP JUMPDEST PUSH2 0x233 PUSH2 0x1126 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x34E JUMP JUMPDEST PUSH2 0x233 PUSH2 0x1130 JUMP JUMPDEST PUSH2 0x298 PUSH2 0x4DD CALLDATASIZE PUSH1 0x4 PUSH2 0x1BB7 JUMP JUMPDEST PUSH2 0x1152 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4EC PUSH2 0x128E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4FE JUMPI POP PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x55D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D72657175657374656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x565 PUSH2 0xC99 JUMP JUMPDEST PUSH2 0x5B1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D636F6D706C6574650000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x9D2A5F9800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x9D2A5F98 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x61A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x62E 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 0x652 SWAP2 SWAP1 PUSH2 0x1C24 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD SWAP2 SWAP3 POP PUSH4 0xFFFFFFFF PUSH9 0x10000000000000000 DUP3 DIV DUP2 AND SWAP3 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV AND PUSH1 0x0 PUSH2 0x6A1 PUSH1 0x5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE DUP8 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP8 DUP2 AND PUSH1 0x20 DUP4 ADD SWAP1 DUP2 MSTORE PUSH1 0x3 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 DUP2 AND DUP5 DUP7 ADD SWAP1 DUP2 MSTORE DUP10 DUP3 AND PUSH1 0x60 DUP7 ADD SWAP1 DUP2 MSTORE DUP10 DUP6 AND PUSH1 0x80 DUP8 ADD SWAP1 DUP2 MSTORE PUSH1 0x4 DUP1 SLOAD SWAP9 MLOAD PUSH32 0x89EB92500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP9 MLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP5 MLOAD DUP7 AND PUSH1 0x24 DUP7 ADD MSTORE SWAP2 MLOAD DUP4 AND PUSH1 0x44 DUP6 ADD MSTORE MLOAD SWAP1 SWAP2 AND PUSH1 0x64 DUP4 ADD MSTORE MLOAD SWAP1 SWAP2 AND PUSH1 0x84 DUP3 ADD MSTORE SWAP3 SWAP4 POP SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x89EB925 SWAP1 PUSH1 0xA4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x77B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x78F 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 0x7B3 SWAP2 SWAP1 PUSH2 0x1C5A JUMP JUMPDEST POP PUSH1 0x0 PUSH2 0x7C1 DUP6 DUP6 DUP6 PUSH2 0x12BE JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH8 0xFFFFFFFFFFFFFFFF DUP4 AND OR SWAP1 SSTORE SWAP1 POP PUSH2 0x7EB DUP7 PUSH1 0x1 PUSH2 0x1D8E JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x3 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000 AND SWAP1 SSTORE PUSH1 0x40 MLOAD DUP8 DUP2 MSTORE PUSH32 0x13F646A3648EE5B5A0E8D6BC3D2D623FDDF38FA7C8C5DFDBDBE6A913112EDC6C SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 PUSH32 0x9E5F7E6AC833C4735B5548BBEEC59DAC4D413789AA351FBE11A654DAC0C4306C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x8CE PUSH2 0x128E JUMP JUMPDEST PUSH2 0x940 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F626561636F6E2D706572696F642D6E6F742D6F7665 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0x996 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D616C72656164792D726571756573746564 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0xD37B53700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP2 MLOAD PUSH1 0x0 SWAP4 DUP5 SWAP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 PUSH4 0xD37B537 SWAP3 PUSH1 0x4 DUP1 DUP4 ADD SWAP4 SWAP3 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x9F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA08 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 0xA2C SWAP2 SWAP1 PUSH2 0x1BD4 JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0xA49 JUMPI POP PUSH1 0x0 DUP2 GT JUMPDEST ISZERO PUSH2 0xA68 JUMPI PUSH1 0x2 SLOAD PUSH2 0xA68 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND SWAP2 AND DUP4 PUSH2 0x1303 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x8678A7B200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP2 MLOAD PUSH1 0x0 SWAP4 DUP5 SWAP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 PUSH4 0x8678A7B2 SWAP3 PUSH1 0x4 DUP1 DUP4 ADD SWAP4 SWAP3 DUP3 SWAP1 SUB ADD DUP2 DUP8 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xAC7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xADB 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 0xAFF SWAP2 SWAP1 PUSH2 0x1CB0 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP5 AND PUSH5 0x100000000 MUL PUSH8 0xFFFFFFFFFFFFFFFF NOT SWAP1 SWAP3 AND SWAP1 DUP6 AND OR OR SWAP1 SSTORE SWAP1 SWAP3 POP SWAP1 POP PUSH2 0xB46 PUSH1 0x5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 MSTORE DUP4 AND SWAP1 PUSH32 0xDE3A7AF7D3C2126E4FB96A7065B39F8BB17E3B9111C092E11236942FB38CA61 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP JUMP JUMPDEST PUSH2 0xBD7 PUSH2 0xEB8 JUMP JUMPDEST PUSH2 0xC23 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D74696D65646F75740000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000 DUP2 AND SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND DUP1 DUP4 MSTORE SWAP3 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x67638A3A7093A89CC6046DCA58AA93D6343E30847E8F84FC3759D9D4A3E6E38B SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x3A19B9BC00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x3A19B9BC SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xD00 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD14 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 0x4FE SWAP2 SWAP1 PUSH2 0x1C02 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xD92 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0xDA7 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1433 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0xDD9 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE2F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH2 0xE37 PUSH2 0x1490 JUMP JUMPDEST PUSH2 0xE40 DUP2 PUSH2 0x150A JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH2 0xE56 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEAC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH2 0xEB6 PUSH1 0x0 PUSH2 0x1433 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x0 SWAP1 PUSH9 0x10000000000000000 SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0xEDE JUMPI POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x3 SLOAD PUSH1 0x4 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP4 DIV DUP4 AND SWAP3 PUSH2 0xF31 SWAP3 PUSH9 0x10000000000000000 SWAP1 DIV AND SWAP1 PUSH4 0xFFFFFFFF PUSH21 0x10000000000000000000000000000000000000000 SWAP1 SWAP2 DIV AND PUSH2 0x1DB6 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND LT SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4FE PUSH2 0x160A JUMP JUMPDEST CALLER PUSH2 0xF5E PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xFB4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH2 0xFBC PUSH2 0x1490 JUMP JUMPDEST PUSH2 0xE40 DUP2 PUSH2 0x166B JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD PUSH1 0x0 SWAP2 PUSH2 0x4FE SWAP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND SWAP3 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 SWAP3 DIV PUSH4 0xFFFFFFFF AND SWAP2 PUSH1 0x1 PUSH1 0x60 SHL SWAP1 DIV AND PUSH2 0x12BE JUMP JUMPDEST CALLER PUSH2 0x100E PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1064 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH2 0x106C PUSH2 0x1490 JUMP JUMPDEST PUSH2 0xE40 DUP2 PUSH2 0x16C2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4FE PUSH2 0x17AA JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD PUSH1 0x0 SWAP2 PUSH2 0x10AC SWAP2 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP5 PUSH2 0x12BE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x10C7 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x111D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH2 0x10AC DUP3 PUSH2 0x17D5 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4FE PUSH2 0x128E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1143 PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO ISZERO SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4FE JUMPI POP PUSH2 0x4FE PUSH2 0xC99 JUMP JUMPDEST CALLER PUSH2 0x1165 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x11BB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1237 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x60 SHL SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x12AD PUSH2 0x17AA JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND GT ISZERO SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH4 0xFFFFFFFF DUP5 AND PUSH2 0x12D2 DUP7 DUP6 PUSH2 0x1E57 JUMP JUMPDEST PUSH2 0x12DC SWAP2 SWAP1 PUSH2 0x1DD9 JUMP JUMPDEST SWAP1 POP PUSH2 0x12EE PUSH4 0xFFFFFFFF DUP6 AND DUP3 PUSH2 0x1E27 JUMP JUMPDEST PUSH2 0x12F8 SWAP1 DUP7 PUSH2 0x1DB6 JUMP JUMPDEST SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDD62ED3E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP2 DUP7 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1368 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x137C 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 0x13A0 SWAP2 SWAP1 PUSH2 0x1C24 JUMP JUMPDEST PUSH2 0x13AA SWAP2 SWAP1 PUSH2 0x1D76 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x142D SWAP1 DUP6 SWAP1 PUSH2 0x193E JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x3 SLOAD NUMBER SWAP1 PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO DUP1 PUSH2 0x14BE JUMPI POP PUSH1 0x3 SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP2 LT JUMPDEST PUSH2 0xE40 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D696E2D666C696768740000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x3C DUP2 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1586 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D74696D656F75742D67742D36302D736563 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH21 0x10000000000000000000000000000000000000000 PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x521671714DD36D366ADF3FE2EFEC91D3F58A3131AAD68E268821D8144B5D0845 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x1615 PUSH2 0x17AA JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1634 PUSH1 0x5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV AND SWAP1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0x165A JUMPI PUSH1 0x0 SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH2 0x1664 DUP2 DUP4 PUSH2 0x1E57 JUMP JUMPDEST SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xF935763CC7C57EE8ED6318ED71E756CCA0731294C9F46FF5B386F36D6FF1417A SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND GT PUSH2 0x173E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F626561636F6E2D706572696F642D67726561746572 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D7468616E2D7A65726F00000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x4727494DBD863E2084366F539D6EC569AAF7AB78582A34F006F004266777CD19 SWAP1 PUSH1 0x20 ADD PUSH2 0x15FF JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x5 SLOAD PUSH1 0x0 SWAP2 PUSH2 0x4FE SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x1DB6 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND PUSH2 0x185B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F647261772D686973746F72792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D61646472657373000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x18E3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F6578697374696E672D647261772D686973746F7279 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D61646472657373000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xEB70B03FAB908E126E5EFC33F8DFD2731FA89C716282A86769025F8DD4A6C1E0 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1993 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1A28 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x1A23 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x19B1 SWAP2 SWAP1 PUSH2 0x1C02 JUMP JUMPDEST PUSH2 0x1A23 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1A37 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x1A3F JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x1AB7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x1B05 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1B21 SWAP2 SWAP1 PUSH2 0x1D09 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1B5E JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1B63 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1B73 DUP3 DUP3 DUP7 PUSH2 0x1B7E JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x1B8D JUMPI POP DUP2 PUSH2 0x12FC JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x1B9D JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x554 SWAP2 SWAP1 PUSH2 0x1D25 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1BC9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x12FC DUP2 PUSH2 0x1EDB JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1BE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x1BF2 DUP2 PUSH2 0x1EDB JUMP JUMPDEST PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD MLOAD SWAP3 SWAP5 SWAP3 SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C14 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x12FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C36 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C4F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x12FC DUP2 PUSH2 0x1EF0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C6C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x12FC DUP2 PUSH2 0x1EF0 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C8A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1C95 DUP2 PUSH2 0x1EF0 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x1CA5 DUP2 PUSH2 0x1EF0 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1CC3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x1CCE DUP2 PUSH2 0x1EF0 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x1CA5 DUP2 PUSH2 0x1EF0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1CF1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x12FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1D1B DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x1E80 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1D44 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1E80 JUMP JUMPDEST PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1D89 JUMPI PUSH2 0x1D89 PUSH2 0x1EAC JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1DAD JUMPI PUSH2 0x1DAD PUSH2 0x1EAC JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1DAD JUMPI PUSH2 0x1DAD PUSH2 0x1EAC JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP5 AND DUP1 PUSH2 0x1E1B JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1E4E JUMPI PUSH2 0x1E4E PUSH2 0x1EAC JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1E78 JUMPI PUSH2 0x1E78 PUSH2 0x1EAC JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1E9B JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1E83 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x142D JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE40 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xE40 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PC PUSH1 0xC5 KECCAK256 DUP3 0x2E PUSH5 0xC68B1AA2D7 PUSH5 0x5CF3D01B12 0xEC PUSH15 0x622D49B3CE172B5B61A51B1D64736F PUSH13 0x63430008060033447261774265 PUSH2 0x636F PUSH15 0x2F626561636F6E2D706572696F642D PUSH8 0x7265617465720000 ",
              "sourceMap": "209:959:64:-:0;;;256:334;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;495:6;503:11;516:4;522:11;535:18;555;575:11;495:6;1648:24:22;495:6:64;1648:9:22;:24::i;:::-;1603:76;4208:1:29::1;4187:18;-1:-1:-1::0;;;;;4187:22:29::1;;4179:77;;;::::0;-1:-1:-1;;;4179:77:29;;2149:2:84;4179:77:29::1;::::0;::::1;2131:21:84::0;2188:2;2168:18;;;2161:30;-1:-1:-1;;;;;;;;;;;2207:18:84;;;2200:62;-1:-1:-1;;;2278:18:84;;;2271:40;2328:19;;4179:77:29::1;;;;;;;;;-1:-1:-1::0;;;;;4274:27:29;::::1;4266:63;;;::::0;-1:-1:-1;;;4266:63:29;;2962:2:84;4266:63:29::1;::::0;::::1;2944:21:84::0;3001:2;2981:18;;;2974:30;3040:25;3020:18;;;3013:53;3083:18;;4266:63:29::1;2934:173:84::0;4266:63:29::1;4362:1;4347:11;:16;;;;4339:60;;;::::0;-1:-1:-1;;;4339:60:29;;1380:2:84;4339:60:29::1;::::0;::::1;1362:21:84::0;1419:2;1399:18;;;1392:30;1458:33;1438:18;;;1431:61;1509:18;;4339:60:29::1;1352:181:84::0;4339:60:29::1;4410:21;:42:::0;;4462:24:::1;::::0;::::1;::::0;::::1;-1:-1:-1::0;;;;;;4462:24:29;;;-1:-1:-1;;;;;4410:42:29;::::1;4462:24:::0;::::1;::::0;;4497:45:::1;4521:20:::0;4497:23:::1;:45::i;:::-;4552:27;4567:11:::0;4552:14:::1;:27::i;:::-;-1:-1:-1::0;4589:20:29::1;4604:4:::0;4589:14:::1;:20::i;:::-;4619:27;4634:11:::0;4619:14:::1;:27::i;:::-;4662:41;::::0;;3918:10:84;3906:23;;3888:42;;-1:-1:-1;;;;;3966:31:84;;3961:2;3946:18;;3939:59;4662:41:29::1;::::0;3861:18:84;4662:41:29::1;;;;;;;4718:39;::::0;-1:-1:-1;;;;;4718:39:29;::::1;::::0;::::1;::::0;;;::::1;3923:841:::0;;;;;;;256:334:64;;;;;;;209:959;;3470:174:22;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;;;;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;15109:283:29:-;15221:1;15198:20;:24;;;15190:79;;;;-1:-1:-1;;;15190:79:29;;2149:2:84;15190:79:29;;;2131:21:84;2188:2;2168:18;;;2161:30;-1:-1:-1;;;;;;;;;;;2207:18:84;;;2200:62;-1:-1:-1;;;2278:18:84;;;2271:40;2328:19;;15190:79:29;2121:232:84;15190:79:29;15279:19;:42;;-1:-1:-1;;;;15279:42:29;-1:-1:-1;;;15279:42:29;;;;;;;;;;;;;15337:48;;3665:42:84;;;15337:48:29;;3653:2:84;3638:18;15337:48:29;;;;;;;;15109:283;:::o;14424:516::-;14551:10;;14494:11;;-1:-1:-1;;;;;14551:10:29;;;;14579:37;;14571:90;;;;-1:-1:-1;;;14571:90:29;;3314:2:84;14571:90:29;;;3296:21:84;3353:2;3333:18;;;3326:30;3392:34;3372:18;;;3365:62;-1:-1:-1;;;3443:18:84;;;3436:38;3491:19;;14571:90:29;3286:230:84;14571:90:29;14728:19;-1:-1:-1;;;;;14693:55:29;14701:14;-1:-1:-1;;;;;14693:55:29;;;14672:142;;;;-1:-1:-1;;;14672:142:29;;1740:2:84;14672:142:29;;;1722:21:84;1779:2;1759:18;;;1752:30;1818:34;1798:18;;;1791:62;-1:-1:-1;;;1869:18:84;;;1862:38;1917:19;;14672:142:29;1712:230:84;14672:142:29;14825:10;:27;;-1:-1:-1;;;;;;14825:27:29;-1:-1:-1;;;;;14825:27:29;;;;;;;;14868:33;;;;-1:-1:-1;;14868:33:29;-1:-1:-1;14919:14:29;;14424:516;-1:-1:-1;14424:516:29:o;11695:142::-;11768:3;:17;;-1:-1:-1;;;;;;11768:17:29;-1:-1:-1;;;;;11768:17:29;;;;;;;;11800:30;;;;-1:-1:-1;;11800:30:29;11695:142;:::o;15631:208::-;15716:2;15702:11;:16;;;15694:62;;;;-1:-1:-1;;;15694:62:29;;2560:2:84;15694:62:29;;;2542:21:84;2599:2;2579:18;;;2572:30;2638:34;2618:18;;;2611:62;-1:-1:-1;;;2689:18:84;;;2682:31;2730:19;;15694:62:29;2532:223:84;15694:62:29;15766:10;:24;;-1:-1:-1;;;;15766:24:29;-1:-1:-1;;;15766:24:29;;;;;;;;;;;;;15806:26;;3665:42:84;;;15806:26:29;;3653:2:84;3638:18;15806:26:29;3620:93:84;14:167;92:13;;145:10;134:22;;124:33;;114:2;;171:1;168;161:12;114:2;73:108;;;:::o;186:987::-;348:6;356;364;372;380;388;396;449:3;437:9;428:7;424:23;420:33;417:2;;;466:1;463;456:12;417:2;498:9;492:16;517:31;542:5;517:31;:::i;:::-;617:2;602:18;;596:25;567:5;;-1:-1:-1;630:33:84;596:25;630:33;:::i;:::-;734:2;719:18;;713:25;682:7;;-1:-1:-1;747:33:84;713:25;747:33;:::i;:::-;799:7;-1:-1:-1;825:48:84;869:2;854:18;;825:48;:::i;:::-;918:3;903:19;;897:26;815:58;;-1:-1:-1;;;;;;954:32:84;;942:45;;932:2;;1001:1;998;991:12;932:2;1024:7;-1:-1:-1;1050:49:84;1094:3;1079:19;;1050:49;:::i;:::-;1040:59;;1118:49;1162:3;1151:9;1147:19;1118:49;:::i;:::-;1108:59;;407:766;;;;;;;;;;:::o;4009:131::-;-1:-1:-1;;;;;4084:31:84;;4074:42;;4064:2;;4130:1;4127;4120:12;4064:2;4054:86;:::o;:::-;209:959:64;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_beaconPeriodEndAt_6006": {
                  "entryPoint": 6058,
                  "id": 6006,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_beaconPeriodRemainingSeconds_6034": {
                  "entryPoint": 5642,
                  "id": 6034,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_calculateNextBeaconPeriodStartTime_5982": {
                  "entryPoint": 4798,
                  "id": 5982,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_callOptionalReturn_1116": {
                  "entryPoint": 6462,
                  "id": 1116,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_currentTimeInternal_15798": {
                  "entryPoint": null,
                  "id": 15798,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_currentTime_15779": {
                  "entryPoint": null,
                  "id": 15779,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_currentTime_5995": {
                  "entryPoint": null,
                  "id": 5995,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_isBeaconPeriodOver_6047": {
                  "entryPoint": 4750,
                  "id": 6047,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_requireDrawNotStarted_6070": {
                  "entryPoint": 5264,
                  "id": 6070,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_setBeaconPeriodSeconds_6144": {
                  "entryPoint": 5826,
                  "id": 6144,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setDrawBuffer_6122": {
                  "entryPoint": 6101,
                  "id": 6122,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_4058": {
                  "entryPoint": 5171,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngService_5953": {
                  "entryPoint": 5739,
                  "id": 5953,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngTimeout_6166": {
                  "entryPoint": 5386,
                  "id": 6166,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@beaconPeriodEndAt_5717": {
                  "entryPoint": 4213,
                  "id": 5717,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@beaconPeriodRemainingSeconds_5706": {
                  "entryPoint": 3905,
                  "id": 5706,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@calculateNextBeaconPeriodStartTimeFromCurrentTime_5566": {
                  "entryPoint": 4037,
                  "id": 5566,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@calculateNextBeaconPeriodStartTime_5582": {
                  "entryPoint": 4223,
                  "id": 5582,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@canCompleteDraw_5552": {
                  "entryPoint": 4400,
                  "id": 5552,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@canStartDraw_5538": {
                  "entryPoint": 1250,
                  "id": 5538,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@cancelDraw_5612": {
                  "entryPoint": 3023,
                  "id": 5612,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@claimOwnership_4038": {
                  "entryPoint": 3384,
                  "id": 4038,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@completeDraw_5695": {
                  "entryPoint": 1283,
                  "id": 5695,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@currentTime_15788": {
                  "entryPoint": null,
                  "id": 15788,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@functionCallWithValue_2255": {
                  "entryPoint": 6719,
                  "id": 2255,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_2185": {
                  "entryPoint": 6696,
                  "id": 2185,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getBeaconPeriodSeconds_5725": {
                  "entryPoint": null,
                  "id": 5725,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getBeaconPeriodStartedAt_5733": {
                  "entryPoint": null,
                  "id": 5733,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDrawBuffer_5742": {
                  "entryPoint": null,
                  "id": 5742,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getLastRngLockBlock_5761": {
                  "entryPoint": null,
                  "id": 5761,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getLastRngRequestId_5771": {
                  "entryPoint": null,
                  "id": 5771,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getNextDrawId_5750": {
                  "entryPoint": null,
                  "id": 5750,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getRngService_5780": {
                  "entryPoint": null,
                  "id": 5780,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getRngTimeout_5788": {
                  "entryPoint": null,
                  "id": 5788,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isBeaconPeriodOver_5799": {
                  "entryPoint": 4390,
                  "id": 5799,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_2114": {
                  "entryPoint": null,
                  "id": 2114,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@isRngCompleted_5485": {
                  "entryPoint": 3225,
                  "id": 5485,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isRngRequested_5498": {
                  "entryPoint": null,
                  "id": 5498,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isRngTimedOut_5523": {
                  "entryPoint": 3768,
                  "id": 5523,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_3970": {
                  "entryPoint": null,
                  "id": 3970,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3979": {
                  "entryPoint": null,
                  "id": 3979,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3993": {
                  "entryPoint": 3651,
                  "id": 3993,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeIncreaseAllowance_1030": {
                  "entryPoint": 4867,
                  "id": 1030,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setBeaconPeriodSeconds_5904": {
                  "entryPoint": 4091,
                  "id": 5904,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setCurrentTime_15770": {
                  "entryPoint": null,
                  "id": 15770,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setDrawBuffer_5817": {
                  "entryPoint": 4274,
                  "id": 5817,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setRngRequest_15818": {
                  "entryPoint": null,
                  "id": 15818,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@setRngService_5937": {
                  "entryPoint": 3915,
                  "id": 5937,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setRngTimeout_5920": {
                  "entryPoint": 3526,
                  "id": 5920,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@startDraw_5888": {
                  "entryPoint": 2246,
                  "id": 5888,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_4020": {
                  "entryPoint": 4434,
                  "id": 4020,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_2390": {
                  "entryPoint": 7038,
                  "id": 2390,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 7095,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_uint256_fromMemory": {
                  "entryPoint": 7124,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 7170,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_IDrawBuffer_$11318": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_RNGInterface_$4142": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 7204,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32": {
                  "entryPoint": 7229,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32_fromMemory": {
                  "entryPoint": 7258,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32t_uint32": {
                  "entryPoint": 7287,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint32t_uint32_fromMemory": {
                  "entryPoint": 7344,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint64": {
                  "entryPoint": 7391,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 7433,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_RNGInterface_$4142__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7461,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2c3630652afe1a04dd2231790fc99ffb459bdb7330f49c8f20817dc286484280__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2e18d8e745e19c95f7142708d51d3a5265c91aa34e14edc112d4234ceabbb69d__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_60fe4ea05210616f96b292a0bef542d8f4e15701730bf655ba6a82515973dbfe__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_bc38701987d08ad045946a7ffa6b0638aef3d414cf835a4d20b4244572e13448__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c11cf851f1db5cba405210987a8cab160410ee1c3cd1333983ce975b7fceef19__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_eb3fd409b99aafcfccb46998551ef8c9b3d4ba898753e940771a0a3d4f33cc77__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Draw_$11085_memory_ptr__to_t_struct$_Draw_$11085_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 7542,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint32": {
                  "entryPoint": 7566,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint64": {
                  "entryPoint": 7606,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint64": {
                  "entryPoint": 7641,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint64": {
                  "entryPoint": 7719,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint64": {
                  "entryPoint": 7767,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 7808,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "panic_error_0x11": {
                  "entryPoint": 7852,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 7899,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint32": {
                  "entryPoint": 7920,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:15034:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "84:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "130:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "142:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "132:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "132:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "132:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "105:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "101:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "101:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "126:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "97:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "97:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "94:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "155:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "181:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "168:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "168:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "159:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "225:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "200:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "200:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "200:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "250:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "50:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "61:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "73:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "364:214:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "410:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "419:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "422:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "412:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "412:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "412:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "385:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "394:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "381:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "381:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "406:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "377:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "377:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "374:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "435:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "454:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "448:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "448:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "439:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "498:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "473:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "473:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "473:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "513:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "523:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "513:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "537:35:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "557:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "568:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "553:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "553:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "547:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "547:25:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "537:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "322:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "333:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "345:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "353:6:84",
                            "type": ""
                          }
                        ],
                        "src": "266:312:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "661:199:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "707:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "716:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "719:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "709:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "709:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "709:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "682:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "691:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "678:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "678:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "703:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "674:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "674:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "671:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "732:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "751:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "745:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "745:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "736:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "814:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "823:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "826:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "816:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "816:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "816:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "783:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "804:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "797:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "797:13:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "790:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "790:21:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "780:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "780:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "773:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "773:40:84"
                              },
                              "nodeType": "YulIf",
                              "src": "770:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "839:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "849:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "839:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "627:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "638:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "650:6:84",
                            "type": ""
                          }
                        ],
                        "src": "583:277:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "956:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1002:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1011:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1014:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1004:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1004:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1004:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "977:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "986:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "973:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "973:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "998:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "969:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "969:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "966:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1027:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1053:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1040:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1040:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1031:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1097:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1072:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1072:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1072:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1112:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1122:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1112:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IDrawBuffer_$11318",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "922:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "933:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "945:6:84",
                            "type": ""
                          }
                        ],
                        "src": "865:268:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1229:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1275:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1284:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1287:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1277:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1277:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1277:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1250:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1259:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1246:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1246:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1271:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1242:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1242:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1239:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1300:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1326:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1313:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1313:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1304:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1370:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1345:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1345:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1345:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1385:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1395:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1385:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_RNGInterface_$4142",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1195:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1206:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1218:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1138:268:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1492:103:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1538:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1547:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1550:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1540:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1540:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1540:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1513:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1522:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1509:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1509:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1534:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1505:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1505:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1502:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1563:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1579:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1573:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1573:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1563:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1458:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1469:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1481:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1411:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1669:176:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1715:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1724:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1727:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1717:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1717:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1717:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1690:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1699:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1686:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1686:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1711:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1682:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1682:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1679:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1740:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1766:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1753:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1753:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1744:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1809:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1785:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1785:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1785:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1824:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1834:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1824:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1635:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1646:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1658:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1600:245:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1930:169:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1976:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1985:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1988:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1978:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1978:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1978:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1951:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1960:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1947:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1947:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1972:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1943:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1943:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1940:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2001:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2020:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2014:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2014:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2005:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2063:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2039:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2039:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2039:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2078:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2088:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2078:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1896:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1907:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1919:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1850:249:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2189:299:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2235:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2244:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2247:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2237:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2237:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2237:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2210:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2219:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2206:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2206:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2231:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2202:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2202:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2199:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2260:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2286:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2273:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2273:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2264:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2329:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2305:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2305:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2305:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2344:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2354:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2344:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2368:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2400:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2411:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2396:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2396:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2383:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2383:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2372:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2448:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2424:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2424:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2424:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2465:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2475:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2465:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2147:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2158:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2170:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2178:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2104:384:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2589:285:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2635:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2644:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2647:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2637:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2637:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2637:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2610:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2619:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2606:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2606:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2631:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2602:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2602:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2599:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2660:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2679:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2673:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2673:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2664:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2722:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2698:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2698:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2698:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2737:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2747:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2737:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2761:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2786:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2797:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2782:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2782:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2776:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2776:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2765:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2834:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2810:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2810:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2810:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2851:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2861:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2851:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2547:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2558:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2570:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2578:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2493:381:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2948:215:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2994:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3003:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3006:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2996:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2996:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2996:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2969:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2978:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2965:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2965:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2990:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2961:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2961:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2958:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3019:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3045:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3032:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3032:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3023:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3117:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3126:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3129:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3119:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3119:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3119:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3077:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "3088:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3095:18:84",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "3084:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3084:30:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "3074:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3074:41:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3067:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3067:49:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3064:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3142:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3152:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3142:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2914:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2925:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2937:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2879:284:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3305:137:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3315:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3335:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3329:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3329:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3319:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3377:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3385:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3373:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3373:17:84"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3392:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3397:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3351:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3351:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3351:53:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3413:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3424:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3429:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3420:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3420:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "3413:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3281:3:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3286:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "3297:3:84",
                            "type": ""
                          }
                        ],
                        "src": "3168:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3548:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3558:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3570:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3581:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3566:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3566:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3558:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3600:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3615:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3623:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3611:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3611:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3593:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3593:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3593:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3517:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3528:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3539:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3447:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3807:198:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3817:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3829:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3840:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3825:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3825:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3817:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3852:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3862:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3856:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3920:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3935:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3943:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3931:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3931:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3913:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3913:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3913:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3967:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3978:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3963:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3963:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3987:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3995:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3983:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3983:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3956:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3956:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3956:43:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3768:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3779:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3787:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3798:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3678:327:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4139:168:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4149:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4161:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4172:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4157:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4157:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4149:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4191:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4206:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4214:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4202:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4202:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4184:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4184:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4184:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4278:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4289:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4274:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4274:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4294:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4267:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4267:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4267:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4100:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4111:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4119:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4130:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4010:297:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4407:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4417:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4429:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4440:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4425:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4425:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4417:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4459:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "4484:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "4477:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4477:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "4470:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4470:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4452:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4452:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4452:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4376:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4387:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4398:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4312:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4626:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4636:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4648:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4659:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4644:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4644:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4636:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4678:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4693:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4701:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4689:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4689:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4671:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4671:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4671:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4595:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4606:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4617:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4504:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4878:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4888:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4900:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4911:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4896:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4896:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4888:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4930:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4945:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4953:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4941:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4941:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4923:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4923:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4923:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_RNGInterface_$4142__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4847:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4858:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4869:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4756:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5129:321:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5146:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5157:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5139:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5139:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5139:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5169:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5189:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5183:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5183:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "5173:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5216:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5227:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5212:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5212:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5232:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5205:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5205:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5205:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5274:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5282:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5270:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5270:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5291:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5302:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5287:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5287:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5307:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5248:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5248:66:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5248:66:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5323:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5339:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "5358:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5366:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5354:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5354:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5371:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "5350:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5350:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5335:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5335:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5441:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5331:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5331:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5323:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5098:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5109:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5120:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5008:442:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5629:178:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5646:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5657:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5639:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5639:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5639:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5680:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5691:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5676:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5676:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5696:2:84",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5669:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5669:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5669:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5719:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5730:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5715:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5715:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d726571756573746564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5735:30:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-requested"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5708:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5708:58:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5708:58:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5775:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5787:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5798:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5783:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5783:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5775:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2c3630652afe1a04dd2231790fc99ffb459bdb7330f49c8f20817dc286484280__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5606:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5620:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5455:352:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5986:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6003:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6014:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5996:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5996:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5996:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6037:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6048:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6033:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6033:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6053:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6026:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6026:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6026:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6076:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6087:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6072:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6072:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d616c72656164792d726571756573746564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6092:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-already-requested"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6065:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6065:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6065:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6136:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6148:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6159:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6144:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6144:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6136:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2e18d8e745e19c95f7142708d51d3a5265c91aa34e14edc112d4234ceabbb69d__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5963:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5977:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5812:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6347:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6364:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6375:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6357:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6357:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6357:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6398:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6409:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6394:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6394:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6414:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6387:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6387:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6387:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6437:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6448:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6433:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6433:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f6578697374696e672d647261772d686973746f7279",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6453:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/existing-draw-history"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6426:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6426:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6426:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6508:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6519:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6504:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6504:18:84"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6524:10:84",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6497:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6497:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6497:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6544:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6556:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6567:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6552:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6552:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6544:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6324:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6338:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6173:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6756:232:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6773:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6784:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6766:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6766:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6766:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6807:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6818:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6803:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6803:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6823:2:84",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6796:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6796:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6796:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6846:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6857:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6842:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6842:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d67726561746572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6862:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/beacon-period-greater"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6835:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6835:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6835:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6917:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6928:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6913:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6913:18:84"
                                  },
                                  {
                                    "hexValue": "2d7468616e2d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6933:12:84",
                                    "type": "",
                                    "value": "-than-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6906:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6906:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6906:40:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6955:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6967:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6978:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6963:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6963:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6955:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6733:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6747:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6582:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7167:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7184:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7195:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7177:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7177:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7177:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7218:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7229:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7214:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7214:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7234:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7207:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7207:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7207:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7257:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7268:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7253:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7253:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7273:34:84",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7246:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7246:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7246:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7328:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7339:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7324:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7324:18:84"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7344:8:84",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7317:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7317:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7317:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7362:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7374:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7385:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7370:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7370:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7362:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7144:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7158:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6993:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7574:177:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7591:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7602:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7584:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7584:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7584:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7625:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7636:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7621:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7621:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7641:2:84",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7614:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7614:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7614:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7664:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7675:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7660:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7660:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d636f6d706c657465",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7680:29:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-complete"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7653:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7653:57:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7653:57:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7719:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7731:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7742:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7727:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7727:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7719:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_60fe4ea05210616f96b292a0bef542d8f4e15701730bf655ba6a82515973dbfe__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7551:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7565:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7400:351:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7930:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7947:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7958:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7940:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7940:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7940:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7981:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7992:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7977:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7977:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7997:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7970:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7970:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7970:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8020:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8031:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8016:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8016:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8036:26:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8009:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8009:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8009:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8072:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8084:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8095:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8080:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8080:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8072:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7907:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7921:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7756:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8283:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8300:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8311:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8293:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8293:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8293:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8334:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8345:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8330:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8330:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8350:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8323:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8323:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8323:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8373:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8384:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8369:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8369:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d74696d656f75742d67742d36302d736563",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8389:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-timeout-gt-60-sec"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8362:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8362:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8362:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8444:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8455:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8440:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8440:18:84"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8460:3:84",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8433:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8433:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8433:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8473:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8485:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8496:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8481:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8481:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8473:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8260:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8274:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8109:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8685:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8702:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8713:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8695:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8695:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8695:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8736:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8747:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8732:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8732:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8752:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8725:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8725:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8725:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8775:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8786:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8771:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8771:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8791:33:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8764:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8764:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8764:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8834:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8846:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8857:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8842:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8842:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8834:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8662:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8676:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8511:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9045:177:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9062:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9073:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9055:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9055:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9055:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9096:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9107:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9092:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9092:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9112:2:84",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9085:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9085:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9085:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9135:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9146:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9131:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9131:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d74696d65646f7574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9151:29:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-timedout"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9124:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9124:57:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9124:57:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9190:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9202:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9213:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9198:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9198:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9190:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_bc38701987d08ad045946a7ffa6b0638aef3d414cf835a4d20b4244572e13448__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9022:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9036:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8871:351:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9401:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9418:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9429:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9411:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9411:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9411:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9452:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9463:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9448:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9448:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9468:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9441:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9441:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9441:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9491:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9502:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9487:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9487:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d6e6f742d6f7665",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9507:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/beacon-period-not-ove"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9480:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9480:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9480:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9562:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9573:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9558:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9558:18:84"
                                  },
                                  {
                                    "hexValue": "72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9578:3:84",
                                    "type": "",
                                    "value": "r"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9551:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9551:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9551:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9591:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9603:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9614:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9599:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9599:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9591:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c11cf851f1db5cba405210987a8cab160410ee1c3cd1333983ce975b7fceef19__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9378:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9392:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9227:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9803:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9820:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9831:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9813:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9813:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9813:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9854:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9865:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9850:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9850:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9870:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9843:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9843:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9843:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9893:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9904:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9889:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9889:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9909:31:84",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9882:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9882:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9882:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9950:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9962:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9973:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9958:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9958:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9950:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9780:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9794:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9629:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10161:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10178:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10189:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10171:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10171:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10171:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10212:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10223:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10208:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10208:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10228:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10201:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10201:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10201:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10251:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10262:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10247:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10247:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10267:34:84",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10240:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10240:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10240:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10322:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10333:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10318:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10318:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10338:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10311:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10311:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10311:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10355:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10367:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10378:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10363:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10363:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10355:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10138:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10152:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9987:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10567:232:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10584:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10595:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10577:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10577:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10577:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10618:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10629:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10614:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10614:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10634:2:84",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10607:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10607:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10607:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10657:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10668:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10653:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10653:18:84"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10673:34:84",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10646:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10646:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10646:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10728:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10739:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10724:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10724:18:84"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10744:12:84",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10717:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10717:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10717:40:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10766:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10778:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10789:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10774:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10774:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10766:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10544:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10558:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10393:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10978:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10995:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11006:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10988:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10988:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10988:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11029:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11040:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11025:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11025:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11045:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11018:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11018:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11018:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11068:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11079:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11064:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11064:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11084:34:84",
                                    "type": "",
                                    "value": "DrawBeacon/draw-history-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11057:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11057:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11057:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11139:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11150:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11135:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11135:18:84"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11155:10:84",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11128:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11128:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11128:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11175:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11187:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11198:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11183:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11183:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11175:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10955:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10969:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10804:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11387:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11404:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11415:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11397:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11397:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11397:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11438:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11449:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11434:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11434:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11454:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11427:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11427:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11427:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11477:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11488:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11473:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11473:18:84"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d696e2d666c69676874",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11493:26:84",
                                    "type": "",
                                    "value": "DrawBeacon/rng-in-flight"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11466:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11466:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11466:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11529:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11541:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11552:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11537:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11537:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11529:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_eb3fd409b99aafcfccb46998551ef8c9b3d4ba898753e940771a0a3d4f33cc77__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11364:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11378:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11213:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11713:524:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11723:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11735:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11746:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11731:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11731:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11723:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11766:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11783:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "11777:5:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11777:13:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11759:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11759:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11759:32:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11800:44:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11830:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11838:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11826:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11826:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11820:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11820:24:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "11804:12:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11853:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11863:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11857:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11893:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11904:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11889:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11889:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11915:12:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11929:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11911:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11911:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11882:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11882:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11882:51:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11942:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11974:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11982:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11970:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11970:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11964:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11964:24:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11946:14:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11997:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12007:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "12001:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12045:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12056:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12041:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12041:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12067:14:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "12083:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12063:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12063:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12034:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12034:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12034:53:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12107:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12118:4:84",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12103:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12103:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "12139:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "12147:4:84",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "12135:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "12135:17:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "12129:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "12129:24:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "12155:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12125:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12125:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12096:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12096:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12096:63:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12179:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12190:4:84",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12175:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12175:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "12211:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "12219:4:84",
                                                "type": "",
                                                "value": "0x80"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "12207:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "12207:17:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "12201:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "12201:24:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12227:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12197:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12197:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12168:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12168:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12168:63:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$11085_memory_ptr__to_t_struct$_Draw_$11085_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11682:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11693:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11704:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11566:671:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12343:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12353:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12365:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12376:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12361:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12361:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12353:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12395:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12406:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12388:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12388:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12388:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12312:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12323:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12334:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12242:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12523:93:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12533:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12545:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12556:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12541:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12541:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12533:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12575:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12590:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12598:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12586:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12586:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12568:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12568:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12568:42:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12492:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12503:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12514:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12424:192:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12720:101:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12730:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12742:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12753:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12738:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12738:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12730:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12772:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12787:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12795:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12783:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12783:31:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12765:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12765:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12765:50:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12689:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12700:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12711:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12621:200:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12874:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12901:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12903:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12903:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12903:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12890:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "12897:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "12893:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12893:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12887:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12887:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12884:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12932:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12943:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12946:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12939:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12939:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "12932:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12857:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12860:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12866:3:84",
                            "type": ""
                          }
                        ],
                        "src": "12826:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13006:181:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13016:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13026:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13020:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13045:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13060:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13063:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13056:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13056:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13049:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13075:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13090:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13093:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13086:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13086:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13079:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13130:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13132:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13132:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13132:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13111:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13120:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13124:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "13116:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13116:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13108:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13108:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13105:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13161:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13172:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13177:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13168:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13168:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "13161:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12989:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12992:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12998:3:84",
                            "type": ""
                          }
                        ],
                        "src": "12959:228:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13239:189:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13249:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13259:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13253:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13286:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13301:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13304:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13297:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13297:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13290:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13316:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13331:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13334:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13327:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13327:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13320:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13371:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13373:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13373:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13373:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13352:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13361:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13365:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "13357:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13357:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13349:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13349:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13346:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13402:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13413:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13418:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13409:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13409:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "13402:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13222:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13225:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "13231:3:84",
                            "type": ""
                          }
                        ],
                        "src": "13192:236:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13478:308:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13488:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13498:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13492:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13525:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13540:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13543:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13536:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13536:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13529:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13578:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13599:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13602:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13592:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13592:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13592:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13700:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13703:4:84",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13693:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13693:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13693:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13728:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13731:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13721:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13721:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13721:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13565:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "13558:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13558:11:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13555:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13755:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "x",
                                        "nodeType": "YulIdentifier",
                                        "src": "13768:1:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13771:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "13764:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13764:10:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13776:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "13760:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13760:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "13755:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13463:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13466:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "13472:1:84",
                            "type": ""
                          }
                        ],
                        "src": "13433:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13842:219:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13852:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13862:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13856:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13889:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13904:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13907:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13900:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13900:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13893:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13919:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13934:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13937:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13930:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13930:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13923:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14000:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "14002:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14002:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14002:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "13970:3:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "13963:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13963:11:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "13956:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13956:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13980:3:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "13989:2:84"
                                          },
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "13993:3:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "13985:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13985:12:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "13977:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13977:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13952:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13952:47:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13949:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14031:24:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14046:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14051:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "14042:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14042:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "14031:7:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13821:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13824:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "13830:7:84",
                            "type": ""
                          }
                        ],
                        "src": "13791:270:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14114:181:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14124:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "14134:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "14128:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14161:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "14176:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14179:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "14172:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14172:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "14165:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14191:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "14206:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14209:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "14202:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14202:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "14195:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14237:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "14239:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14239:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14239:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14227:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14232:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14224:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14224:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "14221:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14268:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14280:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14285:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "14276:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14276:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "14268:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "14096:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "14099:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "14105:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14066:229:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14353:205:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14363:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "14372:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "14367:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14432:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "14457:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "14462:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "14453:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14453:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14476:3:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14481:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "14472:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "14472:11:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "14466:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14466:18:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14446:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14446:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14446:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14393:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14396:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14390:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14390:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "14404:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14406:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14415:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14418:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14411:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14411:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "14406:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "14386:3:84",
                                "statements": []
                              },
                              "src": "14382:113:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14521:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "14534:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "14539:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "14530:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14530:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14548:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14523:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14523:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14523:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14510:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14513:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14507:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14507:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "14504:2:84"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "14331:3:84",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "14336:3:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "14341:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14300:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14595:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14612:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14615:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14605:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14605:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14605:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14709:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14712:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14702:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14702:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14702:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14733:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14736:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "14726:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14726:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14726:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "14563:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14797:109:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14884:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14893:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14896:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "14886:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14886:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14886:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "14820:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "14831:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14838:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14827:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14827:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "14817:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14817:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "14810:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14810:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "14807:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14786:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14752:154:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14955:77:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15010:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "15019:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "15022:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "15012:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15012:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15012:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "14978:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "14989:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14996:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14985:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14985:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "14975:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14975:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "14968:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14968:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "14965:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14944:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14911:121:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_uint256_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := mload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IDrawBuffer_$11318(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_RNGInterface_$4142(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_decode_tuple_t_uint32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint32t_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_uint32t_uint32_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_uint64(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_RNGInterface_$4142__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_2c3630652afe1a04dd2231790fc99ffb459bdb7330f49c8f20817dc286484280__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-not-requested\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_2e18d8e745e19c95f7142708d51d3a5265c91aa34e14edc112d4234ceabbb69d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-already-requested\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"DrawBeacon/existing-draw-history\")\n        mstore(add(headStart, 96), \"-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"DrawBeacon/beacon-period-greater\")\n        mstore(add(headStart, 96), \"-than-zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Address: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r call\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_60fe4ea05210616f96b292a0bef542d8f4e15701730bf655ba6a82515973dbfe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 27)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-not-complete\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-timeout-gt-60-sec\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_bc38701987d08ad045946a7ffa6b0638aef3d414cf835a4d20b4244572e13448__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 27)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-not-timedout\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c11cf851f1db5cba405210987a8cab160410ee1c3cd1333983ce975b7fceef19__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"DrawBeacon/beacon-period-not-ove\")\n        mstore(add(headStart, 96), \"r\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"Address: call to non-contract\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"SafeERC20: ERC20 operation did n\")\n        mstore(add(headStart, 96), \"ot succeed\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"DrawBeacon/draw-history-not-zero\")\n        mstore(add(headStart, 96), \"-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_eb3fd409b99aafcfccb46998551ef8c9b3d4ba898753e940771a0a3d4f33cc77__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-in-flight\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_Draw_$11085_memory_ptr__to_t_struct$_Draw_$11085_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, mload(value0))\n        let memberValue0 := mload(add(value0, 0x20))\n        let _1 := 0xffffffff\n        mstore(add(headStart, 0x20), and(memberValue0, _1))\n        let memberValue0_1 := mload(add(value0, 0x40))\n        let _2 := 0xffffffffffffffff\n        mstore(add(headStart, 0x40), and(memberValue0_1, _2))\n        mstore(add(headStart, 0x60), and(mload(add(value0, 0x60)), _2))\n        mstore(add(headStart, 0x80), and(mload(add(value0, 0x80)), _1))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint32(x, y) -> sum\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint64(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint64(x, y) -> r\n    {\n        let _1 := 0xffffffffffffffff\n        let y_1 := and(y, _1)\n        if iszero(y_1)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(and(x, _1), y_1)\n    }\n    function checked_mul_t_uint64(x, y) -> product\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if and(iszero(iszero(x_1)), gt(y_1, div(_1, x_1))) { panic_error_0x11() }\n        product := mul(x_1, y_1)\n    }\n    function checked_sub_t_uint64(x, y) -> diff\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\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) { mstore(add(dst, length), 0) }\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106102265760003560e01c8063715018a61161012a578063a104fd79116100bd578063d18e81b31161008c578063e30c397811610071578063e30c3978146104b6578063e4a75bb8146104c7578063f2fde38b146104cf57600080fd5b8063d18e81b314610495578063d1e77657146104ae57600080fd5b8063a104fd791461044d578063a3ae35ab14610455578063ab70d49c14610468578063c57708c21461047b57600080fd5b80637f4296d7116100f95780637f4296d71461040e57806389c36f8e146104215780638da5cb5b14610429578063919bead01461043a57600080fd5b8063715018a6146103e5578063738bbea8146103ed57806375e38f16146103f55780637ce52b18146103fd57600080fd5b806339f92c30116101bd5780634aba4f6b1161018c5780635020ea56116101715780635020ea561461037e578063642d43db146103915780636bea5344146103cf57600080fd5b80634aba4f6b1461036e5780634e71e0c81461037657600080fd5b806339f92c301461031a5780633e7a39081461032c5780634019f2d614610341578063412a616a1461036657600080fd5b8063111070e4116101f9578063111070e4146102bd5780631b5344a2146102cd5780632a7ad609146103045780632ae168a61461031257600080fd5b80630996f6e11461022b57806309ad71a5146102485780630bdeecbd1461029a5780630d2bcb79146102a2575b600080fd5b6102336104e2565b60405190151581526020015b60405180910390f35b610298610256366004611cdf565b6005805467ffffffffffffffff909216600160601b027fffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffff909216919091179055565b005b610298610503565b425b60405167ffffffffffffffff909116815260200161023f565b60035463ffffffff161515610233565b60045474010000000000000000000000000000000000000000900463ffffffff165b60405163ffffffff909116815260200161023f565b60035463ffffffff166102ef565b6102986108c6565b60055467ffffffffffffffff166102a4565b600454600160c01b900463ffffffff166102ef565b6004546001600160a01b03165b6040516001600160a01b03909116815260200161023f565b610298610bcf565b610233610c99565b610298610d38565b61029861038c366004611c3d565b610dc6565b61029861039f366004611c77565b6003805463ffffffff9283166401000000000267ffffffffffffffff199091169290931691909117919091179055565b600354640100000000900463ffffffff166102ef565b610298610e43565b610233610eb8565b6102a4610f41565b6002546001600160a01b031661034e565b61029861041c366004611bb7565b610f4b565b6102a4610fc5565b6000546001600160a01b031661034e565b610298610448366004611c3d565b610ffb565b6102a4611075565b6102a4610463366004611cdf565b61107f565b61034e610476366004611bb7565b6110b2565b60055468010000000000000000900463ffffffff166102ef565b600554600160601b900467ffffffffffffffff166102a4565b610233611126565b6001546001600160a01b031661034e565b610233611130565b6102986104dd366004611bb7565b611152565b60006104ec61128e565b80156104fe575060035463ffffffff16155b905090565b60035463ffffffff1661055d5760405162461bcd60e51b815260206004820152601c60248201527f44726177426561636f6e2f726e672d6e6f742d7265717565737465640000000060448201526064015b60405180910390fd5b610565610c99565b6105b15760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d636f6d706c65746500000000006044820152606401610554565b6002546003546040517f9d2a5f9800000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690639d2a5f9890602401602060405180830381600087803b15801561061a57600080fd5b505af115801561062e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106529190611c24565b60055460045491925063ffffffff68010000000000000000820481169267ffffffffffffffff90921691600160c01b90041660006106a160055467ffffffffffffffff600160601b9091041690565b6040805160a08101825287815263ffffffff8781166020830190815260035468010000000000000000900467ffffffffffffffff90811684860190815289821660608601908152898516608087019081526004805498517f089eb925000000000000000000000000000000000000000000000000000000008152885191810191909152945186166024860152915183166044850152519091166064830152519091166084820152929350916001600160a01b039091169063089eb9259060a401602060405180830381600087803b15801561077b57600080fd5b505af115801561078f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b39190611c5a565b5060006107c18585856112be565b6005805467ffffffffffffffff191667ffffffffffffffff831617905590506107eb866001611d8e565b6005805463ffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff909216919091179055600380547fffffffffffffffffffffffffffffffff000000000000000000000000000000001690556040518781527f13f646a3648ee5b5a0e8d6bc3d2d623fddf38fa7c8c5dfdbdbe6a913112edc6c9060200160405180910390a160405167ffffffffffffffff8216907f9e5f7e6ac833c4735b5548bbeec59dac4d413789aa351fbe11a654dac0c4306c90600090a250505050505050565b6108ce61128e565b6109405760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6e6f742d6f766560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610554565b60035463ffffffff16156109965760405162461bcd60e51b815260206004820181905260248201527f44726177426561636f6e2f726e672d616c72656164792d7265717565737465646044820152606401610554565b600254604080517f0d37b537000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692630d37b5379260048083019392829003018186803b1580156109f457600080fd5b505afa158015610a08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2c9190611bd4565b90925090506001600160a01b03821615801590610a495750600081115b15610a6857600254610a68906001600160a01b03848116911683611303565b600254604080517f8678a7b2000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692638678a7b2926004808301939282900301818787803b158015610ac757600080fd5b505af1158015610adb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aff9190611cb0565b6003805463ffffffff8084166401000000000267ffffffffffffffff19909216908516171790559092509050610b4660055467ffffffffffffffff600160601b9091041690565b6003805467ffffffffffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff90921691909117905560405163ffffffff82811682528316907f0de3a7af7d3c2126e4fb96a7065b39f8bb17e3b9111c092e11236942fb38ca619060200160405180910390a250505050565b610bd7610eb8565b610c235760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d74696d65646f757400000000006044820152606401610554565b600380547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811690915560405163ffffffff640100000000830481168083529216919082907f67638a3a7093a89cc6046dca58aa93d6343e30847e8f84fc3759d9d4a3e6e38b9060200160405180910390a25050565b6002546003546040517f3a19b9bc00000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690633a19b9bc9060240160206040518083038186803b158015610d0057600080fd5b505afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104fe9190611c02565b6001546001600160a01b03163314610d925760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610554565b600154610da7906001600160a01b0316611433565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b33610dd96000546001600160a01b031690565b6001600160a01b031614610e2f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610554565b610e37611490565b610e408161150a565b50565b33610e566000546001600160a01b031690565b6001600160a01b031614610eac5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610554565b610eb66000611433565b565b60035460009068010000000000000000900467ffffffffffffffff16610ede5750600090565b60055460035460045467ffffffffffffffff600160601b909304831692610f3192680100000000000000009004169063ffffffff7401000000000000000000000000000000000000000090910416611db6565b67ffffffffffffffff1610905090565b60006104fe61160a565b33610f5e6000546001600160a01b031690565b6001600160a01b031614610fb45760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610554565b610fbc611490565b610e408161166b565b6005546004546000916104fe9167ffffffffffffffff80831692600160c01b90920463ffffffff1691600160601b9004166112be565b3361100e6000546001600160a01b031690565b6001600160a01b0316146110645760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610554565b61106c611490565b610e40816116c2565b60006104fe6117aa565b6005546004546000916110ac9167ffffffffffffffff90911690600160c01b900463ffffffff16846112be565b92915050565b6000336110c76000546001600160a01b031690565b6001600160a01b03161461111d5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610554565b6110ac826117d5565b60006104fe61128e565b600061114360035463ffffffff16151590565b80156104fe57506104fe610c99565b336111656000546001600160a01b031690565b6001600160a01b0316146111bb5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610554565b6001600160a01b0381166112375760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610554565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600554600090600160601b900467ffffffffffffffff166112ad6117aa565b67ffffffffffffffff161115905090565b60008063ffffffff84166112d28685611e57565b6112dc9190611dd9565b90506112ee63ffffffff851682611e27565b6112f89086611db6565b9150505b9392505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b15801561136857600080fd5b505afa15801561137c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a09190611c24565b6113aa9190611d76565b604080516001600160a01b038616602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b30000000000000000000000000000000000000000000000000000000017905290915061142d90859061193e565b50505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6003544390640100000000900463ffffffff1615806114be5750600354640100000000900463ffffffff1681105b610e405760405162461bcd60e51b815260206004820152601860248201527f44726177426561636f6e2f726e672d696e2d666c6967687400000000000000006044820152606401610554565b603c8163ffffffff16116115865760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f726e672d74696d656f75742d67742d36302d73656360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610554565b600480547fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000063ffffffff8416908102919091179091556040519081527f521671714dd36d366adf3fe2efec91d3f58a3131aad68e268821d8144b5d0845906020015b60405180910390a150565b6000806116156117aa565b9050600061163460055467ffffffffffffffff600160601b9091041690565b90508067ffffffffffffffff168267ffffffffffffffff161161165a5760009250505090565b6116648183611e57565b9250505090565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517ff935763cc7c57ee8ed6318ed71e756cca0731294c9f46ff5b386f36d6ff1417a90600090a250565b60008163ffffffff161161173e5760405162461bcd60e51b815260206004820152602a60248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6772656174657260448201527f2d7468616e2d7a65726f000000000000000000000000000000000000000000006064820152608401610554565b600480547fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b63ffffffff8416908102919091179091556040519081527f4727494dbd863e2084366f539d6ec569aaf7ab78582a34f006f004266777cd19906020016115ff565b6004546005546000916104fe91600160c01b90910463ffffffff169067ffffffffffffffff16611db6565b6004546000906001600160a01b0390811690831661185b5760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f60448201527f2d616464726573730000000000000000000000000000000000000000000000006064820152608401610554565b806001600160a01b0316836001600160a01b031614156118e35760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f6578697374696e672d647261772d686973746f727960448201527f2d616464726573730000000000000000000000000000000000000000000000006064820152608401610554565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385169081179091556040517feb70b03fab908e126e5efc33f8dfd2731fa89c716282a86769025f8dd4a6c1e090600090a25090919050565b6000611993826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611a289092919063ffffffff16565b805190915015611a2357808060200190518101906119b19190611c02565b611a235760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610554565b505050565b6060611a378484600085611a3f565b949350505050565b606082471015611ab75760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610554565b843b611b055760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610554565b600080866001600160a01b03168587604051611b219190611d09565b60006040518083038185875af1925050503d8060008114611b5e576040519150601f19603f3d011682016040523d82523d6000602084013e611b63565b606091505b5091509150611b73828286611b7e565b979650505050505050565b60608315611b8d5750816112fc565b825115611b9d5782518084602001fd5b8160405162461bcd60e51b81526004016105549190611d25565b600060208284031215611bc957600080fd5b81356112fc81611edb565b60008060408385031215611be757600080fd5b8251611bf281611edb565b6020939093015192949293505050565b600060208284031215611c1457600080fd5b815180151581146112fc57600080fd5b600060208284031215611c3657600080fd5b5051919050565b600060208284031215611c4f57600080fd5b81356112fc81611ef0565b600060208284031215611c6c57600080fd5b81516112fc81611ef0565b60008060408385031215611c8a57600080fd5b8235611c9581611ef0565b91506020830135611ca581611ef0565b809150509250929050565b60008060408385031215611cc357600080fd5b8251611cce81611ef0565b6020840151909250611ca581611ef0565b600060208284031215611cf157600080fd5b813567ffffffffffffffff811681146112fc57600080fd5b60008251611d1b818460208701611e80565b9190910192915050565b6020815260008251806020840152611d44816040850160208701611e80565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008219821115611d8957611d89611eac565b500190565b600063ffffffff808316818516808303821115611dad57611dad611eac565b01949350505050565b600067ffffffffffffffff808316818516808303821115611dad57611dad611eac565b600067ffffffffffffffff80841680611e1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b92169190910492915050565b600067ffffffffffffffff80831681851681830481118215151615611e4e57611e4e611eac565b02949350505050565b600067ffffffffffffffff83811690831681811015611e7857611e78611eac565b039392505050565b60005b83811015611e9b578181015183820152602001611e83565b8381111561142d5750506000910152565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6001600160a01b0381168114610e4057600080fd5b63ffffffff81168114610e4057600080fdfea26469706673582212205860c520822e64c68b1aa2d7645cf3d01b12ec6e622d49b3ce172b5b61a51b1d64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x226 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x12A JUMPI DUP1 PUSH4 0xA104FD79 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0xD18E81B3 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xE30C3978 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x4B6 JUMPI DUP1 PUSH4 0xE4A75BB8 EQ PUSH2 0x4C7 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x4CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xD18E81B3 EQ PUSH2 0x495 JUMPI DUP1 PUSH4 0xD1E77657 EQ PUSH2 0x4AE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA104FD79 EQ PUSH2 0x44D JUMPI DUP1 PUSH4 0xA3AE35AB EQ PUSH2 0x455 JUMPI DUP1 PUSH4 0xAB70D49C EQ PUSH2 0x468 JUMPI DUP1 PUSH4 0xC57708C2 EQ PUSH2 0x47B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7F4296D7 GT PUSH2 0xF9 JUMPI DUP1 PUSH4 0x7F4296D7 EQ PUSH2 0x40E JUMPI DUP1 PUSH4 0x89C36F8E EQ PUSH2 0x421 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x429 JUMPI DUP1 PUSH4 0x919BEAD0 EQ PUSH2 0x43A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x3E5 JUMPI DUP1 PUSH4 0x738BBEA8 EQ PUSH2 0x3ED JUMPI DUP1 PUSH4 0x75E38F16 EQ PUSH2 0x3F5 JUMPI DUP1 PUSH4 0x7CE52B18 EQ PUSH2 0x3FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x39F92C30 GT PUSH2 0x1BD JUMPI DUP1 PUSH4 0x4ABA4F6B GT PUSH2 0x18C JUMPI DUP1 PUSH4 0x5020EA56 GT PUSH2 0x171 JUMPI DUP1 PUSH4 0x5020EA56 EQ PUSH2 0x37E JUMPI DUP1 PUSH4 0x642D43DB EQ PUSH2 0x391 JUMPI DUP1 PUSH4 0x6BEA5344 EQ PUSH2 0x3CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4ABA4F6B EQ PUSH2 0x36E JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x376 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x39F92C30 EQ PUSH2 0x31A JUMPI DUP1 PUSH4 0x3E7A3908 EQ PUSH2 0x32C JUMPI DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0x341 JUMPI DUP1 PUSH4 0x412A616A EQ PUSH2 0x366 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x111070E4 GT PUSH2 0x1F9 JUMPI DUP1 PUSH4 0x111070E4 EQ PUSH2 0x2BD JUMPI DUP1 PUSH4 0x1B5344A2 EQ PUSH2 0x2CD JUMPI DUP1 PUSH4 0x2A7AD609 EQ PUSH2 0x304 JUMPI DUP1 PUSH4 0x2AE168A6 EQ PUSH2 0x312 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x996F6E1 EQ PUSH2 0x22B JUMPI DUP1 PUSH4 0x9AD71A5 EQ PUSH2 0x248 JUMPI DUP1 PUSH4 0xBDEECBD EQ PUSH2 0x29A JUMPI DUP1 PUSH4 0xD2BCB79 EQ PUSH2 0x2A2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x233 PUSH2 0x4E2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x298 PUSH2 0x256 CALLDATASIZE PUSH1 0x4 PUSH2 0x1CDF JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x60 SHL MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x298 PUSH2 0x503 JUMP JUMPDEST TIMESTAMP JUMPDEST PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x23F JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO ISZERO PUSH2 0x233 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x23F JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x2EF JUMP JUMPDEST PUSH2 0x298 PUSH2 0x8C6 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x2A4 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x2EF JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x23F JUMP JUMPDEST PUSH2 0x298 PUSH2 0xBCF JUMP JUMPDEST PUSH2 0x233 PUSH2 0xC99 JUMP JUMPDEST PUSH2 0x298 PUSH2 0xD38 JUMP JUMPDEST PUSH2 0x298 PUSH2 0x38C CALLDATASIZE PUSH1 0x4 PUSH2 0x1C3D JUMP JUMPDEST PUSH2 0xDC6 JUMP JUMPDEST PUSH2 0x298 PUSH2 0x39F CALLDATASIZE PUSH1 0x4 PUSH2 0x1C77 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH4 0xFFFFFFFF SWAP3 DUP4 AND PUSH5 0x100000000 MUL PUSH8 0xFFFFFFFFFFFFFFFF NOT SWAP1 SWAP2 AND SWAP3 SWAP1 SWAP4 AND SWAP2 SWAP1 SWAP2 OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x2EF JUMP JUMPDEST PUSH2 0x298 PUSH2 0xE43 JUMP JUMPDEST PUSH2 0x233 PUSH2 0xEB8 JUMP JUMPDEST PUSH2 0x2A4 PUSH2 0xF41 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x34E JUMP JUMPDEST PUSH2 0x298 PUSH2 0x41C CALLDATASIZE PUSH1 0x4 PUSH2 0x1BB7 JUMP JUMPDEST PUSH2 0xF4B JUMP JUMPDEST PUSH2 0x2A4 PUSH2 0xFC5 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x34E JUMP JUMPDEST PUSH2 0x298 PUSH2 0x448 CALLDATASIZE PUSH1 0x4 PUSH2 0x1C3D JUMP JUMPDEST PUSH2 0xFFB JUMP JUMPDEST PUSH2 0x2A4 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0x2A4 PUSH2 0x463 CALLDATASIZE PUSH1 0x4 PUSH2 0x1CDF JUMP JUMPDEST PUSH2 0x107F JUMP JUMPDEST PUSH2 0x34E PUSH2 0x476 CALLDATASIZE PUSH1 0x4 PUSH2 0x1BB7 JUMP JUMPDEST PUSH2 0x10B2 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x2EF JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x60 SHL SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x2A4 JUMP JUMPDEST PUSH2 0x233 PUSH2 0x1126 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x34E JUMP JUMPDEST PUSH2 0x233 PUSH2 0x1130 JUMP JUMPDEST PUSH2 0x298 PUSH2 0x4DD CALLDATASIZE PUSH1 0x4 PUSH2 0x1BB7 JUMP JUMPDEST PUSH2 0x1152 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4EC PUSH2 0x128E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4FE JUMPI POP PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x55D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D72657175657374656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x565 PUSH2 0xC99 JUMP JUMPDEST PUSH2 0x5B1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D636F6D706C6574650000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x9D2A5F9800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x9D2A5F98 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x61A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x62E 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 0x652 SWAP2 SWAP1 PUSH2 0x1C24 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD SWAP2 SWAP3 POP PUSH4 0xFFFFFFFF PUSH9 0x10000000000000000 DUP3 DIV DUP2 AND SWAP3 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV AND PUSH1 0x0 PUSH2 0x6A1 PUSH1 0x5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE DUP8 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP8 DUP2 AND PUSH1 0x20 DUP4 ADD SWAP1 DUP2 MSTORE PUSH1 0x3 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 DUP2 AND DUP5 DUP7 ADD SWAP1 DUP2 MSTORE DUP10 DUP3 AND PUSH1 0x60 DUP7 ADD SWAP1 DUP2 MSTORE DUP10 DUP6 AND PUSH1 0x80 DUP8 ADD SWAP1 DUP2 MSTORE PUSH1 0x4 DUP1 SLOAD SWAP9 MLOAD PUSH32 0x89EB92500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP9 MLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP5 MLOAD DUP7 AND PUSH1 0x24 DUP7 ADD MSTORE SWAP2 MLOAD DUP4 AND PUSH1 0x44 DUP6 ADD MSTORE MLOAD SWAP1 SWAP2 AND PUSH1 0x64 DUP4 ADD MSTORE MLOAD SWAP1 SWAP2 AND PUSH1 0x84 DUP3 ADD MSTORE SWAP3 SWAP4 POP SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x89EB925 SWAP1 PUSH1 0xA4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x77B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x78F 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 0x7B3 SWAP2 SWAP1 PUSH2 0x1C5A JUMP JUMPDEST POP PUSH1 0x0 PUSH2 0x7C1 DUP6 DUP6 DUP6 PUSH2 0x12BE JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH8 0xFFFFFFFFFFFFFFFF DUP4 AND OR SWAP1 SSTORE SWAP1 POP PUSH2 0x7EB DUP7 PUSH1 0x1 PUSH2 0x1D8E JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x3 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000 AND SWAP1 SSTORE PUSH1 0x40 MLOAD DUP8 DUP2 MSTORE PUSH32 0x13F646A3648EE5B5A0E8D6BC3D2D623FDDF38FA7C8C5DFDBDBE6A913112EDC6C SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 PUSH32 0x9E5F7E6AC833C4735B5548BBEEC59DAC4D413789AA351FBE11A654DAC0C4306C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x8CE PUSH2 0x128E JUMP JUMPDEST PUSH2 0x940 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F626561636F6E2D706572696F642D6E6F742D6F7665 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0x996 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D616C72656164792D726571756573746564 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0xD37B53700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP2 MLOAD PUSH1 0x0 SWAP4 DUP5 SWAP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 PUSH4 0xD37B537 SWAP3 PUSH1 0x4 DUP1 DUP4 ADD SWAP4 SWAP3 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x9F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA08 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 0xA2C SWAP2 SWAP1 PUSH2 0x1BD4 JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0xA49 JUMPI POP PUSH1 0x0 DUP2 GT JUMPDEST ISZERO PUSH2 0xA68 JUMPI PUSH1 0x2 SLOAD PUSH2 0xA68 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND SWAP2 AND DUP4 PUSH2 0x1303 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x8678A7B200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP2 MLOAD PUSH1 0x0 SWAP4 DUP5 SWAP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 PUSH4 0x8678A7B2 SWAP3 PUSH1 0x4 DUP1 DUP4 ADD SWAP4 SWAP3 DUP3 SWAP1 SUB ADD DUP2 DUP8 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xAC7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xADB 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 0xAFF SWAP2 SWAP1 PUSH2 0x1CB0 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP5 AND PUSH5 0x100000000 MUL PUSH8 0xFFFFFFFFFFFFFFFF NOT SWAP1 SWAP3 AND SWAP1 DUP6 AND OR OR SWAP1 SSTORE SWAP1 SWAP3 POP SWAP1 POP PUSH2 0xB46 PUSH1 0x5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 MSTORE DUP4 AND SWAP1 PUSH32 0xDE3A7AF7D3C2126E4FB96A7065B39F8BB17E3B9111C092E11236942FB38CA61 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP JUMP JUMPDEST PUSH2 0xBD7 PUSH2 0xEB8 JUMP JUMPDEST PUSH2 0xC23 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D74696D65646F75740000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000 DUP2 AND SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND DUP1 DUP4 MSTORE SWAP3 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x67638A3A7093A89CC6046DCA58AA93D6343E30847E8F84FC3759D9D4A3E6E38B SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x3A19B9BC00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x3A19B9BC SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xD00 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD14 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 0x4FE SWAP2 SWAP1 PUSH2 0x1C02 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xD92 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0xDA7 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1433 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0xDD9 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE2F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH2 0xE37 PUSH2 0x1490 JUMP JUMPDEST PUSH2 0xE40 DUP2 PUSH2 0x150A JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH2 0xE56 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEAC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH2 0xEB6 PUSH1 0x0 PUSH2 0x1433 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x0 SWAP1 PUSH9 0x10000000000000000 SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0xEDE JUMPI POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x3 SLOAD PUSH1 0x4 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP4 DIV DUP4 AND SWAP3 PUSH2 0xF31 SWAP3 PUSH9 0x10000000000000000 SWAP1 DIV AND SWAP1 PUSH4 0xFFFFFFFF PUSH21 0x10000000000000000000000000000000000000000 SWAP1 SWAP2 DIV AND PUSH2 0x1DB6 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND LT SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4FE PUSH2 0x160A JUMP JUMPDEST CALLER PUSH2 0xF5E PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xFB4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH2 0xFBC PUSH2 0x1490 JUMP JUMPDEST PUSH2 0xE40 DUP2 PUSH2 0x166B JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD PUSH1 0x0 SWAP2 PUSH2 0x4FE SWAP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND SWAP3 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 SWAP3 DIV PUSH4 0xFFFFFFFF AND SWAP2 PUSH1 0x1 PUSH1 0x60 SHL SWAP1 DIV AND PUSH2 0x12BE JUMP JUMPDEST CALLER PUSH2 0x100E PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1064 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH2 0x106C PUSH2 0x1490 JUMP JUMPDEST PUSH2 0xE40 DUP2 PUSH2 0x16C2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4FE PUSH2 0x17AA JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD PUSH1 0x0 SWAP2 PUSH2 0x10AC SWAP2 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP5 PUSH2 0x12BE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x10C7 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x111D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH2 0x10AC DUP3 PUSH2 0x17D5 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4FE PUSH2 0x128E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1143 PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO ISZERO SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4FE JUMPI POP PUSH2 0x4FE PUSH2 0xC99 JUMP JUMPDEST CALLER PUSH2 0x1165 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x11BB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1237 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x60 SHL SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x12AD PUSH2 0x17AA JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND GT ISZERO SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH4 0xFFFFFFFF DUP5 AND PUSH2 0x12D2 DUP7 DUP6 PUSH2 0x1E57 JUMP JUMPDEST PUSH2 0x12DC SWAP2 SWAP1 PUSH2 0x1DD9 JUMP JUMPDEST SWAP1 POP PUSH2 0x12EE PUSH4 0xFFFFFFFF DUP6 AND DUP3 PUSH2 0x1E27 JUMP JUMPDEST PUSH2 0x12F8 SWAP1 DUP7 PUSH2 0x1DB6 JUMP JUMPDEST SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDD62ED3E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP2 DUP7 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1368 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x137C 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 0x13A0 SWAP2 SWAP1 PUSH2 0x1C24 JUMP JUMPDEST PUSH2 0x13AA SWAP2 SWAP1 PUSH2 0x1D76 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x142D SWAP1 DUP6 SWAP1 PUSH2 0x193E JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x3 SLOAD NUMBER SWAP1 PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO DUP1 PUSH2 0x14BE JUMPI POP PUSH1 0x3 SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP2 LT JUMPDEST PUSH2 0xE40 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D696E2D666C696768740000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x3C DUP2 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1586 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D74696D656F75742D67742D36302D736563 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH21 0x10000000000000000000000000000000000000000 PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x521671714DD36D366ADF3FE2EFEC91D3F58A3131AAD68E268821D8144B5D0845 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x1615 PUSH2 0x17AA JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1634 PUSH1 0x5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP2 DIV AND SWAP1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0x165A JUMPI PUSH1 0x0 SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH2 0x1664 DUP2 DUP4 PUSH2 0x1E57 JUMP JUMPDEST SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xF935763CC7C57EE8ED6318ED71E756CCA0731294C9F46FF5B386F36D6FF1417A SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND GT PUSH2 0x173E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F626561636F6E2D706572696F642D67726561746572 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D7468616E2D7A65726F00000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x4727494DBD863E2084366F539D6EC569AAF7AB78582A34F006F004266777CD19 SWAP1 PUSH1 0x20 ADD PUSH2 0x15FF JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x5 SLOAD PUSH1 0x0 SWAP2 PUSH2 0x4FE SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x1DB6 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND PUSH2 0x185B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F647261772D686973746F72792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D61646472657373000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x18E3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F6578697374696E672D647261772D686973746F7279 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D61646472657373000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xEB70B03FAB908E126E5EFC33F8DFD2731FA89C716282A86769025F8DD4A6C1E0 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1993 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1A28 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x1A23 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x19B1 SWAP2 SWAP1 PUSH2 0x1C02 JUMP JUMPDEST PUSH2 0x1A23 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1A37 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x1A3F JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x1AB7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x554 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x1B05 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x554 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1B21 SWAP2 SWAP1 PUSH2 0x1D09 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1B5E JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1B63 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1B73 DUP3 DUP3 DUP7 PUSH2 0x1B7E JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x1B8D JUMPI POP DUP2 PUSH2 0x12FC JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x1B9D JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x554 SWAP2 SWAP1 PUSH2 0x1D25 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1BC9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x12FC DUP2 PUSH2 0x1EDB JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1BE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x1BF2 DUP2 PUSH2 0x1EDB JUMP JUMPDEST PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD MLOAD SWAP3 SWAP5 SWAP3 SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C14 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x12FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C36 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C4F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x12FC DUP2 PUSH2 0x1EF0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C6C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x12FC DUP2 PUSH2 0x1EF0 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C8A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1C95 DUP2 PUSH2 0x1EF0 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x1CA5 DUP2 PUSH2 0x1EF0 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1CC3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x1CCE DUP2 PUSH2 0x1EF0 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x1CA5 DUP2 PUSH2 0x1EF0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1CF1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x12FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1D1B DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x1E80 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1D44 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1E80 JUMP JUMPDEST PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1D89 JUMPI PUSH2 0x1D89 PUSH2 0x1EAC JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1DAD JUMPI PUSH2 0x1DAD PUSH2 0x1EAC JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1DAD JUMPI PUSH2 0x1DAD PUSH2 0x1EAC JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP5 AND DUP1 PUSH2 0x1E1B JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1E4E JUMPI PUSH2 0x1E4E PUSH2 0x1EAC JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1E78 JUMPI PUSH2 0x1E78 PUSH2 0x1EAC JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1E9B JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1E83 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x142D JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE40 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xE40 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PC PUSH1 0xC5 KECCAK256 DUP3 0x2E PUSH5 0xC68B1AA2D7 PUSH5 0x5CF3D01B12 0xEC PUSH15 0x622D49B3CE172B5B61A51B1D64736F PUSH13 0x63430008060033000000000000 ",
              "sourceMap": "209:959:64:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5885:128:29;;;:::i;:::-;;;4477:14:84;;4470:22;4452:41;;4440:2;4425:18;5885:128:29;;;;;;;;623:76:64;;;;;;:::i;:::-;680:4;:12;;;;;;-1:-1:-1;;;680:12:64;;;;;;;;;;;623:76;;;7352:1377:29;;;:::i;901:107:64:-;12856:15:29;901:107:64;;;12795:18:84;12783:31;;;12765:50;;12753:2;12738:18;901:107:64;12720:101:84;5277:104:29;5356:10;:13;;;:18;;5277:104;;9850:90;9923:10;;;;;;;9850:90;;;12598:10:84;12586:23;;;12568:42;;12556:2;12541:18;9850:90:29;12523:93:84;9641:108:29;9729:10;:13;;;9641:108;;10356:531;;;:::i;9173:112::-;9257:21;;;;9173:112;;9059:108;9141:19;;-1:-1:-1;;;9141:19:29;;;;9059:108;;9291:95;9369:10;;-1:-1:-1;;;;;9369:10:29;9291:95;;;-1:-1:-1;;;;;3611:55:84;;;3593:74;;3581:2;3566:18;9291:95:29;3548:125:84;7034:280:29;;;:::i;4991:122::-;;;:::i;3147:129:22:-;;;:::i;11172:137:29:-;;;;;;:::i;:::-;;:::i;1014:152:64:-;;;;;;:::i;:::-;1092:10;:25;;;1127:32;;;;;-1:-1:-1;;1127:32:64;;;1092:25;;;;1127:32;;;;;;;;;;1014:152;9520:115:29;9608:10;:20;;;;;;9520:115;;2508:94:22;;;:::i;5554:237:29:-;;;:::i;8767:135::-;;;:::i;9755:89::-;9834:3;;-1:-1:-1;;;;;9834:3:29;9755:89;;11347:179;;;;;;:::i;:::-;;:::i;6355:285::-;;;:::i;1814:85:22:-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:22;1814:85;;10925:209:29;;;;;;:::i;:::-;;:::i;8940:113::-;;;:::i;6678:318::-;;;;;;:::i;:::-;;:::i;10129:189::-;;;;;;:::i;:::-;;:::i;9392:90::-;9465:10;;;;;;;9392:90;;803:92:64;786:4;;-1:-1:-1;;;786:4:64;;;;803:92;5885:128:29;9978:113;;;:::i;2014:101:22:-;2095:13;;-1:-1:-1;;;;;2095:13:22;2014:101;;6051:125:29;;;:::i;2751:234:22:-;;;;;;:::i;:::-;;:::i;5885:128:29:-;5941:4;5964:21;:19;:21::i;:::-;:42;;;;-1:-1:-1;5356:10:29;:13;;;:18;5964:42;5957:49;;5885:128;:::o;7352:1377::-;5356:10;:13;;;3235:57;;;;-1:-1:-1;;;3235:57:29;;5657:2:84;3235:57:29;;;5639:21:84;5696:2;5676:18;;;5669:30;5735;5715:18;;;5708:58;5783:18;;3235:57:29;;;;;;;;;3310:16;:14;:16::i;:::-;3302:56;;;;-1:-1:-1;;;3302:56:29;;7602:2:84;3302:56:29;;;7584:21:84;7641:2;7621:18;;;7614:30;7680:29;7660:18;;;7653:57;7727:18;;3302:56:29;7574:177:84;3302:56:29;7456:3:::1;::::0;7473:10:::1;:13:::0;7456:31:::1;::::0;;;;7473:13:::1;::::0;;::::1;7456:31;::::0;::::1;12568:42:84::0;7433:20:29::1;::::0;-1:-1:-1;;;;;7456:3:29::1;::::0;:16:::1;::::0;12541:18:84;;7456:31:29::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7518:10;::::0;7631:19:::1;::::0;7433:54;;-1:-1:-1;7518:10:29::1;::::0;;::::1;::::0;::::1;::::0;7570:21:::1;::::0;;::::1;::::0;-1:-1:-1;;;7631:19:29;::::1;;7497:18;7675:14;786:4:64::0;;;-1:-1:-1;;;786:4:64;;;;;705:92;7675:14:29::1;7762:333;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;;::::0;::::1;::::0;;;7884:10:::1;:22:::0;;;::::1;;::::0;;::::1;7762:333:::0;;;;;;;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;8106:10:::1;::::0;;:26;;;;;11777:13:84;;8106:26:29;;::::1;11759:32:84::0;;;;11820:24;;11911:21;;11889:20;;;11882:51;11964:24;;12063:23;;12041:20;;;12034:53;12129:24;12125:33;;;12103:20;;;12096:63;12201:24;12197:33;;;12175:20;;;12168:63;7660:29:29;;-1:-1:-1;7762:333:29;-1:-1:-1;;;;;8106:10:29;;::::1;::::0;:19:::1;::::0;11731::84;;8106:26:29::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8252:32;8287:134;8336:22;8372:20;8406:5;8287:35;:134::i;:::-;8431:21;:49:::0;;-1:-1:-1;;8431:49:29::1;;::::0;::::1;;::::0;;;-1:-1:-1;8503:15:29::1;:11:::0;-1:-1:-1;8503:15:29::1;:::i;:::-;8490:10;:28:::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;8608:10:::1;8601:17:::0;;;;;;8634:27:::1;::::0;12388:25:84;;;8634:27:29::1;::::0;12376:2:84;12361:18;8634:27:29::1;;;;;;;8676:46;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;;::::1;7423:1306;;;;;;;7352:1377::o:0;10356:531::-;3030:21;:19;:21::i;:::-;3022:67;;;;-1:-1:-1;;;3022:67:29;;9429:2:84;3022:67:29;;;9411:21:84;9468:2;9448:18;;;9441:30;9507:34;9487:18;;;9480:62;9578:3;9558:18;;;9551:31;9599:19;;3022:67:29;9401:223:84;3022:67:29;5356:10;:13;;;:18;3099:62;;;;-1:-1:-1;;;3099:62:29;;6014:2:84;3099:62:29;;;5996:21:84;;;6033:18;;;6026:30;6092:34;6072:18;;;6065:62;6144:18;;3099:62:29;5986:182:84;3099:62:29;10466:3:::1;::::0;:19:::1;::::0;;;;;;;10426:16:::1;::::0;;;-1:-1:-1;;;;;10466:3:29;;::::1;::::0;:17:::1;::::0;:19:::1;::::0;;::::1;::::0;;;;;;;:3;:19;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10425:60:::0;;-1:-1:-1;10425:60:29;-1:-1:-1;;;;;;10500:22:29;::::1;::::0;;::::1;::::0;:40:::1;;;10539:1;10526:10;:14;10500:40;10496:135;;;10603:3;::::0;10556:64:::1;::::0;-1:-1:-1;;;;;10556:38:29;;::::1;::::0;10603:3:::1;10609:10:::0;10556:38:::1;:64::i;:::-;10680:3;::::0;:25:::1;::::0;;;;;;;10642:16:::1;::::0;;;-1:-1:-1;;;;;10680:3:29;;::::1;::::0;:23:::1;::::0;:25:::1;::::0;;::::1;::::0;;;;;;;10642:16;10680:3;:25;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10715:10;:25:::0;;::::1;10750:32:::0;;::::1;::::0;::::1;-1:-1:-1::0;;10750:32:29;;;10715:25;;::::1;10750:32:::0;::::1;::::0;;10641:64;;-1:-1:-1;10641:64:29;-1:-1:-1;10817:14:29::1;786:4:64::0;;;-1:-1:-1;;;786:4:64;;;;;705:92;10817:14:29::1;10792:10;:39:::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;10847:33:::1;::::0;::::1;12586:23:84::0;;;12568:42;;10847:33:29;::::1;::::0;::::1;::::0;12556:2:84;12541:18;10847:33:29::1;;;;;;;10415:472;;;;10356:531::o:0;7034:280::-;7092:15;:13;:15::i;:::-;7084:55;;;;-1:-1:-1;;;7084:55:29;;9073:2:84;7084:55:29;;;9055:21:84;9112:2;9092:18;;;9085:30;9151:29;9131:18;;;9124:57;9198:18;;7084:55:29;9045:177:84;7084:55:29;7168:10;:13;;7240:17;;;;;;7272:35;;7168:13;7210:20;;;;;12568:42:84;;;7168:13:29;;;7210:20;7168:13;;7272:35;;12556:2:84;12541:18;7272:35:29;;;;;;;7074:240;;7034:280::o;4991:122::-;5070:3;;5092:10;:13;5070:36;;;;;5092:13;;;;5070:36;;;12568:42:84;5047:4:29;;-1:-1:-1;;;;;5070:3:29;;:21;;12541:18:84;;5070:36:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;3147:129:22:-;4050:13;;-1:-1:-1;;;;;4050:13:22;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:22;;8713:2:84;4028:71:22;;;8695:21:84;8752:2;8732:18;;;8725:30;8791:33;8771:18;;;8764:61;8842:18;;4028:71:22;8685:181:84;4028:71:22;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:22::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:22::1;::::0;;3147:129::o;11172:137:29:-;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7958:2:84;3819:58:22;;;7940:21:84;7997:2;7977:18;;;7970:30;8036:26;8016:18;;;8009:54;8080:18;;3819:58:22;7930:174:84;3819:58:22;2933:24:29::1;:22;:24::i;:::-;11275:27:::2;11290:11;11275:14;:27::i;:::-;11172:137:::0;:::o;2508:94:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7958:2:84;3819:58:22;;;7940:21:84;7997:2;7977:18;;;7970:30;8036:26;8016:18;;;8009:54;8080:18;;3819:58:22;7930:174:84;3819:58:22;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;5554:237:29:-;5629:10;:22;5609:4;;5629:22;;;;;5625:160;;-1:-1:-1;5679:5:29;;5554:237::o;5625:160::-;786:4:64;;5735:10:29;:22;5722:10;;786:4:64;-1:-1:-1;;;786:4:64;;;;;;5722:35:29;;5735:22;;;;;5722:10;;;;;;:35;:::i;:::-;:52;;;5715:59;;5554:237;:::o;8767:135::-;8839:6;8864:31;:29;:31::i;11347:179::-;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7958:2:84;3819:58:22;;;7940:21:84;7997:2;7977:18;;;7970:30;8036:26;8016:18;;;8009:54;8080:18;;3819:58:22;7930:174:84;3819:58:22;2933:24:29::1;:22;:24::i;:::-;11492:27:::2;11507:11;11492:14;:27::i;6355:285::-:0;6529:21;;6568:19;;6439:6;;6476:157;;6529:21;;;;;-1:-1:-1;;;6568:19:29;;;;;;-1:-1:-1;;;786:4:64;;;6476:35:29;:157::i;10925:209::-;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7958:2:84;3819:58:22;;;7940:21:84;7997:2;7977:18;;;7970:30;8036:26;8016:18;;;8009:54;8080:18;;3819:58:22;7930:174:84;3819:58:22;2933:24:29::1;:22;:24::i;:::-;11082:45:::2;11106:20;11082:23;:45::i;8940:113::-:0;9001:6;9026:20;:18;:20::i;6678:318::-;6894:21;;6933:19;;6800:6;;6841:148;;6894:21;;;;;-1:-1:-1;;;6933:19:29;;;;6970:5;6841:35;:148::i;:::-;6822:167;6678:318;-1:-1:-1;;6678:318:29:o;10129:189::-;10248:11;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7958:2:84;3819:58:22;;;7940:21:84;7997:2;7977:18;;;7970:30;8036:26;8016:18;;;8009:54;8080:18;;3819:58:22;7930:174:84;3819:58:22;10282:29:29::1;10297:13;10282:14;:29::i;9978:113::-:0;10040:4;10063:21;:19;:21::i;6051:125::-;6110:4;6133:16;5356:10;:13;;;:18;;;5277:104;6133:16;:36;;;;;6153:16;:14;:16::i;2751:234:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;7958:2:84;3819:58:22;;;7940:21:84;7997:2;7977:18;;;7970:30;8036:26;8016:18;;;8009:54;8080:18;;3819:58:22;7930:174:84;3819:58:22;-1:-1:-1;;;;;2834:23:22;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:22;;10189:2:84;2826:73:22::1;::::0;::::1;10171:21:84::0;10228:2;10208:18;;;10201:30;10267:34;10247:18;;;10240:62;10338:7;10318:18;;;10311:35;10363:19;;2826:73:22::1;10161:227:84::0;2826:73:22::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:22::1;-1:-1:-1::0;;;;;2910:25:22;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:22::1;2751:234:::0;:::o;13747:122:29:-;786:4:64;;13801::29;;-1:-1:-1;;;786:4:64;;;;13824:20:29;:18;:20::i;:::-;:38;;;;13817:45;;13747:122;:::o;12280:357::-;12452:6;;12494:55;;;12495:30;12503:22;12495:5;:30;:::i;:::-;12494:55;;;;:::i;:::-;12470:79;-1:-1:-1;12592:37:29;;;;12470:79;12592:37;:::i;:::-;12566:64;;:22;:64;:::i;:::-;12559:71;;;12280:357;;;;;;:::o;1955:310:6:-;2104:39;;;;;2128:4;2104:39;;;3913:34:84;-1:-1:-1;;;;;3983:15:84;;;3963:18;;;3956:43;2081:20:6;;2146:5;;2104:15;;;;;3825:18:84;;2104:39:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;;:::i;:::-;2188:69;;;-1:-1:-1;;;;;4202:55:84;;2188:69:6;;;4184:74:84;4274:18;;;;4267:34;;;2188:69:6;;;;;;;;;;4157:18:84;;;;2188:69:6;;;;;;;;;;2211:22;2188:69;;;4267:34:84;;-1:-1:-1;2161:97:6;;2181:5;;2161:19;:97::i;:::-;2071:194;1955:310;;;:::o;3470:174:22:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;13940:246:29:-;14065:10;:20;14021:12;;14065:20;;;;;:25;;:64;;-1:-1:-1;14109:10:29;:20;;;;;;14094:35;;14065:64;14044:135;;;;-1:-1:-1;;;14044:135:29;;11415:2:84;14044:135:29;;;11397:21:84;11454:2;11434:18;;;11427:30;11493:26;11473:18;;;11466:54;11537:18;;14044:135:29;11387:174:84;15631:208:29;15716:2;15702:11;:16;;;15694:62;;;;-1:-1:-1;;;15694:62:29;;8311:2:84;15694:62:29;;;8293:21:84;8350:2;8330:18;;;8323:30;8389:34;8369:18;;;8362:62;8460:3;8440:18;;;8433:31;8481:19;;15694:62:29;8283:223:84;15694:62:29;15766:10;:24;;;;;;;;;;;;;;;;;;15806:26;;12568:42:84;;;15806:26:29;;12556:2:84;12541:18;15806:26:29;;;;;;;;15631:208;:::o;13347:254::-;13411:6;13429:12;13444:20;:18;:20::i;:::-;13429:35;;13474:11;13488:14;786:4:64;;;-1:-1:-1;;;786:4:64;;;;;705:92;13488:14:29;13474:28;;13526:4;13517:13;;:5;:13;;;13513:52;;13553:1;13546:8;;;;13347:254;:::o;13513:52::-;13582:12;13590:4;13582:5;:12;:::i;:::-;13575:19;;;;13347:254;:::o;11695:142::-;11768:3;:17;;-1:-1:-1;;11768:17:29;-1:-1:-1;;;;;11768:17:29;;;;;;;;11800:30;;;;-1:-1:-1;;11800:30:29;11695:142;:::o;15109:283::-;15221:1;15198:20;:24;;;15190:79;;;;-1:-1:-1;;;15190:79:29;;6784:2:84;15190:79:29;;;6766:21:84;6823:2;6803:18;;;6796:30;6862:34;6842:18;;;6835:62;6933:12;6913:18;;;6906:40;6963:19;;15190:79:29;6756:232:84;15190:79:29;15279:19;:42;;;;-1:-1:-1;;;15279:42:29;;;;;;;;;;;;;15337:48;;12568:42:84;;;15337:48:29;;12556:2:84;12541:18;15337:48:29;12523:93:84;13031:128:29;13133:19;;13109:21;;13084:6;;13109:43;;-1:-1:-1;;;13133:19:29;;;;;;13109:21;;:43;:::i;14424:516::-;14551:10;;14494:11;;-1:-1:-1;;;;;14551:10:29;;;;14579:37;;14571:90;;;;-1:-1:-1;;;14571:90:29;;11006:2:84;14571:90:29;;;10988:21:84;11045:2;11025:18;;;11018:30;11084:34;11064:18;;;11057:62;11155:10;11135:18;;;11128:38;11183:19;;14571:90:29;10978:230:84;14571:90:29;14728:19;-1:-1:-1;;;;;14693:55:29;14701:14;-1:-1:-1;;;;;14693:55:29;;;14672:142;;;;-1:-1:-1;;;14672:142:29;;6375:2:84;14672:142:29;;;6357:21:84;6414:2;6394:18;;;6387:30;6453:34;6433:18;;;6426:62;6524:10;6504:18;;;6497:38;6552:19;;14672:142:29;6347:230:84;14672:142:29;14825:10;:27;;-1:-1:-1;;14825:27:29;-1:-1:-1;;;;;14825:27:29;;;;;;;;14868:33;;;;-1:-1:-1;;14868:33:29;-1:-1:-1;14919:14:29;;14424:516;-1:-1:-1;14424:516:29:o;3140:706:6:-;3559:23;3585:69;3613:4;3585:69;;;;;;;;;;;;;;;;;3593:5;-1:-1:-1;;;;;3585:27:6;;;:69;;;;;:::i;:::-;3668:17;;3559:95;;-1:-1:-1;3668:21:6;3664:176;;3763:10;3752:30;;;;;;;;;;;;:::i;:::-;3744:85;;;;-1:-1:-1;;;3744:85:6;;10595:2:84;3744:85:6;;;10577:21:84;10634:2;10614:18;;;10607:30;10673:34;10653:18;;;10646:62;10744:12;10724:18;;;10717:40;10774:19;;3744:85:6;10567:232:84;3744:85:6;3210:636;3140:706;;:::o;3461:223:11:-;3594:12;3625:52;3647:6;3655:4;3661:1;3664:12;3625:21;:52::i;:::-;3618:59;3461:223;-1:-1:-1;;;;3461:223:11:o;4548:499::-;4713:12;4770:5;4745:21;:30;;4737:81;;;;-1:-1:-1;;;4737:81:11;;7195:2:84;4737:81:11;;;7177:21:84;7234:2;7214:18;;;7207:30;7273:34;7253:18;;;7246:62;7344:8;7324:18;;;7317:36;7370:19;;4737:81:11;7167:228:84;4737:81:11;1034:20;;4828:60;;;;-1:-1:-1;;;4828:60:11;;9831:2:84;4828:60:11;;;9813:21:84;9870:2;9850:18;;;9843:30;9909:31;9889:18;;;9882:59;9958:18;;4828:60:11;9803:179:84;4828:60:11;4900:12;4914:23;4941:6;-1:-1:-1;;;;;4941:11:11;4960:5;4967:4;4941:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4899:73;;;;4989:51;5006:7;5015:10;5027:12;4989:16;:51::i;:::-;4982:58;4548:499;-1:-1:-1;;;;;;;4548:499:11:o;7161:692::-;7307:12;7335:7;7331:516;;;-1:-1:-1;7365:10:11;7358:17;;7331:516;7476:17;;:21;7472:365;;7670:10;7664:17;7730:15;7717:10;7713:2;7709:19;7702:44;7472:365;7809:12;7802:20;;-1:-1:-1;;;7802:20:11;;;;;;;;:::i;14:247:84:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;200:31;225:5;200:31;:::i;266:312::-;345:6;353;406:2;394:9;385:7;381:23;377:32;374:2;;;422:1;419;412:12;374:2;454:9;448:16;473:31;498:5;473:31;:::i;:::-;568:2;553:18;;;;547:25;523:5;;547:25;;-1:-1:-1;;;364:214:84:o;583:277::-;650:6;703:2;691:9;682:7;678:23;674:32;671:2;;;719:1;716;709:12;671:2;751:9;745:16;804:5;797:13;790:21;783:5;780:32;770:2;;826:1;823;816:12;1411:184;1481:6;1534:2;1522:9;1513:7;1509:23;1505:32;1502:2;;;1550:1;1547;1540:12;1502:2;-1:-1:-1;1573:16:84;;1492:103;-1:-1:-1;1492:103:84:o;1600:245::-;1658:6;1711:2;1699:9;1690:7;1686:23;1682:32;1679:2;;;1727:1;1724;1717:12;1679:2;1766:9;1753:23;1785:30;1809:5;1785:30;:::i;1850:249::-;1919:6;1972:2;1960:9;1951:7;1947:23;1943:32;1940:2;;;1988:1;1985;1978:12;1940:2;2020:9;2014:16;2039:30;2063:5;2039:30;:::i;2104:384::-;2170:6;2178;2231:2;2219:9;2210:7;2206:23;2202:32;2199:2;;;2247:1;2244;2237:12;2199:2;2286:9;2273:23;2305:30;2329:5;2305:30;:::i;:::-;2354:5;-1:-1:-1;2411:2:84;2396:18;;2383:32;2424;2383;2424;:::i;:::-;2475:7;2465:17;;;2189:299;;;;;:::o;2493:381::-;2570:6;2578;2631:2;2619:9;2610:7;2606:23;2602:32;2599:2;;;2647:1;2644;2637:12;2599:2;2679:9;2673:16;2698:30;2722:5;2698:30;:::i;:::-;2797:2;2782:18;;2776:25;2747:5;;-1:-1:-1;2810:32:84;2776:25;2810:32;:::i;2879:284::-;2937:6;2990:2;2978:9;2969:7;2965:23;2961:32;2958:2;;;3006:1;3003;2996:12;2958:2;3045:9;3032:23;3095:18;3088:5;3084:30;3077:5;3074:41;3064:2;;3129:1;3126;3119:12;3168:274;3297:3;3335:6;3329:13;3351:53;3397:6;3392:3;3385:4;3377:6;3373:17;3351:53;:::i;:::-;3420:16;;;;;3305:137;-1:-1:-1;;3305:137:84:o;5008:442::-;5157:2;5146:9;5139:21;5120:4;5189:6;5183:13;5232:6;5227:2;5216:9;5212:18;5205:34;5248:66;5307:6;5302:2;5291:9;5287:18;5282:2;5274:6;5270:15;5248:66;:::i;:::-;5366:2;5354:15;5371:66;5350:88;5335:104;;;;5441:2;5331:113;;5129:321;-1:-1:-1;;5129:321:84:o;12826:128::-;12866:3;12897:1;12893:6;12890:1;12887:13;12884:2;;;12903:18;;:::i;:::-;-1:-1:-1;12939:9:84;;12874:80::o;12959:228::-;12998:3;13026:10;13063:2;13060:1;13056:10;13093:2;13090:1;13086:10;13124:3;13120:2;13116:12;13111:3;13108:21;13105:2;;;13132:18;;:::i;:::-;13168:13;;13006:181;-1:-1:-1;;;;13006:181:84:o;13192:236::-;13231:3;13259:18;13304:2;13301:1;13297:10;13334:2;13331:1;13327:10;13365:3;13361:2;13357:12;13352:3;13349:21;13346:2;;;13373:18;;:::i;13433:353::-;13472:1;13498:18;13543:2;13540:1;13536:10;13565:3;13555:2;;13602:77;13599:1;13592:88;13703:4;13700:1;13693:15;13731:4;13728:1;13721:15;13555:2;13764:10;;13760:20;;;;;13478:308;-1:-1:-1;;13478:308:84:o;13791:270::-;13830:7;13862:18;13907:2;13904:1;13900:10;13937:2;13934:1;13930:10;13993:3;13989:2;13985:12;13980:3;13977:21;13970:3;13963:11;13956:19;13952:47;13949:2;;;14002:18;;:::i;:::-;14042:13;;13842:219;-1:-1:-1;;;;13842:219:84:o;14066:229::-;14105:4;14134:18;14202:10;;;;14172;;14224:12;;;14221:2;;;14239:18;;:::i;:::-;14276:13;;14114:181;-1:-1:-1;;;14114:181:84:o;14300:258::-;14372:1;14382:113;14396:6;14393:1;14390:13;14382:113;;;14472:11;;;14466:18;14453:11;;;14446:39;14418:2;14411:10;14382:113;;;14513:6;14510:1;14507:13;14504:2;;;-1:-1:-1;;14548:1:84;14530:16;;14523:27;14353:205::o;14563:184::-;14615:77;14612:1;14605:88;14712:4;14709:1;14702:15;14736:4;14733:1;14726:15;14752:154;-1:-1:-1;;;;;14831:5:84;14827:54;14820:5;14817:65;14807:2;;14896:1;14893;14886:12;14911:121;14996:10;14989:5;14985:22;14978:5;14975:33;14965:2;;15022:1;15019;15012:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1598400",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "_currentTimeInternal()": "302",
                "beaconPeriodEndAt()": "infinite",
                "beaconPeriodRemainingSeconds()": "infinite",
                "calculateNextBeaconPeriodStartTime(uint64)": "infinite",
                "calculateNextBeaconPeriodStartTimeFromCurrentTime()": "5043",
                "canCompleteDraw()": "infinite",
                "canStartDraw()": "infinite",
                "cancelDraw()": "34624",
                "claimOwnership()": "54531",
                "completeDraw()": "infinite",
                "currentTime()": "2391",
                "getBeaconPeriodSeconds()": "2392",
                "getBeaconPeriodStartedAt()": "2353",
                "getDrawBuffer()": "2410",
                "getLastRngLockBlock()": "2429",
                "getLastRngRequestId()": "2397",
                "getNextDrawId()": "2429",
                "getRngService()": "2443",
                "getRngTimeout()": "2375",
                "isBeaconPeriodOver()": "infinite",
                "isRngCompleted()": "infinite",
                "isRngRequested()": "2345",
                "isRngTimedOut()": "8899",
                "owner()": "2420",
                "pendingOwner()": "2397",
                "renounceOwnership()": "28181",
                "setBeaconPeriodSeconds(uint32)": "infinite",
                "setCurrentTime(uint64)": "24571",
                "setDrawBuffer(address)": "30301",
                "setRngRequest(uint32,uint32)": "infinite",
                "setRngService(address)": "infinite",
                "setRngTimeout(uint32)": "infinite",
                "startDraw()": "infinite",
                "transferOwnership(address)": "28010"
              },
              "internal": {
                "_currentTime()": "infinite"
              }
            },
            "methodIdentifiers": {
              "_currentTimeInternal()": "0d2bcb79",
              "beaconPeriodEndAt()": "a104fd79",
              "beaconPeriodRemainingSeconds()": "75e38f16",
              "calculateNextBeaconPeriodStartTime(uint64)": "a3ae35ab",
              "calculateNextBeaconPeriodStartTimeFromCurrentTime()": "89c36f8e",
              "canCompleteDraw()": "e4a75bb8",
              "canStartDraw()": "0996f6e1",
              "cancelDraw()": "412a616a",
              "claimOwnership()": "4e71e0c8",
              "completeDraw()": "0bdeecbd",
              "currentTime()": "d18e81b3",
              "getBeaconPeriodSeconds()": "3e7a3908",
              "getBeaconPeriodStartedAt()": "39f92c30",
              "getDrawBuffer()": "4019f2d6",
              "getLastRngLockBlock()": "6bea5344",
              "getLastRngRequestId()": "2a7ad609",
              "getNextDrawId()": "c57708c2",
              "getRngService()": "7ce52b18",
              "getRngTimeout()": "1b5344a2",
              "isBeaconPeriodOver()": "d1e77657",
              "isRngCompleted()": "4aba4f6b",
              "isRngRequested()": "111070e4",
              "isRngTimedOut()": "738bbea8",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setBeaconPeriodSeconds(uint32)": "919bead0",
              "setCurrentTime(uint64)": "09ad71a5",
              "setDrawBuffer(address)": "ab70d49c",
              "setRngRequest(uint32,uint32)": "642d43db",
              "setRngService(address)": "7f4296d7",
              "setRngTimeout(uint32)": "5020ea56",
              "startDraw()": "2ae168a6",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IDrawBuffer\",\"name\":\"_drawBuffer\",\"type\":\"address\"},{\"internalType\":\"contract RNGInterface\",\"name\":\"_rng\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"_nextDrawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"_beaconPeriodStart\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"_drawPeriodSeconds\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"_rngTimeout\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"drawPeriodSeconds\",\"type\":\"uint32\"}],\"name\":\"BeaconPeriodSecondsUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"startedAt\",\"type\":\"uint64\"}],\"name\":\"BeaconPeriodStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"nextDrawId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IDrawBuffer\",\"name\":\"newDrawBuffer\",\"type\":\"address\"}],\"name\":\"DrawBufferUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"rngRequestId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"rngLockBlock\",\"type\":\"uint32\"}],\"name\":\"DrawCancelled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"randomNumber\",\"type\":\"uint256\"}],\"name\":\"DrawCompleted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"rngRequestId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"rngLockBlock\",\"type\":\"uint32\"}],\"name\":\"DrawStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract RNGInterface\",\"name\":\"rngService\",\"type\":\"address\"}],\"name\":\"RngServiceUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"rngTimeout\",\"type\":\"uint32\"}],\"name\":\"RngTimeoutSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"_currentTimeInternal\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"beaconPeriodEndAt\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"beaconPeriodRemainingSeconds\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"_time\",\"type\":\"uint64\"}],\"name\":\"calculateNextBeaconPeriodStartTime\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"calculateNextBeaconPeriodStartTimeFromCurrentTime\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"canCompleteDraw\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"canStartDraw\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cancelDraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"completeDraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currentTime\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBeaconPeriodSeconds\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBeaconPeriodStartedAt\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLastRngLockBlock\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLastRngRequestId\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNextDrawId\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getRngService\",\"outputs\":[{\"internalType\":\"contract RNGInterface\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getRngTimeout\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isBeaconPeriodOver\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isRngCompleted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isRngRequested\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isRngTimedOut\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_beaconPeriodSeconds\",\"type\":\"uint32\"}],\"name\":\"setBeaconPeriodSeconds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"_time\",\"type\":\"uint64\"}],\"name\":\"setCurrentTime\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"newDrawBuffer\",\"type\":\"address\"}],\"name\":\"setDrawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"lockBlock\",\"type\":\"uint32\"}],\"name\":\"setRngRequest\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract RNGInterface\",\"name\":\"_rngService\",\"type\":\"address\"}],\"name\":\"setRngService\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_rngTimeout\",\"type\":\"uint32\"}],\"name\":\"setRngTimeout\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"startDraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"beaconPeriodEndAt()\":{\"returns\":{\"_0\":\"The timestamp at which the beacon period ends.\"}},\"beaconPeriodRemainingSeconds()\":{\"returns\":{\"_0\":\"The number of seconds remaining until the beacon period can be complete.\"}},\"calculateNextBeaconPeriodStartTime(uint64)\":{\"params\":{\"time\":\"The timestamp to use as the current time\"},\"returns\":{\"_0\":\"The timestamp at which the next beacon period would start\"}},\"calculateNextBeaconPeriodStartTimeFromCurrentTime()\":{\"returns\":{\"_0\":\"The next beacon period start time\"}},\"canCompleteDraw()\":{\"returns\":{\"_0\":\"True if a Draw can be completed, false otherwise.\"}},\"canStartDraw()\":{\"returns\":{\"_0\":\"True if a Draw can be started, false otherwise.\"}},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"getLastRngLockBlock()\":{\"returns\":{\"_0\":\"The block number that the RNG request is locked to\"}},\"getLastRngRequestId()\":{\"returns\":{\"_0\":\"The current Request ID\"}},\"isBeaconPeriodOver()\":{\"returns\":{\"_0\":\"True if the beacon period is over, false otherwise\"}},\"isRngCompleted()\":{\"returns\":{\"_0\":\"True if a random number request has completed, false otherwise.\"}},\"isRngRequested()\":{\"returns\":{\"_0\":\"True if a random number has been requested, false otherwise.\"}},\"isRngTimedOut()\":{\"returns\":{\"_0\":\"True if a random number request has timed out, false otherwise.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setBeaconPeriodSeconds(uint32)\":{\"params\":{\"beaconPeriodSeconds\":\"The new beacon period in seconds.  Must be greater than zero.\"}},\"setDrawBuffer(address)\":{\"details\":\"All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\",\"params\":{\"newDrawBuffer\":\"DrawBuffer address\"},\"returns\":{\"_0\":\"DrawBuffer\"}},\"setRngService(address)\":{\"params\":{\"rngService\":\"The address of the new RNG service interface\"}},\"setRngTimeout(uint32)\":{\"params\":{\"rngTimeout\":\"The RNG request timeout in seconds.\"}},\"startDraw()\":{\"details\":\"The RNG-Request-Fee is expected to be held within this contract before calling this function\"},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"version\":1},\"userdoc\":{\"events\":{\"BeaconPeriodSecondsUpdated(uint32)\":{\"notice\":\"Emit when the drawPeriodSeconds is set.\"},\"BeaconPeriodStarted(uint64)\":{\"notice\":\"Emit when a draw has opened.\"},\"Deployed(uint32,uint64)\":{\"notice\":\"Emit when the DrawBeacon is deployed.\"},\"DrawBufferUpdated(address)\":{\"notice\":\"Emit when a new DrawBuffer has been set.\"},\"DrawCancelled(uint32,uint32)\":{\"notice\":\"Emit when a draw has been cancelled.\"},\"DrawCompleted(uint256)\":{\"notice\":\"Emit when a draw has been completed.\"},\"DrawStarted(uint32,uint32)\":{\"notice\":\"Emit when a draw has started.\"},\"RngServiceUpdated(address)\":{\"notice\":\"Emit when a RNG service address is set.\"},\"RngTimeoutSet(uint32)\":{\"notice\":\"Emit when a draw timeout param is set.\"}},\"kind\":\"user\",\"methods\":{\"beaconPeriodEndAt()\":{\"notice\":\"Returns the timestamp at which the beacon period ends\"},\"beaconPeriodRemainingSeconds()\":{\"notice\":\"Returns the number of seconds remaining until the beacon period can be complete.\"},\"calculateNextBeaconPeriodStartTime(uint64)\":{\"notice\":\"Calculates when the next beacon period will start.\"},\"calculateNextBeaconPeriodStartTimeFromCurrentTime()\":{\"notice\":\"Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now.\"},\"canCompleteDraw()\":{\"notice\":\"Returns whether a Draw can be completed.\"},\"canStartDraw()\":{\"notice\":\"Returns whether a Draw can be started.\"},\"cancelDraw()\":{\"notice\":\"Can be called by anyone to cancel the draw request if the RNG has timed out.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"completeDraw()\":{\"notice\":\"Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\"},\"getLastRngLockBlock()\":{\"notice\":\"Returns the block number that the current RNG request has been locked to.\"},\"getLastRngRequestId()\":{\"notice\":\"Returns the current RNG Request ID.\"},\"isBeaconPeriodOver()\":{\"notice\":\"Returns whether the beacon period is over\"},\"isRngCompleted()\":{\"notice\":\"Returns whether the random number request has completed.\"},\"isRngRequested()\":{\"notice\":\"Returns whether a random number has been requested\"},\"isRngTimedOut()\":{\"notice\":\"Returns whether the random number request has timed out.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setBeaconPeriodSeconds(uint32)\":{\"notice\":\"Allows the owner to set the beacon period in seconds.\"},\"setDrawBuffer(address)\":{\"notice\":\"Set global DrawBuffer variable.\"},\"setRngService(address)\":{\"notice\":\"Sets the RNG service that the Prize Strategy is connected to\"},\"setRngTimeout(uint32)\":{\"notice\":\"Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\"},\"startDraw()\":{\"notice\":\"Starts the Draw process by starting random number request. The previous beacon period must have ended.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/DrawBeaconHarness.sol\":\"DrawBeaconHarness\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Random Number Generator Interface\\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\n */\\ninterface RNGInterface {\\n  /**\\n   * @notice Emitted when a new request for a random number has been submitted\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param sender The indexed address of the sender of the request\\n   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /**\\n   * @notice Emitted when an existing request for a random number has been completed\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param randomNumber The random number produced by the 3rd-party service\\n   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /**\\n   * @notice Gets the last request id used by the RNG service\\n   * @return requestId The last request id used in the last request\\n   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /**\\n   * @notice Gets the Fee for making a Request against an RNG service\\n   * @return feeToken The address of the token that is used to pay fees\\n   * @return requestFee The fee required to be paid to make a request\\n   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /**\\n   * @notice Sends a request for a random number to the 3rd-party service\\n   * @dev Some services will complete the request immediately, others may have a time-delay\\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n   * @return requestId The ID of the request used to get the results of the RNG service\\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /**\\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\\n   * @dev For time-delayed requests, this function is used to check/confirm completion\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\\n   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /**\\n   * @notice Gets the random number produced by the 3rd-party service\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return randomNum The random number\\n   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"},\"contracts/DrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IDrawBeacon.sol\\\";\\nimport \\\"./interfaces/IDrawBuffer.sol\\\";\\n\\n\\n/**\\n  * @title  PoolTogether V4 DrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice Manages RNG (random number generator) requests and pushing Draws onto DrawBuffer.\\n            The DrawBeacon has 3 major actions for requesting a random number: start, cancel and complete.\\n            To create a new Draw, the user requests a new random number from the RNG service.\\n            When the random number is available, the user can create the draw using the create() method\\n            which will push the draw onto the DrawBuffer.\\n            If the RNG service fails to deliver a rng, when the request timeout elapses, the user can cancel the request.\\n*/\\ncontract DrawBeacon is IDrawBeacon, Ownable {\\n    using SafeCast for uint256;\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Variables ============ */\\n\\n    /// @notice RNG contract interface\\n    RNGInterface internal rng;\\n\\n    /// @notice Current RNG Request\\n    RngRequest internal rngRequest;\\n\\n    /// @notice DrawBuffer address\\n    IDrawBuffer internal drawBuffer;\\n\\n    /**\\n     * @notice RNG Request Timeout.  In fact, this is really a \\\"complete draw\\\" timeout.\\n     * @dev If the rng completes the award can still be cancelled.\\n     */\\n    uint32 internal rngTimeout;\\n\\n    /// @notice Seconds between beacon period request\\n    uint32 internal beaconPeriodSeconds;\\n\\n    /// @notice Epoch timestamp when beacon period can start\\n    uint64 internal beaconPeriodStartedAt;\\n\\n    /**\\n     * @notice Next Draw ID to use when pushing a Draw onto DrawBuffer\\n     * @dev Starts at 1. This way we know that no Draw has been recorded at 0.\\n     */\\n    uint32 internal nextDrawId;\\n\\n    /* ============ Structs ============ */\\n\\n    /**\\n     * @notice RNG Request\\n     * @param id          RNG request ID\\n     * @param lockBlock   Block number that the RNG request is locked\\n     * @param requestedAt Time when RNG is requested\\n     */\\n    struct RngRequest {\\n        uint32 id;\\n        uint32 lockBlock;\\n        uint64 requestedAt;\\n    }\\n\\n    /* ============ Events ============ */\\n\\n    /**\\n     * @notice Emit when the DrawBeacon is deployed.\\n     * @param nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\\n     * @param beaconPeriodStartedAt Timestamp when beacon period starts.\\n     */\\n    event Deployed(\\n        uint32 nextDrawId,\\n        uint64 beaconPeriodStartedAt\\n    );\\n\\n    /* ============ Modifiers ============ */\\n\\n    modifier requireDrawNotStarted() {\\n        _requireDrawNotStarted();\\n        _;\\n    }\\n\\n    modifier requireCanStartDraw() {\\n        require(_isBeaconPeriodOver(), \\\"DrawBeacon/beacon-period-not-over\\\");\\n        require(!isRngRequested(), \\\"DrawBeacon/rng-already-requested\\\");\\n        _;\\n    }\\n\\n    modifier requireCanCompleteRngRequest() {\\n        require(isRngRequested(), \\\"DrawBeacon/rng-not-requested\\\");\\n        require(isRngCompleted(), \\\"DrawBeacon/rng-not-complete\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Deploy the DrawBeacon smart contract.\\n     * @param _owner Address of the DrawBeacon owner\\n     * @param _drawBuffer The address of the draw buffer to push draws to\\n     * @param _rng The RNG service to use\\n     * @param _nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\\n     * @param _beaconPeriodStart The starting timestamp of the beacon period.\\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\\n     */\\n    constructor(\\n        address _owner,\\n        IDrawBuffer _drawBuffer,\\n        RNGInterface _rng,\\n        uint32 _nextDrawId,\\n        uint64 _beaconPeriodStart,\\n        uint32 _beaconPeriodSeconds,\\n        uint32 _rngTimeout\\n    ) Ownable(_owner) {\\n        require(_beaconPeriodStart > 0, \\\"DrawBeacon/beacon-period-greater-than-zero\\\");\\n        require(address(_rng) != address(0), \\\"DrawBeacon/rng-not-zero\\\");\\n        require(_nextDrawId >= 1, \\\"DrawBeacon/next-draw-id-gte-one\\\");\\n\\n        beaconPeriodStartedAt = _beaconPeriodStart;\\n        nextDrawId = _nextDrawId;\\n\\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\\n        _setDrawBuffer(_drawBuffer);\\n        _setRngService(_rng);\\n        _setRngTimeout(_rngTimeout);\\n\\n        emit Deployed(_nextDrawId, _beaconPeriodStart);\\n        emit BeaconPeriodStarted(_beaconPeriodStart);\\n    }\\n\\n    /* ============ Public Functions ============ */\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() public view override returns (bool) {\\n        return rng.isRequestComplete(rngRequest.id);\\n    }\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() public view override returns (bool) {\\n        return rngRequest.id != 0;\\n    }\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() public view override returns (bool) {\\n        if (rngRequest.requestedAt == 0) {\\n            return false;\\n        } else {\\n            return rngTimeout + rngRequest.requestedAt < _currentTime();\\n        }\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IDrawBeacon\\n    function canStartDraw() external view override returns (bool) {\\n        return _isBeaconPeriodOver() && !isRngRequested();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function canCompleteDraw() external view override returns (bool) {\\n        return isRngRequested() && isRngCompleted();\\n    }\\n\\n    /// @notice Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now.\\n    /// @return The next beacon period start time\\n    function calculateNextBeaconPeriodStartTimeFromCurrentTime() external view returns (uint64) {\\n        return\\n            _calculateNextBeaconPeriodStartTime(\\n                beaconPeriodStartedAt,\\n                beaconPeriodSeconds,\\n                _currentTime()\\n            );\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function calculateNextBeaconPeriodStartTime(uint64 _time)\\n        external\\n        view\\n        override\\n        returns (uint64)\\n    {\\n        return\\n            _calculateNextBeaconPeriodStartTime(\\n                beaconPeriodStartedAt,\\n                beaconPeriodSeconds,\\n                _time\\n            );\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function cancelDraw() external override {\\n        require(isRngTimedOut(), \\\"DrawBeacon/rng-not-timedout\\\");\\n        uint32 requestId = rngRequest.id;\\n        uint32 lockBlock = rngRequest.lockBlock;\\n        delete rngRequest;\\n        emit DrawCancelled(requestId, lockBlock);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function completeDraw() external override requireCanCompleteRngRequest {\\n        uint256 randomNumber = rng.randomNumber(rngRequest.id);\\n        uint32 _nextDrawId = nextDrawId;\\n        uint64 _beaconPeriodStartedAt = beaconPeriodStartedAt;\\n        uint32 _beaconPeriodSeconds = beaconPeriodSeconds;\\n        uint64 _time = _currentTime();\\n\\n        // create Draw struct\\n        IDrawBeacon.Draw memory _draw = IDrawBeacon.Draw({\\n            winningRandomNumber: randomNumber,\\n            drawId: _nextDrawId,\\n            timestamp: rngRequest.requestedAt, // must use the startAward() timestamp to prevent front-running\\n            beaconPeriodStartedAt: _beaconPeriodStartedAt,\\n            beaconPeriodSeconds: _beaconPeriodSeconds\\n        });\\n\\n        drawBuffer.pushDraw(_draw);\\n\\n        // to avoid clock drift, we should calculate the start time based on the previous period start time.\\n        uint64 nextBeaconPeriodStartedAt = _calculateNextBeaconPeriodStartTime(\\n            _beaconPeriodStartedAt,\\n            _beaconPeriodSeconds,\\n            _time\\n        );\\n        beaconPeriodStartedAt = nextBeaconPeriodStartedAt;\\n        nextDrawId = _nextDrawId + 1;\\n\\n        // Reset the rngRequest state so Beacon period can start again.\\n        delete rngRequest;\\n\\n        emit DrawCompleted(randomNumber);\\n        emit BeaconPeriodStarted(nextBeaconPeriodStartedAt);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function beaconPeriodRemainingSeconds() external view override returns (uint64) {\\n        return _beaconPeriodRemainingSeconds();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function beaconPeriodEndAt() external view override returns (uint64) {\\n        return _beaconPeriodEndAt();\\n    }\\n\\n    function getBeaconPeriodSeconds() external view returns (uint32) {\\n        return beaconPeriodSeconds;\\n    }\\n\\n    function getBeaconPeriodStartedAt() external view returns (uint64) {\\n        return beaconPeriodStartedAt;\\n    }\\n\\n    function getDrawBuffer() external view returns (IDrawBuffer) {\\n        return drawBuffer;\\n    }\\n\\n    function getNextDrawId() external view returns (uint32) {\\n        return nextDrawId;\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function getLastRngLockBlock() external view override returns (uint32) {\\n        return rngRequest.lockBlock;\\n    }\\n\\n    function getLastRngRequestId() external view override returns (uint32) {\\n        return rngRequest.id;\\n    }\\n\\n    function getRngService() external view returns (RNGInterface) {\\n        return rng;\\n    }\\n\\n    function getRngTimeout() external view returns (uint32) {\\n        return rngTimeout;\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function isBeaconPeriodOver() external view override returns (bool) {\\n        return _isBeaconPeriodOver();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawBuffer)\\n    {\\n        return _setDrawBuffer(newDrawBuffer);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function startDraw() external override requireCanStartDraw {\\n        (address feeToken, uint256 requestFee) = rng.getRequestFee();\\n\\n        if (feeToken != address(0) && requestFee > 0) {\\n            IERC20(feeToken).safeIncreaseAllowance(address(rng), requestFee);\\n        }\\n\\n        (uint32 requestId, uint32 lockBlock) = rng.requestRandomNumber();\\n        rngRequest.id = requestId;\\n        rngRequest.lockBlock = lockBlock;\\n        rngRequest.requestedAt = _currentTime();\\n\\n        emit DrawStarted(requestId, lockBlock);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds)\\n        external\\n        override\\n        onlyOwner\\n        requireDrawNotStarted\\n    {\\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setRngTimeout(uint32 _rngTimeout) external override onlyOwner requireDrawNotStarted {\\n        _setRngTimeout(_rngTimeout);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setRngService(RNGInterface _rngService)\\n        external\\n        override\\n        onlyOwner\\n        requireDrawNotStarted\\n    {\\n        _setRngService(_rngService);\\n    }\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param _rngService The address of the new RNG service interface\\n     */\\n    function _setRngService(RNGInterface _rngService) internal\\n    {\\n        rng = _rngService;\\n        emit RngServiceUpdated(_rngService);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start\\n     * @param _beaconPeriodStartedAt The timestamp at which the beacon period started\\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\\n     * @param _time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function _calculateNextBeaconPeriodStartTime(\\n        uint64 _beaconPeriodStartedAt,\\n        uint32 _beaconPeriodSeconds,\\n        uint64 _time\\n    ) internal pure returns (uint64) {\\n        uint64 elapsedPeriods = (_time - _beaconPeriodStartedAt) / _beaconPeriodSeconds;\\n        return _beaconPeriodStartedAt + (elapsedPeriods * _beaconPeriodSeconds);\\n    }\\n\\n    /**\\n     * @notice returns the current time.  Used for testing.\\n     * @return The current time (block.timestamp)\\n     */\\n    function _currentTime() internal view virtual returns (uint64) {\\n        return uint64(block.timestamp);\\n    }\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends\\n     */\\n    function _beaconPeriodEndAt() internal view returns (uint64) {\\n        return beaconPeriodStartedAt + beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the prize can be awarded.\\n     * @return The number of seconds remaining until the prize can be awarded.\\n     */\\n    function _beaconPeriodRemainingSeconds() internal view returns (uint64) {\\n        uint64 endAt = _beaconPeriodEndAt();\\n        uint64 time = _currentTime();\\n\\n        if (endAt <= time) {\\n            return 0;\\n        }\\n\\n        return endAt - time;\\n    }\\n\\n    /**\\n     * @notice Returns whether the beacon period is over.\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function _isBeaconPeriodOver() internal view returns (bool) {\\n        return _beaconPeriodEndAt() <= _currentTime();\\n    }\\n\\n    /**\\n     * @notice Check to see draw is in progress.\\n     */\\n    function _requireDrawNotStarted() internal view {\\n        uint256 currentBlock = block.number;\\n\\n        require(\\n            rngRequest.lockBlock == 0 || currentBlock < rngRequest.lockBlock,\\n            \\\"DrawBeacon/rng-in-flight\\\"\\n        );\\n    }\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param _newDrawBuffer  DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function _setDrawBuffer(IDrawBuffer _newDrawBuffer) internal returns (IDrawBuffer) {\\n        IDrawBuffer _previousDrawBuffer = drawBuffer;\\n        require(address(_newDrawBuffer) != address(0), \\\"DrawBeacon/draw-history-not-zero-address\\\");\\n\\n        require(\\n            address(_newDrawBuffer) != address(_previousDrawBuffer),\\n            \\\"DrawBeacon/existing-draw-history-address\\\"\\n        );\\n\\n        drawBuffer = _newDrawBuffer;\\n\\n        emit DrawBufferUpdated(_newDrawBuffer);\\n\\n        return _newDrawBuffer;\\n    }\\n\\n    /**\\n     * @notice Sets the beacon period in seconds.\\n     * @param _beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function _setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds) internal {\\n        require(_beaconPeriodSeconds > 0, \\\"DrawBeacon/beacon-period-greater-than-zero\\\");\\n        beaconPeriodSeconds = _beaconPeriodSeconds;\\n\\n        emit BeaconPeriodSecondsUpdated(_beaconPeriodSeconds);\\n    }\\n\\n    /**\\n     * @notice Sets the RNG request timeout in seconds.  This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param _rngTimeout The RNG request timeout in seconds.\\n     */\\n    function _setRngTimeout(uint32 _rngTimeout) internal {\\n        require(_rngTimeout > 60, \\\"DrawBeacon/rng-timeout-gt-60-secs\\\");\\n        rngTimeout = _rngTimeout;\\n\\n        emit RngTimeoutSet(_rngTimeout);\\n    }\\n}\\n\",\"keccak256\":\"0xee85be5d2589d345c67eaed219009338addc41cf6ac3b74b1ebd8fdd7de404da\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"contracts/test/DrawBeaconHarness.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\n\\nimport \\\"../DrawBeacon.sol\\\";\\nimport \\\"../interfaces/IDrawBuffer.sol\\\";\\n\\ncontract DrawBeaconHarness is DrawBeacon {\\n    constructor(\\n        address _owner,\\n        IDrawBuffer _drawBuffer,\\n        RNGInterface _rng,\\n        uint32 _nextDrawId,\\n        uint64 _beaconPeriodStart,\\n        uint32 _drawPeriodSeconds,\\n        uint32 _rngTimeout\\n    ) DrawBeacon(_owner, _drawBuffer, _rng, _nextDrawId, _beaconPeriodStart, _drawPeriodSeconds, _rngTimeout) {}\\n\\n    uint64 internal time;\\n\\n    function setCurrentTime(uint64 _time) external {\\n        time = _time;\\n    }\\n\\n    function _currentTime() internal view override returns (uint64) {\\n        return time;\\n    }\\n\\n    function currentTime() external view returns (uint64) {\\n        return _currentTime();\\n    }\\n\\n    function _currentTimeInternal() external view returns (uint64) {\\n        return super._currentTime();\\n    }\\n\\n    function setRngRequest(uint32 requestId, uint32 lockBlock) external {\\n        rngRequest.id = requestId;\\n        rngRequest.lockBlock = lockBlock;\\n    }\\n}\\n\",\"keccak256\":\"0x14a9d4e686fb85b9e221a024bc4191441e74578d44b69b4e14a86df386839ca8\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/test/DrawBeaconHarness.sol:DrawBeaconHarness",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/test/DrawBeaconHarness.sol:DrawBeaconHarness",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 5313,
                "contract": "contracts/test/DrawBeaconHarness.sol:DrawBeaconHarness",
                "label": "rng",
                "offset": 0,
                "slot": "2",
                "type": "t_contract(RNGInterface)4142"
              },
              {
                "astId": 5317,
                "contract": "contracts/test/DrawBeaconHarness.sol:DrawBeaconHarness",
                "label": "rngRequest",
                "offset": 0,
                "slot": "3",
                "type": "t_struct(RngRequest)5340_storage"
              },
              {
                "astId": 5321,
                "contract": "contracts/test/DrawBeaconHarness.sol:DrawBeaconHarness",
                "label": "drawBuffer",
                "offset": 0,
                "slot": "4",
                "type": "t_contract(IDrawBuffer)11318"
              },
              {
                "astId": 5324,
                "contract": "contracts/test/DrawBeaconHarness.sol:DrawBeaconHarness",
                "label": "rngTimeout",
                "offset": 20,
                "slot": "4",
                "type": "t_uint32"
              },
              {
                "astId": 5327,
                "contract": "contracts/test/DrawBeaconHarness.sol:DrawBeaconHarness",
                "label": "beaconPeriodSeconds",
                "offset": 24,
                "slot": "4",
                "type": "t_uint32"
              },
              {
                "astId": 5330,
                "contract": "contracts/test/DrawBeaconHarness.sol:DrawBeaconHarness",
                "label": "beaconPeriodStartedAt",
                "offset": 0,
                "slot": "5",
                "type": "t_uint64"
              },
              {
                "astId": 5333,
                "contract": "contracts/test/DrawBeaconHarness.sol:DrawBeaconHarness",
                "label": "nextDrawId",
                "offset": 8,
                "slot": "5",
                "type": "t_uint32"
              },
              {
                "astId": 15760,
                "contract": "contracts/test/DrawBeaconHarness.sol:DrawBeaconHarness",
                "label": "time",
                "offset": 12,
                "slot": "5",
                "type": "t_uint64"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(IDrawBuffer)11318": {
                "encoding": "inplace",
                "label": "contract IDrawBuffer",
                "numberOfBytes": "20"
              },
              "t_contract(RNGInterface)4142": {
                "encoding": "inplace",
                "label": "contract RNGInterface",
                "numberOfBytes": "20"
              },
              "t_struct(RngRequest)5340_storage": {
                "encoding": "inplace",
                "label": "struct DrawBeacon.RngRequest",
                "members": [
                  {
                    "astId": 5335,
                    "contract": "contracts/test/DrawBeaconHarness.sol:DrawBeaconHarness",
                    "label": "id",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 5337,
                    "contract": "contracts/test/DrawBeaconHarness.sol:DrawBeaconHarness",
                    "label": "lockBlock",
                    "offset": 4,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 5339,
                    "contract": "contracts/test/DrawBeaconHarness.sol:DrawBeaconHarness",
                    "label": "requestedAt",
                    "offset": 8,
                    "slot": "0",
                    "type": "t_uint64"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              },
              "t_uint64": {
                "encoding": "inplace",
                "label": "uint64",
                "numberOfBytes": "8"
              }
            }
          },
          "userdoc": {
            "events": {
              "BeaconPeriodSecondsUpdated(uint32)": {
                "notice": "Emit when the drawPeriodSeconds is set."
              },
              "BeaconPeriodStarted(uint64)": {
                "notice": "Emit when a draw has opened."
              },
              "Deployed(uint32,uint64)": {
                "notice": "Emit when the DrawBeacon is deployed."
              },
              "DrawBufferUpdated(address)": {
                "notice": "Emit when a new DrawBuffer has been set."
              },
              "DrawCancelled(uint32,uint32)": {
                "notice": "Emit when a draw has been cancelled."
              },
              "DrawCompleted(uint256)": {
                "notice": "Emit when a draw has been completed."
              },
              "DrawStarted(uint32,uint32)": {
                "notice": "Emit when a draw has started."
              },
              "RngServiceUpdated(address)": {
                "notice": "Emit when a RNG service address is set."
              },
              "RngTimeoutSet(uint32)": {
                "notice": "Emit when a draw timeout param is set."
              }
            },
            "kind": "user",
            "methods": {
              "beaconPeriodEndAt()": {
                "notice": "Returns the timestamp at which the beacon period ends"
              },
              "beaconPeriodRemainingSeconds()": {
                "notice": "Returns the number of seconds remaining until the beacon period can be complete."
              },
              "calculateNextBeaconPeriodStartTime(uint64)": {
                "notice": "Calculates when the next beacon period will start."
              },
              "calculateNextBeaconPeriodStartTimeFromCurrentTime()": {
                "notice": "Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now."
              },
              "canCompleteDraw()": {
                "notice": "Returns whether a Draw can be completed."
              },
              "canStartDraw()": {
                "notice": "Returns whether a Draw can be started."
              },
              "cancelDraw()": {
                "notice": "Can be called by anyone to cancel the draw request if the RNG has timed out."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "completeDraw()": {
                "notice": "Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer."
              },
              "getLastRngLockBlock()": {
                "notice": "Returns the block number that the current RNG request has been locked to."
              },
              "getLastRngRequestId()": {
                "notice": "Returns the current RNG Request ID."
              },
              "isBeaconPeriodOver()": {
                "notice": "Returns whether the beacon period is over"
              },
              "isRngCompleted()": {
                "notice": "Returns whether the random number request has completed."
              },
              "isRngRequested()": {
                "notice": "Returns whether a random number has been requested"
              },
              "isRngTimedOut()": {
                "notice": "Returns whether the random number request has timed out."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setBeaconPeriodSeconds(uint32)": {
                "notice": "Allows the owner to set the beacon period in seconds."
              },
              "setDrawBuffer(address)": {
                "notice": "Set global DrawBuffer variable."
              },
              "setRngService(address)": {
                "notice": "Sets the RNG service that the Prize Strategy is connected to"
              },
              "setRngTimeout(uint32)": {
                "notice": "Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked."
              },
              "startDraw()": {
                "notice": "Starts the Draw process by starting random number request. The previous beacon period must have ended."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/test/DrawBufferHarness.sol": {
        "DrawBufferHarness": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "uint8",
                  "name": "card",
                  "type": "uint8"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "draw",
                  "type": "tuple"
                }
              ],
              "name": "DrawSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "MAX_CARDINALITY",
              "outputs": [
                {
                  "internalType": "uint16",
                  "name": "",
                  "type": "uint16"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_start",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "_numberOfDraws",
                  "type": "uint256"
                },
                {
                  "internalType": "uint32",
                  "name": "_timestamp",
                  "type": "uint32"
                },
                {
                  "internalType": "uint256",
                  "name": "_winningRandomNumber",
                  "type": "uint256"
                }
              ],
              "name": "addMultipleDraws",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBufferCardinality",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "name": "getDraw",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawCount",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getDraws",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getNewestDraw",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getOldestDraw",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "_draw",
                  "type": "tuple"
                }
              ],
              "name": "pushDraw",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "_newDraw",
                  "type": "tuple"
                }
              ],
              "name": "setDraw",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "getBufferCardinality()": {
                "returns": {
                  "_0": "Ring buffer cardinality"
                }
              },
              "getDraw(uint32)": {
                "details": "Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.",
                "params": {
                  "drawId": "Draw.drawId"
                },
                "returns": {
                  "_0": "IDrawBeacon.Draw"
                }
              },
              "getDrawCount()": {
                "details": "If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestDraw index + 1.",
                "returns": {
                  "_0": "Number of Draws held in the draw ring buffer."
                }
              },
              "getDraws(uint32[])": {
                "details": "Read multiple Draws using each drawId to calculate position in the draws ring buffer.",
                "params": {
                  "drawIds": "Array of drawIds"
                },
                "returns": {
                  "_0": "IDrawBeacon.Draw[]"
                }
              },
              "getNewestDraw()": {
                "details": "Uses the nextDrawIndex to calculate the most recently added Draw.",
                "returns": {
                  "_0": "IDrawBeacon.Draw"
                }
              },
              "getOldestDraw()": {
                "details": "Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.",
                "returns": {
                  "_0": "IDrawBeacon.Draw"
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "pushDraw((uint256,uint32,uint64,uint64,uint32))": {
                "details": "Push new draw onto draws history via authorized manager or owner.",
                "params": {
                  "draw": "IDrawBeacon.Draw"
                },
                "returns": {
                  "_0": "Draw.drawId"
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setDraw((uint256,uint32,uint64,uint64,uint32))": {
                "details": "Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.",
                "params": {
                  "newDraw": "IDrawBeacon.Draw"
                },
                "returns": {
                  "_0": "Draw.drawId"
                }
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_15837": {
                  "entryPoint": null,
                  "id": 15837,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_3961": {
                  "entryPoint": null,
                  "id": 3961,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_6214": {
                  "entryPoint": null,
                  "id": 6214,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 109,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_uint8_fromMemory": {
                  "entryPoint": 189,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:464:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "110:352:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "156:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "165:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "168:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "158:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "158:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "158:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "131:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "140:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "127:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "127:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "152:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "123:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "123:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "120:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "181:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "200:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "185:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "273:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "282:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "285:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "275:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "275:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "275:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "232:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "243:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "258:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "263:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "254:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "254:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "267:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "250:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "250:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "239:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "239:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "229:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "229:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "222:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "222:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "219:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "298:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "308:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "322:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "347:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "358:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "343:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "343:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "337:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "337:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "326:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "414:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "423:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "426:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "416:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "416:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "416:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "384:7:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "397:7:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "406:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "393:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "393:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "381:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "381:31:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "374:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "374:39:84"
                              },
                              "nodeType": "YulIf",
                              "src": "371:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "439:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "449:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "439:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "68:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "79:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "91:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "99:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:448:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_uint8_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        if iszero(eq(value_1, and(value_1, 0xff))) { revert(0, 0) }\n        value1 := value_1\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b506040516200189d3803806200189d833981016040819052610031916100bd565b81818161003d8161006d565b50610203805463ffffffff60401b191660ff92909216680100000000000000000291909117905550610109915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100d057600080fd5b82516001600160a01b03811681146100e757600080fd5b602084015190925060ff811681146100fe57600080fd5b809150509250929050565b61178480620001196000396000f3fe608060405234801561001057600080fd5b506004361061011b5760003560e01c806383c34aaf116100b2578063d0bb78f311610081578063d7bcb86b11610066578063d7bcb86b1461025a578063e30c39781461026d578063f2fde38b1461027e57600080fd5b8063d0bb78f314610217578063d0ebdbe71461023757600080fd5b806383c34aaf146101d05780638da5cb5b146101e3578063c4df5fed146101f4578063caeef7ec146101fc57600080fd5b80634e71e0c8116100ee5780634e71e0c81461019c578063648b1b4f146101a4578063715018a6146101ac5780638200d873146101b457600080fd5b8063089eb925146101205780630edb1d2e1461014d57806323a11b2014610162578063481c6a7514610177575b600080fd5b61013361012e36600461147a565b610291565b60405163ffffffff90911681526020015b60405180910390f35b61015561035c565b60405161014491906115fd565b61017561017036600461150f565b6103d1565b005b6002546001600160a01b03165b6040516001600160a01b039091168152602001610144565b610175610430565b6101556104be565b610175610613565b6101bd61010081565b60405161ffff9091168152602001610144565b6101556101de36600461154c565b610688565b6000546001600160a01b0316610184565b610133610783565b6102035468010000000000000000900463ffffffff16610133565b61022a610225366004611405565b610825565b6040516101449190611567565b61024a6102453660046113dc565b6109d5565b6040519015158152602001610144565b61013361026836600461147a565b610a49565b6001546001600160a01b0316610184565b61017561028c3660046113dc565b610c36565b6000336102a66002546001600160a01b031690565b6001600160a01b031614806102d45750336102c96000546001600160a01b031690565b6001600160a01b0316145b61034b5760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61035482610d72565b90505b919050565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff80821683526401000000008204811660208401526801000000000000000090910416918101919091526103cc90610f74565b905090565b835b838111610429576040805160a08101825283815263ffffffff808416602083015285169181019190915260146060820152600a608082015261041481610d72565b50508080610421906116cf565b9150506103d3565b5050505050565b6001546001600160a01b0316331461048a5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610342565b60015461049f906001600160a01b0316610faf565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925290600090600390610100811061053f5761053f611722565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff640100000000830481169484018590526c010000000000000000000000008304166060840152600160a01b909104166080820152915061060d57506040805160a081018252600354815260045463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b900490911660808201525b92915050565b336106266000546001600160a01b031690565b6001600160a01b03161461067c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610342565b6106866000610faf565b565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff80821683526401000000008204811660208401526801000000000000000090910416918101919091526003906106fc908461100c565b63ffffffff16610100811061071357610713611722565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b9004909116608082015292915050565b604080516060810182526102035463ffffffff8082168084526401000000008304821660208501526801000000000000000090920416928201929092526000916107cf57600091505090565b6020810151600363ffffffff821661010081106107ee576107ee611722565b6002020160010160049054906101000a900467ffffffffffffffff1667ffffffffffffffff1660001461060d575060400151919050565b606060008267ffffffffffffffff81111561084257610842611738565b60405190808252806020026020018201604052801561089b57816020015b6040805160a0810182526000808252602080830182905292820181905260608201819052608082015282526000199092019101816108605790505b50604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915290915060005b848110156109cb576003610918838888858181106108fe576108fe611722565b9050602002016020810190610913919061154c565b61100c565b63ffffffff16610100811061092f5761092f611722565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b9004909116608082015283518490839081106109ad576109ad611722565b602002602001018190525080806109c3906116cf565b9150506108de565b5090949350505050565b6000336109ea6000546001600160a01b031690565b6001600160a01b031614610a405760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610342565b6103548261101f565b600033610a5e6000546001600160a01b031690565b6001600160a01b031614610ab45760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610342565b604080516060810182526102035463ffffffff808216835264010000000082048116602080850191909152680100000000000000009092048116938301939093528401519091600091610b0a9184919061110b16565b90508360038263ffffffff166101008110610b2757610b27611722565b82516002919091029190910190815560208083015160019092018054604080860151606087015160809097015163ffffffff9687166bffffffffffffffffffffffff199094169390931764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909716027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1695909517600160a01b9185169190910217905586015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610c249087906115fd565b60405180910390a25050506020015190565b33610c496000546001600160a01b031690565b6001600160a01b031614610c9f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610342565b6001600160a01b038116610d1b5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610342565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b604080516060810182526102035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925260009183906003906101008110610dc957610dc9611722565b825160029190910291909101908155602080830151600190920180546040850151606086015160809096015163ffffffff9586166bffffffffffffffffffffffff199093169290921764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909616027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1694909417600160a01b948416949094029390931790925590840151610ea59183919061123b16565b8051610203805460208085015160409586015163ffffffff90811668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff928216640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000909516968216969096179390931716939093179091559085015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610f639086906115fd565b60405180910390a250506020015190565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915281516003906106fc90849061110b565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611018838361110b565b9392505050565b6002546000906001600160a01b039081169083168114156110a85760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610342565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600061111683611326565b80156111325750826000015163ffffffff168263ffffffff1611155b61117e5760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d6472617700000000000000000000000000000000006044820152606401610342565b825160009061118e9084906116aa565b9050836040015163ffffffff168163ffffffff16106111ef5760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d64726177000000000000000000000000000000006044820152606401610342565b600061120f856020015163ffffffff16866040015163ffffffff1661134e565b90506112328163ffffffff168363ffffffff16876040015163ffffffff1661137c565b95945050505050565b604080516060810182526000808252602082018190529181019190915261126183611326565b15806112845750825161127590600161166b565b63ffffffff168263ffffffff16145b6112d05760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e74696700000000000000000000000000006044820152606401610342565b60405180606001604052808363ffffffff168152602001611305856020015163ffffffff16866040015163ffffffff16611394565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156113475750815163ffffffff16155b1592915050565b60008161135d5750600061060d565b611018600161136c8486611653565b6113769190611693565b836113a4565b600061138c8361136c8487611653565b949350505050565b6000611018611376846001611653565b600061101882846116ea565b803563ffffffff8116811461035757600080fd5b803567ffffffffffffffff8116811461035757600080fd5b6000602082840312156113ee57600080fd5b81356001600160a01b038116811461101857600080fd5b6000806020838503121561141857600080fd5b823567ffffffffffffffff8082111561143057600080fd5b818501915085601f83011261144457600080fd5b81358181111561145357600080fd5b8660208260051b850101111561146857600080fd5b60209290920196919550909350505050565b600060a0828403121561148c57600080fd5b60405160a0810181811067ffffffffffffffff821117156114bd57634e487b7160e01b600052604160045260246000fd5b604052823581526114d0602084016113b0565b60208201526114e1604084016113c4565b60408201526114f2606084016113c4565b6060820152611503608084016113b0565b60808201529392505050565b6000806000806080858703121561152557600080fd5b843593506020850135925061153c604086016113b0565b9396929550929360600135925050565b60006020828403121561155e57600080fd5b611018826113b0565b6020808252825182820181905260009190848201906040850190845b818110156115f1576115de83855180518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b9284019260a09290920191600101611583565b50909695505050505050565b60a0810161060d828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b600082198211156116665761166661170c565b500190565b600063ffffffff80831681851680830382111561168a5761168a61170c565b01949350505050565b6000828210156116a5576116a561170c565b500390565b600063ffffffff838116908316818110156116c7576116c761170c565b039392505050565b60006000198214156116e3576116e361170c565b5060010190565b60008261170757634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220d75d4c731c51fc3ca7debb9b3f18a9b97457bbe9d2c233f05a122358e28e981364736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x189D CODESIZE SUB DUP1 PUSH3 0x189D DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x31 SWAP2 PUSH2 0xBD JUMP JUMPDEST DUP2 DUP2 DUP2 PUSH2 0x3D DUP2 PUSH2 0x6D JUMP JUMPDEST POP PUSH2 0x203 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0x40 SHL NOT AND PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP PUSH2 0x109 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0xFE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x1784 DUP1 PUSH3 0x119 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 0x11B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x83C34AAF GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0xD0BB78F3 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xD7BCB86B GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD7BCB86B EQ PUSH2 0x25A JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x26D JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x27E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xD0BB78F3 EQ PUSH2 0x217 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x237 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x83C34AAF EQ PUSH2 0x1D0 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1E3 JUMPI DUP1 PUSH4 0xC4DF5FED EQ PUSH2 0x1F4 JUMPI DUP1 PUSH4 0xCAEEF7EC EQ PUSH2 0x1FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4E71E0C8 GT PUSH2 0xEE JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x19C JUMPI DUP1 PUSH4 0x648B1B4F EQ PUSH2 0x1A4 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1AC JUMPI DUP1 PUSH4 0x8200D873 EQ PUSH2 0x1B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x89EB925 EQ PUSH2 0x120 JUMPI DUP1 PUSH4 0xEDB1D2E EQ PUSH2 0x14D JUMPI DUP1 PUSH4 0x23A11B20 EQ PUSH2 0x162 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x177 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x133 PUSH2 0x12E CALLDATASIZE PUSH1 0x4 PUSH2 0x147A JUMP JUMPDEST PUSH2 0x291 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x155 PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x144 SWAP2 SWAP1 PUSH2 0x15FD JUMP JUMPDEST PUSH2 0x175 PUSH2 0x170 CALLDATASIZE PUSH1 0x4 PUSH2 0x150F JUMP JUMPDEST PUSH2 0x3D1 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x144 JUMP JUMPDEST PUSH2 0x175 PUSH2 0x430 JUMP JUMPDEST PUSH2 0x155 PUSH2 0x4BE JUMP JUMPDEST PUSH2 0x175 PUSH2 0x613 JUMP JUMPDEST PUSH2 0x1BD PUSH2 0x100 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x144 JUMP JUMPDEST PUSH2 0x155 PUSH2 0x1DE CALLDATASIZE PUSH1 0x4 PUSH2 0x154C JUMP JUMPDEST PUSH2 0x688 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x184 JUMP JUMPDEST PUSH2 0x133 PUSH2 0x783 JUMP JUMPDEST PUSH2 0x203 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x133 JUMP JUMPDEST PUSH2 0x22A PUSH2 0x225 CALLDATASIZE PUSH1 0x4 PUSH2 0x1405 JUMP JUMPDEST PUSH2 0x825 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x144 SWAP2 SWAP1 PUSH2 0x1567 JUMP JUMPDEST PUSH2 0x24A PUSH2 0x245 CALLDATASIZE PUSH1 0x4 PUSH2 0x13DC JUMP JUMPDEST PUSH2 0x9D5 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x144 JUMP JUMPDEST PUSH2 0x133 PUSH2 0x268 CALLDATASIZE PUSH1 0x4 PUSH2 0x147A JUMP JUMPDEST PUSH2 0xA49 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x184 JUMP JUMPDEST PUSH2 0x175 PUSH2 0x28C CALLDATASIZE PUSH1 0x4 PUSH2 0x13DC JUMP JUMPDEST PUSH2 0xC36 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x2A6 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2D4 JUMPI POP CALLER PUSH2 0x2C9 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x34B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x354 DUP3 PUSH2 0xD72 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x3CC SWAP1 PUSH2 0xF74 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST DUP4 JUMPDEST DUP4 DUP2 GT PUSH2 0x429 JUMPI PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE DUP4 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP1 DUP5 AND PUSH1 0x20 DUP4 ADD MSTORE DUP6 AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x14 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0xA PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x414 DUP2 PUSH2 0xD72 JUMP JUMPDEST POP POP DUP1 DUP1 PUSH2 0x421 SWAP1 PUSH2 0x16CF JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3D3 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x48A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x49F SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xFAF JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0x53F JUMPI PUSH2 0x53F PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD DUP6 SWAP1 MSTORE PUSH13 0x1000000000000000000000000 DUP4 DIV AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV AND PUSH1 0x80 DUP3 ADD MSTORE SWAP2 POP PUSH2 0x60D JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x3 SLOAD DUP2 MSTORE PUSH1 0x4 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x626 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x67C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST PUSH2 0x686 PUSH1 0x0 PUSH2 0xFAF JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x3 SWAP1 PUSH2 0x6FC SWAP1 DUP5 PUSH2 0x100C JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x713 JUMPI PUSH2 0x713 PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH5 0x100000000 DUP4 DIV DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH2 0x7CF JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x3 PUSH4 0xFFFFFFFF DUP3 AND PUSH2 0x100 DUP2 LT PUSH2 0x7EE JUMPI PUSH2 0x7EE PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x2 MUL ADD PUSH1 0x1 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x0 EQ PUSH2 0x60D JUMPI POP PUSH1 0x40 ADD MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x842 JUMPI PUSH2 0x842 PUSH2 0x1738 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x89B JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x80 DUP3 ADD MSTORE DUP3 MSTORE PUSH1 0x0 NOT SWAP1 SWAP3 ADD SWAP2 ADD DUP2 PUSH2 0x860 JUMPI SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x9CB JUMPI PUSH1 0x3 PUSH2 0x918 DUP4 DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x8FE JUMPI PUSH2 0x8FE PUSH2 0x1722 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x913 SWAP2 SWAP1 PUSH2 0x154C JUMP JUMPDEST PUSH2 0x100C JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x92F JUMPI PUSH2 0x92F PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE DUP4 MLOAD DUP5 SWAP1 DUP4 SWAP1 DUP2 LT PUSH2 0x9AD JUMPI PUSH2 0x9AD PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x9C3 SWAP1 PUSH2 0x16CF JUMP JUMPDEST SWAP2 POP POP PUSH2 0x8DE JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x9EA PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA40 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST PUSH2 0x354 DUP3 PUSH2 0x101F JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xA5E PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xAB4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV DUP2 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE DUP5 ADD MLOAD SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH2 0xB0A SWAP2 DUP5 SWAP2 SWAP1 PUSH2 0x110B AND JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x3 DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0xB27 JUMPI PUSH2 0xB27 PUSH2 0x1722 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x2 SWAP2 SWAP1 SWAP2 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 DUP2 SSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x1 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0x40 DUP1 DUP7 ADD MLOAD PUSH1 0x60 DUP8 ADD MLOAD PUSH1 0x80 SWAP1 SWAP8 ADD MLOAD PUSH4 0xFFFFFFFF SWAP7 DUP8 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR PUSH5 0x100000000 PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND MUL OR PUSH32 0xFFFFFFFFFFFFFFFF000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF AND PUSH13 0x1000000000000000000000000 SWAP2 SWAP1 SWAP8 AND MUL PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP6 SWAP1 SWAP6 OR PUSH1 0x1 PUSH1 0xA0 SHL SWAP2 DUP6 AND SWAP2 SWAP1 SWAP2 MUL OR SWAP1 SSTORE DUP7 ADD MLOAD SWAP2 MLOAD SWAP2 AND SWAP1 PUSH32 0xC6F337E5507FD1BDEBC6D79ED14168145E8C109D7B7139459692E24F06BAED17 SWAP1 PUSH2 0xC24 SWAP1 DUP8 SWAP1 PUSH2 0x15FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP PUSH1 0x20 ADD MLOAD SWAP1 JUMP JUMPDEST CALLER PUSH2 0xC49 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC9F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xD1B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x342 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0xDC9 JUMPI PUSH2 0xDC9 PUSH2 0x1722 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x2 SWAP2 SWAP1 SWAP2 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 DUP2 SSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x1 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH1 0x80 SWAP1 SWAP7 ADD MLOAD PUSH4 0xFFFFFFFF SWAP6 DUP7 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR PUSH5 0x100000000 PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND MUL OR PUSH32 0xFFFFFFFFFFFFFFFF000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF AND PUSH13 0x1000000000000000000000000 SWAP2 SWAP1 SWAP7 AND MUL PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP5 SWAP1 SWAP5 OR PUSH1 0x1 PUSH1 0xA0 SHL SWAP5 DUP5 AND SWAP5 SWAP1 SWAP5 MUL SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP3 SSTORE SWAP1 DUP5 ADD MLOAD PUSH2 0xEA5 SWAP2 DUP4 SWAP2 SWAP1 PUSH2 0x123B AND JUMP JUMPDEST DUP1 MLOAD PUSH2 0x203 DUP1 SLOAD PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH1 0x40 SWAP6 DUP7 ADD MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP3 DUP3 AND PUSH5 0x100000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000 SWAP1 SWAP6 AND SWAP7 DUP3 AND SWAP7 SWAP1 SWAP7 OR SWAP4 SWAP1 SWAP4 OR AND SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP2 SSTORE SWAP1 DUP6 ADD MLOAD SWAP2 MLOAD SWAP2 AND SWAP1 PUSH32 0xC6F337E5507FD1BDEBC6D79ED14168145E8C109D7B7139459692E24F06BAED17 SWAP1 PUSH2 0xF63 SWAP1 DUP7 SWAP1 PUSH2 0x15FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH1 0x20 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH1 0x3 SWAP1 PUSH2 0x6FC SWAP1 DUP5 SWAP1 PUSH2 0x110B JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1018 DUP4 DUP4 PUSH2 0x110B JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x10A8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x342 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1116 DUP4 PUSH2 0x1326 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1132 JUMPI POP DUP3 PUSH1 0x0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x117E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6675747572652D647261770000000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x0 SWAP1 PUSH2 0x118E SWAP1 DUP5 SWAP1 PUSH2 0x16AA JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x11EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F657870697265642D6472617700000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x120F DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x134E JUMP JUMPDEST SWAP1 POP PUSH2 0x1232 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x137C JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x1261 DUP4 PUSH2 0x1326 JUMP JUMPDEST ISZERO DUP1 PUSH2 0x1284 JUMPI POP DUP3 MLOAD PUSH2 0x1275 SWAP1 PUSH1 0x1 PUSH2 0x166B JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND EQ JUMPDEST PUSH2 0x12D0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6D7573742D62652D636F6E7469670000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1305 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x1394 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x0 EQ DUP1 ISZERO PUSH2 0x1347 JUMPI POP DUP2 MLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x135D JUMPI POP PUSH1 0x0 PUSH2 0x60D JUMP JUMPDEST PUSH2 0x1018 PUSH1 0x1 PUSH2 0x136C DUP5 DUP7 PUSH2 0x1653 JUMP JUMPDEST PUSH2 0x1376 SWAP2 SWAP1 PUSH2 0x1693 JUMP JUMPDEST DUP4 PUSH2 0x13A4 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x138C DUP4 PUSH2 0x136C DUP5 DUP8 PUSH2 0x1653 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1018 PUSH2 0x1376 DUP5 PUSH1 0x1 PUSH2 0x1653 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1018 DUP3 DUP5 PUSH2 0x16EA JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x357 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x357 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x13EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1018 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1418 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1430 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1444 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1453 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1468 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x148C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x14BD JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE DUP3 CALLDATALOAD DUP2 MSTORE PUSH2 0x14D0 PUSH1 0x20 DUP5 ADD PUSH2 0x13B0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x14E1 PUSH1 0x40 DUP5 ADD PUSH2 0x13C4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x14F2 PUSH1 0x60 DUP5 ADD PUSH2 0x13C4 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x1503 PUSH1 0x80 DUP5 ADD PUSH2 0x13B0 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1525 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH2 0x153C PUSH1 0x40 DUP7 ADD PUSH2 0x13B0 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP3 SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x155E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1018 DUP3 PUSH2 0x13B0 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x15F1 JUMPI PUSH2 0x15DE DUP4 DUP6 MLOAD DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH1 0xA0 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1583 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD PUSH2 0x60D DUP3 DUP5 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1666 JUMPI PUSH2 0x1666 PUSH2 0x170C JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x168A JUMPI PUSH2 0x168A PUSH2 0x170C JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x16A5 JUMPI PUSH2 0x16A5 PUSH2 0x170C JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x16C7 JUMPI PUSH2 0x16C7 PUSH2 0x170C JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x16E3 JUMPI PUSH2 0x16E3 PUSH2 0x170C JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1707 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD7 0x5D 0x4C PUSH20 0x1C51FC3CA7DEBB9B3F18A9B97457BBE9D2C233F0 GAS SLT 0x23 PC 0xE2 DUP15 SWAP9 SGT PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "130:702:65:-:0;;;177:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;227:5;234:4;227:5;1648:24:22;227:5:65;1648:9:22;:24::i;:::-;-1:-1:-1;1899:14:30::1;:41:::0;;-1:-1:-1;;;;1899:41:30::1;;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;130:702:65;;-1:-1:-1;;130:702:65;3470:174:22;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;;;;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:448:84:-;91:6;99;152:2;140:9;131:7;127:23;123:32;120:2;;;168:1;165;158:12;120:2;194:16;;-1:-1:-1;;;;;239:31:84;;229:42;;219:2;;285:1;282;275:12;219:2;358;343:18;;337:25;308:5;;-1:-1:-1;406:4:84;393:18;;381:31;;371:2;;426:1;423;416:12;371:2;449:7;439:17;;;110:352;;;;;:::o;:::-;130:702:65;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@MAX_CARDINALITY_6186": {
                  "entryPoint": null,
                  "id": 6186,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_drawIdToDrawIndex_6477": {
                  "entryPoint": 4108,
                  "id": 6477,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_getNewestDraw_6496": {
                  "entryPoint": 3956,
                  "id": 6496,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_pushDraw_6537": {
                  "entryPoint": 3442,
                  "id": 6537,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setManager_3896": {
                  "entryPoint": 4127,
                  "id": 3896,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_4058": {
                  "entryPoint": 4015,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@addMultipleDraws_15882": {
                  "entryPoint": 977,
                  "id": 15882,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@claimOwnership_4038": {
                  "entryPoint": 1072,
                  "id": 4038,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getBufferCardinality_6225": {
                  "entryPoint": null,
                  "id": 6225,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDrawCount_6347": {
                  "entryPoint": 1923,
                  "id": 6347,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDraw_6243": {
                  "entryPoint": 1672,
                  "id": 6243,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getDraws_6305": {
                  "entryPoint": 2085,
                  "id": 6305,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getIndex_12353": {
                  "entryPoint": 4363,
                  "id": 12353,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getNewestDraw_6360": {
                  "entryPoint": 860,
                  "id": 6360,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getOldestDraw_6400": {
                  "entryPoint": 1214,
                  "id": 6400,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isInitialized_12246": {
                  "entryPoint": 4902,
                  "id": 12246,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@manager_3850": {
                  "entryPoint": null,
                  "id": 3850,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@newestIndex_12830": {
                  "entryPoint": 4942,
                  "id": 12830,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nextIndex_12848": {
                  "entryPoint": 5012,
                  "id": 12848,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@offset_12803": {
                  "entryPoint": 4988,
                  "id": 12803,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@owner_3970": {
                  "entryPoint": null,
                  "id": 3970,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3979": {
                  "entryPoint": null,
                  "id": 3979,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pushDraw_6417": {
                  "entryPoint": 657,
                  "id": 6417,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@push_12290": {
                  "entryPoint": 4667,
                  "id": 12290,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@renounceOwnership_3993": {
                  "entryPoint": 1555,
                  "id": 3993,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setDraw_6460": {
                  "entryPoint": 2633,
                  "id": 6460,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setManager_3865": {
                  "entryPoint": 2517,
                  "id": 3865,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@transferOwnership_4020": {
                  "entryPoint": 3126,
                  "id": 4020,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@wrap_12781": {
                  "entryPoint": 5028,
                  "id": 12781,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 5084,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr": {
                  "entryPoint": 5125,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_struct$_Draw_$11085_memory_ptr": {
                  "entryPoint": 5242,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256t_uint256t_uint32t_uint256": {
                  "entryPoint": 5391,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_uint32": {
                  "entryPoint": 5452,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint32": {
                  "entryPoint": 5040,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint64": {
                  "entryPoint": 5060,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_struct_Draw": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5479,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Draw_$11085_memory_ptr__to_t_struct$_Draw_$11085_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5629,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 5715,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint32": {
                  "entryPoint": 5739,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 5779,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 5802,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 5839,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "mod_t_uint256": {
                  "entryPoint": 5866,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 5900,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 5922,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 5944,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:9745:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "62:115:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "72:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "94:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "81:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "81:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "72:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "155:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "164:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "167:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "157:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "157:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "157:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "123:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "134:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "141:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "130:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "130:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "120:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "120:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "113:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "113:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "110:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "41:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "52:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:163:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "230:123:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "262:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "249:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "249:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "291:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "302:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "309:18:84",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "298:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "298:30:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "288:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "288:41:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "281:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "281:49:84"
                              },
                              "nodeType": "YulIf",
                              "src": "278:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "209:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "220:5:84",
                            "type": ""
                          }
                        ],
                        "src": "182:171:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "428:239:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "474:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "483:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "486:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "476:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "476:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "476:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "449:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "458:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "445:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "445:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "470:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "441:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "441:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "438:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "499:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "525:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "512:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "512:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "503:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "621:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "630:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "633:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "623:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "623:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "623:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "557:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "568:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "575:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "564:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "564:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "554:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "554:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "547:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "547:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "544:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "646:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "656:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "646:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "394:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "405:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "417:6:84",
                            "type": ""
                          }
                        ],
                        "src": "358:309:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "776:510:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "822:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "831:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "834:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "797:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "806:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "793:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "793:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "818:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "789:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "789:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "786:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "847:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "874:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "861:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "861:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "851:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "893:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "903:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "897:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "948:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "957:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "960:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "950:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "950:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "950:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "936:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "944:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "933:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "933:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "930:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "973:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "987:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "998:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "983:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "983:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "977:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1053:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1062:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1065:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1055:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1055:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1055:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1032:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1036:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1028:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1028:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1043:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1024:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1024:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1017:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1017:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1014:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1078:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1105:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1092:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1092:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1082:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1135:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1144:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1147:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1137:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1137:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1137:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1123:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1131:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1120:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1120:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1117:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1209:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1218:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1221:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1211:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1211:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1211:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1174:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1182:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1185:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1178:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1178:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1170:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1170:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1195:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1166:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1166:32:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1200:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1163:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1163:45:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1160:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1234:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1248:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1252:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1244:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1244:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1234:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1264:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1274:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1264:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "734:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "745:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "757:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "765:6:84",
                            "type": ""
                          }
                        ],
                        "src": "672:614:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1384:785:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1431:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1440:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1443:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1433:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1433:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1433:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1405:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1414:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1401:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1401:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1426:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1397:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1397:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1394:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1456:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1476:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1470:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1470:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1460:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1488:34:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1510:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1518:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1506:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1506:16:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1492:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1605:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1626:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1629:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1619:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1619:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1619:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1727:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1730:4:84",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1720:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1720:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1720:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1755:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1758:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1748:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1748:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1748:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1540:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1552:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1537:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1537:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1576:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1588:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1573:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1573:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "1534:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1534:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1531:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1789:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1793:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1782:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1782:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1782:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1820:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1841:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "1828:12:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1828:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1813:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1813:39:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1813:39:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1872:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1880:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1868:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1868:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1907:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1918:2:84",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1903:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1903:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "1885:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1885:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1861:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1861:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1861:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1943:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1951:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1939:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1939:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1978:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1989:2:84",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1974:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1974:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "1956:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1956:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1932:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1932:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1932:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2014:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2022:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2010:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2010:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2049:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2060:2:84",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2045:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2045:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "2027:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2027:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2003:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2003:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2003:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2085:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2093:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2081:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2081:16:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2121:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2132:3:84",
                                            "type": "",
                                            "value": "128"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2117:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2117:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2099:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2099:38:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2074:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2074:64:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2074:64:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2147:16:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "2157:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2147:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Draw_$11085_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1350:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1361:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1373:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1291:878:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2294:269:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2341:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2350:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2353:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2343:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2343:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2343:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2315:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2324:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2311:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2311:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2336:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2307:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2307:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2304:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2366:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2389:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2376:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2376:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2366:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2408:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2435:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2446:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2431:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2431:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2418:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2418:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2408:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2459:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2491:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2502:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2487:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2487:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2469:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2469:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2459:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2515:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2542:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2553:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2538:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2538:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2525:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2525:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2515:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256t_uint256t_uint32t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2236:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2247:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2259:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2267:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2275:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2283:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2174:389:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2637:115:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2683:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2692:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2695:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2685:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2685:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2685:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2658:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2667:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2654:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2654:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2679:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2650:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2650:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2647:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2708:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2736:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2718:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2718:28:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2708:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2603:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2614:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2626:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2568:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2805:453:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2822:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2833:5:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "2827:5:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2827:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2815:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2815:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2815:25:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2849:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2879:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2886:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2875:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2875:16:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2869:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2869:23:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "2853:12:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2901:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2911:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2905:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2941:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2946:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2937:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2937:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2957:12:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2971:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2953:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2953:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2930:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2930:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2930:45:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2984:45:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3016:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3023:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3012:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3012:16:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3006:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3006:23:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2988:14:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3038:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3048:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3042:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3086:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3091:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3082:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3082:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3102:14:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "3118:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3098:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3098:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3075:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3075:47:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3075:47:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3142:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3147:4:84",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3138:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3138:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3168:5:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3175:4:84",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3164:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3164:16:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3158:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3158:23:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "3183:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3154:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3154:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3131:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3131:56:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3131:56:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3207:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3212:4:84",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3203:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3203:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3233:5:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3240:4:84",
                                                "type": "",
                                                "value": "0x80"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3229:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3229:16:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3223:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3223:23:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3248:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3219:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3219:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3196:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3196:56:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3196:56:84"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_Draw",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2789:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2796:3:84",
                            "type": ""
                          }
                        ],
                        "src": "2757:501:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3364:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3374:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3386:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3397:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3382:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3382:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3374:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3416:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3431:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3439:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3427:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3427:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3409:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3409:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3409:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3333:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3344:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3355:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3263:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3691:499:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3701:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3711:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3705:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3722:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3740:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3751:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3736:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3736:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3726:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3770:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3781:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3763:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3763:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3763:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3793:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "3804:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "3797:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3819:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3839:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3833:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3833:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3823:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3862:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3870:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3855:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3855:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3855:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3886:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3897:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3908:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3893:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3893:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "3886:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3920:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3938:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3946:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3934:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3934:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3924:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3958:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3967:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3962:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4026:138:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "4069:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "4063:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4063:13:84"
                                        },
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4078:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_struct_Draw",
                                        "nodeType": "YulIdentifier",
                                        "src": "4040:22:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4040:42:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4040:42:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4095:21:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4106:3:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4111:4:84",
                                          "type": "",
                                          "value": "0xa0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4102:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4102:14:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4095:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4129:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "4143:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4151:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4139:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4139:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4129:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3988:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3991:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3985:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3985:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3999:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4001:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4010:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4013:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4006:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4006:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4001:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3981:3:84",
                                "statements": []
                              },
                              "src": "3977:187:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4173:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "4181:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4173:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3660:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3671:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3682:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3494:696:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4290:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4300:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4312:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4323:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4308:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4308:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4300:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4342:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "4367:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "4360:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4360:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "4353:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4353:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4335:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4335:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4335:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4259:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4270:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4281:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4195:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4561:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4578:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4589:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4571:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4571:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4571:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4612:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4623:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4608:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4608:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4628:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4601:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4601:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4601:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4651:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4662:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4647:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4647:18:84"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4667:34:84",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4640:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4640:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4640:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4722:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4733:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4718:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4718:18:84"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4738:5:84",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4711:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4711:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4711:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4753:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4765:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4776:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4761:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4761:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4753:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4538:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4552:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4387:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4965:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4982:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4993:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4975:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4975:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4975:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5016:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5027:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5012:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5012:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5032:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5005:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5005:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5005:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5055:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5066:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5051:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5051:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5071:26:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5044:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5044:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5044:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5107:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5119:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5130:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5115:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5115:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5107:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4942:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4956:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4791:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5318:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5335:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5346:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5328:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5328:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5328:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5369:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5380:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5365:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5365:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5385:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5358:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5358:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5358:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5408:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5419:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5404:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5404:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5424:33:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5397:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5397:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5397:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5467:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5479:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5490:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5475:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5475:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5467:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5295:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5309:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5144:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5678:165:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5695:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5706:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5688:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5688:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5688:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5729:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5740:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5725:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5725:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5745:2:84",
                                    "type": "",
                                    "value": "15"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5718:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5718:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5718:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5768:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5779:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5764:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5764:18:84"
                                  },
                                  {
                                    "hexValue": "4452422f6675747572652d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5784:17:84",
                                    "type": "",
                                    "value": "DRB/future-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5757:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5757:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5757:45:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5811:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5823:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5834:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5819:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5819:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5811:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5655:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5669:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5504:339:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6022:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6039:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6050:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6032:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6032:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6032:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6073:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6084:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6069:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6069:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6089:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6062:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6062:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6062:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6112:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6123:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6108:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6108:18:84"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6128:34:84",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6101:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6101:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6101:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6183:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6194:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6179:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6179:18:84"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6199:8:84",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6172:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6172:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6172:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6217:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6229:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6240:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6225:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6225:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6217:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5999:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6013:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5848:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6429:166:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6446:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6457:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6439:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6439:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6439:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6480:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6491:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6476:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6476:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6496:2:84",
                                    "type": "",
                                    "value": "16"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6469:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6469:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6469:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6519:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6530:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6515:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6515:18:84"
                                  },
                                  {
                                    "hexValue": "4452422f657870697265642d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6535:18:84",
                                    "type": "",
                                    "value": "DRB/expired-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6508:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6508:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6508:46:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6563:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6575:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6586:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6571:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6571:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6563:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6406:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6420:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6255:340:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6774:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6791:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6802:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6784:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6784:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6784:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6825:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6836:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6821:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6821:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6841:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6814:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6814:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6814:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6864:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6875:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6860:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6860:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6880:34:84",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6853:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6853:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6853:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6935:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6946:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6931:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6931:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6951:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6924:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6924:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6924:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6968:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6980:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6991:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6976:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6976:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6968:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6751:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6765:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6600:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7180:168:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7197:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7208:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7190:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7190:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7190:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7231:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7242:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7227:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7227:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7247:2:84",
                                    "type": "",
                                    "value": "18"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7220:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7220:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7220:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7270:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7281:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7266:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7266:18:84"
                                  },
                                  {
                                    "hexValue": "4452422f6d7573742d62652d636f6e746967",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7286:20:84",
                                    "type": "",
                                    "value": "DRB/must-be-contig"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7259:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7259:48:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7259:48:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7316:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7328:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7339:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7324:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7324:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7316:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7157:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7171:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7006:342:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7500:93:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7510:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7522:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7533:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7518:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7518:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7510:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7569:6:84"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7577:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Draw",
                                  "nodeType": "YulIdentifier",
                                  "src": "7546:22:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7546:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7546:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$11085_memory_ptr__to_t_struct$_Draw_$11085_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7469:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7480:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7491:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7353:240:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7697:89:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7707:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7719:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7730:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7715:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7715:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7707:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7749:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7764:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7772:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7760:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7760:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7742:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7742:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7742:38:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7666:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7677:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7688:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7598:188:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7890:93:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7900:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7912:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7923:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7908:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7908:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7900:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7942:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7957:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7965:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7953:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7953:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7935:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7935:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7935:42:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7859:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7870:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7881:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7791:192:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8036:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8063:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8065:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8065:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8065:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8052:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "8059:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "8055:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8055:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8049:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8049:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8046:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8094:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8105:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8108:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8101:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8101:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8094:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8019:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8022:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8028:3:84",
                            "type": ""
                          }
                        ],
                        "src": "7988:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8168:181:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8178:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8188:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8182:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8207:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8222:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8225:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8218:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8218:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8211:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8237:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8252:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8255:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8248:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8248:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8241:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8292:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8294:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8294:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8294:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8273:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8282:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8286:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "8278:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8278:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8270:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8270:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8267:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8323:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8334:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8339:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8330:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8330:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8323:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8151:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8154:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8160:3:84",
                            "type": ""
                          }
                        ],
                        "src": "8121:228:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8403:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8425:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8427:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8427:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8427:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8419:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8422:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8416:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8416:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8413:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8456:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8468:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8471:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8464:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8464:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8456:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8385:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8388:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "8394:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8354:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8532:173:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8542:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8552:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8546:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8571:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8586:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8589:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8582:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8582:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8575:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8601:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8616:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8619:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8612:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8612:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8605:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8647:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8649:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8649:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8649:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8637:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8642:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8634:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8634:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8631:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8678:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8690:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8695:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8686:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8686:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8678:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8514:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8517:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "8523:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8484:221:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8757:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8848:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8850:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8850:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8850:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "8773:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8780:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "8770:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8770:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8767:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8879:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "8890:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8897:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8886:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8886:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "8879:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "8739:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "8749:3:84",
                            "type": ""
                          }
                        ],
                        "src": "8710:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8948:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8979:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9000:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9003:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8993:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8993:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8993:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9101:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9104:4:84",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9094:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9094:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9094:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9129:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9132:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9122:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9122:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9122:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8968:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8961:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8961:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8958:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9156:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9165:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9168:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "9161:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9161:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "9156:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8933:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8936:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "8942:1:84",
                            "type": ""
                          }
                        ],
                        "src": "8910:266:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9213:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9230:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9233:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9223:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9223:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9223:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9327:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9330:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9320:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9320:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9320:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9351:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9354:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9344:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9344:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9344:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9181:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9402:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9419:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9422:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9412:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9412:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9412:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9516:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9519:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9509:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9509:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9509:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9540:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9543:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9533:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9533:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9533:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9370:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9591:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9608:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9611:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9601:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9601:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9601:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9705:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9708:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9698:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9698:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9698:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9729:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9732:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9722:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9722:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9722:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9559:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint64(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_2, 32)\n        value1 := length\n    }\n    function abi_decode_tuple_t_struct$_Draw_$11085_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, 160)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n        mstore(memPtr, calldataload(headStart))\n        mstore(add(memPtr, 32), abi_decode_uint32(add(headStart, 32)))\n        mstore(add(memPtr, 64), abi_decode_uint64(add(headStart, 64)))\n        mstore(add(memPtr, 96), abi_decode_uint64(add(headStart, 96)))\n        mstore(add(memPtr, 128), abi_decode_uint32(add(headStart, 128)))\n        value0 := memPtr\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_uint32t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        value0 := calldataload(headStart)\n        value1 := calldataload(add(headStart, 32))\n        value2 := abi_decode_uint32(add(headStart, 64))\n        value3 := calldataload(add(headStart, 96))\n    }\n    function abi_decode_tuple_t_uint32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint32(headStart)\n    }\n    function abi_encode_struct_Draw(value, pos)\n    {\n        mstore(pos, mload(value))\n        let memberValue0 := mload(add(value, 0x20))\n        let _1 := 0xffffffff\n        mstore(add(pos, 0x20), and(memberValue0, _1))\n        let memberValue0_1 := mload(add(value, 0x40))\n        let _2 := 0xffffffffffffffff\n        mstore(add(pos, 0x40), and(memberValue0_1, _2))\n        mstore(add(pos, 0x60), and(mload(add(value, 0x60)), _2))\n        mstore(add(pos, 0x80), and(mload(add(value, 0x80)), _1))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            abi_encode_struct_Draw(mload(srcPtr), pos)\n            pos := add(pos, 0xa0)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 15)\n        mstore(add(headStart, 64), \"DRB/future-draw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 16)\n        mstore(add(headStart, 64), \"DRB/expired-draw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 18)\n        mstore(add(headStart, 64), \"DRB/must-be-contig\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_Draw_$11085_memory_ptr__to_t_struct$_Draw_$11085_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        abi_encode_struct_Draw(value0, headStart)\n    }\n    function abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffff))\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint32(x, y) -> sum\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b506004361061011b5760003560e01c806383c34aaf116100b2578063d0bb78f311610081578063d7bcb86b11610066578063d7bcb86b1461025a578063e30c39781461026d578063f2fde38b1461027e57600080fd5b8063d0bb78f314610217578063d0ebdbe71461023757600080fd5b806383c34aaf146101d05780638da5cb5b146101e3578063c4df5fed146101f4578063caeef7ec146101fc57600080fd5b80634e71e0c8116100ee5780634e71e0c81461019c578063648b1b4f146101a4578063715018a6146101ac5780638200d873146101b457600080fd5b8063089eb925146101205780630edb1d2e1461014d57806323a11b2014610162578063481c6a7514610177575b600080fd5b61013361012e36600461147a565b610291565b60405163ffffffff90911681526020015b60405180910390f35b61015561035c565b60405161014491906115fd565b61017561017036600461150f565b6103d1565b005b6002546001600160a01b03165b6040516001600160a01b039091168152602001610144565b610175610430565b6101556104be565b610175610613565b6101bd61010081565b60405161ffff9091168152602001610144565b6101556101de36600461154c565b610688565b6000546001600160a01b0316610184565b610133610783565b6102035468010000000000000000900463ffffffff16610133565b61022a610225366004611405565b610825565b6040516101449190611567565b61024a6102453660046113dc565b6109d5565b6040519015158152602001610144565b61013361026836600461147a565b610a49565b6001546001600160a01b0316610184565b61017561028c3660046113dc565b610c36565b6000336102a66002546001600160a01b031690565b6001600160a01b031614806102d45750336102c96000546001600160a01b031690565b6001600160a01b0316145b61034b5760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61035482610d72565b90505b919050565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff80821683526401000000008204811660208401526801000000000000000090910416918101919091526103cc90610f74565b905090565b835b838111610429576040805160a08101825283815263ffffffff808416602083015285169181019190915260146060820152600a608082015261041481610d72565b50508080610421906116cf565b9150506103d3565b5050505050565b6001546001600160a01b0316331461048a5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610342565b60015461049f906001600160a01b0316610faf565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925290600090600390610100811061053f5761053f611722565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff640100000000830481169484018590526c010000000000000000000000008304166060840152600160a01b909104166080820152915061060d57506040805160a081018252600354815260045463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b900490911660808201525b92915050565b336106266000546001600160a01b031690565b6001600160a01b03161461067c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610342565b6106866000610faf565b565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff80821683526401000000008204811660208401526801000000000000000090910416918101919091526003906106fc908461100c565b63ffffffff16610100811061071357610713611722565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b9004909116608082015292915050565b604080516060810182526102035463ffffffff8082168084526401000000008304821660208501526801000000000000000090920416928201929092526000916107cf57600091505090565b6020810151600363ffffffff821661010081106107ee576107ee611722565b6002020160010160049054906101000a900467ffffffffffffffff1667ffffffffffffffff1660001461060d575060400151919050565b606060008267ffffffffffffffff81111561084257610842611738565b60405190808252806020026020018201604052801561089b57816020015b6040805160a0810182526000808252602080830182905292820181905260608201819052608082015282526000199092019101816108605790505b50604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915290915060005b848110156109cb576003610918838888858181106108fe576108fe611722565b9050602002016020810190610913919061154c565b61100c565b63ffffffff16610100811061092f5761092f611722565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b9004909116608082015283518490839081106109ad576109ad611722565b602002602001018190525080806109c3906116cf565b9150506108de565b5090949350505050565b6000336109ea6000546001600160a01b031690565b6001600160a01b031614610a405760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610342565b6103548261101f565b600033610a5e6000546001600160a01b031690565b6001600160a01b031614610ab45760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610342565b604080516060810182526102035463ffffffff808216835264010000000082048116602080850191909152680100000000000000009092048116938301939093528401519091600091610b0a9184919061110b16565b90508360038263ffffffff166101008110610b2757610b27611722565b82516002919091029190910190815560208083015160019092018054604080860151606087015160809097015163ffffffff9687166bffffffffffffffffffffffff199094169390931764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909716027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1695909517600160a01b9185169190910217905586015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610c249087906115fd565b60405180910390a25050506020015190565b33610c496000546001600160a01b031690565b6001600160a01b031614610c9f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610342565b6001600160a01b038116610d1b5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610342565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b604080516060810182526102035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925260009183906003906101008110610dc957610dc9611722565b825160029190910291909101908155602080830151600190920180546040850151606086015160809096015163ffffffff9586166bffffffffffffffffffffffff199093169290921764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909616027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1694909417600160a01b948416949094029390931790925590840151610ea59183919061123b16565b8051610203805460208085015160409586015163ffffffff90811668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff928216640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000909516968216969096179390931716939093179091559085015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610f639086906115fd565b60405180910390a250506020015190565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915281516003906106fc90849061110b565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611018838361110b565b9392505050565b6002546000906001600160a01b039081169083168114156110a85760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610342565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600061111683611326565b80156111325750826000015163ffffffff168263ffffffff1611155b61117e5760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d6472617700000000000000000000000000000000006044820152606401610342565b825160009061118e9084906116aa565b9050836040015163ffffffff168163ffffffff16106111ef5760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d64726177000000000000000000000000000000006044820152606401610342565b600061120f856020015163ffffffff16866040015163ffffffff1661134e565b90506112328163ffffffff168363ffffffff16876040015163ffffffff1661137c565b95945050505050565b604080516060810182526000808252602082018190529181019190915261126183611326565b15806112845750825161127590600161166b565b63ffffffff168263ffffffff16145b6112d05760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e74696700000000000000000000000000006044820152606401610342565b60405180606001604052808363ffffffff168152602001611305856020015163ffffffff16866040015163ffffffff16611394565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156113475750815163ffffffff16155b1592915050565b60008161135d5750600061060d565b611018600161136c8486611653565b6113769190611693565b836113a4565b600061138c8361136c8487611653565b949350505050565b6000611018611376846001611653565b600061101882846116ea565b803563ffffffff8116811461035757600080fd5b803567ffffffffffffffff8116811461035757600080fd5b6000602082840312156113ee57600080fd5b81356001600160a01b038116811461101857600080fd5b6000806020838503121561141857600080fd5b823567ffffffffffffffff8082111561143057600080fd5b818501915085601f83011261144457600080fd5b81358181111561145357600080fd5b8660208260051b850101111561146857600080fd5b60209290920196919550909350505050565b600060a0828403121561148c57600080fd5b60405160a0810181811067ffffffffffffffff821117156114bd57634e487b7160e01b600052604160045260246000fd5b604052823581526114d0602084016113b0565b60208201526114e1604084016113c4565b60408201526114f2606084016113c4565b6060820152611503608084016113b0565b60808201529392505050565b6000806000806080858703121561152557600080fd5b843593506020850135925061153c604086016113b0565b9396929550929360600135925050565b60006020828403121561155e57600080fd5b611018826113b0565b6020808252825182820181905260009190848201906040850190845b818110156115f1576115de83855180518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b9284019260a09290920191600101611583565b50909695505050505050565b60a0810161060d828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b600082198211156116665761166661170c565b500190565b600063ffffffff80831681851680830382111561168a5761168a61170c565b01949350505050565b6000828210156116a5576116a561170c565b500390565b600063ffffffff838116908316818110156116c7576116c761170c565b039392505050565b60006000198214156116e3576116e361170c565b5060010190565b60008261170757634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220d75d4c731c51fc3ca7debb9b3f18a9b97457bbe9d2c233f05a122358e28e981364736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x11B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x83C34AAF GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0xD0BB78F3 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xD7BCB86B GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD7BCB86B EQ PUSH2 0x25A JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x26D JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x27E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xD0BB78F3 EQ PUSH2 0x217 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x237 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x83C34AAF EQ PUSH2 0x1D0 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1E3 JUMPI DUP1 PUSH4 0xC4DF5FED EQ PUSH2 0x1F4 JUMPI DUP1 PUSH4 0xCAEEF7EC EQ PUSH2 0x1FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4E71E0C8 GT PUSH2 0xEE JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x19C JUMPI DUP1 PUSH4 0x648B1B4F EQ PUSH2 0x1A4 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1AC JUMPI DUP1 PUSH4 0x8200D873 EQ PUSH2 0x1B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x89EB925 EQ PUSH2 0x120 JUMPI DUP1 PUSH4 0xEDB1D2E EQ PUSH2 0x14D JUMPI DUP1 PUSH4 0x23A11B20 EQ PUSH2 0x162 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x177 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x133 PUSH2 0x12E CALLDATASIZE PUSH1 0x4 PUSH2 0x147A JUMP JUMPDEST PUSH2 0x291 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x155 PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x144 SWAP2 SWAP1 PUSH2 0x15FD JUMP JUMPDEST PUSH2 0x175 PUSH2 0x170 CALLDATASIZE PUSH1 0x4 PUSH2 0x150F JUMP JUMPDEST PUSH2 0x3D1 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x144 JUMP JUMPDEST PUSH2 0x175 PUSH2 0x430 JUMP JUMPDEST PUSH2 0x155 PUSH2 0x4BE JUMP JUMPDEST PUSH2 0x175 PUSH2 0x613 JUMP JUMPDEST PUSH2 0x1BD PUSH2 0x100 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x144 JUMP JUMPDEST PUSH2 0x155 PUSH2 0x1DE CALLDATASIZE PUSH1 0x4 PUSH2 0x154C JUMP JUMPDEST PUSH2 0x688 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x184 JUMP JUMPDEST PUSH2 0x133 PUSH2 0x783 JUMP JUMPDEST PUSH2 0x203 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x133 JUMP JUMPDEST PUSH2 0x22A PUSH2 0x225 CALLDATASIZE PUSH1 0x4 PUSH2 0x1405 JUMP JUMPDEST PUSH2 0x825 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x144 SWAP2 SWAP1 PUSH2 0x1567 JUMP JUMPDEST PUSH2 0x24A PUSH2 0x245 CALLDATASIZE PUSH1 0x4 PUSH2 0x13DC JUMP JUMPDEST PUSH2 0x9D5 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x144 JUMP JUMPDEST PUSH2 0x133 PUSH2 0x268 CALLDATASIZE PUSH1 0x4 PUSH2 0x147A JUMP JUMPDEST PUSH2 0xA49 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x184 JUMP JUMPDEST PUSH2 0x175 PUSH2 0x28C CALLDATASIZE PUSH1 0x4 PUSH2 0x13DC JUMP JUMPDEST PUSH2 0xC36 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x2A6 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2D4 JUMPI POP CALLER PUSH2 0x2C9 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x34B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x354 DUP3 PUSH2 0xD72 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x3CC SWAP1 PUSH2 0xF74 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST DUP4 JUMPDEST DUP4 DUP2 GT PUSH2 0x429 JUMPI PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE DUP4 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP1 DUP5 AND PUSH1 0x20 DUP4 ADD MSTORE DUP6 AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x14 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0xA PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x414 DUP2 PUSH2 0xD72 JUMP JUMPDEST POP POP DUP1 DUP1 PUSH2 0x421 SWAP1 PUSH2 0x16CF JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3D3 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x48A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x49F SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xFAF JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0x53F JUMPI PUSH2 0x53F PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD DUP6 SWAP1 MSTORE PUSH13 0x1000000000000000000000000 DUP4 DIV AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV AND PUSH1 0x80 DUP3 ADD MSTORE SWAP2 POP PUSH2 0x60D JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x3 SLOAD DUP2 MSTORE PUSH1 0x4 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x626 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x67C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST PUSH2 0x686 PUSH1 0x0 PUSH2 0xFAF JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x3 SWAP1 PUSH2 0x6FC SWAP1 DUP5 PUSH2 0x100C JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x713 JUMPI PUSH2 0x713 PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH5 0x100000000 DUP4 DIV DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH2 0x7CF JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x3 PUSH4 0xFFFFFFFF DUP3 AND PUSH2 0x100 DUP2 LT PUSH2 0x7EE JUMPI PUSH2 0x7EE PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x2 MUL ADD PUSH1 0x1 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x0 EQ PUSH2 0x60D JUMPI POP PUSH1 0x40 ADD MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x842 JUMPI PUSH2 0x842 PUSH2 0x1738 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x89B JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x80 DUP3 ADD MSTORE DUP3 MSTORE PUSH1 0x0 NOT SWAP1 SWAP3 ADD SWAP2 ADD DUP2 PUSH2 0x860 JUMPI SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x9CB JUMPI PUSH1 0x3 PUSH2 0x918 DUP4 DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x8FE JUMPI PUSH2 0x8FE PUSH2 0x1722 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x913 SWAP2 SWAP1 PUSH2 0x154C JUMP JUMPDEST PUSH2 0x100C JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x92F JUMPI PUSH2 0x92F PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE DUP4 MLOAD DUP5 SWAP1 DUP4 SWAP1 DUP2 LT PUSH2 0x9AD JUMPI PUSH2 0x9AD PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x9C3 SWAP1 PUSH2 0x16CF JUMP JUMPDEST SWAP2 POP POP PUSH2 0x8DE JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x9EA PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA40 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST PUSH2 0x354 DUP3 PUSH2 0x101F JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xA5E PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xAB4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV DUP2 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE DUP5 ADD MLOAD SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH2 0xB0A SWAP2 DUP5 SWAP2 SWAP1 PUSH2 0x110B AND JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x3 DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0xB27 JUMPI PUSH2 0xB27 PUSH2 0x1722 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x2 SWAP2 SWAP1 SWAP2 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 DUP2 SSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x1 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0x40 DUP1 DUP7 ADD MLOAD PUSH1 0x60 DUP8 ADD MLOAD PUSH1 0x80 SWAP1 SWAP8 ADD MLOAD PUSH4 0xFFFFFFFF SWAP7 DUP8 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR PUSH5 0x100000000 PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND MUL OR PUSH32 0xFFFFFFFFFFFFFFFF000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF AND PUSH13 0x1000000000000000000000000 SWAP2 SWAP1 SWAP8 AND MUL PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP6 SWAP1 SWAP6 OR PUSH1 0x1 PUSH1 0xA0 SHL SWAP2 DUP6 AND SWAP2 SWAP1 SWAP2 MUL OR SWAP1 SSTORE DUP7 ADD MLOAD SWAP2 MLOAD SWAP2 AND SWAP1 PUSH32 0xC6F337E5507FD1BDEBC6D79ED14168145E8C109D7B7139459692E24F06BAED17 SWAP1 PUSH2 0xC24 SWAP1 DUP8 SWAP1 PUSH2 0x15FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP PUSH1 0x20 ADD MLOAD SWAP1 JUMP JUMPDEST CALLER PUSH2 0xC49 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC9F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xD1B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x342 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0xDC9 JUMPI PUSH2 0xDC9 PUSH2 0x1722 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x2 SWAP2 SWAP1 SWAP2 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 DUP2 SSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x1 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH1 0x80 SWAP1 SWAP7 ADD MLOAD PUSH4 0xFFFFFFFF SWAP6 DUP7 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR PUSH5 0x100000000 PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND MUL OR PUSH32 0xFFFFFFFFFFFFFFFF000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF AND PUSH13 0x1000000000000000000000000 SWAP2 SWAP1 SWAP7 AND MUL PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP5 SWAP1 SWAP5 OR PUSH1 0x1 PUSH1 0xA0 SHL SWAP5 DUP5 AND SWAP5 SWAP1 SWAP5 MUL SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP3 SSTORE SWAP1 DUP5 ADD MLOAD PUSH2 0xEA5 SWAP2 DUP4 SWAP2 SWAP1 PUSH2 0x123B AND JUMP JUMPDEST DUP1 MLOAD PUSH2 0x203 DUP1 SLOAD PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH1 0x40 SWAP6 DUP7 ADD MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP3 DUP3 AND PUSH5 0x100000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000 SWAP1 SWAP6 AND SWAP7 DUP3 AND SWAP7 SWAP1 SWAP7 OR SWAP4 SWAP1 SWAP4 OR AND SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP2 SSTORE SWAP1 DUP6 ADD MLOAD SWAP2 MLOAD SWAP2 AND SWAP1 PUSH32 0xC6F337E5507FD1BDEBC6D79ED14168145E8C109D7B7139459692E24F06BAED17 SWAP1 PUSH2 0xF63 SWAP1 DUP7 SWAP1 PUSH2 0x15FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH1 0x20 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH1 0x3 SWAP1 PUSH2 0x6FC SWAP1 DUP5 SWAP1 PUSH2 0x110B JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1018 DUP4 DUP4 PUSH2 0x110B JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x10A8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x342 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1116 DUP4 PUSH2 0x1326 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1132 JUMPI POP DUP3 PUSH1 0x0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x117E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6675747572652D647261770000000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x0 SWAP1 PUSH2 0x118E SWAP1 DUP5 SWAP1 PUSH2 0x16AA JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x11EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F657870697265642D6472617700000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x120F DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x134E JUMP JUMPDEST SWAP1 POP PUSH2 0x1232 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x137C JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x1261 DUP4 PUSH2 0x1326 JUMP JUMPDEST ISZERO DUP1 PUSH2 0x1284 JUMPI POP DUP3 MLOAD PUSH2 0x1275 SWAP1 PUSH1 0x1 PUSH2 0x166B JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND EQ JUMPDEST PUSH2 0x12D0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6D7573742D62652D636F6E7469670000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x342 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1305 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x1394 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x0 EQ DUP1 ISZERO PUSH2 0x1347 JUMPI POP DUP2 MLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x135D JUMPI POP PUSH1 0x0 PUSH2 0x60D JUMP JUMPDEST PUSH2 0x1018 PUSH1 0x1 PUSH2 0x136C DUP5 DUP7 PUSH2 0x1653 JUMP JUMPDEST PUSH2 0x1376 SWAP2 SWAP1 PUSH2 0x1693 JUMP JUMPDEST DUP4 PUSH2 0x13A4 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x138C DUP4 PUSH2 0x136C DUP5 DUP8 PUSH2 0x1653 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1018 PUSH2 0x1376 DUP5 PUSH1 0x1 PUSH2 0x1653 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1018 DUP3 DUP5 PUSH2 0x16EA JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x357 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x357 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x13EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1018 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1418 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1430 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1444 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1453 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1468 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x148C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x14BD JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE DUP3 CALLDATALOAD DUP2 MSTORE PUSH2 0x14D0 PUSH1 0x20 DUP5 ADD PUSH2 0x13B0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x14E1 PUSH1 0x40 DUP5 ADD PUSH2 0x13C4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x14F2 PUSH1 0x60 DUP5 ADD PUSH2 0x13C4 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x1503 PUSH1 0x80 DUP5 ADD PUSH2 0x13B0 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1525 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH2 0x153C PUSH1 0x40 DUP7 ADD PUSH2 0x13B0 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP3 SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x155E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1018 DUP3 PUSH2 0x13B0 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x15F1 JUMPI PUSH2 0x15DE DUP4 DUP6 MLOAD DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH1 0xA0 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1583 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD PUSH2 0x60D DUP3 DUP5 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1666 JUMPI PUSH2 0x1666 PUSH2 0x170C JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x168A JUMPI PUSH2 0x168A PUSH2 0x170C JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x16A5 JUMPI PUSH2 0x16A5 PUSH2 0x170C JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x16C7 JUMPI PUSH2 0x16C7 PUSH2 0x170C JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x16E3 JUMPI PUSH2 0x16E3 PUSH2 0x170C JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1707 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD7 0x5D 0x4C PUSH20 0x1C51FC3CA7DEBB9B3F18A9B97457BBE9D2C233F0 GAS SLT 0x23 PC 0xE2 DUP15 SWAP9 SGT PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "130:702:65:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4071:179:30;;;;;;:::i;:::-;;:::i;:::-;;;7965:10:84;7953:23;;;7935:42;;7923:2;7908:18;4071:179:30;;;;;;;;3396:136;;;:::i;:::-;;;;;;;:::i;248:582:65:-;;;;;;:::i;:::-;;:::i;:::-;;1403:89:21;1477:8;;-1:-1:-1;;;;;1477:8:21;1403:89;;;-1:-1:-1;;;;;3427:55:84;;;3409:74;;3397:2;3382:18;1403:89:21;3364:125:84;3147:129:22;;;:::i;3570:463:30:-;;;:::i;2508:94:22:-;;;:::i;1342:44:30:-;;1383:3;1342:44;;;;;7772:6:84;7760:19;;;7742:38;;7730:2;7715:18;1342:44:30;7697:89:84;2201:171:30;;;;;;:::i;:::-;;:::i;1814:85:22:-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:22;1814:85;;2934:424:30;;;:::i;2041:122::-;2130:14;:26;;;;;;2041:122;;2410:486;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1744:123:21:-;;;;;;:::i;:::-;;:::i;:::-;;;4360:14:84;;4353:22;4335:41;;4323:2;4308:18;1744:123:21;4290:92:84;4288:348:30;;;;;;:::i;:::-;;:::i;2014:101:22:-;2095:13;;-1:-1:-1;;;;;2095:13:22;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;4071:179:30:-;4198:6;2861:10:21;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:21;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:21;;:48;;;-1:-1:-1;2886:10:21;2875:7;1860::22;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;2875:7:21;-1:-1:-1;;;;;2875:21:21;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:21;;6050:2:84;2840:99:21;;;6032:21:84;6089:2;6069:18;;;6062:30;6128:34;6108:18;;;6101:62;6199:8;6179:18;;;6172:36;6225:19;;2840:99:21;;;;;;;;;4227:16:30::1;4237:5;4227:9;:16::i;:::-;4220:23;;2949:1:21;4071:179:30::0;;;:::o;3396:136::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3495:30:30;;;;;;;;3510:14;3495:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:14;:30::i;:::-;3488:37;;3396:136;:::o;248:582:65:-;441:6;420:404;458:14;449:5;:23;420:404;;529:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;765:2;529:253;;;;722:2;529:253;;;;797:16;529:253;797:9;:16::i;:::-;;483:341;474:7;;;;;:::i;:::-;;;;420:404;;;;248:582;;;;:::o;3147:129:22:-;4050:13;;-1:-1:-1;;;;;4050:13:22;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:22;;5346:2:84;4028:71:22;;;5328:21:84;5385:2;5365:18;;;5358:30;5424:33;5404:18;;;5397:61;5475:18;;4028:71:22;5318:181:84;4028:71:22;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:22::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:22::1;::::0;;3147:129::o;3570:463:30:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3737:55:30;;;;;;;;3778:14;3737:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:38;;3833:14;;3737:55;3833:32;;;;;;:::i;:::-;3802:63;;;;;;;;3833:32;;;;;;;;;3802:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3802:63:30;;;;;;;;;-1:-1:-1;3876:129:30;;-1:-1:-1;3970:24:30;;;;;;;;3977:14;3970:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3970:24:30;;;;;;;;;3876:129;4022:4;3570:463;-1:-1:-1;;3570:463:30:o;2508:94:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;4993:2:84;3819:58:22;;;4975:21:84;5032:2;5012:18;;;5005:30;5071:26;5051:18;;;5044:54;5115:18;;3819:58:22;4965:174:84;3819:58:22;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2201:171:30:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2322:42:30;;;;;;;;2341:14;2322:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;2307:14;;2322:42;;2357:6;2322:18;:42::i;:::-;2307:58;;;;;;;;;:::i;:::-;2300:65;;;;;;;;2307:58;;;;;;;;;2300:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2300:65:30;;;;;;;;;;2201:171;-1:-1:-1;;2201:171:30:o;2934:424::-;3008:55;;;;;;;;3049:14;3008:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2990:6;;3074:61;;3123:1;3116:8;;;2934:424;:::o;3074:61::-;3170:16;;;;3201:14;:31;;;;;;;;;;:::i;:::-;;;;:41;;;;;;;;;;;;:46;;3246:1;3201:46;3197:155;;-1:-1:-1;3270:18:30;;;;2934:424;-1:-1:-1;2934:424:30:o;2410:486::-;2520:25;2561:31;2618:8;2595:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2595:39:30;;-1:-1:-1;;2595:39:30;;;;;;;;;;;-1:-1:-1;2644:55:30;;;;;;;;2685:14;2644:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;2561:73;;-1:-1:-1;2644:38:30;2710:157;2734:23;;;2710:157;;;2797:14;2812:43;2831:6;2839:8;;2848:5;2839:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;2812:18;:43::i;:::-;2797:59;;;;;;;;;:::i;:::-;2782:74;;;;;;;;2797:59;;;;;;;;;2782:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2782:74:30;;;;;;;;;:12;;:5;;2788;;2782:12;;;;;;:::i;:::-;;;;;;:74;;;;2759:7;;;;;:::i;:::-;;;;2710:157;;;-1:-1:-1;2884:5:30;;2410:486;-1:-1:-1;;;;2410:486:30:o;1744:123:21:-;1813:4;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;4993:2:84;3819:58:22;;;4975:21:84;5032:2;5012:18;;;5005:30;5071:26;5051:18;;;5044:54;5115:18;;3819:58:22;4965:174:84;3819:58:22;1836:24:21::1;1848:11;1836;:24::i;4288:348:30:-:0;4376:6;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;4993:2:84;3819:58:22;;;4975:21:84;5032:2;5012:18;;;5005:30;5071:26;5051:18;;;5044:54;5115:18;;3819:58:22;4965:174:84;3819:58:22;4394:55:30::1;::::0;;::::1;::::0;::::1;::::0;;4435:14:::1;4394:55:::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;;;;;::::1;::::0;::::1;::::0;;;;;;;4490:15;::::1;::::0;4394:55;;:38:::1;::::0;4474:32:::1;::::0;4394:55;;4490:15;4474::::1;:32;:::i;:::-;4459:47;;4540:8;4516:14;4531:5;4516:21;;;;;;;;;:::i;:::-;:32:::0;;:21:::1;::::0;;;::::1;::::0;;;::::1;:32:::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;4516:32:30;;;;;;;;::::1;::::0;;::::1;;;::::0;;;;;;::::1;;::::0;;;;;;-1:-1:-1;;;4516:32:30;;::::1;::::0;;;::::1;;::::0;;4571:15;::::1;::::0;4563:34;;;::::1;::::0;::::1;::::0;::::1;::::0;4571:15;;4563:34:::1;:::i;:::-;;;;;;;;-1:-1:-1::0;;;4614:15:30::1;;::::0;;4288:348::o;2751:234:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;4993:2:84;3819:58:22;;;4975:21:84;5032:2;5012:18;;;5005:30;5071:26;5051:18;;;5044:54;5115:18;;3819:58:22;4965:174:84;3819:58:22;-1:-1:-1;;;;;2834:23:22;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:22;;6802:2:84;2826:73:22::1;::::0;::::1;6784:21:84::0;6841:2;6821:18;;;6814:30;6880:34;6860:18;;;6853:62;6951:7;6931:18;;;6924:35;6976:19;;2826:73:22::1;6774:227:84::0;2826:73:22::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:22::1;-1:-1:-1::0;;;;;2910:25:22;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:22::1;2751:234:::0;:::o;5825:345:30:-;5914:56;;;;;;;;5956:14;5914:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5896:6;;6016:8;;5980:14;;5914:56;5980:33;;;;;;:::i;:::-;:44;;:33;;;;;;;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5980:44:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5980:44:30;;;;;;;;;;;;;;6064:15;;;;6051:29;;:7;;6064:15;6051:12;:29;:::i;:::-;6034:46;;:14;:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6104:15;;;;6096:34;;;;;;;;;6104:8;;6096:34;:::i;:::-;;;;;;;;-1:-1:-1;;6148:15:30;;;;5825:345::o;5384:217::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5574:18:30;;5542:14;;5557:36;;5574:7;;5557:16;:36::i;3470:174:22:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;4960:193:30:-;5092:6;5121:25;:7;5138;5121:16;:25::i;:::-;5114:32;4960:193;-1:-1:-1;;;4960:193:30:o;2109:326:21:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:21;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:21;;4589:2:84;2230:79:21;;;4571:21:84;4628:2;4608:18;;;4601:30;4667:34;4647:18;;;4640:62;4738:5;4718:18;;;4711:33;4761:19;;2230:79:21;4561:225:84;2230:79:21;2320:8;:22;;-1:-1:-1;;2320:22:21;-1:-1:-1;;;;;2320:22:21;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:21;-1:-1:-1;2424:4:21;;2109:326;-1:-1:-1;;2109:326:21:o;1587:517:52:-;1667:6;1693:22;1707:7;1693:13;:22::i;:::-;:55;;;;;1730:7;:18;;;1719:29;;:7;:29;;;;1693:55;1685:83;;;;-1:-1:-1;;;1685:83:52;;5706:2:84;1685:83:52;;;5688:21:84;5745:2;5725:18;;;5718:30;5784:17;5764:18;;;5757:45;5819:18;;1685:83:52;5678:165:84;1685:83:52;1800:18;;1779;;1800:28;;1821:7;;1800:28;:::i;:::-;1779:49;;1860:7;:19;;;1846:33;;:11;:33;;;1838:62;;;;-1:-1:-1;;;1838:62:52;;6457:2:84;1838:62:52;;;6439:21:84;6496:2;6476:18;;;6469:30;6535:18;6515;;;6508:46;6571:18;;1838:62:52;6429:166:84;1838:62:52;1911:18;1932:65;1958:7;:17;;;1932:65;;1977:7;:19;;;1932:65;;:25;:65::i;:::-;1911:86;;2022:74;2050:10;2022:74;;2063:11;2022:74;;2076:7;:19;;;2022:74;;:20;:74::i;:::-;2008:89;1587:517;-1:-1:-1;;;;;1587:517:52:o;919:438::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;1029:22:52;1043:7;1029:13;:22::i;:::-;1028:23;:60;;;-1:-1:-1;1066:18:52;;:22;;1087:1;1066:22;:::i;:::-;1055:33;;:7;:33;;;1028:60;1020:91;;;;-1:-1:-1;;;1020:91:52;;7208:2:84;1020:91:52;;;7190:21:84;7247:2;7227:18;;;7220:30;7286:20;7266:18;;;7259:48;7324:18;;1020:91:52;7180:168:84;1020:91:52;1141:209;;;;;;;;1178:7;1141:209;;;;;;1221:63;1245:7;:17;;;1221:63;;1264:7;:19;;;1221:63;;:23;:63::i;:::-;1141:209;;;;;;1316:7;:19;;;1141:209;;;;;1122:228;;919:438;;;;:::o;598:151::-;667:4;692:7;:17;;;:22;;713:1;692:22;:49;;;;-1:-1:-1;718:18:52;;:23;;;692:49;690:52;;598:151;-1:-1:-1;;598:151:52:o;1666:262:56:-;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:56;1836:8;;1799:56;1872:49;1905:1;1877:25;1890:12;1877:10;:25;:::i;:::-;:29;;;;:::i;:::-;1908:12;1872:4;:49::i;1186:208::-;1310:7;1336:51;1365:7;1341:21;1350:12;1341:6;:21;:::i;1336:51::-;1329:58;1186:208;-1:-1:-1;;;;1186:208:56:o;2263:171::-;2367:7;2397:30;2402:10;:6;2411:1;2402:10;:::i;580:129::-;655:7;681:21;690:12;681:6;:21;:::i;14:163:84:-;81:20;;141:10;130:22;;120:33;;110:2;;167:1;164;157:12;182:171;249:20;;309:18;298:30;;288:41;;278:2;;343:1;340;333:12;358:309;417:6;470:2;458:9;449:7;445:23;441:32;438:2;;;486:1;483;476:12;438:2;525:9;512:23;-1:-1:-1;;;;;568:5:84;564:54;557:5;554:65;544:2;;633:1;630;623:12;672:614;757:6;765;818:2;806:9;797:7;793:23;789:32;786:2;;;834:1;831;824:12;786:2;874:9;861:23;903:18;944:2;936:6;933:14;930:2;;;960:1;957;950:12;930:2;998:6;987:9;983:22;973:32;;1043:7;1036:4;1032:2;1028:13;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105;1092:16;1131:2;1123:6;1120:14;1117:2;;;1147:1;1144;1137:12;1117:2;1200:7;1195:2;1185:6;1182:1;1178:14;1174:2;1170:23;1166:32;1163:45;1160:2;;;1221:1;1218;1211:12;1160:2;1252;1244:11;;;;;1274:6;;-1:-1:-1;776:510:84;;-1:-1:-1;;;;776:510:84:o;1291:878::-;1373:6;1426:3;1414:9;1405:7;1401:23;1397:33;1394:2;;;1443:1;1440;1433:12;1394:2;1476;1470:9;1518:3;1510:6;1506:16;1588:6;1576:10;1573:22;1552:18;1540:10;1537:34;1534:62;1531:2;;;-1:-1:-1;;;1626:1:84;1619:88;1730:4;1727:1;1720:15;1758:4;1755:1;1748:15;1531:2;1789;1782:22;1828:23;;1813:39;;1885:37;1918:2;1903:18;;1885:37;:::i;:::-;1880:2;1872:6;1868:15;1861:62;1956:37;1989:2;1978:9;1974:18;1956:37;:::i;:::-;1951:2;1943:6;1939:15;1932:62;2027:37;2060:2;2049:9;2045:18;2027:37;:::i;:::-;2022:2;2014:6;2010:15;2003:62;2099:38;2132:3;2121:9;2117:19;2099:38;:::i;:::-;2093:3;2081:16;;2074:64;2085:6;1384:785;-1:-1:-1;;;1384:785:84:o;2174:389::-;2259:6;2267;2275;2283;2336:3;2324:9;2315:7;2311:23;2307:33;2304:2;;;2353:1;2350;2343:12;2304:2;2389:9;2376:23;2366:33;;2446:2;2435:9;2431:18;2418:32;2408:42;;2469:37;2502:2;2491:9;2487:18;2469:37;:::i;:::-;2294:269;;;;-1:-1:-1;2459:47:84;;2553:2;2538:18;2525:32;;-1:-1:-1;;2294:269:84:o;2568:184::-;2626:6;2679:2;2667:9;2658:7;2654:23;2650:32;2647:2;;;2695:1;2692;2685:12;2647:2;2718:28;2736:9;2718:28;:::i;3494:696::-;3711:2;3763:21;;;3833:13;;3736:18;;;3855:22;;;3682:4;;3711:2;3934:15;;;;3908:2;3893:18;;;3682:4;3977:187;3991:6;3988:1;3985:13;3977:187;;;4040:42;4078:3;4069:6;4063:13;2833:5;2827:12;2822:3;2815:25;2886:4;2879:5;2875:16;2869:23;2911:10;2971:2;2957:12;2953:21;2946:4;2941:3;2937:14;2930:45;3023:4;3016:5;3012:16;3006:23;2984:45;;3048:18;3118:2;3102:14;3098:23;3091:4;3086:3;3082:14;3075:47;3183:2;3175:4;3168:5;3164:16;3158:23;3154:32;3147:4;3142:3;3138:14;3131:56;;3248:2;3240:4;3233:5;3229:16;3223:23;3219:32;3212:4;3207:3;3203:14;3196:56;;;2805:453;;;4040:42;4139:15;;;;4111:4;4102:14;;;;;4013:1;4006:9;3977:187;;;-1:-1:-1;4181:3:84;;3691:499;-1:-1:-1;;;;;;3691:499:84:o;7353:240::-;7533:3;7518:19;;7546:41;7522:9;7569:6;2833:5;2827:12;2822:3;2815:25;2886:4;2879:5;2875:16;2869:23;2911:10;2971:2;2957:12;2953:21;2946:4;2941:3;2937:14;2930:45;3023:4;3016:5;3012:16;3006:23;2984:45;;3048:18;3118:2;3102:14;3098:23;3091:4;3086:3;3082:14;3075:47;3183:2;3175:4;3168:5;3164:16;3158:23;3154:32;3147:4;3142:3;3138:14;3131:56;;3248:2;3240:4;3233:5;3229:16;3223:23;3219:32;3212:4;3207:3;3203:14;3196:56;;;2805:453;;;7988:128;8028:3;8059:1;8055:6;8052:1;8049:13;8046:2;;;8065:18;;:::i;:::-;-1:-1:-1;8101:9:84;;8036:80::o;8121:228::-;8160:3;8188:10;8225:2;8222:1;8218:10;8255:2;8252:1;8248:10;8286:3;8282:2;8278:12;8273:3;8270:21;8267:2;;;8294:18;;:::i;:::-;8330:13;;8168:181;-1:-1:-1;;;;8168:181:84:o;8354:125::-;8394:4;8422:1;8419;8416:8;8413:2;;;8427:18;;:::i;:::-;-1:-1:-1;8464:9:84;;8403:76::o;8484:221::-;8523:4;8552:10;8612;;;;8582;;8634:12;;;8631:2;;;8649:18;;:::i;:::-;8686:13;;8532:173;-1:-1:-1;;;8532:173:84:o;8710:195::-;8749:3;-1:-1:-1;;8773:5:84;8770:77;8767:2;;;8850:18;;:::i;:::-;-1:-1:-1;8897:1:84;8886:13;;8757:148::o;8910:266::-;8942:1;8968;8958:2;;-1:-1:-1;;;9000:1:84;8993:88;9104:4;9101:1;9094:15;9132:4;9129:1;9122:15;8958:2;-1:-1:-1;9161:9:84;;8948:228::o;9181:184::-;-1:-1:-1;;;9230:1:84;9223:88;9330:4;9327:1;9320:15;9354:4;9351:1;9344:15;9370:184;-1:-1:-1;;;9419:1:84;9412:88;9519:4;9516:1;9509:15;9543:4;9540:1;9533:15;9559:184;-1:-1:-1;;;9608:1:84;9601:88;9708:4;9705:1;9698:15;9732:4;9729:1;9722:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1204000",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "MAX_CARDINALITY()": "293",
                "addMultipleDraws(uint256,uint256,uint32,uint256)": "infinite",
                "claimOwnership()": "54464",
                "getBufferCardinality()": "2396",
                "getDraw(uint32)": "infinite",
                "getDrawCount()": "4804",
                "getDraws(uint32[])": "infinite",
                "getNewestDraw()": "infinite",
                "getOldestDraw()": "infinite",
                "manager()": "2410",
                "owner()": "2376",
                "pendingOwner()": "2397",
                "pushDraw((uint256,uint32,uint64,uint64,uint32))": "infinite",
                "renounceOwnership()": "28202",
                "setDraw((uint256,uint32,uint64,uint64,uint32))": "infinite",
                "setManager(address)": "30581",
                "transferOwnership(address)": "27959"
              }
            },
            "methodIdentifiers": {
              "MAX_CARDINALITY()": "8200d873",
              "addMultipleDraws(uint256,uint256,uint32,uint256)": "23a11b20",
              "claimOwnership()": "4e71e0c8",
              "getBufferCardinality()": "caeef7ec",
              "getDraw(uint32)": "83c34aaf",
              "getDrawCount()": "c4df5fed",
              "getDraws(uint32[])": "d0bb78f3",
              "getNewestDraw()": "0edb1d2e",
              "getOldestDraw()": "648b1b4f",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "pushDraw((uint256,uint32,uint64,uint64,uint32))": "089eb925",
              "renounceOwnership()": "715018a6",
              "setDraw((uint256,uint32,uint64,uint64,uint32))": "d7bcb86b",
              "setManager(address)": "d0ebdbe7",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint8\",\"name\":\"card\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"draw\",\"type\":\"tuple\"}],\"name\":\"DrawSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"MAX_CARDINALITY\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"\",\"type\":\"uint16\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_numberOfDraws\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"_timestamp\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"_winningRandomNumber\",\"type\":\"uint256\"}],\"name\":\"addMultipleDraws\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBufferCardinality\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"name\":\"getDraw\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawCount\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getDraws\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNewestDraw\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getOldestDraw\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"_draw\",\"type\":\"tuple\"}],\"name\":\"pushDraw\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"_newDraw\",\"type\":\"tuple\"}],\"name\":\"setDraw\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"getBufferCardinality()\":{\"returns\":{\"_0\":\"Ring buffer cardinality\"}},\"getDraw(uint32)\":{\"details\":\"Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\",\"params\":{\"drawId\":\"Draw.drawId\"},\"returns\":{\"_0\":\"IDrawBeacon.Draw\"}},\"getDrawCount()\":{\"details\":\"If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestDraw index + 1.\",\"returns\":{\"_0\":\"Number of Draws held in the draw ring buffer.\"}},\"getDraws(uint32[])\":{\"details\":\"Read multiple Draws using each drawId to calculate position in the draws ring buffer.\",\"params\":{\"drawIds\":\"Array of drawIds\"},\"returns\":{\"_0\":\"IDrawBeacon.Draw[]\"}},\"getNewestDraw()\":{\"details\":\"Uses the nextDrawIndex to calculate the most recently added Draw.\",\"returns\":{\"_0\":\"IDrawBeacon.Draw\"}},\"getOldestDraw()\":{\"details\":\"Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\",\"returns\":{\"_0\":\"IDrawBeacon.Draw\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"pushDraw((uint256,uint32,uint64,uint64,uint32))\":{\"details\":\"Push new draw onto draws history via authorized manager or owner.\",\"params\":{\"draw\":\"IDrawBeacon.Draw\"},\"returns\":{\"_0\":\"Draw.drawId\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setDraw((uint256,uint32,uint64,uint64,uint32))\":{\"details\":\"Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\",\"params\":{\"newDraw\":\"IDrawBeacon.Draw\"},\"returns\":{\"_0\":\"Draw.drawId\"}},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"version\":1},\"userdoc\":{\"events\":{\"DrawSet(uint32,(uint256,uint32,uint64,uint64,uint32))\":{\"notice\":\"Emit when a new draw has been created.\"}},\"kind\":\"user\",\"methods\":{\"MAX_CARDINALITY()\":{\"notice\":\"Draws ring buffer max length.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"getBufferCardinality()\":{\"notice\":\"Read a ring buffer cardinality\"},\"getDraw(uint32)\":{\"notice\":\"Read a Draw from the draws ring buffer.\"},\"getDrawCount()\":{\"notice\":\"Gets the number of Draws held in the draw ring buffer.\"},\"getDraws(uint32[])\":{\"notice\":\"Read multiple Draws from the draws ring buffer.\"},\"getNewestDraw()\":{\"notice\":\"Read newest Draw from draws ring buffer.\"},\"getOldestDraw()\":{\"notice\":\"Read oldest Draw from draws ring buffer.\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"pushDraw((uint256,uint32,uint64,uint64,uint32))\":{\"notice\":\"Push Draw onto draws ring buffer history.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setDraw((uint256,uint32,uint64,uint64,uint32))\":{\"notice\":\"Set existing Draw in draws ring buffer with new parameters.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/DrawBufferHarness.sol\":\"DrawBufferHarness\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Random Number Generator Interface\\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\n */\\ninterface RNGInterface {\\n  /**\\n   * @notice Emitted when a new request for a random number has been submitted\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param sender The indexed address of the sender of the request\\n   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /**\\n   * @notice Emitted when an existing request for a random number has been completed\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param randomNumber The random number produced by the 3rd-party service\\n   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /**\\n   * @notice Gets the last request id used by the RNG service\\n   * @return requestId The last request id used in the last request\\n   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /**\\n   * @notice Gets the Fee for making a Request against an RNG service\\n   * @return feeToken The address of the token that is used to pay fees\\n   * @return requestFee The fee required to be paid to make a request\\n   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /**\\n   * @notice Sends a request for a random number to the 3rd-party service\\n   * @dev Some services will complete the request immediately, others may have a time-delay\\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n   * @return requestId The ID of the request used to get the results of the RNG service\\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /**\\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\\n   * @dev For time-delayed requests, this function is used to check/confirm completion\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\\n   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /**\\n   * @notice Gets the random number produced by the 3rd-party service\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return randomNum The random number\\n   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"},\"contracts/DrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./interfaces/IDrawBuffer.sol\\\";\\nimport \\\"./interfaces/IDrawBeacon.sol\\\";\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 DrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer provides historical lookups of Draws via a circular ring buffer.\\n            Historical Draws can be accessed on-chain using a drawId to calculate ring buffer storage slot.\\n            The Draw settings can be created by manager/owner and existing Draws can only be updated the owner.\\n            Once a starting Draw has been added to the ring buffer, all following draws must have a sequential Draw ID.\\n    @dev    A DrawBuffer store a limited number of Draws before beginning to overwrite (managed via the cardinality) previous Draws.\\n    @dev    All mainnet DrawBuffer(s) are updated directly from a DrawBeacon, but non-mainnet DrawBuffer(s) (Matic, Optimism, Arbitrum, etc...)\\n            will receive a cross-chain message, duplicating the mainnet Draw configuration - enabling a prize savings liquidity network.\\n*/\\ncontract DrawBuffer is IDrawBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice Draws ring buffer max length.\\n    uint16 public constant MAX_CARDINALITY = 256;\\n\\n    /// @notice Draws ring buffer array.\\n    IDrawBeacon.Draw[MAX_CARDINALITY] private drawRingBuffer;\\n\\n    /// @notice Holds ring buffer information\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Deploy DrawBuffer smart contract.\\n     * @param _owner Address of the owner of the DrawBuffer.\\n     * @param _cardinality Draw ring buffer cardinality.\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getDraw(uint32 drawId) external view override returns (IDrawBeacon.Draw memory) {\\n        return drawRingBuffer[_drawIdToDrawIndex(bufferMetadata, drawId)];\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getDraws(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IDrawBeacon.Draw[] memory)\\n    {\\n        IDrawBeacon.Draw[] memory draws = new IDrawBeacon.Draw[](_drawIds.length);\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        for (uint256 index = 0; index < _drawIds.length; index++) {\\n            draws[index] = drawRingBuffer[_drawIdToDrawIndex(buffer, _drawIds[index])];\\n        }\\n\\n        return draws;\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getDrawCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        if (drawRingBuffer[bufferNextIndex].timestamp != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getNewestDraw() external view override returns (IDrawBeacon.Draw memory) {\\n        return _getNewestDraw(bufferMetadata);\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getOldestDraw() external view override returns (IDrawBeacon.Draw memory) {\\n        // oldest draw should be next available index, otherwise it's at 0\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IDrawBeacon.Draw memory draw = drawRingBuffer[buffer.nextIndex];\\n\\n        if (draw.timestamp == 0) {\\n            // if draw is not init, then use draw at 0\\n            draw = drawRingBuffer[0];\\n        }\\n\\n        return draw;\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function pushDraw(IDrawBeacon.Draw memory _draw)\\n        external\\n        override\\n        onlyManagerOrOwner\\n        returns (uint32)\\n    {\\n        return _pushDraw(_draw);\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function setDraw(IDrawBeacon.Draw memory _newDraw) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_newDraw.drawId);\\n        drawRingBuffer[index] = _newDraw;\\n        emit DrawSet(_newDraw.drawId, _newDraw);\\n        return _newDraw.drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Convert a Draw.drawId to a Draws ring buffer index pointer.\\n     * @dev    The getNewestDraw.drawId() is used to calculate a Draws ID delta position.\\n     * @param _drawId Draw.drawId\\n     * @return Draws ring buffer index pointer\\n     */\\n    function _drawIdToDrawIndex(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        pure\\n        returns (uint32)\\n    {\\n        return _buffer.getIndex(_drawId);\\n    }\\n\\n    /**\\n     * @notice Read newest Draw from the draws ring buffer.\\n     * @dev    Uses the lastDrawId to calculate the most recently added Draw.\\n     * @param _buffer Draw ring buffer\\n     * @return IDrawBeacon.Draw\\n     */\\n    function _getNewestDraw(DrawRingBufferLib.Buffer memory _buffer)\\n        internal\\n        view\\n        returns (IDrawBeacon.Draw memory)\\n    {\\n        return drawRingBuffer[_buffer.getIndex(_buffer.lastDrawId)];\\n    }\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws list via authorized manager or owner.\\n     * @param _newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function _pushDraw(IDrawBeacon.Draw memory _newDraw) internal returns (uint32) {\\n        DrawRingBufferLib.Buffer memory _buffer = bufferMetadata;\\n        drawRingBuffer[_buffer.nextIndex] = _newDraw;\\n        bufferMetadata = _buffer.push(_newDraw.drawId);\\n\\n        emit DrawSet(_newDraw.drawId, _newDraw);\\n\\n        return _newDraw.drawId;\\n    }\\n}\\n\",\"keccak256\":\"0xf43efd6c3f4b3fe67b8ccbf8c69e5137ccaad68a381114afdb5f37cd820d4ccb\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/test/DrawBufferHarness.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../DrawBuffer.sol\\\";\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\ncontract DrawBufferHarness is DrawBuffer {\\n    constructor(address owner, uint8 card) DrawBuffer(owner, card) {}\\n\\n    function addMultipleDraws(\\n        uint256 _start,\\n        uint256 _numberOfDraws,\\n        uint32 _timestamp,\\n        uint256 _winningRandomNumber\\n    ) external {\\n        for (uint256 index = _start; index <= _numberOfDraws; index++) {\\n            IDrawBeacon.Draw memory _draw = IDrawBeacon.Draw({\\n                winningRandomNumber: _winningRandomNumber,\\n                drawId: uint32(index),\\n                timestamp: _timestamp,\\n                beaconPeriodSeconds: 10,\\n                beaconPeriodStartedAt: 20\\n            });\\n\\n            _pushDraw(_draw);\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xda66b711e0bcf7cb40abf951e26dc4aa39d016f07e86f44d08d27eb8b612715a\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/test/DrawBufferHarness.sol:DrawBufferHarness",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/test/DrawBufferHarness.sol:DrawBufferHarness",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3834,
                "contract": "contracts/test/DrawBufferHarness.sol:DrawBufferHarness",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 6192,
                "contract": "contracts/test/DrawBufferHarness.sol:DrawBufferHarness",
                "label": "drawRingBuffer",
                "offset": 0,
                "slot": "3",
                "type": "t_array(t_struct(Draw)11085_storage)256_storage"
              },
              {
                "astId": 6196,
                "contract": "contracts/test/DrawBufferHarness.sol:DrawBufferHarness",
                "label": "bufferMetadata",
                "offset": 0,
                "slot": "515",
                "type": "t_struct(Buffer)12224_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(Draw)11085_storage)256_storage": {
                "base": "t_struct(Draw)11085_storage",
                "encoding": "inplace",
                "label": "struct IDrawBeacon.Draw[256]",
                "numberOfBytes": "16384"
              },
              "t_struct(Buffer)12224_storage": {
                "encoding": "inplace",
                "label": "struct DrawRingBufferLib.Buffer",
                "members": [
                  {
                    "astId": 12219,
                    "contract": "contracts/test/DrawBufferHarness.sol:DrawBufferHarness",
                    "label": "lastDrawId",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 12221,
                    "contract": "contracts/test/DrawBufferHarness.sol:DrawBufferHarness",
                    "label": "nextIndex",
                    "offset": 4,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 12223,
                    "contract": "contracts/test/DrawBufferHarness.sol:DrawBufferHarness",
                    "label": "cardinality",
                    "offset": 8,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(Draw)11085_storage": {
                "encoding": "inplace",
                "label": "struct IDrawBeacon.Draw",
                "members": [
                  {
                    "astId": 11076,
                    "contract": "contracts/test/DrawBufferHarness.sol:DrawBufferHarness",
                    "label": "winningRandomNumber",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint256"
                  },
                  {
                    "astId": 11078,
                    "contract": "contracts/test/DrawBufferHarness.sol:DrawBufferHarness",
                    "label": "drawId",
                    "offset": 0,
                    "slot": "1",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 11080,
                    "contract": "contracts/test/DrawBufferHarness.sol:DrawBufferHarness",
                    "label": "timestamp",
                    "offset": 4,
                    "slot": "1",
                    "type": "t_uint64"
                  },
                  {
                    "astId": 11082,
                    "contract": "contracts/test/DrawBufferHarness.sol:DrawBufferHarness",
                    "label": "beaconPeriodStartedAt",
                    "offset": 12,
                    "slot": "1",
                    "type": "t_uint64"
                  },
                  {
                    "astId": 11084,
                    "contract": "contracts/test/DrawBufferHarness.sol:DrawBufferHarness",
                    "label": "beaconPeriodSeconds",
                    "offset": 20,
                    "slot": "1",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "64"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              },
              "t_uint64": {
                "encoding": "inplace",
                "label": "uint64",
                "numberOfBytes": "8"
              }
            }
          },
          "userdoc": {
            "events": {
              "DrawSet(uint32,(uint256,uint32,uint64,uint64,uint32))": {
                "notice": "Emit when a new draw has been created."
              }
            },
            "kind": "user",
            "methods": {
              "MAX_CARDINALITY()": {
                "notice": "Draws ring buffer max length."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "getBufferCardinality()": {
                "notice": "Read a ring buffer cardinality"
              },
              "getDraw(uint32)": {
                "notice": "Read a Draw from the draws ring buffer."
              },
              "getDrawCount()": {
                "notice": "Gets the number of Draws held in the draw ring buffer."
              },
              "getDraws(uint32[])": {
                "notice": "Read multiple Draws from the draws ring buffer."
              },
              "getNewestDraw()": {
                "notice": "Read newest Draw from draws ring buffer."
              },
              "getOldestDraw()": {
                "notice": "Read oldest Draw from draws ring buffer."
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "pushDraw((uint256,uint32,uint64,uint64,uint32))": {
                "notice": "Push Draw onto draws ring buffer history."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setDraw((uint256,uint32,uint64,uint64,uint32))": {
                "notice": "Set existing Draw in draws ring buffer with new parameters."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/test/DrawCalculatorHarness.sol": {
        "DrawCalculatorHarness": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_ticket",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "_drawBuffer",
                  "type": "address"
                },
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "_prizeDistributionBuffer",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IDrawBuffer",
                  "name": "drawBuffer",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "prizeDistributionBuffer",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract PrizeDistributor",
                  "name": "prizeDistributor",
                  "type": "address"
                }
              ],
              "name": "PrizeDistributorSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "TIERS_LENGTH",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                },
                {
                  "internalType": "bytes",
                  "name": "_pickIndicesForDraws",
                  "type": "bytes"
                }
              ],
              "name": "calculate",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                },
                {
                  "internalType": "bytes",
                  "name": "",
                  "type": "bytes"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "_prizeDistribution",
                  "type": "tuple"
                },
                {
                  "internalType": "uint256",
                  "name": "_normalizedUserBalance",
                  "type": "uint256"
                }
              ],
              "name": "calculateNumberOfUserPicks",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "_prizeDistribution",
                  "type": "tuple"
                },
                {
                  "internalType": "uint256",
                  "name": "_prizeTierIndex",
                  "type": "uint256"
                }
              ],
              "name": "calculatePrizeTierFraction",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_randomNumberThisPick",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "_winningRandomNumber",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256[]",
                  "name": "_masks",
                  "type": "uint256[]"
                }
              ],
              "name": "calculateTierIndex",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "_prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "createBitMasks",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "drawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getNormalizedBalancesForDrawIds",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeDistributionBuffer",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint8",
                  "name": "_bitRangeSize",
                  "type": "uint8"
                },
                {
                  "internalType": "uint256",
                  "name": "_prizeTierIndex",
                  "type": "uint256"
                }
              ],
              "name": "numberOfPrizesForIndex",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "prizeDistributionBuffer",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "ticket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "calculate(address,uint32[],bytes)": {
                "params": {
                  "data": "The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.",
                  "drawIds": "drawId array for which to calculate prize amounts for.",
                  "user": "User for which to calculate prize amount."
                },
                "returns": {
                  "_0": "List of awardable prize amounts ordered by drawId."
                }
              },
              "calculatePrizeTierFraction((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)": {
                "params": {
                  "_prizeDistribution": "prizeDistribution struct for Draw",
                  "_prizeTierIndex": "Index of the prize tiers array to calculate"
                },
                "returns": {
                  "_0": "returns the fraction of the total prize"
                }
              },
              "getDrawBuffer()": {
                "returns": {
                  "_0": "IDrawBuffer"
                }
              },
              "getNormalizedBalancesForDrawIds(address,uint32[])": {
                "params": {
                  "drawIds": "The drawIds to consider",
                  "user": "The users address"
                },
                "returns": {
                  "_0": "Array of balances"
                }
              },
              "getPrizeDistributionBuffer()": {
                "returns": {
                  "_0": "IPrizeDistributionBuffer"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_15906": {
                  "entryPoint": null,
                  "id": 15906,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_6635": {
                  "entryPoint": null,
                  "id": 6635,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_contract$_ITicket_$12213t_contract$_IDrawBuffer_$11318t_contract$_IPrizeDistributionBuffer_$11467_fromMemory": {
                  "entryPoint": 429,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "validator_revert_contract_IDrawBuffer": {
                  "entryPoint": 513,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1847:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "201:443:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "247:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "256:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "259:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "249:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "249:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "249:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "222:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "231:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "218:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "218:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "243:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "214:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "214:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "211:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "272:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "291:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "285:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "285:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "276:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "348:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "310:37:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "310:44:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "310:44:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "363:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "373:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "363:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "387:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "412:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "423:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "408:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "408:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "402:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "402:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "391:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "474:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "436:37:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "436:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "436:46:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "491:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "501:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "491:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "517:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "542:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "553:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "538:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "538:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "532:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "532:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "521:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "604:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "566:37:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "566:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "566:46:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "621:17:84",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "631:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "621:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$12213t_contract$_IDrawBuffer_$11318t_contract$_IPrizeDistributionBuffer_$11467_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "151:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "162:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "174:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "182:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "190:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:630:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "823:170:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "840:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "851:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "833:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "833:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "833:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "874:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "885:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "870:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "870:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "890:2:84",
                                    "type": "",
                                    "value": "20"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "863:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "863:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "863:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "913:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "924:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "909:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "909:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f64682d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "929:22:84",
                                    "type": "",
                                    "value": "DrawCalc/dh-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "902:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "902:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "902:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "961:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "973:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "984:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "969:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "969:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "800:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "814:4:84",
                            "type": ""
                          }
                        ],
                        "src": "649:344:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1172:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1189:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1200:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1182:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1182:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1182:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1223:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1234:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1219:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1219:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1239:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1212:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1212:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1212:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1262:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1273:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1258:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1258:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7469636b65742d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1278:26:84",
                                    "type": "",
                                    "value": "DrawCalc/ticket-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1251:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1251:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1251:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1314:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1326:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1337:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1322:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1322:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1314:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1149:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1163:4:84",
                            "type": ""
                          }
                        ],
                        "src": "998:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1525:171:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1542:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1553:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1535:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1535:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1535:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1576:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1587:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1572:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1572:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1592:2:84",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1565:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1565:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1565:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1615:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1626:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1611:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1611:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7064622d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1631:23:84",
                                    "type": "",
                                    "value": "DrawCalc/pdb-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1604:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1604:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1604:51:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1664:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1676:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1687:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1672:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1672:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1664:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1502:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1516:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1351:345:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1759:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1823:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1832:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1835:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1825:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1825:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1825:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1782:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1793:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1808:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1813:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1804:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1804:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1817:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1800:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1800:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1789:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1789:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1779:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1779:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1772:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1772:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1769:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_contract_IDrawBuffer",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1748:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1701:144:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_contract$_ITicket_$12213t_contract$_IDrawBuffer_$11318t_contract$_IPrizeDistributionBuffer_$11467_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IDrawBuffer(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IDrawBuffer(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_contract_IDrawBuffer(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 20)\n        mstore(add(headStart, 64), \"DrawCalc/dh-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"DrawCalc/ticket-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"DrawCalc/pdb-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function validator_revert_contract_IDrawBuffer(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60e06040523480156200001157600080fd5b50604051620025f7380380620025f78339810160408190526200003491620001ad565b8282826001600160a01b038316620000935760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7469636b65742d6e6f742d7a65726f000000000000000060448201526064015b60405180910390fd5b6001600160a01b038116620000eb5760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f7064622d6e6f742d7a65726f000000000000000000000060448201526064016200008a565b6001600160a01b038216620001435760405162461bcd60e51b815260206004820152601460248201527f4472617743616c632f64682d6e6f742d7a65726f00000000000000000000000060448201526064016200008a565b6001600160601b0319606084811b821660a05283811b821660805282901b1660c0526040516001600160a01b0382811691848216918616907fc95935a66d15e0da5e412aca0ad27ae891d20b2fb91cf3994b6a3bf2b817808290600090a45050505050506200021a565b600080600060608486031215620001c357600080fd5b8351620001d08162000201565b6020850151909350620001e38162000201565b6040850151909250620001f68162000201565b809150509250925092565b6001600160a01b03811681146200021757600080fd5b50565b60805160601c60a05160601c60c05160601c61236d6200028a6000396000818160e90152818161024b015281816103cb01526105fa0152600081816101b401528181610b630152610bf601526000818161016b01528181610274015281816103180152610569015261236d6000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c80636d4bfa6e1161008c578063aaca392e11610066578063aaca392e14610228578063bd97a25214610249578063ce343bb61461026f578063f8d0ca4c1461029657600080fd5b80636d4bfa6e146101d65780638045fbcf146101e95780639d34ee24146101fc57600080fd5b80634019f2d6116100bd5780634019f2d61461016957806367306cf21461018f5780636cc25db7146101af57600080fd5b80630840bbdd146100e4578063094a2491146101355780633b5564f914610156575b600080fd5b61010b7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b610148610143366004611d3a565b6102b0565b60405190815260200161012c565b610148610164366004611c25565b6102c5565b7f000000000000000000000000000000000000000000000000000000000000000061010b565b6101a261019d366004611c08565b6102df565b60405161012c9190611e9c565b61010b7f000000000000000000000000000000000000000000000000000000000000000081565b6101486101e4366004611c8d565b6102f8565b6101a26101f736600461172b565b610312565b61020f61020a366004611c6f565b61048f565b60405167ffffffffffffffff909116815260200161012c565b61023b61023636600461177e565b61049b565b60405161012c929190611eaf565b7f000000000000000000000000000000000000000000000000000000000000000061010b565b61010b7f000000000000000000000000000000000000000000000000000000000000000081565b61029e601081565b60405160ff909116815260200161012c565b60006102bc8383610726565b90505b92915050565b60006102bc6102d936859003850185611c52565b83610774565b60606102bf6102f336849003840184611c52565b6107bf565b60006103058484846108c4565b60ff1690505b9392505050565b606060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0bb78f385856040518363ffffffff1660e01b8152600401610371929190611f14565b60006040518083038186803b15801561038957600080fd5b505afa15801561039d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103c59190810190611949565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf86866040518363ffffffff1660e01b8152600401610424929190611f14565b60006040518083038186803b15801561043c57600080fd5b505afa158015610450573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104789190810190611a44565b9050610485868383610963565b9695505050505050565b60006102bc8383610dce565b60608060006104ac84860186611829565b805190915086146105295760405162461bcd60e51b8152602060048201526024808201527f4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c6560448201527f6e6774680000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6040517fd0bb78f300000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063d0bb78f3906105a0908b908b90600401611f14565b60006040518083038186803b1580156105b857600080fd5b505afa1580156105cc573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105f49190810190611949565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf8a8a6040518363ffffffff1660e01b8152600401610653929190611f14565b60006040518083038186803b15801561066b57600080fd5b505afa15801561067f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106a79190810190611a44565b905060006106b68b8484610963565b6040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608e901b1660208201529091506000906034016040516020818303038152906040528051906020012090506107138282868887610e02565b9650965050505050509550959350505050565b6000811561076c576107396001836121e2565b6107469060ff85166121c3565b6001901b6107578360ff86166121c3565b6001901b61076591906121e2565b90506102bf565b5060016102bf565b6000808360e00151836010811061078d5761078d6122b6565b602002015163ffffffff16905060006107aa856000015185610726565b90506107b681836120b3565b95945050505050565b60606000826020015160ff1667ffffffffffffffff8111156107e3576107e36122cc565b60405190808252806020026020018201604052801561080c578160200160208202803683370190505b508351909150600190610820906002612118565b61082a91906121e2565b8160008151811061083d5761083d6122b6565b602090810291909101015260015b836020015160ff168160ff1610156108bd57835160ff168261086e60018461221e565b60ff1681518110610881576108816122b6565b6020026020010151901b828260ff16815181106108a0576108a06122b6565b6020908102919091010152806108b581612280565b91505061084b565b5092915050565b80516000908190815b8160ff168160ff161015610958576000858260ff16815181106108f2576108f26122b6565b6020026020010151905080871681891614610937578360ff168360ff16141561092257600094505050505061030b565b61092c848461221e565b94505050505061030b565b8361094181612280565b94505050808061095090612280565b9150506108cd565b50610485828261221e565b815160609060008167ffffffffffffffff811115610983576109836122cc565b6040519080825280602002602001820160405280156109ac578160200160208202803683370190505b50905060008267ffffffffffffffff8111156109ca576109ca6122cc565b6040519080825280602002602001820160405280156109f3578160200160208202803683370190505b50905060005b838163ffffffff161015610b2257858163ffffffff1681518110610a1f57610a1f6122b6565b60200260200101516040015163ffffffff16878263ffffffff1681518110610a4957610a496122b6565b60200260200101516040015103838263ffffffff1681518110610a6e57610a6e6122b6565b602002602001019067ffffffffffffffff16908167ffffffffffffffff1681525050858163ffffffff1681518110610aa857610aa86122b6565b60200260200101516060015163ffffffff16878263ffffffff1681518110610ad257610ad26122b6565b60200260200101516040015103828263ffffffff1681518110610af757610af76122b6565b67ffffffffffffffff9092166020928302919091019091015280610b1a8161225c565b9150506109f9565b506040517f68c7fd5700000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906368c7fd5790610b9c908b9087908790600401611ddb565b60006040518083038186803b158015610bb457600080fd5b505afa158015610bc8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bf09190810190611b70565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638e6d536a85856040518363ffffffff1660e01b8152600401610c4f929190611f5f565b60006040518083038186803b158015610c6757600080fd5b505afa158015610c7b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ca39190810190611b70565b905060008567ffffffffffffffff811115610cc057610cc06122cc565b604051908082528060200260200182016040528015610ce9578160200160208202803683370190505b50905060005b86811015610dc057828181518110610d0957610d096122b6565b602002602001015160001415610d3e576000828281518110610d2d57610d2d6122b6565b602002602001018181525050610dae565b828181518110610d5057610d506122b6565b6020026020010151848281518110610d6a57610d6a6122b6565b6020026020010151670de0b6b3a7640000610d8591906121c3565b610d8f91906120b3565b828281518110610da157610da16122b6565b6020026020010181815250505b80610db881612241565b915050610cef565b509998505050505050505050565b6000670de0b6b3a76400008360c001516cffffffffffffffffffffffffff1683610df891906121c3565b6102bc91906120b3565b6060806000875167ffffffffffffffff811115610e2157610e216122cc565b604051908082528060200260200182016040528015610e4a578160200160208202803683370190505b5090506000885167ffffffffffffffff811115610e6957610e696122cc565b604051908082528060200260200182016040528015610e9c57816020015b6060815260200190600190039081610e875790505b5090504260005b88518163ffffffff16101561108957868163ffffffff1681518110610eca57610eca6122b6565b602002602001015160a0015163ffffffff16898263ffffffff1681518110610ef457610ef46122b6565b602002602001015160400151610f0a9190612062565b67ffffffffffffffff168267ffffffffffffffff1610610f6c5760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d6578706972656400000000000000000000006044820152606401610520565b6000610fb6888363ffffffff1681518110610f8957610f896122b6565b60200260200101518d8463ffffffff1681518110610fa957610fa96122b6565b6020026020010151610dce565b90506110308a8363ffffffff1681518110610fd357610fd36122b6565b6020026020010151600001518267ffffffffffffffff168d8c8663ffffffff1681518110611003576110036122b6565b60200260200101518c8763ffffffff1681518110611023576110236122b6565b60200260200101516110bc565b868463ffffffff1681518110611048576110486122b6565b60200260200101868563ffffffff1681518110611067576110676122b6565b60209081029190910101919091525250806110818161225c565b915050610ea3565b508160405160200161109b9190611e1c565b60405160208183030381529060405293508294505050509550959350505050565b6000606060006110cb846107bf565b85516040805160108082526102208201909252929350909160009160208201610200803683370190505090506000866080015163ffffffff168363ffffffff1611156111595760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f657863656564732d6d61782d757365722d7069636b73006044820152606401610520565b60005b8363ffffffff168163ffffffff161015611371578a898263ffffffff1681518110611189576111896122b6565b602002602001015167ffffffffffffffff16106111e85760405162461bcd60e51b815260206004820181905260248201527f4472617743616c632f696e73756666696369656e742d757365722d7069636b736044820152606401610520565b63ffffffff81161561129f57886112006001836121f9565b63ffffffff1681518110611216576112166122b6565b602002602001015167ffffffffffffffff16898263ffffffff1681518110611240576112406122b6565b602002602001015167ffffffffffffffff161161129f5760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7069636b732d617363656e64696e6700000000000000006044820152606401610520565b60008a8a8363ffffffff16815181106112ba576112ba6122b6565b60200260200101516040516020016112e692919091825267ffffffffffffffff16602082015260400190565b6040516020818303038152906040528051906020012060001c9050600061130e828f896108c4565b9050601060ff8216101561135c578360ff168160ff16111561132e578093505b848160ff1681518110611343576113436122b6565b60200260200101805180919061135890612241565b9052505b505080806113699061225c565b91505061115c565b5060008061137f8984611441565b905060005b8360ff16811161140d5760008582815181106113a2576113a26122b6565b602002602001015111156113fb578481815181106113c2576113c26122b6565b60200260200101518282815181106113dc576113dc6122b6565b60200260200101516113ee91906121c3565b6113f8908461204a565b92505b8061140581612241565b915050611384565b50633b9aca008961010001518361142491906121c3565b61142e91906120b3565b9d939c50929a5050505050505050505050565b6060600061145083600161208e565b60ff1667ffffffffffffffff81111561146b5761146b6122cc565b604051908082528060200260200182016040528015611494578160200160208202803683370190505b50905060005b8360ff168160ff16116114e6576114b4858260ff16610774565b828260ff16815181106114c9576114c96122b6565b6020908102919091010152806114de81612280565b91505061149a565b509392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461151257600080fd5b919050565b600082601f83011261152857600080fd5b611530611fd1565b8083856102008601111561154357600080fd5b60005b601081101561156f57813561155a81612300565b84526020938401939190910190600101611546565b509095945050505050565b600082601f83011261158b57600080fd5b611593611fd1565b808385610200860111156115a657600080fd5b60005b601081101561156f5781516115bd81612300565b845260209384019391909101906001016115a9565b60008083601f8401126115e457600080fd5b50813567ffffffffffffffff8111156115fc57600080fd5b6020830191508360208260051b850101111561161757600080fd5b9250929050565b6000610300828403121561163157600080fd5b50919050565b6000610300828403121561164a57600080fd5b611652611f84565b905061165d82611715565b815261166b60208301611715565b602082015261167c604083016116ff565b604082015261168d606083016116ff565b606082015261169e608083016116ff565b60808201526116af60a083016116ff565b60a08201526116c060c083016116e9565b60c08201526116d28360e08401611517565b60e08201526102e082013561010082015292915050565b8035611512816122e2565b8051611512816122e2565b803561151281612300565b805161151281612300565b803561151281612328565b805161151281612328565b60008060006040848603121561174057600080fd5b611749846114ee565b9250602084013567ffffffffffffffff81111561176557600080fd5b611771868287016115d2565b9497909650939450505050565b60008060008060006060868803121561179657600080fd5b61179f866114ee565b9450602086013567ffffffffffffffff808211156117bc57600080fd5b6117c889838a016115d2565b909650945060408801359150808211156117e157600080fd5b818801915088601f8301126117f557600080fd5b81358181111561180457600080fd5b89602082850101111561181657600080fd5b9699959850939650602001949392505050565b6000602080838503121561183c57600080fd5b823567ffffffffffffffff8082111561185457600080fd5b818501915085601f83011261186857600080fd5b813561187b61187682612026565b611ff5565b80828252858201915085850189878560051b880101111561189b57600080fd5b60005b8481101561193a578135868111156118b557600080fd5b8701603f81018c136118c657600080fd5b888101356118d661187682612026565b808282528b82019150604084018f60408560051b87010111156118f857600080fd5b600094505b8385101561192457803561191081612312565b835260019490940193918c01918c016118fd565b508752505050928701929087019060010161189e565b50909998505050505050505050565b6000602080838503121561195c57600080fd5b825167ffffffffffffffff81111561197357600080fd5b8301601f8101851361198457600080fd5b805161199261187682612026565b8181528381019083850160a0808502860187018a10156119b157600080fd5b60009550855b85811015611a355781838c0312156119cd578687fd5b6119d5611fae565b83518152888401516119e681612300565b818a01526040848101516119f981612312565b90820152606084810151611a0c81612312565b90820152608084810151611a1f81612300565b90820152855293870193918101916001016119b7565b50919998505050505050505050565b60006020808385031215611a5757600080fd5b825167ffffffffffffffff811115611a6e57600080fd5b8301601f81018513611a7f57600080fd5b8051611a8d61187682612026565b81815283810190838501610300808502860187018a1015611aad57600080fd5b60009550855b85811015611a355781838c031215611ac9578687fd5b611ad1611f84565b611ada84611720565b8152611ae7898501611720565b898201526040611af881860161170a565b908201526060611b0985820161170a565b908201526080611b1a85820161170a565b9082015260a0611b2b85820161170a565b9082015260c0611b3c8582016116f4565b9082015260e0611b4e8d86830161157a565b908201526102e084015161010082015285529387019391810191600101611ab3565b60006020808385031215611b8357600080fd5b825167ffffffffffffffff811115611b9a57600080fd5b8301601f81018513611bab57600080fd5b8051611bb961187682612026565b80828252848201915084840188868560051b8701011115611bd957600080fd5b600094505b83851015611bfc578051835260019490940193918501918501611bde565b50979650505050505050565b60006103008284031215611c1b57600080fd5b6102bc838361161e565b6000806103208385031215611c3957600080fd5b611c43848461161e565b94610300939093013593505050565b60006103008284031215611c6557600080fd5b6102bc8383611637565b6000806103208385031215611c8357600080fd5b611c438484611637565b600080600060608486031215611ca257600080fd5b833592506020808501359250604085013567ffffffffffffffff811115611cc857600080fd5b8501601f81018713611cd957600080fd5b8035611ce761187682612026565b8082825284820191508484018a868560051b8701011115611d0757600080fd5b600094505b83851015611d2a578035835260019490940193918501918501611d0c565b5080955050505050509250925092565b60008060408385031215611d4d57600080fd5b8235611d5881612328565b946020939093013593505050565b600081518084526020808501945080840160005b83811015611d9657815187529582019590820190600101611d7a565b509495945050505050565b600081518084526020808501945080840160005b83811015611d9657815167ffffffffffffffff1687529582019590820190600101611db5565b73ffffffffffffffffffffffffffffffffffffffff84168152606060208201526000611e0a6060830185611da1565b82810360408401526104858185611da1565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015611e8f577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452611e7d858351611d66565b94509285019290850190600101611e43565b5092979650505050505050565b6020815260006102bc6020830184611d66565b604081526000611ec26040830185611d66565b602083820381850152845180835260005b81811015611eee578681018301518482018401528201611ed3565b81811115611eff5760008383860101525b50601f01601f19169190910101949350505050565b60208082528181018390526000908460408401835b86811015611f54578235611f3c81612300565b63ffffffff1682529183019190830190600101611f29565b509695505050505050565b604081526000611f726040830185611da1565b82810360208401526107b68185611da1565b604051610120810167ffffffffffffffff81118282101715611fa857611fa86122cc565b60405290565b60405160a0810167ffffffffffffffff81118282101715611fa857611fa86122cc565b604051610200810167ffffffffffffffff81118282101715611fa857611fa86122cc565b604051601f8201601f1916810167ffffffffffffffff8111828210171561201e5761201e6122cc565b604052919050565b600067ffffffffffffffff821115612040576120406122cc565b5060051b60200190565b6000821982111561205d5761205d6122a0565b500190565b600067ffffffffffffffff808316818516808303821115612085576120856122a0565b01949350505050565b600060ff821660ff84168060ff038211156120ab576120ab6122a0565b019392505050565b6000826120d057634e487b7160e01b600052601260045260246000fd5b500490565b600181815b808511156121105781600019048211156120f6576120f66122a0565b8085161561210357918102915b93841c93908002906120da565b509250929050565b60006102bc60ff841683600082612131575060016102bf565b8161213e575060006102bf565b8160018114612154576002811461215e5761217a565b60019150506102bf565b60ff84111561216f5761216f6122a0565b50506001821b6102bf565b5060208310610133831016604e8410600b841016171561219d575081810a6102bf565b6121a783836120d5565b80600019048211156121bb576121bb6122a0565b029392505050565b60008160001904831182151516156121dd576121dd6122a0565b500290565b6000828210156121f4576121f46122a0565b500390565b600063ffffffff83811690831681811015612216576122166122a0565b039392505050565b600060ff821660ff841680821015612238576122386122a0565b90039392505050565b6000600019821415612255576122556122a0565b5060010190565b600063ffffffff80831681811415612276576122766122a0565b6001019392505050565b600060ff821660ff811415612297576122976122a0565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6cffffffffffffffffffffffffff811681146122fd57600080fd5b50565b63ffffffff811681146122fd57600080fd5b67ffffffffffffffff811681146122fd57600080fd5b60ff811681146122fd57600080fdfea26469706673582212206a125d488fc439371055273ba772b81ba4f430a98aead6f7e08658855ee24b9d64736f6c63430008060033",
              "opcodes": "PUSH1 0xE0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x25F7 CODESIZE SUB DUP1 PUSH3 0x25F7 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1AD JUMP JUMPDEST DUP3 DUP3 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH3 0x93 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7469636B65742D6E6F742D7A65726F0000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0xEB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7064622D6E6F742D7A65726F0000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x8A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0x143 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F64682D6E6F742D7A65726F000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x8A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 DUP2 SHL DUP3 AND PUSH1 0xA0 MSTORE DUP4 DUP2 SHL DUP3 AND PUSH1 0x80 MSTORE DUP3 SWAP1 SHL AND PUSH1 0xC0 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND SWAP2 DUP5 DUP3 AND SWAP2 DUP7 AND SWAP1 PUSH32 0xC95935A66D15E0DA5E412ACA0AD27AE891D20B2FB91CF3994B6A3BF2B8178082 SWAP1 PUSH1 0x0 SWAP1 LOG4 POP POP POP POP POP POP PUSH3 0x21A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x1C3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH3 0x1D0 DUP2 PUSH3 0x201 JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH3 0x1E3 DUP2 PUSH3 0x201 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x1F6 DUP2 PUSH3 0x201 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x217 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH1 0xA0 MLOAD PUSH1 0x60 SHR PUSH1 0xC0 MLOAD PUSH1 0x60 SHR PUSH2 0x236D PUSH3 0x28A PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH1 0xE9 ADD MSTORE DUP2 DUP2 PUSH2 0x24B ADD MSTORE DUP2 DUP2 PUSH2 0x3CB ADD MSTORE PUSH2 0x5FA ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x1B4 ADD MSTORE DUP2 DUP2 PUSH2 0xB63 ADD MSTORE PUSH2 0xBF6 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x16B ADD MSTORE DUP2 DUP2 PUSH2 0x274 ADD MSTORE DUP2 DUP2 PUSH2 0x318 ADD MSTORE PUSH2 0x569 ADD MSTORE PUSH2 0x236D 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 0xDF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6D4BFA6E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xAACA392E GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xAACA392E EQ PUSH2 0x228 JUMPI DUP1 PUSH4 0xBD97A252 EQ PUSH2 0x249 JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x26F JUMPI DUP1 PUSH4 0xF8D0CA4C EQ PUSH2 0x296 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6D4BFA6E EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0x8045FBCF EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0x9D34EE24 EQ PUSH2 0x1FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4019F2D6 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0x169 JUMPI DUP1 PUSH4 0x67306CF2 EQ PUSH2 0x18F JUMPI DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0x1AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x840BBDD EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x94A2491 EQ PUSH2 0x135 JUMPI DUP1 PUSH4 0x3B5564F9 EQ PUSH2 0x156 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10B PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x148 PUSH2 0x143 CALLDATASIZE PUSH1 0x4 PUSH2 0x1D3A JUMP JUMPDEST PUSH2 0x2B0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12C JUMP JUMPDEST PUSH2 0x148 PUSH2 0x164 CALLDATASIZE PUSH1 0x4 PUSH2 0x1C25 JUMP JUMPDEST PUSH2 0x2C5 JUMP JUMPDEST PUSH32 0x0 PUSH2 0x10B JUMP JUMPDEST PUSH2 0x1A2 PUSH2 0x19D CALLDATASIZE PUSH1 0x4 PUSH2 0x1C08 JUMP JUMPDEST PUSH2 0x2DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x12C SWAP2 SWAP1 PUSH2 0x1E9C JUMP JUMPDEST PUSH2 0x10B PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x148 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x1C8D JUMP JUMPDEST PUSH2 0x2F8 JUMP JUMPDEST PUSH2 0x1A2 PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0x172B JUMP JUMPDEST PUSH2 0x312 JUMP JUMPDEST PUSH2 0x20F PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0x1C6F JUMP JUMPDEST PUSH2 0x48F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12C JUMP JUMPDEST PUSH2 0x23B PUSH2 0x236 CALLDATASIZE PUSH1 0x4 PUSH2 0x177E JUMP JUMPDEST PUSH2 0x49B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x12C SWAP3 SWAP2 SWAP1 PUSH2 0x1EAF JUMP JUMPDEST PUSH32 0x0 PUSH2 0x10B JUMP JUMPDEST PUSH2 0x10B PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x29E PUSH1 0x10 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12C JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BC DUP4 DUP4 PUSH2 0x726 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BC PUSH2 0x2D9 CALLDATASIZE DUP6 SWAP1 SUB DUP6 ADD DUP6 PUSH2 0x1C52 JUMP JUMPDEST DUP4 PUSH2 0x774 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2BF PUSH2 0x2F3 CALLDATASIZE DUP5 SWAP1 SUB DUP5 ADD DUP5 PUSH2 0x1C52 JUMP JUMPDEST PUSH2 0x7BF JUMP JUMPDEST PUSH1 0x0 PUSH2 0x305 DUP5 DUP5 DUP5 PUSH2 0x8C4 JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD0BB78F3 DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x371 SWAP3 SWAP2 SWAP1 PUSH2 0x1F14 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x389 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x39D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x3C5 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1949 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP7 DUP7 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x424 SWAP3 SWAP2 SWAP1 PUSH2 0x1F14 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x43C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x450 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x478 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1A44 JUMP JUMPDEST SWAP1 POP PUSH2 0x485 DUP7 DUP4 DUP4 PUSH2 0x963 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BC DUP4 DUP4 PUSH2 0xDCE JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 PUSH2 0x4AC DUP5 DUP7 ADD DUP7 PUSH2 0x1829 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP DUP7 EQ PUSH2 0x529 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E76616C69642D7069636B2D696E64696365732D6C65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E67746800000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xD0BB78F300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0xD0BB78F3 SWAP1 PUSH2 0x5A0 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x1F14 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5CC JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x5F4 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1949 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP11 DUP11 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x653 SWAP3 SWAP2 SWAP1 PUSH2 0x1F14 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x66B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x67F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x6A7 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1A44 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x6B6 DUP12 DUP5 DUP5 PUSH2 0x963 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000 PUSH1 0x60 DUP15 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x34 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH2 0x713 DUP3 DUP3 DUP7 DUP9 DUP8 PUSH2 0xE02 JUMP JUMPDEST SWAP7 POP SWAP7 POP POP POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO PUSH2 0x76C JUMPI PUSH2 0x739 PUSH1 0x1 DUP4 PUSH2 0x21E2 JUMP JUMPDEST PUSH2 0x746 SWAP1 PUSH1 0xFF DUP6 AND PUSH2 0x21C3 JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x757 DUP4 PUSH1 0xFF DUP7 AND PUSH2 0x21C3 JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x765 SWAP2 SWAP1 PUSH2 0x21E2 JUMP JUMPDEST SWAP1 POP PUSH2 0x2BF JUMP JUMPDEST POP PUSH1 0x1 PUSH2 0x2BF JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0xE0 ADD MLOAD DUP4 PUSH1 0x10 DUP2 LT PUSH2 0x78D JUMPI PUSH2 0x78D PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x7AA DUP6 PUSH1 0x0 ADD MLOAD DUP6 PUSH2 0x726 JUMP JUMPDEST SWAP1 POP PUSH2 0x7B6 DUP2 DUP4 PUSH2 0x20B3 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7E3 JUMPI PUSH2 0x7E3 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x80C JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP DUP4 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 SWAP1 PUSH2 0x820 SWAP1 PUSH1 0x2 PUSH2 0x2118 JUMP JUMPDEST PUSH2 0x82A SWAP2 SWAP1 PUSH2 0x21E2 JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x83D JUMPI PUSH2 0x83D PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 JUMPDEST DUP4 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x8BD JUMPI DUP4 MLOAD PUSH1 0xFF AND DUP3 PUSH2 0x86E PUSH1 0x1 DUP5 PUSH2 0x221E JUMP JUMPDEST PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x881 JUMPI PUSH2 0x881 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 SHL DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x8A0 JUMPI PUSH2 0x8A0 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x8B5 DUP2 PUSH2 0x2280 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x84B JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x958 JUMPI PUSH1 0x0 DUP6 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x8F2 JUMPI PUSH2 0x8F2 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP DUP1 DUP8 AND DUP2 DUP10 AND EQ PUSH2 0x937 JUMPI DUP4 PUSH1 0xFF AND DUP4 PUSH1 0xFF AND EQ ISZERO PUSH2 0x922 JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0x30B JUMP JUMPDEST PUSH2 0x92C DUP5 DUP5 PUSH2 0x221E JUMP JUMPDEST SWAP5 POP POP POP POP POP PUSH2 0x30B JUMP JUMPDEST DUP4 PUSH2 0x941 DUP2 PUSH2 0x2280 JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0x950 SWAP1 PUSH2 0x2280 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x8CD JUMP JUMPDEST POP PUSH2 0x485 DUP3 DUP3 PUSH2 0x221E JUMP JUMPDEST DUP2 MLOAD PUSH1 0x60 SWAP1 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x983 JUMPI PUSH2 0x983 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x9AC JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x9CA JUMPI PUSH2 0x9CA PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x9F3 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xB22 JUMPI DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xA1F JUMPI PUSH2 0xA1F PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xA49 JUMPI PUSH2 0xA49 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP4 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xA6E JUMPI PUSH2 0xA6E PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xAA8 JUMPI PUSH2 0xAA8 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x60 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xAD2 JUMPI PUSH2 0xAD2 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP3 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xAF7 JUMPI PUSH2 0xAF7 PUSH2 0x22B6 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE DUP1 PUSH2 0xB1A DUP2 PUSH2 0x225C JUMP JUMPDEST SWAP2 POP POP PUSH2 0x9F9 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x68C7FD5700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0x68C7FD57 SWAP1 PUSH2 0xB9C SWAP1 DUP12 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x1DDB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBB4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xBC8 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0xBF0 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1B70 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x8E6D536A DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC4F SWAP3 SWAP2 SWAP1 PUSH2 0x1F5F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xC67 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC7B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0xCA3 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1B70 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xCC0 JUMPI PUSH2 0xCC0 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xCE9 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0xDC0 JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0xD09 JUMPI PUSH2 0xD09 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 EQ ISZERO PUSH2 0xD3E JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xD2D JUMPI PUSH2 0xD2D PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP PUSH2 0xDAE JUMP JUMPDEST DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0xD50 JUMPI PUSH2 0xD50 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xD6A JUMPI PUSH2 0xD6A PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xDE0B6B3A7640000 PUSH2 0xD85 SWAP2 SWAP1 PUSH2 0x21C3 JUMP JUMPDEST PUSH2 0xD8F SWAP2 SWAP1 PUSH2 0x20B3 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xDA1 JUMPI PUSH2 0xDA1 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0xDB8 DUP2 PUSH2 0x2241 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xCEF JUMP JUMPDEST POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 DUP4 PUSH1 0xC0 ADD MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0xDF8 SWAP2 SWAP1 PUSH2 0x21C3 JUMP JUMPDEST PUSH2 0x2BC SWAP2 SWAP1 PUSH2 0x20B3 JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 DUP8 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE21 JUMPI PUSH2 0xE21 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xE4A JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP9 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE69 JUMPI PUSH2 0xE69 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xE9C JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xE87 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP9 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x1089 JUMPI DUP7 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xECA JUMPI PUSH2 0xECA PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xA0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xEF4 JUMPI PUSH2 0xEF4 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH2 0xF0A SWAP2 SWAP1 PUSH2 0x2062 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xF6C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F647261772D657870697265640000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x520 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFB6 DUP9 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xF89 JUMPI PUSH2 0xF89 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP14 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFA9 JUMPI PUSH2 0xFA9 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xDCE JUMP JUMPDEST SWAP1 POP PUSH2 0x1030 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFD3 JUMPI PUSH2 0xFD3 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP14 DUP13 DUP7 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1003 JUMPI PUSH2 0x1003 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP13 DUP8 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1023 JUMPI PUSH2 0x1023 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x10BC JUMP JUMPDEST DUP7 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1048 JUMPI PUSH2 0x1048 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP7 DUP6 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1067 JUMPI PUSH2 0x1067 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD SWAP2 SWAP1 SWAP2 MSTORE MSTORE POP DUP1 PUSH2 0x1081 DUP2 PUSH2 0x225C JUMP JUMPDEST SWAP2 POP POP PUSH2 0xEA3 JUMP JUMPDEST POP DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x109B SWAP2 SWAP1 PUSH2 0x1E1C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP DUP3 SWAP5 POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 PUSH1 0x0 PUSH2 0x10CB DUP5 PUSH2 0x7BF JUMP JUMPDEST DUP6 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x10 DUP1 DUP3 MSTORE PUSH2 0x220 DUP3 ADD SWAP1 SWAP3 MSTORE SWAP3 SWAP4 POP SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH1 0x20 DUP3 ADD PUSH2 0x200 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH1 0x0 DUP7 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0x1159 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F657863656564732D6D61782D757365722D7069636B7300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x520 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x1371 JUMPI DUP11 DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1189 JUMPI PUSH2 0x1189 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0x11E8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E73756666696369656E742D757365722D7069636B73 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x520 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO PUSH2 0x129F JUMPI DUP9 PUSH2 0x1200 PUSH1 0x1 DUP4 PUSH2 0x21F9 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1216 JUMPI PUSH2 0x1216 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1240 JUMPI PUSH2 0x1240 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0x129F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7069636B732D617363656E64696E670000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x520 JUMP JUMPDEST PUSH1 0x0 DUP11 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x12BA JUMPI PUSH2 0x12BA PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x12E6 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP PUSH1 0x0 PUSH2 0x130E DUP3 DUP16 DUP10 PUSH2 0x8C4 JUMP JUMPDEST SWAP1 POP PUSH1 0x10 PUSH1 0xFF DUP3 AND LT ISZERO PUSH2 0x135C JUMPI DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT ISZERO PUSH2 0x132E JUMPI DUP1 SWAP4 POP JUMPDEST DUP5 DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1343 JUMPI PUSH2 0x1343 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP1 MLOAD DUP1 SWAP2 SWAP1 PUSH2 0x1358 SWAP1 PUSH2 0x2241 JUMP JUMPDEST SWAP1 MSTORE POP JUMPDEST POP POP DUP1 DUP1 PUSH2 0x1369 SWAP1 PUSH2 0x225C JUMP JUMPDEST SWAP2 POP POP PUSH2 0x115C JUMP JUMPDEST POP PUSH1 0x0 DUP1 PUSH2 0x137F DUP10 DUP5 PUSH2 0x1441 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 GT PUSH2 0x140D JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x13A2 JUMPI PUSH2 0x13A2 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD GT ISZERO PUSH2 0x13FB JUMPI DUP5 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x13C2 JUMPI PUSH2 0x13C2 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x13DC JUMPI PUSH2 0x13DC PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x13EE SWAP2 SWAP1 PUSH2 0x21C3 JUMP JUMPDEST PUSH2 0x13F8 SWAP1 DUP5 PUSH2 0x204A JUMP JUMPDEST SWAP3 POP JUMPDEST DUP1 PUSH2 0x1405 DUP2 PUSH2 0x2241 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1384 JUMP JUMPDEST POP PUSH4 0x3B9ACA00 DUP10 PUSH2 0x100 ADD MLOAD DUP4 PUSH2 0x1424 SWAP2 SWAP1 PUSH2 0x21C3 JUMP JUMPDEST PUSH2 0x142E SWAP2 SWAP1 PUSH2 0x20B3 JUMP JUMPDEST SWAP14 SWAP4 SWAP13 POP SWAP3 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x1450 DUP4 PUSH1 0x1 PUSH2 0x208E JUMP JUMPDEST PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x146B JUMPI PUSH2 0x146B PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1494 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT PUSH2 0x14E6 JUMPI PUSH2 0x14B4 DUP6 DUP3 PUSH1 0xFF AND PUSH2 0x774 JUMP JUMPDEST DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x14C9 JUMPI PUSH2 0x14C9 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x14DE DUP2 PUSH2 0x2280 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x149A JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1512 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1528 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1530 PUSH2 0x1FD1 JUMP JUMPDEST DUP1 DUP4 DUP6 PUSH2 0x200 DUP7 ADD GT ISZERO PUSH2 0x1543 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x156F JUMPI DUP2 CALLDATALOAD PUSH2 0x155A DUP2 PUSH2 0x2300 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1546 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x158B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1593 PUSH2 0x1FD1 JUMP JUMPDEST DUP1 DUP4 DUP6 PUSH2 0x200 DUP7 ADD GT ISZERO PUSH2 0x15A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x156F JUMPI DUP2 MLOAD PUSH2 0x15BD DUP2 PUSH2 0x2300 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x15A9 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x15E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x15FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1617 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1631 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x164A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1652 PUSH2 0x1F84 JUMP JUMPDEST SWAP1 POP PUSH2 0x165D DUP3 PUSH2 0x1715 JUMP JUMPDEST DUP2 MSTORE PUSH2 0x166B PUSH1 0x20 DUP4 ADD PUSH2 0x1715 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x167C PUSH1 0x40 DUP4 ADD PUSH2 0x16FF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x168D PUSH1 0x60 DUP4 ADD PUSH2 0x16FF JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x169E PUSH1 0x80 DUP4 ADD PUSH2 0x16FF JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x16AF PUSH1 0xA0 DUP4 ADD PUSH2 0x16FF JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD MSTORE PUSH2 0x16C0 PUSH1 0xC0 DUP4 ADD PUSH2 0x16E9 JUMP JUMPDEST PUSH1 0xC0 DUP3 ADD MSTORE PUSH2 0x16D2 DUP4 PUSH1 0xE0 DUP5 ADD PUSH2 0x1517 JUMP JUMPDEST PUSH1 0xE0 DUP3 ADD MSTORE PUSH2 0x2E0 DUP3 ADD CALLDATALOAD PUSH2 0x100 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x1512 DUP2 PUSH2 0x22E2 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x1512 DUP2 PUSH2 0x22E2 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x1512 DUP2 PUSH2 0x2300 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x1512 DUP2 PUSH2 0x2300 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x1512 DUP2 PUSH2 0x2328 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x1512 DUP2 PUSH2 0x2328 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1740 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1749 DUP5 PUSH2 0x14EE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1765 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1771 DUP7 DUP3 DUP8 ADD PUSH2 0x15D2 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1796 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x179F DUP7 PUSH2 0x14EE JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x17BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x17C8 DUP10 DUP4 DUP11 ADD PUSH2 0x15D2 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x17E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x17F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1804 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x1816 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x183C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1854 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1868 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x187B PUSH2 0x1876 DUP3 PUSH2 0x2026 JUMP JUMPDEST PUSH2 0x1FF5 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP6 DUP3 ADD SWAP2 POP DUP6 DUP6 ADD DUP10 DUP8 DUP6 PUSH1 0x5 SHL DUP9 ADD ADD GT ISZERO PUSH2 0x189B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x193A JUMPI DUP2 CALLDATALOAD DUP7 DUP2 GT ISZERO PUSH2 0x18B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 ADD PUSH1 0x3F DUP2 ADD DUP13 SGT PUSH2 0x18C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 DUP2 ADD CALLDATALOAD PUSH2 0x18D6 PUSH2 0x1876 DUP3 PUSH2 0x2026 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP12 DUP3 ADD SWAP2 POP PUSH1 0x40 DUP5 ADD DUP16 PUSH1 0x40 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x18F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x1924 JUMPI DUP1 CALLDATALOAD PUSH2 0x1910 DUP2 PUSH2 0x2312 JUMP JUMPDEST DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP13 ADD SWAP2 DUP13 ADD PUSH2 0x18FD JUMP JUMPDEST POP DUP8 MSTORE POP POP POP SWAP3 DUP8 ADD SWAP3 SWAP1 DUP8 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x189E JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x195C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1973 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1984 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1992 PUSH2 0x1876 DUP3 PUSH2 0x2026 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH1 0xA0 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x19B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x1A35 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x19CD JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x19D5 PUSH2 0x1FAE JUMP JUMPDEST DUP4 MLOAD DUP2 MSTORE DUP9 DUP5 ADD MLOAD PUSH2 0x19E6 DUP2 PUSH2 0x2300 JUMP JUMPDEST DUP2 DUP11 ADD MSTORE PUSH1 0x40 DUP5 DUP2 ADD MLOAD PUSH2 0x19F9 DUP2 PUSH2 0x2312 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP5 DUP2 ADD MLOAD PUSH2 0x1A0C DUP2 PUSH2 0x2312 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP5 DUP2 ADD MLOAD PUSH2 0x1A1F DUP2 PUSH2 0x2300 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x19B7 JUMP JUMPDEST POP SWAP2 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A57 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1A6E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1A7F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1A8D PUSH2 0x1876 DUP3 PUSH2 0x2026 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH2 0x300 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1AAD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x1A35 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x1AC9 JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1AD1 PUSH2 0x1F84 JUMP JUMPDEST PUSH2 0x1ADA DUP5 PUSH2 0x1720 JUMP JUMPDEST DUP2 MSTORE PUSH2 0x1AE7 DUP10 DUP6 ADD PUSH2 0x1720 JUMP JUMPDEST DUP10 DUP3 ADD MSTORE PUSH1 0x40 PUSH2 0x1AF8 DUP2 DUP7 ADD PUSH2 0x170A JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 PUSH2 0x1B09 DUP6 DUP3 ADD PUSH2 0x170A JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 PUSH2 0x1B1A DUP6 DUP3 ADD PUSH2 0x170A JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 PUSH2 0x1B2B DUP6 DUP3 ADD PUSH2 0x170A JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 PUSH2 0x1B3C DUP6 DUP3 ADD PUSH2 0x16F4 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 PUSH2 0x1B4E DUP14 DUP7 DUP4 ADD PUSH2 0x157A JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH2 0x2E0 DUP5 ADD MLOAD PUSH2 0x100 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1AB3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1B83 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B9A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1BAB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1BB9 PUSH2 0x1876 DUP3 PUSH2 0x2026 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP5 DUP3 ADD SWAP2 POP DUP5 DUP5 ADD DUP9 DUP7 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x1BD9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x1BFC JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP6 ADD SWAP2 DUP6 ADD PUSH2 0x1BDE JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C1B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2BC DUP4 DUP4 PUSH2 0x161E JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x320 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C39 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1C43 DUP5 DUP5 PUSH2 0x161E JUMP JUMPDEST SWAP5 PUSH2 0x300 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C65 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2BC DUP4 DUP4 PUSH2 0x1637 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x320 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C83 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1C43 DUP5 DUP5 PUSH2 0x1637 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1CA2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP1 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1CC8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x1CD9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x1CE7 PUSH2 0x1876 DUP3 PUSH2 0x2026 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP5 DUP3 ADD SWAP2 POP DUP5 DUP5 ADD DUP11 DUP7 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x1D07 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x1D2A JUMPI DUP1 CALLDATALOAD DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP6 ADD SWAP2 DUP6 ADD PUSH2 0x1D0C JUMP JUMPDEST POP DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1D4D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1D58 DUP2 PUSH2 0x2328 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1D96 JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1D7A JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1D96 JUMPI DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1DB5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x1E0A PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x1DA1 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x485 DUP2 DUP6 PUSH2 0x1DA1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 ADD DUP2 DUP5 MSTORE DUP1 DUP6 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP7 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP8 ADD ADD SWAP3 POP DUP4 DUP8 ADD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1E8F JUMPI PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x1E7D DUP6 DUP4 MLOAD PUSH2 0x1D66 JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1E43 JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x2BC PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1D66 JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1EC2 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1D66 JUMP JUMPDEST PUSH1 0x20 DUP4 DUP3 SUB DUP2 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1EEE JUMPI DUP7 DUP2 ADD DUP4 ADD MLOAD DUP5 DUP3 ADD DUP5 ADD MSTORE DUP3 ADD PUSH2 0x1ED3 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x1EFF JUMPI PUSH1 0x0 DUP4 DUP4 DUP7 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP5 PUSH1 0x40 DUP5 ADD DUP4 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x1F54 JUMPI DUP3 CALLDATALOAD PUSH2 0x1F3C DUP2 PUSH2 0x2300 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 MSTORE SWAP2 DUP4 ADD SWAP2 SWAP1 DUP4 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1F29 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1F72 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1DA1 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x7B6 DUP2 DUP6 PUSH2 0x1DA1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1FA8 JUMPI PUSH2 0x1FA8 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1FA8 JUMPI PUSH2 0x1FA8 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1FA8 JUMPI PUSH2 0x1FA8 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x201E JUMPI PUSH2 0x201E PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2040 JUMPI PUSH2 0x2040 PUSH2 0x22CC JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x205D JUMPI PUSH2 0x205D PUSH2 0x22A0 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x2085 JUMPI PUSH2 0x2085 PUSH2 0x22A0 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 PUSH1 0xFF SUB DUP3 GT ISZERO PUSH2 0x20AB JUMPI PUSH2 0x20AB PUSH2 0x22A0 JUMP JUMPDEST ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x20D0 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 JUMPDEST DUP1 DUP6 GT ISZERO PUSH2 0x2110 JUMPI DUP2 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x20F6 JUMPI PUSH2 0x20F6 PUSH2 0x22A0 JUMP JUMPDEST DUP1 DUP6 AND ISZERO PUSH2 0x2103 JUMPI SWAP2 DUP2 MUL SWAP2 JUMPDEST SWAP4 DUP5 SHR SWAP4 SWAP1 DUP1 MUL SWAP1 PUSH2 0x20DA JUMP JUMPDEST POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BC PUSH1 0xFF DUP5 AND DUP4 PUSH1 0x0 DUP3 PUSH2 0x2131 JUMPI POP PUSH1 0x1 PUSH2 0x2BF JUMP JUMPDEST DUP2 PUSH2 0x213E JUMPI POP PUSH1 0x0 PUSH2 0x2BF JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x2154 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x215E JUMPI PUSH2 0x217A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x2BF JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x216F JUMPI PUSH2 0x216F PUSH2 0x22A0 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x2BF JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x219D JUMPI POP DUP2 DUP2 EXP PUSH2 0x2BF JUMP JUMPDEST PUSH2 0x21A7 DUP4 DUP4 PUSH2 0x20D5 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x21BB JUMPI PUSH2 0x21BB PUSH2 0x22A0 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x21DD JUMPI PUSH2 0x21DD PUSH2 0x22A0 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x21F4 JUMPI PUSH2 0x21F4 PUSH2 0x22A0 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x2216 JUMPI PUSH2 0x2216 PUSH2 0x22A0 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 DUP3 LT ISZERO PUSH2 0x2238 JUMPI PUSH2 0x2238 PUSH2 0x22A0 JUMP JUMPDEST SWAP1 SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2255 JUMPI PUSH2 0x2255 PUSH2 0x22A0 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP2 EQ ISZERO PUSH2 0x2276 JUMPI PUSH2 0x2276 PUSH2 0x22A0 JUMP JUMPDEST PUSH1 0x1 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 EQ ISZERO PUSH2 0x2297 JUMPI PUSH2 0x2297 PUSH2 0x22A0 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x22FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x22FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x22FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x22FD JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0x125D488FC439371055273B 0xA7 PUSH19 0xB81BA4F430A98AEAD6F7E08658855EE24B9D64 PUSH20 0x6F6C634300080600330000000000000000000000 ",
              "sourceMap": "94:1848:66:-:0;;;149:200;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;299:7;308:11;321:24;-1:-1:-1;;;;;1795:30:31;;1787:67;;;;-1:-1:-1;;;1787:67:31;;1200:2:84;1787:67:31;;;1182:21:84;1239:2;1219:18;;;1212:30;1278:26;1258:18;;;1251:54;1322:18;;1787:67:31;;;;;;;;;-1:-1:-1;;;;;1872:47:31;;1864:81;;;;-1:-1:-1;;;1864:81:31;;1553:2:84;1864:81:31;;;1535:21:84;1592:2;1572:18;;;1565:30;1631:23;1611:18;;;1604:51;1672:18;;1864:81:31;1525:171:84;1864:81:31;-1:-1:-1;;;;;1963:34:31;;1955:67;;;;-1:-1:-1;;;1955:67:31;;851:2:84;1955:67:31;;;833:21:84;890:2;870:18;;;863:30;929:22;909:18;;;902:50;969:18;;1955:67:31;823:170:84;1955:67:31;-1:-1:-1;;;;;;2033:16:31;;;;;;;;2059:24;;;;;;;2093:50;;;;;;2159:56;;-1:-1:-1;;;;;2093:50:31;;;;2059:24;;;;2033:16;;;2159:56;;;;;1642:580;;;149:200:66;;;94:1848;;14:630:84;174:6;182;190;243:2;231:9;222:7;218:23;214:32;211:2;;;259:1;256;249:12;211:2;291:9;285:16;310:44;348:5;310:44;:::i;:::-;423:2;408:18;;402:25;373:5;;-1:-1:-1;436:46:84;402:25;436:46;:::i;:::-;553:2;538:18;;532:25;501:7;;-1:-1:-1;566:46:84;532:25;566:46;:::i;:::-;631:7;621:17;;;201:443;;;;;:::o;1701:144::-;-1:-1:-1;;;;;1789:31:84;;1779:42;;1769:2;;1835:1;1832;1825:12;1769:2;1759:86;:::o;:::-;94:1848:66;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@TIERS_LENGTH_6564": {
                  "entryPoint": null,
                  "id": 6564,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_calculateNumberOfUserPicks_6949": {
                  "entryPoint": 3534,
                  "id": 6949,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizeTierFraction_7482": {
                  "entryPoint": 1908,
                  "id": 7482,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizeTierFractions_7531": {
                  "entryPoint": 5185,
                  "id": 7531,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizesAwardable_6926": {
                  "entryPoint": 3586,
                  "id": 6926,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@_calculateTierIndex_7388": {
                  "entryPoint": 2244,
                  "id": 7388,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_calculate_7314": {
                  "entryPoint": 4284,
                  "id": 7314,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@_createBitMasks_7451": {
                  "entryPoint": 1983,
                  "id": 7451,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_getNormalizedBalancesAt_7112": {
                  "entryPoint": 2403,
                  "id": 7112,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_numberOfPrizesForIndex_7567": {
                  "entryPoint": 1830,
                  "id": 7567,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@calculateNumberOfUserPicks_15987": {
                  "entryPoint": 1167,
                  "id": 15987,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@calculatePrizeTierFraction_15956": {
                  "entryPoint": 709,
                  "id": 15956,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@calculateTierIndex_15925": {
                  "entryPoint": 760,
                  "id": 15925,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@calculate_6728": {
                  "entryPoint": 1179,
                  "id": 6728,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@createBitMasks_15939": {
                  "entryPoint": 735,
                  "id": 15939,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@drawBuffer_6552": {
                  "entryPoint": null,
                  "id": 6552,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getDrawBuffer_6739": {
                  "entryPoint": null,
                  "id": 6739,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getNormalizedBalancesForDrawIds_6792": {
                  "entryPoint": 786,
                  "id": 6792,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getPrizeDistributionBuffer_6750": {
                  "entryPoint": null,
                  "id": 6750,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@numberOfPrizesForIndex_15971": {
                  "entryPoint": 688,
                  "id": 15971,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@prizeDistributionBuffer_6560": {
                  "entryPoint": null,
                  "id": 6560,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@ticket_6556": {
                  "entryPoint": null,
                  "id": 6556,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "abi_decode_address": {
                  "entryPoint": 5358,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_array_uint32": {
                  "entryPoint": 5399,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_array_uint32_dyn_calldata": {
                  "entryPoint": 5586,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_array_uint32_fromMemory": {
                  "entryPoint": 5498,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_struct_PrizeDistribution": {
                  "entryPoint": 5687,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_struct_PrizeDistribution_calldata": {
                  "entryPoint": 5662,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr": {
                  "entryPoint": 5931,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr": {
                  "entryPoint": 6014,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr": {
                  "entryPoint": 6185,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 6473,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 6724,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 7024,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_calldata_ptr": {
                  "entryPoint": 7176,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_calldata_ptrt_uint256": {
                  "entryPoint": 7205,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptr": {
                  "entryPoint": 7250,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptrt_uint256": {
                  "entryPoint": 7279,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint256t_uint256t_array$_t_uint256_$dyn_memory_ptr": {
                  "entryPoint": 7309,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_uint8t_uint256": {
                  "entryPoint": 7482,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_uint104": {
                  "entryPoint": 5865,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint104_fromMemory": {
                  "entryPoint": 5876,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint32": {
                  "entryPoint": 5887,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint32_fromMemory": {
                  "entryPoint": 5898,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint8": {
                  "entryPoint": 5909,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint8_fromMemory": {
                  "entryPoint": 5920,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_array_uint256_dyn": {
                  "entryPoint": 7526,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_array_uint64_dyn": {
                  "entryPoint": 7585,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7643,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__to_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7708,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7836,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7855,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint32_$dyn_calldata_ptr__to_t_array$_t_uint32_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7956,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 8031,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$11467__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "allocate_memory": {
                  "entryPoint": 8181,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "allocate_memory_5223": {
                  "entryPoint": 8068,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "allocate_memory_5225": {
                  "entryPoint": 8110,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "allocate_memory_8108": {
                  "entryPoint": 8145,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "array_allocation_size_array_array_uint64_dyn_dyn": {
                  "entryPoint": 8230,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 8266,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint64": {
                  "entryPoint": 8290,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint8": {
                  "entryPoint": 8334,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 8371,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_exp_helper": {
                  "entryPoint": 8405,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "checked_exp_t_uint256_t_uint8": {
                  "entryPoint": 8472,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_exp_unsigned": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint256": {
                  "entryPoint": 8643,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 8674,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 8697,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint8": {
                  "entryPoint": 8734,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 8769,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint32": {
                  "entryPoint": 8796,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint8": {
                  "entryPoint": 8832,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 8864,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 8886,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 8908,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_uint104": {
                  "entryPoint": 8930,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint32": {
                  "entryPoint": 8960,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint64": {
                  "entryPoint": 8978,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint8": {
                  "entryPoint": 9000,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:28603:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "274:535:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "323:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "332:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "335:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "325:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "325:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "325:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "302:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "310:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "298:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "298:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "317:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "294:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "294:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "287:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "287:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "284:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "348:33:84",
                              "value": {
                                "arguments": [],
                                "functionName": {
                                  "name": "allocate_memory_8108",
                                  "nodeType": "YulIdentifier",
                                  "src": "359:20:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "359:22:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "352:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "390:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "403:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "394:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "415:17:84",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "426:6:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "419:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "470:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "479:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "482:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "472:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "472:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "472:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "451:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "459:3:84",
                                        "type": "",
                                        "value": "512"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "447:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "447:16:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "465:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "444:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "444:25:84"
                              },
                              "nodeType": "YulIf",
                              "src": "441:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "495:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "504:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "499:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "561:219:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "575:30:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "601:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "588:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "588:17:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "579:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "642:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "618:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "618:30:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "618:30:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "668:3:84"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "673:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "661:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "661:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "661:18:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "692:14:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "702:4:84",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "696:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "719:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "730:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "735:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "726:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "726:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "719:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "751:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "762:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "767:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "758:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "758:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "751:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "525:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "528:4:84",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "522:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "522:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "534:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "536:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "545:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "536:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "518:3:84",
                                "statements": []
                              },
                              "src": "514:266:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "789:14:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "798:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "789:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "248:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "256:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "264:5:84",
                            "type": ""
                          }
                        ],
                        "src": "215:594:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "884:528:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "933:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "942:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "945:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "935:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "935:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "935:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "912:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "920:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "908:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "908:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "904:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "904:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "897:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "897:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "894:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "958:33:84",
                              "value": {
                                "arguments": [],
                                "functionName": {
                                  "name": "allocate_memory_8108",
                                  "nodeType": "YulIdentifier",
                                  "src": "969:20:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "969:22:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "962:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1000:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "1013:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1004:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1025:17:84",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "1036:6:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "1029:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1080:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1089:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1092:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1082:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1082:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1082:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1061:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1069:3:84",
                                        "type": "",
                                        "value": "512"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1057:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1057:16:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "1075:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1054:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1054:25:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1051:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1105:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1114:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1109:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1171:212:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "1185:23:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "1204:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "1198:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1198:10:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "1189:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "1245:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "1221:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1221:30:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1221:30:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "1271:3:84"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "1276:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1264:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1264:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1264:18:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "1295:14:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "1305:4:84",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "1299:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1322:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "1333:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1338:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1329:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1329:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "1322:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1354:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "1365:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1370:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1361:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1361:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "1354:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1135:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1138:4:84",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1132:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1132:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1144:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1146:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1155:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1158:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1151:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1151:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1146:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1128:3:84",
                                "statements": []
                              },
                              "src": "1124:259:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1392:14:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "1401:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "1392:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "858:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "866:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "874:5:84",
                            "type": ""
                          }
                        ],
                        "src": "814:598:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1500:283:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1549:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1558:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1561:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1551:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1551:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1551:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "1528:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1536:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1524:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1524:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "1543:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1520:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1520:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1513:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1513:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1510:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1574:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1597:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1584:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1584:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1574:6:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1647:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1656:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1659:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1649:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1649:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1649:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1619:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1627:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1616:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1616:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1613:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1672:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1688:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1696:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1684:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1684:17:84"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "1672:8:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1761:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1770:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1773:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1763:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1763:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1763:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "1724:6:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1736:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1739:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1732:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1732:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1720:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1720:27:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1749:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1716:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1716:38:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "1756:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1713:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1713:47:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1710:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32_dyn_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1463:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1471:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "1479:8:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1489:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1417:366:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1868:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1908:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1917:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1920:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1910:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1910:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1910:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "1889:3:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1894:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1885:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1885:16:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1903:3:84",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1881:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1881:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1878:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1933:15:84",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "1942:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1933:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_struct_PrizeDistribution_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1842:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1850:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1858:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1788:166:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2033:738:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2079:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2088:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2091:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2081:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2081:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2081:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "2054:3:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2059:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2050:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2050:19:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2071:6:84",
                                    "type": "",
                                    "value": "0x0300"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2046:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2046:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2043:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2104:31:84",
                              "value": {
                                "arguments": [],
                                "functionName": {
                                  "name": "allocate_memory_5223",
                                  "nodeType": "YulIdentifier",
                                  "src": "2113:20:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2113:22:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "2104:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2151:5:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2175:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint8",
                                      "nodeType": "YulIdentifier",
                                      "src": "2158:16:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2158:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2144:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2144:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2144:42:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2206:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2213:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2202:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2202:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2239:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2250:2:84",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2235:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2235:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint8",
                                      "nodeType": "YulIdentifier",
                                      "src": "2218:16:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2218:36:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2195:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2195:60:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2195:60:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2275:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2282:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2271:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2271:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2309:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2320:2:84",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2305:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2305:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2287:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2287:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2264:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2264:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2264:61:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2345:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2352:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2341:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2341:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2379:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2390:2:84",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2375:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2375:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2357:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2357:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2334:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2334:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2334:61:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2415:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2422:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2411:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2411:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2450:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2461:3:84",
                                            "type": "",
                                            "value": "128"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2446:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2446:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2428:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2428:38:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2404:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2404:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2404:63:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2487:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2494:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2483:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2483:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2522:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2533:3:84",
                                            "type": "",
                                            "value": "160"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2518:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2518:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2500:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2500:38:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2476:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2476:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2476:63:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2559:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2566:3:84",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2555:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2555:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2595:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2606:3:84",
                                            "type": "",
                                            "value": "192"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2591:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2591:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint104",
                                      "nodeType": "YulIdentifier",
                                      "src": "2572:18:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2572:39:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2548:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2548:64:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2548:64:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2632:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2639:3:84",
                                        "type": "",
                                        "value": "224"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2628:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2628:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2673:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2684:3:84",
                                            "type": "",
                                            "value": "224"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2669:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2669:19:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "2690:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_array_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2645:23:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2645:49:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2621:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2621:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2621:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2715:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2722:6:84",
                                        "type": "",
                                        "value": "0x0100"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2711:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2711:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2748:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2759:3:84",
                                            "type": "",
                                            "value": "736"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2744:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2744:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "2731:12:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2731:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2704:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2704:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2704:61:84"
                            }
                          ]
                        },
                        "name": "abi_decode_struct_PrizeDistribution",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2004:9:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "2015:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2023:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1959:812:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2825:85:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2835:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2857:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2844:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2844:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "2835:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2898:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "2873:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2873:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2873:31:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "2804:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2815:5:84",
                            "type": ""
                          }
                        ],
                        "src": "2776:134:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2975:78:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2985:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3000:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2994:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2994:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "2985:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3041:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "3016:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3016:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3016:31:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint104_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "2954:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2965:5:84",
                            "type": ""
                          }
                        ],
                        "src": "2915:138:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3106:84:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3116:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3138:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3125:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3125:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "3116:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3178:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3154:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3154:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3154:30:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "3085:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3096:5:84",
                            "type": ""
                          }
                        ],
                        "src": "3058:132:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3254:77:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3264:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3279:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3273:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3273:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "3264:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3319:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3295:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3295:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3295:30:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "3233:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3244:5:84",
                            "type": ""
                          }
                        ],
                        "src": "3195:136:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3383:83:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3393:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3415:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3402:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3402:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "3393:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3454:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "3431:22:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3431:29:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3431:29:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "3362:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3373:5:84",
                            "type": ""
                          }
                        ],
                        "src": "3336:130:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3529:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3539:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3554:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3548:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3548:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "3539:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3593:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "3570:22:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3570:29:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3570:29:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "3508:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3519:5:84",
                            "type": ""
                          }
                        ],
                        "src": "3471:134:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3731:388:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3777:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3786:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3789:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3779:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3779:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3779:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3752:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3761:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3748:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3748:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3773:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3744:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3744:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3741:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3802:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3831:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3812:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3812:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3802:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3850:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3881:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3892:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3877:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3877:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3864:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3864:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3854:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3939:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3948:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3951:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3941:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3941:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3941:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3911:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3919:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3908:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3908:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3905:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3964:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4031:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "4042:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4027:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4027:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "4051:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint32_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "3990:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3990:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3968:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3978:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4068:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "4078:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4068:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4095:18:84",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "4105:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "4095:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3681:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3692:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3704:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3712:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3720:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3610:509:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4281:821:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4327:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4336:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4339:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4329:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4329:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4329:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4302:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4311:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4298:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4298:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4323:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4294:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4294:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4291:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4352:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4381:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4362:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4362:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4352:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4400:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4431:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4442:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4427:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4427:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4414:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4414:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "4404:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4455:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4465:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4459:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4510:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4519:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4522:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4512:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4512:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4512:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "4498:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4506:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4495:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4495:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4492:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4535:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4602:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "4613:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4598:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4598:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "4622:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint32_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "4561:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4561:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4539:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4549:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4639:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "4649:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4639:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4666:18:84",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "4676:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "4666:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4693:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4726:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4737:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4722:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4722:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4709:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4709:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4697:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4770:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4779:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4782:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4772:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4772:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4772:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4756:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4766:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4753:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4753:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4750:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4795:34:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4809:9:84"
                                  },
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4820:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4805:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4805:24:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "4799:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4877:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4886:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4889:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4879:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4879:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4879:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "4856:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4860:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4852:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4852:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4867:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4848:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4848:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4841:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4841:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4838:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4902:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4929:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4916:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4916:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4906:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4959:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4968:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4971:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4961:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4961:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4961:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4947:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4955:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4944:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4944:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4941:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5025:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5034:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5037:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5027:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5027:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5027:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "4998:2:84"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "5002:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4994:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4994:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5011:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4990:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4990:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "5016:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4987:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4987:37:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4984:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5050:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5064:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5068:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5060:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5060:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "5050:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5080:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "5090:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "5080:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4215:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4226:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4238:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4246:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "4254:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "4262:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "4270:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4124:978:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5226:1707:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5236:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5246:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5240:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5293:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5302:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5305:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5295:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5295:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5295:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5268:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5277:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5264:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5264:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5289:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5260:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5260:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5257:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5318:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5345:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5332:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5332:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "5322:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5364:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5374:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "5368:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5419:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5428:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5431:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5421:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5421:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5421:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5407:6:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5415:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5404:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5404:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5401:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5444:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5458:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5469:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5454:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5454:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "5448:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5524:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5533:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5536:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5526:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5526:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5526:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "5503:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5507:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5499:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5499:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5514:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "5495:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5495:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "5488:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5488:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5485:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5549:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5572:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5559:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5559:16:84"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "5553:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5584:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "5660:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "5611:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5611:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5595:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5595:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "5588:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5673:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "5686:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5677:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "5705:3:84"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "5710:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5698:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5698:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5698:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5722:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "5733:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5738:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5729:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5729:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "5722:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5750:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5765:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5769:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5761:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5761:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "5754:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5826:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5835:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5838:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5828:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5828:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5828:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "5795:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5803:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "5806:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "5799:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5799:10:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5791:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5791:19:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5812:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5787:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5787:28:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "5817:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5784:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5784:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5781:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5851:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5860:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "5855:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5915:988:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "5929:36:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "5961:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "5948:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5948:17:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "innerOffset",
                                        "nodeType": "YulTypedName",
                                        "src": "5933:11:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "6001:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6010:1:84",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6013:1:84",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "6003:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6003:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "6003:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "innerOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "5984:11:84"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "5997:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "5981:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5981:19:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "5978:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6030:30:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "6044:2:84"
                                        },
                                        {
                                          "name": "innerOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "6048:11:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6040:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6040:20:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "6034:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "6110:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6119:1:84",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6122:1:84",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "6112:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6112:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "6112:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "6091:2:84"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "6095:2:84",
                                                  "type": "",
                                                  "value": "63"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "6087:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "6087:11:84"
                                            },
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "6100:7:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "slt",
                                            "nodeType": "YulIdentifier",
                                            "src": "6083:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6083:25:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "iszero",
                                        "nodeType": "YulIdentifier",
                                        "src": "6076:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6076:33:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "6073:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6139:35:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "6166:2:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "6170:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6162:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6162:11:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6149:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6149:25:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "6143:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6187:82:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "6265:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                            "nodeType": "YulIdentifier",
                                            "src": "6216:48:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6216:52:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "allocate_memory",
                                        "nodeType": "YulIdentifier",
                                        "src": "6200:15:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6200:69:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "dst_2",
                                        "nodeType": "YulTypedName",
                                        "src": "6191:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6282:18:84",
                                    "value": {
                                      "name": "dst_2",
                                      "nodeType": "YulIdentifier",
                                      "src": "6295:5:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "dst_3",
                                        "nodeType": "YulTypedName",
                                        "src": "6286:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "6320:5:84"
                                        },
                                        {
                                          "name": "_6",
                                          "nodeType": "YulIdentifier",
                                          "src": "6327:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6313:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6313:17:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6313:17:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6343:23:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "6356:5:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6363:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6352:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6352:14:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "6343:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6379:24:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "_5",
                                          "nodeType": "YulIdentifier",
                                          "src": "6396:2:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6400:2:84",
                                          "type": "",
                                          "value": "64"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6392:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6392:11:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "src_1",
                                        "nodeType": "YulTypedName",
                                        "src": "6383:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "6461:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6470:1:84",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6473:1:84",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "6463:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6463:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "6463:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "6430:2:84"
                                                },
                                                {
                                                  "arguments": [
                                                    {
                                                      "kind": "number",
                                                      "nodeType": "YulLiteral",
                                                      "src": "6438:1:84",
                                                      "type": "",
                                                      "value": "5"
                                                    },
                                                    {
                                                      "name": "_6",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "6441:2:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "shl",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "6434:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "6434:10:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "6426:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "6426:19:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "6447:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6422:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6422:28:84"
                                        },
                                        {
                                          "name": "dataEnd",
                                          "nodeType": "YulIdentifier",
                                          "src": "6452:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "6419:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6419:41:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "6416:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6490:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "6501:1:84",
                                      "type": "",
                                      "value": "0"
                                    },
                                    "variables": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulTypedName",
                                        "src": "6494:3:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "6570:228:84",
                                      "statements": [
                                        {
                                          "nodeType": "YulVariableDeclaration",
                                          "src": "6588:32:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "src_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "6614:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "calldataload",
                                              "nodeType": "YulIdentifier",
                                              "src": "6601:12:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6601:19:84"
                                          },
                                          "variables": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulTypedName",
                                              "src": "6592:5:84",
                                              "type": ""
                                            }
                                          ]
                                        },
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "6661:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "validator_revert_uint64",
                                              "nodeType": "YulIdentifier",
                                              "src": "6637:23:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6637:30:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "6637:30:84"
                                        },
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "dst_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "6691:5:84"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "6698:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mstore",
                                              "nodeType": "YulIdentifier",
                                              "src": "6684:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6684:20:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "6684:20:84"
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "6721:23:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "dst_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "6734:5:84"
                                              },
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "6741:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "6730:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6730:14:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "dst_2",
                                              "nodeType": "YulIdentifier",
                                              "src": "6721:5:84"
                                            }
                                          ]
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "6761:23:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "src_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "6774:5:84"
                                              },
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "6781:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "6770:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6770:14:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "src_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "6761:5:84"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6526:3:84"
                                        },
                                        {
                                          "name": "_6",
                                          "nodeType": "YulIdentifier",
                                          "src": "6531:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "lt",
                                        "nodeType": "YulIdentifier",
                                        "src": "6523:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6523:11:84"
                                    },
                                    "nodeType": "YulForLoop",
                                    "post": {
                                      "nodeType": "YulBlock",
                                      "src": "6535:22:84",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "6537:18:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "i_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "6548:3:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6553:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "6544:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6544:11:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "i_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "6537:3:84"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "pre": {
                                      "nodeType": "YulBlock",
                                      "src": "6519:3:84",
                                      "statements": []
                                    },
                                    "src": "6515:283:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "6818:3:84"
                                        },
                                        {
                                          "name": "dst_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "6823:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6811:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6811:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6811:18:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6842:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "6853:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6858:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6849:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6849:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "6842:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6874:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "6885:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6890:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6881:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6881:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "6874:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "5881:1:84"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "5884:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5878:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5878:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "5888:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5890:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "5899:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5902:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5895:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5895:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "5890:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "5874:3:84",
                                "statements": []
                              },
                              "src": "5870:1033:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6912:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "6922:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6912:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5192:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5203:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5215:6:84",
                            "type": ""
                          }
                        ],
                        "src": "5107:1826:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7067:1606:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7077:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7087:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7081:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7134:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7143:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7146:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7136:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7136:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7136:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7109:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7118:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7105:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7105:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7130:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7101:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7101:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7098:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7159:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7179:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7173:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7173:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "7163:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7232:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7241:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7244:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7234:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7234:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7234:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "7204:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7212:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7201:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7201:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7198:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7257:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7271:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "7282:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7267:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7267:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "7261:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7337:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7346:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7349:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7339:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7339:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7339:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "7316:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "7320:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "7312:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7312:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7327:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "7308:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7308:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "7301:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7301:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7298:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7362:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "7378:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7372:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7372:9:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "7366:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7390:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "7466:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "7417:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7417:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "7401:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7401:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "7394:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7479:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "7492:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7483:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "7511:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "7516:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7504:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7504:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7504:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7528:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "7539:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7544:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7535:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7535:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "7528:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7556:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "7571:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7575:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7567:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7567:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "7560:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7587:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7597:4:84",
                                "type": "",
                                "value": "0xa0"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "7591:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7656:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7665:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7668:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7658:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7658:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7658:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "7624:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "7632:2:84"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "7636:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "7628:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7628:11:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "7620:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7620:20:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7642:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7616:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7616:29:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "7647:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7613:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7613:42:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7610:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7681:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7690:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "7685:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7700:12:84",
                              "value": {
                                "name": "i",
                                "nodeType": "YulIdentifier",
                                "src": "7711:1:84"
                              },
                              "variables": [
                                {
                                  "name": "i_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7704:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7772:871:84",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "7816:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "7825:1:84"
                                              },
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "7828:1:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "7818:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7818:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "7818:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "7797:7:84"
                                            },
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "7806:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "sub",
                                            "nodeType": "YulIdentifier",
                                            "src": "7793:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7793:17:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "7812:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "slt",
                                        "nodeType": "YulIdentifier",
                                        "src": "7789:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7789:26:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "7786:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "7845:35:84",
                                    "value": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "allocate_memory_5225",
                                        "nodeType": "YulIdentifier",
                                        "src": "7858:20:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7858:22:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "7849:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "7900:5:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "7913:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "7907:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7907:10:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7893:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7893:25:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7893:25:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "7931:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "7956:3:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "7961:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "7952:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7952:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "7946:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7946:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulTypedName",
                                        "src": "7935:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8002:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "7978:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7978:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7978:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8034:5:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "8041:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8030:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8030:14:84"
                                        },
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8046:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8023:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8023:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8023:31:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8067:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8077:2:84",
                                      "type": "",
                                      "value": "64"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "8071:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8092:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "8117:3:84"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "8122:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8113:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8113:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "8107:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8107:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_2",
                                        "nodeType": "YulTypedName",
                                        "src": "8096:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "8163:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint64",
                                        "nodeType": "YulIdentifier",
                                        "src": "8139:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8139:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8139:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8195:5:84"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "8202:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8191:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8191:14:84"
                                        },
                                        {
                                          "name": "value_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "8207:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8184:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8184:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8184:31:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8228:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8238:2:84",
                                      "type": "",
                                      "value": "96"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "8232:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8253:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "8278:3:84"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "8283:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8274:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8274:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "8268:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8268:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulTypedName",
                                        "src": "8257:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "8324:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint64",
                                        "nodeType": "YulIdentifier",
                                        "src": "8300:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8300:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8300:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8356:5:84"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "8363:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8352:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8352:14:84"
                                        },
                                        {
                                          "name": "value_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "8368:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8345:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8345:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8345:31:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8389:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8399:3:84",
                                      "type": "",
                                      "value": "128"
                                    },
                                    "variables": [
                                      {
                                        "name": "_7",
                                        "nodeType": "YulTypedName",
                                        "src": "8393:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8415:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "8440:3:84"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "8445:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8436:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8436:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "8430:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8430:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_4",
                                        "nodeType": "YulTypedName",
                                        "src": "8419:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "8486:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "8462:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8462:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8462:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8518:5:84"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "8525:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8514:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8514:14:84"
                                        },
                                        {
                                          "name": "value_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "8530:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8507:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8507:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8507:31:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "8558:3:84"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "8563:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8551:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8551:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8551:18:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8582:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "8593:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8598:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8589:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8589:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "8582:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8614:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "8625:3:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "8630:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8621:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8621:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "8614:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7732:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "7737:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7729:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7729:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "7741:22:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7743:18:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7754:3:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7759:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7750:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7750:11:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7743:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "7725:3:84",
                                "statements": []
                              },
                              "src": "7721:922:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8652:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "8662:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "8652:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7033:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "7044:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7056:6:84",
                            "type": ""
                          }
                        ],
                        "src": "6938:1735:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8820:1796:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8830:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8840:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8834:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8887:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8896:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8899:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "8889:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8889:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8889:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "8862:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8871:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "8858:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8858:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8883:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8854:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8854:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8851:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8912:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8932:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "8926:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8926:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "8916:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8985:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8994:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8997:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "8987:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8987:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8987:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "8957:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8965:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8954:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8954:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8951:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9010:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9024:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "9035:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9020:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9020:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "9014:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9090:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9099:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9102:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9092:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9092:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9092:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "9069:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9073:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "9065:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9065:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "9080:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9061:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9061:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "9054:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9054:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9051:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9115:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "9131:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9125:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9125:9:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "9119:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9143:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "9219:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "9170:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9170:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "9154:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9154:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "9147:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9232:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "9245:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9236:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "9264:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9269:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9257:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9257:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9257:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9281:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "9292:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9297:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9288:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9288:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "9281:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9309:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "9324:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9328:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9320:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9320:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "9313:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9340:16:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9350:6:84",
                                "type": "",
                                "value": "0x0300"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "9344:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9411:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9420:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9423:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9413:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9413:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9413:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "9379:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "9387:2:84"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "9391:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "9383:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "9383:11:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "9375:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9375:20:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9397:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9371:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9371:29:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "9402:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9368:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9368:42:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9365:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9436:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9445:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "9440:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9455:12:84",
                              "value": {
                                "name": "i",
                                "nodeType": "YulIdentifier",
                                "src": "9466:1:84"
                              },
                              "variables": [
                                {
                                  "name": "i_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9459:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9527:1059:84",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "9571:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "9580:1:84"
                                              },
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "9583:1:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "9573:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "9573:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "9573:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "9552:7:84"
                                            },
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "9561:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "sub",
                                            "nodeType": "YulIdentifier",
                                            "src": "9548:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9548:17:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "9567:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "slt",
                                        "nodeType": "YulIdentifier",
                                        "src": "9544:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9544:26:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "9541:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "9600:35:84",
                                    "value": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "allocate_memory_5223",
                                        "nodeType": "YulIdentifier",
                                        "src": "9613:20:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9613:22:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "9604:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "9655:5:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "9690:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint8_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "9662:27:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9662:32:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9648:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9648:47:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9648:47:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "9719:5:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "9726:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "9715:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9715:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9763:3:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9768:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "9759:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "9759:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint8_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "9731:27:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9731:41:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9708:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9708:65:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9708:65:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "9786:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "9796:2:84",
                                      "type": "",
                                      "value": "64"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "9790:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "9822:5:84"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "9829:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "9818:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9818:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9867:3:84"
                                                },
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9872:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "9863:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "9863:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "9834:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9834:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9811:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9811:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9811:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "9890:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "9900:2:84",
                                      "type": "",
                                      "value": "96"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "9894:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "9926:5:84"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "9933:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "9922:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9922:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9971:3:84"
                                                },
                                                {
                                                  "name": "_6",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9976:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "9967:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "9967:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "9938:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9938:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9915:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9915:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9915:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "9994:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "10004:3:84",
                                      "type": "",
                                      "value": "128"
                                    },
                                    "variables": [
                                      {
                                        "name": "_7",
                                        "nodeType": "YulTypedName",
                                        "src": "9998:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "10031:5:84"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "10038:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "10027:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10027:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10076:3:84"
                                                },
                                                {
                                                  "name": "_7",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10081:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "10072:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10072:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "10043:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10043:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10020:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10020:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10020:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "10099:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "10109:3:84",
                                      "type": "",
                                      "value": "160"
                                    },
                                    "variables": [
                                      {
                                        "name": "_8",
                                        "nodeType": "YulTypedName",
                                        "src": "10103:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "10136:5:84"
                                            },
                                            {
                                              "name": "_8",
                                              "nodeType": "YulIdentifier",
                                              "src": "10143:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "10132:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10132:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10181:3:84"
                                                },
                                                {
                                                  "name": "_8",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10186:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "10177:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10177:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "10148:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10148:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10125:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10125:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10125:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "10204:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "10214:3:84",
                                      "type": "",
                                      "value": "192"
                                    },
                                    "variables": [
                                      {
                                        "name": "_9",
                                        "nodeType": "YulTypedName",
                                        "src": "10208:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "10241:5:84"
                                            },
                                            {
                                              "name": "_9",
                                              "nodeType": "YulIdentifier",
                                              "src": "10248:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "10237:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10237:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10287:3:84"
                                                },
                                                {
                                                  "name": "_9",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10292:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "10283:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10283:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint104_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "10253:29:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10253:43:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10230:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10230:67:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10230:67:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "10310:14:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "10321:3:84",
                                      "type": "",
                                      "value": "224"
                                    },
                                    "variables": [
                                      {
                                        "name": "_10",
                                        "nodeType": "YulTypedName",
                                        "src": "10314:3:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "10348:5:84"
                                            },
                                            {
                                              "name": "_10",
                                              "nodeType": "YulIdentifier",
                                              "src": "10355:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "10344:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10344:15:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10400:3:84"
                                                },
                                                {
                                                  "name": "_10",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10405:3:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "10396:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10396:13:84"
                                            },
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "10411:7:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_array_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "10361:34:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10361:58:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10337:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10337:83:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10337:83:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "10444:5:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "10451:6:84",
                                              "type": "",
                                              "value": "0x0100"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "10440:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10440:18:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10470:3:84"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "10475:3:84",
                                                  "type": "",
                                                  "value": "736"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "10466:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10466:13:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "10460:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10460:20:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10433:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10433:48:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10433:48:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "10501:3:84"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "10506:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10494:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10494:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10494:18:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10525:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "10536:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10541:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10532:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10532:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "10525:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10557:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "10568:3:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "10573:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10564:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10564:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "10557:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9487:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9492:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9484:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9484:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "9496:22:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9498:18:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "9509:3:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9514:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9505:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9505:11:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9498:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "9480:3:84",
                                "statements": []
                              },
                              "src": "9476:1110:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10595:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "10605:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "10595:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8786:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "8797:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8809:6:84",
                            "type": ""
                          }
                        ],
                        "src": "8678:1938:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10727:795:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10737:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10747:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "10741:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10794:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10803:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10806:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "10796:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10796:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10796:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "10769:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10778:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "10765:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10765:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10790:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10761:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10761:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "10758:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10819:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10839:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10833:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10833:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "10823:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10892:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10901:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10904:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "10894:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10894:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10894:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "10864:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10872:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10861:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10861:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "10858:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10917:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10931:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "10942:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10927:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10927:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "10921:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10997:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11006:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11009:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "10999:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10999:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10999:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "10976:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "10980:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "10972:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10972:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "10987:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "10968:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10968:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "10961:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10961:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "10958:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11022:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "11038:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11032:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11032:9:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "11026:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11050:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "11126:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "11077:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11077:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "11061:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11061:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "11054:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11139:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "11152:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11143:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "11171:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "11176:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11164:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11164:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11164:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11188:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "11199:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11204:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11195:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11195:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "11188:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11216:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "11231:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11235:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11227:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11227:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "11220:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11292:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11301:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11304:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "11294:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11294:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11294:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "11261:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "11269:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "11272:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "11265:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "11265:10:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "11257:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11257:19:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11278:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11253:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11253:28:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "11283:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11250:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11250:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11247:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11317:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11326:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "11321:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11381:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "11402:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "11413:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "11407:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11407:10:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11395:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11395:23:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11395:23:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11431:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "11442:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "11447:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11438:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11438:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "11431:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11463:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "11474:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "11479:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11470:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11470:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "11463:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11347:1:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "11350:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11344:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11344:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "11354:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11356:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "11365:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11368:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11361:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11361:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "11356:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "11340:3:84",
                                "statements": []
                              },
                              "src": "11336:156:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11501:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "11511:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "11501:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10693:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "10704:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10716:6:84",
                            "type": ""
                          }
                        ],
                        "src": "10621:901:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11635:152:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11682:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11691:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11694:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "11684:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11684:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11684:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "11656:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11665:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "11652:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11652:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11677:3:84",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11648:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11648:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11645:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11707:74:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11762:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "11773:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeDistribution_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "11717:44:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11717:64:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "11707:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11601:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "11612:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11624:6:84",
                            "type": ""
                          }
                        ],
                        "src": "11527:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11917:204:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11964:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11973:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11976:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "11966:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11966:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11966:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "11938:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11947:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "11934:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11934:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11959:3:84",
                                    "type": "",
                                    "value": "800"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11930:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11930:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11927:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11989:74:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12044:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "12055:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeDistribution_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "11999:44:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11999:64:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "11989:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12072:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12099:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12110:3:84",
                                        "type": "",
                                        "value": "768"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12095:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12095:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "12082:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12082:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "12072:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_calldata_ptrt_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11875:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "11886:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11898:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "11906:6:84",
                            "type": ""
                          }
                        ],
                        "src": "11792:329:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12232:143:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12279:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12288:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12291:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "12281:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12281:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12281:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "12253:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12262:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "12249:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12249:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12274:3:84",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12245:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12245:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12242:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12304:65:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12350:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "12361:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "12314:35:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12314:55:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "12304:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12198:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "12209:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12221:6:84",
                            "type": ""
                          }
                        ],
                        "src": "12126:249:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12503:195:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12550:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12559:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12562:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "12552:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12552:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12552:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "12524:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12533:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "12520:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12520:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12545:3:84",
                                    "type": "",
                                    "value": "800"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12516:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12516:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12513:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12575:65:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12621:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "12632:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "12585:35:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12585:55:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "12575:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12649:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12676:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12687:3:84",
                                        "type": "",
                                        "value": "768"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12672:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12672:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "12659:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12659:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "12649:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptrt_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12461:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "12472:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12484:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "12492:6:84",
                            "type": ""
                          }
                        ],
                        "src": "12380:318:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12832:918:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12878:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12887:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12890:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "12880:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12880:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12880:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "12853:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12862:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "12849:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12849:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12874:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12845:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12845:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12842:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12903:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12926:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "12913:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12913:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "12903:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12945:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12955:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12949:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12966:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12993:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13004:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12989:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12989:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "12976:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12976:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "12966:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13017:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13048:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13059:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13044:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13044:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "13031:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13031:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "13021:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13106:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13115:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13118:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13108:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13108:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13108:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "13078:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13086:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13075:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13075:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13072:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13131:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13145:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "13156:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13141:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13141:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "13135:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13211:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13220:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13223:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13213:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13213:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13213:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "13190:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13194:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "13186:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13186:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "13201:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "13182:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13182:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "13175:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13175:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13172:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13236:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "13259:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "13246:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13246:16:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "13240:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13271:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "13347:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "13298:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13298:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "13282:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13282:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "13275:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13360:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "13373:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13364:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "13392:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "13397:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13385:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13385:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13385:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13409:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "13420:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13425:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13416:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13416:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "13409:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13437:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "13452:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13456:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13448:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13448:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "13441:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13513:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13522:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13525:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13515:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13515:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13515:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "13482:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "13490:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "13493:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "13486:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "13486:10:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "13478:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13478:19:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13499:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13474:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13474:28:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "13504:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13471:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13471:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13468:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13538:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13547:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "13542:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13602:118:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "13623:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "13641:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "calldataload",
                                            "nodeType": "YulIdentifier",
                                            "src": "13628:12:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "13628:17:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13616:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13616:30:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13616:30:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "13659:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "13670:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "13675:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "13666:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13666:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "13659:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "13691:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "13702:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "13707:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "13698:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13698:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "13691:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "13568:1:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "13571:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13565:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13565:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "13575:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "13577:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "13586:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13589:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "13582:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13582:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "13577:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "13561:3:84",
                                "statements": []
                              },
                              "src": "13557:163:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13729:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "13739:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "13729:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256t_uint256t_array$_t_uint256_$dyn_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12782:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "12793:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12805:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "12813:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "12821:6:84",
                            "type": ""
                          }
                        ],
                        "src": "12703:1047:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13840:226:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13886:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13895:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13898:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13888:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13888:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13888:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "13861:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13870:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "13857:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13857:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13882:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13853:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13853:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13850:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13911:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13937:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "13924:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13924:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "13915:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "13979:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "13956:22:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13956:29:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13956:29:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13994:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "14004:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "13994:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14018:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14045:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14056:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14041:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14041:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "14028:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14028:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "14018:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint8t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13798:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "13809:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "13821:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "13829:6:84",
                            "type": ""
                          }
                        ],
                        "src": "13755:311:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14132:374:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14142:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "14162:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "14156:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14156:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "14146:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "14184:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14189:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14177:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14177:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14177:19:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14205:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "14215:4:84",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "14209:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14228:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "14239:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14244:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14235:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14235:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "14228:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14256:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "14274:5:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14281:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14270:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14270:14:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "14260:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14293:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "14302:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "14297:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14361:120:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14382:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "14393:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "14387:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14387:13:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14375:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14375:26:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14375:26:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14414:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14425:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14430:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14421:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14421:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "14414:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14446:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14460:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14468:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14456:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14456:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "14446:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14323:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14326:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14320:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14320:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "14334:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14336:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14345:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14348:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14341:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14341:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "14336:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "14316:3:84",
                                "statements": []
                              },
                              "src": "14312:169:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14490:10:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "14497:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "14490:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint256_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14109:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "14116:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "14124:3:84",
                            "type": ""
                          }
                        ],
                        "src": "14071:435:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14571:399:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14581:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "14601:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "14595:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14595:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "14585:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "14623:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14628:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14616:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14616:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14616:19:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14644:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "14654:4:84",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "14648:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14667:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "14678:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14683:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14674:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14674:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "14667:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14695:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "14713:5:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14720:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14709:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14709:14:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "14699:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14732:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "14741:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "14736:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14800:145:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14821:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14836:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "14830:5:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "14830:13:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "14845:18:84",
                                              "type": "",
                                              "value": "0xffffffffffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "14826:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14826:38:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14814:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14814:51:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14814:51:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14878:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14889:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14894:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14885:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14885:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "14878:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14910:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14924:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14932:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14920:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14920:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "14910:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14762:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14765:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14759:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14759:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "14773:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14775:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14784:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14787:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14780:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14780:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "14775:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "14755:3:84",
                                "statements": []
                              },
                              "src": "14751:194:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14954:10:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "14961:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "14954:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint64_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14548:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "14555:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "14563:3:84",
                            "type": ""
                          }
                        ],
                        "src": "14511:459:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15094:145:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "15111:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "15124:2:84",
                                            "type": "",
                                            "value": "96"
                                          },
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "15128:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "15120:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "15120:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15137:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15116:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15116:88:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15104:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15104:101:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15104:101:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15214:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "15225:3:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15230:2:84",
                                    "type": "",
                                    "value": "20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15221:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15221:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "15214:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "15070:3:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15075:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "15086:3:84",
                            "type": ""
                          }
                        ],
                        "src": "14975:264:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15497:326:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15514:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15529:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15537:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15525:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15525:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15507:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15507:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15507:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15601:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15612:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15597:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15597:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15617:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15590:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15590:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15590:30:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "15629:69:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "15671:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15683:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15694:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15679:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15679:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "15643:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15643:55:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "15633:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15718:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15729:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15714:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15714:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "15738:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15746:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "15734:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15734:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15707:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15707:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15707:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15766:51:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "15802:6:84"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "15810:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "15774:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15774:43:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15766:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15450:9:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "15461:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "15469:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15477:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15488:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15244:579:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16029:702:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16039:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "16049:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "16043:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16060:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16078:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16089:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16074:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16074:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "16064:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16108:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16119:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16101:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16101:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16101:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16131:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "16142:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "16135:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16157:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "16177:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "16171:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16171:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "16161:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16200:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "16208:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16193:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16193:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16193:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16224:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16235:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16246:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16231:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16231:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "16224:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16258:53:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16280:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "16295:1:84",
                                            "type": "",
                                            "value": "5"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "16298:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "16291:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16291:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16276:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16276:30:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16308:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16272:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16272:39:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_2",
                                  "nodeType": "YulTypedName",
                                  "src": "16262:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16320:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "16338:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16346:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16334:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16334:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "16324:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16358:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "16367:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "16362:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "16426:276:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "16447:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_2",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "16460:6:84"
                                                },
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "16468:9:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "sub",
                                                "nodeType": "YulIdentifier",
                                                "src": "16456:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "16456:22:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "16480:66:84",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "16452:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "16452:95:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "16440:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16440:108:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "16440:108:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "16561:61:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "16606:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "16600:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "16600:13:84"
                                        },
                                        {
                                          "name": "tail_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "16615:6:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_array_uint256_dyn",
                                        "nodeType": "YulIdentifier",
                                        "src": "16571:28:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16571:51:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "tail_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "16561:6:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "16635:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "16649:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "16657:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "16645:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16645:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "16635:6:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "16673:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "16684:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "16689:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "16680:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16680:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "16673:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "16388:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "16391:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "16385:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16385:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "16399:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "16401:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "16410:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "16413:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "16406:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16406:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "16401:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "16381:3:84",
                                "statements": []
                              },
                              "src": "16377:325:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16711:14:84",
                              "value": {
                                "name": "tail_2",
                                "nodeType": "YulIdentifier",
                                "src": "16719:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16711:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__to_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15998:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "16009:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16020:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15828:903:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16887:110:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16904:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16915:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16897:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16897:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16897:21:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16927:64:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "16964:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16976:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16987:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16972:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16972:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint256_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "16935:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16935:56:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16927:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16856:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "16867:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16878:4:84",
                            "type": ""
                          }
                        ],
                        "src": "16736:261:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17199:652:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17216:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17227:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17209:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17209:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17209:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17239:70:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "17282:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17294:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17305:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17290:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17290:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint256_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "17253:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17253:56:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "17243:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17318:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "17328:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "17322:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17350:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "17361:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17346:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17346:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "17370:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17378:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "17366:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17366:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17339:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17339:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17339:50:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17398:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "17418:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "17412:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17412:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "17402:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "17441:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "17449:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17434:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17434:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17434:22:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17465:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "17474:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "17469:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "17534:87:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "17563:6:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "17571:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "17559:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "17559:14:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "17575:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "17555:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "17555:23:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value1",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "17594:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "17602:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "17590:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "17590:14:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "17606:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "17586:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "17586:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "17580:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "17580:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "17548:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17548:63:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17548:63:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "17495:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "17498:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "17492:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17492:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "17506:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "17508:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "17517:1:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "17520:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "17513:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17513:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "17508:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "17488:3:84",
                                "statements": []
                              },
                              "src": "17484:137:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "17655:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "17684:6:84"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "17692:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "17680:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "17680:19:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "17701:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "17676:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "17676:28:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "17706:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "17669:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17669:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17669:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "17636:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "17639:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "17633:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17633:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "17630:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17727:118:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "17743:6:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "17759:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "17767:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "17755:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "17755:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17772:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "17751:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17751:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17739:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17739:101:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "17842:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17735:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17735:110:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17727:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17160:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "17171:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "17179:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17190:4:84",
                            "type": ""
                          }
                        ],
                        "src": "17002:849:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18015:534:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18025:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "18035:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18029:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18046:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18064:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18075:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18060:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18060:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18050:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18094:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18105:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18087:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18087:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18087:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18117:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "18128:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "18121:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18150:6:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18158:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18143:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18143:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18143:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18174:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18185:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18196:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18181:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18181:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "18174:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18208:20:84",
                              "value": {
                                "name": "value0",
                                "nodeType": "YulIdentifier",
                                "src": "18222:6:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "18212:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18237:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "18246:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "18241:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18305:218:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "18319:33:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "18345:6:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "18332:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18332:20:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "18323:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "18389:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "18365:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18365:30:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18365:30:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "18415:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "18424:5:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "18431:10:84",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "18420:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "18420:22:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "18408:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18408:35:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18408:35:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "18456:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "18467:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "18472:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "18463:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18463:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "18456:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "18488:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "18502:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "18510:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "18498:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18498:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18488:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "18267:1:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18270:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "18264:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18264:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "18278:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "18280:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "18289:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "18292:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "18285:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18285:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "18280:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "18260:3:84",
                                "statements": []
                              },
                              "src": "18256:267:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18532:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "18540:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18532:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint32_$dyn_calldata_ptr__to_t_array$_t_uint32_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17976:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "17987:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "17995:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18006:4:84",
                            "type": ""
                          }
                        ],
                        "src": "17856:693:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18779:234:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18796:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18807:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18789:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18789:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18789:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18819:69:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "18861:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18873:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18884:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18869:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18869:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "18833:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18833:55:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18823:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18908:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18919:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18904:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18904:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "18928:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18936:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "18924:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18924:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18897:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18897:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18897:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18956:51:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18992:6:84"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19000:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "18964:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18964:43:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18956:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18740:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "18751:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "18759:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18770:4:84",
                            "type": ""
                          }
                        ],
                        "src": "18554:459:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19145:144:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "19155:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19167:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19178:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19163:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19163:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19155:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19197:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "19208:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19190:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19190:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19190:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19235:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19246:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19231:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19231:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19255:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19263:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19251:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19251:31:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19224:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19224:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19224:59:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19106:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "19117:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "19125:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19136:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19018:271:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19416:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "19426:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19438:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19449:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19434:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19434:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19426:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19468:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "19483:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19491:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19479:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19479:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19461:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19461:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19461:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19385:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "19396:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19407:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19294:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19681:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "19691:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19703:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19714:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19699:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19699:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19691:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19733:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "19748:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19756:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19744:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19744:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19726:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19726:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19726:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$11467__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19650:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "19661:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19672:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19546:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19929:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "19939:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19951:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19962:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19947:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19947:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19939:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19981:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "19996:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20004:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19992:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19992:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19974:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19974:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19974:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19898:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "19909:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19920:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19811:243:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20233:171:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20250:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20261:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20243:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20243:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20243:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20284:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20295:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20280:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20280:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20300:2:84",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20273:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20273:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20273:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20323:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20334:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20319:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20319:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f647261772d65787069726564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "20339:23:84",
                                    "type": "",
                                    "value": "DrawCalc/draw-expired"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20312:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20312:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20312:51:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "20372:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20384:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20395:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20380:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20380:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20372:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20210:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20224:4:84",
                            "type": ""
                          }
                        ],
                        "src": "20059:345:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20583:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20600:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20611:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20593:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20593:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20593:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20634:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20645:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20630:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20630:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20650:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20623:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20623:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20623:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20673:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20684:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20669:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20669:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "20689:34:84",
                                    "type": "",
                                    "value": "DrawCalc/invalid-pick-indices-le"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20662:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20662:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20662:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20744:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20755:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20740:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20740:18:84"
                                  },
                                  {
                                    "hexValue": "6e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "20760:6:84",
                                    "type": "",
                                    "value": "ngth"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20733:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20733:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20733:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "20776:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20788:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20799:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20784:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20784:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20776:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20560:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20574:4:84",
                            "type": ""
                          }
                        ],
                        "src": "20409:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20988:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21005:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21016:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20998:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20998:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20998:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21039:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21050:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21035:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21035:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21055:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21028:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21028:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21028:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21078:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21089:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21074:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21074:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f657863656564732d6d61782d757365722d7069636b73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "21094:33:84",
                                    "type": "",
                                    "value": "DrawCalc/exceeds-max-user-picks"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21067:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21067:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21067:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21137:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21149:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21160:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21145:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21145:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "21137:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20965:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20979:4:84",
                            "type": ""
                          }
                        ],
                        "src": "20814:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21348:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21365:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21376:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21358:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21358:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21358:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21399:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21410:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21395:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21395:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21415:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21388:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21388:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21388:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21438:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21449:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21434:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21434:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7069636b732d617363656e64696e67",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "21454:26:84",
                                    "type": "",
                                    "value": "DrawCalc/picks-ascending"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21427:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21427:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21427:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21490:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21502:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21513:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21498:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21498:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "21490:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "21325:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "21339:4:84",
                            "type": ""
                          }
                        ],
                        "src": "21174:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21701:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21718:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21729:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21711:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21711:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21711:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21752:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21763:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21748:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21748:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21768:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21741:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21741:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21741:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21791:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21802:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21787:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21787:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e73756666696369656e742d757365722d7069636b73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "21807:34:84",
                                    "type": "",
                                    "value": "DrawCalc/insufficient-user-picks"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21780:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21780:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21780:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21851:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21863:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21874:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21859:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21859:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "21851:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "21678:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "21692:4:84",
                            "type": ""
                          }
                        ],
                        "src": "21527:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21989:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "21999:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22011:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22022:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22007:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22007:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "21999:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22041:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "22052:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22034:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22034:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22034:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "21958:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "21969:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "21980:4:84",
                            "type": ""
                          }
                        ],
                        "src": "21888:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22169:101:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "22179:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22191:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22202:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22187:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22187:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "22179:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22221:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "22236:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "22244:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "22232:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22232:31:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22214:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22214:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22214:50:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "22138:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "22149:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "22160:4:84",
                            "type": ""
                          }
                        ],
                        "src": "22070:200:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22372:87:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "22382:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22394:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22405:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22390:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22390:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "22382:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22424:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "22439:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "22447:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "22435:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22435:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22417:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22417:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22417:36:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "22341:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "22352:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "22363:4:84",
                            "type": ""
                          }
                        ],
                        "src": "22275:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22510:209:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "22520:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22536:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "22530:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22530:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "22520:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22548:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "22570:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22578:6:84",
                                    "type": "",
                                    "value": "0x0120"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22566:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22566:19:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "22552:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22660:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "22662:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22662:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22662:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "22603:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "22615:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "22600:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22600:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "22639:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "22651:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "22636:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22636:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "22597:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22597:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22594:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22698:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "22702:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22691:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22691:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22691:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory_5223",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "22499:6:84",
                            "type": ""
                          }
                        ],
                        "src": "22464:255:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22770:207:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "22780:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22796:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "22790:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22790:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "22780:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22808:35:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "22830:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22838:4:84",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22826:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22826:17:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "22812:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22918:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "22920:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22920:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22920:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "22861:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "22873:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "22858:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22858:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "22897:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "22909:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "22894:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22894:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "22855:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22855:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22852:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22956:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "22960:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22949:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22949:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22949:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory_5225",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "22759:6:84",
                            "type": ""
                          }
                        ],
                        "src": "22724:253:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23028:206:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "23038:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23054:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "23048:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23048:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "23038:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23066:34:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "23088:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23096:3:84",
                                    "type": "",
                                    "value": "512"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "23084:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23084:16:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "23070:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23175:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "23177:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23177:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23177:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "23118:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23130:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "23115:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23115:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "23154:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "23166:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "23151:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23151:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "23112:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23112:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23109:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23213:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "23217:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23206:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23206:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23206:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory_8108",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "23017:6:84",
                            "type": ""
                          }
                        ],
                        "src": "22982:252:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23284:289:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "23294:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23310:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "23304:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23304:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "23294:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23322:117:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "23344:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "23360:4:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "23366:2:84",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "23356:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "23356:13:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23371:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "23352:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23352:86:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "23340:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23340:99:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "23326:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23514:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "23516:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23516:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23516:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "23457:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23469:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "23454:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23454:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "23493:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "23505:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "23490:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23490:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "23451:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23451:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23448:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23552:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "23556:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23545:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23545:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23545:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "23264:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "23273:6:84",
                            "type": ""
                          }
                        ],
                        "src": "23239:334:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23656:114:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23700:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "23702:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23702:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23702:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "23672:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23680:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "23669:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23669:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23666:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23731:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23747:1:84",
                                        "type": "",
                                        "value": "5"
                                      },
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "23750:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "23743:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23743:14:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23759:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "23739:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23739:25:84"
                              },
                              "variableNames": [
                                {
                                  "name": "size",
                                  "nodeType": "YulIdentifier",
                                  "src": "23731:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "23636:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "23647:4:84",
                            "type": ""
                          }
                        ],
                        "src": "23578:192:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23823:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23850:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "23852:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23852:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23852:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23839:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "23846:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "23842:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23842:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "23836:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23836:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23833:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23881:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23892:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23895:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "23888:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23888:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "23881:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "23806:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "23809:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "23815:3:84",
                            "type": ""
                          }
                        ],
                        "src": "23775:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23955:189:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23965:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "23975:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23969:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "24002:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "24017:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24020:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "24013:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24013:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "24006:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "24032:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "24047:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24050:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "24043:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24043:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "24036:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24087:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "24089:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24089:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24089:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24068:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "24077:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "24081:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "24073:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "24073:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "24065:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24065:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "24062:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "24118:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24129:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24134:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "24125:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24125:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "24118:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "23938:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "23941:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "23947:3:84",
                            "type": ""
                          }
                        ],
                        "src": "23908:236:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24195:158:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "24205:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "24220:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24223:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "24216:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24216:12:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "24209:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "24237:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "24252:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24255:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "24248:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24248:12:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "24241:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24296:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "24298:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24298:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24298:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24275:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "24284:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "24290:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "24280:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "24280:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "24272:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24272:23:84"
                              },
                              "nodeType": "YulIf",
                              "src": "24269:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "24327:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24338:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24343:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "24334:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24334:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "24327:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "24178:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "24181:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "24187:3:84",
                            "type": ""
                          }
                        ],
                        "src": "24149:204:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24404:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24435:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24456:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24459:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "24449:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24449:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24449:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24557:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24560:4:84",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "24550:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24550:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24550:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24585:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24588:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "24578:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24578:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24578:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "24424:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "24417:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24417:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "24414:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "24612:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "24621:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "24624:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "24617:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24617:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "24612:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "24389:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "24392:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "24398:1:84",
                            "type": ""
                          }
                        ],
                        "src": "24358:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24701:418:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "24711:16:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "24726:1:84",
                                "type": "",
                                "value": "1"
                              },
                              "variables": [
                                {
                                  "name": "power_1",
                                  "nodeType": "YulTypedName",
                                  "src": "24715:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "24736:16:84",
                              "value": {
                                "name": "power_1",
                                "nodeType": "YulIdentifier",
                                "src": "24745:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "24736:5:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "24761:13:84",
                              "value": {
                                "name": "_base",
                                "nodeType": "YulIdentifier",
                                "src": "24769:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "base",
                                  "nodeType": "YulIdentifier",
                                  "src": "24761:4:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24825:288:84",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "24930:22:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [],
                                            "functionName": {
                                              "name": "panic_error_0x11",
                                              "nodeType": "YulIdentifier",
                                              "src": "24932:16:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "24932:18:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "24932:18:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "24845:4:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "24855:66:84",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                            },
                                            {
                                              "name": "base",
                                              "nodeType": "YulIdentifier",
                                              "src": "24923:4:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "div",
                                            "nodeType": "YulIdentifier",
                                            "src": "24851:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "24851:77:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "24842:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24842:87:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "24839:2:84"
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "24991:29:84",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "24993:25:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "power",
                                                "nodeType": "YulIdentifier",
                                                "src": "25006:5:84"
                                              },
                                              {
                                                "name": "base",
                                                "nodeType": "YulIdentifier",
                                                "src": "25013:4:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "25002:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "25002:16:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "power",
                                              "nodeType": "YulIdentifier",
                                              "src": "24993:5:84"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "24972:8:84"
                                        },
                                        {
                                          "name": "power_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "24982:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "24968:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24968:22:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "24965:2:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "25033:23:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "25045:4:84"
                                        },
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "25051:4:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mul",
                                        "nodeType": "YulIdentifier",
                                        "src": "25041:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "25041:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "base",
                                        "nodeType": "YulIdentifier",
                                        "src": "25033:4:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "25069:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "power_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "25085:7:84"
                                        },
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "25094:8:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "shr",
                                        "nodeType": "YulIdentifier",
                                        "src": "25081:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "25081:22:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "exponent",
                                        "nodeType": "YulIdentifier",
                                        "src": "25069:8:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "24794:8:84"
                                  },
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24804:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "24791:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24791:21:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "24813:3:84",
                                "statements": []
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "24787:3:84",
                                "statements": []
                              },
                              "src": "24783:330:84"
                            }
                          ]
                        },
                        "name": "checked_exp_helper",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "_base",
                            "nodeType": "YulTypedName",
                            "src": "24665:5:84",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "24672:8:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "24685:5:84",
                            "type": ""
                          },
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "24692:4:84",
                            "type": ""
                          }
                        ],
                        "src": "24637:482:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "25192:72:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "25202:56:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "25232:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "exponent",
                                        "nodeType": "YulIdentifier",
                                        "src": "25242:8:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "25252:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "25238:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "25238:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "checked_exp_unsigned",
                                  "nodeType": "YulIdentifier",
                                  "src": "25211:20:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25211:47:84"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "25202:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_exp_t_uint256_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "25163:4:84",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "25169:8:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "25182:5:84",
                            "type": ""
                          }
                        ],
                        "src": "25124:140:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "25328:807:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "25366:52:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "25380:10:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "25389:1:84",
                                      "type": "",
                                      "value": "1"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "25380:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "25403:5:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "25348:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "25341:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25341:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "25338:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "25451:52:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "25465:10:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "25474:1:84",
                                      "type": "",
                                      "value": "0"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "25465:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "25488:5:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "25437:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "25430:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25430:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "25427:2:84"
                            },
                            {
                              "cases": [
                                {
                                  "body": {
                                    "nodeType": "YulBlock",
                                    "src": "25539:52:84",
                                    "statements": [
                                      {
                                        "nodeType": "YulAssignment",
                                        "src": "25553:10:84",
                                        "value": {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "25562:1:84",
                                          "type": "",
                                          "value": "1"
                                        },
                                        "variableNames": [
                                          {
                                            "name": "power",
                                            "nodeType": "YulIdentifier",
                                            "src": "25553:5:84"
                                          }
                                        ]
                                      },
                                      {
                                        "nodeType": "YulLeave",
                                        "src": "25576:5:84"
                                      }
                                    ]
                                  },
                                  "nodeType": "YulCase",
                                  "src": "25532:59:84",
                                  "value": {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25537:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                },
                                {
                                  "body": {
                                    "nodeType": "YulBlock",
                                    "src": "25607:123:84",
                                    "statements": [
                                      {
                                        "body": {
                                          "nodeType": "YulBlock",
                                          "src": "25642:22:84",
                                          "statements": [
                                            {
                                              "expression": {
                                                "arguments": [],
                                                "functionName": {
                                                  "name": "panic_error_0x11",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "25644:16:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "25644:18:84"
                                              },
                                              "nodeType": "YulExpressionStatement",
                                              "src": "25644:18:84"
                                            }
                                          ]
                                        },
                                        "condition": {
                                          "arguments": [
                                            {
                                              "name": "exponent",
                                              "nodeType": "YulIdentifier",
                                              "src": "25627:8:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "25637:3:84",
                                              "type": "",
                                              "value": "255"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "gt",
                                            "nodeType": "YulIdentifier",
                                            "src": "25624:2:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "25624:17:84"
                                        },
                                        "nodeType": "YulIf",
                                        "src": "25621:2:84"
                                      },
                                      {
                                        "nodeType": "YulAssignment",
                                        "src": "25677:25:84",
                                        "value": {
                                          "arguments": [
                                            {
                                              "name": "exponent",
                                              "nodeType": "YulIdentifier",
                                              "src": "25690:8:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "25700:1:84",
                                              "type": "",
                                              "value": "1"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "25686:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "25686:16:84"
                                        },
                                        "variableNames": [
                                          {
                                            "name": "power",
                                            "nodeType": "YulIdentifier",
                                            "src": "25677:5:84"
                                          }
                                        ]
                                      },
                                      {
                                        "nodeType": "YulLeave",
                                        "src": "25715:5:84"
                                      }
                                    ]
                                  },
                                  "nodeType": "YulCase",
                                  "src": "25600:130:84",
                                  "value": {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25605:1:84",
                                    "type": "",
                                    "value": "2"
                                  }
                                }
                              ],
                              "expression": {
                                "name": "base",
                                "nodeType": "YulIdentifier",
                                "src": "25519:4:84"
                              },
                              "nodeType": "YulSwitch",
                              "src": "25512:218:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "25828:70:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "25842:28:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "25855:4:84"
                                        },
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "25861:8:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "exp",
                                        "nodeType": "YulIdentifier",
                                        "src": "25851:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "25851:19:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "25842:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "25883:5:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "base",
                                            "nodeType": "YulIdentifier",
                                            "src": "25752:4:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "25758:2:84",
                                            "type": "",
                                            "value": "11"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "25749:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "25749:12:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "exponent",
                                            "nodeType": "YulIdentifier",
                                            "src": "25766:8:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "25776:2:84",
                                            "type": "",
                                            "value": "78"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "25763:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "25763:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "25745:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "25745:35:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "base",
                                            "nodeType": "YulIdentifier",
                                            "src": "25789:4:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "25795:3:84",
                                            "type": "",
                                            "value": "307"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "25786:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "25786:13:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "exponent",
                                            "nodeType": "YulIdentifier",
                                            "src": "25804:8:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "25814:2:84",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "25801:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "25801:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "25782:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "25782:36:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "25742:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25742:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "25739:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "25907:57:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "25949:4:84"
                                  },
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "25955:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "checked_exp_helper",
                                  "nodeType": "YulIdentifier",
                                  "src": "25930:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25930:34:84"
                              },
                              "variables": [
                                {
                                  "name": "power_1",
                                  "nodeType": "YulTypedName",
                                  "src": "25911:7:84",
                                  "type": ""
                                },
                                {
                                  "name": "base_1",
                                  "nodeType": "YulTypedName",
                                  "src": "25920:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "26069:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "26071:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "26071:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "26071:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "25979:7:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "25992:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      },
                                      {
                                        "name": "base_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "26060:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "div",
                                      "nodeType": "YulIdentifier",
                                      "src": "25988:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "25988:79:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "25976:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25976:92:84"
                              },
                              "nodeType": "YulIf",
                              "src": "25973:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "26100:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26113:7:84"
                                  },
                                  {
                                    "name": "base_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26122:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "26109:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26109:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "26100:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_exp_unsigned",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "25299:4:84",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "25305:8:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "25318:5:84",
                            "type": ""
                          }
                        ],
                        "src": "25269:866:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26192:176:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "26311:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "26313:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "26313:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "26313:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "26223:1:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "26216:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "26216:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "26209:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "26209:17:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "26231:1:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "26238:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          },
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "26306:1:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "26234:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "26234:74:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "26228:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "26228:81:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "26205:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26205:105:84"
                              },
                              "nodeType": "YulIf",
                              "src": "26202:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "26342:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "26357:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "26360:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "26353:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26353:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "26342:7:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "26171:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "26174:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "26180:7:84",
                            "type": ""
                          }
                        ],
                        "src": "26140:228:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26422:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "26444:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "26446:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "26446:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "26446:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "26438:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "26441:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "26435:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26435:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "26432:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "26475:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "26487:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "26490:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "26483:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26483:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "26475:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "26404:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "26407:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "26413:4:84",
                            "type": ""
                          }
                        ],
                        "src": "26373:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26551:173:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "26561:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "26571:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "26565:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "26590:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "26605:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26608:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "26601:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26601:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "26594:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "26620:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "26635:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26638:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "26631:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26631:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "26624:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "26666:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "26668:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "26668:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "26668:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26656:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26661:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "26653:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26653:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "26650:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "26697:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26709:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26714:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "26705:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26705:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "26697:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "26533:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "26536:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "26542:4:84",
                            "type": ""
                          }
                        ],
                        "src": "26503:221:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26776:148:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "26786:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "26801:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26804:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "26797:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26797:12:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "26790:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "26818:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "26833:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26836:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "26829:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26829:12:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "26822:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "26866:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "26868:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "26868:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "26868:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26856:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26861:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "26853:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26853:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "26850:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "26897:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26909:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26914:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "26905:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26905:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "26897:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "26758:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "26761:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "26767:4:84",
                            "type": ""
                          }
                        ],
                        "src": "26729:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26976:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "27067:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "27069:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "27069:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "27069:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "26992:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26999:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "26989:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26989:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "26986:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "27098:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "27109:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27116:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "27105:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27105:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "27098:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "26958:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "26968:3:84",
                            "type": ""
                          }
                        ],
                        "src": "26929:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "27175:155:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "27185:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "27195:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "27189:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "27214:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "27233:5:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "27240:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "27229:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27229:14:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "27218:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "27271:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "27273:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "27273:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "27273:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "27258:7:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "27267:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "27255:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27255:15:84"
                              },
                              "nodeType": "YulIf",
                              "src": "27252:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "27302:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "27313:7:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27322:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "27309:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27309:15:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "27302:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "27157:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "27167:3:84",
                            "type": ""
                          }
                        ],
                        "src": "27129:201:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "27380:130:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "27390:31:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "27409:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27416:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "27405:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27405:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "27394:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "27451:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "27453:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "27453:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "27453:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "27436:7:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27445:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "27433:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27433:17:84"
                              },
                              "nodeType": "YulIf",
                              "src": "27430:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "27482:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "27493:7:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27502:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "27489:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27489:15:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "27482:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "27362:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "27372:3:84",
                            "type": ""
                          }
                        ],
                        "src": "27335:175:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "27547:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27564:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27567:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "27557:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27557:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "27557:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27661:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27664:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "27654:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27654:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "27654:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27685:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27688:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "27678:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27678:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "27678:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "27515:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "27736:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27753:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27756:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "27746:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27746:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "27746:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27850:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27853:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "27843:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27843:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "27843:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27874:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27877:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "27867:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27867:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "27867:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "27704:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "27925:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27942:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27945:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "27935:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27935:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "27935:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "28039:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "28042:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "28032:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "28032:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "28032:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "28063:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "28066:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "28056:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "28056:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "28056:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "27893:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "28127:95:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "28200:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28209:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28212:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "28202:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "28202:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "28202:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "28150:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "28161:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "28168:28:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "28157:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "28157:40:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "28147:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "28147:51:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "28140:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "28140:59:84"
                              },
                              "nodeType": "YulIf",
                              "src": "28137:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "28116:5:84",
                            "type": ""
                          }
                        ],
                        "src": "28082:140:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "28271:77:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "28326:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28335:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28338:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "28328:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "28328:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "28328:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "28294:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "28305:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "28312:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "28301:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "28301:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "28291:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "28291:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "28284:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "28284:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "28281:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "28260:5:84",
                            "type": ""
                          }
                        ],
                        "src": "28227:121:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "28397:85:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "28460:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28469:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28472:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "28462:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "28462:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "28462:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "28420:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "28431:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "28438:18:84",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "28427:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "28427:30:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "28417:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "28417:41:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "28410:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "28410:49:84"
                              },
                              "nodeType": "YulIf",
                              "src": "28407:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "28386:5:84",
                            "type": ""
                          }
                        ],
                        "src": "28353:129:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "28530:71:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "28579:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28588:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28591:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "28581:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "28581:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "28581:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "28553:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "28564:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "28571:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "28560:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "28560:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "28550:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "28550:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "28543:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "28543:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "28540:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "28519:5:84",
                            "type": ""
                          }
                        ],
                        "src": "28487:114:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_array_uint32(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let dst := allocate_memory_8108()\n        let dst_1 := dst\n        let src := offset\n        if gt(add(offset, 512), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            let value := calldataload(src)\n            validator_revert_uint32(value)\n            mstore(dst, value)\n            let _1 := 0x20\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        array := dst_1\n    }\n    function abi_decode_array_uint32_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let dst := allocate_memory_8108()\n        let dst_1 := dst\n        let src := offset\n        if gt(add(offset, 512), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            let value := mload(src)\n            validator_revert_uint32(value)\n            mstore(dst, value)\n            let _1 := 0x20\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        array := dst_1\n    }\n    function abi_decode_array_uint32_dyn_calldata(offset, end) -> arrayPos, length\n    {\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(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_struct_PrizeDistribution_calldata(offset, end) -> value\n    {\n        if slt(sub(end, offset), 768) { revert(0, 0) }\n        value := offset\n    }\n    function abi_decode_struct_PrizeDistribution(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x0300) { revert(0, 0) }\n        value := allocate_memory_5223()\n        mstore(value, abi_decode_uint8(headStart))\n        mstore(add(value, 32), abi_decode_uint8(add(headStart, 32)))\n        mstore(add(value, 64), abi_decode_uint32(add(headStart, 64)))\n        mstore(add(value, 96), abi_decode_uint32(add(headStart, 96)))\n        mstore(add(value, 128), abi_decode_uint32(add(headStart, 128)))\n        mstore(add(value, 160), abi_decode_uint32(add(headStart, 160)))\n        mstore(add(value, 192), abi_decode_uint104(add(headStart, 192)))\n        mstore(add(value, 224), abi_decode_array_uint32(add(headStart, 224), end))\n        mstore(add(value, 0x0100), calldataload(add(headStart, 736)))\n    }\n    function abi_decode_uint104(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint104(value)\n    }\n    function abi_decode_uint104_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint104(value)\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint32(value)\n    }\n    function abi_decode_uint32_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint32(value)\n    }\n    function abi_decode_uint8(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint8(value)\n    }\n    function abi_decode_uint8_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint8(value)\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint32_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint32_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        let offset_1 := calldataload(add(headStart, 64))\n        if gt(offset_1, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset_1)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, length), 32), dataEnd) { revert(0, 0) }\n        value3 := add(_2, 32)\n        value4 := length\n    }\n    function abi_decode_tuple_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _2 := 0xffffffffffffffff\n        if gt(offset, _2) { revert(0, 0) }\n        let _3 := add(headStart, offset)\n        if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(0, 0) }\n        let _4 := calldataload(_3)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_4))\n        let dst_1 := dst\n        mstore(dst, _4)\n        dst := add(dst, _1)\n        let src := add(_3, _1)\n        if gt(add(add(_3, shl(5, _4)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _4) { i := add(i, 1) }\n        {\n            let innerOffset := calldataload(src)\n            if gt(innerOffset, _2) { revert(0, 0) }\n            let _5 := add(_3, innerOffset)\n            if iszero(slt(add(_5, 63), dataEnd)) { revert(0, 0) }\n            let _6 := calldataload(add(_5, _1))\n            let dst_2 := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_6))\n            let dst_3 := dst_2\n            mstore(dst_2, _6)\n            dst_2 := add(dst_2, _1)\n            let src_1 := add(_5, 64)\n            if gt(add(add(_5, shl(5, _6)), 64), dataEnd) { revert(0, 0) }\n            let i_1 := 0\n            for { } lt(i_1, _6) { i_1 := add(i_1, 1) }\n            {\n                let value := calldataload(src_1)\n                validator_revert_uint64(value)\n                mstore(dst_2, value)\n                dst_2 := add(dst_2, _1)\n                src_1 := add(src_1, _1)\n            }\n            mstore(dst, dst_3)\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        let _4 := 0xa0\n        if gt(add(add(_2, mul(_3, _4)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        let i_1 := i\n        for { } lt(i_1, _3) { i_1 := add(i_1, 1) }\n        {\n            if slt(sub(dataEnd, src), _4) { revert(i, i) }\n            let value := allocate_memory_5225()\n            mstore(value, mload(src))\n            let value_1 := mload(add(src, _1))\n            validator_revert_uint32(value_1)\n            mstore(add(value, _1), value_1)\n            let _5 := 64\n            let value_2 := mload(add(src, _5))\n            validator_revert_uint64(value_2)\n            mstore(add(value, _5), value_2)\n            let _6 := 96\n            let value_3 := mload(add(src, _6))\n            validator_revert_uint64(value_3)\n            mstore(add(value, _6), value_3)\n            let _7 := 128\n            let value_4 := mload(add(src, _7))\n            validator_revert_uint32(value_4)\n            mstore(add(value, _7), value_4)\n            mstore(dst, value)\n            dst := add(dst, _1)\n            src := add(src, _4)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        let _4 := 0x0300\n        if gt(add(add(_2, mul(_3, _4)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        let i_1 := i\n        for { } lt(i_1, _3) { i_1 := add(i_1, 1) }\n        {\n            if slt(sub(dataEnd, src), _4) { revert(i, i) }\n            let value := allocate_memory_5223()\n            mstore(value, abi_decode_uint8_fromMemory(src))\n            mstore(add(value, _1), abi_decode_uint8_fromMemory(add(src, _1)))\n            let _5 := 64\n            mstore(add(value, _5), abi_decode_uint32_fromMemory(add(src, _5)))\n            let _6 := 96\n            mstore(add(value, _6), abi_decode_uint32_fromMemory(add(src, _6)))\n            let _7 := 128\n            mstore(add(value, _7), abi_decode_uint32_fromMemory(add(src, _7)))\n            let _8 := 160\n            mstore(add(value, _8), abi_decode_uint32_fromMemory(add(src, _8)))\n            let _9 := 192\n            mstore(add(value, _9), abi_decode_uint104_fromMemory(add(src, _9)))\n            let _10 := 224\n            mstore(add(value, _10), abi_decode_array_uint32_fromMemory(add(src, _10), dataEnd))\n            mstore(add(value, 0x0100), mload(add(src, 736)))\n            mstore(dst, value)\n            dst := add(dst, _1)\n            src := add(src, _4)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        if gt(add(add(_2, shl(5, _3)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _3) { i := add(i, 1) }\n        {\n            mstore(dst, mload(src))\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_struct$_PrizeDistribution_$11491_calldata_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 768) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeDistribution_calldata(headStart, dataEnd)\n    }\n    function abi_decode_tuple_t_struct$_PrizeDistribution_$11491_calldata_ptrt_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 800) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeDistribution_calldata(headStart, dataEnd)\n        value1 := calldataload(add(headStart, 768))\n    }\n    function abi_decode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 768) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeDistribution(headStart, dataEnd)\n    }\n    function abi_decode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 800) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeDistribution(headStart, dataEnd)\n        value1 := calldataload(add(headStart, 768))\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_array$_t_uint256_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := calldataload(headStart)\n        let _1 := 32\n        value1 := calldataload(add(headStart, _1))\n        let offset := calldataload(add(headStart, 64))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := calldataload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        if gt(add(add(_2, shl(5, _3)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _3) { i := add(i, 1) }\n        {\n            mstore(dst, calldataload(src))\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value2 := dst_1\n    }\n    function abi_decode_tuple_t_uint8t_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint8(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_encode_array_uint256_dyn(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let _1 := 0x20\n        pos := add(pos, _1)\n        let srcPtr := add(value, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        end := pos\n    }\n    function abi_encode_array_uint64_dyn(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let _1 := 0x20\n        pos := add(pos, _1)\n        let srcPtr := add(value, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), 0xffffffffffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        end := pos\n    }\n    function abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        mstore(pos, and(shl(96, value0), 0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000))\n        end := add(pos, 20)\n    }\n    function abi_encode_tuple_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), 96)\n        let tail_1 := abi_encode_array_uint64_dyn(value1, add(headStart, 96))\n        mstore(add(headStart, 64), sub(tail_1, headStart))\n        tail := abi_encode_array_uint64_dyn(value2, tail_1)\n    }\n    function abi_encode_tuple_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__to_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let tail_2 := add(add(headStart, shl(5, length)), 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0))\n            tail_2 := abi_encode_array_uint256_dyn(mload(srcPtr), tail_2)\n            srcPtr := add(srcPtr, _1)\n            pos := add(pos, _1)\n        }\n        tail := tail_2\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_array_uint256_dyn(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_uint256_dyn(value0, add(headStart, 64))\n        let _1 := 32\n        mstore(add(headStart, _1), sub(tail_1, headStart))\n        let length := mload(value1)\n        mstore(tail_1, length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(tail_1, i), _1), mload(add(add(value1, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(tail_1, length), _1), 0)\n        }\n        tail := add(add(tail_1, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), _1)\n    }\n    function abi_encode_tuple_t_array$_t_uint32_$dyn_calldata_ptr__to_t_array$_t_uint32_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        mstore(tail_1, value1)\n        pos := add(headStart, 64)\n        let srcPtr := value0\n        let i := 0\n        for { } lt(i, value1) { i := add(i, 1) }\n        {\n            let value := calldataload(srcPtr)\n            validator_revert_uint32(value)\n            mstore(pos, and(value, 0xffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_uint64_dyn(value0, add(headStart, 64))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_array_uint64_dyn(value1, tail_1)\n    }\n    function abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$11467__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"DrawCalc/draw-expired\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"DrawCalc/invalid-pick-indices-le\")\n        mstore(add(headStart, 96), \"ngth\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"DrawCalc/exceeds-max-user-picks\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"DrawCalc/picks-ascending\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"DrawCalc/insufficient-user-picks\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function allocate_memory_5223() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0120)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory_5225() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xa0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory_8108() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 512)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function array_allocation_size_array_array_uint64_dyn_dyn(length) -> size\n    {\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        size := add(shl(5, length), 0x20)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint64(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint8(x, y) -> sum\n    {\n        let x_1 := and(x, 0xff)\n        let y_1 := and(y, 0xff)\n        if gt(x_1, sub(0xff, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function checked_exp_helper(_base, exponent) -> power, base\n    {\n        let power_1 := 1\n        power := power_1\n        base := _base\n        for { } gt(exponent, power_1) { }\n        {\n            if gt(base, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, base)) { panic_error_0x11() }\n            if and(exponent, power_1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(power_1, exponent)\n        }\n    }\n    function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, and(exponent, 0xff))\n    }\n    function checked_exp_unsigned(base, exponent) -> power\n    {\n        if iszero(exponent)\n        {\n            power := 1\n            leave\n        }\n        if iszero(base)\n        {\n            power := 0\n            leave\n        }\n        switch base\n        case 1 {\n            power := 1\n            leave\n        }\n        case 2 {\n            if gt(exponent, 255) { panic_error_0x11() }\n            power := shl(exponent, 1)\n            leave\n        }\n        if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n        {\n            power := exp(base, exponent)\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent)\n        if gt(power_1, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n        product := mul(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function checked_sub_t_uint8(x, y) -> diff\n    {\n        let x_1 := and(x, 0xff)\n        let y_1 := and(y, 0xff)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function increment_t_uint32(value) -> ret\n    {\n        let _1 := 0xffffffff\n        let value_1 := and(value, _1)\n        if eq(value_1, _1) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function increment_t_uint8(value) -> ret\n    {\n        let value_1 := and(value, 0xff)\n        if eq(value_1, 0xff) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_uint104(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint64(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint8(value)\n    {\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "6552": [
                  {
                    "length": 32,
                    "start": 363
                  },
                  {
                    "length": 32,
                    "start": 628
                  },
                  {
                    "length": 32,
                    "start": 792
                  },
                  {
                    "length": 32,
                    "start": 1385
                  }
                ],
                "6556": [
                  {
                    "length": 32,
                    "start": 436
                  },
                  {
                    "length": 32,
                    "start": 2915
                  },
                  {
                    "length": 32,
                    "start": 3062
                  }
                ],
                "6560": [
                  {
                    "length": 32,
                    "start": 233
                  },
                  {
                    "length": 32,
                    "start": 587
                  },
                  {
                    "length": 32,
                    "start": 971
                  },
                  {
                    "length": 32,
                    "start": 1530
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100df5760003560e01c80636d4bfa6e1161008c578063aaca392e11610066578063aaca392e14610228578063bd97a25214610249578063ce343bb61461026f578063f8d0ca4c1461029657600080fd5b80636d4bfa6e146101d65780638045fbcf146101e95780639d34ee24146101fc57600080fd5b80634019f2d6116100bd5780634019f2d61461016957806367306cf21461018f5780636cc25db7146101af57600080fd5b80630840bbdd146100e4578063094a2491146101355780633b5564f914610156575b600080fd5b61010b7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b610148610143366004611d3a565b6102b0565b60405190815260200161012c565b610148610164366004611c25565b6102c5565b7f000000000000000000000000000000000000000000000000000000000000000061010b565b6101a261019d366004611c08565b6102df565b60405161012c9190611e9c565b61010b7f000000000000000000000000000000000000000000000000000000000000000081565b6101486101e4366004611c8d565b6102f8565b6101a26101f736600461172b565b610312565b61020f61020a366004611c6f565b61048f565b60405167ffffffffffffffff909116815260200161012c565b61023b61023636600461177e565b61049b565b60405161012c929190611eaf565b7f000000000000000000000000000000000000000000000000000000000000000061010b565b61010b7f000000000000000000000000000000000000000000000000000000000000000081565b61029e601081565b60405160ff909116815260200161012c565b60006102bc8383610726565b90505b92915050565b60006102bc6102d936859003850185611c52565b83610774565b60606102bf6102f336849003840184611c52565b6107bf565b60006103058484846108c4565b60ff1690505b9392505050565b606060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0bb78f385856040518363ffffffff1660e01b8152600401610371929190611f14565b60006040518083038186803b15801561038957600080fd5b505afa15801561039d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103c59190810190611949565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf86866040518363ffffffff1660e01b8152600401610424929190611f14565b60006040518083038186803b15801561043c57600080fd5b505afa158015610450573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104789190810190611a44565b9050610485868383610963565b9695505050505050565b60006102bc8383610dce565b60608060006104ac84860186611829565b805190915086146105295760405162461bcd60e51b8152602060048201526024808201527f4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c6560448201527f6e6774680000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6040517fd0bb78f300000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063d0bb78f3906105a0908b908b90600401611f14565b60006040518083038186803b1580156105b857600080fd5b505afa1580156105cc573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105f49190810190611949565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf8a8a6040518363ffffffff1660e01b8152600401610653929190611f14565b60006040518083038186803b15801561066b57600080fd5b505afa15801561067f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106a79190810190611a44565b905060006106b68b8484610963565b6040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608e901b1660208201529091506000906034016040516020818303038152906040528051906020012090506107138282868887610e02565b9650965050505050509550959350505050565b6000811561076c576107396001836121e2565b6107469060ff85166121c3565b6001901b6107578360ff86166121c3565b6001901b61076591906121e2565b90506102bf565b5060016102bf565b6000808360e00151836010811061078d5761078d6122b6565b602002015163ffffffff16905060006107aa856000015185610726565b90506107b681836120b3565b95945050505050565b60606000826020015160ff1667ffffffffffffffff8111156107e3576107e36122cc565b60405190808252806020026020018201604052801561080c578160200160208202803683370190505b508351909150600190610820906002612118565b61082a91906121e2565b8160008151811061083d5761083d6122b6565b602090810291909101015260015b836020015160ff168160ff1610156108bd57835160ff168261086e60018461221e565b60ff1681518110610881576108816122b6565b6020026020010151901b828260ff16815181106108a0576108a06122b6565b6020908102919091010152806108b581612280565b91505061084b565b5092915050565b80516000908190815b8160ff168160ff161015610958576000858260ff16815181106108f2576108f26122b6565b6020026020010151905080871681891614610937578360ff168360ff16141561092257600094505050505061030b565b61092c848461221e565b94505050505061030b565b8361094181612280565b94505050808061095090612280565b9150506108cd565b50610485828261221e565b815160609060008167ffffffffffffffff811115610983576109836122cc565b6040519080825280602002602001820160405280156109ac578160200160208202803683370190505b50905060008267ffffffffffffffff8111156109ca576109ca6122cc565b6040519080825280602002602001820160405280156109f3578160200160208202803683370190505b50905060005b838163ffffffff161015610b2257858163ffffffff1681518110610a1f57610a1f6122b6565b60200260200101516040015163ffffffff16878263ffffffff1681518110610a4957610a496122b6565b60200260200101516040015103838263ffffffff1681518110610a6e57610a6e6122b6565b602002602001019067ffffffffffffffff16908167ffffffffffffffff1681525050858163ffffffff1681518110610aa857610aa86122b6565b60200260200101516060015163ffffffff16878263ffffffff1681518110610ad257610ad26122b6565b60200260200101516040015103828263ffffffff1681518110610af757610af76122b6565b67ffffffffffffffff9092166020928302919091019091015280610b1a8161225c565b9150506109f9565b506040517f68c7fd5700000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906368c7fd5790610b9c908b9087908790600401611ddb565b60006040518083038186803b158015610bb457600080fd5b505afa158015610bc8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bf09190810190611b70565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638e6d536a85856040518363ffffffff1660e01b8152600401610c4f929190611f5f565b60006040518083038186803b158015610c6757600080fd5b505afa158015610c7b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ca39190810190611b70565b905060008567ffffffffffffffff811115610cc057610cc06122cc565b604051908082528060200260200182016040528015610ce9578160200160208202803683370190505b50905060005b86811015610dc057828181518110610d0957610d096122b6565b602002602001015160001415610d3e576000828281518110610d2d57610d2d6122b6565b602002602001018181525050610dae565b828181518110610d5057610d506122b6565b6020026020010151848281518110610d6a57610d6a6122b6565b6020026020010151670de0b6b3a7640000610d8591906121c3565b610d8f91906120b3565b828281518110610da157610da16122b6565b6020026020010181815250505b80610db881612241565b915050610cef565b509998505050505050505050565b6000670de0b6b3a76400008360c001516cffffffffffffffffffffffffff1683610df891906121c3565b6102bc91906120b3565b6060806000875167ffffffffffffffff811115610e2157610e216122cc565b604051908082528060200260200182016040528015610e4a578160200160208202803683370190505b5090506000885167ffffffffffffffff811115610e6957610e696122cc565b604051908082528060200260200182016040528015610e9c57816020015b6060815260200190600190039081610e875790505b5090504260005b88518163ffffffff16101561108957868163ffffffff1681518110610eca57610eca6122b6565b602002602001015160a0015163ffffffff16898263ffffffff1681518110610ef457610ef46122b6565b602002602001015160400151610f0a9190612062565b67ffffffffffffffff168267ffffffffffffffff1610610f6c5760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d6578706972656400000000000000000000006044820152606401610520565b6000610fb6888363ffffffff1681518110610f8957610f896122b6565b60200260200101518d8463ffffffff1681518110610fa957610fa96122b6565b6020026020010151610dce565b90506110308a8363ffffffff1681518110610fd357610fd36122b6565b6020026020010151600001518267ffffffffffffffff168d8c8663ffffffff1681518110611003576110036122b6565b60200260200101518c8763ffffffff1681518110611023576110236122b6565b60200260200101516110bc565b868463ffffffff1681518110611048576110486122b6565b60200260200101868563ffffffff1681518110611067576110676122b6565b60209081029190910101919091525250806110818161225c565b915050610ea3565b508160405160200161109b9190611e1c565b60405160208183030381529060405293508294505050509550959350505050565b6000606060006110cb846107bf565b85516040805160108082526102208201909252929350909160009160208201610200803683370190505090506000866080015163ffffffff168363ffffffff1611156111595760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f657863656564732d6d61782d757365722d7069636b73006044820152606401610520565b60005b8363ffffffff168163ffffffff161015611371578a898263ffffffff1681518110611189576111896122b6565b602002602001015167ffffffffffffffff16106111e85760405162461bcd60e51b815260206004820181905260248201527f4472617743616c632f696e73756666696369656e742d757365722d7069636b736044820152606401610520565b63ffffffff81161561129f57886112006001836121f9565b63ffffffff1681518110611216576112166122b6565b602002602001015167ffffffffffffffff16898263ffffffff1681518110611240576112406122b6565b602002602001015167ffffffffffffffff161161129f5760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7069636b732d617363656e64696e6700000000000000006044820152606401610520565b60008a8a8363ffffffff16815181106112ba576112ba6122b6565b60200260200101516040516020016112e692919091825267ffffffffffffffff16602082015260400190565b6040516020818303038152906040528051906020012060001c9050600061130e828f896108c4565b9050601060ff8216101561135c578360ff168160ff16111561132e578093505b848160ff1681518110611343576113436122b6565b60200260200101805180919061135890612241565b9052505b505080806113699061225c565b91505061115c565b5060008061137f8984611441565b905060005b8360ff16811161140d5760008582815181106113a2576113a26122b6565b602002602001015111156113fb578481815181106113c2576113c26122b6565b60200260200101518282815181106113dc576113dc6122b6565b60200260200101516113ee91906121c3565b6113f8908461204a565b92505b8061140581612241565b915050611384565b50633b9aca008961010001518361142491906121c3565b61142e91906120b3565b9d939c50929a5050505050505050505050565b6060600061145083600161208e565b60ff1667ffffffffffffffff81111561146b5761146b6122cc565b604051908082528060200260200182016040528015611494578160200160208202803683370190505b50905060005b8360ff168160ff16116114e6576114b4858260ff16610774565b828260ff16815181106114c9576114c96122b6565b6020908102919091010152806114de81612280565b91505061149a565b509392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461151257600080fd5b919050565b600082601f83011261152857600080fd5b611530611fd1565b8083856102008601111561154357600080fd5b60005b601081101561156f57813561155a81612300565b84526020938401939190910190600101611546565b509095945050505050565b600082601f83011261158b57600080fd5b611593611fd1565b808385610200860111156115a657600080fd5b60005b601081101561156f5781516115bd81612300565b845260209384019391909101906001016115a9565b60008083601f8401126115e457600080fd5b50813567ffffffffffffffff8111156115fc57600080fd5b6020830191508360208260051b850101111561161757600080fd5b9250929050565b6000610300828403121561163157600080fd5b50919050565b6000610300828403121561164a57600080fd5b611652611f84565b905061165d82611715565b815261166b60208301611715565b602082015261167c604083016116ff565b604082015261168d606083016116ff565b606082015261169e608083016116ff565b60808201526116af60a083016116ff565b60a08201526116c060c083016116e9565b60c08201526116d28360e08401611517565b60e08201526102e082013561010082015292915050565b8035611512816122e2565b8051611512816122e2565b803561151281612300565b805161151281612300565b803561151281612328565b805161151281612328565b60008060006040848603121561174057600080fd5b611749846114ee565b9250602084013567ffffffffffffffff81111561176557600080fd5b611771868287016115d2565b9497909650939450505050565b60008060008060006060868803121561179657600080fd5b61179f866114ee565b9450602086013567ffffffffffffffff808211156117bc57600080fd5b6117c889838a016115d2565b909650945060408801359150808211156117e157600080fd5b818801915088601f8301126117f557600080fd5b81358181111561180457600080fd5b89602082850101111561181657600080fd5b9699959850939650602001949392505050565b6000602080838503121561183c57600080fd5b823567ffffffffffffffff8082111561185457600080fd5b818501915085601f83011261186857600080fd5b813561187b61187682612026565b611ff5565b80828252858201915085850189878560051b880101111561189b57600080fd5b60005b8481101561193a578135868111156118b557600080fd5b8701603f81018c136118c657600080fd5b888101356118d661187682612026565b808282528b82019150604084018f60408560051b87010111156118f857600080fd5b600094505b8385101561192457803561191081612312565b835260019490940193918c01918c016118fd565b508752505050928701929087019060010161189e565b50909998505050505050505050565b6000602080838503121561195c57600080fd5b825167ffffffffffffffff81111561197357600080fd5b8301601f8101851361198457600080fd5b805161199261187682612026565b8181528381019083850160a0808502860187018a10156119b157600080fd5b60009550855b85811015611a355781838c0312156119cd578687fd5b6119d5611fae565b83518152888401516119e681612300565b818a01526040848101516119f981612312565b90820152606084810151611a0c81612312565b90820152608084810151611a1f81612300565b90820152855293870193918101916001016119b7565b50919998505050505050505050565b60006020808385031215611a5757600080fd5b825167ffffffffffffffff811115611a6e57600080fd5b8301601f81018513611a7f57600080fd5b8051611a8d61187682612026565b81815283810190838501610300808502860187018a1015611aad57600080fd5b60009550855b85811015611a355781838c031215611ac9578687fd5b611ad1611f84565b611ada84611720565b8152611ae7898501611720565b898201526040611af881860161170a565b908201526060611b0985820161170a565b908201526080611b1a85820161170a565b9082015260a0611b2b85820161170a565b9082015260c0611b3c8582016116f4565b9082015260e0611b4e8d86830161157a565b908201526102e084015161010082015285529387019391810191600101611ab3565b60006020808385031215611b8357600080fd5b825167ffffffffffffffff811115611b9a57600080fd5b8301601f81018513611bab57600080fd5b8051611bb961187682612026565b80828252848201915084840188868560051b8701011115611bd957600080fd5b600094505b83851015611bfc578051835260019490940193918501918501611bde565b50979650505050505050565b60006103008284031215611c1b57600080fd5b6102bc838361161e565b6000806103208385031215611c3957600080fd5b611c43848461161e565b94610300939093013593505050565b60006103008284031215611c6557600080fd5b6102bc8383611637565b6000806103208385031215611c8357600080fd5b611c438484611637565b600080600060608486031215611ca257600080fd5b833592506020808501359250604085013567ffffffffffffffff811115611cc857600080fd5b8501601f81018713611cd957600080fd5b8035611ce761187682612026565b8082825284820191508484018a868560051b8701011115611d0757600080fd5b600094505b83851015611d2a578035835260019490940193918501918501611d0c565b5080955050505050509250925092565b60008060408385031215611d4d57600080fd5b8235611d5881612328565b946020939093013593505050565b600081518084526020808501945080840160005b83811015611d9657815187529582019590820190600101611d7a565b509495945050505050565b600081518084526020808501945080840160005b83811015611d9657815167ffffffffffffffff1687529582019590820190600101611db5565b73ffffffffffffffffffffffffffffffffffffffff84168152606060208201526000611e0a6060830185611da1565b82810360408401526104858185611da1565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015611e8f577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452611e7d858351611d66565b94509285019290850190600101611e43565b5092979650505050505050565b6020815260006102bc6020830184611d66565b604081526000611ec26040830185611d66565b602083820381850152845180835260005b81811015611eee578681018301518482018401528201611ed3565b81811115611eff5760008383860101525b50601f01601f19169190910101949350505050565b60208082528181018390526000908460408401835b86811015611f54578235611f3c81612300565b63ffffffff1682529183019190830190600101611f29565b509695505050505050565b604081526000611f726040830185611da1565b82810360208401526107b68185611da1565b604051610120810167ffffffffffffffff81118282101715611fa857611fa86122cc565b60405290565b60405160a0810167ffffffffffffffff81118282101715611fa857611fa86122cc565b604051610200810167ffffffffffffffff81118282101715611fa857611fa86122cc565b604051601f8201601f1916810167ffffffffffffffff8111828210171561201e5761201e6122cc565b604052919050565b600067ffffffffffffffff821115612040576120406122cc565b5060051b60200190565b6000821982111561205d5761205d6122a0565b500190565b600067ffffffffffffffff808316818516808303821115612085576120856122a0565b01949350505050565b600060ff821660ff84168060ff038211156120ab576120ab6122a0565b019392505050565b6000826120d057634e487b7160e01b600052601260045260246000fd5b500490565b600181815b808511156121105781600019048211156120f6576120f66122a0565b8085161561210357918102915b93841c93908002906120da565b509250929050565b60006102bc60ff841683600082612131575060016102bf565b8161213e575060006102bf565b8160018114612154576002811461215e5761217a565b60019150506102bf565b60ff84111561216f5761216f6122a0565b50506001821b6102bf565b5060208310610133831016604e8410600b841016171561219d575081810a6102bf565b6121a783836120d5565b80600019048211156121bb576121bb6122a0565b029392505050565b60008160001904831182151516156121dd576121dd6122a0565b500290565b6000828210156121f4576121f46122a0565b500390565b600063ffffffff83811690831681811015612216576122166122a0565b039392505050565b600060ff821660ff841680821015612238576122386122a0565b90039392505050565b6000600019821415612255576122556122a0565b5060010190565b600063ffffffff80831681811415612276576122766122a0565b6001019392505050565b600060ff821660ff811415612297576122976122a0565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6cffffffffffffffffffffffffff811681146122fd57600080fd5b50565b63ffffffff811681146122fd57600080fd5b67ffffffffffffffff811681146122fd57600080fd5b60ff811681146122fd57600080fdfea26469706673582212206a125d488fc439371055273ba772b81ba4f430a98aead6f7e08658855ee24b9d64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xDF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6D4BFA6E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xAACA392E GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xAACA392E EQ PUSH2 0x228 JUMPI DUP1 PUSH4 0xBD97A252 EQ PUSH2 0x249 JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x26F JUMPI DUP1 PUSH4 0xF8D0CA4C EQ PUSH2 0x296 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6D4BFA6E EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0x8045FBCF EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0x9D34EE24 EQ PUSH2 0x1FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4019F2D6 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0x169 JUMPI DUP1 PUSH4 0x67306CF2 EQ PUSH2 0x18F JUMPI DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0x1AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x840BBDD EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x94A2491 EQ PUSH2 0x135 JUMPI DUP1 PUSH4 0x3B5564F9 EQ PUSH2 0x156 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10B PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x148 PUSH2 0x143 CALLDATASIZE PUSH1 0x4 PUSH2 0x1D3A JUMP JUMPDEST PUSH2 0x2B0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12C JUMP JUMPDEST PUSH2 0x148 PUSH2 0x164 CALLDATASIZE PUSH1 0x4 PUSH2 0x1C25 JUMP JUMPDEST PUSH2 0x2C5 JUMP JUMPDEST PUSH32 0x0 PUSH2 0x10B JUMP JUMPDEST PUSH2 0x1A2 PUSH2 0x19D CALLDATASIZE PUSH1 0x4 PUSH2 0x1C08 JUMP JUMPDEST PUSH2 0x2DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x12C SWAP2 SWAP1 PUSH2 0x1E9C JUMP JUMPDEST PUSH2 0x10B PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x148 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x1C8D JUMP JUMPDEST PUSH2 0x2F8 JUMP JUMPDEST PUSH2 0x1A2 PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0x172B JUMP JUMPDEST PUSH2 0x312 JUMP JUMPDEST PUSH2 0x20F PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0x1C6F JUMP JUMPDEST PUSH2 0x48F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12C JUMP JUMPDEST PUSH2 0x23B PUSH2 0x236 CALLDATASIZE PUSH1 0x4 PUSH2 0x177E JUMP JUMPDEST PUSH2 0x49B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x12C SWAP3 SWAP2 SWAP1 PUSH2 0x1EAF JUMP JUMPDEST PUSH32 0x0 PUSH2 0x10B JUMP JUMPDEST PUSH2 0x10B PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x29E PUSH1 0x10 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12C JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BC DUP4 DUP4 PUSH2 0x726 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BC PUSH2 0x2D9 CALLDATASIZE DUP6 SWAP1 SUB DUP6 ADD DUP6 PUSH2 0x1C52 JUMP JUMPDEST DUP4 PUSH2 0x774 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2BF PUSH2 0x2F3 CALLDATASIZE DUP5 SWAP1 SUB DUP5 ADD DUP5 PUSH2 0x1C52 JUMP JUMPDEST PUSH2 0x7BF JUMP JUMPDEST PUSH1 0x0 PUSH2 0x305 DUP5 DUP5 DUP5 PUSH2 0x8C4 JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD0BB78F3 DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x371 SWAP3 SWAP2 SWAP1 PUSH2 0x1F14 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x389 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x39D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x3C5 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1949 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP7 DUP7 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x424 SWAP3 SWAP2 SWAP1 PUSH2 0x1F14 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x43C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x450 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x478 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1A44 JUMP JUMPDEST SWAP1 POP PUSH2 0x485 DUP7 DUP4 DUP4 PUSH2 0x963 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BC DUP4 DUP4 PUSH2 0xDCE JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 PUSH2 0x4AC DUP5 DUP7 ADD DUP7 PUSH2 0x1829 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP DUP7 EQ PUSH2 0x529 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E76616C69642D7069636B2D696E64696365732D6C65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E67746800000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xD0BB78F300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0xD0BB78F3 SWAP1 PUSH2 0x5A0 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x1F14 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5CC JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x5F4 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1949 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP11 DUP11 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x653 SWAP3 SWAP2 SWAP1 PUSH2 0x1F14 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x66B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x67F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x6A7 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1A44 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x6B6 DUP12 DUP5 DUP5 PUSH2 0x963 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000 PUSH1 0x60 DUP15 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x34 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH2 0x713 DUP3 DUP3 DUP7 DUP9 DUP8 PUSH2 0xE02 JUMP JUMPDEST SWAP7 POP SWAP7 POP POP POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO PUSH2 0x76C JUMPI PUSH2 0x739 PUSH1 0x1 DUP4 PUSH2 0x21E2 JUMP JUMPDEST PUSH2 0x746 SWAP1 PUSH1 0xFF DUP6 AND PUSH2 0x21C3 JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x757 DUP4 PUSH1 0xFF DUP7 AND PUSH2 0x21C3 JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x765 SWAP2 SWAP1 PUSH2 0x21E2 JUMP JUMPDEST SWAP1 POP PUSH2 0x2BF JUMP JUMPDEST POP PUSH1 0x1 PUSH2 0x2BF JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0xE0 ADD MLOAD DUP4 PUSH1 0x10 DUP2 LT PUSH2 0x78D JUMPI PUSH2 0x78D PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x7AA DUP6 PUSH1 0x0 ADD MLOAD DUP6 PUSH2 0x726 JUMP JUMPDEST SWAP1 POP PUSH2 0x7B6 DUP2 DUP4 PUSH2 0x20B3 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7E3 JUMPI PUSH2 0x7E3 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x80C JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP DUP4 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 SWAP1 PUSH2 0x820 SWAP1 PUSH1 0x2 PUSH2 0x2118 JUMP JUMPDEST PUSH2 0x82A SWAP2 SWAP1 PUSH2 0x21E2 JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x83D JUMPI PUSH2 0x83D PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 JUMPDEST DUP4 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x8BD JUMPI DUP4 MLOAD PUSH1 0xFF AND DUP3 PUSH2 0x86E PUSH1 0x1 DUP5 PUSH2 0x221E JUMP JUMPDEST PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x881 JUMPI PUSH2 0x881 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 SHL DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x8A0 JUMPI PUSH2 0x8A0 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x8B5 DUP2 PUSH2 0x2280 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x84B JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x958 JUMPI PUSH1 0x0 DUP6 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x8F2 JUMPI PUSH2 0x8F2 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP DUP1 DUP8 AND DUP2 DUP10 AND EQ PUSH2 0x937 JUMPI DUP4 PUSH1 0xFF AND DUP4 PUSH1 0xFF AND EQ ISZERO PUSH2 0x922 JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0x30B JUMP JUMPDEST PUSH2 0x92C DUP5 DUP5 PUSH2 0x221E JUMP JUMPDEST SWAP5 POP POP POP POP POP PUSH2 0x30B JUMP JUMPDEST DUP4 PUSH2 0x941 DUP2 PUSH2 0x2280 JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0x950 SWAP1 PUSH2 0x2280 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x8CD JUMP JUMPDEST POP PUSH2 0x485 DUP3 DUP3 PUSH2 0x221E JUMP JUMPDEST DUP2 MLOAD PUSH1 0x60 SWAP1 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x983 JUMPI PUSH2 0x983 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x9AC JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x9CA JUMPI PUSH2 0x9CA PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x9F3 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xB22 JUMPI DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xA1F JUMPI PUSH2 0xA1F PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xA49 JUMPI PUSH2 0xA49 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP4 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xA6E JUMPI PUSH2 0xA6E PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xAA8 JUMPI PUSH2 0xAA8 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x60 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xAD2 JUMPI PUSH2 0xAD2 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP3 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xAF7 JUMPI PUSH2 0xAF7 PUSH2 0x22B6 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE DUP1 PUSH2 0xB1A DUP2 PUSH2 0x225C JUMP JUMPDEST SWAP2 POP POP PUSH2 0x9F9 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x68C7FD5700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0x68C7FD57 SWAP1 PUSH2 0xB9C SWAP1 DUP12 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x1DDB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBB4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xBC8 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0xBF0 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1B70 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x8E6D536A DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC4F SWAP3 SWAP2 SWAP1 PUSH2 0x1F5F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xC67 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC7B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0xCA3 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1B70 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xCC0 JUMPI PUSH2 0xCC0 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xCE9 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0xDC0 JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0xD09 JUMPI PUSH2 0xD09 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 EQ ISZERO PUSH2 0xD3E JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xD2D JUMPI PUSH2 0xD2D PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP PUSH2 0xDAE JUMP JUMPDEST DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0xD50 JUMPI PUSH2 0xD50 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xD6A JUMPI PUSH2 0xD6A PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xDE0B6B3A7640000 PUSH2 0xD85 SWAP2 SWAP1 PUSH2 0x21C3 JUMP JUMPDEST PUSH2 0xD8F SWAP2 SWAP1 PUSH2 0x20B3 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xDA1 JUMPI PUSH2 0xDA1 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0xDB8 DUP2 PUSH2 0x2241 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xCEF JUMP JUMPDEST POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 DUP4 PUSH1 0xC0 ADD MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0xDF8 SWAP2 SWAP1 PUSH2 0x21C3 JUMP JUMPDEST PUSH2 0x2BC SWAP2 SWAP1 PUSH2 0x20B3 JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 DUP8 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE21 JUMPI PUSH2 0xE21 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xE4A JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP9 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE69 JUMPI PUSH2 0xE69 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xE9C JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xE87 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP9 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x1089 JUMPI DUP7 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xECA JUMPI PUSH2 0xECA PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xA0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xEF4 JUMPI PUSH2 0xEF4 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH2 0xF0A SWAP2 SWAP1 PUSH2 0x2062 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xF6C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F647261772D657870697265640000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x520 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFB6 DUP9 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xF89 JUMPI PUSH2 0xF89 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP14 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFA9 JUMPI PUSH2 0xFA9 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xDCE JUMP JUMPDEST SWAP1 POP PUSH2 0x1030 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFD3 JUMPI PUSH2 0xFD3 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP14 DUP13 DUP7 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1003 JUMPI PUSH2 0x1003 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP13 DUP8 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1023 JUMPI PUSH2 0x1023 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x10BC JUMP JUMPDEST DUP7 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1048 JUMPI PUSH2 0x1048 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP7 DUP6 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1067 JUMPI PUSH2 0x1067 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD SWAP2 SWAP1 SWAP2 MSTORE MSTORE POP DUP1 PUSH2 0x1081 DUP2 PUSH2 0x225C JUMP JUMPDEST SWAP2 POP POP PUSH2 0xEA3 JUMP JUMPDEST POP DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x109B SWAP2 SWAP1 PUSH2 0x1E1C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP DUP3 SWAP5 POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 PUSH1 0x0 PUSH2 0x10CB DUP5 PUSH2 0x7BF JUMP JUMPDEST DUP6 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x10 DUP1 DUP3 MSTORE PUSH2 0x220 DUP3 ADD SWAP1 SWAP3 MSTORE SWAP3 SWAP4 POP SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH1 0x20 DUP3 ADD PUSH2 0x200 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH1 0x0 DUP7 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0x1159 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F657863656564732D6D61782D757365722D7069636B7300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x520 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x1371 JUMPI DUP11 DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1189 JUMPI PUSH2 0x1189 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0x11E8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E73756666696369656E742D757365722D7069636B73 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x520 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO PUSH2 0x129F JUMPI DUP9 PUSH2 0x1200 PUSH1 0x1 DUP4 PUSH2 0x21F9 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1216 JUMPI PUSH2 0x1216 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1240 JUMPI PUSH2 0x1240 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0x129F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7069636B732D617363656E64696E670000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x520 JUMP JUMPDEST PUSH1 0x0 DUP11 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x12BA JUMPI PUSH2 0x12BA PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x12E6 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP PUSH1 0x0 PUSH2 0x130E DUP3 DUP16 DUP10 PUSH2 0x8C4 JUMP JUMPDEST SWAP1 POP PUSH1 0x10 PUSH1 0xFF DUP3 AND LT ISZERO PUSH2 0x135C JUMPI DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT ISZERO PUSH2 0x132E JUMPI DUP1 SWAP4 POP JUMPDEST DUP5 DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1343 JUMPI PUSH2 0x1343 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP1 MLOAD DUP1 SWAP2 SWAP1 PUSH2 0x1358 SWAP1 PUSH2 0x2241 JUMP JUMPDEST SWAP1 MSTORE POP JUMPDEST POP POP DUP1 DUP1 PUSH2 0x1369 SWAP1 PUSH2 0x225C JUMP JUMPDEST SWAP2 POP POP PUSH2 0x115C JUMP JUMPDEST POP PUSH1 0x0 DUP1 PUSH2 0x137F DUP10 DUP5 PUSH2 0x1441 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 GT PUSH2 0x140D JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x13A2 JUMPI PUSH2 0x13A2 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD GT ISZERO PUSH2 0x13FB JUMPI DUP5 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x13C2 JUMPI PUSH2 0x13C2 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x13DC JUMPI PUSH2 0x13DC PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x13EE SWAP2 SWAP1 PUSH2 0x21C3 JUMP JUMPDEST PUSH2 0x13F8 SWAP1 DUP5 PUSH2 0x204A JUMP JUMPDEST SWAP3 POP JUMPDEST DUP1 PUSH2 0x1405 DUP2 PUSH2 0x2241 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1384 JUMP JUMPDEST POP PUSH4 0x3B9ACA00 DUP10 PUSH2 0x100 ADD MLOAD DUP4 PUSH2 0x1424 SWAP2 SWAP1 PUSH2 0x21C3 JUMP JUMPDEST PUSH2 0x142E SWAP2 SWAP1 PUSH2 0x20B3 JUMP JUMPDEST SWAP14 SWAP4 SWAP13 POP SWAP3 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x1450 DUP4 PUSH1 0x1 PUSH2 0x208E JUMP JUMPDEST PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x146B JUMPI PUSH2 0x146B PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1494 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT PUSH2 0x14E6 JUMPI PUSH2 0x14B4 DUP6 DUP3 PUSH1 0xFF AND PUSH2 0x774 JUMP JUMPDEST DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x14C9 JUMPI PUSH2 0x14C9 PUSH2 0x22B6 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x14DE DUP2 PUSH2 0x2280 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x149A JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1512 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1528 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1530 PUSH2 0x1FD1 JUMP JUMPDEST DUP1 DUP4 DUP6 PUSH2 0x200 DUP7 ADD GT ISZERO PUSH2 0x1543 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x156F JUMPI DUP2 CALLDATALOAD PUSH2 0x155A DUP2 PUSH2 0x2300 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1546 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x158B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1593 PUSH2 0x1FD1 JUMP JUMPDEST DUP1 DUP4 DUP6 PUSH2 0x200 DUP7 ADD GT ISZERO PUSH2 0x15A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x156F JUMPI DUP2 MLOAD PUSH2 0x15BD DUP2 PUSH2 0x2300 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x15A9 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x15E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x15FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1617 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1631 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x164A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1652 PUSH2 0x1F84 JUMP JUMPDEST SWAP1 POP PUSH2 0x165D DUP3 PUSH2 0x1715 JUMP JUMPDEST DUP2 MSTORE PUSH2 0x166B PUSH1 0x20 DUP4 ADD PUSH2 0x1715 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x167C PUSH1 0x40 DUP4 ADD PUSH2 0x16FF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x168D PUSH1 0x60 DUP4 ADD PUSH2 0x16FF JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x169E PUSH1 0x80 DUP4 ADD PUSH2 0x16FF JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x16AF PUSH1 0xA0 DUP4 ADD PUSH2 0x16FF JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD MSTORE PUSH2 0x16C0 PUSH1 0xC0 DUP4 ADD PUSH2 0x16E9 JUMP JUMPDEST PUSH1 0xC0 DUP3 ADD MSTORE PUSH2 0x16D2 DUP4 PUSH1 0xE0 DUP5 ADD PUSH2 0x1517 JUMP JUMPDEST PUSH1 0xE0 DUP3 ADD MSTORE PUSH2 0x2E0 DUP3 ADD CALLDATALOAD PUSH2 0x100 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x1512 DUP2 PUSH2 0x22E2 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x1512 DUP2 PUSH2 0x22E2 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x1512 DUP2 PUSH2 0x2300 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x1512 DUP2 PUSH2 0x2300 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x1512 DUP2 PUSH2 0x2328 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x1512 DUP2 PUSH2 0x2328 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1740 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1749 DUP5 PUSH2 0x14EE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1765 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1771 DUP7 DUP3 DUP8 ADD PUSH2 0x15D2 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1796 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x179F DUP7 PUSH2 0x14EE JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x17BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x17C8 DUP10 DUP4 DUP11 ADD PUSH2 0x15D2 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x17E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x17F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1804 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x1816 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x183C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1854 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1868 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x187B PUSH2 0x1876 DUP3 PUSH2 0x2026 JUMP JUMPDEST PUSH2 0x1FF5 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP6 DUP3 ADD SWAP2 POP DUP6 DUP6 ADD DUP10 DUP8 DUP6 PUSH1 0x5 SHL DUP9 ADD ADD GT ISZERO PUSH2 0x189B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x193A JUMPI DUP2 CALLDATALOAD DUP7 DUP2 GT ISZERO PUSH2 0x18B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 ADD PUSH1 0x3F DUP2 ADD DUP13 SGT PUSH2 0x18C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 DUP2 ADD CALLDATALOAD PUSH2 0x18D6 PUSH2 0x1876 DUP3 PUSH2 0x2026 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP12 DUP3 ADD SWAP2 POP PUSH1 0x40 DUP5 ADD DUP16 PUSH1 0x40 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x18F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x1924 JUMPI DUP1 CALLDATALOAD PUSH2 0x1910 DUP2 PUSH2 0x2312 JUMP JUMPDEST DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP13 ADD SWAP2 DUP13 ADD PUSH2 0x18FD JUMP JUMPDEST POP DUP8 MSTORE POP POP POP SWAP3 DUP8 ADD SWAP3 SWAP1 DUP8 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x189E JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x195C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1973 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1984 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1992 PUSH2 0x1876 DUP3 PUSH2 0x2026 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH1 0xA0 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x19B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x1A35 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x19CD JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x19D5 PUSH2 0x1FAE JUMP JUMPDEST DUP4 MLOAD DUP2 MSTORE DUP9 DUP5 ADD MLOAD PUSH2 0x19E6 DUP2 PUSH2 0x2300 JUMP JUMPDEST DUP2 DUP11 ADD MSTORE PUSH1 0x40 DUP5 DUP2 ADD MLOAD PUSH2 0x19F9 DUP2 PUSH2 0x2312 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP5 DUP2 ADD MLOAD PUSH2 0x1A0C DUP2 PUSH2 0x2312 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP5 DUP2 ADD MLOAD PUSH2 0x1A1F DUP2 PUSH2 0x2300 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x19B7 JUMP JUMPDEST POP SWAP2 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A57 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1A6E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1A7F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1A8D PUSH2 0x1876 DUP3 PUSH2 0x2026 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH2 0x300 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1AAD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x1A35 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x1AC9 JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1AD1 PUSH2 0x1F84 JUMP JUMPDEST PUSH2 0x1ADA DUP5 PUSH2 0x1720 JUMP JUMPDEST DUP2 MSTORE PUSH2 0x1AE7 DUP10 DUP6 ADD PUSH2 0x1720 JUMP JUMPDEST DUP10 DUP3 ADD MSTORE PUSH1 0x40 PUSH2 0x1AF8 DUP2 DUP7 ADD PUSH2 0x170A JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 PUSH2 0x1B09 DUP6 DUP3 ADD PUSH2 0x170A JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 PUSH2 0x1B1A DUP6 DUP3 ADD PUSH2 0x170A JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 PUSH2 0x1B2B DUP6 DUP3 ADD PUSH2 0x170A JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 PUSH2 0x1B3C DUP6 DUP3 ADD PUSH2 0x16F4 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 PUSH2 0x1B4E DUP14 DUP7 DUP4 ADD PUSH2 0x157A JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH2 0x2E0 DUP5 ADD MLOAD PUSH2 0x100 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1AB3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1B83 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B9A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1BAB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1BB9 PUSH2 0x1876 DUP3 PUSH2 0x2026 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP5 DUP3 ADD SWAP2 POP DUP5 DUP5 ADD DUP9 DUP7 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x1BD9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x1BFC JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP6 ADD SWAP2 DUP6 ADD PUSH2 0x1BDE JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C1B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2BC DUP4 DUP4 PUSH2 0x161E JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x320 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C39 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1C43 DUP5 DUP5 PUSH2 0x161E JUMP JUMPDEST SWAP5 PUSH2 0x300 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C65 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2BC DUP4 DUP4 PUSH2 0x1637 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x320 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C83 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1C43 DUP5 DUP5 PUSH2 0x1637 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1CA2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP1 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1CC8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x1CD9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x1CE7 PUSH2 0x1876 DUP3 PUSH2 0x2026 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP5 DUP3 ADD SWAP2 POP DUP5 DUP5 ADD DUP11 DUP7 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x1D07 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x1D2A JUMPI DUP1 CALLDATALOAD DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP6 ADD SWAP2 DUP6 ADD PUSH2 0x1D0C JUMP JUMPDEST POP DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1D4D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1D58 DUP2 PUSH2 0x2328 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1D96 JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1D7A JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1D96 JUMPI DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1DB5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x1E0A PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x1DA1 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x485 DUP2 DUP6 PUSH2 0x1DA1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 ADD DUP2 DUP5 MSTORE DUP1 DUP6 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP7 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP8 ADD ADD SWAP3 POP DUP4 DUP8 ADD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1E8F JUMPI PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x1E7D DUP6 DUP4 MLOAD PUSH2 0x1D66 JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1E43 JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x2BC PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1D66 JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1EC2 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1D66 JUMP JUMPDEST PUSH1 0x20 DUP4 DUP3 SUB DUP2 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1EEE JUMPI DUP7 DUP2 ADD DUP4 ADD MLOAD DUP5 DUP3 ADD DUP5 ADD MSTORE DUP3 ADD PUSH2 0x1ED3 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x1EFF JUMPI PUSH1 0x0 DUP4 DUP4 DUP7 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP5 PUSH1 0x40 DUP5 ADD DUP4 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x1F54 JUMPI DUP3 CALLDATALOAD PUSH2 0x1F3C DUP2 PUSH2 0x2300 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 MSTORE SWAP2 DUP4 ADD SWAP2 SWAP1 DUP4 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1F29 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1F72 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1DA1 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x7B6 DUP2 DUP6 PUSH2 0x1DA1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1FA8 JUMPI PUSH2 0x1FA8 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1FA8 JUMPI PUSH2 0x1FA8 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1FA8 JUMPI PUSH2 0x1FA8 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x201E JUMPI PUSH2 0x201E PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2040 JUMPI PUSH2 0x2040 PUSH2 0x22CC JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x205D JUMPI PUSH2 0x205D PUSH2 0x22A0 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x2085 JUMPI PUSH2 0x2085 PUSH2 0x22A0 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 PUSH1 0xFF SUB DUP3 GT ISZERO PUSH2 0x20AB JUMPI PUSH2 0x20AB PUSH2 0x22A0 JUMP JUMPDEST ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x20D0 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 JUMPDEST DUP1 DUP6 GT ISZERO PUSH2 0x2110 JUMPI DUP2 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x20F6 JUMPI PUSH2 0x20F6 PUSH2 0x22A0 JUMP JUMPDEST DUP1 DUP6 AND ISZERO PUSH2 0x2103 JUMPI SWAP2 DUP2 MUL SWAP2 JUMPDEST SWAP4 DUP5 SHR SWAP4 SWAP1 DUP1 MUL SWAP1 PUSH2 0x20DA JUMP JUMPDEST POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BC PUSH1 0xFF DUP5 AND DUP4 PUSH1 0x0 DUP3 PUSH2 0x2131 JUMPI POP PUSH1 0x1 PUSH2 0x2BF JUMP JUMPDEST DUP2 PUSH2 0x213E JUMPI POP PUSH1 0x0 PUSH2 0x2BF JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x2154 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x215E JUMPI PUSH2 0x217A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x2BF JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x216F JUMPI PUSH2 0x216F PUSH2 0x22A0 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x2BF JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x219D JUMPI POP DUP2 DUP2 EXP PUSH2 0x2BF JUMP JUMPDEST PUSH2 0x21A7 DUP4 DUP4 PUSH2 0x20D5 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x21BB JUMPI PUSH2 0x21BB PUSH2 0x22A0 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x21DD JUMPI PUSH2 0x21DD PUSH2 0x22A0 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x21F4 JUMPI PUSH2 0x21F4 PUSH2 0x22A0 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x2216 JUMPI PUSH2 0x2216 PUSH2 0x22A0 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 DUP3 LT ISZERO PUSH2 0x2238 JUMPI PUSH2 0x2238 PUSH2 0x22A0 JUMP JUMPDEST SWAP1 SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2255 JUMPI PUSH2 0x2255 PUSH2 0x22A0 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP2 EQ ISZERO PUSH2 0x2276 JUMPI PUSH2 0x2276 PUSH2 0x22A0 JUMP JUMPDEST PUSH1 0x1 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 EQ ISZERO PUSH2 0x2297 JUMPI PUSH2 0x2297 PUSH2 0x22A0 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x22FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x22FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x22FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x22FD JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0x125D488FC439371055273B 0xA7 PUSH19 0xB81BA4F430A98AEAD6F7E08658855EE24B9D64 PUSH20 0x6F6C634300080600330000000000000000000000 ",
              "sourceMap": "94:1848:66:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1176:65:31;;;;;;;;19491:42:84;19479:55;;;19461:74;;19449:2;19434:18;1176:65:31;;;;;;;;1431:217:66;;;;;;:::i;:::-;;:::i;:::-;;;22034:25:84;;;22022:2;22007:18;1431:217:66;21989:76:84;1150:275:66;;;;;;:::i;:::-;;:::i;3663:104:31:-;3750:10;3663:104;;631:222:66;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1061:31:31:-;;;;;355:270:66;;;;;;:::i;:::-;;:::i;4030:481:31:-;;;;;;:::i;:::-;;:::i;1654:286:66:-;;;;;;:::i;:::-;;:::i;:::-;;;22244:18:84;22232:31;;;22214:50;;22202:2;22187:18;1654:286:66;22169:101:84;2320:1301:31;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;3809:179::-;3958:23;3809:179;;961:39;;;;;1287;;1324:2;1287:39;;;;;22447:4:84;22435:17;;;22417:36;;22405:2;22390:18;1287:39:31;22372:87:84;1431:217:66;1556:7;1586:55;1610:13;1625:15;1586:23;:55::i;:::-;1579:62;;1431:217;;;;;:::o;1150:275::-;1328:7;1354:64;;;;;;;;1382:18;1354:64;:::i;:::-;1402:15;1354:27;:64::i;631:222::-;772:16;811:35;;;;;;;;827:18;811:35;:::i;:::-;:15;:35::i;355:270::-;520:7;546:72;566:21;589:20;611:6;546:19;:72::i;:::-;539:79;;;;355:270;;;;;;:::o;4030:481:31:-;4178:16;4210:32;4245:10;:19;;;4265:8;;4245:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4245:29:31;;;;;;;;;;;;:::i;:::-;4210:64;;4284:71;4358:23;:58;;;4417:8;;4358:68;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4358:68:31;;;;;;;;;;;;:::i;:::-;4284:142;;4444:60;4469:5;4476:6;4484:19;4444:24;:60::i;:::-;4437:67;4030:481;-1:-1:-1;;;;;;4030:481:31:o;1654:286:66:-;1837:6;1862:71;1890:18;1910:22;1862:27;:71::i;2320:1301:31:-;2481:16;;2523:29;2555:47;;;;2566:20;2555:47;:::i;:::-;2620:18;;2523:79;;-1:-1:-1;2620:37:31;;2612:86;;;;-1:-1:-1;;;2612:86:31;;20611:2:84;2612:86:31;;;20593:21:84;20650:2;20630:18;;;20623:30;20689:34;20669:18;;;20662:62;20760:6;20740:18;;;20733:34;20784:19;;2612:86:31;;;;;;;;;2818:29;;;;;2784:31;;2818:19;:10;:19;;;;:29;;2838:8;;;;2818:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2818:29:31;;;;;;;;;;;;:::i;:::-;2784:63;;2943:71;3017:23;:58;;;3076:8;;3017:68;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3017:68:31;;;;;;;;;;;;:::i;:::-;2943:142;;3194:29;3226:59;3251:5;3258;3265:19;3226:24;:59::i;:::-;3379:23;;15137:66:84;15124:2;15120:15;;;15116:88;3379:23:31;;;15104:101:84;3194:91:31;;-1:-1:-1;3341:25:31;;15221:12:84;;3379:23:31;;;;;;;;;;;;3369:34;;;;;;3341:62;;3421:193;3464:12;3494:17;3529:5;3552:11;3581:19;3421:25;:193::i;:::-;3414:200;;;;;;;;;2320:1301;;;;;;;;:::o;16787:340::-;16913:7;16940:19;;16936:185;;17049:19;17067:1;17049:15;:19;:::i;:::-;17032:37;;;;;;:::i;:::-;17027:1;:42;;16989:31;17005:15;16989:31;;;;:::i;:::-;16984:1;:36;;16982:89;;;;:::i;:::-;16975:96;;;;16936:185;-1:-1:-1;17109:1:31;17102:8;;15062:577;15239:7;15307:21;15331:18;:24;;;15356:15;15331:41;;;;;;;:::i;:::-;;;;;15307:65;;;;15436:30;15469:107;15506:18;:31;;;15551:15;15469:23;:107::i;:::-;15436:140;-1:-1:-1;15594:38:31;15436:140;15594:13;:38;:::i;:::-;15587:45;15062:577;-1:-1:-1;;;;;15062:577:31:o;14101:621::-;14243:16;14275:22;14314:18;:35;;;14300:50;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14300:50:31;-1:-1:-1;14376:31:31;;14275:75;;-1:-1:-1;14411:1:31;;14373:34;;:1;:34;:::i;:::-;14372:40;;;;:::i;:::-;14360:5;14366:1;14360:8;;;;;;;;:::i;:::-;;;;;;;;;;:52;14446:1;14423:270;14461:18;:35;;;14449:47;;:9;:47;;;14423:270;;;14651:31;;14627:55;;:5;14633:13;14645:1;14633:9;:13;:::i;:::-;14627:20;;;;;;;;;;:::i;:::-;;;;;;;:55;;14608:5;14614:9;14608:16;;;;;;;;;;:::i;:::-;;;;;;;;;;:74;14498:11;;;;:::i;:::-;;;;14423:270;;;-1:-1:-1;14710:5:31;14101:621;-1:-1:-1;;14101:621:31:o;12928:932::-;13174:13;;13096:5;;;;;13236:571;13276:11;13263:24;;:10;:24;;;13236:571;;;13317:12;13332:6;13339:10;13332:18;;;;;;;;;;:::i;:::-;;;;;;;13317:33;;13427:4;13404:20;:27;13394:4;13370:21;:28;13369:63;13365:362;;13564:15;13549:30;;:11;:30;;;13545:168;;;13610:1;13603:8;;;;;;;;13545:168;13665:29;13679:15;13665:11;:29;:::i;:::-;13658:36;;;;;;;;13545:168;13779:17;;;;:::i;:::-;;;;13303:504;13289:12;;;;;:::i;:::-;;;;13236:571;;;-1:-1:-1;13824:29:31;13838:15;13824:11;:29;:::i;7644:1699::-;7903:13;;7853:16;;7881:19;7903:13;7976:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7976:25:31;;7926:75;;8011:45;8072:11;8059:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8059:25:31;;8011:73;;8165:8;8160:366;8183:11;8179:1;:15;;;8160:366;;;8322:19;8342:1;8322:22;;;;;;;;;;:::i;:::-;;;;;;;:43;;;8300:65;;:6;8307:1;8300:9;;;;;;;;;;:::i;:::-;;;;;;;:19;;;:65;8243:31;8275:1;8243:34;;;;;;;;;;:::i;:::-;;;;;;:122;;;;;;;;;;;8460:19;8480:1;8460:22;;;;;;;;;;:::i;:::-;;;;;;;:41;;;8438:63;;:6;8445:1;8438:9;;;;;;;;;;:::i;:::-;;;;;;;:19;;;:63;8383:29;8413:1;8383:32;;;;;;;;;;:::i;:::-;:118;;;;:32;;;;;;;;;;;:118;8196:3;;;;:::i;:::-;;;;8160:366;;;-1:-1:-1;8564:149:31;;;;;8536:25;;8564:32;:6;:32;;;;:149;;8610:5;;8629:31;;8674:29;;8564:149;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8564:149:31;;;;;;;;;;;;:::i;:::-;8536:177;;8724:30;8757:6;:37;;;8808:31;8853:29;8757:135;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8757:135:31;;;;;;;;;;;;:::i;:::-;8724:168;;8903:35;8955:11;8941:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8941:26:31;;8903:64;;9040:9;9035:266;9059:11;9055:1;:15;9035:266;;;9094:13;9108:1;9094:16;;;;;;;;:::i;:::-;;;;;;;9114:1;9094:21;9091:200;;;9158:1;9134:18;9153:1;9134:21;;;;;;;;:::i;:::-;;;;;;:25;;;;;9091:200;;;9260:13;9274:1;9260:16;;;;;;;;:::i;:::-;;;;;;;9235:8;9244:1;9235:11;;;;;;;;:::i;:::-;;;;;;;9249:7;9235:21;;;;:::i;:::-;9234:42;;;;:::i;:::-;9210:18;9229:1;9210:21;;;;;;;;:::i;:::-;;;;;;:66;;;;;9091:200;9072:3;;;;:::i;:::-;;;;9035:266;;;-1:-1:-1;9318:18:31;7644:1699;-1:-1:-1;;;;;;;;;7644:1699:31:o;6995:293::-;7179:6;7273:7;7237:18;:32;;;7212:57;;:22;:57;;;;:::i;:::-;7211:69;;;;:::i;5045:1489::-;5365:32;5399:24;5436:33;5486:23;:30;5472:45;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5472:45:31;;5436:81;;5527:31;5577:23;:30;5561:47;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5527:81:31;-1:-1:-1;5643:15:31;5619:14;5729:706;5768:6;:13;5756:9;:25;;;5729:706;;;5858:19;5878:9;5858:30;;;;;;;;;;:::i;:::-;;;;;;;:45;;;5828:75;;:6;5835:9;5828:17;;;;;;;;;;:::i;:::-;;;;;;;:27;;;:75;;;;:::i;:::-;5818:85;;:7;:85;;;5810:119;;;;-1:-1:-1;;;5810:119:31;;20261:2:84;5810:119:31;;;20243:21:84;20300:2;20280:18;;;20273:30;20339:23;20319:18;;;20312:51;20380:18;;5810:119:31;20233:171:84;5810:119:31;5944:21;5968:141;6013:19;6033:9;6013:30;;;;;;;;;;:::i;:::-;;;;;;;6061:23;6085:9;6061:34;;;;;;;;;;:::i;:::-;;;;;;;5968:27;:141::i;:::-;5944:165;;6181:243;6209:6;6216:9;6209:17;;;;;;;;;;:::i;:::-;;;;;;;:37;;;6264:14;6181:243;;6296:17;6331:20;6352:9;6331:31;;;;;;;;;;:::i;:::-;;;;;;;6380:19;6400:9;6380:30;;;;;;;;;;:::i;:::-;;;;;;;6181:10;:243::i;:::-;6125:16;6142:9;6125:27;;;;;;;;;;:::i;:::-;;;;;;6154:12;6167:9;6154:23;;;;;;;;;;:::i;:::-;;;;;;;;;;6124:300;;;;;-1:-1:-1;5783:11:31;;;;:::i;:::-;;;;5729:706;;;;6470:12;6459:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;6445:38;;6511:16;6493:34;;5425:1109;;;5045:1489;;;;;;;;:::o;9837:2698::-;10102:13;10117:28;10211:22;10236:35;10252:18;10236:15;:35::i;:::-;10309:13;;10365:46;;;10379:31;10365:46;;;;;;;;;10211:60;;-1:-1:-1;10309:13:31;;10281:18;;10365:46;;;;;;;;;;-1:-1:-1;10365:46:31;10333:78;;10422:25;10498:18;:34;;;10483:49;;:11;:49;;;;10462:127;;;;-1:-1:-1;;;10462:127:31;;21016:2:84;10462:127:31;;;20998:21:84;21055:2;21035:18;;;21028:30;21094:33;21074:18;;;21067:61;21145:18;;10462:127:31;20988:181:84;10462:127:31;10703:12;10698:937;10729:11;10721:19;;:5;:19;;;10698:937;;;10789:15;10773:6;10780:5;10773:13;;;;;;;;;;:::i;:::-;;;;;;;:31;;;10765:76;;;;-1:-1:-1;;;10765:76:31;;21729:2:84;10765:76:31;;;21711:21:84;;;21748:18;;;21741:30;21807:34;21787:18;;;21780:62;21859:18;;10765:76:31;21701:182:84;10765:76:31;10860:9;;;;10856:118;;10913:6;10920:9;10928:1;10920:5;:9;:::i;:::-;10913:17;;;;;;;;;;:::i;:::-;;;;;;;10897:33;;:6;10904:5;10897:13;;;;;;;;;;:::i;:::-;;;;;;;:33;;;10889:70;;;;-1:-1:-1;;;10889:70:31;;21376:2:84;10889:70:31;;;21358:21:84;21415:2;21395:18;;;21388:30;21454:26;21434:18;;;21427:54;21498:18;;10889:70:31;21348:174:84;10889:70:31;11051:28;11128:17;11147:6;11154:5;11147:13;;;;;;;;;;:::i;:::-;;;;;;;11117:44;;;;;;;;19190:25:84;;;19263:18;19251:31;19246:2;19231:18;;19224:59;19178:2;19163:18;;19145:144;11117:44:31;;;;;;;;;;;;;11107:55;;;;;;11082:94;;11051:125;;11191:16;11210:132;11247:20;11285;11323:5;11210:19;:132::i;:::-;11191:151;-1:-1:-1;1324:2:31;11411:25;;;;11407:218;;;11473:19;11460:32;;:10;:32;;;11456:111;;;11538:10;11516:32;;11456:111;11584:12;11597:10;11584:24;;;;;;;;;;:::i;:::-;;;;;;:26;;;;;;;;:::i;:::-;;;-1:-1:-1;11407:218:31;10751:884;;10742:7;;;;;:::i;:::-;;;;10698:937;;;;11702:21;11737:36;11776:103;11818:18;11850:19;11776:28;:103::i;:::-;11737:142;;11977:23;11959:360;12037:19;12018:38;;:15;:38;11959:360;;12148:1;12116:12;12129:15;12116:29;;;;;;;;:::i;:::-;;;;;;;:33;12112:197;;;12265:12;12278:15;12265:29;;;;;;;;:::i;:::-;;;;;;;12206:19;12226:15;12206:36;;;;;;;;:::i;:::-;;;;;;;:88;;;;:::i;:::-;12169:125;;;;:::i;:::-;;;12112:197;12070:17;;;;:::i;:::-;;;;11959:360;;;;12489:3;12461:18;:24;;;12445:13;:40;;;;:::i;:::-;12444:48;;;;:::i;:::-;12436:56;12516:12;;-1:-1:-1;9837:2698:31;;-1:-1:-1;;;;;;;;;;;9837:2698:31:o;15914:577::-;16094:16;16122:43;16195:23;:19;16217:1;16195:23;:::i;:::-;16168:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16168:60:31;;16122:106;;16244:7;16239:202;16262:19;16257:24;;:1;:24;;;16239:202;;16334:96;16379:18;16415:1;16334:96;;:27;:96::i;:::-;16302:26;16329:1;16302:29;;;;;;;;;;:::i;:::-;;;;;;;;;;:128;16283:3;;;;:::i;:::-;;;;16239:202;;;-1:-1:-1;16458:26:31;15914:577;-1:-1:-1;;;15914:577:31:o;14:196:84:-;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:594::-;264:5;317:3;310:4;302:6;298:17;294:27;284:2;;335:1;332;325:12;284:2;359:22;;:::i;:::-;403:3;426:6;465:3;459;451:6;447:16;444:25;441:2;;;482:1;479;472:12;441:2;504:1;514:266;528:4;525:1;522:11;514:266;;;601:3;588:17;618:30;642:5;618:30;:::i;:::-;661:18;;702:4;726:12;;;;758;;;;;548:1;541:9;514:266;;;-1:-1:-1;798:5:84;;274:535;-1:-1:-1;;;;;274:535:84:o;814:598::-;874:5;927:3;920:4;912:6;908:17;904:27;894:2;;945:1;942;935:12;894:2;969:22;;:::i;:::-;1013:3;1036:6;1075:3;1069;1061:6;1057:16;1054:25;1051:2;;;1092:1;1089;1082:12;1051:2;1114:1;1124:259;1138:4;1135:1;1132:11;1124:259;;;1204:3;1198:10;1221:30;1245:5;1221:30;:::i;:::-;1264:18;;1305:4;1329:12;;;;1361;;;;;1158:1;1151:9;1124:259;;1417:366;1479:8;1489:6;1543:3;1536:4;1528:6;1524:17;1520:27;1510:2;;1561:1;1558;1551:12;1510:2;-1:-1:-1;1584:20:84;;1627:18;1616:30;;1613:2;;;1659:1;1656;1649:12;1613:2;1696:4;1688:6;1684:17;1672:29;;1756:3;1749:4;1739:6;1736:1;1732:14;1724:6;1720:27;1716:38;1713:47;1710:2;;;1773:1;1770;1763:12;1710:2;1500:283;;;;;:::o;1788:166::-;1858:5;1903:3;1894:6;1889:3;1885:16;1881:26;1878:2;;;1920:1;1917;1910:12;1878:2;-1:-1:-1;1942:6:84;1868:86;-1:-1:-1;1868:86:84:o;1959:812::-;2023:5;2071:6;2059:9;2054:3;2050:19;2046:32;2043:2;;;2091:1;2088;2081:12;2043:2;2113:22;;:::i;:::-;2104:31;;2158:27;2175:9;2158:27;:::i;:::-;2151:5;2144:42;2218:36;2250:2;2239:9;2235:18;2218:36;:::i;:::-;2213:2;2206:5;2202:14;2195:60;2287:37;2320:2;2309:9;2305:18;2287:37;:::i;:::-;2282:2;2275:5;2271:14;2264:61;2357:37;2390:2;2379:9;2375:18;2357:37;:::i;:::-;2352:2;2345:5;2341:14;2334:61;2428:38;2461:3;2450:9;2446:19;2428:38;:::i;:::-;2422:3;2415:5;2411:15;2404:63;2500:38;2533:3;2522:9;2518:19;2500:38;:::i;:::-;2494:3;2487:5;2483:15;2476:63;2572:39;2606:3;2595:9;2591:19;2572:39;:::i;:::-;2566:3;2559:5;2555:15;2548:64;2645:49;2690:3;2684;2673:9;2669:19;2645:49;:::i;:::-;2639:3;2632:5;2628:15;2621:74;2759:3;2748:9;2744:19;2731:33;2722:6;2715:5;2711:18;2704:61;2033:738;;;;:::o;2776:134::-;2844:20;;2873:31;2844:20;2873:31;:::i;2915:138::-;2994:13;;3016:31;2994:13;3016:31;:::i;3058:132::-;3125:20;;3154:30;3125:20;3154:30;:::i;3195:136::-;3273:13;;3295:30;3273:13;3295:30;:::i;3336:130::-;3402:20;;3431:29;3402:20;3431:29;:::i;3471:134::-;3548:13;;3570:29;3548:13;3570:29;:::i;3610:509::-;3704:6;3712;3720;3773:2;3761:9;3752:7;3748:23;3744:32;3741:2;;;3789:1;3786;3779:12;3741:2;3812:29;3831:9;3812:29;:::i;:::-;3802:39;;3892:2;3881:9;3877:18;3864:32;3919:18;3911:6;3908:30;3905:2;;;3951:1;3948;3941:12;3905:2;3990:69;4051:7;4042:6;4031:9;4027:22;3990:69;:::i;:::-;3731:388;;4078:8;;-1:-1:-1;3964:95:84;;-1:-1:-1;;;;3731:388:84:o;4124:978::-;4238:6;4246;4254;4262;4270;4323:2;4311:9;4302:7;4298:23;4294:32;4291:2;;;4339:1;4336;4329:12;4291:2;4362:29;4381:9;4362:29;:::i;:::-;4352:39;;4442:2;4431:9;4427:18;4414:32;4465:18;4506:2;4498:6;4495:14;4492:2;;;4522:1;4519;4512:12;4492:2;4561:69;4622:7;4613:6;4602:9;4598:22;4561:69;:::i;:::-;4649:8;;-1:-1:-1;4535:95:84;-1:-1:-1;4737:2:84;4722:18;;4709:32;;-1:-1:-1;4753:16:84;;;4750:2;;;4782:1;4779;4772:12;4750:2;4820:8;4809:9;4805:24;4795:34;;4867:7;4860:4;4856:2;4852:13;4848:27;4838:2;;4889:1;4886;4879:12;4838:2;4929;4916:16;4955:2;4947:6;4944:14;4941:2;;;4971:1;4968;4961:12;4941:2;5016:7;5011:2;5002:6;4998:2;4994:15;4990:24;4987:37;4984:2;;;5037:1;5034;5027:12;4984:2;4281:821;;;;-1:-1:-1;4281:821:84;;-1:-1:-1;5068:2:84;5060:11;;5090:6;4281:821;-1:-1:-1;;;4281:821:84:o;5107:1826::-;5215:6;5246:2;5289;5277:9;5268:7;5264:23;5260:32;5257:2;;;5305:1;5302;5295:12;5257:2;5345:9;5332:23;5374:18;5415:2;5407:6;5404:14;5401:2;;;5431:1;5428;5421:12;5401:2;5469:6;5458:9;5454:22;5444:32;;5514:7;5507:4;5503:2;5499:13;5495:27;5485:2;;5536:1;5533;5526:12;5485:2;5572;5559:16;5595:69;5611:52;5660:2;5611:52;:::i;:::-;5595:69;:::i;:::-;5686:3;5710:2;5705:3;5698:15;5738:2;5733:3;5729:12;5722:19;;5769:2;5765;5761:11;5817:7;5812:2;5806;5803:1;5799:10;5795:2;5791:19;5787:28;5784:41;5781:2;;;5838:1;5835;5828:12;5781:2;5860:1;5870:1033;5884:2;5881:1;5878:9;5870:1033;;;5961:3;5948:17;5997:2;5984:11;5981:19;5978:2;;;6013:1;6010;6003:12;5978:2;6040:20;;6095:2;6087:11;;6083:25;-1:-1:-1;6073:2:84;;6122:1;6119;6112:12;6073:2;6170;6166;6162:11;6149:25;6200:69;6216:52;6265:2;6216:52;:::i;6200:69::-;6295:5;6327:2;6320:5;6313:17;6363:2;6356:5;6352:14;6343:23;;6400:2;6396;6392:11;6452:7;6447:2;6441;6438:1;6434:10;6430:2;6426:19;6422:28;6419:41;6416:2;;;6473:1;6470;6463:12;6416:2;6501:1;6490:12;;6515:283;6531:2;6526:3;6523:11;6515:283;;;6614:5;6601:19;6637:30;6661:5;6637:30;:::i;:::-;6684:20;;6553:1;6544:11;;;;;6730:14;;;;6770;;6515:283;;;-1:-1:-1;6811:18:84;;-1:-1:-1;;;6849:12:84;;;;6881;;;;5902:1;5895:9;5870:1033;;;-1:-1:-1;6922:5:84;;5226:1707;-1:-1:-1;;;;;;;;;5226:1707:84:o;6938:1735::-;7056:6;7087:2;7130;7118:9;7109:7;7105:23;7101:32;7098:2;;;7146:1;7143;7136:12;7098:2;7179:9;7173:16;7212:18;7204:6;7201:30;7198:2;;;7244:1;7241;7234:12;7198:2;7267:22;;7320:4;7312:13;;7308:27;-1:-1:-1;7298:2:84;;7349:1;7346;7339:12;7298:2;7378;7372:9;7401:69;7417:52;7466:2;7417:52;:::i;7401:69::-;7504:15;;;7535:12;;;;7567:11;;;7597:4;7628:11;;;7620:20;;7616:29;;7613:42;-1:-1:-1;7610:2:84;;;7668:1;7665;7658:12;7610:2;7690:1;7681:10;;7711:1;7721:922;7737:2;7732:3;7729:11;7721:922;;;7812:2;7806:3;7797:7;7793:17;7789:26;7786:2;;;7828:1;7825;7818:12;7786:2;7858:22;;:::i;:::-;7913:3;7907:10;7900:5;7893:25;7961:2;7956:3;7952:12;7946:19;7978:32;8002:7;7978:32;:::i;:::-;8030:14;;;8023:31;8077:2;8113:12;;;8107:19;8139:32;8107:19;8139:32;:::i;:::-;8191:14;;;8184:31;8238:2;8274:12;;;8268:19;8300:32;8268:19;8300:32;:::i;:::-;8352:14;;;8345:31;8399:3;8436:12;;;8430:19;8462:32;8430:19;8462:32;:::i;:::-;8514:14;;;8507:31;8551:18;;8589:12;;;;8621;;;;7759:1;7750:11;7721:922;;;-1:-1:-1;8662:5:84;;7067:1606;-1:-1:-1;;;;;;;;;7067:1606:84:o;8678:1938::-;8809:6;8840:2;8883;8871:9;8862:7;8858:23;8854:32;8851:2;;;8899:1;8896;8889:12;8851:2;8932:9;8926:16;8965:18;8957:6;8954:30;8951:2;;;8997:1;8994;8987:12;8951:2;9020:22;;9073:4;9065:13;;9061:27;-1:-1:-1;9051:2:84;;9102:1;9099;9092:12;9051:2;9131;9125:9;9154:69;9170:52;9219:2;9170:52;:::i;9154:69::-;9257:15;;;9288:12;;;;9320:11;;;9350:6;9383:11;;;9375:20;;9371:29;;9368:42;-1:-1:-1;9365:2:84;;;9423:1;9420;9413:12;9365:2;9445:1;9436:10;;9466:1;9476:1110;9492:2;9487:3;9484:11;9476:1110;;;9567:2;9561:3;9552:7;9548:17;9544:26;9541:2;;;9583:1;9580;9573:12;9541:2;9613:22;;:::i;:::-;9662:32;9690:3;9662:32;:::i;:::-;9655:5;9648:47;9731:41;9768:2;9763:3;9759:12;9731:41;:::i;:::-;9726:2;9719:5;9715:14;9708:65;9796:2;9834:42;9872:2;9867:3;9863:12;9834:42;:::i;:::-;9818:14;;;9811:66;9900:2;9938:42;9967:12;;;9938:42;:::i;:::-;9922:14;;;9915:66;10004:3;10043:42;10072:12;;;10043:42;:::i;:::-;10027:14;;;10020:66;10109:3;10148:42;10177:12;;;10148:42;:::i;:::-;10132:14;;;10125:66;10214:3;10253:43;10283:12;;;10253:43;:::i;:::-;10237:14;;;10230:67;10321:3;10361:58;10411:7;10396:13;;;10361:58;:::i;:::-;10344:15;;;10337:83;10475:3;10466:13;;10460:20;10451:6;10440:18;;10433:48;10494:18;;10532:12;;;;10564;;;;9514:1;9505:11;9476:1110;;10621:901;10716:6;10747:2;10790;10778:9;10769:7;10765:23;10761:32;10758:2;;;10806:1;10803;10796:12;10758:2;10839:9;10833:16;10872:18;10864:6;10861:30;10858:2;;;10904:1;10901;10894:12;10858:2;10927:22;;10980:4;10972:13;;10968:27;-1:-1:-1;10958:2:84;;11009:1;11006;10999:12;10958:2;11038;11032:9;11061:69;11077:52;11126:2;11077:52;:::i;11061:69::-;11152:3;11176:2;11171:3;11164:15;11204:2;11199:3;11195:12;11188:19;;11235:2;11231;11227:11;11283:7;11278:2;11272;11269:1;11265:10;11261:2;11257:19;11253:28;11250:41;11247:2;;;11304:1;11301;11294:12;11247:2;11326:1;11317:10;;11336:156;11350:2;11347:1;11344:9;11336:156;;;11407:10;;11395:23;;11368:1;11361:9;;;;;11438:12;;;;11470;;11336:156;;;-1:-1:-1;11511:5:84;10727:795;-1:-1:-1;;;;;;;10727:795:84:o;11527:260::-;11624:6;11677:3;11665:9;11656:7;11652:23;11648:33;11645:2;;;11694:1;11691;11684:12;11645:2;11717:64;11773:7;11762:9;11717:64;:::i;11792:329::-;11898:6;11906;11959:3;11947:9;11938:7;11934:23;11930:33;11927:2;;;11976:1;11973;11966:12;11927:2;11999:64;12055:7;12044:9;11999:64;:::i;:::-;11989:74;12110:3;12095:19;;;;12082:33;;-1:-1:-1;;;11917:204:84:o;12126:249::-;12221:6;12274:3;12262:9;12253:7;12249:23;12245:33;12242:2;;;12291:1;12288;12281:12;12242:2;12314:55;12361:7;12350:9;12314:55;:::i;12380:318::-;12484:6;12492;12545:3;12533:9;12524:7;12520:23;12516:33;12513:2;;;12562:1;12559;12552:12;12513:2;12585:55;12632:7;12621:9;12585:55;:::i;12703:1047::-;12805:6;12813;12821;12874:2;12862:9;12853:7;12849:23;12845:32;12842:2;;;12890:1;12887;12880:12;12842:2;12926:9;12913:23;12903:33;;12955:2;13004;12993:9;12989:18;12976:32;12966:42;;13059:2;13048:9;13044:18;13031:32;13086:18;13078:6;13075:30;13072:2;;;13118:1;13115;13108:12;13072:2;13141:22;;13194:4;13186:13;;13182:27;-1:-1:-1;13172:2:84;;13223:1;13220;13213:12;13172:2;13259;13246:16;13282:69;13298:52;13347:2;13298:52;:::i;13282:69::-;13373:3;13397:2;13392:3;13385:15;13425:2;13420:3;13416:12;13409:19;;13456:2;13452;13448:11;13504:7;13499:2;13493;13490:1;13486:10;13482:2;13478:19;13474:28;13471:41;13468:2;;;13525:1;13522;13515:12;13468:2;13547:1;13538:10;;13557:163;13571:2;13568:1;13565:9;13557:163;;;13628:17;;13616:30;;13589:1;13582:9;;;;;13666:12;;;;13698;;13557:163;;;13561:3;13739:5;13729:15;;;;;;;12832:918;;;;;:::o;13755:311::-;13821:6;13829;13882:2;13870:9;13861:7;13857:23;13853:32;13850:2;;;13898:1;13895;13888:12;13850:2;13937:9;13924:23;13956:29;13979:5;13956:29;:::i;:::-;14004:5;14056:2;14041:18;;;;14028:32;;-1:-1:-1;;;13840:226:84:o;14071:435::-;14124:3;14162:5;14156:12;14189:6;14184:3;14177:19;14215:4;14244:2;14239:3;14235:12;14228:19;;14281:2;14274:5;14270:14;14302:1;14312:169;14326:6;14323:1;14320:13;14312:169;;;14387:13;;14375:26;;14421:12;;;;14456:15;;;;14348:1;14341:9;14312:169;;;-1:-1:-1;14497:3:84;;14132:374;-1:-1:-1;;;;;14132:374:84:o;14511:459::-;14563:3;14601:5;14595:12;14628:6;14623:3;14616:19;14654:4;14683:2;14678:3;14674:12;14667:19;;14720:2;14713:5;14709:14;14741:1;14751:194;14765:6;14762:1;14759:13;14751:194;;;14830:13;;14845:18;14826:38;14814:51;;14885:12;;;;14920:15;;;;14787:1;14780:9;14751:194;;15244:579;15537:42;15529:6;15525:55;15514:9;15507:74;15617:2;15612;15601:9;15597:18;15590:30;15488:4;15643:55;15694:2;15683:9;15679:18;15671:6;15643:55;:::i;:::-;15746:9;15738:6;15734:22;15729:2;15718:9;15714:18;15707:50;15774:43;15810:6;15802;15774:43;:::i;15828:903::-;16020:4;16049:2;16089;16078:9;16074:18;16119:2;16108:9;16101:21;16142:6;16177;16171:13;16208:6;16200;16193:22;16246:2;16235:9;16231:18;16224:25;;16308:2;16298:6;16295:1;16291:14;16280:9;16276:30;16272:39;16258:53;;16346:2;16338:6;16334:15;16367:1;16377:325;16391:6;16388:1;16385:13;16377:325;;;16480:66;16468:9;16460:6;16456:22;16452:95;16447:3;16440:108;16571:51;16615:6;16606;16600:13;16571:51;:::i;:::-;16561:61;-1:-1:-1;16680:12:84;;;;16645:15;;;;16413:1;16406:9;16377:325;;;-1:-1:-1;16719:6:84;;16029:702;-1:-1:-1;;;;;;;16029:702:84:o;16736:261::-;16915:2;16904:9;16897:21;16878:4;16935:56;16987:2;16976:9;16972:18;16964:6;16935:56;:::i;17002:849::-;17227:2;17216:9;17209:21;17190:4;17253:56;17305:2;17294:9;17290:18;17282:6;17253:56;:::i;:::-;17328:2;17378:9;17370:6;17366:22;17361:2;17350:9;17346:18;17339:50;17418:6;17412:13;17449:6;17441;17434:22;17474:1;17484:137;17498:6;17495:1;17492:13;17484:137;;;17590:14;;;17586:23;;17580:30;17559:14;;;17555:23;;17548:63;17513:10;;17484:137;;;17639:6;17636:1;17633:13;17630:2;;;17706:1;17701:2;17692:6;17684;17680:19;17676:28;17669:39;17630:2;-1:-1:-1;17767:2:84;17755:15;-1:-1:-1;;17751:88:84;17739:101;;;;17735:110;;17199:652;-1:-1:-1;;;;17199:652:84:o;17856:693::-;18035:2;18087:21;;;18060:18;;;18143:22;;;18006:4;;18222:6;18196:2;18181:18;;18006:4;18256:267;18270:6;18267:1;18264:13;18256:267;;;18345:6;18332:20;18365:30;18389:5;18365:30;:::i;:::-;18431:10;18420:22;18408:35;;18498:15;;;;18463:12;;;;18292:1;18285:9;18256:267;;;-1:-1:-1;18540:3:84;18015:534;-1:-1:-1;;;;;;18015:534:84:o;18554:459::-;18807:2;18796:9;18789:21;18770:4;18833:55;18884:2;18873:9;18869:18;18861:6;18833:55;:::i;:::-;18936:9;18928:6;18924:22;18919:2;18908:9;18904:18;18897:50;18964:43;19000:6;18992;18964:43;:::i;22464:255::-;22536:2;22530:9;22578:6;22566:19;;22615:18;22600:34;;22636:22;;;22597:62;22594:2;;;22662:18;;:::i;:::-;22698:2;22691:22;22510:209;:::o;22724:253::-;22796:2;22790:9;22838:4;22826:17;;22873:18;22858:34;;22894:22;;;22855:62;22852:2;;;22920:18;;:::i;22982:252::-;23054:2;23048:9;23096:3;23084:16;;23130:18;23115:34;;23151:22;;;23112:62;23109:2;;;23177:18;;:::i;23239:334::-;23310:2;23304:9;23366:2;23356:13;;-1:-1:-1;;23352:86:84;23340:99;;23469:18;23454:34;;23490:22;;;23451:62;23448:2;;;23516:18;;:::i;:::-;23552:2;23545:22;23284:289;;-1:-1:-1;23284:289:84:o;23578:192::-;23647:4;23680:18;23672:6;23669:30;23666:2;;;23702:18;;:::i;:::-;-1:-1:-1;23747:1:84;23743:14;23759:4;23739:25;;23656:114::o;23775:128::-;23815:3;23846:1;23842:6;23839:1;23836:13;23833:2;;;23852:18;;:::i;:::-;-1:-1:-1;23888:9:84;;23823:80::o;23908:236::-;23947:3;23975:18;24020:2;24017:1;24013:10;24050:2;24047:1;24043:10;24081:3;24077:2;24073:12;24068:3;24065:21;24062:2;;;24089:18;;:::i;:::-;24125:13;;23955:189;-1:-1:-1;;;;23955:189:84:o;24149:204::-;24187:3;24223:4;24220:1;24216:12;24255:4;24252:1;24248:12;24290:3;24284:4;24280:14;24275:3;24272:23;24269:2;;;24298:18;;:::i;:::-;24334:13;;24195:158;-1:-1:-1;;;24195:158:84:o;24358:274::-;24398:1;24424;24414:2;;-1:-1:-1;;;24456:1:84;24449:88;24560:4;24557:1;24550:15;24588:4;24585:1;24578:15;24414:2;-1:-1:-1;24617:9:84;;24404:228::o;24637:482::-;24726:1;24769:5;24726:1;24783:330;24804:7;24794:8;24791:21;24783:330;;;24923:4;-1:-1:-1;;24851:77:84;24845:4;24842:87;24839:2;;;24932:18;;:::i;:::-;24982:7;24972:8;24968:22;24965:2;;;25002:16;;;;24965:2;25081:22;;;;25041:15;;;;24783:330;;;24787:3;24701:418;;;;;:::o;25124:140::-;25182:5;25211:47;25252:4;25242:8;25238:19;25232:4;25318:5;25348:8;25338:2;;-1:-1:-1;25389:1:84;25403:5;;25338:2;25437:4;25427:2;;-1:-1:-1;25474:1:84;25488:5;;25427:2;25519:4;25537:1;25532:59;;;;25605:1;25600:130;;;;25512:218;;25532:59;25562:1;25553:10;;25576:5;;;25600:130;25637:3;25627:8;25624:17;25621:2;;;25644:18;;:::i;:::-;-1:-1:-1;;25700:1:84;25686:16;;25715:5;;25512:218;;25814:2;25804:8;25801:16;25795:3;25789:4;25786:13;25782:36;25776:2;25766:8;25763:16;25758:2;25752:4;25749:12;25745:35;25742:77;25739:2;;;-1:-1:-1;25851:19:84;;;25883:5;;25739:2;25930:34;25955:8;25949:4;25930:34;:::i;:::-;26060:6;-1:-1:-1;;25988:79:84;25979:7;25976:92;25973:2;;;26071:18;;:::i;:::-;26109:20;;25328:807;-1:-1:-1;;;25328:807:84:o;26140:228::-;26180:7;26306:1;-1:-1:-1;;26234:74:84;26231:1;26228:81;26223:1;26216:9;26209:17;26205:105;26202:2;;;26313:18;;:::i;:::-;-1:-1:-1;26353:9:84;;26192:176::o;26373:125::-;26413:4;26441:1;26438;26435:8;26432:2;;;26446:18;;:::i;:::-;-1:-1:-1;26483:9:84;;26422:76::o;26503:221::-;26542:4;26571:10;26631;;;;26601;;26653:12;;;26650:2;;;26668:18;;:::i;:::-;26705:13;;26551:173;-1:-1:-1;;;26551:173:84:o;26729:195::-;26767:4;26804;26801:1;26797:12;26836:4;26833:1;26829:12;26861:3;26856;26853:12;26850:2;;;26868:18;;:::i;:::-;26905:13;;;26776:148;-1:-1:-1;;;26776:148:84:o;26929:195::-;26968:3;-1:-1:-1;;26992:5:84;26989:77;26986:2;;;27069:18;;:::i;:::-;-1:-1:-1;27116:1:84;27105:13;;26976:148::o;27129:201::-;27167:3;27195:10;27240:2;27233:5;27229:14;27267:2;27258:7;27255:15;27252:2;;;27273:18;;:::i;:::-;27322:1;27309:15;;27175:155;-1:-1:-1;;;27175:155:84:o;27335:175::-;27372:3;27416:4;27409:5;27405:16;27445:4;27436:7;27433:17;27430:2;;;27453:18;;:::i;:::-;27502:1;27489:15;;27380:130;-1:-1:-1;;27380:130:84:o;27515:184::-;-1:-1:-1;;;27564:1:84;27557:88;27664:4;27661:1;27654:15;27688:4;27685:1;27678:15;27704:184;-1:-1:-1;;;27753:1:84;27746:88;27853:4;27850:1;27843:15;27877:4;27874:1;27867:15;27893:184;-1:-1:-1;;;27942:1:84;27935:88;28042:4;28039:1;28032:15;28066:4;28063:1;28056:15;28082:140;28168:28;28161:5;28157:40;28150:5;28147:51;28137:2;;28212:1;28209;28202:12;28137:2;28127:95;:::o;28227:121::-;28312:10;28305:5;28301:22;28294:5;28291:33;28281:2;;28338:1;28335;28328:12;28353:129;28438:18;28431:5;28427:30;28420:5;28417:41;28407:2;;28472:1;28469;28462:12;28487:114;28571:4;28564:5;28560:16;28553:5;28550:27;28540:2;;28591:1;28588;28581:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1813800",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "TIERS_LENGTH()": "292",
                "calculate(address,uint32[],bytes)": "infinite",
                "calculateNumberOfUserPicks((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)": "infinite",
                "calculatePrizeTierFraction((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)": "infinite",
                "calculateTierIndex(uint256,uint256,uint256[])": "infinite",
                "createBitMasks((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "infinite",
                "drawBuffer()": "infinite",
                "getDrawBuffer()": "infinite",
                "getNormalizedBalancesForDrawIds(address,uint32[])": "infinite",
                "getPrizeDistributionBuffer()": "infinite",
                "numberOfPrizesForIndex(uint8,uint256)": "infinite",
                "prizeDistributionBuffer()": "infinite",
                "ticket()": "infinite"
              }
            },
            "methodIdentifiers": {
              "TIERS_LENGTH()": "f8d0ca4c",
              "calculate(address,uint32[],bytes)": "aaca392e",
              "calculateNumberOfUserPicks((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)": "9d34ee24",
              "calculatePrizeTierFraction((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)": "3b5564f9",
              "calculateTierIndex(uint256,uint256,uint256[])": "6d4bfa6e",
              "createBitMasks((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "67306cf2",
              "drawBuffer()": "ce343bb6",
              "getDrawBuffer()": "4019f2d6",
              "getNormalizedBalancesForDrawIds(address,uint32[])": "8045fbcf",
              "getPrizeDistributionBuffer()": "bd97a252",
              "numberOfPrizesForIndex(uint8,uint256)": "094a2491",
              "prizeDistributionBuffer()": "0840bbdd",
              "ticket()": "6cc25db7"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_ticket\",\"type\":\"address\"},{\"internalType\":\"contract IDrawBuffer\",\"name\":\"_drawBuffer\",\"type\":\"address\"},{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"_prizeDistributionBuffer\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IDrawBuffer\",\"name\":\"drawBuffer\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"prizeDistributionBuffer\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract PrizeDistributor\",\"name\":\"prizeDistributor\",\"type\":\"address\"}],\"name\":\"PrizeDistributorSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"TIERS_LENGTH\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"},{\"internalType\":\"bytes\",\"name\":\"_pickIndicesForDraws\",\"type\":\"bytes\"}],\"name\":\"calculate\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"_prizeDistribution\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"_normalizedUserBalance\",\"type\":\"uint256\"}],\"name\":\"calculateNumberOfUserPicks\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"_prizeDistribution\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"_prizeTierIndex\",\"type\":\"uint256\"}],\"name\":\"calculatePrizeTierFraction\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_randomNumberThisPick\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint256[]\",\"name\":\"_masks\",\"type\":\"uint256[]\"}],\"name\":\"calculateTierIndex\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"_prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"createBitMasks\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"drawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getNormalizedBalancesForDrawIds\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeDistributionBuffer\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"_bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"_prizeTierIndex\",\"type\":\"uint256\"}],\"name\":\"numberOfPrizesForIndex\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"prizeDistributionBuffer\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ticket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"calculate(address,uint32[],bytes)\":{\"params\":{\"data\":\"The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\",\"drawIds\":\"drawId array for which to calculate prize amounts for.\",\"user\":\"User for which to calculate prize amount.\"},\"returns\":{\"_0\":\"List of awardable prize amounts ordered by drawId.\"}},\"calculatePrizeTierFraction((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)\":{\"params\":{\"_prizeDistribution\":\"prizeDistribution struct for Draw\",\"_prizeTierIndex\":\"Index of the prize tiers array to calculate\"},\"returns\":{\"_0\":\"returns the fraction of the total prize\"}},\"getDrawBuffer()\":{\"returns\":{\"_0\":\"IDrawBuffer\"}},\"getNormalizedBalancesForDrawIds(address,uint32[])\":{\"params\":{\"drawIds\":\"The drawIds to consider\",\"user\":\"The users address\"},\"returns\":{\"_0\":\"Array of balances\"}},\"getPrizeDistributionBuffer()\":{\"returns\":{\"_0\":\"IPrizeDistributionBuffer\"}}},\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address,address)\":{\"notice\":\"Emitted when the contract is initialized\"},\"PrizeDistributorSet(address)\":{\"notice\":\"Emitted when the prizeDistributor is set/updated\"}},\"kind\":\"user\",\"methods\":{\"TIERS_LENGTH()\":{\"notice\":\"The tiers array length\"},\"calculate(address,uint32[],bytes)\":{\"notice\":\"Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\"},\"calculatePrizeTierFraction((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)\":{\"notice\":\"Calculates the expected prize fraction per prizeDistribution and prizeTierIndex\"},\"drawBuffer()\":{\"notice\":\"DrawBuffer address\"},\"getDrawBuffer()\":{\"notice\":\"Read global DrawBuffer variable.\"},\"getNormalizedBalancesForDrawIds(address,uint32[])\":{\"notice\":\"Returns a users balances expressed as a fraction of the total supply over time.\"},\"getPrizeDistributionBuffer()\":{\"notice\":\"Read global prizeDistributionBuffer variable.\"},\"prizeDistributionBuffer()\":{\"notice\":\"The stored history of draw settings.  Stored as ring buffer.\"},\"ticket()\":{\"notice\":\"Ticket associated with DrawCalculator\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/DrawCalculatorHarness.sol\":\"DrawCalculatorHarness\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Random Number Generator Interface\\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\n */\\ninterface RNGInterface {\\n  /**\\n   * @notice Emitted when a new request for a random number has been submitted\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param sender The indexed address of the sender of the request\\n   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /**\\n   * @notice Emitted when an existing request for a random number has been completed\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param randomNumber The random number produced by the 3rd-party service\\n   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /**\\n   * @notice Gets the last request id used by the RNG service\\n   * @return requestId The last request id used in the last request\\n   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /**\\n   * @notice Gets the Fee for making a Request against an RNG service\\n   * @return feeToken The address of the token that is used to pay fees\\n   * @return requestFee The fee required to be paid to make a request\\n   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /**\\n   * @notice Sends a request for a random number to the 3rd-party service\\n   * @dev Some services will complete the request immediately, others may have a time-delay\\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n   * @return requestId The ID of the request used to get the results of the RNG service\\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /**\\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\\n   * @dev For time-delayed requests, this function is used to check/confirm completion\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\\n   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /**\\n   * @notice Gets the random number produced by the 3rd-party service\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return randomNum The random number\\n   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"},\"contracts/DrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\nimport \\\"./interfaces/ITicket.sol\\\";\\nimport \\\"./interfaces/IDrawBuffer.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\nimport \\\"./interfaces/IDrawBeacon.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 DrawCalculator\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawCalculator calculates a user's prize by matching a winning random number against\\n            their picks. A users picks are generated deterministically based on their address and balance\\n            of tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc...\\n            A user with a higher average weighted balance (during each draw period) will be given a large number of\\n            picks to choose from, and thus a higher chance to match the winning numbers.\\n*/\\ncontract DrawCalculator is IDrawCalculator {\\n\\n    /// @notice DrawBuffer address\\n    IDrawBuffer public immutable drawBuffer;\\n\\n    /// @notice Ticket associated with DrawCalculator\\n    ITicket public immutable ticket;\\n\\n    /// @notice The stored history of draw settings.  Stored as ring buffer.\\n    IPrizeDistributionBuffer public immutable prizeDistributionBuffer;\\n\\n    /// @notice The tiers array length\\n    uint8 public constant TIERS_LENGTH = 16;\\n\\n    /* ============ Constructor ============ */\\n\\n    /// @notice Constructor for DrawCalculator\\n    /// @param _ticket Ticket associated with this DrawCalculator\\n    /// @param _drawBuffer The address of the draw buffer to push draws to\\n    /// @param _prizeDistributionBuffer PrizeDistributionBuffer address\\n    constructor(\\n        ITicket _ticket,\\n        IDrawBuffer _drawBuffer,\\n        IPrizeDistributionBuffer _prizeDistributionBuffer\\n    ) {\\n        require(address(_ticket) != address(0), \\\"DrawCalc/ticket-not-zero\\\");\\n        require(address(_prizeDistributionBuffer) != address(0), \\\"DrawCalc/pdb-not-zero\\\");\\n        require(address(_drawBuffer) != address(0), \\\"DrawCalc/dh-not-zero\\\");\\n\\n        ticket = _ticket;\\n        drawBuffer = _drawBuffer;\\n        prizeDistributionBuffer = _prizeDistributionBuffer;\\n\\n        emit Deployed(_ticket, _drawBuffer, _prizeDistributionBuffer);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IDrawCalculator\\n    function calculate(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _pickIndicesForDraws\\n    ) external view override returns (uint256[] memory, bytes memory) {\\n        uint64[][] memory pickIndices = abi.decode(_pickIndicesForDraws, (uint64 [][]));\\n        require(pickIndices.length == _drawIds.length, \\\"DrawCalc/invalid-pick-indices-length\\\");\\n\\n        // READ list of IDrawBeacon.Draw using the drawIds from drawBuffer\\n        IDrawBeacon.Draw[] memory draws = drawBuffer.getDraws(_drawIds);\\n\\n        // READ list of IPrizeDistributionBuffer.PrizeDistribution using the drawIds\\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions = prizeDistributionBuffer\\n            .getPrizeDistributions(_drawIds);\\n\\n        // The userBalances are fractions representing their portion of the liquidity for a draw.\\n        uint256[] memory userBalances = _getNormalizedBalancesAt(_user, draws, _prizeDistributions);\\n\\n        // The users address is hashed once.\\n        bytes32 _userRandomNumber = keccak256(abi.encodePacked(_user));\\n\\n        return _calculatePrizesAwardable(\\n                userBalances,\\n                _userRandomNumber,\\n                draws,\\n                pickIndices,\\n                _prizeDistributions\\n            );\\n    }\\n\\n    /// @inheritdoc IDrawCalculator\\n    function getDrawBuffer() external view override returns (IDrawBuffer) {\\n        return drawBuffer;\\n    }\\n\\n    /// @inheritdoc IDrawCalculator\\n    function getPrizeDistributionBuffer()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer)\\n    {\\n        return prizeDistributionBuffer;\\n    }\\n\\n    /// @inheritdoc IDrawCalculator\\n    function getNormalizedBalancesForDrawIds(address _user, uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (uint256[] memory)\\n    {\\n        IDrawBeacon.Draw[] memory _draws = drawBuffer.getDraws(_drawIds);\\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions = prizeDistributionBuffer\\n            .getPrizeDistributions(_drawIds);\\n\\n        return _getNormalizedBalancesAt(_user, _draws, _prizeDistributions);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates the prizes awardable for each Draw passed.\\n     * @param _normalizedUserBalances Fractions representing the user's portion of the liquidity for each draw.\\n     * @param _userRandomNumber       Random number of the user to consider over draws\\n     * @param _draws                  List of Draws\\n     * @param _pickIndicesForDraws    Pick indices for each Draw\\n     * @param _prizeDistributions     PrizeDistribution for each Draw\\n\\n     */\\n    function _calculatePrizesAwardable(\\n        uint256[] memory _normalizedUserBalances,\\n        bytes32 _userRandomNumber,\\n        IDrawBeacon.Draw[] memory _draws,\\n        uint64[][] memory _pickIndicesForDraws,\\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions\\n    ) internal view returns (uint256[] memory prizesAwardable, bytes memory prizeCounts) {\\n\\n        uint256[] memory _prizesAwardable = new uint256[](_normalizedUserBalances.length);\\n        uint256[][] memory _prizeCounts = new uint256[][](_normalizedUserBalances.length);\\n\\n        uint64 timeNow = uint64(block.timestamp);\\n\\n        // calculate prizes awardable for each Draw passed\\n        for (uint32 drawIndex = 0; drawIndex < _draws.length; drawIndex++) {\\n            require(timeNow < _draws[drawIndex].timestamp + _prizeDistributions[drawIndex].expiryDuration, \\\"DrawCalc/draw-expired\\\");\\n\\n            uint64 totalUserPicks = _calculateNumberOfUserPicks(\\n                _prizeDistributions[drawIndex],\\n                _normalizedUserBalances[drawIndex]\\n            );\\n\\n            (_prizesAwardable[drawIndex], _prizeCounts[drawIndex]) = _calculate(\\n                _draws[drawIndex].winningRandomNumber,\\n                totalUserPicks,\\n                _userRandomNumber,\\n                _pickIndicesForDraws[drawIndex],\\n                _prizeDistributions[drawIndex]\\n            );\\n        }\\n\\n        prizeCounts = abi.encode(_prizeCounts);\\n        prizesAwardable = _prizesAwardable;\\n    }\\n\\n    /**\\n     * @notice Calculates the number of picks a user gets for a Draw, considering the normalized user balance and the PrizeDistribution.\\n     * @dev Divided by 1e18 since the normalized user balance is stored as a fixed point 18 number\\n     * @param _prizeDistribution The PrizeDistribution to consider\\n     * @param _normalizedUserBalance The normalized user balances to consider\\n     * @return The number of picks a user gets for a Draw\\n     */\\n    function _calculateNumberOfUserPicks(\\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\\n        uint256 _normalizedUserBalance\\n    ) internal pure returns (uint64) {\\n        return uint64((_normalizedUserBalance * _prizeDistribution.numberOfPicks) / 1 ether);\\n    }\\n\\n    /**\\n     * @notice Calculates the normalized balance of a user against the total supply for timestamps\\n     * @param _user The user to consider\\n     * @param _draws The draws we are looking at\\n     * @param _prizeDistributions The prize tiers to consider (needed for draw timestamp offsets)\\n     * @return An array of normalized balances\\n     */\\n    function _getNormalizedBalancesAt(\\n        address _user,\\n        IDrawBeacon.Draw[] memory _draws,\\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions\\n    ) internal view returns (uint256[] memory) {\\n        uint256 drawsLength = _draws.length;\\n        uint64[] memory _timestampsWithStartCutoffTimes = new uint64[](drawsLength);\\n        uint64[] memory _timestampsWithEndCutoffTimes = new uint64[](drawsLength);\\n\\n        // generate timestamps with draw cutoff offsets included\\n        for (uint32 i = 0; i < drawsLength; i++) {\\n            unchecked {\\n                _timestampsWithStartCutoffTimes[i] =\\n                    _draws[i].timestamp - _prizeDistributions[i].startTimestampOffset;\\n                _timestampsWithEndCutoffTimes[i] =\\n                    _draws[i].timestamp - _prizeDistributions[i].endTimestampOffset;\\n            }\\n        }\\n\\n        uint256[] memory balances = ticket.getAverageBalancesBetween(\\n            _user,\\n            _timestampsWithStartCutoffTimes,\\n            _timestampsWithEndCutoffTimes\\n        );\\n\\n        uint256[] memory totalSupplies = ticket.getAverageTotalSuppliesBetween(\\n            _timestampsWithStartCutoffTimes,\\n            _timestampsWithEndCutoffTimes\\n        );\\n\\n        uint256[] memory normalizedBalances = new uint256[](drawsLength);\\n\\n        // divide balances by total supplies (normalize)\\n        for (uint256 i = 0; i < drawsLength; i++) {\\n            if(totalSupplies[i] == 0){\\n                normalizedBalances[i] = 0;\\n            }\\n            else {\\n                normalizedBalances[i] = (balances[i] * 1 ether) / totalSupplies[i];\\n            }\\n        }\\n\\n        return normalizedBalances;\\n    }\\n\\n    /**\\n     * @notice Calculates the prize amount for a PrizeDistribution over given picks\\n     * @param _winningRandomNumber Draw's winningRandomNumber\\n     * @param _totalUserPicks      number of picks the user gets for the Draw\\n     * @param _userRandomNumber    users randomNumber for that draw\\n     * @param _picks               users picks for that draw\\n     * @param _prizeDistribution   PrizeDistribution for that draw\\n     * @return prize (if any), prizeCounts (if any)\\n     */\\n    function _calculate(\\n        uint256 _winningRandomNumber,\\n        uint256 _totalUserPicks,\\n        bytes32 _userRandomNumber,\\n        uint64[] memory _picks,\\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution\\n    ) internal pure returns (uint256 prize, uint256[] memory prizeCounts) {\\n\\n        // create bitmasks for the PrizeDistribution\\n        uint256[] memory masks = _createBitMasks(_prizeDistribution);\\n        uint32 picksLength = uint32(_picks.length);\\n        uint256[] memory _prizeCounts = new uint256[](_prizeDistribution.tiers.length);\\n\\n        uint8 maxWinningTierIndex = 0;\\n\\n        require(\\n            picksLength <= _prizeDistribution.maxPicksPerUser,\\n            \\\"DrawCalc/exceeds-max-user-picks\\\"\\n        );\\n\\n        // for each pick, find number of matching numbers and calculate prize distributions index\\n        for (uint32 index = 0; index < picksLength; index++) {\\n            require(_picks[index] < _totalUserPicks, \\\"DrawCalc/insufficient-user-picks\\\");\\n\\n            if (index > 0) {\\n                require(_picks[index] > _picks[index - 1], \\\"DrawCalc/picks-ascending\\\");\\n            }\\n\\n            // hash the user random number with the pick value\\n            uint256 randomNumberThisPick = uint256(\\n                keccak256(abi.encode(_userRandomNumber, _picks[index]))\\n            );\\n\\n            uint8 tiersIndex = _calculateTierIndex(\\n                randomNumberThisPick,\\n                _winningRandomNumber,\\n                masks\\n            );\\n\\n            // there is prize for this tier index\\n            if (tiersIndex < TIERS_LENGTH) {\\n                if (tiersIndex > maxWinningTierIndex) {\\n                    maxWinningTierIndex = tiersIndex;\\n                }\\n                _prizeCounts[tiersIndex]++;\\n            }\\n        }\\n\\n        // now calculate prizeFraction given prizeCounts\\n        uint256 prizeFraction = 0;\\n        uint256[] memory prizeTiersFractions = _calculatePrizeTierFractions(\\n            _prizeDistribution,\\n            maxWinningTierIndex\\n        );\\n\\n        // multiple the fractions by the prizeCounts and add them up\\n        for (\\n            uint256 prizeCountIndex = 0;\\n            prizeCountIndex <= maxWinningTierIndex;\\n            prizeCountIndex++\\n        ) {\\n            if (_prizeCounts[prizeCountIndex] > 0) {\\n                prizeFraction +=\\n                    prizeTiersFractions[prizeCountIndex] *\\n                    _prizeCounts[prizeCountIndex];\\n            }\\n        }\\n\\n        // return the absolute amount of prize awardable\\n        // div by 1e9 as prize tiers are base 1e9\\n        prize = (prizeFraction * _prizeDistribution.prize) / 1e9;\\n        prizeCounts = _prizeCounts;\\n    }\\n\\n    ///@notice Calculates the tier index given the random numbers and masks\\n    ///@param _randomNumberThisPick users random number for this Pick\\n    ///@param _winningRandomNumber The winning number for this draw\\n    ///@param _masks The pre-calculate bitmasks for the prizeDistributions\\n    ///@return The position within the prize tier array (0 = top prize, 1 = runner-up prize, etc)\\n    function _calculateTierIndex(\\n        uint256 _randomNumberThisPick,\\n        uint256 _winningRandomNumber,\\n        uint256[] memory _masks\\n    ) internal pure returns (uint8) {\\n        uint8 numberOfMatches = 0;\\n        uint8 masksLength = uint8(_masks.length);\\n\\n        // main number matching loop\\n        for (uint8 matchIndex = 0; matchIndex < masksLength; matchIndex++) {\\n            uint256 mask = _masks[matchIndex];\\n\\n            if ((_randomNumberThisPick & mask) != (_winningRandomNumber & mask)) {\\n                // there are no more sequential matches since this comparison is not a match\\n                if (masksLength == numberOfMatches) {\\n                    return 0;\\n                } else {\\n                    return masksLength - numberOfMatches;\\n                }\\n            }\\n\\n            // else there was a match\\n            numberOfMatches++;\\n        }\\n\\n        return masksLength - numberOfMatches;\\n    }\\n\\n    /**\\n     * @notice Create an array of bitmasks equal to the PrizeDistribution.matchCardinality length\\n     * @param _prizeDistribution The PrizeDistribution to use to calculate the masks\\n     * @return An array of bitmasks\\n     */\\n    function _createBitMasks(IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution)\\n        internal\\n        pure\\n        returns (uint256[] memory)\\n    {\\n        uint256[] memory masks = new uint256[](_prizeDistribution.matchCardinality);\\n        masks[0] =  (2**_prizeDistribution.bitRangeSize) - 1;\\n\\n        for (uint8 maskIndex = 1; maskIndex < _prizeDistribution.matchCardinality; maskIndex++) {\\n            // shift mask bits to correct position and insert in result mask array\\n            masks[maskIndex] = masks[maskIndex - 1] << _prizeDistribution.bitRangeSize;\\n        }\\n\\n        return masks;\\n    }\\n\\n    /**\\n     * @notice Calculates the expected prize fraction per PrizeDistributions and distributionIndex\\n     * @param _prizeDistribution prizeDistribution struct for Draw\\n     * @param _prizeTierIndex Index of the prize tiers array to calculate\\n     * @return returns the fraction of the total prize (fixed point 9 number)\\n     */\\n    function _calculatePrizeTierFraction(\\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\\n        uint256 _prizeTierIndex\\n    ) internal pure returns (uint256) {\\n         // get the prize fraction at that index\\n        uint256 prizeFraction = _prizeDistribution.tiers[_prizeTierIndex];\\n\\n        // calculate number of prizes for that index\\n        uint256 numberOfPrizesForIndex = _numberOfPrizesForIndex(\\n            _prizeDistribution.bitRangeSize,\\n            _prizeTierIndex\\n        );\\n\\n        return prizeFraction / numberOfPrizesForIndex;\\n    }\\n\\n    /**\\n     * @notice Generates an array of prize tiers fractions\\n     * @param _prizeDistribution prizeDistribution struct for Draw\\n     * @param maxWinningTierIndex Max length of the prize tiers array\\n     * @return returns an array of prize tiers fractions\\n     */\\n    function _calculatePrizeTierFractions(\\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\\n        uint8 maxWinningTierIndex\\n    ) internal pure returns (uint256[] memory) {\\n        uint256[] memory prizeDistributionFractions = new uint256[](\\n            maxWinningTierIndex + 1\\n        );\\n\\n        for (uint8 i = 0; i <= maxWinningTierIndex; i++) {\\n            prizeDistributionFractions[i] = _calculatePrizeTierFraction(\\n                _prizeDistribution,\\n                i\\n            );\\n        }\\n\\n        return prizeDistributionFractions;\\n    }\\n\\n    /**\\n     * @notice Calculates the number of prizes for a given prizeDistributionIndex\\n     * @param _bitRangeSize Bit range size for Draw\\n     * @param _prizeTierIndex Index of the prize tier array to calculate\\n     * @return returns the fraction of the total prize (base 1e18)\\n     */\\n    function _numberOfPrizesForIndex(uint8 _bitRangeSize, uint256 _prizeTierIndex)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_prizeTierIndex > 0) {\\n            return ( 1 << _bitRangeSize * _prizeTierIndex ) - ( 1 << _bitRangeSize * (_prizeTierIndex - 1) );\\n        } else {\\n            return 1;\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xac5b78f969f2f2dd3bbec9c177740e0b4857099f2b7a5830f2b324528e1b90f0\",\"license\":\"GPL-3.0\"},\"contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionSource\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"license\":\"GPL-3.0\"},\"contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawIds to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valid drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"},\"contracts/test/DrawCalculatorHarness.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../DrawCalculator.sol\\\";\\n\\ncontract DrawCalculatorHarness is DrawCalculator {\\n    constructor(\\n        ITicket _ticket,\\n        IDrawBuffer _drawBuffer,\\n        IPrizeDistributionBuffer _prizeDistributionBuffer\\n    ) DrawCalculator(_ticket, _drawBuffer, _prizeDistributionBuffer) {}\\n\\n    function calculateTierIndex(\\n        uint256 _randomNumberThisPick,\\n        uint256 _winningRandomNumber,\\n        uint256[] memory _masks\\n    ) public pure returns (uint256) {\\n        return _calculateTierIndex(_randomNumberThisPick, _winningRandomNumber, _masks);\\n    }\\n\\n    function createBitMasks(IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution)\\n        public\\n        pure\\n        returns (uint256[] memory)\\n    {\\n        return _createBitMasks(_prizeDistribution);\\n    }\\n\\n    ///@notice Calculates the expected prize fraction per prizeDistribution and prizeTierIndex\\n    ///@param _prizeDistribution prizeDistribution struct for Draw\\n    ///@param _prizeTierIndex Index of the prize tiers array to calculate\\n    ///@return returns the fraction of the total prize\\n    function calculatePrizeTierFraction(\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution,\\n        uint256 _prizeTierIndex\\n    ) external pure returns (uint256) {\\n        return _calculatePrizeTierFraction(_prizeDistribution, _prizeTierIndex);\\n    }\\n\\n    function numberOfPrizesForIndex(uint8 _bitRangeSize, uint256 _prizeTierIndex)\\n        external\\n        pure\\n        returns (uint256)\\n    {\\n        return _numberOfPrizesForIndex(_bitRangeSize, _prizeTierIndex);\\n    }\\n\\n    function calculateNumberOfUserPicks(\\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\\n        uint256 _normalizedUserBalance\\n    ) external pure returns (uint64) {\\n        return _calculateNumberOfUserPicks(_prizeDistribution, _normalizedUserBalance);\\n    }\\n}\\n\",\"keccak256\":\"0x415d0c017a51895cc5cef11b922552d3658f2835e007f01fe1bd0379b836c039\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "Deployed(address,address,address)": {
                "notice": "Emitted when the contract is initialized"
              },
              "PrizeDistributorSet(address)": {
                "notice": "Emitted when the prizeDistributor is set/updated"
              }
            },
            "kind": "user",
            "methods": {
              "TIERS_LENGTH()": {
                "notice": "The tiers array length"
              },
              "calculate(address,uint32[],bytes)": {
                "notice": "Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor."
              },
              "calculatePrizeTierFraction((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)": {
                "notice": "Calculates the expected prize fraction per prizeDistribution and prizeTierIndex"
              },
              "drawBuffer()": {
                "notice": "DrawBuffer address"
              },
              "getDrawBuffer()": {
                "notice": "Read global DrawBuffer variable."
              },
              "getNormalizedBalancesForDrawIds(address,uint32[])": {
                "notice": "Returns a users balances expressed as a fraction of the total supply over time."
              },
              "getPrizeDistributionBuffer()": {
                "notice": "Read global prizeDistributionBuffer variable."
              },
              "prizeDistributionBuffer()": {
                "notice": "The stored history of draw settings.  Stored as ring buffer."
              },
              "ticket()": {
                "notice": "Ticket associated with DrawCalculator"
              }
            },
            "version": 1
          }
        }
      },
      "contracts/test/DrawCalculatorV2Harness.sol": {
        "DrawCalculatorV2Harness": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_ticket",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "_drawBuffer",
                  "type": "address"
                },
                {
                  "internalType": "contract IPrizeDistributionSource",
                  "name": "_prizeDistributionSource",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IDrawBuffer",
                  "name": "drawBuffer",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IPrizeDistributionSource",
                  "name": "prizeDistributionSource",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract PrizeDistributor",
                  "name": "prizeDistributor",
                  "type": "address"
                }
              ],
              "name": "PrizeDistributorSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "TIERS_LENGTH",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                },
                {
                  "internalType": "bytes",
                  "name": "_pickIndicesForDraws",
                  "type": "bytes"
                }
              ],
              "name": "calculate",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                },
                {
                  "internalType": "bytes",
                  "name": "",
                  "type": "bytes"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "_prizeDistribution",
                  "type": "tuple"
                },
                {
                  "internalType": "uint256",
                  "name": "_normalizedUserBalance",
                  "type": "uint256"
                }
              ],
              "name": "calculateNumberOfUserPicks",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "_prizeDistribution",
                  "type": "tuple"
                },
                {
                  "internalType": "uint256",
                  "name": "_prizeTierIndex",
                  "type": "uint256"
                }
              ],
              "name": "calculatePrizeTierFraction",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_randomNumberThisPick",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "_winningRandomNumber",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256[]",
                  "name": "_masks",
                  "type": "uint256[]"
                }
              ],
              "name": "calculateTierIndex",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionSource.PrizeDistribution",
                  "name": "_prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "createBitMasks",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "drawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getNormalizedBalancesForDrawIds",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeDistributionSource",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionSource",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint8",
                  "name": "_bitRangeSize",
                  "type": "uint8"
                },
                {
                  "internalType": "uint256",
                  "name": "_prizeTierIndex",
                  "type": "uint256"
                }
              ],
              "name": "numberOfPrizesForIndex",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "prizeDistributionSource",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionSource",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "ticket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "calculate(address,uint32[],bytes)": {
                "params": {
                  "_drawIds": "drawId array for which to calculate prize amounts for.",
                  "_pickIndicesForDraws": "The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.",
                  "_user": "User for which to calculate prize amount."
                },
                "returns": {
                  "_0": "List of awardable prize amounts ordered by drawId."
                }
              },
              "calculatePrizeTierFraction((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)": {
                "params": {
                  "_prizeDistribution": "prizeDistribution struct for Draw",
                  "_prizeTierIndex": "Index of the prize tiers array to calculate"
                },
                "returns": {
                  "_0": "returns the fraction of the total prize"
                }
              },
              "getDrawBuffer()": {
                "returns": {
                  "_0": "IDrawBuffer"
                }
              },
              "getNormalizedBalancesForDrawIds(address,uint32[])": {
                "params": {
                  "_drawIds": "The drawIds to consider",
                  "_user": "The users address"
                },
                "returns": {
                  "_0": "Array of balances"
                }
              },
              "getPrizeDistributionSource()": {
                "returns": {
                  "_0": "IPrizeDistributionSource"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_16011": {
                  "entryPoint": null,
                  "id": 16011,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_7681": {
                  "entryPoint": null,
                  "id": 7681,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_contract$_ITicket_$12213t_contract$_IDrawBuffer_$11318t_contract$_IPrizeDistributionSource_$11503_fromMemory": {
                  "entryPoint": 429,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "validator_revert_contract_IDrawBuffer": {
                  "entryPoint": 513,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1847:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "201:443:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "247:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "256:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "259:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "249:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "249:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "249:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "222:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "231:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "218:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "218:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "243:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "214:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "214:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "211:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "272:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "291:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "285:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "285:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "276:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "348:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "310:37:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "310:44:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "310:44:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "363:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "373:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "363:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "387:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "412:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "423:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "408:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "408:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "402:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "402:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "391:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "474:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "436:37:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "436:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "436:46:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "491:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "501:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "491:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "517:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "542:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "553:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "538:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "538:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "532:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "532:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "521:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "604:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "566:37:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "566:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "566:46:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "621:17:84",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "631:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "621:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$12213t_contract$_IDrawBuffer_$11318t_contract$_IPrizeDistributionSource_$11503_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "151:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "162:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "174:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "182:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "190:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:630:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "823:170:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "840:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "851:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "833:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "833:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "833:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "874:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "885:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "870:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "870:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "890:2:84",
                                    "type": "",
                                    "value": "20"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "863:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "863:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "863:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "913:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "924:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "909:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "909:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f64682d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "929:22:84",
                                    "type": "",
                                    "value": "DrawCalc/dh-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "902:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "902:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "902:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "961:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "973:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "984:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "969:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "969:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "800:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "814:4:84",
                            "type": ""
                          }
                        ],
                        "src": "649:344:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1172:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1189:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1200:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1182:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1182:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1182:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1223:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1234:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1219:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1219:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1239:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1212:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1212:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1212:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1262:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1273:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1258:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1258:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7469636b65742d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1278:26:84",
                                    "type": "",
                                    "value": "DrawCalc/ticket-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1251:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1251:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1251:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1314:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1326:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1337:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1322:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1322:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1314:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1149:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1163:4:84",
                            "type": ""
                          }
                        ],
                        "src": "998:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1525:171:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1542:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1553:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1535:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1535:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1535:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1576:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1587:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1572:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1572:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1592:2:84",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1565:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1565:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1565:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1615:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1626:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1611:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1611:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7064622d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1631:23:84",
                                    "type": "",
                                    "value": "DrawCalc/pdb-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1604:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1604:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1604:51:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1664:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1676:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1687:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1672:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1672:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1664:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1502:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1516:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1351:345:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1759:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1823:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1832:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1835:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1825:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1825:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1825:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1782:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1793:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1808:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1813:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1804:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1804:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1817:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1800:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1800:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1789:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1789:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1779:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1779:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1772:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1772:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1769:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_contract_IDrawBuffer",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1748:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1701:144:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_contract$_ITicket_$12213t_contract$_IDrawBuffer_$11318t_contract$_IPrizeDistributionSource_$11503_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IDrawBuffer(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IDrawBuffer(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_contract_IDrawBuffer(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 20)\n        mstore(add(headStart, 64), \"DrawCalc/dh-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"DrawCalc/ticket-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"DrawCalc/pdb-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function validator_revert_contract_IDrawBuffer(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60e06040523480156200001157600080fd5b50604051620025f4380380620025f48339810160408190526200003491620001ad565b8282826001600160a01b038316620000935760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7469636b65742d6e6f742d7a65726f000000000000000060448201526064015b60405180910390fd5b6001600160a01b038116620000eb5760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f7064622d6e6f742d7a65726f000000000000000000000060448201526064016200008a565b6001600160a01b038216620001435760405162461bcd60e51b815260206004820152601460248201527f4472617743616c632f64682d6e6f742d7a65726f00000000000000000000000060448201526064016200008a565b6001600160601b0319606084811b821660a05283811b821660805282901b1660c0526040516001600160a01b0382811691848216918616907fc95935a66d15e0da5e412aca0ad27ae891d20b2fb91cf3994b6a3bf2b817808290600090a45050505050506200021a565b600080600060608486031215620001c357600080fd5b8351620001d08162000201565b6020850151909350620001e38162000201565b6040850151909250620001f68162000201565b809150509250925092565b6001600160a01b03811681146200021757600080fd5b50565b60805160601c60a05160601c60c05160601c6123696200028b600039600081816101c001528181610249015281816103c701526105f601526000818161018901528181610b5f0152610bf201526000818161011f0152818161027001528181610314015261056501526123696000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c8063740e61a31161008c578063aaca392e11610066578063aaca392e14610223578063bcc18abc14610244578063ce343bb61461026b578063f8d0ca4c1461029257600080fd5b8063740e61a3146101be5780638045fbcf146101e45780639d34ee24146101f757600080fd5b806367306cf2116100bd57806367306cf2146101645780636cc25db7146101845780636d4bfa6e146101ab57600080fd5b8063094a2491146100e45780633b5564f91461010a5780634019f2d61461011d575b600080fd5b6100f76100f2366004611d36565b6102ac565b6040519081526020015b60405180910390f35b6100f7610118366004611c21565b6102c1565b7f00000000000000000000000000000000000000000000000000000000000000005b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610101565b610177610172366004611c04565b6102db565b6040516101019190611e98565b61013f7f000000000000000000000000000000000000000000000000000000000000000081565b6100f76101b9366004611c89565b6102f4565b7f000000000000000000000000000000000000000000000000000000000000000061013f565b6101776101f2366004611727565b61030e565b61020a610205366004611c6b565b61048b565b60405167ffffffffffffffff9091168152602001610101565b61023661023136600461177a565b610497565b604051610101929190611eab565b61013f7f000000000000000000000000000000000000000000000000000000000000000081565b61013f7f000000000000000000000000000000000000000000000000000000000000000081565b61029a601081565b60405160ff9091168152602001610101565b60006102b88383610722565b90505b92915050565b60006102b86102d536859003850185611c4e565b83610770565b60606102bb6102ef36849003840184611c4e565b6107bb565b60006103018484846108c0565b60ff1690505b9392505050565b606060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0bb78f385856040518363ffffffff1660e01b815260040161036d929190611f10565b60006040518083038186803b15801561038557600080fd5b505afa158015610399573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103c19190810190611945565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf86866040518363ffffffff1660e01b8152600401610420929190611f10565b60006040518083038186803b15801561043857600080fd5b505afa15801561044c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104749190810190611a40565b905061048186838361095f565b9695505050505050565b60006102b88383610dca565b60608060006104a884860186611825565b805190915086146105255760405162461bcd60e51b8152602060048201526024808201527f4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c6560448201527f6e6774680000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6040517fd0bb78f300000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063d0bb78f39061059c908b908b90600401611f10565b60006040518083038186803b1580156105b457600080fd5b505afa1580156105c8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105f09190810190611945565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf8a8a6040518363ffffffff1660e01b815260040161064f929190611f10565b60006040518083038186803b15801561066757600080fd5b505afa15801561067b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106a39190810190611a40565b905060006106b28b848461095f565b6040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608e901b16602082015290915060009060340160405160208183030381529060405280519060200120905061070f8282868887610dfe565b9650965050505050509550959350505050565b60008115610768576107356001836121de565b6107429060ff85166121bf565b6001901b6107538360ff86166121bf565b6001901b61076191906121de565b90506102bb565b5060016102bb565b6000808360e001518360108110610789576107896122b2565b602002015163ffffffff16905060006107a6856000015185610722565b90506107b281836120af565b95945050505050565b60606000826020015160ff1667ffffffffffffffff8111156107df576107df6122c8565b604051908082528060200260200182016040528015610808578160200160208202803683370190505b50835190915060019061081c906002612114565b61082691906121de565b81600081518110610839576108396122b2565b602090810291909101015260015b836020015160ff168160ff1610156108b957835160ff168261086a60018461221a565b60ff168151811061087d5761087d6122b2565b6020026020010151901b828260ff168151811061089c5761089c6122b2565b6020908102919091010152806108b18161227c565b915050610847565b5092915050565b80516000908190815b8160ff168160ff161015610954576000858260ff16815181106108ee576108ee6122b2565b6020026020010151905080871681891614610933578360ff168360ff16141561091e576000945050505050610307565b610928848461221a565b945050505050610307565b8361093d8161227c565b94505050808061094c9061227c565b9150506108c9565b50610481828261221a565b815160609060008167ffffffffffffffff81111561097f5761097f6122c8565b6040519080825280602002602001820160405280156109a8578160200160208202803683370190505b50905060008267ffffffffffffffff8111156109c6576109c66122c8565b6040519080825280602002602001820160405280156109ef578160200160208202803683370190505b50905060005b838163ffffffff161015610b1e57858163ffffffff1681518110610a1b57610a1b6122b2565b60200260200101516040015163ffffffff16878263ffffffff1681518110610a4557610a456122b2565b60200260200101516040015103838263ffffffff1681518110610a6a57610a6a6122b2565b602002602001019067ffffffffffffffff16908167ffffffffffffffff1681525050858163ffffffff1681518110610aa457610aa46122b2565b60200260200101516060015163ffffffff16878263ffffffff1681518110610ace57610ace6122b2565b60200260200101516040015103828263ffffffff1681518110610af357610af36122b2565b67ffffffffffffffff9092166020928302919091019091015280610b1681612258565b9150506109f5565b506040517f68c7fd5700000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906368c7fd5790610b98908b9087908790600401611dd7565b60006040518083038186803b158015610bb057600080fd5b505afa158015610bc4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bec9190810190611b6c565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638e6d536a85856040518363ffffffff1660e01b8152600401610c4b929190611f5b565b60006040518083038186803b158015610c6357600080fd5b505afa158015610c77573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c9f9190810190611b6c565b905060008567ffffffffffffffff811115610cbc57610cbc6122c8565b604051908082528060200260200182016040528015610ce5578160200160208202803683370190505b50905060005b86811015610dbc57828181518110610d0557610d056122b2565b602002602001015160001415610d3a576000828281518110610d2957610d296122b2565b602002602001018181525050610daa565b828181518110610d4c57610d4c6122b2565b6020026020010151848281518110610d6657610d666122b2565b6020026020010151670de0b6b3a7640000610d8191906121bf565b610d8b91906120af565b828281518110610d9d57610d9d6122b2565b6020026020010181815250505b80610db48161223d565b915050610ceb565b509998505050505050505050565b6000670de0b6b3a76400008360c001516cffffffffffffffffffffffffff1683610df491906121bf565b6102b891906120af565b6060806000875167ffffffffffffffff811115610e1d57610e1d6122c8565b604051908082528060200260200182016040528015610e46578160200160208202803683370190505b5090506000885167ffffffffffffffff811115610e6557610e656122c8565b604051908082528060200260200182016040528015610e9857816020015b6060815260200190600190039081610e835790505b5090504260005b88518163ffffffff16101561108557868163ffffffff1681518110610ec657610ec66122b2565b602002602001015160a0015163ffffffff16898263ffffffff1681518110610ef057610ef06122b2565b602002602001015160400151610f06919061205e565b67ffffffffffffffff168267ffffffffffffffff1610610f685760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d657870697265640000000000000000000000604482015260640161051c565b6000610fb2888363ffffffff1681518110610f8557610f856122b2565b60200260200101518d8463ffffffff1681518110610fa557610fa56122b2565b6020026020010151610dca565b905061102c8a8363ffffffff1681518110610fcf57610fcf6122b2565b6020026020010151600001518267ffffffffffffffff168d8c8663ffffffff1681518110610fff57610fff6122b2565b60200260200101518c8763ffffffff168151811061101f5761101f6122b2565b60200260200101516110b8565b868463ffffffff1681518110611044576110446122b2565b60200260200101868563ffffffff1681518110611063576110636122b2565b602090810291909101019190915252508061107d81612258565b915050610e9f565b50816040516020016110979190611e18565b60405160208183030381529060405293508294505050509550959350505050565b6000606060006110c7846107bb565b85516040805160108082526102208201909252929350909160009160208201610200803683370190505090506000866080015163ffffffff168363ffffffff1611156111555760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f657863656564732d6d61782d757365722d7069636b7300604482015260640161051c565b60005b8363ffffffff168163ffffffff16101561136d578a898263ffffffff1681518110611185576111856122b2565b602002602001015167ffffffffffffffff16106111e45760405162461bcd60e51b815260206004820181905260248201527f4472617743616c632f696e73756666696369656e742d757365722d7069636b73604482015260640161051c565b63ffffffff81161561129b57886111fc6001836121f5565b63ffffffff1681518110611212576112126122b2565b602002602001015167ffffffffffffffff16898263ffffffff168151811061123c5761123c6122b2565b602002602001015167ffffffffffffffff161161129b5760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7069636b732d617363656e64696e670000000000000000604482015260640161051c565b60008a8a8363ffffffff16815181106112b6576112b66122b2565b60200260200101516040516020016112e292919091825267ffffffffffffffff16602082015260400190565b6040516020818303038152906040528051906020012060001c9050600061130a828f896108c0565b9050601060ff82161015611358578360ff168160ff16111561132a578093505b848160ff168151811061133f5761133f6122b2565b6020026020010180518091906113549061223d565b9052505b5050808061136590612258565b915050611158565b5060008061137b898461143d565b905060005b8360ff16811161140957600085828151811061139e5761139e6122b2565b602002602001015111156113f7578481815181106113be576113be6122b2565b60200260200101518282815181106113d8576113d86122b2565b60200260200101516113ea91906121bf565b6113f49084612046565b92505b806114018161223d565b915050611380565b50633b9aca008961010001518361142091906121bf565b61142a91906120af565b9d939c50929a5050505050505050505050565b6060600061144c83600161208a565b60ff1667ffffffffffffffff811115611467576114676122c8565b604051908082528060200260200182016040528015611490578160200160208202803683370190505b50905060005b8360ff168160ff16116114e2576114b0858260ff16610770565b828260ff16815181106114c5576114c56122b2565b6020908102919091010152806114da8161227c565b915050611496565b509392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461150e57600080fd5b919050565b600082601f83011261152457600080fd5b61152c611fcd565b8083856102008601111561153f57600080fd5b60005b601081101561156b578135611556816122fc565b84526020938401939190910190600101611542565b509095945050505050565b600082601f83011261158757600080fd5b61158f611fcd565b808385610200860111156115a257600080fd5b60005b601081101561156b5781516115b9816122fc565b845260209384019391909101906001016115a5565b60008083601f8401126115e057600080fd5b50813567ffffffffffffffff8111156115f857600080fd5b6020830191508360208260051b850101111561161357600080fd5b9250929050565b6000610300828403121561162d57600080fd5b50919050565b6000610300828403121561164657600080fd5b61164e611f80565b905061165982611711565b815261166760208301611711565b6020820152611678604083016116fb565b6040820152611689606083016116fb565b606082015261169a608083016116fb565b60808201526116ab60a083016116fb565b60a08201526116bc60c083016116e5565b60c08201526116ce8360e08401611513565b60e08201526102e082013561010082015292915050565b803561150e816122de565b805161150e816122de565b803561150e816122fc565b805161150e816122fc565b803561150e81612324565b805161150e81612324565b60008060006040848603121561173c57600080fd5b611745846114ea565b9250602084013567ffffffffffffffff81111561176157600080fd5b61176d868287016115ce565b9497909650939450505050565b60008060008060006060868803121561179257600080fd5b61179b866114ea565b9450602086013567ffffffffffffffff808211156117b857600080fd5b6117c489838a016115ce565b909650945060408801359150808211156117dd57600080fd5b818801915088601f8301126117f157600080fd5b81358181111561180057600080fd5b89602082850101111561181257600080fd5b9699959850939650602001949392505050565b6000602080838503121561183857600080fd5b823567ffffffffffffffff8082111561185057600080fd5b818501915085601f83011261186457600080fd5b813561187761187282612022565b611ff1565b80828252858201915085850189878560051b880101111561189757600080fd5b60005b84811015611936578135868111156118b157600080fd5b8701603f81018c136118c257600080fd5b888101356118d261187282612022565b808282528b82019150604084018f60408560051b87010111156118f457600080fd5b600094505b8385101561192057803561190c8161230e565b835260019490940193918c01918c016118f9565b508752505050928701929087019060010161189a565b50909998505050505050505050565b6000602080838503121561195857600080fd5b825167ffffffffffffffff81111561196f57600080fd5b8301601f8101851361198057600080fd5b805161198e61187282612022565b8181528381019083850160a0808502860187018a10156119ad57600080fd5b60009550855b85811015611a315781838c0312156119c9578687fd5b6119d1611faa565b83518152888401516119e2816122fc565b818a01526040848101516119f58161230e565b90820152606084810151611a088161230e565b90820152608084810151611a1b816122fc565b90820152855293870193918101916001016119b3565b50919998505050505050505050565b60006020808385031215611a5357600080fd5b825167ffffffffffffffff811115611a6a57600080fd5b8301601f81018513611a7b57600080fd5b8051611a8961187282612022565b81815283810190838501610300808502860187018a1015611aa957600080fd5b60009550855b85811015611a315781838c031215611ac5578687fd5b611acd611f80565b611ad68461171c565b8152611ae389850161171c565b898201526040611af4818601611706565b908201526060611b05858201611706565b908201526080611b16858201611706565b9082015260a0611b27858201611706565b9082015260c0611b388582016116f0565b9082015260e0611b4a8d868301611576565b908201526102e084015161010082015285529387019391810191600101611aaf565b60006020808385031215611b7f57600080fd5b825167ffffffffffffffff811115611b9657600080fd5b8301601f81018513611ba757600080fd5b8051611bb561187282612022565b80828252848201915084840188868560051b8701011115611bd557600080fd5b600094505b83851015611bf8578051835260019490940193918501918501611bda565b50979650505050505050565b60006103008284031215611c1757600080fd5b6102b8838361161a565b6000806103208385031215611c3557600080fd5b611c3f848461161a565b94610300939093013593505050565b60006103008284031215611c6157600080fd5b6102b88383611633565b6000806103208385031215611c7f57600080fd5b611c3f8484611633565b600080600060608486031215611c9e57600080fd5b833592506020808501359250604085013567ffffffffffffffff811115611cc457600080fd5b8501601f81018713611cd557600080fd5b8035611ce361187282612022565b8082825284820191508484018a868560051b8701011115611d0357600080fd5b600094505b83851015611d26578035835260019490940193918501918501611d08565b5080955050505050509250925092565b60008060408385031215611d4957600080fd5b8235611d5481612324565b946020939093013593505050565b600081518084526020808501945080840160005b83811015611d9257815187529582019590820190600101611d76565b509495945050505050565b600081518084526020808501945080840160005b83811015611d9257815167ffffffffffffffff1687529582019590820190600101611db1565b73ffffffffffffffffffffffffffffffffffffffff84168152606060208201526000611e066060830185611d9d565b82810360408401526104818185611d9d565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015611e8b577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452611e79858351611d62565b94509285019290850190600101611e3f565b5092979650505050505050565b6020815260006102b86020830184611d62565b604081526000611ebe6040830185611d62565b602083820381850152845180835260005b81811015611eea578681018301518482018401528201611ecf565b81811115611efb5760008383860101525b50601f01601f19169190910101949350505050565b60208082528181018390526000908460408401835b86811015611f50578235611f38816122fc565b63ffffffff1682529183019190830190600101611f25565b509695505050505050565b604081526000611f6e6040830185611d9d565b82810360208401526107b28185611d9d565b604051610120810167ffffffffffffffff81118282101715611fa457611fa46122c8565b60405290565b60405160a0810167ffffffffffffffff81118282101715611fa457611fa46122c8565b604051610200810167ffffffffffffffff81118282101715611fa457611fa46122c8565b604051601f8201601f1916810167ffffffffffffffff8111828210171561201a5761201a6122c8565b604052919050565b600067ffffffffffffffff82111561203c5761203c6122c8565b5060051b60200190565b600082198211156120595761205961229c565b500190565b600067ffffffffffffffff8083168185168083038211156120815761208161229c565b01949350505050565b600060ff821660ff84168060ff038211156120a7576120a761229c565b019392505050565b6000826120cc57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b8085111561210c5781600019048211156120f2576120f261229c565b808516156120ff57918102915b93841c93908002906120d6565b509250929050565b60006102b860ff84168360008261212d575060016102bb565b8161213a575060006102bb565b8160018114612150576002811461215a57612176565b60019150506102bb565b60ff84111561216b5761216b61229c565b50506001821b6102bb565b5060208310610133831016604e8410600b8410161715612199575081810a6102bb565b6121a383836120d1565b80600019048211156121b7576121b761229c565b029392505050565b60008160001904831182151516156121d9576121d961229c565b500290565b6000828210156121f0576121f061229c565b500390565b600063ffffffff838116908316818110156122125761221261229c565b039392505050565b600060ff821660ff8416808210156122345761223461229c565b90039392505050565b60006000198214156122515761225161229c565b5060010190565b600063ffffffff808316818114156122725761227261229c565b6001019392505050565b600060ff821660ff8114156122935761229361229c565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6cffffffffffffffffffffffffff811681146122f957600080fd5b50565b63ffffffff811681146122f957600080fd5b67ffffffffffffffff811681146122f957600080fd5b60ff811681146122f957600080fdfea26469706673582212208938540598b2c0d8179196a51c6c70145121771baedf66e06ae7c3cc6047e5a464736f6c63430008060033",
              "opcodes": "PUSH1 0xE0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x25F4 CODESIZE SUB DUP1 PUSH3 0x25F4 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1AD JUMP JUMPDEST DUP3 DUP3 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH3 0x93 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7469636B65742D6E6F742D7A65726F0000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0xEB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7064622D6E6F742D7A65726F0000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x8A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0x143 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F64682D6E6F742D7A65726F000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x8A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 DUP2 SHL DUP3 AND PUSH1 0xA0 MSTORE DUP4 DUP2 SHL DUP3 AND PUSH1 0x80 MSTORE DUP3 SWAP1 SHL AND PUSH1 0xC0 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND SWAP2 DUP5 DUP3 AND SWAP2 DUP7 AND SWAP1 PUSH32 0xC95935A66D15E0DA5E412ACA0AD27AE891D20B2FB91CF3994B6A3BF2B8178082 SWAP1 PUSH1 0x0 SWAP1 LOG4 POP POP POP POP POP POP PUSH3 0x21A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x1C3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH3 0x1D0 DUP2 PUSH3 0x201 JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH3 0x1E3 DUP2 PUSH3 0x201 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x1F6 DUP2 PUSH3 0x201 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x217 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH1 0xA0 MLOAD PUSH1 0x60 SHR PUSH1 0xC0 MLOAD PUSH1 0x60 SHR PUSH2 0x2369 PUSH3 0x28B PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x1C0 ADD MSTORE DUP2 DUP2 PUSH2 0x249 ADD MSTORE DUP2 DUP2 PUSH2 0x3C7 ADD MSTORE PUSH2 0x5F6 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x189 ADD MSTORE DUP2 DUP2 PUSH2 0xB5F ADD MSTORE PUSH2 0xBF2 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x11F ADD MSTORE DUP2 DUP2 PUSH2 0x270 ADD MSTORE DUP2 DUP2 PUSH2 0x314 ADD MSTORE PUSH2 0x565 ADD MSTORE PUSH2 0x2369 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 0xDF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x740E61A3 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xAACA392E GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xAACA392E EQ PUSH2 0x223 JUMPI DUP1 PUSH4 0xBCC18ABC EQ PUSH2 0x244 JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x26B JUMPI DUP1 PUSH4 0xF8D0CA4C EQ PUSH2 0x292 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x740E61A3 EQ PUSH2 0x1BE JUMPI DUP1 PUSH4 0x8045FBCF EQ PUSH2 0x1E4 JUMPI DUP1 PUSH4 0x9D34EE24 EQ PUSH2 0x1F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x67306CF2 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x67306CF2 EQ PUSH2 0x164 JUMPI DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0x184 JUMPI DUP1 PUSH4 0x6D4BFA6E EQ PUSH2 0x1AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x94A2491 EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x3B5564F9 EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0x11D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0xF2 CALLDATASIZE PUSH1 0x4 PUSH2 0x1D36 JUMP JUMPDEST PUSH2 0x2AC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF7 PUSH2 0x118 CALLDATASIZE PUSH1 0x4 PUSH2 0x1C21 JUMP JUMPDEST PUSH2 0x2C1 JUMP JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x101 JUMP JUMPDEST PUSH2 0x177 PUSH2 0x172 CALLDATASIZE PUSH1 0x4 PUSH2 0x1C04 JUMP JUMPDEST PUSH2 0x2DB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x101 SWAP2 SWAP1 PUSH2 0x1E98 JUMP JUMPDEST PUSH2 0x13F PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x1B9 CALLDATASIZE PUSH1 0x4 PUSH2 0x1C89 JUMP JUMPDEST PUSH2 0x2F4 JUMP JUMPDEST PUSH32 0x0 PUSH2 0x13F JUMP JUMPDEST PUSH2 0x177 PUSH2 0x1F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x1727 JUMP JUMPDEST PUSH2 0x30E JUMP JUMPDEST PUSH2 0x20A PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0x1C6B JUMP JUMPDEST PUSH2 0x48B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x101 JUMP JUMPDEST PUSH2 0x236 PUSH2 0x231 CALLDATASIZE PUSH1 0x4 PUSH2 0x177A JUMP JUMPDEST PUSH2 0x497 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x101 SWAP3 SWAP2 SWAP1 PUSH2 0x1EAB JUMP JUMPDEST PUSH2 0x13F PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x13F PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x29A PUSH1 0x10 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x101 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B8 DUP4 DUP4 PUSH2 0x722 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B8 PUSH2 0x2D5 CALLDATASIZE DUP6 SWAP1 SUB DUP6 ADD DUP6 PUSH2 0x1C4E JUMP JUMPDEST DUP4 PUSH2 0x770 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2BB PUSH2 0x2EF CALLDATASIZE DUP5 SWAP1 SUB DUP5 ADD DUP5 PUSH2 0x1C4E JUMP JUMPDEST PUSH2 0x7BB JUMP JUMPDEST PUSH1 0x0 PUSH2 0x301 DUP5 DUP5 DUP5 PUSH2 0x8C0 JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD0BB78F3 DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x36D SWAP3 SWAP2 SWAP1 PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x385 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x399 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x3C1 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1945 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP7 DUP7 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x420 SWAP3 SWAP2 SWAP1 PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x438 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x44C JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x474 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1A40 JUMP JUMPDEST SWAP1 POP PUSH2 0x481 DUP7 DUP4 DUP4 PUSH2 0x95F JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B8 DUP4 DUP4 PUSH2 0xDCA JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 PUSH2 0x4A8 DUP5 DUP7 ADD DUP7 PUSH2 0x1825 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP DUP7 EQ PUSH2 0x525 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E76616C69642D7069636B2D696E64696365732D6C65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E67746800000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xD0BB78F300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0xD0BB78F3 SWAP1 PUSH2 0x59C SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5C8 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x5F0 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1945 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP11 DUP11 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x64F SWAP3 SWAP2 SWAP1 PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x667 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x67B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x6A3 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1A40 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x6B2 DUP12 DUP5 DUP5 PUSH2 0x95F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000 PUSH1 0x60 DUP15 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x34 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH2 0x70F DUP3 DUP3 DUP7 DUP9 DUP8 PUSH2 0xDFE JUMP JUMPDEST SWAP7 POP SWAP7 POP POP POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO PUSH2 0x768 JUMPI PUSH2 0x735 PUSH1 0x1 DUP4 PUSH2 0x21DE JUMP JUMPDEST PUSH2 0x742 SWAP1 PUSH1 0xFF DUP6 AND PUSH2 0x21BF JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x753 DUP4 PUSH1 0xFF DUP7 AND PUSH2 0x21BF JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x761 SWAP2 SWAP1 PUSH2 0x21DE JUMP JUMPDEST SWAP1 POP PUSH2 0x2BB JUMP JUMPDEST POP PUSH1 0x1 PUSH2 0x2BB JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0xE0 ADD MLOAD DUP4 PUSH1 0x10 DUP2 LT PUSH2 0x789 JUMPI PUSH2 0x789 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x7A6 DUP6 PUSH1 0x0 ADD MLOAD DUP6 PUSH2 0x722 JUMP JUMPDEST SWAP1 POP PUSH2 0x7B2 DUP2 DUP4 PUSH2 0x20AF JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7DF JUMPI PUSH2 0x7DF PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x808 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP DUP4 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 SWAP1 PUSH2 0x81C SWAP1 PUSH1 0x2 PUSH2 0x2114 JUMP JUMPDEST PUSH2 0x826 SWAP2 SWAP1 PUSH2 0x21DE JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x839 JUMPI PUSH2 0x839 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 JUMPDEST DUP4 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x8B9 JUMPI DUP4 MLOAD PUSH1 0xFF AND DUP3 PUSH2 0x86A PUSH1 0x1 DUP5 PUSH2 0x221A JUMP JUMPDEST PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x87D JUMPI PUSH2 0x87D PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 SHL DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x89C JUMPI PUSH2 0x89C PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x8B1 DUP2 PUSH2 0x227C JUMP JUMPDEST SWAP2 POP POP PUSH2 0x847 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x954 JUMPI PUSH1 0x0 DUP6 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x8EE JUMPI PUSH2 0x8EE PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP DUP1 DUP8 AND DUP2 DUP10 AND EQ PUSH2 0x933 JUMPI DUP4 PUSH1 0xFF AND DUP4 PUSH1 0xFF AND EQ ISZERO PUSH2 0x91E JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0x307 JUMP JUMPDEST PUSH2 0x928 DUP5 DUP5 PUSH2 0x221A JUMP JUMPDEST SWAP5 POP POP POP POP POP PUSH2 0x307 JUMP JUMPDEST DUP4 PUSH2 0x93D DUP2 PUSH2 0x227C JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0x94C SWAP1 PUSH2 0x227C JUMP JUMPDEST SWAP2 POP POP PUSH2 0x8C9 JUMP JUMPDEST POP PUSH2 0x481 DUP3 DUP3 PUSH2 0x221A JUMP JUMPDEST DUP2 MLOAD PUSH1 0x60 SWAP1 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x97F JUMPI PUSH2 0x97F PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x9A8 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x9C6 JUMPI PUSH2 0x9C6 PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x9EF JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xB1E JUMPI DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xA1B JUMPI PUSH2 0xA1B PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xA45 JUMPI PUSH2 0xA45 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP4 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xA6A JUMPI PUSH2 0xA6A PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xAA4 JUMPI PUSH2 0xAA4 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x60 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xACE JUMPI PUSH2 0xACE PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP3 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xAF3 JUMPI PUSH2 0xAF3 PUSH2 0x22B2 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE DUP1 PUSH2 0xB16 DUP2 PUSH2 0x2258 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x9F5 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x68C7FD5700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0x68C7FD57 SWAP1 PUSH2 0xB98 SWAP1 DUP12 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x1DD7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBB0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xBC4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0xBEC SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1B6C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x8E6D536A DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC4B SWAP3 SWAP2 SWAP1 PUSH2 0x1F5B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xC63 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC77 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0xC9F SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1B6C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xCBC JUMPI PUSH2 0xCBC PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xCE5 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0xDBC JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0xD05 JUMPI PUSH2 0xD05 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 EQ ISZERO PUSH2 0xD3A JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xD29 JUMPI PUSH2 0xD29 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP PUSH2 0xDAA JUMP JUMPDEST DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0xD4C JUMPI PUSH2 0xD4C PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xD66 JUMPI PUSH2 0xD66 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xDE0B6B3A7640000 PUSH2 0xD81 SWAP2 SWAP1 PUSH2 0x21BF JUMP JUMPDEST PUSH2 0xD8B SWAP2 SWAP1 PUSH2 0x20AF JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xD9D JUMPI PUSH2 0xD9D PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0xDB4 DUP2 PUSH2 0x223D JUMP JUMPDEST SWAP2 POP POP PUSH2 0xCEB JUMP JUMPDEST POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 DUP4 PUSH1 0xC0 ADD MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0xDF4 SWAP2 SWAP1 PUSH2 0x21BF JUMP JUMPDEST PUSH2 0x2B8 SWAP2 SWAP1 PUSH2 0x20AF JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 DUP8 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE1D JUMPI PUSH2 0xE1D PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xE46 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP9 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE65 JUMPI PUSH2 0xE65 PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xE98 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xE83 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP9 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x1085 JUMPI DUP7 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xEC6 JUMPI PUSH2 0xEC6 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xA0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xEF0 JUMPI PUSH2 0xEF0 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH2 0xF06 SWAP2 SWAP1 PUSH2 0x205E JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xF68 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F647261772D657870697265640000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x51C JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFB2 DUP9 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xF85 JUMPI PUSH2 0xF85 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP14 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFA5 JUMPI PUSH2 0xFA5 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xDCA JUMP JUMPDEST SWAP1 POP PUSH2 0x102C DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFCF JUMPI PUSH2 0xFCF PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP14 DUP13 DUP7 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFFF JUMPI PUSH2 0xFFF PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP13 DUP8 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x101F JUMPI PUSH2 0x101F PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x10B8 JUMP JUMPDEST DUP7 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1044 JUMPI PUSH2 0x1044 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP7 DUP6 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1063 JUMPI PUSH2 0x1063 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD SWAP2 SWAP1 SWAP2 MSTORE MSTORE POP DUP1 PUSH2 0x107D DUP2 PUSH2 0x2258 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xE9F JUMP JUMPDEST POP DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1097 SWAP2 SWAP1 PUSH2 0x1E18 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP DUP3 SWAP5 POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 PUSH1 0x0 PUSH2 0x10C7 DUP5 PUSH2 0x7BB JUMP JUMPDEST DUP6 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x10 DUP1 DUP3 MSTORE PUSH2 0x220 DUP3 ADD SWAP1 SWAP3 MSTORE SWAP3 SWAP4 POP SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH1 0x20 DUP3 ADD PUSH2 0x200 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH1 0x0 DUP7 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0x1155 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F657863656564732D6D61782D757365722D7069636B7300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x51C JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x136D JUMPI DUP11 DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1185 JUMPI PUSH2 0x1185 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0x11E4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E73756666696369656E742D757365722D7069636B73 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x51C JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO PUSH2 0x129B JUMPI DUP9 PUSH2 0x11FC PUSH1 0x1 DUP4 PUSH2 0x21F5 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1212 JUMPI PUSH2 0x1212 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x123C JUMPI PUSH2 0x123C PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0x129B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7069636B732D617363656E64696E670000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x51C JUMP JUMPDEST PUSH1 0x0 DUP11 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x12B6 JUMPI PUSH2 0x12B6 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x12E2 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP PUSH1 0x0 PUSH2 0x130A DUP3 DUP16 DUP10 PUSH2 0x8C0 JUMP JUMPDEST SWAP1 POP PUSH1 0x10 PUSH1 0xFF DUP3 AND LT ISZERO PUSH2 0x1358 JUMPI DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT ISZERO PUSH2 0x132A JUMPI DUP1 SWAP4 POP JUMPDEST DUP5 DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x133F JUMPI PUSH2 0x133F PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP1 MLOAD DUP1 SWAP2 SWAP1 PUSH2 0x1354 SWAP1 PUSH2 0x223D JUMP JUMPDEST SWAP1 MSTORE POP JUMPDEST POP POP DUP1 DUP1 PUSH2 0x1365 SWAP1 PUSH2 0x2258 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1158 JUMP JUMPDEST POP PUSH1 0x0 DUP1 PUSH2 0x137B DUP10 DUP5 PUSH2 0x143D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 GT PUSH2 0x1409 JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x139E JUMPI PUSH2 0x139E PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD GT ISZERO PUSH2 0x13F7 JUMPI DUP5 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x13BE JUMPI PUSH2 0x13BE PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x13D8 JUMPI PUSH2 0x13D8 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x13EA SWAP2 SWAP1 PUSH2 0x21BF JUMP JUMPDEST PUSH2 0x13F4 SWAP1 DUP5 PUSH2 0x2046 JUMP JUMPDEST SWAP3 POP JUMPDEST DUP1 PUSH2 0x1401 DUP2 PUSH2 0x223D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1380 JUMP JUMPDEST POP PUSH4 0x3B9ACA00 DUP10 PUSH2 0x100 ADD MLOAD DUP4 PUSH2 0x1420 SWAP2 SWAP1 PUSH2 0x21BF JUMP JUMPDEST PUSH2 0x142A SWAP2 SWAP1 PUSH2 0x20AF JUMP JUMPDEST SWAP14 SWAP4 SWAP13 POP SWAP3 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x144C DUP4 PUSH1 0x1 PUSH2 0x208A JUMP JUMPDEST PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1467 JUMPI PUSH2 0x1467 PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1490 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT PUSH2 0x14E2 JUMPI PUSH2 0x14B0 DUP6 DUP3 PUSH1 0xFF AND PUSH2 0x770 JUMP JUMPDEST DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x14C5 JUMPI PUSH2 0x14C5 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x14DA DUP2 PUSH2 0x227C JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1496 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x150E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1524 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x152C PUSH2 0x1FCD JUMP JUMPDEST DUP1 DUP4 DUP6 PUSH2 0x200 DUP7 ADD GT ISZERO PUSH2 0x153F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x156B JUMPI DUP2 CALLDATALOAD PUSH2 0x1556 DUP2 PUSH2 0x22FC JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1542 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1587 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x158F PUSH2 0x1FCD JUMP JUMPDEST DUP1 DUP4 DUP6 PUSH2 0x200 DUP7 ADD GT ISZERO PUSH2 0x15A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x156B JUMPI DUP2 MLOAD PUSH2 0x15B9 DUP2 PUSH2 0x22FC JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x15A5 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x15E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x15F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1613 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x162D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1646 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x164E PUSH2 0x1F80 JUMP JUMPDEST SWAP1 POP PUSH2 0x1659 DUP3 PUSH2 0x1711 JUMP JUMPDEST DUP2 MSTORE PUSH2 0x1667 PUSH1 0x20 DUP4 ADD PUSH2 0x1711 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1678 PUSH1 0x40 DUP4 ADD PUSH2 0x16FB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x1689 PUSH1 0x60 DUP4 ADD PUSH2 0x16FB JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x169A PUSH1 0x80 DUP4 ADD PUSH2 0x16FB JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x16AB PUSH1 0xA0 DUP4 ADD PUSH2 0x16FB JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD MSTORE PUSH2 0x16BC PUSH1 0xC0 DUP4 ADD PUSH2 0x16E5 JUMP JUMPDEST PUSH1 0xC0 DUP3 ADD MSTORE PUSH2 0x16CE DUP4 PUSH1 0xE0 DUP5 ADD PUSH2 0x1513 JUMP JUMPDEST PUSH1 0xE0 DUP3 ADD MSTORE PUSH2 0x2E0 DUP3 ADD CALLDATALOAD PUSH2 0x100 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x150E DUP2 PUSH2 0x22DE JUMP JUMPDEST DUP1 MLOAD PUSH2 0x150E DUP2 PUSH2 0x22DE JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x150E DUP2 PUSH2 0x22FC JUMP JUMPDEST DUP1 MLOAD PUSH2 0x150E DUP2 PUSH2 0x22FC JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x150E DUP2 PUSH2 0x2324 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x150E DUP2 PUSH2 0x2324 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x173C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1745 DUP5 PUSH2 0x14EA JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1761 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x176D DUP7 DUP3 DUP8 ADD PUSH2 0x15CE JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1792 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x179B DUP7 PUSH2 0x14EA JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x17B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x17C4 DUP10 DUP4 DUP11 ADD PUSH2 0x15CE JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x17DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x17F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1800 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x1812 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1838 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1850 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1864 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1877 PUSH2 0x1872 DUP3 PUSH2 0x2022 JUMP JUMPDEST PUSH2 0x1FF1 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP6 DUP3 ADD SWAP2 POP DUP6 DUP6 ADD DUP10 DUP8 DUP6 PUSH1 0x5 SHL DUP9 ADD ADD GT ISZERO PUSH2 0x1897 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x1936 JUMPI DUP2 CALLDATALOAD DUP7 DUP2 GT ISZERO PUSH2 0x18B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 ADD PUSH1 0x3F DUP2 ADD DUP13 SGT PUSH2 0x18C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 DUP2 ADD CALLDATALOAD PUSH2 0x18D2 PUSH2 0x1872 DUP3 PUSH2 0x2022 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP12 DUP3 ADD SWAP2 POP PUSH1 0x40 DUP5 ADD DUP16 PUSH1 0x40 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x18F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x1920 JUMPI DUP1 CALLDATALOAD PUSH2 0x190C DUP2 PUSH2 0x230E JUMP JUMPDEST DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP13 ADD SWAP2 DUP13 ADD PUSH2 0x18F9 JUMP JUMPDEST POP DUP8 MSTORE POP POP POP SWAP3 DUP8 ADD SWAP3 SWAP1 DUP8 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x189A JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1958 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x196F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1980 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x198E PUSH2 0x1872 DUP3 PUSH2 0x2022 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH1 0xA0 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x19AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x1A31 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x19C9 JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x19D1 PUSH2 0x1FAA JUMP JUMPDEST DUP4 MLOAD DUP2 MSTORE DUP9 DUP5 ADD MLOAD PUSH2 0x19E2 DUP2 PUSH2 0x22FC JUMP JUMPDEST DUP2 DUP11 ADD MSTORE PUSH1 0x40 DUP5 DUP2 ADD MLOAD PUSH2 0x19F5 DUP2 PUSH2 0x230E JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP5 DUP2 ADD MLOAD PUSH2 0x1A08 DUP2 PUSH2 0x230E JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP5 DUP2 ADD MLOAD PUSH2 0x1A1B DUP2 PUSH2 0x22FC JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x19B3 JUMP JUMPDEST POP SWAP2 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A53 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1A6A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1A7B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1A89 PUSH2 0x1872 DUP3 PUSH2 0x2022 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH2 0x300 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1AA9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x1A31 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x1AC5 JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1ACD PUSH2 0x1F80 JUMP JUMPDEST PUSH2 0x1AD6 DUP5 PUSH2 0x171C JUMP JUMPDEST DUP2 MSTORE PUSH2 0x1AE3 DUP10 DUP6 ADD PUSH2 0x171C JUMP JUMPDEST DUP10 DUP3 ADD MSTORE PUSH1 0x40 PUSH2 0x1AF4 DUP2 DUP7 ADD PUSH2 0x1706 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 PUSH2 0x1B05 DUP6 DUP3 ADD PUSH2 0x1706 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 PUSH2 0x1B16 DUP6 DUP3 ADD PUSH2 0x1706 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 PUSH2 0x1B27 DUP6 DUP3 ADD PUSH2 0x1706 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 PUSH2 0x1B38 DUP6 DUP3 ADD PUSH2 0x16F0 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 PUSH2 0x1B4A DUP14 DUP7 DUP4 ADD PUSH2 0x1576 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH2 0x2E0 DUP5 ADD MLOAD PUSH2 0x100 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1AAF JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1B7F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B96 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1BA7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1BB5 PUSH2 0x1872 DUP3 PUSH2 0x2022 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP5 DUP3 ADD SWAP2 POP DUP5 DUP5 ADD DUP9 DUP7 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x1BD5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x1BF8 JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP6 ADD SWAP2 DUP6 ADD PUSH2 0x1BDA JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C17 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2B8 DUP4 DUP4 PUSH2 0x161A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x320 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C35 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1C3F DUP5 DUP5 PUSH2 0x161A JUMP JUMPDEST SWAP5 PUSH2 0x300 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C61 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2B8 DUP4 DUP4 PUSH2 0x1633 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x320 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C7F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1C3F DUP5 DUP5 PUSH2 0x1633 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1C9E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP1 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1CC4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x1CD5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x1CE3 PUSH2 0x1872 DUP3 PUSH2 0x2022 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP5 DUP3 ADD SWAP2 POP DUP5 DUP5 ADD DUP11 DUP7 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x1D03 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x1D26 JUMPI DUP1 CALLDATALOAD DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP6 ADD SWAP2 DUP6 ADD PUSH2 0x1D08 JUMP JUMPDEST POP DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1D49 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1D54 DUP2 PUSH2 0x2324 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1D92 JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1D76 JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1D92 JUMPI DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1DB1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x1E06 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x1D9D JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x481 DUP2 DUP6 PUSH2 0x1D9D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 ADD DUP2 DUP5 MSTORE DUP1 DUP6 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP7 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP8 ADD ADD SWAP3 POP DUP4 DUP8 ADD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1E8B JUMPI PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x1E79 DUP6 DUP4 MLOAD PUSH2 0x1D62 JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1E3F JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x2B8 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1D62 JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1EBE PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1D62 JUMP JUMPDEST PUSH1 0x20 DUP4 DUP3 SUB DUP2 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1EEA JUMPI DUP7 DUP2 ADD DUP4 ADD MLOAD DUP5 DUP3 ADD DUP5 ADD MSTORE DUP3 ADD PUSH2 0x1ECF JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x1EFB JUMPI PUSH1 0x0 DUP4 DUP4 DUP7 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP5 PUSH1 0x40 DUP5 ADD DUP4 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x1F50 JUMPI DUP3 CALLDATALOAD PUSH2 0x1F38 DUP2 PUSH2 0x22FC JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 MSTORE SWAP2 DUP4 ADD SWAP2 SWAP1 DUP4 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1F25 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1F6E PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1D9D JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x7B2 DUP2 DUP6 PUSH2 0x1D9D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1FA4 JUMPI PUSH2 0x1FA4 PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1FA4 JUMPI PUSH2 0x1FA4 PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1FA4 JUMPI PUSH2 0x1FA4 PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x201A JUMPI PUSH2 0x201A PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x203C JUMPI PUSH2 0x203C PUSH2 0x22C8 JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x2059 JUMPI PUSH2 0x2059 PUSH2 0x229C JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x2081 JUMPI PUSH2 0x2081 PUSH2 0x229C JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 PUSH1 0xFF SUB DUP3 GT ISZERO PUSH2 0x20A7 JUMPI PUSH2 0x20A7 PUSH2 0x229C JUMP JUMPDEST ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x20CC JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 JUMPDEST DUP1 DUP6 GT ISZERO PUSH2 0x210C JUMPI DUP2 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x20F2 JUMPI PUSH2 0x20F2 PUSH2 0x229C JUMP JUMPDEST DUP1 DUP6 AND ISZERO PUSH2 0x20FF JUMPI SWAP2 DUP2 MUL SWAP2 JUMPDEST SWAP4 DUP5 SHR SWAP4 SWAP1 DUP1 MUL SWAP1 PUSH2 0x20D6 JUMP JUMPDEST POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B8 PUSH1 0xFF DUP5 AND DUP4 PUSH1 0x0 DUP3 PUSH2 0x212D JUMPI POP PUSH1 0x1 PUSH2 0x2BB JUMP JUMPDEST DUP2 PUSH2 0x213A JUMPI POP PUSH1 0x0 PUSH2 0x2BB JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x2150 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x215A JUMPI PUSH2 0x2176 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x2BB JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x216B JUMPI PUSH2 0x216B PUSH2 0x229C JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x2BB JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x2199 JUMPI POP DUP2 DUP2 EXP PUSH2 0x2BB JUMP JUMPDEST PUSH2 0x21A3 DUP4 DUP4 PUSH2 0x20D1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x21B7 JUMPI PUSH2 0x21B7 PUSH2 0x229C JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x21D9 JUMPI PUSH2 0x21D9 PUSH2 0x229C JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x21F0 JUMPI PUSH2 0x21F0 PUSH2 0x229C JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x2212 JUMPI PUSH2 0x2212 PUSH2 0x229C JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 DUP3 LT ISZERO PUSH2 0x2234 JUMPI PUSH2 0x2234 PUSH2 0x229C JUMP JUMPDEST SWAP1 SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2251 JUMPI PUSH2 0x2251 PUSH2 0x229C JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP2 EQ ISZERO PUSH2 0x2272 JUMPI PUSH2 0x2272 PUSH2 0x229C JUMP JUMPDEST PUSH1 0x1 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 EQ ISZERO PUSH2 0x2293 JUMPI PUSH2 0x2293 PUSH2 0x229C JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x22F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x22F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x22F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x22F9 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP10 CODESIZE SLOAD SDIV SWAP9 0xB2 0xC0 0xD8 OR SWAP2 SWAP7 0xA5 SHR PUSH13 0x70145121771BAEDF66E06AE7C3 0xCC PUSH1 0x47 0xE5 LOG4 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "96:1854:67:-:0;;;155:202;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;307:7;316:11;329:24;-1:-1:-1;;;;;2247:30:32;;2239:67;;;;-1:-1:-1;;;2239:67:32;;1200:2:84;2239:67:32;;;1182:21:84;1239:2;1219:18;;;1212:30;1278:26;1258:18;;;1251:54;1322:18;;2239:67:32;;;;;;;;;-1:-1:-1;;;;;2324:47:32;;2316:81;;;;-1:-1:-1;;;2316:81:32;;1553:2:84;2316:81:32;;;1535:21:84;1592:2;1572:18;;;1565:30;1631:23;1611:18;;;1604:51;1672:18;;2316:81:32;1525:171:84;2316:81:32;-1:-1:-1;;;;;2415:34:32;;2407:67;;;;-1:-1:-1;;;2407:67:32;;851:2:84;2407:67:32;;;833:21:84;890:2;870:18;;;863:30;929:22;909:18;;;902:50;969:18;;2407:67:32;823:170:84;2407:67:32;-1:-1:-1;;;;;;2485:16:32;;;;;;;;2511:24;;;;;;;2545:50;;;;;;2611:56;;-1:-1:-1;;;;;2545:50:32;;;;2511:24;;;;2485:16;;;2611:56;;;;;2094:580;;;155:202:67;;;96:1854;;14:630:84;174:6;182;190;243:2;231:9;222:7;218:23;214:32;211:2;;;259:1;256;249:12;211:2;291:9;285:16;310:44;348:5;310:44;:::i;:::-;423:2;408:18;;402:25;373:5;;-1:-1:-1;436:46:84;402:25;436:46;:::i;:::-;553:2;538:18;;532:25;501:7;;-1:-1:-1;566:46:84;532:25;566:46;:::i;:::-;631:7;621:17;;;201:443;;;;;:::o;1701:144::-;-1:-1:-1;;;;;1789:31:84;;1779:42;;1769:2;;1835:1;1832;1825:12;1769:2;1759:86;:::o;:::-;96:1854:67;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@TIERS_LENGTH_7592": {
                  "entryPoint": null,
                  "id": 7592,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_calculateNumberOfUserPicks_7991": {
                  "entryPoint": 3530,
                  "id": 7991,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizeTierFraction_8524": {
                  "entryPoint": 1904,
                  "id": 8524,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizeTierFractions_8573": {
                  "entryPoint": 5181,
                  "id": 8573,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizesAwardable_7968": {
                  "entryPoint": 3582,
                  "id": 7968,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@_calculateTierIndex_8430": {
                  "entryPoint": 2240,
                  "id": 8430,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_calculate_8356": {
                  "entryPoint": 4280,
                  "id": 8356,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@_createBitMasks_8493": {
                  "entryPoint": 1979,
                  "id": 8493,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_getNormalizedBalancesAt_8154": {
                  "entryPoint": 2399,
                  "id": 8154,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_numberOfPrizesForIndex_8609": {
                  "entryPoint": 1826,
                  "id": 8609,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@calculateNumberOfUserPicks_16092": {
                  "entryPoint": 1163,
                  "id": 16092,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@calculatePrizeTierFraction_16061": {
                  "entryPoint": 705,
                  "id": 16061,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@calculateTierIndex_16030": {
                  "entryPoint": 756,
                  "id": 16030,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@calculate_7773": {
                  "entryPoint": 1175,
                  "id": 7773,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@createBitMasks_16044": {
                  "entryPoint": 731,
                  "id": 16044,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@drawBuffer_7580": {
                  "entryPoint": null,
                  "id": 7580,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getDrawBuffer_7783": {
                  "entryPoint": null,
                  "id": 7783,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getNormalizedBalancesForDrawIds_7834": {
                  "entryPoint": 782,
                  "id": 7834,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getPrizeDistributionSource_7793": {
                  "entryPoint": null,
                  "id": 7793,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@numberOfPrizesForIndex_16076": {
                  "entryPoint": 684,
                  "id": 16076,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@prizeDistributionSource_7588": {
                  "entryPoint": null,
                  "id": 7588,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@ticket_7584": {
                  "entryPoint": null,
                  "id": 7584,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "abi_decode_address": {
                  "entryPoint": 5354,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_array_uint32": {
                  "entryPoint": 5395,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_array_uint32_dyn_calldata": {
                  "entryPoint": 5582,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_array_uint32_fromMemory": {
                  "entryPoint": 5494,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_struct_PrizeDistribution": {
                  "entryPoint": 5683,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_struct_PrizeDistribution_calldata": {
                  "entryPoint": 5658,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr": {
                  "entryPoint": 5927,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr": {
                  "entryPoint": 6010,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr": {
                  "entryPoint": 6181,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 6469,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 6720,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 7020,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_calldata_ptr": {
                  "entryPoint": 7172,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_calldata_ptrt_uint256": {
                  "entryPoint": 7201,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptr": {
                  "entryPoint": 7246,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptrt_uint256": {
                  "entryPoint": 7275,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint256t_uint256t_array$_t_uint256_$dyn_memory_ptr": {
                  "entryPoint": 7305,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_uint8t_uint256": {
                  "entryPoint": 7478,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_uint104": {
                  "entryPoint": 5861,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint104_fromMemory": {
                  "entryPoint": 5872,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint32": {
                  "entryPoint": 5883,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint32_fromMemory": {
                  "entryPoint": 5894,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint8": {
                  "entryPoint": 5905,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint8_fromMemory": {
                  "entryPoint": 5916,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_array_uint256_dyn": {
                  "entryPoint": 7522,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_array_uint64_dyn": {
                  "entryPoint": 7581,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7639,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__to_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7704,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7832,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7851,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint32_$dyn_calldata_ptr__to_t_array$_t_uint32_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7952,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 8027,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeDistributionSource_$11503__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "allocate_memory": {
                  "entryPoint": 8177,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "allocate_memory_5223": {
                  "entryPoint": 8064,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "allocate_memory_5225": {
                  "entryPoint": 8106,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "allocate_memory_8108": {
                  "entryPoint": 8141,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "array_allocation_size_array_array_uint64_dyn_dyn": {
                  "entryPoint": 8226,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 8262,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint64": {
                  "entryPoint": 8286,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint8": {
                  "entryPoint": 8330,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 8367,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_exp_helper": {
                  "entryPoint": 8401,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "checked_exp_t_uint256_t_uint8": {
                  "entryPoint": 8468,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_exp_unsigned": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint256": {
                  "entryPoint": 8639,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 8670,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 8693,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint8": {
                  "entryPoint": 8730,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 8765,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint32": {
                  "entryPoint": 8792,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint8": {
                  "entryPoint": 8828,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 8860,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 8882,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 8904,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_uint104": {
                  "entryPoint": 8926,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint32": {
                  "entryPoint": 8956,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint64": {
                  "entryPoint": 8974,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint8": {
                  "entryPoint": 8996,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:28603:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "274:535:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "323:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "332:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "335:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "325:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "325:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "325:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "302:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "310:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "298:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "298:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "317:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "294:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "294:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "287:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "287:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "284:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "348:33:84",
                              "value": {
                                "arguments": [],
                                "functionName": {
                                  "name": "allocate_memory_8108",
                                  "nodeType": "YulIdentifier",
                                  "src": "359:20:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "359:22:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "352:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "390:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "403:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "394:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "415:17:84",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "426:6:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "419:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "470:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "479:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "482:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "472:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "472:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "472:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "451:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "459:3:84",
                                        "type": "",
                                        "value": "512"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "447:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "447:16:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "465:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "444:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "444:25:84"
                              },
                              "nodeType": "YulIf",
                              "src": "441:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "495:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "504:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "499:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "561:219:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "575:30:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "601:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "588:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "588:17:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "579:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "642:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "618:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "618:30:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "618:30:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "668:3:84"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "673:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "661:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "661:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "661:18:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "692:14:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "702:4:84",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "696:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "719:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "730:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "735:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "726:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "726:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "719:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "751:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "762:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "767:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "758:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "758:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "751:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "525:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "528:4:84",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "522:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "522:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "534:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "536:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "545:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "536:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "518:3:84",
                                "statements": []
                              },
                              "src": "514:266:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "789:14:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "798:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "789:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "248:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "256:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "264:5:84",
                            "type": ""
                          }
                        ],
                        "src": "215:594:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "884:528:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "933:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "942:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "945:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "935:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "935:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "935:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "912:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "920:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "908:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "908:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "904:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "904:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "897:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "897:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "894:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "958:33:84",
                              "value": {
                                "arguments": [],
                                "functionName": {
                                  "name": "allocate_memory_8108",
                                  "nodeType": "YulIdentifier",
                                  "src": "969:20:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "969:22:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "962:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1000:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "1013:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1004:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1025:17:84",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "1036:6:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "1029:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1080:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1089:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1092:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1082:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1082:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1082:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1061:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1069:3:84",
                                        "type": "",
                                        "value": "512"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1057:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1057:16:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "1075:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1054:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1054:25:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1051:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1105:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1114:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1109:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1171:212:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "1185:23:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "1204:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "1198:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1198:10:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "1189:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "1245:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "1221:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1221:30:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1221:30:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "1271:3:84"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "1276:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1264:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1264:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1264:18:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "1295:14:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "1305:4:84",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "1299:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1322:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "1333:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1338:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1329:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1329:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "1322:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1354:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "1365:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1370:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1361:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1361:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "1354:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1135:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1138:4:84",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1132:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1132:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1144:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1146:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1155:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1158:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1151:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1151:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1146:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1128:3:84",
                                "statements": []
                              },
                              "src": "1124:259:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1392:14:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "1401:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "1392:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "858:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "866:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "874:5:84",
                            "type": ""
                          }
                        ],
                        "src": "814:598:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1500:283:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1549:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1558:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1561:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1551:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1551:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1551:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "1528:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1536:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1524:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1524:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "1543:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1520:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1520:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1513:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1513:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1510:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1574:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1597:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1584:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1584:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1574:6:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1647:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1656:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1659:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1649:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1649:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1649:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1619:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1627:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1616:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1616:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1613:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1672:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1688:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1696:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1684:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1684:17:84"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "1672:8:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1761:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1770:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1773:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1763:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1763:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1763:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "1724:6:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1736:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1739:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1732:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1732:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1720:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1720:27:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1749:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1716:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1716:38:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "1756:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1713:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1713:47:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1710:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32_dyn_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1463:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1471:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "1479:8:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1489:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1417:366:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1868:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1908:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1917:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1920:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1910:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1910:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1910:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "1889:3:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1894:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1885:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1885:16:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1903:3:84",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1881:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1881:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1878:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1933:15:84",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "1942:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1933:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_struct_PrizeDistribution_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1842:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1850:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1858:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1788:166:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2033:738:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2079:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2088:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2091:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2081:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2081:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2081:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "2054:3:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2059:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2050:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2050:19:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2071:6:84",
                                    "type": "",
                                    "value": "0x0300"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2046:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2046:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2043:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2104:31:84",
                              "value": {
                                "arguments": [],
                                "functionName": {
                                  "name": "allocate_memory_5223",
                                  "nodeType": "YulIdentifier",
                                  "src": "2113:20:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2113:22:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "2104:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2151:5:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2175:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint8",
                                      "nodeType": "YulIdentifier",
                                      "src": "2158:16:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2158:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2144:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2144:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2144:42:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2206:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2213:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2202:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2202:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2239:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2250:2:84",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2235:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2235:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint8",
                                      "nodeType": "YulIdentifier",
                                      "src": "2218:16:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2218:36:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2195:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2195:60:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2195:60:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2275:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2282:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2271:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2271:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2309:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2320:2:84",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2305:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2305:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2287:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2287:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2264:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2264:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2264:61:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2345:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2352:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2341:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2341:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2379:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2390:2:84",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2375:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2375:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2357:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2357:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2334:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2334:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2334:61:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2415:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2422:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2411:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2411:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2450:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2461:3:84",
                                            "type": "",
                                            "value": "128"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2446:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2446:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2428:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2428:38:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2404:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2404:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2404:63:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2487:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2494:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2483:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2483:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2522:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2533:3:84",
                                            "type": "",
                                            "value": "160"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2518:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2518:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2500:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2500:38:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2476:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2476:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2476:63:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2559:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2566:3:84",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2555:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2555:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2595:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2606:3:84",
                                            "type": "",
                                            "value": "192"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2591:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2591:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint104",
                                      "nodeType": "YulIdentifier",
                                      "src": "2572:18:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2572:39:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2548:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2548:64:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2548:64:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2632:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2639:3:84",
                                        "type": "",
                                        "value": "224"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2628:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2628:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2673:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2684:3:84",
                                            "type": "",
                                            "value": "224"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2669:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2669:19:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "2690:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_array_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2645:23:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2645:49:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2621:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2621:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2621:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2715:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2722:6:84",
                                        "type": "",
                                        "value": "0x0100"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2711:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2711:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2748:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2759:3:84",
                                            "type": "",
                                            "value": "736"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2744:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2744:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "2731:12:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2731:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2704:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2704:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2704:61:84"
                            }
                          ]
                        },
                        "name": "abi_decode_struct_PrizeDistribution",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2004:9:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "2015:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2023:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1959:812:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2825:85:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2835:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2857:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2844:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2844:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "2835:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2898:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "2873:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2873:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2873:31:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "2804:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2815:5:84",
                            "type": ""
                          }
                        ],
                        "src": "2776:134:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2975:78:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2985:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3000:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2994:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2994:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "2985:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3041:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "3016:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3016:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3016:31:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint104_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "2954:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2965:5:84",
                            "type": ""
                          }
                        ],
                        "src": "2915:138:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3106:84:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3116:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3138:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3125:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3125:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "3116:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3178:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3154:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3154:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3154:30:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "3085:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3096:5:84",
                            "type": ""
                          }
                        ],
                        "src": "3058:132:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3254:77:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3264:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3279:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3273:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3273:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "3264:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3319:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3295:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3295:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3295:30:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "3233:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3244:5:84",
                            "type": ""
                          }
                        ],
                        "src": "3195:136:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3383:83:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3393:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3415:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3402:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3402:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "3393:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3454:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "3431:22:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3431:29:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3431:29:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "3362:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3373:5:84",
                            "type": ""
                          }
                        ],
                        "src": "3336:130:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3529:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3539:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3554:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3548:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3548:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "3539:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3593:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "3570:22:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3570:29:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3570:29:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "3508:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3519:5:84",
                            "type": ""
                          }
                        ],
                        "src": "3471:134:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3731:388:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3777:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3786:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3789:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3779:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3779:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3779:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3752:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3761:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3748:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3748:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3773:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3744:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3744:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3741:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3802:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3831:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3812:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3812:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3802:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3850:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3881:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3892:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3877:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3877:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3864:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3864:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3854:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3939:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3948:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3951:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3941:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3941:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3941:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3911:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3919:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3908:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3908:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3905:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3964:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4031:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "4042:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4027:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4027:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "4051:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint32_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "3990:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3990:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3968:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3978:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4068:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "4078:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4068:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4095:18:84",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "4105:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "4095:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3681:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3692:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3704:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3712:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3720:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3610:509:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4281:821:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4327:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4336:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4339:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4329:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4329:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4329:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4302:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4311:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4298:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4298:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4323:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4294:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4294:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4291:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4352:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4381:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4362:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4362:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4352:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4400:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4431:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4442:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4427:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4427:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4414:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4414:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "4404:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4455:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4465:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4459:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4510:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4519:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4522:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4512:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4512:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4512:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "4498:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4506:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4495:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4495:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4492:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4535:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4602:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "4613:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4598:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4598:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "4622:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint32_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "4561:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4561:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4539:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4549:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4639:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "4649:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4639:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4666:18:84",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "4676:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "4666:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4693:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4726:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4737:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4722:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4722:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4709:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4709:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4697:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4770:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4779:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4782:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4772:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4772:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4772:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4756:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4766:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4753:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4753:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4750:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4795:34:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4809:9:84"
                                  },
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4820:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4805:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4805:24:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "4799:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4877:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4886:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4889:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4879:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4879:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4879:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "4856:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4860:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4852:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4852:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4867:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4848:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4848:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4841:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4841:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4838:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4902:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4929:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4916:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4916:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4906:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4959:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4968:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4971:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4961:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4961:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4961:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4947:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4955:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4944:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4944:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4941:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5025:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5034:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5037:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5027:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5027:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5027:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "4998:2:84"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "5002:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4994:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4994:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5011:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4990:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4990:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "5016:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4987:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4987:37:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4984:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5050:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5064:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5068:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5060:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5060:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "5050:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5080:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "5090:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "5080:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4215:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4226:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4238:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4246:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "4254:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "4262:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "4270:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4124:978:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5226:1707:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5236:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5246:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5240:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5293:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5302:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5305:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5295:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5295:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5295:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5268:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5277:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5264:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5264:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5289:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5260:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5260:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5257:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5318:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5345:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5332:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5332:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "5322:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5364:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5374:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "5368:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5419:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5428:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5431:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5421:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5421:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5421:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5407:6:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5415:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5404:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5404:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5401:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5444:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5458:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5469:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5454:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5454:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "5448:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5524:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5533:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5536:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5526:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5526:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5526:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "5503:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5507:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5499:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5499:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5514:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "5495:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5495:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "5488:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5488:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5485:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5549:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5572:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5559:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5559:16:84"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "5553:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5584:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "5660:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "5611:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5611:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5595:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5595:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "5588:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5673:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "5686:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5677:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "5705:3:84"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "5710:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5698:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5698:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5698:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5722:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "5733:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5738:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5729:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5729:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "5722:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5750:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5765:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5769:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5761:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5761:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "5754:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5826:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5835:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5838:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5828:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5828:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5828:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "5795:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5803:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "5806:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "5799:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5799:10:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5791:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5791:19:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5812:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5787:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5787:28:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "5817:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5784:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5784:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5781:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5851:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5860:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "5855:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5915:988:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "5929:36:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "5961:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "5948:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5948:17:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "innerOffset",
                                        "nodeType": "YulTypedName",
                                        "src": "5933:11:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "6001:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6010:1:84",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6013:1:84",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "6003:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6003:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "6003:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "innerOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "5984:11:84"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "5997:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "5981:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5981:19:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "5978:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6030:30:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "6044:2:84"
                                        },
                                        {
                                          "name": "innerOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "6048:11:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6040:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6040:20:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "6034:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "6110:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6119:1:84",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6122:1:84",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "6112:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6112:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "6112:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "6091:2:84"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "6095:2:84",
                                                  "type": "",
                                                  "value": "63"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "6087:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "6087:11:84"
                                            },
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "6100:7:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "slt",
                                            "nodeType": "YulIdentifier",
                                            "src": "6083:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6083:25:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "iszero",
                                        "nodeType": "YulIdentifier",
                                        "src": "6076:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6076:33:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "6073:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6139:35:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "6166:2:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "6170:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6162:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6162:11:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6149:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6149:25:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "6143:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6187:82:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "6265:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                            "nodeType": "YulIdentifier",
                                            "src": "6216:48:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6216:52:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "allocate_memory",
                                        "nodeType": "YulIdentifier",
                                        "src": "6200:15:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6200:69:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "dst_2",
                                        "nodeType": "YulTypedName",
                                        "src": "6191:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6282:18:84",
                                    "value": {
                                      "name": "dst_2",
                                      "nodeType": "YulIdentifier",
                                      "src": "6295:5:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "dst_3",
                                        "nodeType": "YulTypedName",
                                        "src": "6286:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "6320:5:84"
                                        },
                                        {
                                          "name": "_6",
                                          "nodeType": "YulIdentifier",
                                          "src": "6327:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6313:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6313:17:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6313:17:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6343:23:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "6356:5:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6363:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6352:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6352:14:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "6343:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6379:24:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "_5",
                                          "nodeType": "YulIdentifier",
                                          "src": "6396:2:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6400:2:84",
                                          "type": "",
                                          "value": "64"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6392:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6392:11:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "src_1",
                                        "nodeType": "YulTypedName",
                                        "src": "6383:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "6461:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6470:1:84",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6473:1:84",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "6463:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6463:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "6463:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "6430:2:84"
                                                },
                                                {
                                                  "arguments": [
                                                    {
                                                      "kind": "number",
                                                      "nodeType": "YulLiteral",
                                                      "src": "6438:1:84",
                                                      "type": "",
                                                      "value": "5"
                                                    },
                                                    {
                                                      "name": "_6",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "6441:2:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "shl",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "6434:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "6434:10:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "6426:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "6426:19:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "6447:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6422:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6422:28:84"
                                        },
                                        {
                                          "name": "dataEnd",
                                          "nodeType": "YulIdentifier",
                                          "src": "6452:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "6419:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6419:41:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "6416:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6490:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "6501:1:84",
                                      "type": "",
                                      "value": "0"
                                    },
                                    "variables": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulTypedName",
                                        "src": "6494:3:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "6570:228:84",
                                      "statements": [
                                        {
                                          "nodeType": "YulVariableDeclaration",
                                          "src": "6588:32:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "src_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "6614:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "calldataload",
                                              "nodeType": "YulIdentifier",
                                              "src": "6601:12:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6601:19:84"
                                          },
                                          "variables": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulTypedName",
                                              "src": "6592:5:84",
                                              "type": ""
                                            }
                                          ]
                                        },
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "6661:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "validator_revert_uint64",
                                              "nodeType": "YulIdentifier",
                                              "src": "6637:23:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6637:30:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "6637:30:84"
                                        },
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "dst_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "6691:5:84"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "6698:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mstore",
                                              "nodeType": "YulIdentifier",
                                              "src": "6684:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6684:20:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "6684:20:84"
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "6721:23:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "dst_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "6734:5:84"
                                              },
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "6741:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "6730:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6730:14:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "dst_2",
                                              "nodeType": "YulIdentifier",
                                              "src": "6721:5:84"
                                            }
                                          ]
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "6761:23:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "src_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "6774:5:84"
                                              },
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "6781:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "6770:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6770:14:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "src_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "6761:5:84"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6526:3:84"
                                        },
                                        {
                                          "name": "_6",
                                          "nodeType": "YulIdentifier",
                                          "src": "6531:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "lt",
                                        "nodeType": "YulIdentifier",
                                        "src": "6523:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6523:11:84"
                                    },
                                    "nodeType": "YulForLoop",
                                    "post": {
                                      "nodeType": "YulBlock",
                                      "src": "6535:22:84",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "6537:18:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "i_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "6548:3:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6553:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "6544:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6544:11:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "i_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "6537:3:84"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "pre": {
                                      "nodeType": "YulBlock",
                                      "src": "6519:3:84",
                                      "statements": []
                                    },
                                    "src": "6515:283:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "6818:3:84"
                                        },
                                        {
                                          "name": "dst_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "6823:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6811:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6811:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6811:18:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6842:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "6853:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6858:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6849:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6849:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "6842:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6874:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "6885:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6890:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6881:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6881:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "6874:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "5881:1:84"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "5884:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5878:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5878:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "5888:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5890:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "5899:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5902:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5895:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5895:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "5890:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "5874:3:84",
                                "statements": []
                              },
                              "src": "5870:1033:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6912:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "6922:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6912:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5192:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5203:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5215:6:84",
                            "type": ""
                          }
                        ],
                        "src": "5107:1826:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7067:1606:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7077:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7087:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7081:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7134:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7143:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7146:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7136:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7136:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7136:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7109:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7118:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7105:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7105:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7130:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7101:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7101:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7098:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7159:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7179:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7173:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7173:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "7163:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7232:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7241:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7244:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7234:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7234:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7234:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "7204:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7212:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7201:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7201:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7198:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7257:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7271:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "7282:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7267:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7267:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "7261:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7337:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7346:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7349:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7339:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7339:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7339:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "7316:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "7320:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "7312:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7312:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7327:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "7308:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7308:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "7301:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7301:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7298:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7362:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "7378:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7372:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7372:9:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "7366:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7390:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "7466:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "7417:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7417:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "7401:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7401:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "7394:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7479:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "7492:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7483:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "7511:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "7516:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7504:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7504:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7504:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7528:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "7539:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7544:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7535:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7535:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "7528:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7556:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "7571:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7575:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7567:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7567:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "7560:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7587:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7597:4:84",
                                "type": "",
                                "value": "0xa0"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "7591:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7656:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7665:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7668:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7658:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7658:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7658:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "7624:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "7632:2:84"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "7636:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "7628:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7628:11:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "7620:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7620:20:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7642:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7616:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7616:29:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "7647:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7613:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7613:42:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7610:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7681:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7690:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "7685:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7700:12:84",
                              "value": {
                                "name": "i",
                                "nodeType": "YulIdentifier",
                                "src": "7711:1:84"
                              },
                              "variables": [
                                {
                                  "name": "i_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7704:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7772:871:84",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "7816:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "7825:1:84"
                                              },
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "7828:1:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "7818:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7818:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "7818:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "7797:7:84"
                                            },
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "7806:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "sub",
                                            "nodeType": "YulIdentifier",
                                            "src": "7793:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7793:17:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "7812:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "slt",
                                        "nodeType": "YulIdentifier",
                                        "src": "7789:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7789:26:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "7786:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "7845:35:84",
                                    "value": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "allocate_memory_5225",
                                        "nodeType": "YulIdentifier",
                                        "src": "7858:20:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7858:22:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "7849:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "7900:5:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "7913:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "7907:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7907:10:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7893:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7893:25:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7893:25:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "7931:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "7956:3:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "7961:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "7952:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7952:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "7946:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7946:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulTypedName",
                                        "src": "7935:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8002:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "7978:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7978:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7978:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8034:5:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "8041:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8030:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8030:14:84"
                                        },
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8046:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8023:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8023:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8023:31:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8067:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8077:2:84",
                                      "type": "",
                                      "value": "64"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "8071:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8092:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "8117:3:84"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "8122:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8113:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8113:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "8107:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8107:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_2",
                                        "nodeType": "YulTypedName",
                                        "src": "8096:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "8163:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint64",
                                        "nodeType": "YulIdentifier",
                                        "src": "8139:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8139:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8139:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8195:5:84"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "8202:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8191:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8191:14:84"
                                        },
                                        {
                                          "name": "value_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "8207:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8184:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8184:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8184:31:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8228:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8238:2:84",
                                      "type": "",
                                      "value": "96"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "8232:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8253:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "8278:3:84"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "8283:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8274:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8274:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "8268:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8268:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulTypedName",
                                        "src": "8257:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "8324:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint64",
                                        "nodeType": "YulIdentifier",
                                        "src": "8300:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8300:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8300:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8356:5:84"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "8363:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8352:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8352:14:84"
                                        },
                                        {
                                          "name": "value_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "8368:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8345:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8345:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8345:31:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8389:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8399:3:84",
                                      "type": "",
                                      "value": "128"
                                    },
                                    "variables": [
                                      {
                                        "name": "_7",
                                        "nodeType": "YulTypedName",
                                        "src": "8393:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8415:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "8440:3:84"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "8445:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8436:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8436:12:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "8430:5:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8430:19:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_4",
                                        "nodeType": "YulTypedName",
                                        "src": "8419:7:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "8486:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "8462:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8462:32:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8462:32:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8518:5:84"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "8525:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8514:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8514:14:84"
                                        },
                                        {
                                          "name": "value_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "8530:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8507:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8507:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8507:31:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "8558:3:84"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "8563:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8551:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8551:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8551:18:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8582:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "8593:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8598:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8589:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8589:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "8582:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8614:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "8625:3:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "8630:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8621:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8621:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "8614:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7732:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "7737:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7729:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7729:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "7741:22:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7743:18:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7754:3:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7759:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7750:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7750:11:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7743:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "7725:3:84",
                                "statements": []
                              },
                              "src": "7721:922:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8652:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "8662:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "8652:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7033:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "7044:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7056:6:84",
                            "type": ""
                          }
                        ],
                        "src": "6938:1735:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8820:1796:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8830:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8840:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8834:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8887:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8896:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8899:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "8889:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8889:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8889:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "8862:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8871:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "8858:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8858:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8883:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8854:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8854:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8851:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8912:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8932:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "8926:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8926:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "8916:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8985:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8994:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8997:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "8987:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8987:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8987:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "8957:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8965:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8954:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8954:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8951:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9010:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9024:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "9035:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9020:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9020:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "9014:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9090:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9099:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9102:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9092:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9092:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9092:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "9069:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9073:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "9065:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9065:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "9080:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9061:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9061:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "9054:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9054:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9051:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9115:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "9131:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9125:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9125:9:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "9119:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9143:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "9219:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "9170:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9170:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "9154:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9154:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "9147:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9232:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "9245:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9236:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "9264:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9269:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9257:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9257:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9257:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9281:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "9292:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9297:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9288:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9288:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "9281:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9309:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "9324:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9328:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9320:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9320:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "9313:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9340:16:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9350:6:84",
                                "type": "",
                                "value": "0x0300"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "9344:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9411:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9420:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9423:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9413:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9413:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9413:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "9379:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "9387:2:84"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "9391:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "9383:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "9383:11:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "9375:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9375:20:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9397:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9371:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9371:29:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "9402:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9368:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9368:42:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9365:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9436:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9445:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "9440:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9455:12:84",
                              "value": {
                                "name": "i",
                                "nodeType": "YulIdentifier",
                                "src": "9466:1:84"
                              },
                              "variables": [
                                {
                                  "name": "i_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9459:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9527:1059:84",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "9571:16:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "9580:1:84"
                                              },
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "9583:1:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "9573:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "9573:12:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "9573:12:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "9552:7:84"
                                            },
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "9561:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "sub",
                                            "nodeType": "YulIdentifier",
                                            "src": "9548:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9548:17:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "9567:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "slt",
                                        "nodeType": "YulIdentifier",
                                        "src": "9544:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9544:26:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "9541:2:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "9600:35:84",
                                    "value": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "allocate_memory_5223",
                                        "nodeType": "YulIdentifier",
                                        "src": "9613:20:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9613:22:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "9604:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "9655:5:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "9690:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint8_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "9662:27:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9662:32:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9648:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9648:47:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9648:47:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "9719:5:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "9726:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "9715:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9715:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9763:3:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9768:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "9759:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "9759:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint8_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "9731:27:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9731:41:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9708:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9708:65:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9708:65:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "9786:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "9796:2:84",
                                      "type": "",
                                      "value": "64"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "9790:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "9822:5:84"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "9829:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "9818:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9818:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9867:3:84"
                                                },
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9872:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "9863:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "9863:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "9834:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9834:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9811:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9811:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9811:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "9890:12:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "9900:2:84",
                                      "type": "",
                                      "value": "96"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "9894:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "9926:5:84"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "9933:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "9922:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9922:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9971:3:84"
                                                },
                                                {
                                                  "name": "_6",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9976:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "9967:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "9967:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "9938:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9938:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9915:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9915:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9915:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "9994:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "10004:3:84",
                                      "type": "",
                                      "value": "128"
                                    },
                                    "variables": [
                                      {
                                        "name": "_7",
                                        "nodeType": "YulTypedName",
                                        "src": "9998:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "10031:5:84"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "10038:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "10027:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10027:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10076:3:84"
                                                },
                                                {
                                                  "name": "_7",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10081:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "10072:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10072:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "10043:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10043:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10020:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10020:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10020:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "10099:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "10109:3:84",
                                      "type": "",
                                      "value": "160"
                                    },
                                    "variables": [
                                      {
                                        "name": "_8",
                                        "nodeType": "YulTypedName",
                                        "src": "10103:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "10136:5:84"
                                            },
                                            {
                                              "name": "_8",
                                              "nodeType": "YulIdentifier",
                                              "src": "10143:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "10132:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10132:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10181:3:84"
                                                },
                                                {
                                                  "name": "_8",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10186:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "10177:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10177:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "10148:28:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10148:42:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10125:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10125:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10125:66:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "10204:13:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "10214:3:84",
                                      "type": "",
                                      "value": "192"
                                    },
                                    "variables": [
                                      {
                                        "name": "_9",
                                        "nodeType": "YulTypedName",
                                        "src": "10208:2:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "10241:5:84"
                                            },
                                            {
                                              "name": "_9",
                                              "nodeType": "YulIdentifier",
                                              "src": "10248:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "10237:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10237:14:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10287:3:84"
                                                },
                                                {
                                                  "name": "_9",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10292:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "10283:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10283:12:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint104_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "10253:29:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10253:43:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10230:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10230:67:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10230:67:84"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "10310:14:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "10321:3:84",
                                      "type": "",
                                      "value": "224"
                                    },
                                    "variables": [
                                      {
                                        "name": "_10",
                                        "nodeType": "YulTypedName",
                                        "src": "10314:3:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "10348:5:84"
                                            },
                                            {
                                              "name": "_10",
                                              "nodeType": "YulIdentifier",
                                              "src": "10355:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "10344:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10344:15:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10400:3:84"
                                                },
                                                {
                                                  "name": "_10",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10405:3:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "10396:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10396:13:84"
                                            },
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "10411:7:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_array_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "10361:34:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10361:58:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10337:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10337:83:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10337:83:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "10444:5:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "10451:6:84",
                                              "type": "",
                                              "value": "0x0100"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "10440:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10440:18:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10470:3:84"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "10475:3:84",
                                                  "type": "",
                                                  "value": "736"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "10466:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10466:13:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "10460:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10460:20:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10433:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10433:48:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10433:48:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "10501:3:84"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "10506:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10494:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10494:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10494:18:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10525:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "10536:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10541:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10532:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10532:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "10525:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10557:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "10568:3:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "10573:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10564:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10564:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "10557:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9487:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9492:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9484:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9484:11:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "9496:22:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9498:18:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "9509:3:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9514:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9505:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9505:11:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9498:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "9480:3:84",
                                "statements": []
                              },
                              "src": "9476:1110:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10595:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "10605:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "10595:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8786:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "8797:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8809:6:84",
                            "type": ""
                          }
                        ],
                        "src": "8678:1938:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10727:795:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10737:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10747:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "10741:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10794:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10803:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10806:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "10796:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10796:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10796:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "10769:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10778:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "10765:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10765:23:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10790:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10761:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10761:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "10758:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10819:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10839:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10833:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10833:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "10823:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10892:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10901:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10904:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "10894:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10894:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10894:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "10864:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10872:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10861:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10861:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "10858:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10917:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10931:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "10942:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10927:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10927:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "10921:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10997:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11006:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11009:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "10999:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10999:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10999:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "10976:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "10980:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "10972:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10972:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "10987:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "10968:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10968:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "10961:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10961:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "10958:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11022:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "11038:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11032:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11032:9:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "11026:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11050:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "11126:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "11077:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11077:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "11061:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11061:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "11054:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11139:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "11152:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11143:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "11171:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "11176:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11164:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11164:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11164:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11188:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "11199:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11204:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11195:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11195:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "11188:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11216:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "11231:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11235:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11227:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11227:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "11220:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11292:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11301:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11304:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "11294:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11294:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11294:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "11261:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "11269:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "11272:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "11265:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "11265:10:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "11257:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11257:19:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11278:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11253:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11253:28:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "11283:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11250:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11250:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11247:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11317:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11326:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "11321:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11381:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "11402:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "11413:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "11407:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11407:10:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11395:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11395:23:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11395:23:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11431:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "11442:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "11447:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11438:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11438:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "11431:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11463:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "11474:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "11479:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11470:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11470:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "11463:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11347:1:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "11350:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11344:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11344:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "11354:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11356:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "11365:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11368:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11361:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11361:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "11356:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "11340:3:84",
                                "statements": []
                              },
                              "src": "11336:156:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11501:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "11511:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "11501:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10693:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "10704:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10716:6:84",
                            "type": ""
                          }
                        ],
                        "src": "10621:901:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11635:152:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11682:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11691:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11694:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "11684:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11684:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11684:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "11656:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11665:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "11652:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11652:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11677:3:84",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11648:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11648:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11645:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11707:74:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11762:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "11773:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeDistribution_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "11717:44:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11717:64:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "11707:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11601:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "11612:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11624:6:84",
                            "type": ""
                          }
                        ],
                        "src": "11527:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11917:204:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11964:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11973:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11976:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "11966:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11966:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11966:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "11938:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11947:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "11934:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11934:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11959:3:84",
                                    "type": "",
                                    "value": "800"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11930:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11930:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11927:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11989:74:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12044:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "12055:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeDistribution_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "11999:44:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11999:64:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "11989:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12072:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12099:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12110:3:84",
                                        "type": "",
                                        "value": "768"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12095:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12095:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "12082:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12082:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "12072:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_calldata_ptrt_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11875:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "11886:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11898:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "11906:6:84",
                            "type": ""
                          }
                        ],
                        "src": "11792:329:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12232:143:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12279:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12288:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12291:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "12281:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12281:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12281:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "12253:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12262:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "12249:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12249:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12274:3:84",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12245:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12245:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12242:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12304:65:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12350:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "12361:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "12314:35:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12314:55:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "12304:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12198:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "12209:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12221:6:84",
                            "type": ""
                          }
                        ],
                        "src": "12126:249:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12503:195:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12550:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12559:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12562:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "12552:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12552:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12552:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "12524:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12533:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "12520:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12520:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12545:3:84",
                                    "type": "",
                                    "value": "800"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12516:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12516:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12513:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12575:65:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12621:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "12632:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "12585:35:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12585:55:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "12575:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12649:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12676:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12687:3:84",
                                        "type": "",
                                        "value": "768"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12672:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12672:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "12659:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12659:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "12649:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptrt_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12461:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "12472:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12484:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "12492:6:84",
                            "type": ""
                          }
                        ],
                        "src": "12380:318:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12832:918:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12878:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12887:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12890:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "12880:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12880:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12880:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "12853:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12862:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "12849:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12849:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12874:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12845:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12845:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12842:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12903:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12926:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "12913:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12913:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "12903:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12945:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12955:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12949:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12966:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12993:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13004:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12989:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12989:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "12976:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12976:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "12966:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13017:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13048:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13059:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13044:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13044:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "13031:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13031:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "13021:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13106:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13115:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13118:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13108:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13108:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13108:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "13078:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13086:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13075:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13075:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13072:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13131:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13145:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "13156:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13141:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13141:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "13135:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13211:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13220:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13223:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13213:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13213:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13213:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "13190:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13194:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "13186:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13186:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "13201:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "13182:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13182:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "13175:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13175:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13172:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13236:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "13259:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "13246:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13246:16:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "13240:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13271:80:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "13347:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "13298:48:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13298:52:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "13282:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13282:69:84"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "13275:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13360:16:84",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "13373:3:84"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13364:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "13392:3:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "13397:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13385:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13385:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13385:15:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13409:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "13420:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13425:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13416:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13416:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "13409:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13437:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "13452:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13456:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13448:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13448:11:84"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "13441:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13513:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13522:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13525:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13515:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13515:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13515:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "13482:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "13490:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "13493:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "13486:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "13486:10:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "13478:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13478:19:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13499:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13474:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13474:28:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "13504:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13471:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13471:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13468:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13538:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13547:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "13542:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13602:118:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "13623:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "13641:3:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "calldataload",
                                            "nodeType": "YulIdentifier",
                                            "src": "13628:12:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "13628:17:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13616:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13616:30:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13616:30:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "13659:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "13670:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "13675:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "13666:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13666:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "13659:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "13691:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "13702:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "13707:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "13698:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13698:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "13691:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "13568:1:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "13571:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13565:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13565:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "13575:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "13577:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "13586:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13589:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "13582:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13582:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "13577:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "13561:3:84",
                                "statements": []
                              },
                              "src": "13557:163:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13729:15:84",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "13739:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "13729:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256t_uint256t_array$_t_uint256_$dyn_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12782:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "12793:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12805:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "12813:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "12821:6:84",
                            "type": ""
                          }
                        ],
                        "src": "12703:1047:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13840:226:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13886:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13895:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13898:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13888:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13888:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13888:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "13861:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13870:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "13857:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13857:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13882:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13853:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13853:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13850:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13911:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13937:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "13924:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13924:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "13915:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "13979:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "13956:22:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13956:29:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13956:29:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13994:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "14004:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "13994:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14018:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14045:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14056:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14041:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14041:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "14028:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14028:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "14018:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint8t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13798:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "13809:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "13821:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "13829:6:84",
                            "type": ""
                          }
                        ],
                        "src": "13755:311:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14132:374:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14142:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "14162:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "14156:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14156:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "14146:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "14184:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14189:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14177:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14177:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14177:19:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14205:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "14215:4:84",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "14209:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14228:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "14239:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14244:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14235:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14235:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "14228:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14256:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "14274:5:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14281:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14270:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14270:14:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "14260:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14293:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "14302:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "14297:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14361:120:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14382:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "14393:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "14387:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14387:13:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14375:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14375:26:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14375:26:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14414:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14425:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14430:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14421:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14421:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "14414:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14446:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14460:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14468:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14456:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14456:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "14446:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14323:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14326:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14320:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14320:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "14334:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14336:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14345:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14348:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14341:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14341:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "14336:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "14316:3:84",
                                "statements": []
                              },
                              "src": "14312:169:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14490:10:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "14497:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "14490:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint256_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14109:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "14116:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "14124:3:84",
                            "type": ""
                          }
                        ],
                        "src": "14071:435:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14571:399:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14581:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "14601:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "14595:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14595:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "14585:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "14623:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14628:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14616:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14616:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14616:19:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14644:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "14654:4:84",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "14648:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14667:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "14678:3:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14683:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14674:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14674:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "14667:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14695:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "14713:5:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14720:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14709:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14709:14:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "14699:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14732:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "14741:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "14736:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14800:145:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14821:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14836:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "14830:5:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "14830:13:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "14845:18:84",
                                              "type": "",
                                              "value": "0xffffffffffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "14826:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14826:38:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14814:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14814:51:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14814:51:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14878:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14889:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14894:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14885:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14885:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "14878:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14910:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14924:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14932:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14920:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14920:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "14910:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14762:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14765:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14759:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14759:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "14773:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14775:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14784:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14787:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14780:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14780:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "14775:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "14755:3:84",
                                "statements": []
                              },
                              "src": "14751:194:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14954:10:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "14961:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "14954:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint64_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14548:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "14555:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "14563:3:84",
                            "type": ""
                          }
                        ],
                        "src": "14511:459:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15094:145:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "15111:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "15124:2:84",
                                            "type": "",
                                            "value": "96"
                                          },
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "15128:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "15120:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "15120:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15137:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15116:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15116:88:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15104:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15104:101:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15104:101:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15214:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "15225:3:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15230:2:84",
                                    "type": "",
                                    "value": "20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15221:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15221:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "15214:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "15070:3:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15075:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "15086:3:84",
                            "type": ""
                          }
                        ],
                        "src": "14975:264:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15497:326:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15514:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15529:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15537:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15525:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15525:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15507:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15507:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15507:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15601:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15612:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15597:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15597:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15617:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15590:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15590:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15590:30:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "15629:69:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "15671:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15683:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15694:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15679:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15679:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "15643:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15643:55:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "15633:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15718:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15729:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15714:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15714:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "15738:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15746:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "15734:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15734:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15707:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15707:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15707:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15766:51:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "15802:6:84"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "15810:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "15774:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15774:43:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15766:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15450:9:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "15461:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "15469:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15477:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15488:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15244:579:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16029:702:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16039:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "16049:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "16043:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16060:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16078:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16089:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16074:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16074:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "16064:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16108:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16119:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16101:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16101:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16101:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16131:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "16142:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "16135:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16157:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "16177:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "16171:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16171:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "16161:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16200:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "16208:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16193:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16193:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16193:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16224:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16235:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16246:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16231:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16231:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "16224:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16258:53:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16280:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "16295:1:84",
                                            "type": "",
                                            "value": "5"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "16298:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "16291:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16291:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16276:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16276:30:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16308:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16272:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16272:39:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_2",
                                  "nodeType": "YulTypedName",
                                  "src": "16262:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16320:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "16338:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16346:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16334:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16334:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "16324:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16358:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "16367:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "16362:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "16426:276:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "16447:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_2",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "16460:6:84"
                                                },
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "16468:9:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "sub",
                                                "nodeType": "YulIdentifier",
                                                "src": "16456:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "16456:22:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "16480:66:84",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "16452:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "16452:95:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "16440:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16440:108:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "16440:108:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "16561:61:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "16606:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "16600:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "16600:13:84"
                                        },
                                        {
                                          "name": "tail_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "16615:6:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_array_uint256_dyn",
                                        "nodeType": "YulIdentifier",
                                        "src": "16571:28:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16571:51:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "tail_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "16561:6:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "16635:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "16649:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "16657:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "16645:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16645:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "16635:6:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "16673:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "16684:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "16689:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "16680:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16680:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "16673:3:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "16388:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "16391:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "16385:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16385:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "16399:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "16401:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "16410:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "16413:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "16406:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16406:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "16401:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "16381:3:84",
                                "statements": []
                              },
                              "src": "16377:325:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16711:14:84",
                              "value": {
                                "name": "tail_2",
                                "nodeType": "YulIdentifier",
                                "src": "16719:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16711:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__to_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15998:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "16009:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16020:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15828:903:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16887:110:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16904:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16915:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16897:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16897:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16897:21:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16927:64:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "16964:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16976:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16987:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16972:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16972:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint256_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "16935:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16935:56:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16927:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16856:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "16867:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16878:4:84",
                            "type": ""
                          }
                        ],
                        "src": "16736:261:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17199:652:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17216:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17227:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17209:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17209:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17209:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17239:70:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "17282:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17294:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17305:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17290:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17290:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint256_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "17253:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17253:56:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "17243:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17318:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "17328:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "17322:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17350:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "17361:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17346:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17346:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "17370:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17378:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "17366:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17366:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17339:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17339:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17339:50:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17398:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "17418:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "17412:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17412:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "17402:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "17441:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "17449:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17434:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17434:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17434:22:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17465:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "17474:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "17469:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "17534:87:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "17563:6:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "17571:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "17559:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "17559:14:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "17575:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "17555:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "17555:23:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value1",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "17594:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "17602:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "17590:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "17590:14:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "17606:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "17586:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "17586:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "17580:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "17580:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "17548:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17548:63:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17548:63:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "17495:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "17498:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "17492:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17492:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "17506:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "17508:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "17517:1:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "17520:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "17513:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17513:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "17508:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "17488:3:84",
                                "statements": []
                              },
                              "src": "17484:137:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "17655:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "17684:6:84"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "17692:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "17680:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "17680:19:84"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "17701:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "17676:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "17676:28:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "17706:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "17669:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17669:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17669:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "17636:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "17639:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "17633:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17633:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "17630:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17727:118:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "17743:6:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "17759:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "17767:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "17755:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "17755:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17772:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "17751:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17751:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17739:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17739:101:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "17842:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17735:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17735:110:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17727:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17160:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "17171:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "17179:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17190:4:84",
                            "type": ""
                          }
                        ],
                        "src": "17002:849:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18015:534:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18025:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "18035:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18029:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18046:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18064:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18075:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18060:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18060:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18050:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18094:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18105:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18087:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18087:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18087:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18117:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "18128:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "18121:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18150:6:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18158:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18143:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18143:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18143:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18174:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18185:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18196:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18181:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18181:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "18174:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18208:20:84",
                              "value": {
                                "name": "value0",
                                "nodeType": "YulIdentifier",
                                "src": "18222:6:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "18212:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18237:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "18246:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "18241:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18305:218:84",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "18319:33:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "18345:6:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "18332:12:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18332:20:84"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "18323:5:84",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "18389:5:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "18365:23:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18365:30:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18365:30:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "18415:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "18424:5:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "18431:10:84",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "18420:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "18420:22:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "18408:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18408:35:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18408:35:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "18456:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "18467:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "18472:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "18463:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18463:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "18456:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "18488:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "18502:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "18510:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "18498:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18498:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18488:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "18267:1:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18270:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "18264:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18264:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "18278:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "18280:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "18289:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "18292:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "18285:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18285:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "18280:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "18260:3:84",
                                "statements": []
                              },
                              "src": "18256:267:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18532:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "18540:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18532:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint32_$dyn_calldata_ptr__to_t_array$_t_uint32_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17976:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "17987:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "17995:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18006:4:84",
                            "type": ""
                          }
                        ],
                        "src": "17856:693:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18779:234:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18796:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18807:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18789:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18789:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18789:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18819:69:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "18861:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18873:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18884:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18869:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18869:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "18833:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18833:55:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18823:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18908:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18919:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18904:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18904:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "18928:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18936:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "18924:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18924:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18897:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18897:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18897:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18956:51:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18992:6:84"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19000:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "18964:27:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18964:43:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18956:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18740:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "18751:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "18759:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18770:4:84",
                            "type": ""
                          }
                        ],
                        "src": "18554:459:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19145:144:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "19155:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19167:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19178:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19163:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19163:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19155:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19197:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "19208:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19190:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19190:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19190:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19235:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19246:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19231:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19231:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19255:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19263:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19251:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19251:31:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19224:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19224:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19224:59:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19106:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "19117:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "19125:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19136:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19018:271:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19416:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "19426:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19438:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19449:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19434:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19434:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19426:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19468:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "19483:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19491:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19479:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19479:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19461:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19461:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19461:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19385:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "19396:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19407:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19294:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19681:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "19691:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19703:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19714:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19699:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19699:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19691:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19733:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "19748:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19756:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19744:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19744:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19726:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19726:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19726:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeDistributionSource_$11503__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19650:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "19661:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19672:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19546:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19929:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "19939:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19951:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19962:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19947:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19947:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19939:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19981:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "19996:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20004:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19992:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19992:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19974:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19974:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19974:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19898:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "19909:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19920:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19811:243:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20233:171:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20250:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20261:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20243:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20243:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20243:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20284:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20295:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20280:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20280:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20300:2:84",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20273:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20273:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20273:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20323:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20334:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20319:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20319:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f647261772d65787069726564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "20339:23:84",
                                    "type": "",
                                    "value": "DrawCalc/draw-expired"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20312:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20312:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20312:51:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "20372:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20384:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20395:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20380:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20380:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20372:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20210:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20224:4:84",
                            "type": ""
                          }
                        ],
                        "src": "20059:345:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20583:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20600:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20611:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20593:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20593:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20593:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20634:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20645:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20630:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20630:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20650:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20623:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20623:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20623:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20673:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20684:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20669:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20669:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "20689:34:84",
                                    "type": "",
                                    "value": "DrawCalc/invalid-pick-indices-le"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20662:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20662:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20662:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20744:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20755:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20740:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20740:18:84"
                                  },
                                  {
                                    "hexValue": "6e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "20760:6:84",
                                    "type": "",
                                    "value": "ngth"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20733:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20733:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20733:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "20776:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20788:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20799:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20784:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20784:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20776:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20560:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20574:4:84",
                            "type": ""
                          }
                        ],
                        "src": "20409:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20988:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21005:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21016:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20998:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20998:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20998:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21039:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21050:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21035:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21035:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21055:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21028:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21028:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21028:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21078:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21089:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21074:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21074:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f657863656564732d6d61782d757365722d7069636b73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "21094:33:84",
                                    "type": "",
                                    "value": "DrawCalc/exceeds-max-user-picks"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21067:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21067:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21067:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21137:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21149:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21160:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21145:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21145:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "21137:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20965:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20979:4:84",
                            "type": ""
                          }
                        ],
                        "src": "20814:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21348:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21365:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21376:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21358:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21358:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21358:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21399:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21410:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21395:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21395:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21415:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21388:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21388:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21388:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21438:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21449:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21434:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21434:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7069636b732d617363656e64696e67",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "21454:26:84",
                                    "type": "",
                                    "value": "DrawCalc/picks-ascending"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21427:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21427:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21427:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21490:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21502:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21513:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21498:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21498:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "21490:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "21325:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "21339:4:84",
                            "type": ""
                          }
                        ],
                        "src": "21174:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21701:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21718:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21729:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21711:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21711:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21711:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21752:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21763:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21748:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21748:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21768:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21741:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21741:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21741:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21791:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21802:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21787:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21787:18:84"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e73756666696369656e742d757365722d7069636b73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "21807:34:84",
                                    "type": "",
                                    "value": "DrawCalc/insufficient-user-picks"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21780:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21780:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21780:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21851:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21863:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21874:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21859:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21859:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "21851:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "21678:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "21692:4:84",
                            "type": ""
                          }
                        ],
                        "src": "21527:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21989:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "21999:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22011:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22022:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22007:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22007:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "21999:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22041:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "22052:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22034:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22034:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22034:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "21958:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "21969:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "21980:4:84",
                            "type": ""
                          }
                        ],
                        "src": "21888:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22169:101:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "22179:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22191:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22202:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22187:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22187:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "22179:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22221:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "22236:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "22244:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "22232:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22232:31:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22214:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22214:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22214:50:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "22138:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "22149:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "22160:4:84",
                            "type": ""
                          }
                        ],
                        "src": "22070:200:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22372:87:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "22382:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22394:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22405:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22390:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22390:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "22382:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22424:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "22439:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "22447:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "22435:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22435:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22417:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22417:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22417:36:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "22341:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "22352:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "22363:4:84",
                            "type": ""
                          }
                        ],
                        "src": "22275:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22510:209:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "22520:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22536:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "22530:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22530:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "22520:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22548:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "22570:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22578:6:84",
                                    "type": "",
                                    "value": "0x0120"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22566:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22566:19:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "22552:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22660:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "22662:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22662:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22662:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "22603:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "22615:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "22600:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22600:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "22639:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "22651:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "22636:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22636:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "22597:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22597:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22594:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22698:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "22702:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22691:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22691:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22691:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory_5223",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "22499:6:84",
                            "type": ""
                          }
                        ],
                        "src": "22464:255:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22770:207:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "22780:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22796:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "22790:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22790:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "22780:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22808:35:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "22830:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22838:4:84",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22826:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22826:17:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "22812:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22918:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "22920:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22920:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22920:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "22861:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "22873:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "22858:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22858:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "22897:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "22909:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "22894:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22894:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "22855:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22855:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22852:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22956:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "22960:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22949:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22949:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22949:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory_5225",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "22759:6:84",
                            "type": ""
                          }
                        ],
                        "src": "22724:253:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23028:206:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "23038:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23054:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "23048:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23048:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "23038:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23066:34:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "23088:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23096:3:84",
                                    "type": "",
                                    "value": "512"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "23084:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23084:16:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "23070:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23175:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "23177:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23177:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23177:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "23118:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23130:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "23115:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23115:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "23154:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "23166:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "23151:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23151:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "23112:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23112:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23109:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23213:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "23217:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23206:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23206:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23206:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory_8108",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "23017:6:84",
                            "type": ""
                          }
                        ],
                        "src": "22982:252:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23284:289:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "23294:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23310:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "23304:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23304:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "23294:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23322:117:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "23344:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "23360:4:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "23366:2:84",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "23356:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "23356:13:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23371:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "23352:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23352:86:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "23340:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23340:99:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "23326:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23514:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "23516:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23516:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23516:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "23457:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23469:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "23454:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23454:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "23493:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "23505:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "23490:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23490:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "23451:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23451:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23448:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23552:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "23556:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23545:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23545:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23545:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "23264:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "23273:6:84",
                            "type": ""
                          }
                        ],
                        "src": "23239:334:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23656:114:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23700:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "23702:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23702:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23702:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "23672:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23680:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "23669:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23669:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23666:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23731:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23747:1:84",
                                        "type": "",
                                        "value": "5"
                                      },
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "23750:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "23743:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23743:14:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23759:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "23739:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23739:25:84"
                              },
                              "variableNames": [
                                {
                                  "name": "size",
                                  "nodeType": "YulIdentifier",
                                  "src": "23731:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "23636:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "23647:4:84",
                            "type": ""
                          }
                        ],
                        "src": "23578:192:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23823:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23850:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "23852:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23852:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23852:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23839:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "23846:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "23842:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23842:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "23836:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23836:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23833:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23881:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23892:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23895:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "23888:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23888:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "23881:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "23806:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "23809:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "23815:3:84",
                            "type": ""
                          }
                        ],
                        "src": "23775:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23955:189:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23965:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "23975:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23969:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "24002:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "24017:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24020:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "24013:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24013:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "24006:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "24032:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "24047:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24050:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "24043:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24043:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "24036:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24087:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "24089:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24089:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24089:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24068:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "24077:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "24081:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "24073:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "24073:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "24065:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24065:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "24062:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "24118:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24129:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24134:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "24125:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24125:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "24118:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "23938:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "23941:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "23947:3:84",
                            "type": ""
                          }
                        ],
                        "src": "23908:236:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24195:158:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "24205:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "24220:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24223:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "24216:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24216:12:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "24209:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "24237:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "24252:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24255:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "24248:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24248:12:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "24241:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24296:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "24298:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24298:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24298:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24275:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "24284:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "24290:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "24280:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "24280:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "24272:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24272:23:84"
                              },
                              "nodeType": "YulIf",
                              "src": "24269:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "24327:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24338:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24343:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "24334:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24334:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "24327:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "24178:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "24181:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "24187:3:84",
                            "type": ""
                          }
                        ],
                        "src": "24149:204:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24404:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24435:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24456:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24459:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "24449:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24449:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24449:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24557:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24560:4:84",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "24550:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24550:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24550:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24585:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24588:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "24578:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24578:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24578:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "24424:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "24417:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24417:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "24414:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "24612:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "24621:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "24624:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "24617:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24617:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "24612:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "24389:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "24392:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "24398:1:84",
                            "type": ""
                          }
                        ],
                        "src": "24358:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24701:418:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "24711:16:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "24726:1:84",
                                "type": "",
                                "value": "1"
                              },
                              "variables": [
                                {
                                  "name": "power_1",
                                  "nodeType": "YulTypedName",
                                  "src": "24715:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "24736:16:84",
                              "value": {
                                "name": "power_1",
                                "nodeType": "YulIdentifier",
                                "src": "24745:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "24736:5:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "24761:13:84",
                              "value": {
                                "name": "_base",
                                "nodeType": "YulIdentifier",
                                "src": "24769:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "base",
                                  "nodeType": "YulIdentifier",
                                  "src": "24761:4:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24825:288:84",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "24930:22:84",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [],
                                            "functionName": {
                                              "name": "panic_error_0x11",
                                              "nodeType": "YulIdentifier",
                                              "src": "24932:16:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "24932:18:84"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "24932:18:84"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "24845:4:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "24855:66:84",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                            },
                                            {
                                              "name": "base",
                                              "nodeType": "YulIdentifier",
                                              "src": "24923:4:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "div",
                                            "nodeType": "YulIdentifier",
                                            "src": "24851:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "24851:77:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "24842:2:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24842:87:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "24839:2:84"
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "24991:29:84",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "24993:25:84",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "power",
                                                "nodeType": "YulIdentifier",
                                                "src": "25006:5:84"
                                              },
                                              {
                                                "name": "base",
                                                "nodeType": "YulIdentifier",
                                                "src": "25013:4:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "25002:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "25002:16:84"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "power",
                                              "nodeType": "YulIdentifier",
                                              "src": "24993:5:84"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "24972:8:84"
                                        },
                                        {
                                          "name": "power_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "24982:7:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "24968:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24968:22:84"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "24965:2:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "25033:23:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "25045:4:84"
                                        },
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "25051:4:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mul",
                                        "nodeType": "YulIdentifier",
                                        "src": "25041:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "25041:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "base",
                                        "nodeType": "YulIdentifier",
                                        "src": "25033:4:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "25069:34:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "power_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "25085:7:84"
                                        },
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "25094:8:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "shr",
                                        "nodeType": "YulIdentifier",
                                        "src": "25081:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "25081:22:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "exponent",
                                        "nodeType": "YulIdentifier",
                                        "src": "25069:8:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "24794:8:84"
                                  },
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24804:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "24791:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24791:21:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "24813:3:84",
                                "statements": []
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "24787:3:84",
                                "statements": []
                              },
                              "src": "24783:330:84"
                            }
                          ]
                        },
                        "name": "checked_exp_helper",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "_base",
                            "nodeType": "YulTypedName",
                            "src": "24665:5:84",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "24672:8:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "24685:5:84",
                            "type": ""
                          },
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "24692:4:84",
                            "type": ""
                          }
                        ],
                        "src": "24637:482:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "25192:72:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "25202:56:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "25232:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "exponent",
                                        "nodeType": "YulIdentifier",
                                        "src": "25242:8:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "25252:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "25238:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "25238:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "checked_exp_unsigned",
                                  "nodeType": "YulIdentifier",
                                  "src": "25211:20:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25211:47:84"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "25202:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_exp_t_uint256_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "25163:4:84",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "25169:8:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "25182:5:84",
                            "type": ""
                          }
                        ],
                        "src": "25124:140:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "25328:807:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "25366:52:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "25380:10:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "25389:1:84",
                                      "type": "",
                                      "value": "1"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "25380:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "25403:5:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "25348:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "25341:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25341:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "25338:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "25451:52:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "25465:10:84",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "25474:1:84",
                                      "type": "",
                                      "value": "0"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "25465:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "25488:5:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "25437:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "25430:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25430:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "25427:2:84"
                            },
                            {
                              "cases": [
                                {
                                  "body": {
                                    "nodeType": "YulBlock",
                                    "src": "25539:52:84",
                                    "statements": [
                                      {
                                        "nodeType": "YulAssignment",
                                        "src": "25553:10:84",
                                        "value": {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "25562:1:84",
                                          "type": "",
                                          "value": "1"
                                        },
                                        "variableNames": [
                                          {
                                            "name": "power",
                                            "nodeType": "YulIdentifier",
                                            "src": "25553:5:84"
                                          }
                                        ]
                                      },
                                      {
                                        "nodeType": "YulLeave",
                                        "src": "25576:5:84"
                                      }
                                    ]
                                  },
                                  "nodeType": "YulCase",
                                  "src": "25532:59:84",
                                  "value": {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25537:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                },
                                {
                                  "body": {
                                    "nodeType": "YulBlock",
                                    "src": "25607:123:84",
                                    "statements": [
                                      {
                                        "body": {
                                          "nodeType": "YulBlock",
                                          "src": "25642:22:84",
                                          "statements": [
                                            {
                                              "expression": {
                                                "arguments": [],
                                                "functionName": {
                                                  "name": "panic_error_0x11",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "25644:16:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "25644:18:84"
                                              },
                                              "nodeType": "YulExpressionStatement",
                                              "src": "25644:18:84"
                                            }
                                          ]
                                        },
                                        "condition": {
                                          "arguments": [
                                            {
                                              "name": "exponent",
                                              "nodeType": "YulIdentifier",
                                              "src": "25627:8:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "25637:3:84",
                                              "type": "",
                                              "value": "255"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "gt",
                                            "nodeType": "YulIdentifier",
                                            "src": "25624:2:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "25624:17:84"
                                        },
                                        "nodeType": "YulIf",
                                        "src": "25621:2:84"
                                      },
                                      {
                                        "nodeType": "YulAssignment",
                                        "src": "25677:25:84",
                                        "value": {
                                          "arguments": [
                                            {
                                              "name": "exponent",
                                              "nodeType": "YulIdentifier",
                                              "src": "25690:8:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "25700:1:84",
                                              "type": "",
                                              "value": "1"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "25686:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "25686:16:84"
                                        },
                                        "variableNames": [
                                          {
                                            "name": "power",
                                            "nodeType": "YulIdentifier",
                                            "src": "25677:5:84"
                                          }
                                        ]
                                      },
                                      {
                                        "nodeType": "YulLeave",
                                        "src": "25715:5:84"
                                      }
                                    ]
                                  },
                                  "nodeType": "YulCase",
                                  "src": "25600:130:84",
                                  "value": {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25605:1:84",
                                    "type": "",
                                    "value": "2"
                                  }
                                }
                              ],
                              "expression": {
                                "name": "base",
                                "nodeType": "YulIdentifier",
                                "src": "25519:4:84"
                              },
                              "nodeType": "YulSwitch",
                              "src": "25512:218:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "25828:70:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "25842:28:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "25855:4:84"
                                        },
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "25861:8:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "exp",
                                        "nodeType": "YulIdentifier",
                                        "src": "25851:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "25851:19:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "25842:5:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "25883:5:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "base",
                                            "nodeType": "YulIdentifier",
                                            "src": "25752:4:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "25758:2:84",
                                            "type": "",
                                            "value": "11"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "25749:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "25749:12:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "exponent",
                                            "nodeType": "YulIdentifier",
                                            "src": "25766:8:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "25776:2:84",
                                            "type": "",
                                            "value": "78"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "25763:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "25763:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "25745:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "25745:35:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "base",
                                            "nodeType": "YulIdentifier",
                                            "src": "25789:4:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "25795:3:84",
                                            "type": "",
                                            "value": "307"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "25786:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "25786:13:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "exponent",
                                            "nodeType": "YulIdentifier",
                                            "src": "25804:8:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "25814:2:84",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "25801:2:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "25801:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "25782:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "25782:36:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "25742:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25742:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "25739:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "25907:57:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "25949:4:84"
                                  },
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "25955:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "checked_exp_helper",
                                  "nodeType": "YulIdentifier",
                                  "src": "25930:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25930:34:84"
                              },
                              "variables": [
                                {
                                  "name": "power_1",
                                  "nodeType": "YulTypedName",
                                  "src": "25911:7:84",
                                  "type": ""
                                },
                                {
                                  "name": "base_1",
                                  "nodeType": "YulTypedName",
                                  "src": "25920:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "26069:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "26071:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "26071:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "26071:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "25979:7:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "25992:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      },
                                      {
                                        "name": "base_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "26060:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "div",
                                      "nodeType": "YulIdentifier",
                                      "src": "25988:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "25988:79:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "25976:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25976:92:84"
                              },
                              "nodeType": "YulIf",
                              "src": "25973:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "26100:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26113:7:84"
                                  },
                                  {
                                    "name": "base_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26122:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "26109:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26109:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "26100:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_exp_unsigned",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "25299:4:84",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "25305:8:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "25318:5:84",
                            "type": ""
                          }
                        ],
                        "src": "25269:866:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26192:176:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "26311:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "26313:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "26313:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "26313:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "26223:1:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "26216:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "26216:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "26209:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "26209:17:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "26231:1:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "26238:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          },
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "26306:1:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "26234:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "26234:74:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "26228:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "26228:81:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "26205:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26205:105:84"
                              },
                              "nodeType": "YulIf",
                              "src": "26202:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "26342:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "26357:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "26360:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "26353:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26353:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "26342:7:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "26171:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "26174:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "26180:7:84",
                            "type": ""
                          }
                        ],
                        "src": "26140:228:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26422:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "26444:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "26446:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "26446:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "26446:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "26438:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "26441:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "26435:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26435:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "26432:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "26475:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "26487:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "26490:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "26483:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26483:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "26475:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "26404:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "26407:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "26413:4:84",
                            "type": ""
                          }
                        ],
                        "src": "26373:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26551:173:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "26561:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "26571:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "26565:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "26590:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "26605:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26608:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "26601:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26601:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "26594:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "26620:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "26635:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26638:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "26631:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26631:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "26624:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "26666:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "26668:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "26668:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "26668:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26656:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26661:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "26653:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26653:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "26650:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "26697:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26709:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26714:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "26705:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26705:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "26697:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "26533:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "26536:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "26542:4:84",
                            "type": ""
                          }
                        ],
                        "src": "26503:221:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26776:148:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "26786:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "26801:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26804:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "26797:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26797:12:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "26790:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "26818:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "26833:1:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26836:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "26829:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26829:12:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "26822:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "26866:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "26868:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "26868:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "26868:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26856:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26861:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "26853:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26853:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "26850:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "26897:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26909:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "26914:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "26905:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26905:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "26897:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "26758:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "26761:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "26767:4:84",
                            "type": ""
                          }
                        ],
                        "src": "26729:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26976:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "27067:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "27069:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "27069:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "27069:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "26992:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26999:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "26989:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26989:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "26986:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "27098:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "27109:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27116:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "27105:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27105:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "27098:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "26958:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "26968:3:84",
                            "type": ""
                          }
                        ],
                        "src": "26929:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "27175:155:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "27185:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "27195:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "27189:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "27214:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "27233:5:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "27240:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "27229:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27229:14:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "27218:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "27271:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "27273:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "27273:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "27273:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "27258:7:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "27267:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "27255:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27255:15:84"
                              },
                              "nodeType": "YulIf",
                              "src": "27252:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "27302:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "27313:7:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27322:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "27309:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27309:15:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "27302:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "27157:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "27167:3:84",
                            "type": ""
                          }
                        ],
                        "src": "27129:201:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "27380:130:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "27390:31:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "27409:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27416:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "27405:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27405:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "27394:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "27451:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "27453:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "27453:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "27453:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "27436:7:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27445:4:84",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "27433:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27433:17:84"
                              },
                              "nodeType": "YulIf",
                              "src": "27430:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "27482:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "27493:7:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27502:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "27489:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27489:15:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "27482:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "27362:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "27372:3:84",
                            "type": ""
                          }
                        ],
                        "src": "27335:175:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "27547:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27564:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27567:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "27557:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27557:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "27557:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27661:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27664:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "27654:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27654:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "27654:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27685:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27688:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "27678:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27678:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "27678:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "27515:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "27736:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27753:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27756:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "27746:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27746:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "27746:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27850:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27853:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "27843:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27843:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "27843:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27874:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27877:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "27867:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27867:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "27867:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "27704:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "27925:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27942:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "27945:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "27935:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27935:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "27935:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "28039:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "28042:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "28032:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "28032:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "28032:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "28063:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "28066:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "28056:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "28056:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "28056:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "27893:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "28127:95:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "28200:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28209:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28212:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "28202:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "28202:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "28202:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "28150:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "28161:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "28168:28:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "28157:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "28157:40:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "28147:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "28147:51:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "28140:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "28140:59:84"
                              },
                              "nodeType": "YulIf",
                              "src": "28137:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "28116:5:84",
                            "type": ""
                          }
                        ],
                        "src": "28082:140:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "28271:77:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "28326:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28335:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28338:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "28328:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "28328:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "28328:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "28294:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "28305:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "28312:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "28301:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "28301:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "28291:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "28291:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "28284:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "28284:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "28281:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "28260:5:84",
                            "type": ""
                          }
                        ],
                        "src": "28227:121:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "28397:85:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "28460:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28469:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28472:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "28462:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "28462:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "28462:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "28420:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "28431:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "28438:18:84",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "28427:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "28427:30:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "28417:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "28417:41:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "28410:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "28410:49:84"
                              },
                              "nodeType": "YulIf",
                              "src": "28407:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "28386:5:84",
                            "type": ""
                          }
                        ],
                        "src": "28353:129:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "28530:71:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "28579:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28588:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "28591:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "28581:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "28581:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "28581:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "28553:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "28564:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "28571:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "28560:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "28560:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "28550:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "28550:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "28543:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "28543:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "28540:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "28519:5:84",
                            "type": ""
                          }
                        ],
                        "src": "28487:114:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_array_uint32(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let dst := allocate_memory_8108()\n        let dst_1 := dst\n        let src := offset\n        if gt(add(offset, 512), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            let value := calldataload(src)\n            validator_revert_uint32(value)\n            mstore(dst, value)\n            let _1 := 0x20\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        array := dst_1\n    }\n    function abi_decode_array_uint32_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let dst := allocate_memory_8108()\n        let dst_1 := dst\n        let src := offset\n        if gt(add(offset, 512), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            let value := mload(src)\n            validator_revert_uint32(value)\n            mstore(dst, value)\n            let _1 := 0x20\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        array := dst_1\n    }\n    function abi_decode_array_uint32_dyn_calldata(offset, end) -> arrayPos, length\n    {\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(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_struct_PrizeDistribution_calldata(offset, end) -> value\n    {\n        if slt(sub(end, offset), 768) { revert(0, 0) }\n        value := offset\n    }\n    function abi_decode_struct_PrizeDistribution(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x0300) { revert(0, 0) }\n        value := allocate_memory_5223()\n        mstore(value, abi_decode_uint8(headStart))\n        mstore(add(value, 32), abi_decode_uint8(add(headStart, 32)))\n        mstore(add(value, 64), abi_decode_uint32(add(headStart, 64)))\n        mstore(add(value, 96), abi_decode_uint32(add(headStart, 96)))\n        mstore(add(value, 128), abi_decode_uint32(add(headStart, 128)))\n        mstore(add(value, 160), abi_decode_uint32(add(headStart, 160)))\n        mstore(add(value, 192), abi_decode_uint104(add(headStart, 192)))\n        mstore(add(value, 224), abi_decode_array_uint32(add(headStart, 224), end))\n        mstore(add(value, 0x0100), calldataload(add(headStart, 736)))\n    }\n    function abi_decode_uint104(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint104(value)\n    }\n    function abi_decode_uint104_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint104(value)\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint32(value)\n    }\n    function abi_decode_uint32_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint32(value)\n    }\n    function abi_decode_uint8(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint8(value)\n    }\n    function abi_decode_uint8_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint8(value)\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint32_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint32_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        let offset_1 := calldataload(add(headStart, 64))\n        if gt(offset_1, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset_1)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, length), 32), dataEnd) { revert(0, 0) }\n        value3 := add(_2, 32)\n        value4 := length\n    }\n    function abi_decode_tuple_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _2 := 0xffffffffffffffff\n        if gt(offset, _2) { revert(0, 0) }\n        let _3 := add(headStart, offset)\n        if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(0, 0) }\n        let _4 := calldataload(_3)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_4))\n        let dst_1 := dst\n        mstore(dst, _4)\n        dst := add(dst, _1)\n        let src := add(_3, _1)\n        if gt(add(add(_3, shl(5, _4)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _4) { i := add(i, 1) }\n        {\n            let innerOffset := calldataload(src)\n            if gt(innerOffset, _2) { revert(0, 0) }\n            let _5 := add(_3, innerOffset)\n            if iszero(slt(add(_5, 63), dataEnd)) { revert(0, 0) }\n            let _6 := calldataload(add(_5, _1))\n            let dst_2 := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_6))\n            let dst_3 := dst_2\n            mstore(dst_2, _6)\n            dst_2 := add(dst_2, _1)\n            let src_1 := add(_5, 64)\n            if gt(add(add(_5, shl(5, _6)), 64), dataEnd) { revert(0, 0) }\n            let i_1 := 0\n            for { } lt(i_1, _6) { i_1 := add(i_1, 1) }\n            {\n                let value := calldataload(src_1)\n                validator_revert_uint64(value)\n                mstore(dst_2, value)\n                dst_2 := add(dst_2, _1)\n                src_1 := add(src_1, _1)\n            }\n            mstore(dst, dst_3)\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        let _4 := 0xa0\n        if gt(add(add(_2, mul(_3, _4)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        let i_1 := i\n        for { } lt(i_1, _3) { i_1 := add(i_1, 1) }\n        {\n            if slt(sub(dataEnd, src), _4) { revert(i, i) }\n            let value := allocate_memory_5225()\n            mstore(value, mload(src))\n            let value_1 := mload(add(src, _1))\n            validator_revert_uint32(value_1)\n            mstore(add(value, _1), value_1)\n            let _5 := 64\n            let value_2 := mload(add(src, _5))\n            validator_revert_uint64(value_2)\n            mstore(add(value, _5), value_2)\n            let _6 := 96\n            let value_3 := mload(add(src, _6))\n            validator_revert_uint64(value_3)\n            mstore(add(value, _6), value_3)\n            let _7 := 128\n            let value_4 := mload(add(src, _7))\n            validator_revert_uint32(value_4)\n            mstore(add(value, _7), value_4)\n            mstore(dst, value)\n            dst := add(dst, _1)\n            src := add(src, _4)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        let _4 := 0x0300\n        if gt(add(add(_2, mul(_3, _4)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        let i_1 := i\n        for { } lt(i_1, _3) { i_1 := add(i_1, 1) }\n        {\n            if slt(sub(dataEnd, src), _4) { revert(i, i) }\n            let value := allocate_memory_5223()\n            mstore(value, abi_decode_uint8_fromMemory(src))\n            mstore(add(value, _1), abi_decode_uint8_fromMemory(add(src, _1)))\n            let _5 := 64\n            mstore(add(value, _5), abi_decode_uint32_fromMemory(add(src, _5)))\n            let _6 := 96\n            mstore(add(value, _6), abi_decode_uint32_fromMemory(add(src, _6)))\n            let _7 := 128\n            mstore(add(value, _7), abi_decode_uint32_fromMemory(add(src, _7)))\n            let _8 := 160\n            mstore(add(value, _8), abi_decode_uint32_fromMemory(add(src, _8)))\n            let _9 := 192\n            mstore(add(value, _9), abi_decode_uint104_fromMemory(add(src, _9)))\n            let _10 := 224\n            mstore(add(value, _10), abi_decode_array_uint32_fromMemory(add(src, _10), dataEnd))\n            mstore(add(value, 0x0100), mload(add(src, 736)))\n            mstore(dst, value)\n            dst := add(dst, _1)\n            src := add(src, _4)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        if gt(add(add(_2, shl(5, _3)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _3) { i := add(i, 1) }\n        {\n            mstore(dst, mload(src))\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_struct$_PrizeDistribution_$11491_calldata_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 768) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeDistribution_calldata(headStart, dataEnd)\n    }\n    function abi_decode_tuple_t_struct$_PrizeDistribution_$11491_calldata_ptrt_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 800) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeDistribution_calldata(headStart, dataEnd)\n        value1 := calldataload(add(headStart, 768))\n    }\n    function abi_decode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 768) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeDistribution(headStart, dataEnd)\n    }\n    function abi_decode_tuple_t_struct$_PrizeDistribution_$11491_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 800) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeDistribution(headStart, dataEnd)\n        value1 := calldataload(add(headStart, 768))\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_array$_t_uint256_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := calldataload(headStart)\n        let _1 := 32\n        value1 := calldataload(add(headStart, _1))\n        let offset := calldataload(add(headStart, 64))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := calldataload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        if gt(add(add(_2, shl(5, _3)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _3) { i := add(i, 1) }\n        {\n            mstore(dst, calldataload(src))\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value2 := dst_1\n    }\n    function abi_decode_tuple_t_uint8t_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint8(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_encode_array_uint256_dyn(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let _1 := 0x20\n        pos := add(pos, _1)\n        let srcPtr := add(value, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        end := pos\n    }\n    function abi_encode_array_uint64_dyn(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let _1 := 0x20\n        pos := add(pos, _1)\n        let srcPtr := add(value, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), 0xffffffffffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        end := pos\n    }\n    function abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        mstore(pos, and(shl(96, value0), 0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000))\n        end := add(pos, 20)\n    }\n    function abi_encode_tuple_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), 96)\n        let tail_1 := abi_encode_array_uint64_dyn(value1, add(headStart, 96))\n        mstore(add(headStart, 64), sub(tail_1, headStart))\n        tail := abi_encode_array_uint64_dyn(value2, tail_1)\n    }\n    function abi_encode_tuple_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__to_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let tail_2 := add(add(headStart, shl(5, length)), 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0))\n            tail_2 := abi_encode_array_uint256_dyn(mload(srcPtr), tail_2)\n            srcPtr := add(srcPtr, _1)\n            pos := add(pos, _1)\n        }\n        tail := tail_2\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_array_uint256_dyn(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_uint256_dyn(value0, add(headStart, 64))\n        let _1 := 32\n        mstore(add(headStart, _1), sub(tail_1, headStart))\n        let length := mload(value1)\n        mstore(tail_1, length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(tail_1, i), _1), mload(add(add(value1, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(tail_1, length), _1), 0)\n        }\n        tail := add(add(tail_1, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), _1)\n    }\n    function abi_encode_tuple_t_array$_t_uint32_$dyn_calldata_ptr__to_t_array$_t_uint32_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        mstore(tail_1, value1)\n        pos := add(headStart, 64)\n        let srcPtr := value0\n        let i := 0\n        for { } lt(i, value1) { i := add(i, 1) }\n        {\n            let value := calldataload(srcPtr)\n            validator_revert_uint32(value)\n            mstore(pos, and(value, 0xffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_uint64_dyn(value0, add(headStart, 64))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_array_uint64_dyn(value1, tail_1)\n    }\n    function abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IDrawBuffer_$11318__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IPrizeDistributionSource_$11503__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"DrawCalc/draw-expired\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"DrawCalc/invalid-pick-indices-le\")\n        mstore(add(headStart, 96), \"ngth\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"DrawCalc/exceeds-max-user-picks\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"DrawCalc/picks-ascending\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"DrawCalc/insufficient-user-picks\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function allocate_memory_5223() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0120)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory_5225() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xa0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory_8108() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 512)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function array_allocation_size_array_array_uint64_dyn_dyn(length) -> size\n    {\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        size := add(shl(5, length), 0x20)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint64(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint8(x, y) -> sum\n    {\n        let x_1 := and(x, 0xff)\n        let y_1 := and(y, 0xff)\n        if gt(x_1, sub(0xff, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function checked_exp_helper(_base, exponent) -> power, base\n    {\n        let power_1 := 1\n        power := power_1\n        base := _base\n        for { } gt(exponent, power_1) { }\n        {\n            if gt(base, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, base)) { panic_error_0x11() }\n            if and(exponent, power_1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(power_1, exponent)\n        }\n    }\n    function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, and(exponent, 0xff))\n    }\n    function checked_exp_unsigned(base, exponent) -> power\n    {\n        if iszero(exponent)\n        {\n            power := 1\n            leave\n        }\n        if iszero(base)\n        {\n            power := 0\n            leave\n        }\n        switch base\n        case 1 {\n            power := 1\n            leave\n        }\n        case 2 {\n            if gt(exponent, 255) { panic_error_0x11() }\n            power := shl(exponent, 1)\n            leave\n        }\n        if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n        {\n            power := exp(base, exponent)\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent)\n        if gt(power_1, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n        product := mul(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function checked_sub_t_uint8(x, y) -> diff\n    {\n        let x_1 := and(x, 0xff)\n        let y_1 := and(y, 0xff)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function increment_t_uint32(value) -> ret\n    {\n        let _1 := 0xffffffff\n        let value_1 := and(value, _1)\n        if eq(value_1, _1) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function increment_t_uint8(value) -> ret\n    {\n        let value_1 := and(value, 0xff)\n        if eq(value_1, 0xff) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_uint104(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint64(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint8(value)\n    {\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "7580": [
                  {
                    "length": 32,
                    "start": 287
                  },
                  {
                    "length": 32,
                    "start": 624
                  },
                  {
                    "length": 32,
                    "start": 788
                  },
                  {
                    "length": 32,
                    "start": 1381
                  }
                ],
                "7584": [
                  {
                    "length": 32,
                    "start": 393
                  },
                  {
                    "length": 32,
                    "start": 2911
                  },
                  {
                    "length": 32,
                    "start": 3058
                  }
                ],
                "7588": [
                  {
                    "length": 32,
                    "start": 448
                  },
                  {
                    "length": 32,
                    "start": 585
                  },
                  {
                    "length": 32,
                    "start": 967
                  },
                  {
                    "length": 32,
                    "start": 1526
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100df5760003560e01c8063740e61a31161008c578063aaca392e11610066578063aaca392e14610223578063bcc18abc14610244578063ce343bb61461026b578063f8d0ca4c1461029257600080fd5b8063740e61a3146101be5780638045fbcf146101e45780639d34ee24146101f757600080fd5b806367306cf2116100bd57806367306cf2146101645780636cc25db7146101845780636d4bfa6e146101ab57600080fd5b8063094a2491146100e45780633b5564f91461010a5780634019f2d61461011d575b600080fd5b6100f76100f2366004611d36565b6102ac565b6040519081526020015b60405180910390f35b6100f7610118366004611c21565b6102c1565b7f00000000000000000000000000000000000000000000000000000000000000005b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610101565b610177610172366004611c04565b6102db565b6040516101019190611e98565b61013f7f000000000000000000000000000000000000000000000000000000000000000081565b6100f76101b9366004611c89565b6102f4565b7f000000000000000000000000000000000000000000000000000000000000000061013f565b6101776101f2366004611727565b61030e565b61020a610205366004611c6b565b61048b565b60405167ffffffffffffffff9091168152602001610101565b61023661023136600461177a565b610497565b604051610101929190611eab565b61013f7f000000000000000000000000000000000000000000000000000000000000000081565b61013f7f000000000000000000000000000000000000000000000000000000000000000081565b61029a601081565b60405160ff9091168152602001610101565b60006102b88383610722565b90505b92915050565b60006102b86102d536859003850185611c4e565b83610770565b60606102bb6102ef36849003840184611c4e565b6107bb565b60006103018484846108c0565b60ff1690505b9392505050565b606060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0bb78f385856040518363ffffffff1660e01b815260040161036d929190611f10565b60006040518083038186803b15801561038557600080fd5b505afa158015610399573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103c19190810190611945565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf86866040518363ffffffff1660e01b8152600401610420929190611f10565b60006040518083038186803b15801561043857600080fd5b505afa15801561044c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104749190810190611a40565b905061048186838361095f565b9695505050505050565b60006102b88383610dca565b60608060006104a884860186611825565b805190915086146105255760405162461bcd60e51b8152602060048201526024808201527f4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c6560448201527f6e6774680000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6040517fd0bb78f300000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063d0bb78f39061059c908b908b90600401611f10565b60006040518083038186803b1580156105b457600080fd5b505afa1580156105c8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105f09190810190611945565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf8a8a6040518363ffffffff1660e01b815260040161064f929190611f10565b60006040518083038186803b15801561066757600080fd5b505afa15801561067b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106a39190810190611a40565b905060006106b28b848461095f565b6040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608e901b16602082015290915060009060340160405160208183030381529060405280519060200120905061070f8282868887610dfe565b9650965050505050509550959350505050565b60008115610768576107356001836121de565b6107429060ff85166121bf565b6001901b6107538360ff86166121bf565b6001901b61076191906121de565b90506102bb565b5060016102bb565b6000808360e001518360108110610789576107896122b2565b602002015163ffffffff16905060006107a6856000015185610722565b90506107b281836120af565b95945050505050565b60606000826020015160ff1667ffffffffffffffff8111156107df576107df6122c8565b604051908082528060200260200182016040528015610808578160200160208202803683370190505b50835190915060019061081c906002612114565b61082691906121de565b81600081518110610839576108396122b2565b602090810291909101015260015b836020015160ff168160ff1610156108b957835160ff168261086a60018461221a565b60ff168151811061087d5761087d6122b2565b6020026020010151901b828260ff168151811061089c5761089c6122b2565b6020908102919091010152806108b18161227c565b915050610847565b5092915050565b80516000908190815b8160ff168160ff161015610954576000858260ff16815181106108ee576108ee6122b2565b6020026020010151905080871681891614610933578360ff168360ff16141561091e576000945050505050610307565b610928848461221a565b945050505050610307565b8361093d8161227c565b94505050808061094c9061227c565b9150506108c9565b50610481828261221a565b815160609060008167ffffffffffffffff81111561097f5761097f6122c8565b6040519080825280602002602001820160405280156109a8578160200160208202803683370190505b50905060008267ffffffffffffffff8111156109c6576109c66122c8565b6040519080825280602002602001820160405280156109ef578160200160208202803683370190505b50905060005b838163ffffffff161015610b1e57858163ffffffff1681518110610a1b57610a1b6122b2565b60200260200101516040015163ffffffff16878263ffffffff1681518110610a4557610a456122b2565b60200260200101516040015103838263ffffffff1681518110610a6a57610a6a6122b2565b602002602001019067ffffffffffffffff16908167ffffffffffffffff1681525050858163ffffffff1681518110610aa457610aa46122b2565b60200260200101516060015163ffffffff16878263ffffffff1681518110610ace57610ace6122b2565b60200260200101516040015103828263ffffffff1681518110610af357610af36122b2565b67ffffffffffffffff9092166020928302919091019091015280610b1681612258565b9150506109f5565b506040517f68c7fd5700000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906368c7fd5790610b98908b9087908790600401611dd7565b60006040518083038186803b158015610bb057600080fd5b505afa158015610bc4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bec9190810190611b6c565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638e6d536a85856040518363ffffffff1660e01b8152600401610c4b929190611f5b565b60006040518083038186803b158015610c6357600080fd5b505afa158015610c77573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c9f9190810190611b6c565b905060008567ffffffffffffffff811115610cbc57610cbc6122c8565b604051908082528060200260200182016040528015610ce5578160200160208202803683370190505b50905060005b86811015610dbc57828181518110610d0557610d056122b2565b602002602001015160001415610d3a576000828281518110610d2957610d296122b2565b602002602001018181525050610daa565b828181518110610d4c57610d4c6122b2565b6020026020010151848281518110610d6657610d666122b2565b6020026020010151670de0b6b3a7640000610d8191906121bf565b610d8b91906120af565b828281518110610d9d57610d9d6122b2565b6020026020010181815250505b80610db48161223d565b915050610ceb565b509998505050505050505050565b6000670de0b6b3a76400008360c001516cffffffffffffffffffffffffff1683610df491906121bf565b6102b891906120af565b6060806000875167ffffffffffffffff811115610e1d57610e1d6122c8565b604051908082528060200260200182016040528015610e46578160200160208202803683370190505b5090506000885167ffffffffffffffff811115610e6557610e656122c8565b604051908082528060200260200182016040528015610e9857816020015b6060815260200190600190039081610e835790505b5090504260005b88518163ffffffff16101561108557868163ffffffff1681518110610ec657610ec66122b2565b602002602001015160a0015163ffffffff16898263ffffffff1681518110610ef057610ef06122b2565b602002602001015160400151610f06919061205e565b67ffffffffffffffff168267ffffffffffffffff1610610f685760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d657870697265640000000000000000000000604482015260640161051c565b6000610fb2888363ffffffff1681518110610f8557610f856122b2565b60200260200101518d8463ffffffff1681518110610fa557610fa56122b2565b6020026020010151610dca565b905061102c8a8363ffffffff1681518110610fcf57610fcf6122b2565b6020026020010151600001518267ffffffffffffffff168d8c8663ffffffff1681518110610fff57610fff6122b2565b60200260200101518c8763ffffffff168151811061101f5761101f6122b2565b60200260200101516110b8565b868463ffffffff1681518110611044576110446122b2565b60200260200101868563ffffffff1681518110611063576110636122b2565b602090810291909101019190915252508061107d81612258565b915050610e9f565b50816040516020016110979190611e18565b60405160208183030381529060405293508294505050509550959350505050565b6000606060006110c7846107bb565b85516040805160108082526102208201909252929350909160009160208201610200803683370190505090506000866080015163ffffffff168363ffffffff1611156111555760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f657863656564732d6d61782d757365722d7069636b7300604482015260640161051c565b60005b8363ffffffff168163ffffffff16101561136d578a898263ffffffff1681518110611185576111856122b2565b602002602001015167ffffffffffffffff16106111e45760405162461bcd60e51b815260206004820181905260248201527f4472617743616c632f696e73756666696369656e742d757365722d7069636b73604482015260640161051c565b63ffffffff81161561129b57886111fc6001836121f5565b63ffffffff1681518110611212576112126122b2565b602002602001015167ffffffffffffffff16898263ffffffff168151811061123c5761123c6122b2565b602002602001015167ffffffffffffffff161161129b5760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7069636b732d617363656e64696e670000000000000000604482015260640161051c565b60008a8a8363ffffffff16815181106112b6576112b66122b2565b60200260200101516040516020016112e292919091825267ffffffffffffffff16602082015260400190565b6040516020818303038152906040528051906020012060001c9050600061130a828f896108c0565b9050601060ff82161015611358578360ff168160ff16111561132a578093505b848160ff168151811061133f5761133f6122b2565b6020026020010180518091906113549061223d565b9052505b5050808061136590612258565b915050611158565b5060008061137b898461143d565b905060005b8360ff16811161140957600085828151811061139e5761139e6122b2565b602002602001015111156113f7578481815181106113be576113be6122b2565b60200260200101518282815181106113d8576113d86122b2565b60200260200101516113ea91906121bf565b6113f49084612046565b92505b806114018161223d565b915050611380565b50633b9aca008961010001518361142091906121bf565b61142a91906120af565b9d939c50929a5050505050505050505050565b6060600061144c83600161208a565b60ff1667ffffffffffffffff811115611467576114676122c8565b604051908082528060200260200182016040528015611490578160200160208202803683370190505b50905060005b8360ff168160ff16116114e2576114b0858260ff16610770565b828260ff16815181106114c5576114c56122b2565b6020908102919091010152806114da8161227c565b915050611496565b509392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461150e57600080fd5b919050565b600082601f83011261152457600080fd5b61152c611fcd565b8083856102008601111561153f57600080fd5b60005b601081101561156b578135611556816122fc565b84526020938401939190910190600101611542565b509095945050505050565b600082601f83011261158757600080fd5b61158f611fcd565b808385610200860111156115a257600080fd5b60005b601081101561156b5781516115b9816122fc565b845260209384019391909101906001016115a5565b60008083601f8401126115e057600080fd5b50813567ffffffffffffffff8111156115f857600080fd5b6020830191508360208260051b850101111561161357600080fd5b9250929050565b6000610300828403121561162d57600080fd5b50919050565b6000610300828403121561164657600080fd5b61164e611f80565b905061165982611711565b815261166760208301611711565b6020820152611678604083016116fb565b6040820152611689606083016116fb565b606082015261169a608083016116fb565b60808201526116ab60a083016116fb565b60a08201526116bc60c083016116e5565b60c08201526116ce8360e08401611513565b60e08201526102e082013561010082015292915050565b803561150e816122de565b805161150e816122de565b803561150e816122fc565b805161150e816122fc565b803561150e81612324565b805161150e81612324565b60008060006040848603121561173c57600080fd5b611745846114ea565b9250602084013567ffffffffffffffff81111561176157600080fd5b61176d868287016115ce565b9497909650939450505050565b60008060008060006060868803121561179257600080fd5b61179b866114ea565b9450602086013567ffffffffffffffff808211156117b857600080fd5b6117c489838a016115ce565b909650945060408801359150808211156117dd57600080fd5b818801915088601f8301126117f157600080fd5b81358181111561180057600080fd5b89602082850101111561181257600080fd5b9699959850939650602001949392505050565b6000602080838503121561183857600080fd5b823567ffffffffffffffff8082111561185057600080fd5b818501915085601f83011261186457600080fd5b813561187761187282612022565b611ff1565b80828252858201915085850189878560051b880101111561189757600080fd5b60005b84811015611936578135868111156118b157600080fd5b8701603f81018c136118c257600080fd5b888101356118d261187282612022565b808282528b82019150604084018f60408560051b87010111156118f457600080fd5b600094505b8385101561192057803561190c8161230e565b835260019490940193918c01918c016118f9565b508752505050928701929087019060010161189a565b50909998505050505050505050565b6000602080838503121561195857600080fd5b825167ffffffffffffffff81111561196f57600080fd5b8301601f8101851361198057600080fd5b805161198e61187282612022565b8181528381019083850160a0808502860187018a10156119ad57600080fd5b60009550855b85811015611a315781838c0312156119c9578687fd5b6119d1611faa565b83518152888401516119e2816122fc565b818a01526040848101516119f58161230e565b90820152606084810151611a088161230e565b90820152608084810151611a1b816122fc565b90820152855293870193918101916001016119b3565b50919998505050505050505050565b60006020808385031215611a5357600080fd5b825167ffffffffffffffff811115611a6a57600080fd5b8301601f81018513611a7b57600080fd5b8051611a8961187282612022565b81815283810190838501610300808502860187018a1015611aa957600080fd5b60009550855b85811015611a315781838c031215611ac5578687fd5b611acd611f80565b611ad68461171c565b8152611ae389850161171c565b898201526040611af4818601611706565b908201526060611b05858201611706565b908201526080611b16858201611706565b9082015260a0611b27858201611706565b9082015260c0611b388582016116f0565b9082015260e0611b4a8d868301611576565b908201526102e084015161010082015285529387019391810191600101611aaf565b60006020808385031215611b7f57600080fd5b825167ffffffffffffffff811115611b9657600080fd5b8301601f81018513611ba757600080fd5b8051611bb561187282612022565b80828252848201915084840188868560051b8701011115611bd557600080fd5b600094505b83851015611bf8578051835260019490940193918501918501611bda565b50979650505050505050565b60006103008284031215611c1757600080fd5b6102b8838361161a565b6000806103208385031215611c3557600080fd5b611c3f848461161a565b94610300939093013593505050565b60006103008284031215611c6157600080fd5b6102b88383611633565b6000806103208385031215611c7f57600080fd5b611c3f8484611633565b600080600060608486031215611c9e57600080fd5b833592506020808501359250604085013567ffffffffffffffff811115611cc457600080fd5b8501601f81018713611cd557600080fd5b8035611ce361187282612022565b8082825284820191508484018a868560051b8701011115611d0357600080fd5b600094505b83851015611d26578035835260019490940193918501918501611d08565b5080955050505050509250925092565b60008060408385031215611d4957600080fd5b8235611d5481612324565b946020939093013593505050565b600081518084526020808501945080840160005b83811015611d9257815187529582019590820190600101611d76565b509495945050505050565b600081518084526020808501945080840160005b83811015611d9257815167ffffffffffffffff1687529582019590820190600101611db1565b73ffffffffffffffffffffffffffffffffffffffff84168152606060208201526000611e066060830185611d9d565b82810360408401526104818185611d9d565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015611e8b577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452611e79858351611d62565b94509285019290850190600101611e3f565b5092979650505050505050565b6020815260006102b86020830184611d62565b604081526000611ebe6040830185611d62565b602083820381850152845180835260005b81811015611eea578681018301518482018401528201611ecf565b81811115611efb5760008383860101525b50601f01601f19169190910101949350505050565b60208082528181018390526000908460408401835b86811015611f50578235611f38816122fc565b63ffffffff1682529183019190830190600101611f25565b509695505050505050565b604081526000611f6e6040830185611d9d565b82810360208401526107b28185611d9d565b604051610120810167ffffffffffffffff81118282101715611fa457611fa46122c8565b60405290565b60405160a0810167ffffffffffffffff81118282101715611fa457611fa46122c8565b604051610200810167ffffffffffffffff81118282101715611fa457611fa46122c8565b604051601f8201601f1916810167ffffffffffffffff8111828210171561201a5761201a6122c8565b604052919050565b600067ffffffffffffffff82111561203c5761203c6122c8565b5060051b60200190565b600082198211156120595761205961229c565b500190565b600067ffffffffffffffff8083168185168083038211156120815761208161229c565b01949350505050565b600060ff821660ff84168060ff038211156120a7576120a761229c565b019392505050565b6000826120cc57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b8085111561210c5781600019048211156120f2576120f261229c565b808516156120ff57918102915b93841c93908002906120d6565b509250929050565b60006102b860ff84168360008261212d575060016102bb565b8161213a575060006102bb565b8160018114612150576002811461215a57612176565b60019150506102bb565b60ff84111561216b5761216b61229c565b50506001821b6102bb565b5060208310610133831016604e8410600b8410161715612199575081810a6102bb565b6121a383836120d1565b80600019048211156121b7576121b761229c565b029392505050565b60008160001904831182151516156121d9576121d961229c565b500290565b6000828210156121f0576121f061229c565b500390565b600063ffffffff838116908316818110156122125761221261229c565b039392505050565b600060ff821660ff8416808210156122345761223461229c565b90039392505050565b60006000198214156122515761225161229c565b5060010190565b600063ffffffff808316818114156122725761227261229c565b6001019392505050565b600060ff821660ff8114156122935761229361229c565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6cffffffffffffffffffffffffff811681146122f957600080fd5b50565b63ffffffff811681146122f957600080fd5b67ffffffffffffffff811681146122f957600080fd5b60ff811681146122f957600080fdfea26469706673582212208938540598b2c0d8179196a51c6c70145121771baedf66e06ae7c3cc6047e5a464736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xDF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x740E61A3 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xAACA392E GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xAACA392E EQ PUSH2 0x223 JUMPI DUP1 PUSH4 0xBCC18ABC EQ PUSH2 0x244 JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x26B JUMPI DUP1 PUSH4 0xF8D0CA4C EQ PUSH2 0x292 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x740E61A3 EQ PUSH2 0x1BE JUMPI DUP1 PUSH4 0x8045FBCF EQ PUSH2 0x1E4 JUMPI DUP1 PUSH4 0x9D34EE24 EQ PUSH2 0x1F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x67306CF2 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x67306CF2 EQ PUSH2 0x164 JUMPI DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0x184 JUMPI DUP1 PUSH4 0x6D4BFA6E EQ PUSH2 0x1AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x94A2491 EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x3B5564F9 EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0x11D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0xF2 CALLDATASIZE PUSH1 0x4 PUSH2 0x1D36 JUMP JUMPDEST PUSH2 0x2AC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF7 PUSH2 0x118 CALLDATASIZE PUSH1 0x4 PUSH2 0x1C21 JUMP JUMPDEST PUSH2 0x2C1 JUMP JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x101 JUMP JUMPDEST PUSH2 0x177 PUSH2 0x172 CALLDATASIZE PUSH1 0x4 PUSH2 0x1C04 JUMP JUMPDEST PUSH2 0x2DB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x101 SWAP2 SWAP1 PUSH2 0x1E98 JUMP JUMPDEST PUSH2 0x13F PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x1B9 CALLDATASIZE PUSH1 0x4 PUSH2 0x1C89 JUMP JUMPDEST PUSH2 0x2F4 JUMP JUMPDEST PUSH32 0x0 PUSH2 0x13F JUMP JUMPDEST PUSH2 0x177 PUSH2 0x1F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x1727 JUMP JUMPDEST PUSH2 0x30E JUMP JUMPDEST PUSH2 0x20A PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0x1C6B JUMP JUMPDEST PUSH2 0x48B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x101 JUMP JUMPDEST PUSH2 0x236 PUSH2 0x231 CALLDATASIZE PUSH1 0x4 PUSH2 0x177A JUMP JUMPDEST PUSH2 0x497 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x101 SWAP3 SWAP2 SWAP1 PUSH2 0x1EAB JUMP JUMPDEST PUSH2 0x13F PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x13F PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x29A PUSH1 0x10 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x101 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B8 DUP4 DUP4 PUSH2 0x722 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B8 PUSH2 0x2D5 CALLDATASIZE DUP6 SWAP1 SUB DUP6 ADD DUP6 PUSH2 0x1C4E JUMP JUMPDEST DUP4 PUSH2 0x770 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2BB PUSH2 0x2EF CALLDATASIZE DUP5 SWAP1 SUB DUP5 ADD DUP5 PUSH2 0x1C4E JUMP JUMPDEST PUSH2 0x7BB JUMP JUMPDEST PUSH1 0x0 PUSH2 0x301 DUP5 DUP5 DUP5 PUSH2 0x8C0 JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD0BB78F3 DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x36D SWAP3 SWAP2 SWAP1 PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x385 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x399 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x3C1 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1945 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP7 DUP7 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x420 SWAP3 SWAP2 SWAP1 PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x438 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x44C JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x474 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1A40 JUMP JUMPDEST SWAP1 POP PUSH2 0x481 DUP7 DUP4 DUP4 PUSH2 0x95F JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B8 DUP4 DUP4 PUSH2 0xDCA JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 PUSH2 0x4A8 DUP5 DUP7 ADD DUP7 PUSH2 0x1825 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP DUP7 EQ PUSH2 0x525 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E76616C69642D7069636B2D696E64696365732D6C65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E67746800000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xD0BB78F300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0xD0BB78F3 SWAP1 PUSH2 0x59C SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5C8 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x5F0 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1945 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP11 DUP11 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x64F SWAP3 SWAP2 SWAP1 PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x667 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x67B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x6A3 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1A40 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x6B2 DUP12 DUP5 DUP5 PUSH2 0x95F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000 PUSH1 0x60 DUP15 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x34 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH2 0x70F DUP3 DUP3 DUP7 DUP9 DUP8 PUSH2 0xDFE JUMP JUMPDEST SWAP7 POP SWAP7 POP POP POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO PUSH2 0x768 JUMPI PUSH2 0x735 PUSH1 0x1 DUP4 PUSH2 0x21DE JUMP JUMPDEST PUSH2 0x742 SWAP1 PUSH1 0xFF DUP6 AND PUSH2 0x21BF JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x753 DUP4 PUSH1 0xFF DUP7 AND PUSH2 0x21BF JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x761 SWAP2 SWAP1 PUSH2 0x21DE JUMP JUMPDEST SWAP1 POP PUSH2 0x2BB JUMP JUMPDEST POP PUSH1 0x1 PUSH2 0x2BB JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0xE0 ADD MLOAD DUP4 PUSH1 0x10 DUP2 LT PUSH2 0x789 JUMPI PUSH2 0x789 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x7A6 DUP6 PUSH1 0x0 ADD MLOAD DUP6 PUSH2 0x722 JUMP JUMPDEST SWAP1 POP PUSH2 0x7B2 DUP2 DUP4 PUSH2 0x20AF JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7DF JUMPI PUSH2 0x7DF PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x808 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP DUP4 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 SWAP1 PUSH2 0x81C SWAP1 PUSH1 0x2 PUSH2 0x2114 JUMP JUMPDEST PUSH2 0x826 SWAP2 SWAP1 PUSH2 0x21DE JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x839 JUMPI PUSH2 0x839 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 JUMPDEST DUP4 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x8B9 JUMPI DUP4 MLOAD PUSH1 0xFF AND DUP3 PUSH2 0x86A PUSH1 0x1 DUP5 PUSH2 0x221A JUMP JUMPDEST PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x87D JUMPI PUSH2 0x87D PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 SHL DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x89C JUMPI PUSH2 0x89C PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x8B1 DUP2 PUSH2 0x227C JUMP JUMPDEST SWAP2 POP POP PUSH2 0x847 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x954 JUMPI PUSH1 0x0 DUP6 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x8EE JUMPI PUSH2 0x8EE PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP DUP1 DUP8 AND DUP2 DUP10 AND EQ PUSH2 0x933 JUMPI DUP4 PUSH1 0xFF AND DUP4 PUSH1 0xFF AND EQ ISZERO PUSH2 0x91E JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0x307 JUMP JUMPDEST PUSH2 0x928 DUP5 DUP5 PUSH2 0x221A JUMP JUMPDEST SWAP5 POP POP POP POP POP PUSH2 0x307 JUMP JUMPDEST DUP4 PUSH2 0x93D DUP2 PUSH2 0x227C JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0x94C SWAP1 PUSH2 0x227C JUMP JUMPDEST SWAP2 POP POP PUSH2 0x8C9 JUMP JUMPDEST POP PUSH2 0x481 DUP3 DUP3 PUSH2 0x221A JUMP JUMPDEST DUP2 MLOAD PUSH1 0x60 SWAP1 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x97F JUMPI PUSH2 0x97F PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x9A8 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x9C6 JUMPI PUSH2 0x9C6 PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x9EF JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xB1E JUMPI DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xA1B JUMPI PUSH2 0xA1B PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xA45 JUMPI PUSH2 0xA45 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP4 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xA6A JUMPI PUSH2 0xA6A PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xAA4 JUMPI PUSH2 0xAA4 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x60 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xACE JUMPI PUSH2 0xACE PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP3 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xAF3 JUMPI PUSH2 0xAF3 PUSH2 0x22B2 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE DUP1 PUSH2 0xB16 DUP2 PUSH2 0x2258 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x9F5 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x68C7FD5700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0x68C7FD57 SWAP1 PUSH2 0xB98 SWAP1 DUP12 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x1DD7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBB0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xBC4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0xBEC SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1B6C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x8E6D536A DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC4B SWAP3 SWAP2 SWAP1 PUSH2 0x1F5B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xC63 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC77 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0xC9F SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1B6C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xCBC JUMPI PUSH2 0xCBC PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xCE5 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0xDBC JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0xD05 JUMPI PUSH2 0xD05 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 EQ ISZERO PUSH2 0xD3A JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xD29 JUMPI PUSH2 0xD29 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP PUSH2 0xDAA JUMP JUMPDEST DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0xD4C JUMPI PUSH2 0xD4C PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xD66 JUMPI PUSH2 0xD66 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xDE0B6B3A7640000 PUSH2 0xD81 SWAP2 SWAP1 PUSH2 0x21BF JUMP JUMPDEST PUSH2 0xD8B SWAP2 SWAP1 PUSH2 0x20AF JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xD9D JUMPI PUSH2 0xD9D PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0xDB4 DUP2 PUSH2 0x223D JUMP JUMPDEST SWAP2 POP POP PUSH2 0xCEB JUMP JUMPDEST POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 DUP4 PUSH1 0xC0 ADD MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0xDF4 SWAP2 SWAP1 PUSH2 0x21BF JUMP JUMPDEST PUSH2 0x2B8 SWAP2 SWAP1 PUSH2 0x20AF JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 DUP8 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE1D JUMPI PUSH2 0xE1D PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xE46 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP9 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE65 JUMPI PUSH2 0xE65 PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xE98 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xE83 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP9 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x1085 JUMPI DUP7 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xEC6 JUMPI PUSH2 0xEC6 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xA0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xEF0 JUMPI PUSH2 0xEF0 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH2 0xF06 SWAP2 SWAP1 PUSH2 0x205E JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xF68 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F647261772D657870697265640000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x51C JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFB2 DUP9 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xF85 JUMPI PUSH2 0xF85 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP14 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFA5 JUMPI PUSH2 0xFA5 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xDCA JUMP JUMPDEST SWAP1 POP PUSH2 0x102C DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFCF JUMPI PUSH2 0xFCF PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP14 DUP13 DUP7 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFFF JUMPI PUSH2 0xFFF PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP13 DUP8 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x101F JUMPI PUSH2 0x101F PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x10B8 JUMP JUMPDEST DUP7 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1044 JUMPI PUSH2 0x1044 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP7 DUP6 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1063 JUMPI PUSH2 0x1063 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD SWAP2 SWAP1 SWAP2 MSTORE MSTORE POP DUP1 PUSH2 0x107D DUP2 PUSH2 0x2258 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xE9F JUMP JUMPDEST POP DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1097 SWAP2 SWAP1 PUSH2 0x1E18 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP DUP3 SWAP5 POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 PUSH1 0x0 PUSH2 0x10C7 DUP5 PUSH2 0x7BB JUMP JUMPDEST DUP6 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x10 DUP1 DUP3 MSTORE PUSH2 0x220 DUP3 ADD SWAP1 SWAP3 MSTORE SWAP3 SWAP4 POP SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH1 0x20 DUP3 ADD PUSH2 0x200 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH1 0x0 DUP7 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0x1155 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F657863656564732D6D61782D757365722D7069636B7300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x51C JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x136D JUMPI DUP11 DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1185 JUMPI PUSH2 0x1185 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0x11E4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E73756666696369656E742D757365722D7069636B73 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x51C JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO PUSH2 0x129B JUMPI DUP9 PUSH2 0x11FC PUSH1 0x1 DUP4 PUSH2 0x21F5 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1212 JUMPI PUSH2 0x1212 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x123C JUMPI PUSH2 0x123C PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0x129B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7069636B732D617363656E64696E670000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x51C JUMP JUMPDEST PUSH1 0x0 DUP11 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x12B6 JUMPI PUSH2 0x12B6 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x12E2 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP PUSH1 0x0 PUSH2 0x130A DUP3 DUP16 DUP10 PUSH2 0x8C0 JUMP JUMPDEST SWAP1 POP PUSH1 0x10 PUSH1 0xFF DUP3 AND LT ISZERO PUSH2 0x1358 JUMPI DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT ISZERO PUSH2 0x132A JUMPI DUP1 SWAP4 POP JUMPDEST DUP5 DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x133F JUMPI PUSH2 0x133F PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP1 MLOAD DUP1 SWAP2 SWAP1 PUSH2 0x1354 SWAP1 PUSH2 0x223D JUMP JUMPDEST SWAP1 MSTORE POP JUMPDEST POP POP DUP1 DUP1 PUSH2 0x1365 SWAP1 PUSH2 0x2258 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1158 JUMP JUMPDEST POP PUSH1 0x0 DUP1 PUSH2 0x137B DUP10 DUP5 PUSH2 0x143D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 GT PUSH2 0x1409 JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x139E JUMPI PUSH2 0x139E PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD GT ISZERO PUSH2 0x13F7 JUMPI DUP5 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x13BE JUMPI PUSH2 0x13BE PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x13D8 JUMPI PUSH2 0x13D8 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x13EA SWAP2 SWAP1 PUSH2 0x21BF JUMP JUMPDEST PUSH2 0x13F4 SWAP1 DUP5 PUSH2 0x2046 JUMP JUMPDEST SWAP3 POP JUMPDEST DUP1 PUSH2 0x1401 DUP2 PUSH2 0x223D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1380 JUMP JUMPDEST POP PUSH4 0x3B9ACA00 DUP10 PUSH2 0x100 ADD MLOAD DUP4 PUSH2 0x1420 SWAP2 SWAP1 PUSH2 0x21BF JUMP JUMPDEST PUSH2 0x142A SWAP2 SWAP1 PUSH2 0x20AF JUMP JUMPDEST SWAP14 SWAP4 SWAP13 POP SWAP3 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x144C DUP4 PUSH1 0x1 PUSH2 0x208A JUMP JUMPDEST PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1467 JUMPI PUSH2 0x1467 PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1490 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT PUSH2 0x14E2 JUMPI PUSH2 0x14B0 DUP6 DUP3 PUSH1 0xFF AND PUSH2 0x770 JUMP JUMPDEST DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x14C5 JUMPI PUSH2 0x14C5 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x14DA DUP2 PUSH2 0x227C JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1496 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x150E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1524 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x152C PUSH2 0x1FCD JUMP JUMPDEST DUP1 DUP4 DUP6 PUSH2 0x200 DUP7 ADD GT ISZERO PUSH2 0x153F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x156B JUMPI DUP2 CALLDATALOAD PUSH2 0x1556 DUP2 PUSH2 0x22FC JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1542 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1587 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x158F PUSH2 0x1FCD JUMP JUMPDEST DUP1 DUP4 DUP6 PUSH2 0x200 DUP7 ADD GT ISZERO PUSH2 0x15A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x156B JUMPI DUP2 MLOAD PUSH2 0x15B9 DUP2 PUSH2 0x22FC JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x15A5 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x15E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x15F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1613 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x162D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1646 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x164E PUSH2 0x1F80 JUMP JUMPDEST SWAP1 POP PUSH2 0x1659 DUP3 PUSH2 0x1711 JUMP JUMPDEST DUP2 MSTORE PUSH2 0x1667 PUSH1 0x20 DUP4 ADD PUSH2 0x1711 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1678 PUSH1 0x40 DUP4 ADD PUSH2 0x16FB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x1689 PUSH1 0x60 DUP4 ADD PUSH2 0x16FB JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x169A PUSH1 0x80 DUP4 ADD PUSH2 0x16FB JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x16AB PUSH1 0xA0 DUP4 ADD PUSH2 0x16FB JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD MSTORE PUSH2 0x16BC PUSH1 0xC0 DUP4 ADD PUSH2 0x16E5 JUMP JUMPDEST PUSH1 0xC0 DUP3 ADD MSTORE PUSH2 0x16CE DUP4 PUSH1 0xE0 DUP5 ADD PUSH2 0x1513 JUMP JUMPDEST PUSH1 0xE0 DUP3 ADD MSTORE PUSH2 0x2E0 DUP3 ADD CALLDATALOAD PUSH2 0x100 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x150E DUP2 PUSH2 0x22DE JUMP JUMPDEST DUP1 MLOAD PUSH2 0x150E DUP2 PUSH2 0x22DE JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x150E DUP2 PUSH2 0x22FC JUMP JUMPDEST DUP1 MLOAD PUSH2 0x150E DUP2 PUSH2 0x22FC JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x150E DUP2 PUSH2 0x2324 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x150E DUP2 PUSH2 0x2324 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x173C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1745 DUP5 PUSH2 0x14EA JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1761 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x176D DUP7 DUP3 DUP8 ADD PUSH2 0x15CE JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1792 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x179B DUP7 PUSH2 0x14EA JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x17B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x17C4 DUP10 DUP4 DUP11 ADD PUSH2 0x15CE JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x17DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x17F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1800 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x1812 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1838 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1850 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1864 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1877 PUSH2 0x1872 DUP3 PUSH2 0x2022 JUMP JUMPDEST PUSH2 0x1FF1 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP6 DUP3 ADD SWAP2 POP DUP6 DUP6 ADD DUP10 DUP8 DUP6 PUSH1 0x5 SHL DUP9 ADD ADD GT ISZERO PUSH2 0x1897 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x1936 JUMPI DUP2 CALLDATALOAD DUP7 DUP2 GT ISZERO PUSH2 0x18B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 ADD PUSH1 0x3F DUP2 ADD DUP13 SGT PUSH2 0x18C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 DUP2 ADD CALLDATALOAD PUSH2 0x18D2 PUSH2 0x1872 DUP3 PUSH2 0x2022 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP12 DUP3 ADD SWAP2 POP PUSH1 0x40 DUP5 ADD DUP16 PUSH1 0x40 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x18F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x1920 JUMPI DUP1 CALLDATALOAD PUSH2 0x190C DUP2 PUSH2 0x230E JUMP JUMPDEST DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP13 ADD SWAP2 DUP13 ADD PUSH2 0x18F9 JUMP JUMPDEST POP DUP8 MSTORE POP POP POP SWAP3 DUP8 ADD SWAP3 SWAP1 DUP8 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x189A JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1958 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x196F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1980 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x198E PUSH2 0x1872 DUP3 PUSH2 0x2022 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH1 0xA0 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x19AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x1A31 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x19C9 JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x19D1 PUSH2 0x1FAA JUMP JUMPDEST DUP4 MLOAD DUP2 MSTORE DUP9 DUP5 ADD MLOAD PUSH2 0x19E2 DUP2 PUSH2 0x22FC JUMP JUMPDEST DUP2 DUP11 ADD MSTORE PUSH1 0x40 DUP5 DUP2 ADD MLOAD PUSH2 0x19F5 DUP2 PUSH2 0x230E JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP5 DUP2 ADD MLOAD PUSH2 0x1A08 DUP2 PUSH2 0x230E JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP5 DUP2 ADD MLOAD PUSH2 0x1A1B DUP2 PUSH2 0x22FC JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x19B3 JUMP JUMPDEST POP SWAP2 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A53 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1A6A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1A7B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1A89 PUSH2 0x1872 DUP3 PUSH2 0x2022 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH2 0x300 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1AA9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x1A31 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x1AC5 JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1ACD PUSH2 0x1F80 JUMP JUMPDEST PUSH2 0x1AD6 DUP5 PUSH2 0x171C JUMP JUMPDEST DUP2 MSTORE PUSH2 0x1AE3 DUP10 DUP6 ADD PUSH2 0x171C JUMP JUMPDEST DUP10 DUP3 ADD MSTORE PUSH1 0x40 PUSH2 0x1AF4 DUP2 DUP7 ADD PUSH2 0x1706 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 PUSH2 0x1B05 DUP6 DUP3 ADD PUSH2 0x1706 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 PUSH2 0x1B16 DUP6 DUP3 ADD PUSH2 0x1706 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 PUSH2 0x1B27 DUP6 DUP3 ADD PUSH2 0x1706 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 PUSH2 0x1B38 DUP6 DUP3 ADD PUSH2 0x16F0 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 PUSH2 0x1B4A DUP14 DUP7 DUP4 ADD PUSH2 0x1576 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH2 0x2E0 DUP5 ADD MLOAD PUSH2 0x100 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1AAF JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1B7F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B96 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1BA7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1BB5 PUSH2 0x1872 DUP3 PUSH2 0x2022 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP5 DUP3 ADD SWAP2 POP DUP5 DUP5 ADD DUP9 DUP7 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x1BD5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x1BF8 JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP6 ADD SWAP2 DUP6 ADD PUSH2 0x1BDA JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C17 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2B8 DUP4 DUP4 PUSH2 0x161A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x320 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C35 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1C3F DUP5 DUP5 PUSH2 0x161A JUMP JUMPDEST SWAP5 PUSH2 0x300 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C61 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2B8 DUP4 DUP4 PUSH2 0x1633 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x320 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C7F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1C3F DUP5 DUP5 PUSH2 0x1633 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1C9E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP1 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1CC4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x1CD5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x1CE3 PUSH2 0x1872 DUP3 PUSH2 0x2022 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP5 DUP3 ADD SWAP2 POP DUP5 DUP5 ADD DUP11 DUP7 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x1D03 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x1D26 JUMPI DUP1 CALLDATALOAD DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP6 ADD SWAP2 DUP6 ADD PUSH2 0x1D08 JUMP JUMPDEST POP DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1D49 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1D54 DUP2 PUSH2 0x2324 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1D92 JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1D76 JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1D92 JUMPI DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1DB1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x1E06 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x1D9D JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x481 DUP2 DUP6 PUSH2 0x1D9D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 ADD DUP2 DUP5 MSTORE DUP1 DUP6 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP7 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP8 ADD ADD SWAP3 POP DUP4 DUP8 ADD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1E8B JUMPI PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x1E79 DUP6 DUP4 MLOAD PUSH2 0x1D62 JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1E3F JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x2B8 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1D62 JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1EBE PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1D62 JUMP JUMPDEST PUSH1 0x20 DUP4 DUP3 SUB DUP2 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1EEA JUMPI DUP7 DUP2 ADD DUP4 ADD MLOAD DUP5 DUP3 ADD DUP5 ADD MSTORE DUP3 ADD PUSH2 0x1ECF JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x1EFB JUMPI PUSH1 0x0 DUP4 DUP4 DUP7 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP5 PUSH1 0x40 DUP5 ADD DUP4 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x1F50 JUMPI DUP3 CALLDATALOAD PUSH2 0x1F38 DUP2 PUSH2 0x22FC JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 MSTORE SWAP2 DUP4 ADD SWAP2 SWAP1 DUP4 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1F25 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1F6E PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1D9D JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x7B2 DUP2 DUP6 PUSH2 0x1D9D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1FA4 JUMPI PUSH2 0x1FA4 PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1FA4 JUMPI PUSH2 0x1FA4 PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1FA4 JUMPI PUSH2 0x1FA4 PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x201A JUMPI PUSH2 0x201A PUSH2 0x22C8 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x203C JUMPI PUSH2 0x203C PUSH2 0x22C8 JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x2059 JUMPI PUSH2 0x2059 PUSH2 0x229C JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x2081 JUMPI PUSH2 0x2081 PUSH2 0x229C JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 PUSH1 0xFF SUB DUP3 GT ISZERO PUSH2 0x20A7 JUMPI PUSH2 0x20A7 PUSH2 0x229C JUMP JUMPDEST ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x20CC JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 JUMPDEST DUP1 DUP6 GT ISZERO PUSH2 0x210C JUMPI DUP2 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x20F2 JUMPI PUSH2 0x20F2 PUSH2 0x229C JUMP JUMPDEST DUP1 DUP6 AND ISZERO PUSH2 0x20FF JUMPI SWAP2 DUP2 MUL SWAP2 JUMPDEST SWAP4 DUP5 SHR SWAP4 SWAP1 DUP1 MUL SWAP1 PUSH2 0x20D6 JUMP JUMPDEST POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B8 PUSH1 0xFF DUP5 AND DUP4 PUSH1 0x0 DUP3 PUSH2 0x212D JUMPI POP PUSH1 0x1 PUSH2 0x2BB JUMP JUMPDEST DUP2 PUSH2 0x213A JUMPI POP PUSH1 0x0 PUSH2 0x2BB JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x2150 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x215A JUMPI PUSH2 0x2176 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x2BB JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x216B JUMPI PUSH2 0x216B PUSH2 0x229C JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x2BB JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x2199 JUMPI POP DUP2 DUP2 EXP PUSH2 0x2BB JUMP JUMPDEST PUSH2 0x21A3 DUP4 DUP4 PUSH2 0x20D1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x21B7 JUMPI PUSH2 0x21B7 PUSH2 0x229C JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x21D9 JUMPI PUSH2 0x21D9 PUSH2 0x229C JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x21F0 JUMPI PUSH2 0x21F0 PUSH2 0x229C JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x2212 JUMPI PUSH2 0x2212 PUSH2 0x229C JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 DUP3 LT ISZERO PUSH2 0x2234 JUMPI PUSH2 0x2234 PUSH2 0x229C JUMP JUMPDEST SWAP1 SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2251 JUMPI PUSH2 0x2251 PUSH2 0x229C JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP2 EQ ISZERO PUSH2 0x2272 JUMPI PUSH2 0x2272 PUSH2 0x229C JUMP JUMPDEST PUSH1 0x1 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 EQ ISZERO PUSH2 0x2293 JUMPI PUSH2 0x2293 PUSH2 0x229C JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x22F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x22F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x22F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x22F9 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP10 CODESIZE SLOAD SDIV SWAP9 0xB2 0xC0 0xD8 OR SWAP2 SWAP7 0xA5 SHR PUSH13 0x70145121771BAEDF66E06AE7C3 0xCC PUSH1 0x47 0xE5 LOG4 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "96:1854:67:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1439:217;;;;;;:::i;:::-;;:::i;:::-;;;22034:25:84;;;22022:2;22007:18;1439:217:67;;;;;;;;1158:275;;;;;;:::i;:::-;;:::i;4619:95:32:-;4697:10;4619:95;;;19491:42:84;19479:55;;;19461:74;;19449:2;19434:18;4619:95:32;19416:125:84;639:222:67;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1083:31:32:-;;;;;363:270:67;;;;;;:::i;:::-;;:::i;4836:162:32:-;4968:23;4836:162;;5232:464;;;;;;:::i;:::-;;:::i;1662:286:67:-;;;;;;:::i;:::-;;:::i;:::-;;;22244:18:84;22232:31;;;22214:50;;22202:2;22187:18;1662:286:67;22169:101:84;3231:1292:32;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;1213:65::-;;;;;983:39;;;;;1324;;1361:2;1324:39;;;;;22447:4:84;22435:17;;;22417:36;;22405:2;22390:18;1324:39:32;22372:87:84;1439:217:67;1564:7;1594:55;1618:13;1633:15;1594:23;:55::i;:::-;1587:62;;1439:217;;;;;:::o;1158:275::-;1336:7;1362:64;;;;;;;;1390:18;1362:64;:::i;:::-;1410:15;1362:27;:64::i;639:222::-;780:16;819:35;;;;;;;;835:18;819:35;:::i;:::-;:15;:35::i;363:270::-;528:7;554:72;574:21;597:20;619:6;554:19;:72::i;:::-;547:79;;;;363:270;;;;;;:::o;5232:464:32:-;5363:16;5395:32;5430:10;:19;;;5450:8;;5430:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5430:29:32;;;;;;;;;;;;:::i;:::-;5395:64;;5469:71;5543:23;:58;;;5602:8;;5543:68;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5543:68:32;;;;;;;;;;;;:::i;:::-;5469:142;;5629:60;5654:5;5661:6;5669:19;5629:24;:60::i;:::-;5622:67;5232:464;-1:-1:-1;;;;;;5232:464:32:o;1662:286:67:-;1845:6;1870:71;1898:18;1918:22;1870:27;:71::i;3231:1292:32:-;3383:16;;3425:29;3457:47;;;;3468:20;3457:47;:::i;:::-;3522:18;;3425:79;;-1:-1:-1;3522:37:32;;3514:86;;;;-1:-1:-1;;;3514:86:32;;20611:2:84;3514:86:32;;;20593:21:84;20650:2;20630:18;;;20623:30;20689:34;20669:18;;;20662:62;20760:6;20740:18;;;20733:34;20784:19;;3514:86:32;;;;;;;;;3720:29;;;;;3686:31;;3720:19;:10;:19;;;;:29;;3740:8;;;;3720:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3720:29:32;;;;;;;;;;;;:::i;:::-;3686:63;;3845:71;3919:23;:58;;;3978:8;;3919:68;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3919:68:32;;;;;;;;;;;;:::i;:::-;3845:142;;4096:29;4128:59;4153:5;4160;4167:19;4128:24;:59::i;:::-;4281:23;;15137:66:84;15124:2;15120:15;;;15116:88;4281:23:32;;;15104:101:84;4096:91:32;;-1:-1:-1;4243:25:32;;15221:12:84;;4281:23:32;;;;;;;;;;;;4271:34;;;;;;4243:62;;4323:193;4366:12;4396:17;4431:5;4454:11;4483:19;4323:25;:193::i;:::-;4316:200;;;;;;;;;3231:1292;;;;;;;;:::o;17972:340::-;18098:7;18125:19;;18121:185;;18234:19;18252:1;18234:15;:19;:::i;:::-;18217:37;;;;;;:::i;:::-;18212:1;:42;;18174:31;18190:15;18174:31;;;;:::i;:::-;18169:1;:36;;18167:89;;;;:::i;:::-;18160:96;;;;18121:185;-1:-1:-1;18294:1:32;18287:8;;16247:577;16424:7;16492:21;16516:18;:24;;;16541:15;16516:41;;;;;;;:::i;:::-;;;;;16492:65;;;;16621:30;16654:107;16691:18;:31;;;16736:15;16654:23;:107::i;:::-;16621:140;-1:-1:-1;16779:38:32;16621:140;16779:13;:38;:::i;:::-;16772:45;16247:577;-1:-1:-1;;;;;16247:577:32:o;15286:621::-;15428:16;15460:22;15499:18;:35;;;15485:50;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15485:50:32;-1:-1:-1;15561:31:32;;15460:75;;-1:-1:-1;15596:1:32;;15558:34;;:1;:34;:::i;:::-;15557:40;;;;:::i;:::-;15545:5;15551:1;15545:8;;;;;;;;:::i;:::-;;;;;;;;;;:52;15631:1;15608:270;15646:18;:35;;;15634:47;;:9;:47;;;15608:270;;;15836:31;;15812:55;;:5;15818:13;15830:1;15818:9;:13;:::i;:::-;15812:20;;;;;;;;;;:::i;:::-;;;;;;;:55;;15793:5;15799:9;15793:16;;;;;;;;;;:::i;:::-;;;;;;;;;;:74;15683:11;;;;:::i;:::-;;;;15608:270;;;-1:-1:-1;15895:5:32;15286:621;-1:-1:-1;;15286:621:32:o;14113:932::-;14359:13;;14281:5;;;;;14421:571;14461:11;14448:24;;:10;:24;;;14421:571;;;14502:12;14517:6;14524:10;14517:18;;;;;;;;;;:::i;:::-;;;;;;;14502:33;;14612:4;14589:20;:27;14579:4;14555:21;:28;14554:63;14550:362;;14749:15;14734:30;;:11;:30;;;14730:168;;;14795:1;14788:8;;;;;;;;14730:168;14850:29;14864:15;14850:11;:29;:::i;:::-;14843:36;;;;;;;;14730:168;14964:17;;;;:::i;:::-;;;;14488:504;14474:12;;;;;:::i;:::-;;;;14421:571;;;-1:-1:-1;15009:29:32;15023:15;15009:11;:29;:::i;8829:1699::-;9088:13;;9038:16;;9066:19;9088:13;9161:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9161:25:32;;9111:75;;9196:45;9257:11;9244:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9244:25:32;;9196:73;;9350:8;9345:366;9368:11;9364:1;:15;;;9345:366;;;9507:19;9527:1;9507:22;;;;;;;;;;:::i;:::-;;;;;;;:43;;;9485:65;;:6;9492:1;9485:9;;;;;;;;;;:::i;:::-;;;;;;;:19;;;:65;9428:31;9460:1;9428:34;;;;;;;;;;:::i;:::-;;;;;;:122;;;;;;;;;;;9645:19;9665:1;9645:22;;;;;;;;;;:::i;:::-;;;;;;;:41;;;9623:63;;:6;9630:1;9623:9;;;;;;;;;;:::i;:::-;;;;;;;:19;;;:63;9568:29;9598:1;9568:32;;;;;;;;;;:::i;:::-;:118;;;;:32;;;;;;;;;;;:118;9381:3;;;;:::i;:::-;;;;9345:366;;;-1:-1:-1;9749:149:32;;;;;9721:25;;9749:32;:6;:32;;;;:149;;9795:5;;9814:31;;9859:29;;9749:149;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9749:149:32;;;;;;;;;;;;:::i;:::-;9721:177;;9909:30;9942:6;:37;;;9993:31;10038:29;9942:135;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9942:135:32;;;;;;;;;;;;:::i;:::-;9909:168;;10088:35;10140:11;10126:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10126:26:32;;10088:64;;10225:9;10220:266;10244:11;10240:1;:15;10220:266;;;10279:13;10293:1;10279:16;;;;;;;;:::i;:::-;;;;;;;10299:1;10279:21;10276:200;;;10343:1;10319:18;10338:1;10319:21;;;;;;;;:::i;:::-;;;;;;:25;;;;;10276:200;;;10445:13;10459:1;10445:16;;;;;;;;:::i;:::-;;;;;;;10420:8;10429:1;10420:11;;;;;;;;:::i;:::-;;;;;;;10434:7;10420:21;;;;:::i;:::-;10419:42;;;;:::i;:::-;10395:18;10414:1;10395:21;;;;;;;;:::i;:::-;;;;;;:66;;;;;10276:200;10257:3;;;;:::i;:::-;;;;10220:266;;;-1:-1:-1;10503:18:32;8829:1699;-1:-1:-1;;;;;;;;;8829:1699:32:o;8180:293::-;8364:6;8458:7;8422:18;:32;;;8397:57;;:22;:57;;;;:::i;:::-;8396:69;;;;:::i;6230:1489::-;6550:32;6584:24;6621:33;6671:23;:30;6657:45;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6657:45:32;;6621:81;;6712:31;6762:23;:30;6746:47;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6712:81:32;-1:-1:-1;6828:15:32;6804:14;6914:706;6953:6;:13;6941:9;:25;;;6914:706;;;7043:19;7063:9;7043:30;;;;;;;;;;:::i;:::-;;;;;;;:45;;;7013:75;;:6;7020:9;7013:17;;;;;;;;;;:::i;:::-;;;;;;;:27;;;:75;;;;:::i;:::-;7003:85;;:7;:85;;;6995:119;;;;-1:-1:-1;;;6995:119:32;;20261:2:84;6995:119:32;;;20243:21:84;20300:2;20280:18;;;20273:30;20339:23;20319:18;;;20312:51;20380:18;;6995:119:32;20233:171:84;6995:119:32;7129:21;7153:141;7198:19;7218:9;7198:30;;;;;;;;;;:::i;:::-;;;;;;;7246:23;7270:9;7246:34;;;;;;;;;;:::i;:::-;;;;;;;7153:27;:141::i;:::-;7129:165;;7366:243;7394:6;7401:9;7394:17;;;;;;;;;;:::i;:::-;;;;;;;:37;;;7449:14;7366:243;;7481:17;7516:20;7537:9;7516:31;;;;;;;;;;:::i;:::-;;;;;;;7565:19;7585:9;7565:30;;;;;;;;;;:::i;:::-;;;;;;;7366:10;:243::i;:::-;7310:16;7327:9;7310:27;;;;;;;;;;:::i;:::-;;;;;;7339:12;7352:9;7339:23;;;;;;;;;;:::i;:::-;;;;;;;;;;7309:300;;;;;-1:-1:-1;6968:11:32;;;;:::i;:::-;;;;6914:706;;;;7655:12;7644:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;7630:38;;7696:16;7678:34;;6610:1109;;;6230:1489;;;;;;;;:::o;11022:2698::-;11287:13;11302:28;11396:22;11421:35;11437:18;11421:15;:35::i;:::-;11494:13;;11550:46;;;11564:31;11550:46;;;;;;;;;11396:60;;-1:-1:-1;11494:13:32;;11466:18;;11550:46;;;;;;;;;;-1:-1:-1;11550:46:32;11518:78;;11607:25;11683:18;:34;;;11668:49;;:11;:49;;;;11647:127;;;;-1:-1:-1;;;11647:127:32;;21016:2:84;11647:127:32;;;20998:21:84;21055:2;21035:18;;;21028:30;21094:33;21074:18;;;21067:61;21145:18;;11647:127:32;20988:181:84;11647:127:32;11888:12;11883:937;11914:11;11906:19;;:5;:19;;;11883:937;;;11974:15;11958:6;11965:5;11958:13;;;;;;;;;;:::i;:::-;;;;;;;:31;;;11950:76;;;;-1:-1:-1;;;11950:76:32;;21729:2:84;11950:76:32;;;21711:21:84;;;21748:18;;;21741:30;21807:34;21787:18;;;21780:62;21859:18;;11950:76:32;21701:182:84;11950:76:32;12045:9;;;;12041:118;;12098:6;12105:9;12113:1;12105:5;:9;:::i;:::-;12098:17;;;;;;;;;;:::i;:::-;;;;;;;12082:33;;:6;12089:5;12082:13;;;;;;;;;;:::i;:::-;;;;;;;:33;;;12074:70;;;;-1:-1:-1;;;12074:70:32;;21376:2:84;12074:70:32;;;21358:21:84;21415:2;21395:18;;;21388:30;21454:26;21434:18;;;21427:54;21498:18;;12074:70:32;21348:174:84;12074:70:32;12236:28;12313:17;12332:6;12339:5;12332:13;;;;;;;;;;:::i;:::-;;;;;;;12302:44;;;;;;;;19190:25:84;;;19263:18;19251:31;19246:2;19231:18;;19224:59;19178:2;19163:18;;19145:144;12302:44:32;;;;;;;;;;;;;12292:55;;;;;;12267:94;;12236:125;;12376:16;12395:132;12432:20;12470;12508:5;12395:19;:132::i;:::-;12376:151;-1:-1:-1;1361:2:32;12596:25;;;;12592:218;;;12658:19;12645:32;;:10;:32;;;12641:111;;;12723:10;12701:32;;12641:111;12769:12;12782:10;12769:24;;;;;;;;;;:::i;:::-;;;;;;:26;;;;;;;;:::i;:::-;;;-1:-1:-1;12592:218:32;11936:884;;11927:7;;;;;:::i;:::-;;;;11883:937;;;;12887:21;12922:36;12961:103;13003:18;13035:19;12961:28;:103::i;:::-;12922:142;;13162:23;13144:360;13222:19;13203:38;;:15;:38;13144:360;;13333:1;13301:12;13314:15;13301:29;;;;;;;;:::i;:::-;;;;;;;:33;13297:197;;;13450:12;13463:15;13450:29;;;;;;;;:::i;:::-;;;;;;;13391:19;13411:15;13391:36;;;;;;;;:::i;:::-;;;;;;;:88;;;;:::i;:::-;13354:125;;;;:::i;:::-;;;13297:197;13255:17;;;;:::i;:::-;;;;13144:360;;;;13674:3;13646:18;:24;;;13630:13;:40;;;;:::i;:::-;13629:48;;;;:::i;:::-;13621:56;13701:12;;-1:-1:-1;11022:2698:32;;-1:-1:-1;;;;;;;;;;;11022:2698:32:o;17099:577::-;17279:16;17307:43;17380:23;:19;17402:1;17380:23;:::i;:::-;17353:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17353:60:32;;17307:106;;17429:7;17424:202;17447:19;17442:24;;:1;:24;;;17424:202;;17519:96;17564:18;17600:1;17519:96;;:27;:96::i;:::-;17487:26;17514:1;17487:29;;;;;;;;;;:::i;:::-;;;;;;;;;;:128;17468:3;;;;:::i;:::-;;;;17424:202;;;-1:-1:-1;17643:26:32;17099:577;-1:-1:-1;;;17099:577:32:o;14:196:84:-;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:594::-;264:5;317:3;310:4;302:6;298:17;294:27;284:2;;335:1;332;325:12;284:2;359:22;;:::i;:::-;403:3;426:6;465:3;459;451:6;447:16;444:25;441:2;;;482:1;479;472:12;441:2;504:1;514:266;528:4;525:1;522:11;514:266;;;601:3;588:17;618:30;642:5;618:30;:::i;:::-;661:18;;702:4;726:12;;;;758;;;;;548:1;541:9;514:266;;;-1:-1:-1;798:5:84;;274:535;-1:-1:-1;;;;;274:535:84:o;814:598::-;874:5;927:3;920:4;912:6;908:17;904:27;894:2;;945:1;942;935:12;894:2;969:22;;:::i;:::-;1013:3;1036:6;1075:3;1069;1061:6;1057:16;1054:25;1051:2;;;1092:1;1089;1082:12;1051:2;1114:1;1124:259;1138:4;1135:1;1132:11;1124:259;;;1204:3;1198:10;1221:30;1245:5;1221:30;:::i;:::-;1264:18;;1305:4;1329:12;;;;1361;;;;;1158:1;1151:9;1124:259;;1417:366;1479:8;1489:6;1543:3;1536:4;1528:6;1524:17;1520:27;1510:2;;1561:1;1558;1551:12;1510:2;-1:-1:-1;1584:20:84;;1627:18;1616:30;;1613:2;;;1659:1;1656;1649:12;1613:2;1696:4;1688:6;1684:17;1672:29;;1756:3;1749:4;1739:6;1736:1;1732:14;1724:6;1720:27;1716:38;1713:47;1710:2;;;1773:1;1770;1763:12;1710:2;1500:283;;;;;:::o;1788:166::-;1858:5;1903:3;1894:6;1889:3;1885:16;1881:26;1878:2;;;1920:1;1917;1910:12;1878:2;-1:-1:-1;1942:6:84;1868:86;-1:-1:-1;1868:86:84:o;1959:812::-;2023:5;2071:6;2059:9;2054:3;2050:19;2046:32;2043:2;;;2091:1;2088;2081:12;2043:2;2113:22;;:::i;:::-;2104:31;;2158:27;2175:9;2158:27;:::i;:::-;2151:5;2144:42;2218:36;2250:2;2239:9;2235:18;2218:36;:::i;:::-;2213:2;2206:5;2202:14;2195:60;2287:37;2320:2;2309:9;2305:18;2287:37;:::i;:::-;2282:2;2275:5;2271:14;2264:61;2357:37;2390:2;2379:9;2375:18;2357:37;:::i;:::-;2352:2;2345:5;2341:14;2334:61;2428:38;2461:3;2450:9;2446:19;2428:38;:::i;:::-;2422:3;2415:5;2411:15;2404:63;2500:38;2533:3;2522:9;2518:19;2500:38;:::i;:::-;2494:3;2487:5;2483:15;2476:63;2572:39;2606:3;2595:9;2591:19;2572:39;:::i;:::-;2566:3;2559:5;2555:15;2548:64;2645:49;2690:3;2684;2673:9;2669:19;2645:49;:::i;:::-;2639:3;2632:5;2628:15;2621:74;2759:3;2748:9;2744:19;2731:33;2722:6;2715:5;2711:18;2704:61;2033:738;;;;:::o;2776:134::-;2844:20;;2873:31;2844:20;2873:31;:::i;2915:138::-;2994:13;;3016:31;2994:13;3016:31;:::i;3058:132::-;3125:20;;3154:30;3125:20;3154:30;:::i;3195:136::-;3273:13;;3295:30;3273:13;3295:30;:::i;3336:130::-;3402:20;;3431:29;3402:20;3431:29;:::i;3471:134::-;3548:13;;3570:29;3548:13;3570:29;:::i;3610:509::-;3704:6;3712;3720;3773:2;3761:9;3752:7;3748:23;3744:32;3741:2;;;3789:1;3786;3779:12;3741:2;3812:29;3831:9;3812:29;:::i;:::-;3802:39;;3892:2;3881:9;3877:18;3864:32;3919:18;3911:6;3908:30;3905:2;;;3951:1;3948;3941:12;3905:2;3990:69;4051:7;4042:6;4031:9;4027:22;3990:69;:::i;:::-;3731:388;;4078:8;;-1:-1:-1;3964:95:84;;-1:-1:-1;;;;3731:388:84:o;4124:978::-;4238:6;4246;4254;4262;4270;4323:2;4311:9;4302:7;4298:23;4294:32;4291:2;;;4339:1;4336;4329:12;4291:2;4362:29;4381:9;4362:29;:::i;:::-;4352:39;;4442:2;4431:9;4427:18;4414:32;4465:18;4506:2;4498:6;4495:14;4492:2;;;4522:1;4519;4512:12;4492:2;4561:69;4622:7;4613:6;4602:9;4598:22;4561:69;:::i;:::-;4649:8;;-1:-1:-1;4535:95:84;-1:-1:-1;4737:2:84;4722:18;;4709:32;;-1:-1:-1;4753:16:84;;;4750:2;;;4782:1;4779;4772:12;4750:2;4820:8;4809:9;4805:24;4795:34;;4867:7;4860:4;4856:2;4852:13;4848:27;4838:2;;4889:1;4886;4879:12;4838:2;4929;4916:16;4955:2;4947:6;4944:14;4941:2;;;4971:1;4968;4961:12;4941:2;5016:7;5011:2;5002:6;4998:2;4994:15;4990:24;4987:37;4984:2;;;5037:1;5034;5027:12;4984:2;4281:821;;;;-1:-1:-1;4281:821:84;;-1:-1:-1;5068:2:84;5060:11;;5090:6;4281:821;-1:-1:-1;;;4281:821:84:o;5107:1826::-;5215:6;5246:2;5289;5277:9;5268:7;5264:23;5260:32;5257:2;;;5305:1;5302;5295:12;5257:2;5345:9;5332:23;5374:18;5415:2;5407:6;5404:14;5401:2;;;5431:1;5428;5421:12;5401:2;5469:6;5458:9;5454:22;5444:32;;5514:7;5507:4;5503:2;5499:13;5495:27;5485:2;;5536:1;5533;5526:12;5485:2;5572;5559:16;5595:69;5611:52;5660:2;5611:52;:::i;:::-;5595:69;:::i;:::-;5686:3;5710:2;5705:3;5698:15;5738:2;5733:3;5729:12;5722:19;;5769:2;5765;5761:11;5817:7;5812:2;5806;5803:1;5799:10;5795:2;5791:19;5787:28;5784:41;5781:2;;;5838:1;5835;5828:12;5781:2;5860:1;5870:1033;5884:2;5881:1;5878:9;5870:1033;;;5961:3;5948:17;5997:2;5984:11;5981:19;5978:2;;;6013:1;6010;6003:12;5978:2;6040:20;;6095:2;6087:11;;6083:25;-1:-1:-1;6073:2:84;;6122:1;6119;6112:12;6073:2;6170;6166;6162:11;6149:25;6200:69;6216:52;6265:2;6216:52;:::i;6200:69::-;6295:5;6327:2;6320:5;6313:17;6363:2;6356:5;6352:14;6343:23;;6400:2;6396;6392:11;6452:7;6447:2;6441;6438:1;6434:10;6430:2;6426:19;6422:28;6419:41;6416:2;;;6473:1;6470;6463:12;6416:2;6501:1;6490:12;;6515:283;6531:2;6526:3;6523:11;6515:283;;;6614:5;6601:19;6637:30;6661:5;6637:30;:::i;:::-;6684:20;;6553:1;6544:11;;;;;6730:14;;;;6770;;6515:283;;;-1:-1:-1;6811:18:84;;-1:-1:-1;;;6849:12:84;;;;6881;;;;5902:1;5895:9;5870:1033;;;-1:-1:-1;6922:5:84;;5226:1707;-1:-1:-1;;;;;;;;;5226:1707:84:o;6938:1735::-;7056:6;7087:2;7130;7118:9;7109:7;7105:23;7101:32;7098:2;;;7146:1;7143;7136:12;7098:2;7179:9;7173:16;7212:18;7204:6;7201:30;7198:2;;;7244:1;7241;7234:12;7198:2;7267:22;;7320:4;7312:13;;7308:27;-1:-1:-1;7298:2:84;;7349:1;7346;7339:12;7298:2;7378;7372:9;7401:69;7417:52;7466:2;7417:52;:::i;7401:69::-;7504:15;;;7535:12;;;;7567:11;;;7597:4;7628:11;;;7620:20;;7616:29;;7613:42;-1:-1:-1;7610:2:84;;;7668:1;7665;7658:12;7610:2;7690:1;7681:10;;7711:1;7721:922;7737:2;7732:3;7729:11;7721:922;;;7812:2;7806:3;7797:7;7793:17;7789:26;7786:2;;;7828:1;7825;7818:12;7786:2;7858:22;;:::i;:::-;7913:3;7907:10;7900:5;7893:25;7961:2;7956:3;7952:12;7946:19;7978:32;8002:7;7978:32;:::i;:::-;8030:14;;;8023:31;8077:2;8113:12;;;8107:19;8139:32;8107:19;8139:32;:::i;:::-;8191:14;;;8184:31;8238:2;8274:12;;;8268:19;8300:32;8268:19;8300:32;:::i;:::-;8352:14;;;8345:31;8399:3;8436:12;;;8430:19;8462:32;8430:19;8462:32;:::i;:::-;8514:14;;;8507:31;8551:18;;8589:12;;;;8621;;;;7759:1;7750:11;7721:922;;;-1:-1:-1;8662:5:84;;7067:1606;-1:-1:-1;;;;;;;;;7067:1606:84:o;8678:1938::-;8809:6;8840:2;8883;8871:9;8862:7;8858:23;8854:32;8851:2;;;8899:1;8896;8889:12;8851:2;8932:9;8926:16;8965:18;8957:6;8954:30;8951:2;;;8997:1;8994;8987:12;8951:2;9020:22;;9073:4;9065:13;;9061:27;-1:-1:-1;9051:2:84;;9102:1;9099;9092:12;9051:2;9131;9125:9;9154:69;9170:52;9219:2;9170:52;:::i;9154:69::-;9257:15;;;9288:12;;;;9320:11;;;9350:6;9383:11;;;9375:20;;9371:29;;9368:42;-1:-1:-1;9365:2:84;;;9423:1;9420;9413:12;9365:2;9445:1;9436:10;;9466:1;9476:1110;9492:2;9487:3;9484:11;9476:1110;;;9567:2;9561:3;9552:7;9548:17;9544:26;9541:2;;;9583:1;9580;9573:12;9541:2;9613:22;;:::i;:::-;9662:32;9690:3;9662:32;:::i;:::-;9655:5;9648:47;9731:41;9768:2;9763:3;9759:12;9731:41;:::i;:::-;9726:2;9719:5;9715:14;9708:65;9796:2;9834:42;9872:2;9867:3;9863:12;9834:42;:::i;:::-;9818:14;;;9811:66;9900:2;9938:42;9967:12;;;9938:42;:::i;:::-;9922:14;;;9915:66;10004:3;10043:42;10072:12;;;10043:42;:::i;:::-;10027:14;;;10020:66;10109:3;10148:42;10177:12;;;10148:42;:::i;:::-;10132:14;;;10125:66;10214:3;10253:43;10283:12;;;10253:43;:::i;:::-;10237:14;;;10230:67;10321:3;10361:58;10411:7;10396:13;;;10361:58;:::i;:::-;10344:15;;;10337:83;10475:3;10466:13;;10460:20;10451:6;10440:18;;10433:48;10494:18;;10532:12;;;;10564;;;;9514:1;9505:11;9476:1110;;10621:901;10716:6;10747:2;10790;10778:9;10769:7;10765:23;10761:32;10758:2;;;10806:1;10803;10796:12;10758:2;10839:9;10833:16;10872:18;10864:6;10861:30;10858:2;;;10904:1;10901;10894:12;10858:2;10927:22;;10980:4;10972:13;;10968:27;-1:-1:-1;10958:2:84;;11009:1;11006;10999:12;10958:2;11038;11032:9;11061:69;11077:52;11126:2;11077:52;:::i;11061:69::-;11152:3;11176:2;11171:3;11164:15;11204:2;11199:3;11195:12;11188:19;;11235:2;11231;11227:11;11283:7;11278:2;11272;11269:1;11265:10;11261:2;11257:19;11253:28;11250:41;11247:2;;;11304:1;11301;11294:12;11247:2;11326:1;11317:10;;11336:156;11350:2;11347:1;11344:9;11336:156;;;11407:10;;11395:23;;11368:1;11361:9;;;;;11438:12;;;;11470;;11336:156;;;-1:-1:-1;11511:5:84;10727:795;-1:-1:-1;;;;;;;10727:795:84:o;11527:260::-;11624:6;11677:3;11665:9;11656:7;11652:23;11648:33;11645:2;;;11694:1;11691;11684:12;11645:2;11717:64;11773:7;11762:9;11717:64;:::i;11792:329::-;11898:6;11906;11959:3;11947:9;11938:7;11934:23;11930:33;11927:2;;;11976:1;11973;11966:12;11927:2;11999:64;12055:7;12044:9;11999:64;:::i;:::-;11989:74;12110:3;12095:19;;;;12082:33;;-1:-1:-1;;;11917:204:84:o;12126:249::-;12221:6;12274:3;12262:9;12253:7;12249:23;12245:33;12242:2;;;12291:1;12288;12281:12;12242:2;12314:55;12361:7;12350:9;12314:55;:::i;12380:318::-;12484:6;12492;12545:3;12533:9;12524:7;12520:23;12516:33;12513:2;;;12562:1;12559;12552:12;12513:2;12585:55;12632:7;12621:9;12585:55;:::i;12703:1047::-;12805:6;12813;12821;12874:2;12862:9;12853:7;12849:23;12845:32;12842:2;;;12890:1;12887;12880:12;12842:2;12926:9;12913:23;12903:33;;12955:2;13004;12993:9;12989:18;12976:32;12966:42;;13059:2;13048:9;13044:18;13031:32;13086:18;13078:6;13075:30;13072:2;;;13118:1;13115;13108:12;13072:2;13141:22;;13194:4;13186:13;;13182:27;-1:-1:-1;13172:2:84;;13223:1;13220;13213:12;13172:2;13259;13246:16;13282:69;13298:52;13347:2;13298:52;:::i;13282:69::-;13373:3;13397:2;13392:3;13385:15;13425:2;13420:3;13416:12;13409:19;;13456:2;13452;13448:11;13504:7;13499:2;13493;13490:1;13486:10;13482:2;13478:19;13474:28;13471:41;13468:2;;;13525:1;13522;13515:12;13468:2;13547:1;13538:10;;13557:163;13571:2;13568:1;13565:9;13557:163;;;13628:17;;13616:30;;13589:1;13582:9;;;;;13666:12;;;;13698;;13557:163;;;13561:3;13739:5;13729:15;;;;;;;12832:918;;;;;:::o;13755:311::-;13821:6;13829;13882:2;13870:9;13861:7;13857:23;13853:32;13850:2;;;13898:1;13895;13888:12;13850:2;13937:9;13924:23;13956:29;13979:5;13956:29;:::i;:::-;14004:5;14056:2;14041:18;;;;14028:32;;-1:-1:-1;;;13840:226:84:o;14071:435::-;14124:3;14162:5;14156:12;14189:6;14184:3;14177:19;14215:4;14244:2;14239:3;14235:12;14228:19;;14281:2;14274:5;14270:14;14302:1;14312:169;14326:6;14323:1;14320:13;14312:169;;;14387:13;;14375:26;;14421:12;;;;14456:15;;;;14348:1;14341:9;14312:169;;;-1:-1:-1;14497:3:84;;14132:374;-1:-1:-1;;;;;14132:374:84:o;14511:459::-;14563:3;14601:5;14595:12;14628:6;14623:3;14616:19;14654:4;14683:2;14678:3;14674:12;14667:19;;14720:2;14713:5;14709:14;14741:1;14751:194;14765:6;14762:1;14759:13;14751:194;;;14830:13;;14845:18;14826:38;14814:51;;14885:12;;;;14920:15;;;;14787:1;14780:9;14751:194;;15244:579;15537:42;15529:6;15525:55;15514:9;15507:74;15617:2;15612;15601:9;15597:18;15590:30;15488:4;15643:55;15694:2;15683:9;15679:18;15671:6;15643:55;:::i;:::-;15746:9;15738:6;15734:22;15729:2;15718:9;15714:18;15707:50;15774:43;15810:6;15802;15774:43;:::i;15828:903::-;16020:4;16049:2;16089;16078:9;16074:18;16119:2;16108:9;16101:21;16142:6;16177;16171:13;16208:6;16200;16193:22;16246:2;16235:9;16231:18;16224:25;;16308:2;16298:6;16295:1;16291:14;16280:9;16276:30;16272:39;16258:53;;16346:2;16338:6;16334:15;16367:1;16377:325;16391:6;16388:1;16385:13;16377:325;;;16480:66;16468:9;16460:6;16456:22;16452:95;16447:3;16440:108;16571:51;16615:6;16606;16600:13;16571:51;:::i;:::-;16561:61;-1:-1:-1;16680:12:84;;;;16645:15;;;;16413:1;16406:9;16377:325;;;-1:-1:-1;16719:6:84;;16029:702;-1:-1:-1;;;;;;;16029:702:84:o;16736:261::-;16915:2;16904:9;16897:21;16878:4;16935:56;16987:2;16976:9;16972:18;16964:6;16935:56;:::i;17002:849::-;17227:2;17216:9;17209:21;17190:4;17253:56;17305:2;17294:9;17290:18;17282:6;17253:56;:::i;:::-;17328:2;17378:9;17370:6;17366:22;17361:2;17350:9;17346:18;17339:50;17418:6;17412:13;17449:6;17441;17434:22;17474:1;17484:137;17498:6;17495:1;17492:13;17484:137;;;17590:14;;;17586:23;;17580:30;17559:14;;;17555:23;;17548:63;17513:10;;17484:137;;;17639:6;17636:1;17633:13;17630:2;;;17706:1;17701:2;17692:6;17684;17680:19;17676:28;17669:39;17630:2;-1:-1:-1;17767:2:84;17755:15;-1:-1:-1;;17751:88:84;17739:101;;;;17735:110;;17199:652;-1:-1:-1;;;;17199:652:84:o;17856:693::-;18035:2;18087:21;;;18060:18;;;18143:22;;;18006:4;;18222:6;18196:2;18181:18;;18006:4;18256:267;18270:6;18267:1;18264:13;18256:267;;;18345:6;18332:20;18365:30;18389:5;18365:30;:::i;:::-;18431:10;18420:22;18408:35;;18498:15;;;;18463:12;;;;18292:1;18285:9;18256:267;;;-1:-1:-1;18540:3:84;18015:534;-1:-1:-1;;;;;;18015:534:84:o;18554:459::-;18807:2;18796:9;18789:21;18770:4;18833:55;18884:2;18873:9;18869:18;18861:6;18833:55;:::i;:::-;18936:9;18928:6;18924:22;18919:2;18908:9;18904:18;18897:50;18964:43;19000:6;18992;18964:43;:::i;22464:255::-;22536:2;22530:9;22578:6;22566:19;;22615:18;22600:34;;22636:22;;;22597:62;22594:2;;;22662:18;;:::i;:::-;22698:2;22691:22;22510:209;:::o;22724:253::-;22796:2;22790:9;22838:4;22826:17;;22873:18;22858:34;;22894:22;;;22855:62;22852:2;;;22920:18;;:::i;22982:252::-;23054:2;23048:9;23096:3;23084:16;;23130:18;23115:34;;23151:22;;;23112:62;23109:2;;;23177:18;;:::i;23239:334::-;23310:2;23304:9;23366:2;23356:13;;-1:-1:-1;;23352:86:84;23340:99;;23469:18;23454:34;;23490:22;;;23451:62;23448:2;;;23516:18;;:::i;:::-;23552:2;23545:22;23284:289;;-1:-1:-1;23284:289:84:o;23578:192::-;23647:4;23680:18;23672:6;23669:30;23666:2;;;23702:18;;:::i;:::-;-1:-1:-1;23747:1:84;23743:14;23759:4;23739:25;;23656:114::o;23775:128::-;23815:3;23846:1;23842:6;23839:1;23836:13;23833:2;;;23852:18;;:::i;:::-;-1:-1:-1;23888:9:84;;23823:80::o;23908:236::-;23947:3;23975:18;24020:2;24017:1;24013:10;24050:2;24047:1;24043:10;24081:3;24077:2;24073:12;24068:3;24065:21;24062:2;;;24089:18;;:::i;:::-;24125:13;;23955:189;-1:-1:-1;;;;23955:189:84:o;24149:204::-;24187:3;24223:4;24220:1;24216:12;24255:4;24252:1;24248:12;24290:3;24284:4;24280:14;24275:3;24272:23;24269:2;;;24298:18;;:::i;:::-;24334:13;;24195:158;-1:-1:-1;;;24195:158:84:o;24358:274::-;24398:1;24424;24414:2;;-1:-1:-1;;;24456:1:84;24449:88;24560:4;24557:1;24550:15;24588:4;24585:1;24578:15;24414:2;-1:-1:-1;24617:9:84;;24404:228::o;24637:482::-;24726:1;24769:5;24726:1;24783:330;24804:7;24794:8;24791:21;24783:330;;;24923:4;-1:-1:-1;;24851:77:84;24845:4;24842:87;24839:2;;;24932:18;;:::i;:::-;24982:7;24972:8;24968:22;24965:2;;;25002:16;;;;24965:2;25081:22;;;;25041:15;;;;24783:330;;;24787:3;24701:418;;;;;:::o;25124:140::-;25182:5;25211:47;25252:4;25242:8;25238:19;25232:4;25318:5;25348:8;25338:2;;-1:-1:-1;25389:1:84;25403:5;;25338:2;25437:4;25427:2;;-1:-1:-1;25474:1:84;25488:5;;25427:2;25519:4;25537:1;25532:59;;;;25605:1;25600:130;;;;25512:218;;25532:59;25562:1;25553:10;;25576:5;;;25600:130;25637:3;25627:8;25624:17;25621:2;;;25644:18;;:::i;:::-;-1:-1:-1;;25700:1:84;25686:16;;25715:5;;25512:218;;25814:2;25804:8;25801:16;25795:3;25789:4;25786:13;25782:36;25776:2;25766:8;25763:16;25758:2;25752:4;25749:12;25745:35;25742:77;25739:2;;;-1:-1:-1;25851:19:84;;;25883:5;;25739:2;25930:34;25955:8;25949:4;25930:34;:::i;:::-;26060:6;-1:-1:-1;;25988:79:84;25979:7;25976:92;25973:2;;;26071:18;;:::i;:::-;26109:20;;25328:807;-1:-1:-1;;;25328:807:84:o;26140:228::-;26180:7;26306:1;-1:-1:-1;;26234:74:84;26231:1;26228:81;26223:1;26216:9;26209:17;26205:105;26202:2;;;26313:18;;:::i;:::-;-1:-1:-1;26353:9:84;;26192:176::o;26373:125::-;26413:4;26441:1;26438;26435:8;26432:2;;;26446:18;;:::i;:::-;-1:-1:-1;26483:9:84;;26422:76::o;26503:221::-;26542:4;26571:10;26631;;;;26601;;26653:12;;;26650:2;;;26668:18;;:::i;:::-;26705:13;;26551:173;-1:-1:-1;;;26551:173:84:o;26729:195::-;26767:4;26804;26801:1;26797:12;26836:4;26833:1;26829:12;26861:3;26856;26853:12;26850:2;;;26868:18;;:::i;:::-;26905:13;;;26776:148;-1:-1:-1;;;26776:148:84:o;26929:195::-;26968:3;-1:-1:-1;;26992:5:84;26989:77;26986:2;;;27069:18;;:::i;:::-;-1:-1:-1;27116:1:84;27105:13;;26976:148::o;27129:201::-;27167:3;27195:10;27240:2;27233:5;27229:14;27267:2;27258:7;27255:15;27252:2;;;27273:18;;:::i;:::-;27322:1;27309:15;;27175:155;-1:-1:-1;;;27175:155:84:o;27335:175::-;27372:3;27416:4;27409:5;27405:16;27445:4;27436:7;27433:17;27430:2;;;27453:18;;:::i;:::-;27502:1;27489:15;;27380:130;-1:-1:-1;;27380:130:84:o;27515:184::-;-1:-1:-1;;;27564:1:84;27557:88;27664:4;27661:1;27654:15;27688:4;27685:1;27678:15;27704:184;-1:-1:-1;;;27753:1:84;27746:88;27853:4;27850:1;27843:15;27877:4;27874:1;27867:15;27893:184;-1:-1:-1;;;27942:1:84;27935:88;28042:4;28039:1;28032:15;28066:4;28063:1;28056:15;28082:140;28168:28;28161:5;28157:40;28150:5;28147:51;28137:2;;28212:1;28209;28202:12;28137:2;28127:95;:::o;28227:121::-;28312:10;28305:5;28301:22;28294:5;28291:33;28281:2;;28338:1;28335;28328:12;28353:129;28438:18;28431:5;28427:30;28420:5;28417:41;28407:2;;28472:1;28469;28462:12;28487:114;28571:4;28564:5;28560:16;28553:5;28550:27;28540:2;;28591:1;28588;28581:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1813000",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "TIERS_LENGTH()": "292",
                "calculate(address,uint32[],bytes)": "infinite",
                "calculateNumberOfUserPicks((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)": "infinite",
                "calculatePrizeTierFraction((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)": "infinite",
                "calculateTierIndex(uint256,uint256,uint256[])": "infinite",
                "createBitMasks((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "infinite",
                "drawBuffer()": "infinite",
                "getDrawBuffer()": "infinite",
                "getNormalizedBalancesForDrawIds(address,uint32[])": "infinite",
                "getPrizeDistributionSource()": "infinite",
                "numberOfPrizesForIndex(uint8,uint256)": "infinite",
                "prizeDistributionSource()": "infinite",
                "ticket()": "infinite"
              }
            },
            "methodIdentifiers": {
              "TIERS_LENGTH()": "f8d0ca4c",
              "calculate(address,uint32[],bytes)": "aaca392e",
              "calculateNumberOfUserPicks((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)": "9d34ee24",
              "calculatePrizeTierFraction((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)": "3b5564f9",
              "calculateTierIndex(uint256,uint256,uint256[])": "6d4bfa6e",
              "createBitMasks((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "67306cf2",
              "drawBuffer()": "ce343bb6",
              "getDrawBuffer()": "4019f2d6",
              "getNormalizedBalancesForDrawIds(address,uint32[])": "8045fbcf",
              "getPrizeDistributionSource()": "740e61a3",
              "numberOfPrizesForIndex(uint8,uint256)": "094a2491",
              "prizeDistributionSource()": "bcc18abc",
              "ticket()": "6cc25db7"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_ticket\",\"type\":\"address\"},{\"internalType\":\"contract IDrawBuffer\",\"name\":\"_drawBuffer\",\"type\":\"address\"},{\"internalType\":\"contract IPrizeDistributionSource\",\"name\":\"_prizeDistributionSource\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IDrawBuffer\",\"name\":\"drawBuffer\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IPrizeDistributionSource\",\"name\":\"prizeDistributionSource\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract PrizeDistributor\",\"name\":\"prizeDistributor\",\"type\":\"address\"}],\"name\":\"PrizeDistributorSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"TIERS_LENGTH\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"},{\"internalType\":\"bytes\",\"name\":\"_pickIndicesForDraws\",\"type\":\"bytes\"}],\"name\":\"calculate\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"_prizeDistribution\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"_normalizedUserBalance\",\"type\":\"uint256\"}],\"name\":\"calculateNumberOfUserPicks\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"_prizeDistribution\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"_prizeTierIndex\",\"type\":\"uint256\"}],\"name\":\"calculatePrizeTierFraction\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_randomNumberThisPick\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint256[]\",\"name\":\"_masks\",\"type\":\"uint256[]\"}],\"name\":\"calculateTierIndex\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionSource.PrizeDistribution\",\"name\":\"_prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"createBitMasks\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"drawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getNormalizedBalancesForDrawIds\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeDistributionSource\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionSource\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"_bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"_prizeTierIndex\",\"type\":\"uint256\"}],\"name\":\"numberOfPrizesForIndex\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"prizeDistributionSource\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionSource\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ticket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"calculate(address,uint32[],bytes)\":{\"params\":{\"_drawIds\":\"drawId array for which to calculate prize amounts for.\",\"_pickIndicesForDraws\":\"The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\",\"_user\":\"User for which to calculate prize amount.\"},\"returns\":{\"_0\":\"List of awardable prize amounts ordered by drawId.\"}},\"calculatePrizeTierFraction((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)\":{\"params\":{\"_prizeDistribution\":\"prizeDistribution struct for Draw\",\"_prizeTierIndex\":\"Index of the prize tiers array to calculate\"},\"returns\":{\"_0\":\"returns the fraction of the total prize\"}},\"getDrawBuffer()\":{\"returns\":{\"_0\":\"IDrawBuffer\"}},\"getNormalizedBalancesForDrawIds(address,uint32[])\":{\"params\":{\"_drawIds\":\"The drawIds to consider\",\"_user\":\"The users address\"},\"returns\":{\"_0\":\"Array of balances\"}},\"getPrizeDistributionSource()\":{\"returns\":{\"_0\":\"IPrizeDistributionSource\"}}},\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address,address)\":{\"notice\":\"Emitted when the contract is initialized\"},\"PrizeDistributorSet(address)\":{\"notice\":\"Emitted when the prizeDistributor is set/updated\"}},\"kind\":\"user\",\"methods\":{\"TIERS_LENGTH()\":{\"notice\":\"The tiers array length\"},\"calculate(address,uint32[],bytes)\":{\"notice\":\"Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\"},\"calculatePrizeTierFraction((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)\":{\"notice\":\"Calculates the expected prize fraction per prizeDistribution and prizeTierIndex\"},\"drawBuffer()\":{\"notice\":\"DrawBuffer address\"},\"getDrawBuffer()\":{\"notice\":\"Read global DrawBuffer variable.\"},\"getNormalizedBalancesForDrawIds(address,uint32[])\":{\"notice\":\"Returns a users balances expressed as a fraction of the total supply over time.\"},\"getPrizeDistributionSource()\":{\"notice\":\"Read global prizeDistributionSource variable.\"},\"prizeDistributionSource()\":{\"notice\":\"The source in which the history of draw settings are stored as ring buffer.\"},\"ticket()\":{\"notice\":\"Ticket associated with DrawCalculator\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/DrawCalculatorV2Harness.sol\":\"DrawCalculatorV2Harness\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Random Number Generator Interface\\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\n */\\ninterface RNGInterface {\\n  /**\\n   * @notice Emitted when a new request for a random number has been submitted\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param sender The indexed address of the sender of the request\\n   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /**\\n   * @notice Emitted when an existing request for a random number has been completed\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param randomNumber The random number produced by the 3rd-party service\\n   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /**\\n   * @notice Gets the last request id used by the RNG service\\n   * @return requestId The last request id used in the last request\\n   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /**\\n   * @notice Gets the Fee for making a Request against an RNG service\\n   * @return feeToken The address of the token that is used to pay fees\\n   * @return requestFee The fee required to be paid to make a request\\n   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /**\\n   * @notice Sends a request for a random number to the 3rd-party service\\n   * @dev Some services will complete the request immediately, others may have a time-delay\\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n   * @return requestId The ID of the request used to get the results of the RNG service\\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /**\\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\\n   * @dev For time-delayed requests, this function is used to check/confirm completion\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\\n   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /**\\n   * @notice Gets the random number produced by the 3rd-party service\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return randomNum The random number\\n   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"},\"contracts/DrawCalculatorV2.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./interfaces/ITicket.sol\\\";\\nimport \\\"./interfaces/IDrawBuffer.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionSource.sol\\\";\\nimport \\\"./interfaces/IDrawBeacon.sol\\\";\\n\\nimport \\\"./PrizeDistributor.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 DrawCalculatorV2\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawCalculator calculates a user's prize by matching a winning random number against\\n            their picks. A users picks are generated deterministically based on their address and balance\\n            of tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc...\\n            A user with a higher average weighted balance (during each draw period) will be given a large number of\\n            picks to choose from, and thus a higher chance to match the winning numbers.\\n*/\\ncontract DrawCalculatorV2 {\\n    /* ============ Variables ============ */\\n\\n    /// @notice DrawBuffer address\\n    IDrawBuffer public immutable drawBuffer;\\n\\n    /// @notice Ticket associated with DrawCalculator\\n    ITicket public immutable ticket;\\n\\n    /// @notice The source in which the history of draw settings are stored as ring buffer.\\n    IPrizeDistributionSource public immutable prizeDistributionSource;\\n\\n    /// @notice The tiers array length\\n    uint8 public constant TIERS_LENGTH = 16;\\n\\n    /* ============ Events ============ */\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionSource indexed prizeDistributionSource\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for DrawCalculator\\n     * @param _ticket Ticket associated with this DrawCalculator\\n     * @param _drawBuffer The address of the draw buffer to push draws to\\n     * @param _prizeDistributionSource PrizeDistributionSource address\\n    */\\n    constructor(\\n        ITicket _ticket,\\n        IDrawBuffer _drawBuffer,\\n        IPrizeDistributionSource _prizeDistributionSource\\n    ) {\\n        require(address(_ticket) != address(0), \\\"DrawCalc/ticket-not-zero\\\");\\n        require(address(_prizeDistributionSource) != address(0), \\\"DrawCalc/pdb-not-zero\\\");\\n        require(address(_drawBuffer) != address(0), \\\"DrawCalc/dh-not-zero\\\");\\n\\n        ticket = _ticket;\\n        drawBuffer = _drawBuffer;\\n        prizeDistributionSource = _prizeDistributionSource;\\n\\n        emit Deployed(_ticket, _drawBuffer, _prizeDistributionSource);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param _user User for which to calculate prize amount.\\n     * @param _drawIds drawId array for which to calculate prize amounts for.\\n     * @param _pickIndicesForDraws The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n    */\\n    function calculate(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _pickIndicesForDraws\\n    ) external view returns (uint256[] memory, bytes memory) {\\n        uint64[][] memory pickIndices = abi.decode(_pickIndicesForDraws, (uint64 [][]));\\n        require(pickIndices.length == _drawIds.length, \\\"DrawCalc/invalid-pick-indices-length\\\");\\n\\n        // READ list of IDrawBeacon.Draw using the drawIds from drawBuffer\\n        IDrawBeacon.Draw[] memory draws = drawBuffer.getDraws(_drawIds);\\n\\n        // READ list of IPrizeDistributionSource.PrizeDistribution using the drawIds\\n        IPrizeDistributionSource.PrizeDistribution[] memory _prizeDistributions = prizeDistributionSource\\n            .getPrizeDistributions(_drawIds);\\n\\n        // The userBalances are fractions representing their portion of the liquidity for a draw.\\n        uint256[] memory userBalances = _getNormalizedBalancesAt(_user, draws, _prizeDistributions);\\n\\n        // The users address is hashed once.\\n        bytes32 _userRandomNumber = keccak256(abi.encodePacked(_user));\\n\\n        return _calculatePrizesAwardable(\\n                userBalances,\\n                _userRandomNumber,\\n                draws,\\n                pickIndices,\\n                _prizeDistributions\\n            );\\n    }\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n    */\\n    function getDrawBuffer() external view returns (IDrawBuffer) {\\n        return drawBuffer;\\n    }\\n\\n    /**\\n     * @notice Read global prizeDistributionSource variable.\\n     * @return IPrizeDistributionSource\\n    */\\n    function getPrizeDistributionSource()\\n        external\\n        view\\n        returns (IPrizeDistributionSource)\\n    {\\n        return prizeDistributionSource;\\n    }\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param _user The users address\\n     * @param _drawIds The drawIds to consider\\n     * @return Array of balances\\n    */\\n    function getNormalizedBalancesForDrawIds(address _user, uint32[] calldata _drawIds)\\n        external\\n        view\\n        returns (uint256[] memory)\\n    {\\n        IDrawBeacon.Draw[] memory _draws = drawBuffer.getDraws(_drawIds);\\n        IPrizeDistributionSource.PrizeDistribution[] memory _prizeDistributions = prizeDistributionSource\\n            .getPrizeDistributions(_drawIds);\\n\\n        return _getNormalizedBalancesAt(_user, _draws, _prizeDistributions);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates the prizes awardable for each Draw passed.\\n     * @param _normalizedUserBalances Fractions representing the user's portion of the liquidity for each draw.\\n     * @param _userRandomNumber       Random number of the user to consider over draws\\n     * @param _draws                  List of Draws\\n     * @param _pickIndicesForDraws    Pick indices for each Draw\\n     * @param _prizeDistributions     PrizeDistribution for each Draw\\n\\n     */\\n    function _calculatePrizesAwardable(\\n        uint256[] memory _normalizedUserBalances,\\n        bytes32 _userRandomNumber,\\n        IDrawBeacon.Draw[] memory _draws,\\n        uint64[][] memory _pickIndicesForDraws,\\n        IPrizeDistributionSource.PrizeDistribution[] memory _prizeDistributions\\n    ) internal view returns (uint256[] memory prizesAwardable, bytes memory prizeCounts) {\\n\\n        uint256[] memory _prizesAwardable = new uint256[](_normalizedUserBalances.length);\\n        uint256[][] memory _prizeCounts = new uint256[][](_normalizedUserBalances.length);\\n\\n        uint64 timeNow = uint64(block.timestamp);\\n\\n        // calculate prizes awardable for each Draw passed\\n        for (uint32 drawIndex = 0; drawIndex < _draws.length; drawIndex++) {\\n            require(timeNow < _draws[drawIndex].timestamp + _prizeDistributions[drawIndex].expiryDuration, \\\"DrawCalc/draw-expired\\\");\\n\\n            uint64 totalUserPicks = _calculateNumberOfUserPicks(\\n                _prizeDistributions[drawIndex],\\n                _normalizedUserBalances[drawIndex]\\n            );\\n\\n            (_prizesAwardable[drawIndex], _prizeCounts[drawIndex]) = _calculate(\\n                _draws[drawIndex].winningRandomNumber,\\n                totalUserPicks,\\n                _userRandomNumber,\\n                _pickIndicesForDraws[drawIndex],\\n                _prizeDistributions[drawIndex]\\n            );\\n        }\\n\\n        prizeCounts = abi.encode(_prizeCounts);\\n        prizesAwardable = _prizesAwardable;\\n    }\\n\\n    /**\\n     * @notice Calculates the number of picks a user gets for a Draw, considering the normalized user balance and the PrizeDistribution.\\n     * @dev Divided by 1e18 since the normalized user balance is stored as a fixed point 18 number\\n     * @param _prizeDistribution The PrizeDistribution to consider\\n     * @param _normalizedUserBalance The normalized user balances to consider\\n     * @return The number of picks a user gets for a Draw\\n     */\\n    function _calculateNumberOfUserPicks(\\n        IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution,\\n        uint256 _normalizedUserBalance\\n    ) internal pure returns (uint64) {\\n        return uint64((_normalizedUserBalance * _prizeDistribution.numberOfPicks) / 1 ether);\\n    }\\n\\n    /**\\n     * @notice Calculates the normalized balance of a user against the total supply for timestamps\\n     * @param _user The user to consider\\n     * @param _draws The draws we are looking at\\n     * @param _prizeDistributions The prize tiers to consider (needed for draw timestamp offsets)\\n     * @return An array of normalized balances\\n     */\\n    function _getNormalizedBalancesAt(\\n        address _user,\\n        IDrawBeacon.Draw[] memory _draws,\\n        IPrizeDistributionSource.PrizeDistribution[] memory _prizeDistributions\\n    ) internal view returns (uint256[] memory) {\\n        uint256 drawsLength = _draws.length;\\n        uint64[] memory _timestampsWithStartCutoffTimes = new uint64[](drawsLength);\\n        uint64[] memory _timestampsWithEndCutoffTimes = new uint64[](drawsLength);\\n\\n        // generate timestamps with draw cutoff offsets included\\n        for (uint32 i = 0; i < drawsLength; i++) {\\n            unchecked {\\n                _timestampsWithStartCutoffTimes[i] =\\n                    _draws[i].timestamp - _prizeDistributions[i].startTimestampOffset;\\n                _timestampsWithEndCutoffTimes[i] =\\n                    _draws[i].timestamp - _prizeDistributions[i].endTimestampOffset;\\n            }\\n        }\\n\\n        uint256[] memory balances = ticket.getAverageBalancesBetween(\\n            _user,\\n            _timestampsWithStartCutoffTimes,\\n            _timestampsWithEndCutoffTimes\\n        );\\n\\n        uint256[] memory totalSupplies = ticket.getAverageTotalSuppliesBetween(\\n            _timestampsWithStartCutoffTimes,\\n            _timestampsWithEndCutoffTimes\\n        );\\n\\n        uint256[] memory normalizedBalances = new uint256[](drawsLength);\\n\\n        // divide balances by total supplies (normalize)\\n        for (uint256 i = 0; i < drawsLength; i++) {\\n            if(totalSupplies[i] == 0){\\n                normalizedBalances[i] = 0;\\n            }\\n            else {\\n                normalizedBalances[i] = (balances[i] * 1 ether) / totalSupplies[i];\\n            }\\n        }\\n\\n        return normalizedBalances;\\n    }\\n\\n    /**\\n     * @notice Calculates the prize amount for a PrizeDistribution over given picks\\n     * @param _winningRandomNumber Draw's winningRandomNumber\\n     * @param _totalUserPicks      number of picks the user gets for the Draw\\n     * @param _userRandomNumber    users randomNumber for that draw\\n     * @param _picks               users picks for that draw\\n     * @param _prizeDistribution   PrizeDistribution for that draw\\n     * @return prize (if any), prizeCounts (if any)\\n     */\\n    function _calculate(\\n        uint256 _winningRandomNumber,\\n        uint256 _totalUserPicks,\\n        bytes32 _userRandomNumber,\\n        uint64[] memory _picks,\\n        IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution\\n    ) internal pure returns (uint256 prize, uint256[] memory prizeCounts) {\\n\\n        // create bitmasks for the PrizeDistribution\\n        uint256[] memory masks = _createBitMasks(_prizeDistribution);\\n        uint32 picksLength = uint32(_picks.length);\\n        uint256[] memory _prizeCounts = new uint256[](_prizeDistribution.tiers.length);\\n\\n        uint8 maxWinningTierIndex = 0;\\n\\n        require(\\n            picksLength <= _prizeDistribution.maxPicksPerUser,\\n            \\\"DrawCalc/exceeds-max-user-picks\\\"\\n        );\\n\\n        // for each pick, find number of matching numbers and calculate prize distributions index\\n        for (uint32 index = 0; index < picksLength; index++) {\\n            require(_picks[index] < _totalUserPicks, \\\"DrawCalc/insufficient-user-picks\\\");\\n\\n            if (index > 0) {\\n                require(_picks[index] > _picks[index - 1], \\\"DrawCalc/picks-ascending\\\");\\n            }\\n\\n            // hash the user random number with the pick value\\n            uint256 randomNumberThisPick = uint256(\\n                keccak256(abi.encode(_userRandomNumber, _picks[index]))\\n            );\\n\\n            uint8 tiersIndex = _calculateTierIndex(\\n                randomNumberThisPick,\\n                _winningRandomNumber,\\n                masks\\n            );\\n\\n            // there is prize for this tier index\\n            if (tiersIndex < TIERS_LENGTH) {\\n                if (tiersIndex > maxWinningTierIndex) {\\n                    maxWinningTierIndex = tiersIndex;\\n                }\\n                _prizeCounts[tiersIndex]++;\\n            }\\n        }\\n\\n        // now calculate prizeFraction given prizeCounts\\n        uint256 prizeFraction = 0;\\n        uint256[] memory prizeTiersFractions = _calculatePrizeTierFractions(\\n            _prizeDistribution,\\n            maxWinningTierIndex\\n        );\\n\\n        // multiple the fractions by the prizeCounts and add them up\\n        for (\\n            uint256 prizeCountIndex = 0;\\n            prizeCountIndex <= maxWinningTierIndex;\\n            prizeCountIndex++\\n        ) {\\n            if (_prizeCounts[prizeCountIndex] > 0) {\\n                prizeFraction +=\\n                    prizeTiersFractions[prizeCountIndex] *\\n                    _prizeCounts[prizeCountIndex];\\n            }\\n        }\\n\\n        // return the absolute amount of prize awardable\\n        // div by 1e9 as prize tiers are base 1e9\\n        prize = (prizeFraction * _prizeDistribution.prize) / 1e9;\\n        prizeCounts = _prizeCounts;\\n    }\\n\\n    ///@notice Calculates the tier index given the random numbers and masks\\n    ///@param _randomNumberThisPick users random number for this Pick\\n    ///@param _winningRandomNumber The winning number for this draw\\n    ///@param _masks The pre-calculate bitmasks for the prizeDistributions\\n    ///@return The position within the prize tier array (0 = top prize, 1 = runner-up prize, etc)\\n    function _calculateTierIndex(\\n        uint256 _randomNumberThisPick,\\n        uint256 _winningRandomNumber,\\n        uint256[] memory _masks\\n    ) internal pure returns (uint8) {\\n        uint8 numberOfMatches = 0;\\n        uint8 masksLength = uint8(_masks.length);\\n\\n        // main number matching loop\\n        for (uint8 matchIndex = 0; matchIndex < masksLength; matchIndex++) {\\n            uint256 mask = _masks[matchIndex];\\n\\n            if ((_randomNumberThisPick & mask) != (_winningRandomNumber & mask)) {\\n                // there are no more sequential matches since this comparison is not a match\\n                if (masksLength == numberOfMatches) {\\n                    return 0;\\n                } else {\\n                    return masksLength - numberOfMatches;\\n                }\\n            }\\n\\n            // else there was a match\\n            numberOfMatches++;\\n        }\\n\\n        return masksLength - numberOfMatches;\\n    }\\n\\n    /**\\n     * @notice Create an array of bitmasks equal to the PrizeDistribution.matchCardinality length\\n     * @param _prizeDistribution The PrizeDistribution to use to calculate the masks\\n     * @return An array of bitmasks\\n     */\\n    function _createBitMasks(IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution)\\n        internal\\n        pure\\n        returns (uint256[] memory)\\n    {\\n        uint256[] memory masks = new uint256[](_prizeDistribution.matchCardinality);\\n        masks[0] =  (2**_prizeDistribution.bitRangeSize) - 1;\\n\\n        for (uint8 maskIndex = 1; maskIndex < _prizeDistribution.matchCardinality; maskIndex++) {\\n            // shift mask bits to correct position and insert in result mask array\\n            masks[maskIndex] = masks[maskIndex - 1] << _prizeDistribution.bitRangeSize;\\n        }\\n\\n        return masks;\\n    }\\n\\n    /**\\n     * @notice Calculates the expected prize fraction per PrizeDistributions and distributionIndex\\n     * @param _prizeDistribution prizeDistribution struct for Draw\\n     * @param _prizeTierIndex Index of the prize tiers array to calculate\\n     * @return returns the fraction of the total prize (fixed point 9 number)\\n     */\\n    function _calculatePrizeTierFraction(\\n        IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution,\\n        uint256 _prizeTierIndex\\n    ) internal pure returns (uint256) {\\n         // get the prize fraction at that index\\n        uint256 prizeFraction = _prizeDistribution.tiers[_prizeTierIndex];\\n\\n        // calculate number of prizes for that index\\n        uint256 numberOfPrizesForIndex = _numberOfPrizesForIndex(\\n            _prizeDistribution.bitRangeSize,\\n            _prizeTierIndex\\n        );\\n\\n        return prizeFraction / numberOfPrizesForIndex;\\n    }\\n\\n    /**\\n     * @notice Generates an array of prize tiers fractions\\n     * @param _prizeDistribution prizeDistribution struct for Draw\\n     * @param maxWinningTierIndex Max length of the prize tiers array\\n     * @return returns an array of prize tiers fractions\\n     */\\n    function _calculatePrizeTierFractions(\\n        IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution,\\n        uint8 maxWinningTierIndex\\n    ) internal pure returns (uint256[] memory) {\\n        uint256[] memory prizeDistributionFractions = new uint256[](\\n            maxWinningTierIndex + 1\\n        );\\n\\n        for (uint8 i = 0; i <= maxWinningTierIndex; i++) {\\n            prizeDistributionFractions[i] = _calculatePrizeTierFraction(\\n                _prizeDistribution,\\n                i\\n            );\\n        }\\n\\n        return prizeDistributionFractions;\\n    }\\n\\n    /**\\n     * @notice Calculates the number of prizes for a given prizeDistributionIndex\\n     * @param _bitRangeSize Bit range size for Draw\\n     * @param _prizeTierIndex Index of the prize tier array to calculate\\n     * @return returns the fraction of the total prize (base 1e18)\\n     */\\n    function _numberOfPrizesForIndex(uint8 _bitRangeSize, uint256 _prizeTierIndex)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_prizeTierIndex > 0) {\\n            return ( 1 << _bitRangeSize * _prizeTierIndex ) - ( 1 << _bitRangeSize * (_prizeTierIndex - 1) );\\n        } else {\\n            return 1;\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xa4781a1240dc9b3cc411e46e8cb4e25b1c0154dddc2a04f3081df7539563ac8a\",\"license\":\"GPL-3.0\"},\"contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionSource\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"license\":\"GPL-3.0\"},\"contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawIds to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valid drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"},\"contracts/test/DrawCalculatorV2Harness.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../DrawCalculatorV2.sol\\\";\\n\\ncontract DrawCalculatorV2Harness is DrawCalculatorV2 {\\n    constructor(\\n        ITicket _ticket,\\n        IDrawBuffer _drawBuffer,\\n        IPrizeDistributionSource _prizeDistributionSource\\n    ) DrawCalculatorV2(_ticket, _drawBuffer, _prizeDistributionSource) {}\\n\\n    function calculateTierIndex(\\n        uint256 _randomNumberThisPick,\\n        uint256 _winningRandomNumber,\\n        uint256[] memory _masks\\n    ) public pure returns (uint256) {\\n        return _calculateTierIndex(_randomNumberThisPick, _winningRandomNumber, _masks);\\n    }\\n\\n    function createBitMasks(IPrizeDistributionSource.PrizeDistribution calldata _prizeDistribution)\\n        public\\n        pure\\n        returns (uint256[] memory)\\n    {\\n        return _createBitMasks(_prizeDistribution);\\n    }\\n\\n    ///@notice Calculates the expected prize fraction per prizeDistribution and prizeTierIndex\\n    ///@param _prizeDistribution prizeDistribution struct for Draw\\n    ///@param _prizeTierIndex Index of the prize tiers array to calculate\\n    ///@return returns the fraction of the total prize\\n    function calculatePrizeTierFraction(\\n        IPrizeDistributionSource.PrizeDistribution calldata _prizeDistribution,\\n        uint256 _prizeTierIndex\\n    ) external pure returns (uint256) {\\n        return _calculatePrizeTierFraction(_prizeDistribution, _prizeTierIndex);\\n    }\\n\\n    function numberOfPrizesForIndex(uint8 _bitRangeSize, uint256 _prizeTierIndex)\\n        external\\n        pure\\n        returns (uint256)\\n    {\\n        return _numberOfPrizesForIndex(_bitRangeSize, _prizeTierIndex);\\n    }\\n\\n    function calculateNumberOfUserPicks(\\n        IPrizeDistributionSource.PrizeDistribution memory _prizeDistribution,\\n        uint256 _normalizedUserBalance\\n    ) external pure returns (uint64) {\\n        return _calculateNumberOfUserPicks(_prizeDistribution, _normalizedUserBalance);\\n    }\\n}\\n\",\"keccak256\":\"0x140f2b4d05a98e79173a8f96b11c989b1d110d2c58543071862dfcf4a3004133\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "Deployed(address,address,address)": {
                "notice": "Emitted when the contract is initialized"
              },
              "PrizeDistributorSet(address)": {
                "notice": "Emitted when the prizeDistributor is set/updated"
              }
            },
            "kind": "user",
            "methods": {
              "TIERS_LENGTH()": {
                "notice": "The tiers array length"
              },
              "calculate(address,uint32[],bytes)": {
                "notice": "Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor."
              },
              "calculatePrizeTierFraction((uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256),uint256)": {
                "notice": "Calculates the expected prize fraction per prizeDistribution and prizeTierIndex"
              },
              "drawBuffer()": {
                "notice": "DrawBuffer address"
              },
              "getDrawBuffer()": {
                "notice": "Read global DrawBuffer variable."
              },
              "getNormalizedBalancesForDrawIds(address,uint32[])": {
                "notice": "Returns a users balances expressed as a fraction of the total supply over time."
              },
              "getPrizeDistributionSource()": {
                "notice": "Read global prizeDistributionSource variable."
              },
              "prizeDistributionSource()": {
                "notice": "The source in which the history of draw settings are stored as ring buffer."
              },
              "ticket()": {
                "notice": "Ticket associated with DrawCalculator"
              }
            },
            "version": 1
          }
        }
      },
      "contracts/test/DrawRingBufferExposed.sol": {
        "DrawRingBufferLibExposed": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "uint8",
                  "name": "_cardinality",
                  "type": "uint8"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "inputs": [],
              "name": "MAX_CARDINALITY",
              "outputs": [
                {
                  "internalType": "uint16",
                  "name": "",
                  "type": "uint16"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint32",
                      "name": "lastDrawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "nextIndex",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "cardinality",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct DrawRingBufferLib.Buffer",
                  "name": "_buffer",
                  "type": "tuple"
                },
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                }
              ],
              "name": "_getIndex",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint32",
                      "name": "lastDrawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "nextIndex",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "cardinality",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct DrawRingBufferLib.Buffer",
                  "name": "_buffer",
                  "type": "tuple"
                },
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                }
              ],
              "name": "_push",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint32",
                      "name": "lastDrawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "nextIndex",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "cardinality",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct DrawRingBufferLib.Buffer",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc.",
            "kind": "dev",
            "methods": {},
            "title": "Expose the DrawRingBufferLibrary for unit tests",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_16119": {
                  "entryPoint": null,
                  "id": 16119,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_uint8_fromMemory": {
                  "entryPoint": 89,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:289:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "93:194:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "139:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "148:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "151:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "141:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "141:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "141:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "123:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "110:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "110:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "135:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "106:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "106:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "103:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "164:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "183:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "177:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "177:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "168:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "241:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "250:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "253:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "243:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "243:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "243:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "215:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "226:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "233:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "222:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "222:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "212:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "212:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "205:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "205:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "202:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "266:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "276:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "266:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "59:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "70:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "82:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:273:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_uint8_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value0 := value\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b506040516105e73803806105e783398101604081905261002f91610059565b6000805463ffffffff60401b191660ff929092166801000000000000000002919091179055610083565b60006020828403121561006b57600080fd5b815160ff8116811461007c57600080fd5b9392505050565b610555806100926000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c806311f807df1461004657806379ba59ff146100735780638200d873146100b5575b600080fd5b6100596100543660046103d0565b6100d1565b60405163ffffffff90911681526020015b60405180910390f35b6100866100813660046103d0565b6100e6565b60408051825163ffffffff9081168252602080850151821690830152928201519092169082015260600161006a565b6100be61010081565b60405161ffff909116815260200161006a565b60006100dd838361010d565b90505b92915050565b60408051606081018252600080825260208201819052918101919091526100dd8383610242565b60006101188361032d565b80156101345750826000015163ffffffff168263ffffffff1611155b6101855760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d64726177000000000000000000000000000000000060448201526064015b60405180910390fd5b82516000906101959084906104c2565b9050836040015163ffffffff168163ffffffff16106101f65760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d6472617700000000000000000000000000000000604482015260640161017c565b6000610216856020015163ffffffff16866040015163ffffffff16610355565b90506102398163ffffffff168363ffffffff16876040015163ffffffff16610383565b95945050505050565b60408051606081018252600080825260208201819052918101919091526102688361032d565b158061028b5750825161027c906001610483565b63ffffffff168263ffffffff16145b6102d75760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e7469670000000000000000000000000000604482015260640161017c565b60405180606001604052808363ffffffff16815260200161030c856020015163ffffffff16866040015163ffffffff1661039b565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff16600014801561034e5750815163ffffffff16155b1592915050565b600081610364575060006100e0565b6100dd6001610373848661046b565b61037d91906104ab565b836103ab565b600061039383610373848761046b565b949350505050565b60006100dd61037d84600161046b565b60006100dd82846104e7565b803563ffffffff811681146103cb57600080fd5b919050565b60008082840360808112156103e457600080fd5b60608112156103f257600080fd5b506040516060810181811067ffffffffffffffff8211171561042457634e487b7160e01b600052604160045260246000fd5b604052610430846103b7565b815261043e602085016103b7565b602082015261044f604085016103b7565b60408201529150610462606084016103b7565b90509250929050565b6000821982111561047e5761047e610509565b500190565b600063ffffffff8083168185168083038211156104a2576104a2610509565b01949350505050565b6000828210156104bd576104bd610509565b500390565b600063ffffffff838116908316818110156104df576104df610509565b039392505050565b60008261050457634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fdfea264697066735822122082b877c64d2ead1cc15269da44efe6729dded4c1cb39b0a8d4dddf1bebee116964736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x5E7 CODESIZE SUB DUP1 PUSH2 0x5E7 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2F SWAP2 PUSH2 0x59 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0x40 SHL NOT AND PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x83 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x7C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x555 DUP1 PUSH2 0x92 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 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x11F807DF EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x79BA59FF EQ PUSH2 0x73 JUMPI DUP1 PUSH4 0x8200D873 EQ PUSH2 0xB5 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59 PUSH2 0x54 CALLDATASIZE PUSH1 0x4 PUSH2 0x3D0 JUMP JUMPDEST PUSH2 0xD1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x86 PUSH2 0x81 CALLDATASIZE PUSH1 0x4 PUSH2 0x3D0 JUMP JUMPDEST PUSH2 0xE6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD DUP3 AND SWAP1 DUP4 ADD MSTORE SWAP3 DUP3 ADD MLOAD SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x6A JUMP JUMPDEST PUSH2 0xBE PUSH2 0x100 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x6A JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDD DUP4 DUP4 PUSH2 0x10D JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0xDD DUP4 DUP4 PUSH2 0x242 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x118 DUP4 PUSH2 0x32D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x134 JUMPI POP DUP3 PUSH1 0x0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x185 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6675747572652D647261770000000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x0 SWAP1 PUSH2 0x195 SWAP1 DUP5 SWAP1 PUSH2 0x4C2 JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x1F6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F657870697265642D6472617700000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x17C JUMP JUMPDEST PUSH1 0x0 PUSH2 0x216 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x355 JUMP JUMPDEST SWAP1 POP PUSH2 0x239 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x383 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x268 DUP4 PUSH2 0x32D JUMP JUMPDEST ISZERO DUP1 PUSH2 0x28B JUMPI POP DUP3 MLOAD PUSH2 0x27C SWAP1 PUSH1 0x1 PUSH2 0x483 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND EQ JUMPDEST PUSH2 0x2D7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6D7573742D62652D636F6E7469670000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x17C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x30C DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x39B JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x0 EQ DUP1 ISZERO PUSH2 0x34E JUMPI POP DUP2 MLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x364 JUMPI POP PUSH1 0x0 PUSH2 0xE0 JUMP JUMPDEST PUSH2 0xDD PUSH1 0x1 PUSH2 0x373 DUP5 DUP7 PUSH2 0x46B JUMP JUMPDEST PUSH2 0x37D SWAP2 SWAP1 PUSH2 0x4AB JUMP JUMPDEST DUP4 PUSH2 0x3AB JUMP JUMPDEST PUSH1 0x0 PUSH2 0x393 DUP4 PUSH2 0x373 DUP5 DUP8 PUSH2 0x46B JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDD PUSH2 0x37D DUP5 PUSH1 0x1 PUSH2 0x46B JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDD DUP3 DUP5 PUSH2 0x4E7 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x3CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 SUB PUSH1 0x80 DUP2 SLT ISZERO PUSH2 0x3E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x60 DUP2 SLT ISZERO PUSH2 0x3F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x60 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x424 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE PUSH2 0x430 DUP5 PUSH2 0x3B7 JUMP JUMPDEST DUP2 MSTORE PUSH2 0x43E PUSH1 0x20 DUP6 ADD PUSH2 0x3B7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x44F PUSH1 0x40 DUP6 ADD PUSH2 0x3B7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE SWAP2 POP PUSH2 0x462 PUSH1 0x60 DUP5 ADD PUSH2 0x3B7 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x47E JUMPI PUSH2 0x47E PUSH2 0x509 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x4A2 JUMPI PUSH2 0x4A2 PUSH2 0x509 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x4BD JUMPI PUSH2 0x4BD PUSH2 0x509 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x4DF JUMPI PUSH2 0x4DF PUSH2 0x509 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x504 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP3 0xB8 PUSH24 0xC64D2EAD1CC15269DA44EFE6729DDED4C1CB39B0A8D4DDDF SHL 0xEB 0xEE GT PUSH10 0x64736F6C634300080600 CALLER ",
              "sourceMap": "203:731:68:-:0;;;407:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;449:14;:41;;-1:-1:-1;;;;449:41:68;;;;;;;;;;;;;;203:731;;14:273:84;82:6;135:2;123:9;114:7;110:23;106:32;103:2;;;151:1;148;141:12;103:2;183:9;177:16;233:4;226:5;222:16;215:5;212:27;202:2;;253:1;250;243:12;202:2;276:5;93:194;-1:-1:-1;;;93:194:84:o;:::-;203:731:68;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@MAX_CARDINALITY_16104": {
                  "entryPoint": null,
                  "id": 16104,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_getIndex_16154": {
                  "entryPoint": 209,
                  "id": 16154,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_push_16137": {
                  "entryPoint": 230,
                  "id": 16137,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getIndex_12353": {
                  "entryPoint": 269,
                  "id": 12353,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@isInitialized_12246": {
                  "entryPoint": 813,
                  "id": 12246,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@newestIndex_12830": {
                  "entryPoint": 853,
                  "id": 12830,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nextIndex_12848": {
                  "entryPoint": 923,
                  "id": 12848,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@offset_12803": {
                  "entryPoint": 899,
                  "id": 12803,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@push_12290": {
                  "entryPoint": 578,
                  "id": 12290,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@wrap_12781": {
                  "entryPoint": 939,
                  "id": 12781,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_Buffer_$12224_memory_ptrt_uint32": {
                  "entryPoint": 976,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_uint32": {
                  "entryPoint": 951,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Buffer_$12224_memory_ptr__to_t_struct$_Buffer_$12224_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 1131,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint32": {
                  "entryPoint": 1155,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 1195,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 1218,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "mod_t_uint256": {
                  "entryPoint": 1255,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 1289,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:4092:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "62:115:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "72:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "94:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "81:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "81:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "72:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "155:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "164:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "167:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "157:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "157:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "157:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "123:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "134:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "141:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "130:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "130:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "120:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "120:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "113:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "113:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "110:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "41:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "52:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:163:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "293:768:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "303:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "317:7:84"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "326:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "313:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "313:23:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "307:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "361:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "370:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "373:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "363:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "363:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "363:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "352:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "356:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "348:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "348:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "345:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "403:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "412:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "415:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "405:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "405:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "405:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "393:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "397:4:84",
                                    "type": "",
                                    "value": "0x60"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "389:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "389:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "386:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "428:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "448:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "442:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "442:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "432:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "460:35:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "482:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "490:4:84",
                                    "type": "",
                                    "value": "0x60"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "478:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "478:17:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "464:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "578:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "599:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "602:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "592:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "592:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "592:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "700:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "703:4:84",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "693:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "693:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "693:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "728:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "731:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "721:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "721:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "721:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "513:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "525:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "549:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "561:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "546:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "546:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "507:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "507:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "504:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "762:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "766:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "755:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "755:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "755:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "793:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "819:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "801:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "801:28:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "786:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "786:44:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "786:44:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "850:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "858:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "846:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "846:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "885:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "896:2:84",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "881:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "881:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "863:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "863:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "839:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "839:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "839:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "921:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "929:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "917:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "917:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "956:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "967:2:84",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "952:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "952:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "934:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "934:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "910:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "910:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "910:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "981:16:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "991:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "981:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1006:49:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1038:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1049:4:84",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1034:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1034:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1016:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1016:39:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1006:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Buffer_$12224_memory_ptrt_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "282:6:84",
                            "type": ""
                          }
                        ],
                        "src": "182:879:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1240:165:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1257:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1268:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1250:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1250:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1250:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1291:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1302:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1287:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1287:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1307:2:84",
                                    "type": "",
                                    "value": "15"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1280:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1280:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1280:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1330:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1341:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1326:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1326:18:84"
                                  },
                                  {
                                    "hexValue": "4452422f6675747572652d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1346:17:84",
                                    "type": "",
                                    "value": "DRB/future-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1319:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1319:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1319:45:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1373:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1385:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1396:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1381:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1381:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1373:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1217:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1231:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1066:339:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1584:166:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1601:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1612:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1594:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1594:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1594:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1635:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1646:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1631:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1631:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1651:2:84",
                                    "type": "",
                                    "value": "16"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1624:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1624:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1624:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1674:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1685:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1670:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1670:18:84"
                                  },
                                  {
                                    "hexValue": "4452422f657870697265642d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1690:18:84",
                                    "type": "",
                                    "value": "DRB/expired-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1663:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1663:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1663:46:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1718:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1730:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1741:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1726:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1726:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1718:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1561:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1575:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1410:340:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1929:168:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1946:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1957:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1939:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1939:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1939:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1980:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1991:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1976:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1976:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1996:2:84",
                                    "type": "",
                                    "value": "18"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1969:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1969:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1969:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2019:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2030:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2015:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2015:18:84"
                                  },
                                  {
                                    "hexValue": "4452422f6d7573742d62652d636f6e746967",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2035:20:84",
                                    "type": "",
                                    "value": "DRB/must-be-contig"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2008:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2008:48:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2008:48:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2065:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2077:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2088:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2073:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2073:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2065:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1906:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1920:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1755:342:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2253:265:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2263:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2275:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2286:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2271:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2271:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2263:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2298:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2308:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2302:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2334:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "2355:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2349:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2349:13:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2364:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2345:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2345:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2327:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2327:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2327:41:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2388:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2399:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2384:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2384:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "2420:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2428:4:84",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2416:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2416:17:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2410:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2410:24:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2436:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2406:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2406:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2377:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2377:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2377:63:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2460:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2471:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2456:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2456:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "2492:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2500:4:84",
                                                "type": "",
                                                "value": "0x40"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2488:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2488:17:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2482:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2482:24:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2508:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2478:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2478:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2449:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2449:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2449:63:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Buffer_$12224_memory_ptr__to_t_struct$_Buffer_$12224_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2222:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2233:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2244:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2102:416:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2622:89:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2632:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2644:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2655:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2640:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2640:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2632:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2674:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2689:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2697:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2685:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2685:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2667:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2667:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2667:38:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2591:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2602:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2613:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2523:188:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2815:93:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2825:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2837:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2848:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2833:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2833:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2825:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2867:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2882:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2890:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2878:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2878:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2860:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2860:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2860:42:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2784:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2795:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2806:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2716:192:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2961:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2988:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "2990:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2990:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2990:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "2977:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "2984:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "2980:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2980:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2974:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2974:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2971:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3019:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "3030:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "3033:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3026:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3026:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "3019:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "2944:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "2947:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "2953:3:84",
                            "type": ""
                          }
                        ],
                        "src": "2913:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3093:181:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3103:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3113:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3107:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3132:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "3147:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3150:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "3143:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3143:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3136:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3162:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "3177:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3180:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "3173:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3173:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3166:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3217:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "3219:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3219:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3219:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3198:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3207:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3211:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3203:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3203:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3195:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3195:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3192:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3248:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3259:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3264:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3255:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3255:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "3248:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "3076:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "3079:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "3085:3:84",
                            "type": ""
                          }
                        ],
                        "src": "3046:228:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3328:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3350:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "3352:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3352:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3352:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "3344:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "3347:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3341:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3341:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3338:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3381:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "3393:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "3396:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "3389:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3389:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "3381:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "3310:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "3313:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "3319:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3279:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3457:173:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3467:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3477:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3471:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3496:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "3511:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3514:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "3507:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3507:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3500:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3526:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "3541:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3544:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "3537:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3537:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3530:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3572:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "3574:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3574:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3574:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3562:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3567:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3559:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3559:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3556:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3603:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3615:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3620:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "3611:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3611:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "3603:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "3439:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "3442:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "3448:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3409:221:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3673:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3704:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3725:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3728:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3718:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3718:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3718:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3826:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3829:4:84",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3819:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3819:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3819:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3854:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3857:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3847:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3847:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3847:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "3693:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3686:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3686:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3683:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3881:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "3890:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "3893:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "3886:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3886:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "3881:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "3658:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "3661:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "3667:1:84",
                            "type": ""
                          }
                        ],
                        "src": "3635:266:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3938:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3955:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3958:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3948:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3948:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3948:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4052:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4055:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4045:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4045:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4045:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4076:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4079:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "4069:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4069:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4069:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "3906:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_struct$_Buffer_$12224_memory_ptrt_uint32(headStart, dataEnd) -> value0, value1\n    {\n        let _1 := sub(dataEnd, headStart)\n        if slt(_1, 128) { revert(0, 0) }\n        if slt(_1, 0x60) { revert(0, 0) }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x60)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n        mstore(memPtr, abi_decode_uint32(headStart))\n        mstore(add(memPtr, 32), abi_decode_uint32(add(headStart, 32)))\n        mstore(add(memPtr, 64), abi_decode_uint32(add(headStart, 64)))\n        value0 := memPtr\n        value1 := abi_decode_uint32(add(headStart, 0x60))\n    }\n    function abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 15)\n        mstore(add(headStart, 64), \"DRB/future-draw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 16)\n        mstore(add(headStart, 64), \"DRB/expired-draw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 18)\n        mstore(add(headStart, 64), \"DRB/must-be-contig\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_Buffer_$12224_memory_ptr__to_t_struct$_Buffer_$12224_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        let _1 := 0xffffffff\n        mstore(headStart, and(mload(value0), _1))\n        mstore(add(headStart, 0x20), and(mload(add(value0, 0x20)), _1))\n        mstore(add(headStart, 0x40), and(mload(add(value0, 0x40)), _1))\n    }\n    function abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffff))\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint32(x, y) -> sum\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100415760003560e01c806311f807df1461004657806379ba59ff146100735780638200d873146100b5575b600080fd5b6100596100543660046103d0565b6100d1565b60405163ffffffff90911681526020015b60405180910390f35b6100866100813660046103d0565b6100e6565b60408051825163ffffffff9081168252602080850151821690830152928201519092169082015260600161006a565b6100be61010081565b60405161ffff909116815260200161006a565b60006100dd838361010d565b90505b92915050565b60408051606081018252600080825260208201819052918101919091526100dd8383610242565b60006101188361032d565b80156101345750826000015163ffffffff168263ffffffff1611155b6101855760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d64726177000000000000000000000000000000000060448201526064015b60405180910390fd5b82516000906101959084906104c2565b9050836040015163ffffffff168163ffffffff16106101f65760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d6472617700000000000000000000000000000000604482015260640161017c565b6000610216856020015163ffffffff16866040015163ffffffff16610355565b90506102398163ffffffff168363ffffffff16876040015163ffffffff16610383565b95945050505050565b60408051606081018252600080825260208201819052918101919091526102688361032d565b158061028b5750825161027c906001610483565b63ffffffff168263ffffffff16145b6102d75760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e7469670000000000000000000000000000604482015260640161017c565b60405180606001604052808363ffffffff16815260200161030c856020015163ffffffff16866040015163ffffffff1661039b565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff16600014801561034e5750815163ffffffff16155b1592915050565b600081610364575060006100e0565b6100dd6001610373848661046b565b61037d91906104ab565b836103ab565b600061039383610373848761046b565b949350505050565b60006100dd61037d84600161046b565b60006100dd82846104e7565b803563ffffffff811681146103cb57600080fd5b919050565b60008082840360808112156103e457600080fd5b60608112156103f257600080fd5b506040516060810181811067ffffffffffffffff8211171561042457634e487b7160e01b600052604160045260246000fd5b604052610430846103b7565b815261043e602085016103b7565b602082015261044f604085016103b7565b60408201529150610462606084016103b7565b90509250929050565b6000821982111561047e5761047e610509565b500190565b600063ffffffff8083168185168083038211156104a2576104a2610509565b01949350505050565b6000828210156104bd576104bd610509565b500390565b600063ffffffff838116908316818110156104df576104df610509565b039392505050565b60008261050457634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fdfea264697066735822122082b877c64d2ead1cc15269da44efe6729dded4c1cb39b0a8d4dddf1bebee116964736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x11F807DF EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x79BA59FF EQ PUSH2 0x73 JUMPI DUP1 PUSH4 0x8200D873 EQ PUSH2 0xB5 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59 PUSH2 0x54 CALLDATASIZE PUSH1 0x4 PUSH2 0x3D0 JUMP JUMPDEST PUSH2 0xD1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x86 PUSH2 0x81 CALLDATASIZE PUSH1 0x4 PUSH2 0x3D0 JUMP JUMPDEST PUSH2 0xE6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD DUP3 AND SWAP1 DUP4 ADD MSTORE SWAP3 DUP3 ADD MLOAD SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x6A JUMP JUMPDEST PUSH2 0xBE PUSH2 0x100 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x6A JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDD DUP4 DUP4 PUSH2 0x10D JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0xDD DUP4 DUP4 PUSH2 0x242 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x118 DUP4 PUSH2 0x32D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x134 JUMPI POP DUP3 PUSH1 0x0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x185 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6675747572652D647261770000000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x0 SWAP1 PUSH2 0x195 SWAP1 DUP5 SWAP1 PUSH2 0x4C2 JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x1F6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F657870697265642D6472617700000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x17C JUMP JUMPDEST PUSH1 0x0 PUSH2 0x216 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x355 JUMP JUMPDEST SWAP1 POP PUSH2 0x239 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x383 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x268 DUP4 PUSH2 0x32D JUMP JUMPDEST ISZERO DUP1 PUSH2 0x28B JUMPI POP DUP3 MLOAD PUSH2 0x27C SWAP1 PUSH1 0x1 PUSH2 0x483 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND EQ JUMPDEST PUSH2 0x2D7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6D7573742D62652D636F6E7469670000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x17C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x30C DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x39B JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x0 EQ DUP1 ISZERO PUSH2 0x34E JUMPI POP DUP2 MLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x364 JUMPI POP PUSH1 0x0 PUSH2 0xE0 JUMP JUMPDEST PUSH2 0xDD PUSH1 0x1 PUSH2 0x373 DUP5 DUP7 PUSH2 0x46B JUMP JUMPDEST PUSH2 0x37D SWAP2 SWAP1 PUSH2 0x4AB JUMP JUMPDEST DUP4 PUSH2 0x3AB JUMP JUMPDEST PUSH1 0x0 PUSH2 0x393 DUP4 PUSH2 0x373 DUP5 DUP8 PUSH2 0x46B JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDD PUSH2 0x37D DUP5 PUSH1 0x1 PUSH2 0x46B JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDD DUP3 DUP5 PUSH2 0x4E7 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x3CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 SUB PUSH1 0x80 DUP2 SLT ISZERO PUSH2 0x3E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x60 DUP2 SLT ISZERO PUSH2 0x3F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x60 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x424 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE PUSH2 0x430 DUP5 PUSH2 0x3B7 JUMP JUMPDEST DUP2 MSTORE PUSH2 0x43E PUSH1 0x20 DUP6 ADD PUSH2 0x3B7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x44F PUSH1 0x40 DUP6 ADD PUSH2 0x3B7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE SWAP2 POP PUSH2 0x462 PUSH1 0x60 DUP5 ADD PUSH2 0x3B7 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x47E JUMPI PUSH2 0x47E PUSH2 0x509 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x4A2 JUMPI PUSH2 0x4A2 PUSH2 0x509 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x4BD JUMPI PUSH2 0x4BD PUSH2 0x509 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x4DF JUMPI PUSH2 0x4DF PUSH2 0x509 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x504 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP3 0xB8 PUSH24 0xC64D2EAD1CC15269DA44EFE6729DDED4C1CB39B0A8D4DDDF SHL 0xEB 0xEE GT PUSH10 0x64736F6C634300080600 CALLER ",
              "sourceMap": "203:731:68:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;729:203;;;;;;:::i;:::-;;:::i;:::-;;;2890:10:84;2878:23;;;2860:42;;2848:2;2833:18;729:203:68;;;;;;;;503:220;;;;;;:::i;:::-;;:::i;:::-;;;;2349:13:84;;2308:10;2345:22;;;2327:41;;2428:4;2416:17;;;2410:24;2406:33;;2384:20;;;2377:63;2488:17;;;2482:24;2478:33;;;2456:20;;;2449:63;2286:2;2271:18;503:220:68;2253:265:84;302:44:68;;343:3;302:44;;;;;2697:6:84;2685:19;;;2667:38;;2655:2;2640:18;302:44:68;2622:89:84;729:203:68;852:6;881:44;908:7;917;881:26;:44::i;:::-;874:51;;729:203;;;;;:::o;503:220::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;676:40:68;699:7;708;676:22;:40::i;1587:517:52:-;1667:6;1693:22;1707:7;1693:13;:22::i;:::-;:55;;;;;1730:7;:18;;;1719:29;;:7;:29;;;;1693:55;1685:83;;;;-1:-1:-1;;;1685:83:52;;1268:2:84;1685:83:52;;;1250:21:84;1307:2;1287:18;;;1280:30;1346:17;1326:18;;;1319:45;1381:18;;1685:83:52;;;;;;;;;1800:18;;1779;;1800:28;;1821:7;;1800:28;:::i;:::-;1779:49;;1860:7;:19;;;1846:33;;:11;:33;;;1838:62;;;;-1:-1:-1;;;1838:62:52;;1612:2:84;1838:62:52;;;1594:21:84;1651:2;1631:18;;;1624:30;1690:18;1670;;;1663:46;1726:18;;1838:62:52;1584:166:84;1838:62:52;1911:18;1932:65;1958:7;:17;;;1932:65;;1977:7;:19;;;1932:65;;:25;:65::i;:::-;1911:86;;2022:74;2050:10;2022:74;;2063:11;2022:74;;2076:7;:19;;;2022:74;;:20;:74::i;:::-;2008:89;1587:517;-1:-1:-1;;;;;1587:517:52:o;919:438::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;1029:22:52;1043:7;1029:13;:22::i;:::-;1028:23;:60;;;-1:-1:-1;1066:18:52;;:22;;1087:1;1066:22;:::i;:::-;1055:33;;:7;:33;;;1028:60;1020:91;;;;-1:-1:-1;;;1020:91:52;;1957:2:84;1020:91:52;;;1939:21:84;1996:2;1976:18;;;1969:30;2035:20;2015:18;;;2008:48;2073:18;;1020:91:52;1929:168:84;1020:91:52;1141:209;;;;;;;;1178:7;1141:209;;;;;;1221:63;1245:7;:17;;;1221:63;;1264:7;:19;;;1221:63;;:23;:63::i;:::-;1141:209;;;;;;1316:7;:19;;;1141:209;;;;;1122:228;;919:438;;;;:::o;598:151::-;667:4;692:7;:17;;;:22;;713:1;692:22;:49;;;;-1:-1:-1;718:18:52;;:23;;;692:49;690:52;;598:151;-1:-1:-1;;598:151:52:o;1666:262:56:-;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:56;1836:8;;1799:56;1872:49;1905:1;1877:25;1890:12;1877:10;:25;:::i;:::-;:29;;;;:::i;:::-;1908:12;1872:4;:49::i;1186:208::-;1310:7;1336:51;1365:7;1341:21;1350:12;1341:6;:21;:::i;1336:51::-;1329:58;1186:208;-1:-1:-1;;;;1186:208:56:o;2263:171::-;2367:7;2397:30;2402:10;:6;2411:1;2402:10;:::i;580:129::-;655:7;681:21;690:12;681:6;:21;:::i;14:163:84:-;81:20;;141:10;130:22;;120:33;;110:2;;167:1;164;157:12;110:2;62:115;;;:::o;182:879::-;274:6;282;326:9;317:7;313:23;356:3;352:2;348:12;345:2;;;373:1;370;363:12;345:2;397:4;393:2;389:13;386:2;;;415:1;412;405:12;386:2;;448;442:9;490:4;482:6;478:17;561:6;549:10;546:22;525:18;513:10;510:34;507:62;504:2;;;-1:-1:-1;;;599:1:84;592:88;703:4;700:1;693:15;731:4;728:1;721:15;504:2;762;755:22;801:28;819:9;801:28;:::i;:::-;793:6;786:44;863:37;896:2;885:9;881:18;863:37;:::i;:::-;858:2;850:6;846:15;839:62;934:37;967:2;956:9;952:18;934:37;:::i;:::-;929:2;917:15;;910:62;921:6;-1:-1:-1;1016:39:84;1049:4;1034:20;;1016:39;:::i;:::-;1006:49;;293:768;;;;;:::o;2913:128::-;2953:3;2984:1;2980:6;2977:1;2974:13;2971:2;;;2990:18;;:::i;:::-;-1:-1:-1;3026:9:84;;2961:80::o;3046:228::-;3085:3;3113:10;3150:2;3147:1;3143:10;3180:2;3177:1;3173:10;3211:3;3207:2;3203:12;3198:3;3195:21;3192:2;;;3219:18;;:::i;:::-;3255:13;;3093:181;-1:-1:-1;;;;3093:181:84:o;3279:125::-;3319:4;3347:1;3344;3341:8;3338:2;;;3352:18;;:::i;:::-;-1:-1:-1;3389:9:84;;3328:76::o;3409:221::-;3448:4;3477:10;3537;;;;3507;;3559:12;;;3556:2;;;3574:18;;:::i;:::-;3611:13;;3457:173;-1:-1:-1;;;3457:173:84:o;3635:266::-;3667:1;3693;3683:2;;-1:-1:-1;;;3725:1:84;3718:88;3829:4;3826:1;3819:15;3857:4;3854:1;3847:15;3683:2;-1:-1:-1;3886:9:84;;3673:228::o;3906:184::-;-1:-1:-1;;;3955:1:84;3948:88;4055:4;4052:1;4045:15;4079:4;4076:1;4069:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "273000",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "MAX_CARDINALITY()": "226",
                "_getIndex((uint32,uint32,uint32),uint32)": "infinite",
                "_push((uint32,uint32,uint32),uint32)": "infinite"
              }
            },
            "methodIdentifiers": {
              "MAX_CARDINALITY()": "8200d873",
              "_getIndex((uint32,uint32,uint32),uint32)": "11f807df",
              "_push((uint32,uint32,uint32),uint32)": "79ba59ff"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"_cardinality\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"MAX_CARDINALITY\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"\",\"type\":\"uint16\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint32\",\"name\":\"lastDrawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"nextIndex\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"cardinality\",\"type\":\"uint32\"}],\"internalType\":\"struct DrawRingBufferLib.Buffer\",\"name\":\"_buffer\",\"type\":\"tuple\"},{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"}],\"name\":\"_getIndex\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint32\",\"name\":\"lastDrawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"nextIndex\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"cardinality\",\"type\":\"uint32\"}],\"internalType\":\"struct DrawRingBufferLib.Buffer\",\"name\":\"_buffer\",\"type\":\"tuple\"},{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"}],\"name\":\"_push\",\"outputs\":[{\"components\":[{\"internalType\":\"uint32\",\"name\":\"lastDrawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"nextIndex\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"cardinality\",\"type\":\"uint32\"}],\"internalType\":\"struct DrawRingBufferLib.Buffer\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc.\",\"kind\":\"dev\",\"methods\":{},\"title\":\"Expose the DrawRingBufferLibrary for unit tests\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/DrawRingBufferExposed.sol\":\"DrawRingBufferLibExposed\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/test/DrawRingBufferExposed.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/DrawRingBufferLib.sol\\\";\\n\\n/**\\n * @title  Expose the DrawRingBufferLibrary for unit tests\\n * @author PoolTogether Inc.\\n */\\ncontract DrawRingBufferLibExposed {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    uint16 public constant MAX_CARDINALITY = 256;\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    constructor(uint8 _cardinality) {\\n        bufferMetadata.cardinality = _cardinality;\\n    }\\n\\n    function _push(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        external\\n        pure\\n        returns (DrawRingBufferLib.Buffer memory)\\n    {\\n        return DrawRingBufferLib.push(_buffer, _drawId);\\n    }\\n\\n    function _getIndex(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        external\\n        pure\\n        returns (uint32)\\n    {\\n        return DrawRingBufferLib.getIndex(_buffer, _drawId);\\n    }\\n}\\n\",\"keccak256\":\"0xcde3cb31606629237e80fd940db436c983b49db4e2d017db67a732cc62d63ef7\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 16107,
                "contract": "contracts/test/DrawRingBufferExposed.sol:DrawRingBufferLibExposed",
                "label": "bufferMetadata",
                "offset": 0,
                "slot": "0",
                "type": "t_struct(Buffer)12224_storage"
              }
            ],
            "types": {
              "t_struct(Buffer)12224_storage": {
                "encoding": "inplace",
                "label": "struct DrawRingBufferLib.Buffer",
                "members": [
                  {
                    "astId": 12219,
                    "contract": "contracts/test/DrawRingBufferExposed.sol:DrawRingBufferLibExposed",
                    "label": "lastDrawId",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 12221,
                    "contract": "contracts/test/DrawRingBufferExposed.sol:DrawRingBufferLibExposed",
                    "label": "nextIndex",
                    "offset": 4,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 12223,
                    "contract": "contracts/test/DrawRingBufferExposed.sol:DrawRingBufferLibExposed",
                    "label": "cardinality",
                    "offset": 8,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "contracts/test/EIP2612PermitMintable.sol": {
        "EIP2612PermitMintable": {
          "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": [],
              "name": "DOMAIN_SEPARATOR",
              "outputs": [
                {
                  "internalType": "bytes32",
                  "name": "",
                  "type": "bytes32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "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": "address",
                  "name": "account",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "burn",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "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": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "masterTransfer",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "mint",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "nonces",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "deadline",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "v",
                  "type": "uint8"
                },
                {
                  "internalType": "bytes32",
                  "name": "r",
                  "type": "bytes32"
                },
                {
                  "internalType": "bytes32",
                  "name": "s",
                  "type": "bytes32"
                }
              ],
              "name": "permit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "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 {ERC20Permit} that adds a set of accounts with the {MinterRole}, which have permission to mint (create) new tokens as they see fit. At construction, the deployer of the contract is the only minter.",
            "kind": "dev",
            "methods": {
              "DOMAIN_SEPARATOR()": {
                "details": "See {IERC20Permit-DOMAIN_SEPARATOR}."
              },
              "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 this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
              },
              "decreaseAllowance(address,uint256)": {
                "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
              },
              "increaseAllowance(address,uint256)": {
                "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
              },
              "mint(address,uint256)": {
                "details": "See {ERC20-_mint}. Requirements: - the caller must have the {MinterRole}."
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "nonces(address)": {
                "details": "See {IERC20Permit-nonces}."
              },
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": {
                "details": "See {IERC20Permit-permit}."
              },
              "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
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_16176": {
                  "entryPoint": null,
                  "id": 16176,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_3129": {
                  "entryPoint": null,
                  "id": 3129,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_727": {
                  "entryPoint": null,
                  "id": 727,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_84": {
                  "entryPoint": null,
                  "id": 84,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_3178": {
                  "entryPoint": null,
                  "id": 3178,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 482,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
                  "entryPoint": 665,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 771,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 832,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:2479:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:821:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:84"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:84"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:84",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:84"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:84",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:84"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:84"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "543:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "553:4:84",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "547:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "603:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "612:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "615:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "605:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "605:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "605:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "580:6:84"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "588:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "576:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "576:15:84"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "593:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "572:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "572:24:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "598:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "569:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "569:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "566:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "628:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "637:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "632:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "693:87:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "722:6:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "730:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "718:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "718:14:84"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "734:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "714:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "714:23:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "offset",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "753:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "761:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "749:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "749:14:84"
                                                },
                                                {
                                                  "name": "_4",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "765:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "745:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "745:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "739:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "739:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "707:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "707:63:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "707:63:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "661:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "655:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "655:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "665:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "667:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "676:1:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "679:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "672:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "672:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "667:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "651:3:84",
                                "statements": []
                              },
                              "src": "647:133:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "810:59:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "839:6:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "847:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "835:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "835:15:84"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "852:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "831:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "831:24:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "857:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:35:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:35:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "795:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "798:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "792:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "792:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "789:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "878:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "887:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "878:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:885:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1022:444:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1068:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1077:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1080:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1070:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1070:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1070:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1043:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1052:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1039:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1039:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1064:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1035:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1035:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1032:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1093:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1113:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1107:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1107:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1097:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1132:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1150:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1154:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1146:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1146:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1158:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1142:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1142:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1136:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1187:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1196:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1199:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1189:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1189:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1189:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1175:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1183:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1169:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1212:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1255:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1266:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1251:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1251:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1275:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1222:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1222:61:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1212:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1292:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1318:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1329:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1314:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1314:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1308:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1308:25:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1296:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1362:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1371:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1374:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1364:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1364:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1364:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1348:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1358:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1345:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1345:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1342:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1387:73:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1430:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1441:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1426:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1426:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1452:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1397:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1397:63:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1387:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "980:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "991:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1003:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1011:6:84",
                            "type": ""
                          }
                        ],
                        "src": "904:562:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1684:276:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1694:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1706:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1717:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1702:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1702:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1694:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1737:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1748:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1730:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1730:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1730:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1775:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1786:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1771:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1771:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1791:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1764:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1764:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1764:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1818:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1829:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1814:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1814:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1834:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1807:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1807:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1807:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1861:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1872:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1857:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1857:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "1877:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1850:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1850:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1850:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1904:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1915:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1900:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1900:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "1925:6:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1941:3:84",
                                                "type": "",
                                                "value": "160"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1946:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1937:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1937:11:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1950:1:84",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "1933:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1933:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1921:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1921:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1893:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1893:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1893:61:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1621:9:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1632:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1640:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1648:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1656:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1664:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1675:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1471:489:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2020:325:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2030:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2044:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "2047:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "2040:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2040:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "2030:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2061:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "2091:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2097:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "2087:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2087:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "2065:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2138:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2140:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "2154:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2162:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "2150:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2150:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "2140:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "2118:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2111:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2111:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2108:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2228:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2249:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2256:3:84",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2261:10:84",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "2252:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2252:20:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2242:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2242:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2242:31:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2293:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2296:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2286:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2286:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2286:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2321:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2324:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2314:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2314:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2314:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "2184:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "2207:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2215:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2204:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2204:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "2181:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2181:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2178:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "2000:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "2009:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1965:380:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2382:95:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2399:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2406:3:84",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2411:10:84",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "2402:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2402:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2392:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2392:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2392:31:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2439:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2442:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2432:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2432:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2432:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2463:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2466:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "2456:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2456:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2456:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "2350:127:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        let _4 := 0x20\n        if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _1) { i := add(i, _4) }\n        {\n            mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n        }\n        if gt(i, _1)\n        {\n            mstore(add(add(memPtr, _1), _4), 0)\n        }\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120523480156200003757600080fd5b506040516200173d3803806200173d8339810160408190526200005a9162000299565b8180604051806040016040528060018152602001603160f81b81525084848160039080519060200190620000909291906200013c565b508051620000a69060049060208401906200013c565b5050825160209384012082519284019290922060c083815260e08290524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818a0181905281830198909852606081019590955260808086019390935230858301528051808603909201825293909201909252805194019390932090925261010052506200035692505050565b8280546200014a9062000303565b90600052602060002090601f0160209004810192826200016e5760008555620001b9565b82601f106200018957805160ff1916838001178555620001b9565b82800160010185558215620001b9579182015b82811115620001b95782518255916020019190600101906200019c565b50620001c7929150620001cb565b5090565b5b80821115620001c75760008155600101620001cc565b600082601f830112620001f457600080fd5b81516001600160401b038082111562000211576200021162000340565b604051601f8301601f19908116603f011681019082821181831017156200023c576200023c62000340565b816040528381526020925086838588010111156200025957600080fd5b600091505b838210156200027d57858201830151818301840152908201906200025e565b838211156200028f5760008385830101525b9695505050505050565b60008060408385031215620002ad57600080fd5b82516001600160401b0380821115620002c557600080fd5b620002d386838701620001e2565b93506020850151915080821115620002ea57600080fd5b50620002f985828601620001e2565b9150509250929050565b600181811c908216806200031857607f821691505b602082108114156200033a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160e0516101005161012051611397620003a660003960006105c101526000610a9701526000610ae601526000610ac101526000610a4501526000610a6e01526113976000f3fe608060405234801561001057600080fd5b506004361061011b5760003560e01c806340c10f19116100b25780639dc29fac11610081578063a9059cbb11610066578063a9059cbb14610242578063d505accf14610255578063dd62ed3e1461026857600080fd5b80639dc29fac1461021c578063a457c2d71461022f57600080fd5b806340c10f19146101c557806370a08231146101d85780637ecebe001461020157806395d89b411461021457600080fd5b806323b872dd116100ee57806323b872dd14610188578063313ce5671461019b5780633644e515146101aa57806339509351146101b257600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd146101615780631c9c790314610173575b600080fd5b6101286102a1565b604051610135919061127c565b60405180910390f35b61015161014c366004611252565b610333565b6040519015158152602001610135565b6002545b604051908152602001610135565b6101866101813660046111a3565b610349565b005b6101516101963660046111a3565b610359565b60405160128152602001610135565b61016561041d565b6101516101c0366004611252565b61042c565b6101516101d3366004611252565b610468565b6101656101e636600461114e565b6001600160a01b031660009081526020819052604090205490565b61016561020f36600461114e565b610474565b610128610494565b61015161022a366004611252565b6104a3565b61015161023d366004611252565b6104af565b610151610250366004611252565b610560565b6101866102633660046111df565b61056d565b610165610276366004611170565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546102b090611300565b80601f01602080910402602001604051908101604052809291908181526020018280546102dc90611300565b80156103295780601f106102fe57610100808354040283529160200191610329565b820191906000526020600020905b81548152906001019060200180831161030c57829003601f168201915b5050505050905090565b60006103403384846106d1565b50600192915050565b610354838383610829565b505050565b6000610366848484610829565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104055760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61041285338584036106d1565b506001949350505050565b6000610427610a41565b905090565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103409185906104639086906112d1565b6106d1565b60006103408383610b34565b6001600160a01b0381166000908152600560205260408120545b92915050565b6060600480546102b090611300565b60006103408383610c13565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105495760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103fc565b61055633858584036106d1565b5060019392505050565b6000610340338484610829565b834211156105bd5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016103fc565b60007f00000000000000000000000000000000000000000000000000000000000000008888886105ec8c610d98565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061064782610dc0565b9050600061065782878787610e29565b9050896001600160a01b0316816001600160a01b0316146106ba5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016103fc565b6106c58a8a8a6106d1565b50505050505050505050565b6001600160a01b03831661074c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103fc565b6001600160a01b0382166107c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103fc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108a55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103fc565b6001600160a01b0382166109215760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103fc565b6001600160a01b038316600090815260208190526040902054818110156109b05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103fc565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109e79084906112d1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a3391815260200190565b60405180910390a350505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461415610a9057507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b038216610b8a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103fc565b8060026000828254610b9c91906112d1565b90915550506001600160a01b03821660009081526020819052604081208054839290610bc99084906112d1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610c8f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016103fc565b6001600160a01b03821660009081526020819052604090205481811015610d1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016103fc565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d4d9084906112e9565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b600061048e610dcd610a41565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000610e3a87878787610e51565b91509150610e4781610f3e565b5095945050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610e885750600090506003610f35565b8460ff16601b14158015610ea057508460ff16601c14155b15610eb15750600090506004610f35565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015610f05573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610f2e57600060019250925050610f35565b9150600090505b94509492505050565b6000816004811115610f5257610f5261134b565b1415610f5b5750565b6001816004811115610f6f57610f6f61134b565b1415610fbd5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016103fc565b6002816004811115610fd157610fd161134b565b141561101f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016103fc565b60038160048111156110335761103361134b565b14156110a75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016103fc565b60048160048111156110bb576110bb61134b565b141561112f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016103fc565b50565b80356001600160a01b038116811461114957600080fd5b919050565b60006020828403121561116057600080fd5b61116982611132565b9392505050565b6000806040838503121561118357600080fd5b61118c83611132565b915061119a60208401611132565b90509250929050565b6000806000606084860312156111b857600080fd5b6111c184611132565b92506111cf60208501611132565b9150604084013590509250925092565b600080600080600080600060e0888a0312156111fa57600080fd5b61120388611132565b965061121160208901611132565b95506040880135945060608801359350608088013560ff8116811461123557600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561126557600080fd5b61126e83611132565b946020939093013593505050565b600060208083528351808285015260005b818110156112a95785810183015185820160400152820161128d565b818111156112bb576000604083870101525b50601f01601f1916929092016040019392505050565b600082198211156112e4576112e4611335565b500190565b6000828210156112fb576112fb611335565b500390565b600181811c9082168061131457607f821691505b60208210811415610dba57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea2646970667358221220ed3b4925cfa15f103c39c16b0fe3e5310068f0c79ec5e6db95423e3fd6d2559f64736f6c63430008060033",
              "opcodes": "PUSH2 0x140 PUSH1 0x40 MSTORE PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 PUSH2 0x120 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x37 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x173D CODESIZE SUB DUP1 PUSH3 0x173D DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x5A SWAP2 PUSH3 0x299 JUMP JUMPDEST DUP2 DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x31 PUSH1 0xF8 SHL DUP2 MSTORE POP DUP5 DUP5 DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x90 SWAP3 SWAP2 SWAP1 PUSH3 0x13C JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0xA6 SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x13C JUMP JUMPDEST POP POP DUP3 MLOAD PUSH1 0x20 SWAP4 DUP5 ADD KECCAK256 DUP3 MLOAD SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 KECCAK256 PUSH1 0xC0 DUP4 DUP2 MSTORE PUSH1 0xE0 DUP3 SWAP1 MSTORE CHAINID PUSH1 0xA0 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP2 DUP11 ADD DUP2 SWAP1 MSTORE DUP2 DUP4 ADD SWAP9 SWAP1 SWAP9 MSTORE PUSH1 0x60 DUP2 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x80 DUP1 DUP7 ADD SWAP4 SWAP1 SWAP4 MSTORE ADDRESS DUP6 DUP4 ADD MSTORE DUP1 MLOAD DUP1 DUP7 SUB SWAP1 SWAP3 ADD DUP3 MSTORE SWAP4 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP5 ADD SWAP4 SWAP1 SWAP4 KECCAK256 SWAP1 SWAP3 MSTORE PUSH2 0x100 MSTORE POP PUSH3 0x356 SWAP3 POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x14A SWAP1 PUSH3 0x303 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x16E JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x1B9 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x189 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x1B9 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x1B9 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x1B9 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x19C JUMP JUMPDEST POP PUSH3 0x1C7 SWAP3 SWAP2 POP PUSH3 0x1CB JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x1C7 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x1CC JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x1F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x211 JUMPI PUSH3 0x211 PUSH3 0x340 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x23C JUMPI PUSH3 0x23C PUSH3 0x340 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x259 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x27D JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x25E JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x28F JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x2AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x2C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x2D3 DUP7 DUP4 DUP8 ADD PUSH3 0x1E2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x2EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x2F9 DUP6 DUP3 DUP7 ADD PUSH3 0x1E2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x318 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x33A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x1397 PUSH3 0x3A6 PUSH1 0x0 CODECOPY PUSH1 0x0 PUSH2 0x5C1 ADD MSTORE PUSH1 0x0 PUSH2 0xA97 ADD MSTORE PUSH1 0x0 PUSH2 0xAE6 ADD MSTORE PUSH1 0x0 PUSH2 0xAC1 ADD MSTORE PUSH1 0x0 PUSH2 0xA45 ADD MSTORE PUSH1 0x0 PUSH2 0xA6E ADD MSTORE PUSH2 0x1397 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 0x11B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x9DC29FAC GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x242 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x255 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x268 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x21C JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x22F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1C5 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D8 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x201 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x214 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xEE JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x188 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x19B JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x1AA JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1B2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x120 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x13E JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x161 JUMPI DUP1 PUSH4 0x1C9C7903 EQ PUSH2 0x173 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x128 PUSH2 0x2A1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x135 SWAP2 SWAP1 PUSH2 0x127C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x151 PUSH2 0x14C CALLDATASIZE PUSH1 0x4 PUSH2 0x1252 JUMP JUMPDEST PUSH2 0x333 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x135 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x135 JUMP JUMPDEST PUSH2 0x186 PUSH2 0x181 CALLDATASIZE PUSH1 0x4 PUSH2 0x11A3 JUMP JUMPDEST PUSH2 0x349 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x151 PUSH2 0x196 CALLDATASIZE PUSH1 0x4 PUSH2 0x11A3 JUMP JUMPDEST PUSH2 0x359 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x135 JUMP JUMPDEST PUSH2 0x165 PUSH2 0x41D JUMP JUMPDEST PUSH2 0x151 PUSH2 0x1C0 CALLDATASIZE PUSH1 0x4 PUSH2 0x1252 JUMP JUMPDEST PUSH2 0x42C JUMP JUMPDEST PUSH2 0x151 PUSH2 0x1D3 CALLDATASIZE PUSH1 0x4 PUSH2 0x1252 JUMP JUMPDEST PUSH2 0x468 JUMP JUMPDEST PUSH2 0x165 PUSH2 0x1E6 CALLDATASIZE PUSH1 0x4 PUSH2 0x114E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x165 PUSH2 0x20F CALLDATASIZE PUSH1 0x4 PUSH2 0x114E JUMP JUMPDEST PUSH2 0x474 JUMP JUMPDEST PUSH2 0x128 PUSH2 0x494 JUMP JUMPDEST PUSH2 0x151 PUSH2 0x22A CALLDATASIZE PUSH1 0x4 PUSH2 0x1252 JUMP JUMPDEST PUSH2 0x4A3 JUMP JUMPDEST PUSH2 0x151 PUSH2 0x23D CALLDATASIZE PUSH1 0x4 PUSH2 0x1252 JUMP JUMPDEST PUSH2 0x4AF JUMP JUMPDEST PUSH2 0x151 PUSH2 0x250 CALLDATASIZE PUSH1 0x4 PUSH2 0x1252 JUMP JUMPDEST PUSH2 0x560 JUMP JUMPDEST PUSH2 0x186 PUSH2 0x263 CALLDATASIZE PUSH1 0x4 PUSH2 0x11DF JUMP JUMPDEST PUSH2 0x56D JUMP JUMPDEST PUSH2 0x165 PUSH2 0x276 CALLDATASIZE PUSH1 0x4 PUSH2 0x1170 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x2B0 SWAP1 PUSH2 0x1300 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2DC SWAP1 PUSH2 0x1300 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x329 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2FE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x329 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 0x30C JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x340 CALLER DUP5 DUP5 PUSH2 0x6D1 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x354 DUP4 DUP4 DUP4 PUSH2 0x829 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x366 DUP5 DUP5 DUP5 PUSH2 0x829 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x405 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x412 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x6D1 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x427 PUSH2 0xA41 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x340 SWAP2 DUP6 SWAP1 PUSH2 0x463 SWAP1 DUP7 SWAP1 PUSH2 0x12D1 JUMP JUMPDEST PUSH2 0x6D1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x340 DUP4 DUP4 PUSH2 0xB34 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x2B0 SWAP1 PUSH2 0x1300 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x340 DUP4 DUP4 PUSH2 0xC13 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x549 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH2 0x556 CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x6D1 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x340 CALLER DUP5 DUP5 PUSH2 0x829 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x5BD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0x5EC DUP13 PUSH2 0xD98 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0x647 DUP3 PUSH2 0xDC0 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x657 DUP3 DUP8 DUP8 DUP8 PUSH2 0xE29 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x6BA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH2 0x6C5 DUP11 DUP11 DUP11 PUSH2 0x6D1 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x74C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x7C8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x8A5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x921 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x9B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x9E7 SWAP1 DUP5 SWAP1 PUSH2 0x12D1 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA33 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 CHAINID EQ ISZERO PUSH2 0xA90 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH32 0x0 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 DUP3 DUP5 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP4 ADD MSTORE CHAINID PUSH1 0x80 DUP4 ADD MSTORE ADDRESS PUSH1 0xA0 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xC0 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xB8A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3FC JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xB9C SWAP2 SWAP1 PUSH2 0x12D1 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0xBC9 SWAP1 DUP5 SWAP1 PUSH2 0x12D1 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xC8F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xD1E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xD4D SWAP1 DUP5 SWAP1 PUSH2 0x12E9 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE SWAP1 JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x48E PUSH2 0xDCD PUSH2 0xA41 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x22 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x42 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x62 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0xE3A DUP8 DUP8 DUP8 DUP8 PUSH2 0xE51 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0xE47 DUP2 PUSH2 0xF3E JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0xE88 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x3 PUSH2 0xF35 JUMP JUMPDEST DUP5 PUSH1 0xFF AND PUSH1 0x1B EQ ISZERO DUP1 ISZERO PUSH2 0xEA0 JUMPI POP DUP5 PUSH1 0xFF AND PUSH1 0x1C EQ ISZERO JUMPDEST ISZERO PUSH2 0xEB1 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x4 PUSH2 0xF35 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF05 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xF2E JUMPI PUSH1 0x0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0xF35 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0xF52 JUMPI PUSH2 0xF52 PUSH2 0x134B JUMP JUMPDEST EQ ISZERO PUSH2 0xF5B JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0xF6F JUMPI PUSH2 0xF6F PUSH2 0x134B JUMP JUMPDEST EQ ISZERO PUSH2 0xFBD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0xFD1 JUMPI PUSH2 0xFD1 PUSH2 0x134B JUMP JUMPDEST EQ ISZERO PUSH2 0x101F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1033 JUMPI PUSH2 0x1033 PUSH2 0x134B JUMP JUMPDEST EQ ISZERO PUSH2 0x10A7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x4 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x10BB JUMPI PUSH2 0x10BB PUSH2 0x134B JUMP JUMPDEST EQ ISZERO PUSH2 0x112F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1149 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1160 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1169 DUP3 PUSH2 0x1132 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1183 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x118C DUP4 PUSH2 0x1132 JUMP JUMPDEST SWAP2 POP PUSH2 0x119A PUSH1 0x20 DUP5 ADD PUSH2 0x1132 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x11B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x11C1 DUP5 PUSH2 0x1132 JUMP JUMPDEST SWAP3 POP PUSH2 0x11CF PUSH1 0x20 DUP6 ADD PUSH2 0x1132 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x11FA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1203 DUP9 PUSH2 0x1132 JUMP JUMPDEST SWAP7 POP PUSH2 0x1211 PUSH1 0x20 DUP10 ADD PUSH2 0x1132 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1235 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1265 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x126E DUP4 PUSH2 0x1132 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x12A9 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x128D JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x12BB JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x12E4 JUMPI PUSH2 0x12E4 PUSH2 0x1335 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x12FB JUMPI PUSH2 0x12FB PUSH2 0x1335 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1314 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xDBA JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xED EXTCODESIZE 0x49 0x25 0xCF LOG1 0x5F LT EXTCODECOPY CODECOPY 0xC1 PUSH12 0xFE3E5310068F0C79EC5E6DB SWAP6 TIMESTAMP RETURNDATACOPY EXTCODEHASH 0xD6 0xD2 SSTORE SWAP16 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "377:726:69:-:0;;;1049:95:4;996:148;;429:119:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;535:5;1415:4:4;2340:564:16;;;;;;;;;;;;;-1:-1:-1;;;2340:564:16;;;499:5:69;506:7;1980:5:1;1972;:13;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1995:17:1;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;;2426:22:16;;;;;;;2482:25;;;;;;;;;2663;;;;2698:31;;;;2758:13;2739:32;;;;-1:-1:-1;3447:73:16;;2536:117;3447:73;;;1730:25:84;;;1771:18;;;1764:34;;;;1814:18;;;1807:34;;;;1857:18;;;;1850:34;;;;3514:4:16;1900:19:84;;;1893:61;3447:73:16;;;;;;;;;;1702:19:84;;;;3447:73:16;;;3437:84;;;;;;;;2781:85;;;2876:21;;-1:-1:-1;377:726:69;;-1:-1:-1;;;377:726:69;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;377:726:69;;;-1:-1:-1;377:726:69;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:885:84;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;;;;;224:10:84;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:84;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;553:4;543:14;;598:3;593:2;588;580:6;576:15;572:24;569:33;566:2;;;615:1;612;605:12;566:2;637:1;628:10;;647:133;661:2;658:1;655:9;647:133;;;749:14;;;745:23;;739:30;718:14;;;714:23;;707:63;672:10;;;;647:133;;;798:2;795:1;792:9;789:2;;;857:1;852:2;847;839:6;835:15;831:24;824:35;789:2;887:6;78:821;-1:-1:-1;;;;;;78:821:84:o;904:562::-;1003:6;1011;1064:2;1052:9;1043:7;1039:23;1035:32;1032:2;;;1080:1;1077;1070:12;1032:2;1107:16;;-1:-1:-1;;;;;1172:14:84;;;1169:2;;;1199:1;1196;1189:12;1169:2;1222:61;1275:7;1266:6;1255:9;1251:22;1222:61;:::i;:::-;1212:71;;1329:2;1318:9;1314:18;1308:25;1292:41;;1358:2;1348:8;1345:16;1342:2;;;1374:1;1371;1364:12;1342:2;;1397:63;1452:7;1441:8;1430:9;1426:24;1397:63;:::i;:::-;1387:73;;;1022:444;;;;;:::o;1965:380::-;2044:1;2040:12;;;;2087;;;2108:2;;2162:4;2154:6;2150:17;2140:27;;2108:2;2215;2207:6;2204:14;2184:18;2181:38;2178:2;;;2261:10;2256:3;2252:20;2249:1;2242:31;2296:4;2293:1;2286:15;2324:4;2321:1;2314:15;2178:2;;2020:325;;;:::o;2350:127::-;2411:10;2406:3;2402:20;2399:1;2392:31;2442:4;2439:1;2432:15;2466:4;2463:1;2456:15;2382:95;377:726:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@DOMAIN_SEPARATOR_827": {
                  "entryPoint": 1053,
                  "id": 827,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_afterTokenTransfer_584": {
                  "entryPoint": null,
                  "id": 584,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_562": {
                  "entryPoint": 1745,
                  "id": 562,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_573": {
                  "entryPoint": null,
                  "id": 573,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_3178": {
                  "entryPoint": null,
                  "id": 3178,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_burn_517": {
                  "entryPoint": 3091,
                  "id": 517,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_domainSeparatorV4_3151": {
                  "entryPoint": 2625,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_hashTypedDataV4_3194": {
                  "entryPoint": 3520,
                  "id": 3194,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_mint_445": {
                  "entryPoint": 2868,
                  "id": 445,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_msgSender_2403": {
                  "entryPoint": null,
                  "id": 2403,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_throwError_2753": {
                  "entryPoint": 3902,
                  "id": 2753,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_transfer_389": {
                  "entryPoint": 2089,
                  "id": 389,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_useNonce_856": {
                  "entryPoint": 3480,
                  "id": 856,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@allowance_177": {
                  "entryPoint": null,
                  "id": 177,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_198": {
                  "entryPoint": 819,
                  "id": 198,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_138": {
                  "entryPoint": null,
                  "id": 138,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@burn_16211": {
                  "entryPoint": 1187,
                  "id": 16211,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@current_2431": {
                  "entryPoint": null,
                  "id": 2431,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_114": {
                  "entryPoint": null,
                  "id": 114,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_312": {
                  "entryPoint": 1199,
                  "id": 312,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_273": {
                  "entryPoint": 1068,
                  "id": 273,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increment_2445": {
                  "entryPoint": null,
                  "id": 2445,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@masterTransfer_16227": {
                  "entryPoint": 841,
                  "id": 16227,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@mint_16194": {
                  "entryPoint": 1128,
                  "id": 16194,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@name_94": {
                  "entryPoint": 673,
                  "id": 94,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@nonces_816": {
                  "entryPoint": 1140,
                  "id": 816,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@permit_800": {
                  "entryPoint": 1389,
                  "id": 800,
                  "parameterSlots": 7,
                  "returnSlots": 0
                },
                "@recover_3019": {
                  "entryPoint": 3625,
                  "id": 3019,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@symbol_104": {
                  "entryPoint": 1172,
                  "id": 104,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@toTypedDataHash_3056": {
                  "entryPoint": null,
                  "id": 3056,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@totalSupply_124": {
                  "entryPoint": null,
                  "id": 124,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_246": {
                  "entryPoint": 857,
                  "id": 246,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_159": {
                  "entryPoint": 1376,
                  "id": 159,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@tryRecover_2986": {
                  "entryPoint": 3665,
                  "id": 2986,
                  "parameterSlots": 4,
                  "returnSlots": 2
                },
                "abi_decode_address": {
                  "entryPoint": 4402,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 4430,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 4464,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 4515,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32": {
                  "entryPoint": 4575,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 7
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 4690,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 7,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 4732,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 4817,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 4841,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 4864,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 4917,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x21": {
                  "entryPoint": 4939,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:12676:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:84",
                            "type": ""
                          }
                        ],
                        "src": "215:186:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:84",
                            "type": ""
                          }
                        ],
                        "src": "406:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:84",
                            "type": ""
                          }
                        ],
                        "src": "671:328:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1174:523:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1221:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1230:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1233:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1223:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1223:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1223:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1195:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1204:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1191:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1191:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1216:3:84",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1187:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1187:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1184:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1246:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1275:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1256:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1256:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1246:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1294:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1327:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1338:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1323:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1323:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1304:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1304:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1294:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1351:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1378:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1389:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1374:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1374:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1361:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1361:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1351:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1402:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1429:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1440:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1425:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1425:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1412:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1412:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1402:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1453:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1483:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1494:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1479:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1479:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1466:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1466:33:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1457:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1547:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1556:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1559:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1549:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1549:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1549:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1521:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1532:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1539:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1528:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1528:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1518:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1518:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1511:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1511:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1508:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1572:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1582:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "1572:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1596:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1623:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1634:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1619:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1619:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1606:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1606:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "1596:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1648:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1675:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1686:3:84",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1671:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1671:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1658:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1658:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value6",
                                  "nodeType": "YulIdentifier",
                                  "src": "1648:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1092:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1103:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1115:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1123:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1131:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1139:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1147:6:84",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "1155:6:84",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "1163:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1004:693:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1789:167:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1835:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1844:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1847:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1837:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1837:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1837:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1810:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1819:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1806:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1806:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1831:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1802:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1802:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1799:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1860:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1889:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1870:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1870:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1860:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1908:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1935:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1946:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1931:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1931:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1918:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1918:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1908:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1747:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1758:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1770:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1778:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1702:254:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2209:196:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2226:3:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2231:66:84",
                                    "type": "",
                                    "value": "0x1901000000000000000000000000000000000000000000000000000000000000"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2219:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2219:79:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2219:79:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2318:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2323:1:84",
                                        "type": "",
                                        "value": "2"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2314:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2314:11:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2327:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2307:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2307:27:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2307:27:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2354:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2359:2:84",
                                        "type": "",
                                        "value": "34"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2350:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2350:12:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2364:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2343:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2343:28:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2343:28:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2380:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2391:3:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2396:2:84",
                                    "type": "",
                                    "value": "66"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2387:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2387:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "2380:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2177:3:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2182:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2190:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "2201:3:84",
                            "type": ""
                          }
                        ],
                        "src": "1961:444:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2505:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2515:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2527:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2538:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2523:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2523:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2515:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2557:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "2582:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "2575:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2575:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "2568:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2568:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2550:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2550:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2550:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2474:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2485:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2496:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2410:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2703:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2713:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2725:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2736:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2721:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2721:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2713:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2755:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2766:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2748:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2748:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2748:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2672:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2683:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2694:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2602:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3025:373:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3035:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3047:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3058:3:84",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3043:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3043:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3035:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3078:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3089:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3071:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3071:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3071:25:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3105:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3115:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3109:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3177:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3188:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3173:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3173:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3197:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3205:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3193:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3193:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3166:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3166:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3166:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3229:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3240:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3225:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3225:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "3249:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3257:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3245:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3245:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3218:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3218:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3218:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3281:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3292:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3277:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3277:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3297:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3270:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3270:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3270:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3324:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3335:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3320:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3320:19:84"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3341:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3313:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3313:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3313:35:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3368:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3379:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3364:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3364:19:84"
                                  },
                                  {
                                    "name": "value5",
                                    "nodeType": "YulIdentifier",
                                    "src": "3385:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3357:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3357:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3357:35:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2954:9:84",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "2965:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2973:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2981:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2989:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2997:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3005:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3016:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2784:614:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3616:299:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3626:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3638:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3649:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3634:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3634:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3626:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3669:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3680:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3662:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3662:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3662:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3707:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3718:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3703:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3703:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3723:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3696:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3696:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3696:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3750:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3761:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3746:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3746:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3766:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3739:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3739:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3739:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3793:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3804:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3789:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3789:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3809:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3782:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3782:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3782:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3836:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3847:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3832:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3832:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3857:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3865:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3853:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3853:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3825:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3825:84:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3825:84:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3553:9:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "3564:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "3572:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3580:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3588:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3596:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3607:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3403:512:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4101:217:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4111:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4123:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4134:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4119:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4119:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4111:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4154:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4165:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4147:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4147:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4147:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4192:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4203:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4188:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4188:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4212:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4220:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4208:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4208:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4181:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4181:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4181:45:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4246:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4257:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4242:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4242:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4262:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4235:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4235:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4235:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4289:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4300:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4285:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4285:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "4305:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4278:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4278:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4278:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4046:9:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "4057:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "4065:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4073:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4081:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4092:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3920:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4444:535:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4454:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4464:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4458:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4482:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4493:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4475:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4475:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4475:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4505:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4525:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4519:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4519:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4509:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4552:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4563:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4548:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4548:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4568:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4541:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4541:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4541:34:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4584:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4593:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4588:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4653:90:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4682:9:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4693:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4678:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4678:17:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4697:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4674:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4674:26:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "4716:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "4724:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "4712:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "4712:14:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4728:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4708:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4708:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "4702:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4702:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4667:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4667:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4667:66:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4614:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4617:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4611:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4611:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4625:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4627:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4636:1:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4639:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4632:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4632:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4627:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4607:3:84",
                                "statements": []
                              },
                              "src": "4603:140:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4777:66:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4806:9:84"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4817:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4802:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4802:22:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4826:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4798:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4798:31:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4831:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4791:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4791:42:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4791:42:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4758:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4761:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4755:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4755:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4752:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4852:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4868:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "4887:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4895:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4883:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4883:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4900:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4879:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4879:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4864:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4864:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4970:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4860:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4860:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4852:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4413:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4424:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4435:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4323:656:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5158:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5175:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5186:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5168:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5168:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5168:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5209:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5220:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5205:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5205:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5225:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5198:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5198:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5198:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5248:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5259:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5244:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5244:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5264:26:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5237:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5237:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5237:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5300:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5312:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5323:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5308:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5308:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5300:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5135:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5149:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4984:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5511:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5528:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5539:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5521:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5521:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5521:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5562:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5573:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5558:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5558:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5578:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5551:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5551:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5551:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5601:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5612:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5597:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5597:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5617:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5590:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5590:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5590:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5672:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5683:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5668:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5668:18:84"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5688:5:84",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5661:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5661:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5661:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5703:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5715:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5726:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5711:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5711:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5703:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5488:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5502:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5337:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5915:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5932:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5943:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5925:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5925:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5925:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5966:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5977:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5962:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5962:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5982:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5955:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5955:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5955:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6005:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6016:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6001:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6001:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6021:34:84",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5994:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5994:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5994:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6076:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6087:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6072:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6072:18:84"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6092:4:84",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6065:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6065:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6065:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6106:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6118:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6129:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6114:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6114:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6106:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5892:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5906:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5741:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6318:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6335:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6346:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6328:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6328:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6328:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6369:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6380:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6365:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6365:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6385:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6358:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6358:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6358:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6408:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6419:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6404:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6404:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265206c656e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6424:33:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature length"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6397:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6397:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6397:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6467:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6479:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6490:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6475:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6475:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6467:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6295:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6309:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6144:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6678:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6695:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6706:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6688:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6688:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6688:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6729:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6740:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6725:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6725:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6745:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6718:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6718:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6718:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6768:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6779:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6764:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6764:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6784:34:84",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6757:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6757:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6757:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6839:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6850:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6835:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6835:18:84"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6855:4:84",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6828:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6828:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6828:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6869:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6881:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6892:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6877:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6877:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6869:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6655:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6669:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6504:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7081:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7098:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7109:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7091:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7091:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7091:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7132:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7143:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7128:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7128:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7148:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7121:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7121:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7121:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7171:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7182:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7167:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7167:18:84"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a206578706972656420646561646c696e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7187:31:84",
                                    "type": "",
                                    "value": "ERC20Permit: expired deadline"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7160:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7160:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7160:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7228:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7240:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7251:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7236:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7236:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7228:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7058:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7072:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6907:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7439:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7456:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7467:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7449:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7449:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7449:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7490:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7501:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7486:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7486:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7506:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7479:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7479:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7479:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7529:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7540:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7525:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7525:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7545:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7518:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7518:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7518:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7600:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7611:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7596:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7596:18:84"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7616:8:84",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7589:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7589:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7589:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7634:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7646:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7657:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7642:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7642:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7634:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7416:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7430:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7265:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7846:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7863:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7874:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7856:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7856:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7856:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7897:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7908:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7893:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7893:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7913:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7886:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7886:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7886:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7936:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7947:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7932:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7932:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202773272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7952:34:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 's' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7925:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7925:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7925:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8007:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8018:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8003:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8003:18:84"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8023:4:84",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7996:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7996:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7996:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8037:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8049:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8060:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8045:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8045:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8037:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7823:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7837:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7672:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8249:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8266:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8277:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8259:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8259:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8259:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8300:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8311:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8296:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8296:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8316:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8289:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8289:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8289:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8339:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8350:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8335:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8335:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202776272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8355:34:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 'v' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8328:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8328:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8328:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8410:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8421:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8406:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8406:18:84"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8426:4:84",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8399:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8399:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8399:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8440:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8452:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8463:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8448:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8448:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8440:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8226:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8240:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8075:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8652:180:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8669:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8680:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8662:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8662:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8662:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8703:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8714:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8699:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8699:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8719:2:84",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8692:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8692:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8692:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8742:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8753:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8738:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8738:18:84"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8758:32:84",
                                    "type": "",
                                    "value": "ERC20Permit: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8731:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8731:60:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8731:60:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8800:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8812:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8823:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8808:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8808:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8800:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8629:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8643:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8478:354:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9011:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9028:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9039:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9021:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9021:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9021:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9062:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9073:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9058:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9058:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9078:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9051:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9051:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9051:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9101:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9112:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9097:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9097:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9117:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9090:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9090:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9090:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9172:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9183:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9168:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9168:18:84"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9188:10:84",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9161:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9161:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9161:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9208:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9220:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9231:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9216:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9216:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9208:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8988:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9002:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8837:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9420:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9437:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9448:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9430:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9430:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9430:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9471:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9482:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9467:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9467:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9487:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9460:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9460:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9460:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9510:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9521:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9506:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9506:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9526:34:84",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9499:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9499:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9499:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9581:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9592:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9577:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9577:18:84"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9597:3:84",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9570:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9570:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9570:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9610:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9622:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9633:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9618:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9618:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9610:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9397:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9411:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9246:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9822:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9839:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9850:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9832:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9832:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9832:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9873:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9884:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9869:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9869:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9889:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9862:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9862:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9862:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9912:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9923:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9908:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9908:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9928:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9901:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9901:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9901:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9983:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9994:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9979:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9979:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9999:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9972:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9972:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9972:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10016:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10028:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10039:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10024:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10024:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10016:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9799:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9813:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9648:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10228:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10245:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10256:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10238:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10238:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10238:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10279:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10290:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10275:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10275:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10295:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10268:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10268:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10268:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10318:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10329:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10314:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10314:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10334:34:84",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10307:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10307:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10307:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10389:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10400:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10385:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10385:18:84"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10405:6:84",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10378:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10378:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10378:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10421:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10433:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10444:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10429:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10429:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10421:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10205:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10219:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10054:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10633:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10650:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10661:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10643:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10643:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10643:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10684:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10695:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10680:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10680:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10700:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10673:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10673:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10673:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10723:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10734:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10719:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10719:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10739:34:84",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10712:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10712:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10712:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10794:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10805:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10790:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10790:18:84"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10810:7:84",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10783:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10783:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10783:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10827:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10839:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10850:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10835:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10835:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10827:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10610:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10624:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10459:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11039:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11056:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11067:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11049:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11049:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11049:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11090:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11101:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11086:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11086:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11106:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11079:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11079:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11079:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11129:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11140:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11125:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11125:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11145:33:84",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11118:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11118:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11118:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11188:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11200:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11211:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11196:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11196:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11188:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11016:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11030:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10865:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11326:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11336:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11348:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11359:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11344:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11344:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11336:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11378:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11389:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11371:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11371:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11371:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11295:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11306:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11317:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11225:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11504:87:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11514:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11526:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11537:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11522:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11522:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11514:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11556:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11571:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11579:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11567:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11567:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11549:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11549:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11549:36:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11473:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11484:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11495:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11407:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11644:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11671:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "11673:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11673:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11673:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "11660:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "11667:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "11663:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11663:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11657:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11657:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11654:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11702:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "11713:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "11716:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11709:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11709:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "11702:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "11627:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "11630:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "11636:3:84",
                            "type": ""
                          }
                        ],
                        "src": "11596:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11778:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11800:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "11802:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11802:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11802:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "11794:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "11797:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11791:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11791:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11788:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11831:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "11843:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "11846:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "11839:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11839:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "11831:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "11760:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "11763:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "11769:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11729:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11914:382:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11924:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11938:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "11941:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "11934:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11934:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "11924:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11955:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "11985:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11991:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "11981:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11981:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "11959:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12032:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12034:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "12048:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12056:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "12044:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12044:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "12034:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "12012:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "12005:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12005:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12002:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12122:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12143:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12146:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12136:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12136:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12136:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12244:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12247:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12237:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12237:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12237:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12272:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12275:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "12265:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12265:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12265:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "12078:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "12101:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12109:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "12098:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12098:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "12075:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12075:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12072:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "11894:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "11903:6:84",
                            "type": ""
                          }
                        ],
                        "src": "11859:437:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12333:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12350:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12353:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12343:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12343:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12343:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12447:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12450:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12440:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12440:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12440:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12471:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12474:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "12464:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12464:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12464:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "12301:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12522:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12539:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12542:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12532:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12532:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12532:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12636:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12639:4:84",
                                    "type": "",
                                    "value": "0x21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12629:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12629:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12629:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12660:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12663:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "12653:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12653:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12653:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x21",
                        "nodeType": "YulFunctionDefinition",
                        "src": "12490:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        value3 := calldataload(add(headStart, 96))\n        let value := calldataload(add(headStart, 128))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value4 := value\n        value5 := calldataload(add(headStart, 160))\n        value6 := calldataload(add(headStart, 192))\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        mstore(pos, 0x1901000000000000000000000000000000000000000000000000000000000000)\n        mstore(add(pos, 2), value0)\n        mstore(add(pos, 34), value1)\n        end := add(pos, 66)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        mstore(headStart, value0)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), and(value2, _1))\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: burn amount exceeds balan\")\n        mstore(add(headStart, 96), \"ce\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature length\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"ERC20Permit: expired deadline\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature 's' val\")\n        mstore(add(headStart, 96), \"ue\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature 'v' val\")\n        mstore(add(headStart, 96), \"ue\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"ERC20Permit: invalid signature\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC20: burn from the zero addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "716": [
                  {
                    "length": 32,
                    "start": 1473
                  }
                ],
                "3063": [
                  {
                    "length": 32,
                    "start": 2670
                  }
                ],
                "3065": [
                  {
                    "length": 32,
                    "start": 2629
                  }
                ],
                "3067": [
                  {
                    "length": 32,
                    "start": 2753
                  }
                ],
                "3069": [
                  {
                    "length": 32,
                    "start": 2790
                  }
                ],
                "3071": [
                  {
                    "length": 32,
                    "start": 2711
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b506004361061011b5760003560e01c806340c10f19116100b25780639dc29fac11610081578063a9059cbb11610066578063a9059cbb14610242578063d505accf14610255578063dd62ed3e1461026857600080fd5b80639dc29fac1461021c578063a457c2d71461022f57600080fd5b806340c10f19146101c557806370a08231146101d85780637ecebe001461020157806395d89b411461021457600080fd5b806323b872dd116100ee57806323b872dd14610188578063313ce5671461019b5780633644e515146101aa57806339509351146101b257600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd146101615780631c9c790314610173575b600080fd5b6101286102a1565b604051610135919061127c565b60405180910390f35b61015161014c366004611252565b610333565b6040519015158152602001610135565b6002545b604051908152602001610135565b6101866101813660046111a3565b610349565b005b6101516101963660046111a3565b610359565b60405160128152602001610135565b61016561041d565b6101516101c0366004611252565b61042c565b6101516101d3366004611252565b610468565b6101656101e636600461114e565b6001600160a01b031660009081526020819052604090205490565b61016561020f36600461114e565b610474565b610128610494565b61015161022a366004611252565b6104a3565b61015161023d366004611252565b6104af565b610151610250366004611252565b610560565b6101866102633660046111df565b61056d565b610165610276366004611170565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546102b090611300565b80601f01602080910402602001604051908101604052809291908181526020018280546102dc90611300565b80156103295780601f106102fe57610100808354040283529160200191610329565b820191906000526020600020905b81548152906001019060200180831161030c57829003601f168201915b5050505050905090565b60006103403384846106d1565b50600192915050565b610354838383610829565b505050565b6000610366848484610829565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104055760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61041285338584036106d1565b506001949350505050565b6000610427610a41565b905090565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103409185906104639086906112d1565b6106d1565b60006103408383610b34565b6001600160a01b0381166000908152600560205260408120545b92915050565b6060600480546102b090611300565b60006103408383610c13565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105495760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103fc565b61055633858584036106d1565b5060019392505050565b6000610340338484610829565b834211156105bd5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016103fc565b60007f00000000000000000000000000000000000000000000000000000000000000008888886105ec8c610d98565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061064782610dc0565b9050600061065782878787610e29565b9050896001600160a01b0316816001600160a01b0316146106ba5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016103fc565b6106c58a8a8a6106d1565b50505050505050505050565b6001600160a01b03831661074c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103fc565b6001600160a01b0382166107c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103fc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108a55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103fc565b6001600160a01b0382166109215760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103fc565b6001600160a01b038316600090815260208190526040902054818110156109b05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103fc565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109e79084906112d1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a3391815260200190565b60405180910390a350505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461415610a9057507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b038216610b8a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103fc565b8060026000828254610b9c91906112d1565b90915550506001600160a01b03821660009081526020819052604081208054839290610bc99084906112d1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610c8f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016103fc565b6001600160a01b03821660009081526020819052604090205481811015610d1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016103fc565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d4d9084906112e9565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b600061048e610dcd610a41565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000610e3a87878787610e51565b91509150610e4781610f3e565b5095945050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610e885750600090506003610f35565b8460ff16601b14158015610ea057508460ff16601c14155b15610eb15750600090506004610f35565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015610f05573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610f2e57600060019250925050610f35565b9150600090505b94509492505050565b6000816004811115610f5257610f5261134b565b1415610f5b5750565b6001816004811115610f6f57610f6f61134b565b1415610fbd5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016103fc565b6002816004811115610fd157610fd161134b565b141561101f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016103fc565b60038160048111156110335761103361134b565b14156110a75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016103fc565b60048160048111156110bb576110bb61134b565b141561112f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016103fc565b50565b80356001600160a01b038116811461114957600080fd5b919050565b60006020828403121561116057600080fd5b61116982611132565b9392505050565b6000806040838503121561118357600080fd5b61118c83611132565b915061119a60208401611132565b90509250929050565b6000806000606084860312156111b857600080fd5b6111c184611132565b92506111cf60208501611132565b9150604084013590509250925092565b600080600080600080600060e0888a0312156111fa57600080fd5b61120388611132565b965061121160208901611132565b95506040880135945060608801359350608088013560ff8116811461123557600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561126557600080fd5b61126e83611132565b946020939093013593505050565b600060208083528351808285015260005b818110156112a95785810183015185820160400152820161128d565b818111156112bb576000604083870101525b50601f01601f1916929092016040019392505050565b600082198211156112e4576112e4611335565b500190565b6000828210156112fb576112fb611335565b500390565b600181811c9082168061131457607f821691505b60208210811415610dba57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea2646970667358221220ed3b4925cfa15f103c39c16b0fe3e5310068f0c79ec5e6db95423e3fd6d2559f64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x11B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x9DC29FAC GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x242 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x255 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x268 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x21C JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x22F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1C5 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D8 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x201 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x214 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xEE JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x188 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x19B JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x1AA JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1B2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x120 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x13E JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x161 JUMPI DUP1 PUSH4 0x1C9C7903 EQ PUSH2 0x173 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x128 PUSH2 0x2A1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x135 SWAP2 SWAP1 PUSH2 0x127C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x151 PUSH2 0x14C CALLDATASIZE PUSH1 0x4 PUSH2 0x1252 JUMP JUMPDEST PUSH2 0x333 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x135 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x135 JUMP JUMPDEST PUSH2 0x186 PUSH2 0x181 CALLDATASIZE PUSH1 0x4 PUSH2 0x11A3 JUMP JUMPDEST PUSH2 0x349 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x151 PUSH2 0x196 CALLDATASIZE PUSH1 0x4 PUSH2 0x11A3 JUMP JUMPDEST PUSH2 0x359 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x135 JUMP JUMPDEST PUSH2 0x165 PUSH2 0x41D JUMP JUMPDEST PUSH2 0x151 PUSH2 0x1C0 CALLDATASIZE PUSH1 0x4 PUSH2 0x1252 JUMP JUMPDEST PUSH2 0x42C JUMP JUMPDEST PUSH2 0x151 PUSH2 0x1D3 CALLDATASIZE PUSH1 0x4 PUSH2 0x1252 JUMP JUMPDEST PUSH2 0x468 JUMP JUMPDEST PUSH2 0x165 PUSH2 0x1E6 CALLDATASIZE PUSH1 0x4 PUSH2 0x114E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x165 PUSH2 0x20F CALLDATASIZE PUSH1 0x4 PUSH2 0x114E JUMP JUMPDEST PUSH2 0x474 JUMP JUMPDEST PUSH2 0x128 PUSH2 0x494 JUMP JUMPDEST PUSH2 0x151 PUSH2 0x22A CALLDATASIZE PUSH1 0x4 PUSH2 0x1252 JUMP JUMPDEST PUSH2 0x4A3 JUMP JUMPDEST PUSH2 0x151 PUSH2 0x23D CALLDATASIZE PUSH1 0x4 PUSH2 0x1252 JUMP JUMPDEST PUSH2 0x4AF JUMP JUMPDEST PUSH2 0x151 PUSH2 0x250 CALLDATASIZE PUSH1 0x4 PUSH2 0x1252 JUMP JUMPDEST PUSH2 0x560 JUMP JUMPDEST PUSH2 0x186 PUSH2 0x263 CALLDATASIZE PUSH1 0x4 PUSH2 0x11DF JUMP JUMPDEST PUSH2 0x56D JUMP JUMPDEST PUSH2 0x165 PUSH2 0x276 CALLDATASIZE PUSH1 0x4 PUSH2 0x1170 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x2B0 SWAP1 PUSH2 0x1300 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2DC SWAP1 PUSH2 0x1300 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x329 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2FE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x329 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 0x30C JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x340 CALLER DUP5 DUP5 PUSH2 0x6D1 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x354 DUP4 DUP4 DUP4 PUSH2 0x829 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x366 DUP5 DUP5 DUP5 PUSH2 0x829 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x405 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x412 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x6D1 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x427 PUSH2 0xA41 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x340 SWAP2 DUP6 SWAP1 PUSH2 0x463 SWAP1 DUP7 SWAP1 PUSH2 0x12D1 JUMP JUMPDEST PUSH2 0x6D1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x340 DUP4 DUP4 PUSH2 0xB34 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x2B0 SWAP1 PUSH2 0x1300 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x340 DUP4 DUP4 PUSH2 0xC13 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x549 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH2 0x556 CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x6D1 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x340 CALLER DUP5 DUP5 PUSH2 0x829 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x5BD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0x5EC DUP13 PUSH2 0xD98 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0x647 DUP3 PUSH2 0xDC0 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x657 DUP3 DUP8 DUP8 DUP8 PUSH2 0xE29 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x6BA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH2 0x6C5 DUP11 DUP11 DUP11 PUSH2 0x6D1 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x74C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x7C8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x8A5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x921 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x9B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x9E7 SWAP1 DUP5 SWAP1 PUSH2 0x12D1 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA33 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 CHAINID EQ ISZERO PUSH2 0xA90 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH32 0x0 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 DUP3 DUP5 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP4 ADD MSTORE CHAINID PUSH1 0x80 DUP4 ADD MSTORE ADDRESS PUSH1 0xA0 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xC0 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xB8A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3FC JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xB9C SWAP2 SWAP1 PUSH2 0x12D1 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0xBC9 SWAP1 DUP5 SWAP1 PUSH2 0x12D1 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xC8F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xD1E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xD4D SWAP1 DUP5 SWAP1 PUSH2 0x12E9 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE SWAP1 JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x48E PUSH2 0xDCD PUSH2 0xA41 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x22 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x42 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x62 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0xE3A DUP8 DUP8 DUP8 DUP8 PUSH2 0xE51 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0xE47 DUP2 PUSH2 0xF3E JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0xE88 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x3 PUSH2 0xF35 JUMP JUMPDEST DUP5 PUSH1 0xFF AND PUSH1 0x1B EQ ISZERO DUP1 ISZERO PUSH2 0xEA0 JUMPI POP DUP5 PUSH1 0xFF AND PUSH1 0x1C EQ ISZERO JUMPDEST ISZERO PUSH2 0xEB1 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x4 PUSH2 0xF35 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF05 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xF2E JUMPI PUSH1 0x0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0xF35 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0xF52 JUMPI PUSH2 0xF52 PUSH2 0x134B JUMP JUMPDEST EQ ISZERO PUSH2 0xF5B JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0xF6F JUMPI PUSH2 0xF6F PUSH2 0x134B JUMP JUMPDEST EQ ISZERO PUSH2 0xFBD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0xFD1 JUMPI PUSH2 0xFD1 PUSH2 0x134B JUMP JUMPDEST EQ ISZERO PUSH2 0x101F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1033 JUMPI PUSH2 0x1033 PUSH2 0x134B JUMP JUMPDEST EQ ISZERO PUSH2 0x10A7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x4 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x10BB JUMPI PUSH2 0x10BB PUSH2 0x134B JUMP JUMPDEST EQ ISZERO PUSH2 0x112F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3FC JUMP JUMPDEST POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1149 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1160 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1169 DUP3 PUSH2 0x1132 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1183 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x118C DUP4 PUSH2 0x1132 JUMP JUMPDEST SWAP2 POP PUSH2 0x119A PUSH1 0x20 DUP5 ADD PUSH2 0x1132 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x11B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x11C1 DUP5 PUSH2 0x1132 JUMP JUMPDEST SWAP3 POP PUSH2 0x11CF PUSH1 0x20 DUP6 ADD PUSH2 0x1132 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x11FA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1203 DUP9 PUSH2 0x1132 JUMP JUMPDEST SWAP7 POP PUSH2 0x1211 PUSH1 0x20 DUP10 ADD PUSH2 0x1132 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1235 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1265 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x126E DUP4 PUSH2 0x1132 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x12A9 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x128D JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x12BB JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x12E4 JUMPI PUSH2 0x12E4 PUSH2 0x1335 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x12FB JUMPI PUSH2 0x12FB PUSH2 0x1335 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1314 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xDBA JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xED EXTCODESIZE 0x49 0x25 0xCF LOG1 0x5F LT EXTCODECOPY CODECOPY 0xC1 PUSH12 0xFE3E5310068F0C79EC5E6DB SWAP6 TIMESTAMP RETURNDATACOPY EXTCODEHASH 0xD6 0xD2 SSTORE SWAP16 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "377:726:69:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4181:166;;;;;;:::i;:::-;;:::i;:::-;;;2575:14:84;;2568:22;2550:41;;2538:2;2523:18;4181:166:1;2505:92:84;3172:106:1;3259:12;;3172:106;;;2748:25:84;;;2736:2;2721:18;3172:106:1;2703:76:84;954:147:69;;;;;;:::i;:::-;;:::i;:::-;;4814:478:1;;;;;;:::i;:::-;;:::i;3021:91::-;;;3103:2;11549:36:84;;11537:2;11522:18;3021:91:1;11504:87:84;2426:113:4;;;:::i;5687:212:1:-;;;;;;:::i;:::-;;:::i;684:129:69:-;;;;;;:::i;:::-;;:::i;3336:125:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3436:18:1;3410:7;3436:18;;;;;;;;;;;;3336:125;2176:126:4;;;;;;:::i;:::-;;:::i;2295:102:1:-;;;:::i;819:129:69:-;;;;;;:::i;:::-;;:::i;6386:405:1:-;;;;;;:::i;:::-;;:::i;3664:172::-;;;;;;:::i;:::-;;:::i;1489:626:4:-;;;;;;:::i;:::-;;:::i;3894:149:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4009:18:1;;;3983:7;4009:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3894:149;2084:98;2138:13;2170:5;2163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98;:::o;4181:166::-;4264:4;4280:39;666:10:12;4303:7:1;4312:6;4280:8;:39::i;:::-;-1:-1:-1;4336:4:1;4181:166;;;;:::o;954:147:69:-;1067:27;1077:4;1083:2;1087:6;1067:9;:27::i;:::-;954:147;;;:::o;4814:478:1:-;4950:4;4966:36;4976:6;4984:9;4995:6;4966:9;:36::i;:::-;-1:-1:-1;;;;;5040:19:1;;5013:24;5040:19;;;:11;:19;;;;;;;;666:10:12;5040:33:1;;;;;;;;5091:26;;;;5083:79;;;;-1:-1:-1;;;5083:79:1;;9039:2:84;5083:79:1;;;9021:21:84;9078:2;9058:18;;;9051:30;9117:34;9097:18;;;9090:62;9188:10;9168:18;;;9161:38;9216:19;;5083:79:1;;;;;;;;;5196:57;5205:6;666:10:12;5246:6:1;5227:16;:25;5196:8;:57::i;:::-;-1:-1:-1;5281:4:1;;4814:478;-1:-1:-1;;;;4814:478:1:o;2426:113:4:-;2486:7;2512:20;:18;:20::i;:::-;2505:27;;2426:113;:::o;5687:212:1:-;666:10:12;5775:4:1;5823:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5823:34:1;;;;;;;;;;5775:4;;5791:80;;5814:7;;5823:47;;5860:10;;5823:47;:::i;:::-;5791:8;:80::i;684:129:69:-;747:4;763:22;769:7;778:6;763:5;:22::i;2176:126:4:-;-1:-1:-1;;;;;2271:14:4;;2245:7;2271:14;;;:7;:14;;;;;864::13;2271:24:4;2264:31;2176:126;-1:-1:-1;;2176:126:4:o;2295:102:1:-;2351:13;2383:7;2376:14;;;;;:::i;819:129:69:-;882:4;898:22;904:7;913:6;898:5;:22::i;6386:405:1:-;666:10:12;6479:4:1;6522:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6522:34:1;;;;;;;;;;6574:35;;;;6566:85;;;;-1:-1:-1;;;6566:85:1;;10661:2:84;6566:85:1;;;10643:21:84;10700:2;10680:18;;;10673:30;10739:34;10719:18;;;10712:62;10810:7;10790:18;;;10783:35;10835:19;;6566:85:1;10633:227:84;6566:85:1;6685:67;666:10:12;6708:7:1;6736:15;6717:16;:34;6685:8;:67::i;:::-;-1:-1:-1;6780:4:1;;6386:405;-1:-1:-1;;;6386:405:1:o;3664:172::-;3750:4;3766:42;666:10:12;3790:9:1;3801:6;3766:9;:42::i;1489:626:4:-;1724:8;1705:15;:27;;1697:69;;;;-1:-1:-1;;;1697:69:4;;7109:2:84;1697:69:4;;;7091:21:84;7148:2;7128:18;;;7121:30;7187:31;7167:18;;;7160:59;7236:18;;1697:69:4;7081:179:84;1697:69:4;1777:18;1819:16;1837:5;1844:7;1853:5;1860:16;1870:5;1860:9;:16::i;:::-;1808:79;;;;;;3071:25:84;;;;-1:-1:-1;;;;;3193:15:84;;;3173:18;;;3166:43;3245:15;;;;3225:18;;;3218:43;3277:18;;;3270:34;3320:19;;;3313:35;3364:19;;;3357:35;;;3043:19;;1808:79:4;;;;;;;;;;;;1798:90;;;;;;1777:111;;1899:12;1914:28;1931:10;1914:16;:28::i;:::-;1899:43;;1953:14;1970:28;1984:4;1990:1;1993;1996;1970:13;:28::i;:::-;1953:45;;2026:5;-1:-1:-1;;;;;2016:15:4;:6;-1:-1:-1;;;;;2016:15:4;;2008:58;;;;-1:-1:-1;;;2008:58:4;;8680:2:84;2008:58:4;;;8662:21:84;8719:2;8699:18;;;8692:30;8758:32;8738:18;;;8731:60;8808:18;;2008:58:4;8652:180:84;2008:58:4;2077:31;2086:5;2093:7;2102:5;2077:8;:31::i;:::-;1687:428;;;1489:626;;;;;;;:::o;9962:370:1:-;-1:-1:-1;;;;;10093:19:1;;10085:68;;;;-1:-1:-1;;;10085:68:1;;10256:2:84;10085:68:1;;;10238:21:84;10295:2;10275:18;;;10268:30;10334:34;10314:18;;;10307:62;10405:6;10385:18;;;10378:34;10429:19;;10085:68:1;10228:226:84;10085:68:1;-1:-1:-1;;;;;10171:21:1;;10163:68;;;;-1:-1:-1;;;10163:68:1;;6706:2:84;10163:68:1;;;6688:21:84;6745:2;6725:18;;;6718:30;6784:34;6764:18;;;6757:62;6855:4;6835:18;;;6828:32;6877:19;;10163:68:1;6678:224:84;10163:68:1;-1:-1:-1;;;;;10242:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10293:32;;2748:25:84;;;10293:32:1;;2721:18:84;10293:32:1;;;;;;;9962:370;;;:::o;7265:713::-;-1:-1:-1;;;;;7400:20:1;;7392:70;;;;-1:-1:-1;;;7392:70:1;;9850:2:84;7392:70:1;;;9832:21:84;9889:2;9869:18;;;9862:30;9928:34;9908:18;;;9901:62;9999:7;9979:18;;;9972:35;10024:19;;7392:70:1;9822:227:84;7392:70:1;-1:-1:-1;;;;;7480:23:1;;7472:71;;;;-1:-1:-1;;;7472:71:1;;5539:2:84;7472:71:1;;;5521:21:84;5578:2;5558:18;;;5551:30;5617:34;5597:18;;;5590:62;5688:5;5668:18;;;5661:33;5711:19;;7472:71:1;5511:225:84;7472:71:1;-1:-1:-1;;;;;7636:17:1;;7612:21;7636:17;;;;;;;;;;;7671:23;;;;7663:74;;;;-1:-1:-1;;;7663:74:1;;7467:2:84;7663:74:1;;;7449:21:84;7506:2;7486:18;;;7479:30;7545:34;7525:18;;;7518:62;7616:8;7596:18;;;7589:36;7642:19;;7663:74:1;7439:228:84;7663:74:1;-1:-1:-1;;;;;7771:17:1;;;:9;:17;;;;;;;;;;;7791:22;;;7771:42;;7833:20;;;;;;;;:30;;7807:6;;7771:9;7833:30;;7807:6;;7833:30;:::i;:::-;;;;;;;;7896:9;-1:-1:-1;;;;;7879:35:1;7888:6;-1:-1:-1;;;;;7879:35:1;;7907:6;7879:35;;;;2748:25:84;;2736:2;2721:18;;2703:76;7879:35:1;;;;;;;;7382:596;7265:713;;;:::o;2990:275:16:-;3043:7;3083:16;3066:13;:33;3062:197;;;-1:-1:-1;3122:24:16;;2990:275::o;3062:197::-;-1:-1:-1;3447:73:16;;;3206:10;3447:73;;;;3662:25:84;;;;3218:12:16;3703:18:84;;;3696:34;3232:15:16;3746:18:84;;;3739:34;3491:13:16;3789:18:84;;;3782:34;3514:4:16;3832:19:84;;;;3825:84;;;;3447:73:16;;;;;;;;;;3634:19:84;;;;3447:73:16;;;3437:84;;;;;;2426:113:4:o;8254:389:1:-;-1:-1:-1;;;;;8337:21:1;;8329:65;;;;-1:-1:-1;;;8329:65:1;;11067:2:84;8329:65:1;;;11049:21:84;11106:2;11086:18;;;11079:30;11145:33;11125:18;;;11118:61;11196:18;;8329:65:1;11039:181:84;8329:65:1;8481:6;8465:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8497:18:1;;:9;:18;;;;;;;;;;:28;;8519:6;;8497:9;:28;;8519:6;;8497:28;:::i;:::-;;;;-1:-1:-1;;8540:37:1;;2748:25:84;;;-1:-1:-1;;;;;8540:37:1;;;8557:1;;8540:37;;2736:2:84;2721:18;8540:37:1;;;;;;;8254:389;;:::o;8963:576::-;-1:-1:-1;;;;;9046:21:1;;9038:67;;;;-1:-1:-1;;;9038:67:1;;9448:2:84;9038:67:1;;;9430:21:84;9487:2;9467:18;;;9460:30;9526:34;9506:18;;;9499:62;9597:3;9577:18;;;9570:31;9618:19;;9038:67:1;9420:223:84;9038:67:1;-1:-1:-1;;;;;9201:18:1;;9176:22;9201:18;;;;;;;;;;;9237:24;;;;9229:71;;;;-1:-1:-1;;;9229:71:1;;5943:2:84;9229:71:1;;;5925:21:84;5982:2;5962:18;;;5955:30;6021:34;6001:18;;;5994:62;6092:4;6072:18;;;6065:32;6114:19;;9229:71:1;5915:224:84;9229:71:1;-1:-1:-1;;;;;9334:18:1;;:9;:18;;;;;;;;;;9355:23;;;9334:44;;9398:12;:22;;9372:6;;9334:9;9398:22;;9372:6;;9398:22;:::i;:::-;;;;-1:-1:-1;;9436:37:1;;2748:25:84;;;9462:1:1;;-1:-1:-1;;;;;9436:37:1;;;;;2736:2:84;2721:18;9436:37:1;;;;;;;954:147:69;;;:::o;2670:203:4:-;-1:-1:-1;;;;;2790:14:4;;2730:15;2790:14;;;:7;:14;;;;;864::13;;996:1;978:19;;;;864:14;2849:17:4;2747:126;2670:203;;;:::o;4153:165:16:-;4230:7;4256:55;4278:20;:18;:20::i;:::-;4300:10;8683:57:15;;2231:66:84;8683:57:15;;;2219:79:84;2314:11;;;2307:27;;;2350:12;;;2343:28;;;8647:7:15;;2387:12:84;;8683:57:15;;;;;;;;;;;;8673:68;;;;;;8666:75;;8554:194;;;;;7390:270;7513:7;7533:17;7552:18;7574:25;7585:4;7591:1;7594;7597;7574:10;:25::i;:::-;7532:67;;;;7609:18;7621:5;7609:11;:18::i;:::-;-1:-1:-1;7644:9:15;7390:270;-1:-1:-1;;;;;7390:270:15:o;5654:1603::-;5780:7;;6704:66;6691:79;;6687:161;;;-1:-1:-1;6802:1:15;;-1:-1:-1;6806:30:15;6786:51;;6687:161;6861:1;:7;;6866:2;6861:7;;:18;;;;;6872:1;:7;;6877:2;6872:7;;6861:18;6857:100;;;-1:-1:-1;6911:1:15;;-1:-1:-1;6915:30:15;6895:51;;6857:100;7068:24;;;7051:14;7068:24;;;;;;;;;4147:25:84;;;4220:4;4208:17;;4188:18;;;4181:45;;;;4242:18;;;4235:34;;;4285:18;;;4278:34;;;7068:24:15;;4119:19:84;;7068:24:15;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7068:24:15;;-1:-1:-1;;7068:24:15;;;-1:-1:-1;;;;;;;7106:20:15;;7102:101;;7158:1;7162:29;7142:50;;;;;;;7102:101;7221:6;-1:-1:-1;7229:20:15;;-1:-1:-1;5654:1603:15;;;;;;;;:::o;443:631::-;520:20;511:5;:29;;;;;;;;:::i;:::-;;507:561;;;443:631;:::o;507:561::-;616:29;607:5;:38;;;;;;;;:::i;:::-;;603:465;;;661:34;;-1:-1:-1;;;661:34:15;;5186:2:84;661:34:15;;;5168:21:84;5225:2;5205:18;;;5198:30;5264:26;5244:18;;;5237:54;5308:18;;661:34:15;5158:174:84;603:465:15;725:35;716:5;:44;;;;;;;;:::i;:::-;;712:356;;;776:41;;-1:-1:-1;;;776:41:15;;6346:2:84;776:41:15;;;6328:21:84;6385:2;6365:18;;;6358:30;6424:33;6404:18;;;6397:61;6475:18;;776:41:15;6318:181:84;712:356:15;847:30;838:5;:39;;;;;;;;:::i;:::-;;834:234;;;893:44;;-1:-1:-1;;;893:44:15;;7874:2:84;893:44:15;;;7856:21:84;7913:2;7893:18;;;7886:30;7952:34;7932:18;;;7925:62;8023:4;8003:18;;;7996:32;8045:19;;893:44:15;7846:224:84;834:234:15;967:30;958:5;:39;;;;;;;;:::i;:::-;;954:114;;;1013:44;;-1:-1:-1;;;1013:44:15;;8277:2:84;1013:44:15;;;8259:21:84;8316:2;8296:18;;;8289:30;8355:34;8335:18;;;8328:62;8426:4;8406:18;;;8399:32;8448:19;;1013:44:15;8249:224:84;954:114:15;443:631;:::o;14:196:84:-;82:20;;-1:-1:-1;;;;;131:54:84;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;:::-;356:39;285:116;-1:-1:-1;;;285:116:84:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:693::-;1115:6;1123;1131;1139;1147;1155;1163;1216:3;1204:9;1195:7;1191:23;1187:33;1184:2;;;1233:1;1230;1223:12;1184:2;1256:29;1275:9;1256:29;:::i;:::-;1246:39;;1304:38;1338:2;1327:9;1323:18;1304:38;:::i;:::-;1294:48;;1389:2;1378:9;1374:18;1361:32;1351:42;;1440:2;1429:9;1425:18;1412:32;1402:42;;1494:3;1483:9;1479:19;1466:33;1539:4;1532:5;1528:16;1521:5;1518:27;1508:2;;1559:1;1556;1549:12;1508:2;1174:523;;;;-1:-1:-1;1174:523:84;;;;1582:5;1634:3;1619:19;;1606:33;;-1:-1:-1;1686:3:84;1671:19;;;1658:33;;1174:523;-1:-1:-1;;1174:523:84:o;1702:254::-;1770:6;1778;1831:2;1819:9;1810:7;1806:23;1802:32;1799:2;;;1847:1;1844;1837:12;1799:2;1870:29;1889:9;1870:29;:::i;:::-;1860:39;1946:2;1931:18;;;;1918:32;;-1:-1:-1;;;1789:167:84:o;4323:656::-;4435:4;4464:2;4493;4482:9;4475:21;4525:6;4519:13;4568:6;4563:2;4552:9;4548:18;4541:34;4593:1;4603:140;4617:6;4614:1;4611:13;4603:140;;;4712:14;;;4708:23;;4702:30;4678:17;;;4697:2;4674:26;4667:66;4632:10;;4603:140;;;4761:6;4758:1;4755:13;4752:2;;;4831:1;4826:2;4817:6;4806:9;4802:22;4798:31;4791:42;4752:2;-1:-1:-1;4895:2:84;4883:15;-1:-1:-1;;4879:88:84;4864:104;;;;4970:2;4860:113;;4444:535;-1:-1:-1;;;4444:535:84:o;11596:128::-;11636:3;11667:1;11663:6;11660:1;11657:13;11654:2;;;11673:18;;:::i;:::-;-1:-1:-1;11709:9:84;;11644:80::o;11729:125::-;11769:4;11797:1;11794;11791:8;11788:2;;;11802:18;;:::i;:::-;-1:-1:-1;11839:9:84;;11778:76::o;11859:437::-;11938:1;11934:12;;;;11981;;;12002:2;;12056:4;12048:6;12044:17;12034:27;;12002:2;12109;12101:6;12098:14;12078:18;12075:38;12072:2;;;-1:-1:-1;;;12143:1:84;12136:88;12247:4;12244:1;12237:15;12275:4;12272:1;12265:15;12301:184;-1:-1:-1;;;12350:1:84;12343:88;12450:4;12447:1;12440:15;12474:4;12471:1;12464:15;12490:184;-1:-1:-1;;;12539:1:84;12532:88;12639:4;12636:1;12629:15;12663:4;12660:1;12653:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1003000",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "DOMAIN_SEPARATOR()": "infinite",
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24642",
                "balanceOf(address)": "2585",
                "burn(address,uint256)": "51070",
                "decimals()": "222",
                "decreaseAllowance(address,uint256)": "26955",
                "increaseAllowance(address,uint256)": "27023",
                "masterTransfer(address,address,uint256)": "infinite",
                "mint(address,uint256)": "infinite",
                "name()": "infinite",
                "nonces(address)": "2627",
                "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "infinite",
                "symbol()": "infinite",
                "totalSupply()": "2349",
                "transfer(address,uint256)": "51209",
                "transferFrom(address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "DOMAIN_SEPARATOR()": "3644e515",
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "burn(address,uint256)": "9dc29fac",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "increaseAllowance(address,uint256)": "39509351",
              "masterTransfer(address,address,uint256)": "1c9c7903",
              "mint(address,uint256)": "40c10f19",
              "name()": "06fdde03",
              "nonces(address)": "7ecebe00",
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "d505accf",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"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\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"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\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"masterTransfer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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 {ERC20Permit} that adds a set of accounts with the {MinterRole}, which have permission to mint (create) new tokens as they see fit. At construction, the deployer of the contract is the only minter.\",\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"See {IERC20Permit-DOMAIN_SEPARATOR}.\"},\"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 this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"mint(address,uint256)\":{\"details\":\"See {ERC20-_mint}. Requirements: - the caller must have the {MinterRole}.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"nonces(address)\":{\"details\":\"See {IERC20Permit-nonces}.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"See {IERC20Permit-permit}.\"},\"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\":{\"contracts/test/EIP2612PermitMintable.sol\":\"EIP2612PermitMintable\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\\n * instead returning `false` on failure. This behavior is nonetheless\\n * conventional and does not conflict with the expectations of ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(string memory name_, string memory symbol_) {\\n        _name = name_;\\n        _symbol = symbol_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual override returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual override returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual override returns (uint8) {\\n        return 18;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual override returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual override returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\\n        _transfer(_msgSender(), recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\\n        _approve(_msgSender(), spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual override returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][_msgSender()];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, _msgSender(), currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n        uint256 currentAllowance = _allowances[_msgSender()][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(_msgSender(), spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n}\\n\",\"keccak256\":\"0xb03df8481a954604ad0c9125680893b2e3f7ff770fe470e38b89ac61b84e8072\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\n */\\ninterface IERC20Metadata is IERC20 {\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the symbol of the token.\\n     */\\n    function symbol() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the decimals places of the token.\\n     */\\n    function decimals() external view returns (uint8);\\n}\\n\",\"keccak256\":\"0x83fe24f5c04a56091e50f4a345ff504c8bff658a76d4c43b16878c8f940c53b2\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./draft-IERC20Permit.sol\\\";\\nimport \\\"../ERC20.sol\\\";\\nimport \\\"../../../utils/cryptography/draft-EIP712.sol\\\";\\nimport \\\"../../../utils/cryptography/ECDSA.sol\\\";\\nimport \\\"../../../utils/Counters.sol\\\";\\n\\n/**\\n * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n *\\n * _Available since v3.4._\\n */\\nabstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {\\n    using Counters for Counters.Counter;\\n\\n    mapping(address => Counters.Counter) private _nonces;\\n\\n    // solhint-disable-next-line var-name-mixedcase\\n    bytes32 private immutable _PERMIT_TYPEHASH =\\n        keccak256(\\\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\\\");\\n\\n    /**\\n     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\\\"1\\\"`.\\n     *\\n     * It's a good idea to use the same `name` that is defined as the ERC20 token name.\\n     */\\n    constructor(string memory name) EIP712(name, \\\"1\\\") {}\\n\\n    /**\\n     * @dev See {IERC20Permit-permit}.\\n     */\\n    function permit(\\n        address owner,\\n        address spender,\\n        uint256 value,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) public virtual override {\\n        require(block.timestamp <= deadline, \\\"ERC20Permit: expired deadline\\\");\\n\\n        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));\\n\\n        bytes32 hash = _hashTypedDataV4(structHash);\\n\\n        address signer = ECDSA.recover(hash, v, r, s);\\n        require(signer == owner, \\\"ERC20Permit: invalid signature\\\");\\n\\n        _approve(owner, spender, value);\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-nonces}.\\n     */\\n    function nonces(address owner) public view virtual override returns (uint256) {\\n        return _nonces[owner].current();\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view override returns (bytes32) {\\n        return _domainSeparatorV4();\\n    }\\n\\n    /**\\n     * @dev \\\"Consume a nonce\\\": return the current value and increment.\\n     *\\n     * _Available since v4.1._\\n     */\\n    function _useNonce(address owner) internal virtual returns (uint256 current) {\\n        Counters.Counter storage nonce = _nonces[owner];\\n        current = nonce.current();\\n        nonce.increment();\\n    }\\n}\\n\",\"keccak256\":\"0x7ce4684ee1fac31ee5671df82b30c10bd2ebf88add2f63524ed00618a8486907\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n */\\ninterface IERC20Permit {\\n    /**\\n     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\\n     * given ``owner``'s signed approval.\\n     *\\n     * IMPORTANT: The same issues {IERC20-approve} has related to transaction\\n     * ordering also apply here.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `deadline` must be a timestamp in the future.\\n     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\\n     * over the EIP712-formatted function arguments.\\n     * - the signature must use ``owner``'s current nonce (see {nonces}).\\n     *\\n     * For more information on the signature format, see the\\n     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\\n     * section].\\n     */\\n    function permit(\\n        address owner,\\n        address spender,\\n        uint256 value,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @dev Returns the current nonce for `owner`. This value must be\\n     * included whenever a signature is generated for {permit}.\\n     *\\n     * Every successful call to {permit} increases ``owner``'s nonce by one. This\\n     * prevents a signature from being used multiple times.\\n     */\\n    function nonces(address owner) external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view returns (bytes32);\\n}\\n\",\"keccak256\":\"0x3aab711a5f9a5a5a394191e928cc8258e8a243e855bb0275e7834f9686383277\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n    function _msgSender() internal view virtual returns (address) {\\n        return msg.sender;\\n    }\\n\\n    function _msgData() internal view virtual returns (bytes calldata) {\\n        return msg.data;\\n    }\\n}\\n\",\"keccak256\":\"0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Counters.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Counters\\n * @author Matt Condon (@shrugs)\\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\\n *\\n * Include with `using Counters for Counters.Counter;`\\n */\\nlibrary Counters {\\n    struct Counter {\\n        // This variable should never be directly accessed by users of the library: interactions must be restricted to\\n        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\\n        // this feature: see https://github.com/ethereum/solidity/issues/4637\\n        uint256 _value; // default: 0\\n    }\\n\\n    function current(Counter storage counter) internal view returns (uint256) {\\n        return counter._value;\\n    }\\n\\n    function increment(Counter storage counter) internal {\\n        unchecked {\\n            counter._value += 1;\\n        }\\n    }\\n\\n    function decrement(Counter storage counter) internal {\\n        uint256 value = counter._value;\\n        require(value > 0, \\\"Counter: decrement overflow\\\");\\n        unchecked {\\n            counter._value = value - 1;\\n        }\\n    }\\n\\n    function reset(Counter storage counter) internal {\\n        counter._value = 0;\\n    }\\n}\\n\",\"keccak256\":\"0x78450f4e3b722cce467b21e285f72ce5eaf361e9ba9dd2241a413926246773cd\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\\n *\\n * These functions can be used to verify that a message was signed by the holder\\n * of the private keys of a given address.\\n */\\nlibrary ECDSA {\\n    enum RecoverError {\\n        NoError,\\n        InvalidSignature,\\n        InvalidSignatureLength,\\n        InvalidSignatureS,\\n        InvalidSignatureV\\n    }\\n\\n    function _throwError(RecoverError error) private pure {\\n        if (error == RecoverError.NoError) {\\n            return; // no error: do nothing\\n        } else if (error == RecoverError.InvalidSignature) {\\n            revert(\\\"ECDSA: invalid signature\\\");\\n        } else if (error == RecoverError.InvalidSignatureLength) {\\n            revert(\\\"ECDSA: invalid signature length\\\");\\n        } else if (error == RecoverError.InvalidSignatureS) {\\n            revert(\\\"ECDSA: invalid signature 's' value\\\");\\n        } else if (error == RecoverError.InvalidSignatureV) {\\n            revert(\\\"ECDSA: invalid signature 'v' value\\\");\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature` or error string. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {toEthSignedMessageHash} on it.\\n     *\\n     * Documentation for signature generation:\\n     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\\n     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\\n        // Check the signature length\\n        // - case 65: r,s,v signature (standard)\\n        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._\\n        if (signature.length == 65) {\\n            bytes32 r;\\n            bytes32 s;\\n            uint8 v;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                s := mload(add(signature, 0x40))\\n                v := byte(0, mload(add(signature, 0x60)))\\n            }\\n            return tryRecover(hash, v, r, s);\\n        } else if (signature.length == 64) {\\n            bytes32 r;\\n            bytes32 vs;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                vs := mload(add(signature, 0x40))\\n            }\\n            return tryRecover(hash, r, vs);\\n        } else {\\n            return (address(0), RecoverError.InvalidSignatureLength);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature`. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {toEthSignedMessageHash} on it.\\n     */\\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, signature);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\\n     *\\n     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address, RecoverError) {\\n        bytes32 s;\\n        uint8 v;\\n        assembly {\\n            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\\n            v := add(shr(255, vs), 27)\\n        }\\n        return tryRecover(hash, v, r, s);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\\n     *\\n     * _Available since v4.2._\\n     */\\n    function recover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, r, vs);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address, RecoverError) {\\n        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\\n        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\\n        // the valid range for s in (301): 0 < s < secp256k1n \\u00f7 2 + 1, and for v in (302): v \\u2208 {27, 28}. Most\\n        // signatures from current libraries generate a unique signature with an s-value in the lower half order.\\n        //\\n        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\\n        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\\n        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\\n        // these malleable signatures as well.\\n        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\\n            return (address(0), RecoverError.InvalidSignatureS);\\n        }\\n        if (v != 27 && v != 28) {\\n            return (address(0), RecoverError.InvalidSignatureV);\\n        }\\n\\n        // If the signature is valid (and not malleable), return the signer address\\n        address signer = ecrecover(hash, v, r, s);\\n        if (signer == address(0)) {\\n            return (address(0), RecoverError.InvalidSignature);\\n        }\\n\\n        return (signer, RecoverError.NoError);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     */\\n    function recover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from a `hash`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {\\n        // 32 is the length in bytes of hash,\\n        // enforced by the type signature above\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n32\\\", hash));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Typed Data, created from a\\n     * `domainSeparator` and a `structHash`. This produces hash corresponding\\n     * to the one signed with the\\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\\n     * JSON-RPC method as part of EIP-712.\\n     *\\n     * See {recover}.\\n     */\\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19\\\\x01\\\", domainSeparator, structHash));\\n    }\\n}\\n\",\"keccak256\":\"0xbc991a1cf357ce19480831a40792c814238a3b5458134703682abd8aa39719fb\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./ECDSA.sol\\\";\\n\\n/**\\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.\\n *\\n * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\\n * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\\n * they need in their contracts using a combination of `abi.encode` and `keccak256`.\\n *\\n * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\\n * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\\n * ({_hashTypedDataV4}).\\n *\\n * The implementation of the domain separator was designed to be as efficient as possible while still properly updating\\n * the chain id to protect against replay attacks on an eventual fork of the chain.\\n *\\n * NOTE: This contract implements the version of the encoding known as \\\"v4\\\", as implemented by the JSON RPC method\\n * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\\n *\\n * _Available since v3.4._\\n */\\nabstract contract EIP712 {\\n    /* solhint-disable var-name-mixedcase */\\n    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to\\n    // invalidate the cached domain separator if the chain id changes.\\n    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;\\n    uint256 private immutable _CACHED_CHAIN_ID;\\n\\n    bytes32 private immutable _HASHED_NAME;\\n    bytes32 private immutable _HASHED_VERSION;\\n    bytes32 private immutable _TYPE_HASH;\\n\\n    /* solhint-enable var-name-mixedcase */\\n\\n    /**\\n     * @dev Initializes the domain separator and parameter caches.\\n     *\\n     * The meaning of `name` and `version` is specified in\\n     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:\\n     *\\n     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\\n     * - `version`: the current major version of the signing domain.\\n     *\\n     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\\n     * contract upgrade].\\n     */\\n    constructor(string memory name, string memory version) {\\n        bytes32 hashedName = keccak256(bytes(name));\\n        bytes32 hashedVersion = keccak256(bytes(version));\\n        bytes32 typeHash = keccak256(\\n            \\\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\\\"\\n        );\\n        _HASHED_NAME = hashedName;\\n        _HASHED_VERSION = hashedVersion;\\n        _CACHED_CHAIN_ID = block.chainid;\\n        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);\\n        _TYPE_HASH = typeHash;\\n    }\\n\\n    /**\\n     * @dev Returns the domain separator for the current chain.\\n     */\\n    function _domainSeparatorV4() internal view returns (bytes32) {\\n        if (block.chainid == _CACHED_CHAIN_ID) {\\n            return _CACHED_DOMAIN_SEPARATOR;\\n        } else {\\n            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);\\n        }\\n    }\\n\\n    function _buildDomainSeparator(\\n        bytes32 typeHash,\\n        bytes32 nameHash,\\n        bytes32 versionHash\\n    ) private view returns (bytes32) {\\n        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));\\n    }\\n\\n    /**\\n     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\\n     * function returns the hash of the fully encoded EIP712 message for this domain.\\n     *\\n     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\\n     *\\n     * ```solidity\\n     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\\n     *     keccak256(\\\"Mail(address to,string contents)\\\"),\\n     *     mailTo,\\n     *     keccak256(bytes(mailContents))\\n     * )));\\n     * address signer = ECDSA.recover(digest, signature);\\n     * ```\\n     */\\n    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {\\n        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);\\n    }\\n}\\n\",\"keccak256\":\"0xba18d725602452307e5b278ed4566616c63792d89f3a0388a6f285428c26e681\",\"license\":\"MIT\"},\"contracts/test/EIP2612PermitMintable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\\\";\\n\\n/**\\n * @dev Extension of {ERC20Permit} that adds a set of accounts with the {MinterRole},\\n * which have permission to mint (create) new tokens as they see fit.\\n *\\n * At construction, the deployer of the contract is the only minter.\\n */\\ncontract EIP2612PermitMintable is ERC20Permit {\\n    constructor(string memory _name, string memory _symbol)\\n        ERC20(_name, _symbol)\\n        ERC20Permit(_name)\\n    {}\\n\\n    /**\\n     * @dev See {ERC20-_mint}.\\n     *\\n     * Requirements:\\n     *\\n     * - the caller must have the {MinterRole}.\\n     */\\n    function mint(address account, uint256 amount) public returns (bool) {\\n        _mint(account, amount);\\n        return true;\\n    }\\n\\n    function burn(address account, uint256 amount) public returns (bool) {\\n        _burn(account, amount);\\n        return true;\\n    }\\n\\n    function masterTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) public {\\n        _transfer(from, to, amount);\\n    }\\n}\\n\",\"keccak256\":\"0xa62ed13fdf9ca73761c4ef5cf2a6e0ff04d3da02becfe04ac65c2d69aa7b3bf7\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 55,
                "contract": "contracts/test/EIP2612PermitMintable.sol:EIP2612PermitMintable",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 61,
                "contract": "contracts/test/EIP2612PermitMintable.sol:EIP2612PermitMintable",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 63,
                "contract": "contracts/test/EIP2612PermitMintable.sol:EIP2612PermitMintable",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 65,
                "contract": "contracts/test/EIP2612PermitMintable.sol:EIP2612PermitMintable",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 67,
                "contract": "contracts/test/EIP2612PermitMintable.sol:EIP2612PermitMintable",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 711,
                "contract": "contracts/test/EIP2612PermitMintable.sol:EIP2612PermitMintable",
                "label": "_nonces",
                "offset": 0,
                "slot": "5",
                "type": "t_mapping(t_address,t_struct(Counter)2419_storage)"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_struct(Counter)2419_storage)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => struct Counters.Counter)",
                "numberOfBytes": "32",
                "value": "t_struct(Counter)2419_storage"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_struct(Counter)2419_storage": {
                "encoding": "inplace",
                "label": "struct Counters.Counter",
                "members": [
                  {
                    "astId": 2418,
                    "contract": "contracts/test/EIP2612PermitMintable.sol:EIP2612PermitMintable",
                    "label": "_value",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint256"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "contracts/test/ERC20Mintable.sol": {
        "ERC20Mintable": {
          "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": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "burn",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "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": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "masterTransfer",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "mint",
              "outputs": [],
              "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 adds a set of accounts with the {MinterRole}, which have permission to mint (create) new tokens as they see fit. At construction, the deployer of the contract is the only minter.",
            "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 this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
              },
              "decreaseAllowance(address,uint256)": {
                "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
              },
              "increaseAllowance(address,uint256)": {
                "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
              },
              "mint(address,uint256)": {
                "details": "See {ERC20-_mint}. Requirements: - the caller must have the {MinterRole}."
              },
              "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
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_16246": {
                  "entryPoint": null,
                  "id": 16246,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_84": {
                  "entryPoint": null,
                  "id": 84,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 276,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
                  "entryPoint": 459,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "extract_byte_array_length": {
                  "entryPoint": 565,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 626,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1985:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:821:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:84"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:84"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:84",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:84"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:84",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:84"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:84"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "543:14:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "553:4:84",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "547:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "603:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "612:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "615:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "605:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "605:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "605:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "580:6:84"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "588:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "576:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "576:15:84"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "593:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "572:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "572:24:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "598:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "569:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "569:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "566:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "628:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "637:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "632:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "693:87:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "722:6:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "730:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "718:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "718:14:84"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "734:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "714:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "714:23:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "offset",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "753:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "761:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "749:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "749:14:84"
                                                },
                                                {
                                                  "name": "_4",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "765:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "745:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "745:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "739:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "739:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "707:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "707:63:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "707:63:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "661:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "655:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "655:9:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "665:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "667:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "676:1:84"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "679:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "672:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "672:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "667:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "651:3:84",
                                "statements": []
                              },
                              "src": "647:133:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "810:59:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "839:6:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "847:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "835:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "835:15:84"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "852:2:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "831:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "831:24:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "857:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:35:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:35:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "795:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "798:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "792:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "792:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "789:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "878:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "887:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "878:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:885:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1022:444:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1068:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1077:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1080:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1070:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1070:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1070:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1043:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1052:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1039:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1039:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1064:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1035:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1035:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1032:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1093:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1113:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1107:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1107:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1097:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1132:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1150:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1154:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1146:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1146:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1158:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1142:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1142:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1136:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1187:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1196:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1199:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1189:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1189:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1189:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1175:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1183:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1169:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1212:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1255:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1266:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1251:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1251:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1275:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1222:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1222:61:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1212:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1292:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1318:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1329:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1314:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1314:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1308:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1308:25:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1296:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1362:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1371:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1374:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1364:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1364:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1364:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1348:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1358:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1345:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1345:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1342:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1387:73:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1430:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1441:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1426:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1426:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1452:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1397:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1397:63:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1387:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "980:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "991:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1003:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1011:6:84",
                            "type": ""
                          }
                        ],
                        "src": "904:562:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1526:325:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1536:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1550:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1553:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "1546:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1546:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1536:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1567:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1597:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1603:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "1593:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1593:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "1571:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1644:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1646:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "1660:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1668:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "1656:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1656:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1646:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1624:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1617:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1617:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1614:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1734:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1755:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1762:3:84",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1767:10:84",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "1758:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1758:20:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1748:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1748:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1748:31:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1799:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1802:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1792:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1792:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1792:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1827:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1830:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1820:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1820:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1820:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1690:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1713:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1721:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1710:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1710:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "1687:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1687:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1684:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "1506:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1515:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1471:380:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1888:95:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1905:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1912:3:84",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1917:10:84",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1908:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1908:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1898:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1898:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1898:31:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1945:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1948:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1938:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1938:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1938:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1969:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1972:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "1962:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1962:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1962:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "1856:127:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        let _4 := 0x20\n        if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _1) { i := add(i, _4) }\n        {\n            mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n        }\n        if gt(i, _1)\n        {\n            mstore(add(add(memPtr, _1), _4), 0)\n        }\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b5060405162000f7f38038062000f7f8339810160408190526200003491620001cb565b8151829082906200004d9060039060208501906200006e565b508051620000639060049060208401906200006e565b505050505062000288565b8280546200007c9062000235565b90600052602060002090601f016020900481019282620000a05760008555620000eb565b82601f10620000bb57805160ff1916838001178555620000eb565b82800160010185558215620000eb579182015b82811115620000eb578251825591602001919060010190620000ce565b50620000f9929150620000fd565b5090565b5b80821115620000f95760008155600101620000fe565b600082601f8301126200012657600080fd5b81516001600160401b038082111562000143576200014362000272565b604051601f8301601f19908116603f011681019082821181831017156200016e576200016e62000272565b816040528381526020925086838588010111156200018b57600080fd5b600091505b83821015620001af578582018301518183018401529082019062000190565b83821115620001c15760008385830101525b9695505050505050565b60008060408385031215620001df57600080fd5b82516001600160401b0380821115620001f757600080fd5b620002058683870162000114565b935060208501519150808211156200021c57600080fd5b506200022b8582860162000114565b9150509250929050565b600181811c908216806200024a57607f821691505b602082108114156200026c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610ce780620002986000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806340c10f191161008c5780639dc29fac116100665780639dc29fac146101d0578063a457c2d7146101e3578063a9059cbb146101f6578063dd62ed3e1461020957600080fd5b806340c10f191461018c57806370a082311461019f57806395d89b41146101c857600080fd5b80631c9c7903116100c85780631c9c79031461014257806323b872dd14610157578063313ce5671461016a578063395093511461017957600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610242565b6040516101049190610b8c565b60405180910390f35b61012061011b366004610b62565b6102d4565b6040519015158152602001610104565b6002545b604051908152602001610104565b610155610150366004610b26565b6102ea565b005b610120610165366004610b26565b6102fa565b60405160128152602001610104565b610120610187366004610b62565b6103be565b61015561019a366004610b62565b6103fa565b6101346101ad366004610ad1565b6001600160a01b031660009081526020819052604090205490565b6100f7610408565b6101206101de366004610b62565b610417565b6101206101f1366004610b62565b610423565b610120610204366004610b62565b6104d4565b610134610217366004610af3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461025190610c2e565b80601f016020809104026020016040519081016040528092919081815260200182805461027d90610c2e565b80156102ca5780601f1061029f576101008083540402835291602001916102ca565b820191906000526020600020905b8154815290600101906020018083116102ad57829003601f168201915b5050505050905090565b60006102e13384846104e1565b50600192915050565b6102f5838383610639565b505050565b6000610307848484610639565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103a65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103b385338584036104e1565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102e19185906103f5908690610bff565b6104e1565b6104048282610851565b5050565b60606004805461025190610c2e565b60006102e18383610930565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104bd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161039d565b6104ca33858584036104e1565b5060019392505050565b60006102e1338484610639565b6001600160a01b03831661055c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0382166105d85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106b55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0382166107315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b038316600090815260208190526040902054818110156107c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107f7908490610bff565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161084391815260200190565b60405180910390a350505050565b6001600160a01b0382166108a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161039d565b80600260008282546108b99190610bff565b90915550506001600160a01b038216600090815260208190526040812080548392906108e6908490610bff565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166109ac5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b03821660009081526020819052604090205481811015610a3b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a6a908490610c17565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b0381168114610acc57600080fd5b919050565b600060208284031215610ae357600080fd5b610aec82610ab5565b9392505050565b60008060408385031215610b0657600080fd5b610b0f83610ab5565b9150610b1d60208401610ab5565b90509250929050565b600080600060608486031215610b3b57600080fd5b610b4484610ab5565b9250610b5260208501610ab5565b9150604084013590509250925092565b60008060408385031215610b7557600080fd5b610b7e83610ab5565b946020939093013593505050565b600060208083528351808285015260005b81811015610bb957858101830151858201604001528201610b9d565b81811115610bcb576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610c1257610c12610c82565b500190565b600082821015610c2957610c29610c82565b500390565b600181811c90821680610c4257607f821691505b60208210811415610c7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220af281b61c5e6a95793ba51edf3736d513b5448da6bb5c04bc2819563334ff30164736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xF7F CODESIZE SUB DUP1 PUSH3 0xF7F DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1CB JUMP JUMPDEST DUP2 MLOAD DUP3 SWAP1 DUP3 SWAP1 PUSH3 0x4D SWAP1 PUSH1 0x3 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x6E JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x63 SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x6E JUMP JUMPDEST POP POP POP POP POP PUSH3 0x288 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x7C SWAP1 PUSH3 0x235 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xA0 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xEB JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xBB JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xEB JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xEB JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xEB JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xCE JUMP JUMPDEST POP PUSH3 0xF9 SWAP3 SWAP2 POP PUSH3 0xFD JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0xF9 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0xFE JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x126 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x143 JUMPI PUSH3 0x143 PUSH3 0x272 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x16E JUMPI PUSH3 0x16E PUSH3 0x272 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x18B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1AF JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x190 JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x1C1 JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x1F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x205 DUP7 DUP4 DUP8 ADD PUSH3 0x114 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x21C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x22B DUP6 DUP3 DUP7 ADD PUSH3 0x114 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x24A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x26C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0xCE7 DUP1 PUSH3 0x298 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 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0x9DC29FAC GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x1D0 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E3 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1F6 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x209 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x18C JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x19F JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1C9C7903 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x1C9C7903 EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x157 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x16A JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x179 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x130 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0x242 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x104 SWAP2 SWAP1 PUSH2 0xB8C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x120 PUSH2 0x11B CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x2D4 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x155 PUSH2 0x150 CALLDATASIZE PUSH1 0x4 PUSH2 0xB26 JUMP JUMPDEST PUSH2 0x2EA JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH2 0x165 CALLDATASIZE PUSH1 0x4 PUSH2 0xB26 JUMP JUMPDEST PUSH2 0x2FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x187 CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x3BE JUMP JUMPDEST PUSH2 0x155 PUSH2 0x19A CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x3FA JUMP JUMPDEST PUSH2 0x134 PUSH2 0x1AD CALLDATASIZE PUSH1 0x4 PUSH2 0xAD1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x408 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1DE CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x417 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1F1 CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x423 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x204 CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x217 CALLDATASIZE PUSH1 0x4 PUSH2 0xAF3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x251 SWAP1 PUSH2 0xC2E JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x27D SWAP1 PUSH2 0xC2E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2CA JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x29F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2CA 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 0x2AD JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E1 CALLER DUP5 DUP5 PUSH2 0x4E1 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2F5 DUP4 DUP4 DUP4 PUSH2 0x639 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x307 DUP5 DUP5 DUP5 PUSH2 0x639 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3A6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3B3 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x4E1 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x2E1 SWAP2 DUP6 SWAP1 PUSH2 0x3F5 SWAP1 DUP7 SWAP1 PUSH2 0xBFF JUMP JUMPDEST PUSH2 0x4E1 JUMP JUMPDEST PUSH2 0x404 DUP3 DUP3 PUSH2 0x851 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x251 SWAP1 PUSH2 0xC2E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E1 DUP4 DUP4 PUSH2 0x930 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x4BD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH2 0x4CA CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x4E1 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E1 CALLER DUP5 DUP5 PUSH2 0x639 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x55C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5D8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x6B5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x731 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x7C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x7F7 SWAP1 DUP5 SWAP1 PUSH2 0xBFF JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x843 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x8A7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x39D JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x8B9 SWAP2 SWAP1 PUSH2 0xBFF JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x8E6 SWAP1 DUP5 SWAP1 PUSH2 0xBFF JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xA3B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xA6A SWAP1 DUP5 SWAP1 PUSH2 0xC17 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xACC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAE3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xAEC DUP3 PUSH2 0xAB5 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB06 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB0F DUP4 PUSH2 0xAB5 JUMP JUMPDEST SWAP2 POP PUSH2 0xB1D PUSH1 0x20 DUP5 ADD PUSH2 0xAB5 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB44 DUP5 PUSH2 0xAB5 JUMP JUMPDEST SWAP3 POP PUSH2 0xB52 PUSH1 0x20 DUP6 ADD PUSH2 0xAB5 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB75 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB7E DUP4 PUSH2 0xAB5 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBB9 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0xB9D JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0xBCB JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xC12 JUMPI PUSH2 0xC12 PUSH2 0xC82 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0xC29 JUMPI PUSH2 0xC29 PUSH2 0xC82 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xC42 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xC7C JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAF 0x28 SHL PUSH2 0xC5E6 0xA9 JUMPI SWAP4 0xBA MLOAD 0xED RETURN PUSH20 0x6D513B5448DA6BB5C04BC2819563334FF3016473 PUSH16 0x6C634300080600330000000000000000 ",
              "sourceMap": "348:637:70:-:0;;;386:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1972:13:1;;448:5:70;;455:7;;1972:13:1;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;1995:17:1;;;;:7;;:17;;;;;:::i;:::-;;1906:113;;386:80:70;;348:637;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;348:637:70;;;-1:-1:-1;348:637:70;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:885:84;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;;;;;224:10:84;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:84;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;553:4;543:14;;598:3;593:2;588;580:6;576:15;572:24;569:33;566:2;;;615:1;612;605:12;566:2;637:1;628:10;;647:133;661:2;658:1;655:9;647:133;;;749:14;;;745:23;;739:30;718:14;;;714:23;;707:63;672:10;;;;647:133;;;798:2;795:1;792:9;789:2;;;857:1;852:2;847;839:6;835:15;831:24;824:35;789:2;887:6;78:821;-1:-1:-1;;;;;;78:821:84:o;904:562::-;1003:6;1011;1064:2;1052:9;1043:7;1039:23;1035:32;1032:2;;;1080:1;1077;1070:12;1032:2;1107:16;;-1:-1:-1;;;;;1172:14:84;;;1169:2;;;1199:1;1196;1189:12;1169:2;1222:61;1275:7;1266:6;1255:9;1251:22;1222:61;:::i;:::-;1212:71;;1329:2;1318:9;1314:18;1308:25;1292:41;;1358:2;1348:8;1345:16;1342:2;;;1374:1;1371;1364:12;1342:2;;1397:63;1452:7;1441:8;1430:9;1426:24;1397:63;:::i;:::-;1387:73;;;1022:444;;;;;:::o;1471:380::-;1550:1;1546:12;;;;1593;;;1614:2;;1668:4;1660:6;1656:17;1646:27;;1614:2;1721;1713:6;1710:14;1690:18;1687:38;1684:2;;;1767:10;1762:3;1758:20;1755:1;1748:31;1802:4;1799:1;1792:15;1830:4;1827:1;1820:15;1684:2;;1526:325;;;:::o;1856:127::-;1917:10;1912:3;1908:20;1905:1;1898:31;1948:4;1945:1;1938:15;1972:4;1969:1;1962:15;1888:95;348:637:70;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_afterTokenTransfer_584": {
                  "entryPoint": null,
                  "id": 584,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_562": {
                  "entryPoint": 1249,
                  "id": 562,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_573": {
                  "entryPoint": null,
                  "id": 573,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_burn_517": {
                  "entryPoint": 2352,
                  "id": 517,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_mint_445": {
                  "entryPoint": 2129,
                  "id": 445,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_msgSender_2403": {
                  "entryPoint": null,
                  "id": 2403,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_transfer_389": {
                  "entryPoint": 1593,
                  "id": 389,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@allowance_177": {
                  "entryPoint": null,
                  "id": 177,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_198": {
                  "entryPoint": 724,
                  "id": 198,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_138": {
                  "entryPoint": null,
                  "id": 138,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@burn_16277": {
                  "entryPoint": 1047,
                  "id": 16277,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@decimals_114": {
                  "entryPoint": null,
                  "id": 114,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_312": {
                  "entryPoint": 1059,
                  "id": 312,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_273": {
                  "entryPoint": 958,
                  "id": 273,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@masterTransfer_16293": {
                  "entryPoint": 746,
                  "id": 16293,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@mint_16260": {
                  "entryPoint": 1018,
                  "id": 16260,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@name_94": {
                  "entryPoint": 578,
                  "id": 94,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@symbol_104": {
                  "entryPoint": 1032,
                  "id": 104,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@totalSupply_124": {
                  "entryPoint": null,
                  "id": 124,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_246": {
                  "entryPoint": 762,
                  "id": 246,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_159": {
                  "entryPoint": 1236,
                  "id": 159,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_address": {
                  "entryPoint": 2741,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 2769,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 2803,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 2854,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 2914,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 2956,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 3071,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 3095,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 3118,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 3202,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:7383:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:84",
                            "type": ""
                          }
                        ],
                        "src": "215:186:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:84",
                            "type": ""
                          }
                        ],
                        "src": "406:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:84",
                            "type": ""
                          }
                        ],
                        "src": "671:328:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1091:167:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1137:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1146:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1149:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1139:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1139:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1139:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1112:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1121:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1108:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1108:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1133:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1104:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1104:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1101:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1162:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1191:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1162:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1210:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1237:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1248:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1220:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1220:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1210:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1049:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1060:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1072:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1080:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1004:254:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1358:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1368:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1380:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1391:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1376:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1376:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1368:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1410:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "1435:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1428:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1428:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "1421:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1421:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1403:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1403:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1403:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1327:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1338:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1349:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1263:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1576:535:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1586:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1596:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1590:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1614:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1625:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1607:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1607:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1607:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1637:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1657:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1651:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1651:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1641:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1684:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1695:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1680:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1680:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1673:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1673:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1673:34:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1716:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1725:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1720:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1785:90:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1814:9:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1825:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1810:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1810:17:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1829:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1806:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1806:26:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1848:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1856:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "1844:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "1844:14:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1860:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1840:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1840:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "1834:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1834:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1799:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1799:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1799:66:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1746:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1749:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1743:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1743:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1757:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1759:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1768:1:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1771:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1764:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1764:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1759:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1739:3:84",
                                "statements": []
                              },
                              "src": "1735:140:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1909:66:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1938:9:84"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1949:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1934:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1934:22:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1958:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1930:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1930:31:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1963:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1923:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1923:42:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1923:42:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1890:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1893:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1887:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1887:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1884:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1984:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2000:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "2019:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2027:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2015:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2015:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2032:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2011:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2011:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1996:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1996:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2102:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1992:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1992:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1984:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1545:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1556:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1567:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1455:656:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2290:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2307:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2318:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2300:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2300:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2300:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2341:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2352:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2337:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2337:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2357:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2330:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2330:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2330:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2380:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2391:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2376:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2376:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2396:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2369:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2369:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2369:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2451:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2462:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2447:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2447:18:84"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2467:5:84",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2440:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2440:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2440:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2482:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2494:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2505:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2490:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2490:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2482:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2267:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2281:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2116:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2694:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2711:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2722:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2704:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2704:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2704:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2745:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2756:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2741:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2741:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2761:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2734:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2734:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2734:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2784:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2795:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2780:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2780:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2800:34:84",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2773:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2773:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2773:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2855:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2866:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2851:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2851:18:84"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2871:4:84",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2844:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2844:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2844:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2885:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2897:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2908:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2893:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2893:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2885:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2671:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2685:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2520:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3097:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3114:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3125:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3107:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3107:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3107:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3148:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3159:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3144:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3144:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3164:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3137:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3137:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3137:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3187:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3198:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3183:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3183:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3203:34:84",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3176:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3176:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3176:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3258:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3269:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3254:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3254:18:84"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3274:4:84",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3247:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3247:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3247:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3288:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3300:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3311:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3296:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3296:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3288:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3074:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3088:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2923:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3500:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3517:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3528:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3510:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3510:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3510:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3551:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3562:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3547:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3547:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3567:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3540:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3540:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3540:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3590:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3601:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3586:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3586:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3606:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3579:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3579:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3579:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3661:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3672:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3657:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3657:18:84"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3677:8:84",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3650:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3650:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3650:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3695:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3707:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3718:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3703:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3703:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3695:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3477:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3491:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3326:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3907:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3924:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3935:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3917:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3917:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3917:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3958:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3969:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3954:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3954:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3974:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3947:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3947:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3947:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3997:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4008:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3993:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3993:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4013:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3986:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3986:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3986:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4068:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4079:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4064:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4064:18:84"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4084:10:84",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4057:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4057:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4057:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4104:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4116:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4127:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4112:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4112:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4104:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3884:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3898:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3733:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4316:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4333:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4344:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4326:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4326:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4326:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4367:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4378:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4363:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4363:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4383:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4356:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4356:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4356:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4406:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4417:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4402:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4402:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4422:34:84",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4395:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4395:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4395:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4477:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4488:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4473:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4473:18:84"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4493:3:84",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4466:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4466:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4466:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4506:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4518:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4529:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4514:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4514:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4506:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4293:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4307:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4142:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4718:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4735:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4746:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4728:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4728:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4728:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4769:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4780:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4765:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4765:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4785:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4758:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4758:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4758:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4808:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4819:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4804:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4804:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4824:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4797:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4797:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4797:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4879:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4890:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4875:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4875:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4895:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4868:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4868:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4868:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4912:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4924:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4935:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4920:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4920:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4912:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4695:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4709:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4544:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5124:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5141:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5152:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5134:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5134:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5134:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5175:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5186:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5171:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5171:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5191:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5164:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5164:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5164:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5214:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5225:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5210:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5210:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5230:34:84",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5203:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5203:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5203:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5285:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5296:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5281:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5281:18:84"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5301:6:84",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5274:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5274:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5274:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5317:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5329:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5340:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5325:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5325:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5317:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5101:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5115:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4950:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5529:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5546:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5557:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5539:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5539:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5539:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5580:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5591:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5576:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5576:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5596:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5569:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5569:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5569:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5619:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5630:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5615:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5615:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5635:34:84",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5608:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5608:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5608:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5690:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5701:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5686:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5686:18:84"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5706:7:84",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5679:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5679:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5679:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5723:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5735:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5746:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5731:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5731:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5723:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5506:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5520:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5355:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5935:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5952:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5963:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5945:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5945:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5945:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5986:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5997:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5982:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5982:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6002:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5975:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5975:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5975:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6025:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6036:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6021:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6021:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6041:33:84",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6014:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6014:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6014:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6084:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6096:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6107:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6092:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6092:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6084:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5912:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5926:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5761:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6222:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6232:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6244:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6255:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6240:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6240:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6232:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6274:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6285:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6267:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6267:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6267:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6191:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6202:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6213:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6121:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6400:87:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6410:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6422:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6433:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6418:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6418:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6410:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6452:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6467:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6475:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6463:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6463:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6445:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6445:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6445:36:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6369:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6380:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6391:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6303:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6540:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6567:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "6569:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6569:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6569:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6556:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "6563:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "6559:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6559:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6553:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6553:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6550:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6598:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6609:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "6612:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6605:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6605:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "6598:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "6523:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "6526:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "6532:3:84",
                            "type": ""
                          }
                        ],
                        "src": "6492:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6674:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6696:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "6698:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6698:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6698:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6690:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "6693:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6687:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6687:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6684:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6727:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6739:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "6742:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "6735:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6735:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "6727:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "6656:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "6659:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "6665:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6625:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6810:382:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6820:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6834:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "6837:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "6830:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6830:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "6820:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6851:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "6881:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6887:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "6877:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6877:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "6855:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6928:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6930:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "6944:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6952:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "6940:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6940:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "6930:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "6908:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "6901:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6901:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6898:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7018:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7039:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7042:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7032:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7032:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7032:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7140:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7143:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7133:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7133:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7133:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7168:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7171:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7161:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7161:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7161:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "6974:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "6997:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7005:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "6994:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6994:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "6971:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6971:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6968:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "6790:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "6799:6:84",
                            "type": ""
                          }
                        ],
                        "src": "6755:437:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7229:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7246:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7249:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7239:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7239:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7239:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7343:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7346:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7336:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7336:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7336:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7367:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7370:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "7360:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7360:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7360:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "7197:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: burn amount exceeds balan\")\n        mstore(add(headStart, 96), \"ce\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC20: burn from the zero addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100ea5760003560e01c806340c10f191161008c5780639dc29fac116100665780639dc29fac146101d0578063a457c2d7146101e3578063a9059cbb146101f6578063dd62ed3e1461020957600080fd5b806340c10f191461018c57806370a082311461019f57806395d89b41146101c857600080fd5b80631c9c7903116100c85780631c9c79031461014257806323b872dd14610157578063313ce5671461016a578063395093511461017957600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610242565b6040516101049190610b8c565b60405180910390f35b61012061011b366004610b62565b6102d4565b6040519015158152602001610104565b6002545b604051908152602001610104565b610155610150366004610b26565b6102ea565b005b610120610165366004610b26565b6102fa565b60405160128152602001610104565b610120610187366004610b62565b6103be565b61015561019a366004610b62565b6103fa565b6101346101ad366004610ad1565b6001600160a01b031660009081526020819052604090205490565b6100f7610408565b6101206101de366004610b62565b610417565b6101206101f1366004610b62565b610423565b610120610204366004610b62565b6104d4565b610134610217366004610af3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461025190610c2e565b80601f016020809104026020016040519081016040528092919081815260200182805461027d90610c2e565b80156102ca5780601f1061029f576101008083540402835291602001916102ca565b820191906000526020600020905b8154815290600101906020018083116102ad57829003601f168201915b5050505050905090565b60006102e13384846104e1565b50600192915050565b6102f5838383610639565b505050565b6000610307848484610639565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103a65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103b385338584036104e1565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102e19185906103f5908690610bff565b6104e1565b6104048282610851565b5050565b60606004805461025190610c2e565b60006102e18383610930565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104bd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161039d565b6104ca33858584036104e1565b5060019392505050565b60006102e1338484610639565b6001600160a01b03831661055c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0382166105d85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106b55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0382166107315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b038316600090815260208190526040902054818110156107c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107f7908490610bff565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161084391815260200190565b60405180910390a350505050565b6001600160a01b0382166108a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161039d565b80600260008282546108b99190610bff565b90915550506001600160a01b038216600090815260208190526040812080548392906108e6908490610bff565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166109ac5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b03821660009081526020819052604090205481811015610a3b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a6a908490610c17565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b0381168114610acc57600080fd5b919050565b600060208284031215610ae357600080fd5b610aec82610ab5565b9392505050565b60008060408385031215610b0657600080fd5b610b0f83610ab5565b9150610b1d60208401610ab5565b90509250929050565b600080600060608486031215610b3b57600080fd5b610b4484610ab5565b9250610b5260208501610ab5565b9150604084013590509250925092565b60008060408385031215610b7557600080fd5b610b7e83610ab5565b946020939093013593505050565b600060208083528351808285015260005b81811015610bb957858101830151858201604001528201610b9d565b81811115610bcb576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610c1257610c12610c82565b500190565b600082821015610c2957610c29610c82565b500390565b600181811c90821680610c4257607f821691505b60208210811415610c7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220af281b61c5e6a95793ba51edf3736d513b5448da6bb5c04bc2819563334ff30164736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0x9DC29FAC GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x1D0 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E3 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1F6 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x209 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x18C JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x19F JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1C9C7903 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x1C9C7903 EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x157 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x16A JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x179 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x130 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0x242 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x104 SWAP2 SWAP1 PUSH2 0xB8C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x120 PUSH2 0x11B CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x2D4 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x155 PUSH2 0x150 CALLDATASIZE PUSH1 0x4 PUSH2 0xB26 JUMP JUMPDEST PUSH2 0x2EA JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH2 0x165 CALLDATASIZE PUSH1 0x4 PUSH2 0xB26 JUMP JUMPDEST PUSH2 0x2FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x187 CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x3BE JUMP JUMPDEST PUSH2 0x155 PUSH2 0x19A CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x3FA JUMP JUMPDEST PUSH2 0x134 PUSH2 0x1AD CALLDATASIZE PUSH1 0x4 PUSH2 0xAD1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x408 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1DE CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x417 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1F1 CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x423 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x204 CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x217 CALLDATASIZE PUSH1 0x4 PUSH2 0xAF3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x251 SWAP1 PUSH2 0xC2E JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x27D SWAP1 PUSH2 0xC2E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2CA JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x29F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2CA 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 0x2AD JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E1 CALLER DUP5 DUP5 PUSH2 0x4E1 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2F5 DUP4 DUP4 DUP4 PUSH2 0x639 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x307 DUP5 DUP5 DUP5 PUSH2 0x639 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3A6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3B3 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x4E1 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x2E1 SWAP2 DUP6 SWAP1 PUSH2 0x3F5 SWAP1 DUP7 SWAP1 PUSH2 0xBFF JUMP JUMPDEST PUSH2 0x4E1 JUMP JUMPDEST PUSH2 0x404 DUP3 DUP3 PUSH2 0x851 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x251 SWAP1 PUSH2 0xC2E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E1 DUP4 DUP4 PUSH2 0x930 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x4BD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH2 0x4CA CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x4E1 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E1 CALLER DUP5 DUP5 PUSH2 0x639 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x55C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5D8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x6B5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x731 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x7C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x7F7 SWAP1 DUP5 SWAP1 PUSH2 0xBFF JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x843 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x8A7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x39D JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x8B9 SWAP2 SWAP1 PUSH2 0xBFF JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x8E6 SWAP1 DUP5 SWAP1 PUSH2 0xBFF JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xA3B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xA6A SWAP1 DUP5 SWAP1 PUSH2 0xC17 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xACC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAE3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xAEC DUP3 PUSH2 0xAB5 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB06 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB0F DUP4 PUSH2 0xAB5 JUMP JUMPDEST SWAP2 POP PUSH2 0xB1D PUSH1 0x20 DUP5 ADD PUSH2 0xAB5 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB44 DUP5 PUSH2 0xAB5 JUMP JUMPDEST SWAP3 POP PUSH2 0xB52 PUSH1 0x20 DUP6 ADD PUSH2 0xAB5 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB75 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB7E DUP4 PUSH2 0xAB5 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBB9 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0xB9D JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0xBCB JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xC12 JUMPI PUSH2 0xC12 PUSH2 0xC82 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0xC29 JUMPI PUSH2 0xC29 PUSH2 0xC82 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xC42 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xC7C JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAF 0x28 SHL PUSH2 0xC5E6 0xA9 JUMPI SWAP4 0xBA MLOAD 0xED RETURN PUSH20 0x6D513B5448DA6BB5C04BC2819563334FF3016473 PUSH16 0x6C634300080600330000000000000000 ",
              "sourceMap": "348:637:70:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4181:166;;;;;;:::i;:::-;;:::i;:::-;;;1428:14:84;;1421:22;1403:41;;1391:2;1376:18;4181:166:1;1358:92:84;3172:106:1;3259:12;;3172:106;;;6267:25:84;;;6255:2;6240:18;3172:106:1;6222:76:84;836:147:70;;;;;;:::i;:::-;;:::i;:::-;;4814:478:1;;;;;;:::i;:::-;;:::i;3021:91::-;;;3103:2;6445:36:84;;6433:2;6418:18;3021:91:1;6400:87:84;5687:212:1;;;;;;:::i;:::-;;:::i;602:93:70:-;;;;;;:::i;:::-;;:::i;3336:125:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3436:18:1;3410:7;3436:18;;;;;;;;;;;;3336:125;2295:102;;;:::i;701:129:70:-;;;;;;:::i;:::-;;:::i;6386:405:1:-;;;;;;:::i;:::-;;:::i;3664:172::-;;;;;;:::i;:::-;;:::i;3894:149::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4009:18:1;;;3983:7;4009:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3894:149;2084:98;2138:13;2170:5;2163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98;:::o;4181:166::-;4264:4;4280:39;666:10:12;4303:7:1;4312:6;4280:8;:39::i;:::-;-1:-1:-1;4336:4:1;4181:166;;;;:::o;836:147:70:-;949:27;959:4;965:2;969:6;949:9;:27::i;:::-;836:147;;;:::o;4814:478:1:-;4950:4;4966:36;4976:6;4984:9;4995:6;4966:9;:36::i;:::-;-1:-1:-1;;;;;5040:19:1;;5013:24;5040:19;;;:11;:19;;;;;;;;666:10:12;5040:33:1;;;;;;;;5091:26;;;;5083:79;;;;-1:-1:-1;;;5083:79:1;;3935:2:84;5083:79:1;;;3917:21:84;3974:2;3954:18;;;3947:30;4013:34;3993:18;;;3986:62;4084:10;4064:18;;;4057:38;4112:19;;5083:79:1;;;;;;;;;5196:57;5205:6;666:10:12;5246:6:1;5227:16;:25;5196:8;:57::i;:::-;-1:-1:-1;5281:4:1;;4814:478;-1:-1:-1;;;;4814:478:1:o;5687:212::-;666:10:12;5775:4:1;5823:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5823:34:1;;;;;;;;;;5775:4;;5791:80;;5814:7;;5823:47;;5860:10;;5823:47;:::i;:::-;5791:8;:80::i;602:93:70:-;666:22;672:7;681:6;666:5;:22::i;:::-;602:93;;:::o;2295:102:1:-;2351:13;2383:7;2376:14;;;;;:::i;701:129:70:-;764:4;780:22;786:7;795:6;780:5;:22::i;6386:405:1:-;666:10:12;6479:4:1;6522:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6522:34:1;;;;;;;;;;6574:35;;;;6566:85;;;;-1:-1:-1;;;6566:85:1;;5557:2:84;6566:85:1;;;5539:21:84;5596:2;5576:18;;;5569:30;5635:34;5615:18;;;5608:62;5706:7;5686:18;;;5679:35;5731:19;;6566:85:1;5529:227:84;6566:85:1;6685:67;666:10:12;6708:7:1;6736:15;6717:16;:34;6685:8;:67::i;:::-;-1:-1:-1;6780:4:1;;6386:405;-1:-1:-1;;;6386:405:1:o;3664:172::-;3750:4;3766:42;666:10:12;3790:9:1;3801:6;3766:9;:42::i;9962:370::-;-1:-1:-1;;;;;10093:19:1;;10085:68;;;;-1:-1:-1;;;10085:68:1;;5152:2:84;10085:68:1;;;5134:21:84;5191:2;5171:18;;;5164:30;5230:34;5210:18;;;5203:62;5301:6;5281:18;;;5274:34;5325:19;;10085:68:1;5124:226:84;10085:68:1;-1:-1:-1;;;;;10171:21:1;;10163:68;;;;-1:-1:-1;;;10163:68:1;;3125:2:84;10163:68:1;;;3107:21:84;3164:2;3144:18;;;3137:30;3203:34;3183:18;;;3176:62;3274:4;3254:18;;;3247:32;3296:19;;10163:68:1;3097:224:84;10163:68:1;-1:-1:-1;;;;;10242:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10293:32;;6267:25:84;;;10293:32:1;;6240:18:84;10293:32:1;;;;;;;9962:370;;;:::o;7265:713::-;-1:-1:-1;;;;;7400:20:1;;7392:70;;;;-1:-1:-1;;;7392:70:1;;4746:2:84;7392:70:1;;;4728:21:84;4785:2;4765:18;;;4758:30;4824:34;4804:18;;;4797:62;4895:7;4875:18;;;4868:35;4920:19;;7392:70:1;4718:227:84;7392:70:1;-1:-1:-1;;;;;7480:23:1;;7472:71;;;;-1:-1:-1;;;7472:71:1;;2318:2:84;7472:71:1;;;2300:21:84;2357:2;2337:18;;;2330:30;2396:34;2376:18;;;2369:62;2467:5;2447:18;;;2440:33;2490:19;;7472:71:1;2290:225:84;7472:71:1;-1:-1:-1;;;;;7636:17:1;;7612:21;7636:17;;;;;;;;;;;7671:23;;;;7663:74;;;;-1:-1:-1;;;7663:74:1;;3528:2:84;7663:74:1;;;3510:21:84;3567:2;3547:18;;;3540:30;3606:34;3586:18;;;3579:62;3677:8;3657:18;;;3650:36;3703:19;;7663:74:1;3500:228:84;7663:74:1;-1:-1:-1;;;;;7771:17:1;;;:9;:17;;;;;;;;;;;7791:22;;;7771:42;;7833:20;;;;;;;;:30;;7807:6;;7771:9;7833:30;;7807:6;;7833:30;:::i;:::-;;;;;;;;7896:9;-1:-1:-1;;;;;7879:35:1;7888:6;-1:-1:-1;;;;;7879:35:1;;7907:6;7879:35;;;;6267:25:84;;6255:2;6240:18;;6222:76;7879:35:1;;;;;;;;7382:596;7265:713;;;:::o;8254:389::-;-1:-1:-1;;;;;8337:21:1;;8329:65;;;;-1:-1:-1;;;8329:65:1;;5963:2:84;8329:65:1;;;5945:21:84;6002:2;5982:18;;;5975:30;6041:33;6021:18;;;6014:61;6092:18;;8329:65:1;5935:181:84;8329:65:1;8481:6;8465:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8497:18:1;;:9;:18;;;;;;;;;;:28;;8519:6;;8497:9;:28;;8519:6;;8497:28;:::i;:::-;;;;-1:-1:-1;;8540:37:1;;6267:25:84;;;-1:-1:-1;;;;;8540:37:1;;;8557:1;;8540:37;;6255:2:84;6240:18;8540:37:1;;;;;;;602:93:70;;:::o;8963:576:1:-;-1:-1:-1;;;;;9046:21:1;;9038:67;;;;-1:-1:-1;;;9038:67:1;;4344:2:84;9038:67:1;;;4326:21:84;4383:2;4363:18;;;4356:30;4422:34;4402:18;;;4395:62;4493:3;4473:18;;;4466:31;4514:19;;9038:67:1;4316:223:84;9038:67:1;-1:-1:-1;;;;;9201:18:1;;9176:22;9201:18;;;;;;;;;;;9237:24;;;;9229:71;;;;-1:-1:-1;;;9229:71:1;;2722:2:84;9229:71:1;;;2704:21:84;2761:2;2741:18;;;2734:30;2800:34;2780:18;;;2773:62;2871:4;2851:18;;;2844:32;2893:19;;9229:71:1;2694:224:84;9229:71:1;-1:-1:-1;;;;;9334:18:1;;:9;:18;;;;;;;;;;9355:23;;;9334:44;;9398:12;:22;;9372:6;;9334:9;9398:22;;9372:6;;9398:22;:::i;:::-;;;;-1:-1:-1;;9436:37:1;;6267:25:84;;;9462:1:1;;-1:-1:-1;;;;;9436:37:1;;;;;6255:2:84;6240:18;9436:37:1;;;;;;;836:147:70;;;:::o;14:196:84:-;82:20;;-1:-1:-1;;;;;131:54:84;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;:::-;356:39;285:116;-1:-1:-1;;;285:116:84:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:254::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:2;;;1149:1;1146;1139:12;1101:2;1172:29;1191:9;1172:29;:::i;:::-;1162:39;1248:2;1233:18;;;;1220:32;;-1:-1:-1;;;1091:167:84:o;1455:656::-;1567:4;1596:2;1625;1614:9;1607:21;1657:6;1651:13;1700:6;1695:2;1684:9;1680:18;1673:34;1725:1;1735:140;1749:6;1746:1;1743:13;1735:140;;;1844:14;;;1840:23;;1834:30;1810:17;;;1829:2;1806:26;1799:66;1764:10;;1735:140;;;1893:6;1890:1;1887:13;1884:2;;;1963:1;1958:2;1949:6;1938:9;1934:22;1930:31;1923:42;1884:2;-1:-1:-1;2027:2:84;2015:15;2032:66;2011:88;1996:104;;;;2102:2;1992:113;;1576:535;-1:-1:-1;;;1576:535:84:o;6492:128::-;6532:3;6563:1;6559:6;6556:1;6553:13;6550:2;;;6569:18;;:::i;:::-;-1:-1:-1;6605:9:84;;6540:80::o;6625:125::-;6665:4;6693:1;6690;6687:8;6684:2;;;6698:18;;:::i;:::-;-1:-1:-1;6735:9:84;;6674:76::o;6755:437::-;6834:1;6830:12;;;;6877;;;6898:2;;6952:4;6944:6;6940:17;6930:27;;6898:2;7005;6997:6;6994:14;6974:18;6971:38;6968:2;;;7042:77;7039:1;7032:88;7143:4;7140:1;7133:15;7171:4;7168:1;7161:15;6968:2;;6810:382;;;:::o;7197:184::-;7249:77;7246:1;7239:88;7346:4;7343:1;7336:15;7370:4;7367:1;7360:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "660600",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24642",
                "balanceOf(address)": "2585",
                "burn(address,uint256)": "51047",
                "decimals()": "244",
                "decreaseAllowance(address,uint256)": "26932",
                "increaseAllowance(address,uint256)": "27023",
                "masterTransfer(address,address,uint256)": "infinite",
                "mint(address,uint256)": "infinite",
                "name()": "infinite",
                "symbol()": "infinite",
                "totalSupply()": "2349",
                "transfer(address,uint256)": "51231",
                "transferFrom(address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "burn(address,uint256)": "9dc29fac",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "increaseAllowance(address,uint256)": "39509351",
              "masterTransfer(address,address,uint256)": "1c9c7903",
              "mint(address,uint256)": "40c10f19",
              "name()": "06fdde03",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"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\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"masterTransfer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[],\"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 adds a set of accounts with the {MinterRole}, which have permission to mint (create) new tokens as they see fit. At construction, the deployer of the contract is the only minter.\",\"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 this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"mint(address,uint256)\":{\"details\":\"See {ERC20-_mint}. Requirements: - the caller must have the {MinterRole}.\"},\"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\":{\"contracts/test/ERC20Mintable.sol\":\"ERC20Mintable\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\\n * instead returning `false` on failure. This behavior is nonetheless\\n * conventional and does not conflict with the expectations of ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(string memory name_, string memory symbol_) {\\n        _name = name_;\\n        _symbol = symbol_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual override returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual override returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual override returns (uint8) {\\n        return 18;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual override returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual override returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\\n        _transfer(_msgSender(), recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\\n        _approve(_msgSender(), spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual override returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][_msgSender()];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, _msgSender(), currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n        uint256 currentAllowance = _allowances[_msgSender()][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(_msgSender(), spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n}\\n\",\"keccak256\":\"0xb03df8481a954604ad0c9125680893b2e3f7ff770fe470e38b89ac61b84e8072\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\n */\\ninterface IERC20Metadata is IERC20 {\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the symbol of the token.\\n     */\\n    function symbol() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the decimals places of the token.\\n     */\\n    function decimals() external view returns (uint8);\\n}\\n\",\"keccak256\":\"0x83fe24f5c04a56091e50f4a345ff504c8bff658a76d4c43b16878c8f940c53b2\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n    function _msgSender() internal view virtual returns (address) {\\n        return msg.sender;\\n    }\\n\\n    function _msgData() internal view virtual returns (bytes calldata) {\\n        return msg.data;\\n    }\\n}\\n\",\"keccak256\":\"0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f\",\"license\":\"MIT\"},\"contracts/test/ERC20Mintable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/ERC20.sol\\\";\\n\\n/**\\n * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\\n * which have permission to mint (create) new tokens as they see fit.\\n *\\n * At construction, the deployer of the contract is the only minter.\\n */\\ncontract ERC20Mintable is ERC20 {\\n    constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {}\\n\\n    /**\\n     * @dev See {ERC20-_mint}.\\n     *\\n     * Requirements:\\n     *\\n     * - the caller must have the {MinterRole}.\\n     */\\n    function mint(address account, uint256 amount) public {\\n        _mint(account, amount);\\n    }\\n\\n    function burn(address account, uint256 amount) public returns (bool) {\\n        _burn(account, amount);\\n        return true;\\n    }\\n\\n    function masterTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) public {\\n        _transfer(from, to, amount);\\n    }\\n}\\n\",\"keccak256\":\"0xb12c70d2e26ca0478bc0b2a7923519275e2b7edf75eb4d66abdb492091f02984\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 55,
                "contract": "contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 61,
                "contract": "contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 63,
                "contract": "contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 65,
                "contract": "contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 67,
                "contract": "contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "contracts/test/ERC721Mintable.sol": {
        "ERC721Mintable": {
          "abi": [
            {
              "inputs": [],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "approved",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "bool",
                  "name": "approved",
                  "type": "bool"
                }
              ],
              "name": "ApprovalForAll",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "burn",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "getApproved",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                }
              ],
              "name": "isApprovedForAll",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "mint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "ownerOf",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "safeTransferFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                },
                {
                  "internalType": "bytes",
                  "name": "_data",
                  "type": "bytes"
                }
              ],
              "name": "safeTransferFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "internalType": "bool",
                  "name": "approved",
                  "type": "bool"
                }
              ],
              "name": "setApprovalForAll",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "bytes4",
                  "name": "interfaceId",
                  "type": "bytes4"
                }
              ],
              "name": "supportsInterface",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "symbol",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "tokenURI",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Extension of {ERC721} for Minting/Burning",
            "kind": "dev",
            "methods": {
              "approve(address,uint256)": {
                "details": "See {IERC721-approve}."
              },
              "balanceOf(address)": {
                "details": "See {IERC721-balanceOf}."
              },
              "burn(uint256)": {
                "details": "See {ERC721-_burn}."
              },
              "getApproved(uint256)": {
                "details": "See {IERC721-getApproved}."
              },
              "isApprovedForAll(address,address)": {
                "details": "See {IERC721-isApprovedForAll}."
              },
              "mint(address,uint256)": {
                "details": "See {ERC721-_mint}."
              },
              "name()": {
                "details": "See {IERC721Metadata-name}."
              },
              "ownerOf(uint256)": {
                "details": "See {IERC721-ownerOf}."
              },
              "safeTransferFrom(address,address,uint256)": {
                "details": "See {IERC721-safeTransferFrom}."
              },
              "safeTransferFrom(address,address,uint256,bytes)": {
                "details": "See {IERC721-safeTransferFrom}."
              },
              "setApprovalForAll(address,bool)": {
                "details": "See {IERC721-setApprovalForAll}."
              },
              "supportsInterface(bytes4)": {
                "details": "See {IERC165-supportsInterface}."
              },
              "symbol()": {
                "details": "See {IERC721Metadata-symbol}."
              },
              "tokenURI(uint256)": {
                "details": "See {IERC721Metadata-tokenURI}."
              },
              "transferFrom(address,address,uint256)": {
                "details": "See {IERC721-transferFrom}."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_1180": {
                  "entryPoint": null,
                  "id": 1180,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_16308": {
                  "entryPoint": null,
                  "id": 16308,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "extract_byte_array_length": {
                  "entryPoint": 289,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:396:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "69:325:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "79:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "93:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "96:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "89:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "89:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "79:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "110:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "140:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "146:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "136:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "136:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "114:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "187:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "189:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "203:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "211:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "199:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "199:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "189:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "167:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "160:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "160:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "157:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "277:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "298:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "305:3:84",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "310:10:84",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "301:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "301:20:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "291:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "291:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "291:31:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "342:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "345:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "335:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "335:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "335:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "370:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "373:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "363:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "363:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "363:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "233:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "256:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "264:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "253:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "253:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "230:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "230:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "227:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "49:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "58:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:380:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b5060408051808201825260078152664552432037323160c81b60208083019182528351808501909452600384526213919560ea1b9084015281519192916200005c916000916200007b565b508051620000729060019060208401906200007b565b5050506200015e565b828054620000899062000121565b90600052602060002090601f016020900481019282620000ad5760008555620000f8565b82601f10620000c857805160ff1916838001178555620000f8565b82800160010185558215620000f8579182015b82811115620000f8578251825591602001919060010190620000db565b50620001069291506200010a565b5090565b5b808211156200010657600081556001016200010b565b600181811c908216806200013657607f821691505b602082108114156200015857634e487b7160e01b600052602260045260246000fd5b50919050565b611773806200016e6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806342966c6811610097578063a22cb46511610066578063a22cb465146101ff578063b88d4fde14610212578063c87b56dd14610225578063e985e9c51461023857600080fd5b806342966c68146101b05780636352211e146101c357806370a08231146101d657806395d89b41146101f757600080fd5b8063095ea7b3116100d3578063095ea7b31461016257806323b872dd1461017757806340c10f191461018a57806342842e0e1461019d57600080fd5b806301ffc9a7146100fa57806306fdde0314610122578063081812fc14610137575b600080fd5b61010d6101083660046114c3565b610274565b60405190151581526020015b60405180910390f35b61012a610359565b60405161011991906115ad565b61014a6101453660046114fd565b6103eb565b6040516001600160a01b039091168152602001610119565b610175610170366004611499565b610496565b005b610175610185366004611345565b6105c8565b610175610198366004611499565b61064f565b6101756101ab366004611345565b61065d565b6101756101be3660046114fd565b610678565b61014a6101d13660046114fd565b610684565b6101e96101e43660046112f7565b61070f565b604051908152602001610119565b61012a6107a9565b61017561020d36600461145d565b6107b8565b610175610220366004611381565b61089b565b61012a6102333660046114fd565b610929565b61010d610246366004611312565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061030757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061035357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600080546103689061162f565b80601f01602080910402602001604051908101604052809291908181526020018280546103949061162f565b80156103e15780601f106103b6576101008083540402835291602001916103e1565b820191906000526020600020905b8154815290600101906020018083116103c457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661047a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104a182610684565b9050806001600160a01b0316836001600160a01b0316141561052b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610471565b336001600160a01b038216148061054757506105478133610246565b6105b95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610471565b6105c38383610a1f565b505050565b6105d23382610a9a565b6106445760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610471565b6105c3838383610ba2565b6106598282610d7c565b5050565b6105c38383836040518060200160405280600081525061089b565b61068181610ecb565b50565b6000818152600260205260408120546001600160a01b0316806103535760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610471565b60006001600160a01b03821661078d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610471565b506001600160a01b031660009081526003602052604090205490565b6060600180546103689061162f565b6001600160a01b0382163314156108115760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610471565b3360008181526005602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108a53383610a9a565b6109175760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610471565b61092384848484610f73565b50505050565b6000818152600260205260409020546060906001600160a01b03166109b65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610471565b60006109cd60408051602081019091526000815290565b905060008151116109ed5760405180602001604052806000815250610a18565b806109f784610ffc565b604051602001610a08929190611542565b6040516020818303038152906040525b9392505050565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190610a6182610684565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610b245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610471565b6000610b2f83610684565b9050806001600160a01b0316846001600160a01b03161480610b6a5750836001600160a01b0316610b5f846103eb565b6001600160a01b0316145b80610b9a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610bb582610684565b6001600160a01b031614610c315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610471565b6001600160a01b038216610cac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610471565b610cb7600082610a1f565b6001600160a01b0383166000908152600360205260408120805460019290610ce09084906115ec565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d0e9084906115c0565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216610dd25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610471565b6000818152600260205260409020546001600160a01b031615610e375760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610471565b6001600160a01b0382166000908152600360205260408120805460019290610e609084906115c0565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000610ed682610684565b9050610ee3600083610a1f565b6001600160a01b0381166000908152600360205260408120805460019290610f0c9084906115ec565b9091555050600082815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b610f7e848484610ba2565b610f8a8484848461112e565b6109235760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610471565b60608161103c57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561106657806110508161166a565b915061105f9050600a836115d8565b9150611040565b60008167ffffffffffffffff811115611081576110816116f9565b6040519080825280601f01601f1916602001820160405280156110ab576020820181803683370190505b5090505b8415610b9a576110c06001836115ec565b91506110cd600a866116a3565b6110d89060306115c0565b60f81b8183815181106110ed576110ed6116e3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611127600a866115d8565b94506110af565b60006001600160a01b0384163b156112d0576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061118b903390899088908890600401611571565b602060405180830381600087803b1580156111a557600080fd5b505af19250505080156111d5575060408051601f3d908101601f191682019092526111d2918101906114e0565b60015b611285573d808015611203576040519150601f19603f3d011682016040523d82523d6000602084013e611208565b606091505b50805161127d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610471565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610b9a565b506001949350505050565b80356001600160a01b03811681146112f257600080fd5b919050565b60006020828403121561130957600080fd5b610a18826112db565b6000806040838503121561132557600080fd5b61132e836112db565b915061133c602084016112db565b90509250929050565b60008060006060848603121561135a57600080fd5b611363846112db565b9250611371602085016112db565b9150604084013590509250925092565b6000806000806080858703121561139757600080fd5b6113a0856112db565b93506113ae602086016112db565b925060408501359150606085013567ffffffffffffffff808211156113d257600080fd5b818701915087601f8301126113e657600080fd5b8135818111156113f8576113f86116f9565b604051601f8201601f19908116603f01168101908382118183101715611420576114206116f9565b816040528281528a602084870101111561143957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561147057600080fd5b611479836112db565b91506020830135801515811461148e57600080fd5b809150509250929050565b600080604083850312156114ac57600080fd5b6114b5836112db565b946020939093013593505050565b6000602082840312156114d557600080fd5b8135610a188161170f565b6000602082840312156114f257600080fd5b8151610a188161170f565b60006020828403121561150f57600080fd5b5035919050565b6000815180845261152e816020860160208601611603565b601f01601f19169290920160200192915050565b60008351611554818460208801611603565b835190830190611568818360208801611603565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526115a36080830184611516565b9695505050505050565b602081526000610a186020830184611516565b600082198211156115d3576115d36116b7565b500190565b6000826115e7576115e76116cd565b500490565b6000828210156115fe576115fe6116b7565b500390565b60005b8381101561161e578181015183820152602001611606565b838111156109235750506000910152565b600181811c9082168061164357607f821691505b6020821081141561166457634e487b7160e01b600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561169c5761169c6116b7565b5060010190565b6000826116b2576116b26116cd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461068157600080fdfea264697066735822122015857c035b16eec48947cacea4d96ce3bfc70cd2a2b55d6972bc9169c4eb787664736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH1 0x7 DUP2 MSTORE PUSH7 0x45524320373231 PUSH1 0xC8 SHL PUSH1 0x20 DUP1 DUP4 ADD SWAP2 DUP3 MSTORE DUP4 MLOAD DUP1 DUP6 ADD SWAP1 SWAP5 MSTORE PUSH1 0x3 DUP5 MSTORE PUSH3 0x139195 PUSH1 0xEA SHL SWAP1 DUP5 ADD MSTORE DUP2 MLOAD SWAP2 SWAP3 SWAP2 PUSH3 0x5C SWAP2 PUSH1 0x0 SWAP2 PUSH3 0x7B JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x72 SWAP1 PUSH1 0x1 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x7B JUMP JUMPDEST POP POP POP PUSH3 0x15E JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x89 SWAP1 PUSH3 0x121 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xAD JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xF8 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xC8 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xF8 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xF8 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xF8 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xDB JUMP JUMPDEST POP PUSH3 0x106 SWAP3 SWAP2 POP PUSH3 0x10A JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x106 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x10B JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x136 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x158 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1773 DUP1 PUSH3 0x16E 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 0xF5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x42966C68 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1FF JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x212 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x238 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x42966C68 EQ PUSH2 0x1B0 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x162 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x18A JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x19D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x137 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10D PUSH2 0x108 CALLDATASIZE PUSH1 0x4 PUSH2 0x14C3 JUMP JUMPDEST PUSH2 0x274 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x12A PUSH2 0x359 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x15AD JUMP JUMPDEST PUSH2 0x14A PUSH2 0x145 CALLDATASIZE PUSH1 0x4 PUSH2 0x14FD JUMP JUMPDEST PUSH2 0x3EB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0x175 PUSH2 0x170 CALLDATASIZE PUSH1 0x4 PUSH2 0x1499 JUMP JUMPDEST PUSH2 0x496 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x175 PUSH2 0x185 CALLDATASIZE PUSH1 0x4 PUSH2 0x1345 JUMP JUMPDEST PUSH2 0x5C8 JUMP JUMPDEST PUSH2 0x175 PUSH2 0x198 CALLDATASIZE PUSH1 0x4 PUSH2 0x1499 JUMP JUMPDEST PUSH2 0x64F JUMP JUMPDEST PUSH2 0x175 PUSH2 0x1AB CALLDATASIZE PUSH1 0x4 PUSH2 0x1345 JUMP JUMPDEST PUSH2 0x65D JUMP JUMPDEST PUSH2 0x175 PUSH2 0x1BE CALLDATASIZE PUSH1 0x4 PUSH2 0x14FD JUMP JUMPDEST PUSH2 0x678 JUMP JUMPDEST PUSH2 0x14A PUSH2 0x1D1 CALLDATASIZE PUSH1 0x4 PUSH2 0x14FD JUMP JUMPDEST PUSH2 0x684 JUMP JUMPDEST PUSH2 0x1E9 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x12F7 JUMP JUMPDEST PUSH2 0x70F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0x12A PUSH2 0x7A9 JUMP JUMPDEST PUSH2 0x175 PUSH2 0x20D CALLDATASIZE PUSH1 0x4 PUSH2 0x145D JUMP JUMPDEST PUSH2 0x7B8 JUMP JUMPDEST PUSH2 0x175 PUSH2 0x220 CALLDATASIZE PUSH1 0x4 PUSH2 0x1381 JUMP JUMPDEST PUSH2 0x89B JUMP JUMPDEST PUSH2 0x12A PUSH2 0x233 CALLDATASIZE PUSH1 0x4 PUSH2 0x14FD JUMP JUMPDEST PUSH2 0x929 JUMP JUMPDEST PUSH2 0x10D PUSH2 0x246 CALLDATASIZE PUSH1 0x4 PUSH2 0x1312 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 EQ DUP1 PUSH2 0x307 JUMPI POP PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 EQ JUMPDEST DUP1 PUSH2 0x353 JUMPI POP PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x368 SWAP1 PUSH2 0x162F JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x394 SWAP1 PUSH2 0x162F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3E1 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3B6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3E1 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 0x3C4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x47A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4A1 DUP3 PUSH2 0x684 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x52B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x547 JUMPI POP PUSH2 0x547 DUP2 CALLER PUSH2 0x246 JUMP JUMPDEST PUSH2 0x5B9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x38 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH2 0x5C3 DUP4 DUP4 PUSH2 0xA1F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5D2 CALLER DUP3 PUSH2 0xA9A JUMP JUMPDEST PUSH2 0x644 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x31 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH2 0x5C3 DUP4 DUP4 DUP4 PUSH2 0xBA2 JUMP JUMPDEST PUSH2 0x659 DUP3 DUP3 PUSH2 0xD7C JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x5C3 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x89B JUMP JUMPDEST PUSH2 0x681 DUP2 PUSH2 0xECB JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x353 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x78D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x368 SWAP1 PUSH2 0x162F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND CALLER EQ ISZERO PUSH2 0x811 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x471 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP1 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x8A5 CALLER DUP4 PUSH2 0xA9A JUMP JUMPDEST PUSH2 0x917 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x31 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH2 0x923 DUP5 DUP5 DUP5 DUP5 PUSH2 0xF73 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x60 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9B6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9CD PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x9ED JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xA18 JUMP JUMPDEST DUP1 PUSH2 0x9F7 DUP5 PUSH2 0xFFC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xA08 SWAP3 SWAP2 SWAP1 PUSH2 0x1542 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0xA61 DUP3 PUSH2 0x684 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB24 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB2F DUP4 PUSH2 0x684 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0xB6A JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB5F DUP5 PUSH2 0x3EB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0xB9A JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xBB5 DUP3 PUSH2 0x684 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC31 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x73206E6F74206F776E0000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xCAC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH2 0xCB7 PUSH1 0x0 DUP3 PUSH2 0xA1F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xCE0 SWAP1 DUP5 SWAP1 PUSH2 0x15EC JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xD0E SWAP1 DUP5 SWAP1 PUSH2 0x15C0 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP5 SWAP4 SWAP2 DUP8 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xDD2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x471 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0xE37 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x471 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xE60 SWAP1 DUP5 SWAP1 PUSH2 0x15C0 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP4 SWAP3 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP3 SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xED6 DUP3 PUSH2 0x684 JUMP JUMPDEST SWAP1 POP PUSH2 0xEE3 PUSH1 0x0 DUP4 PUSH2 0xA1F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xF0C SWAP1 DUP5 SWAP1 PUSH2 0x15EC JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE MLOAD DUP4 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP4 SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH2 0xF7E DUP5 DUP5 DUP5 PUSH2 0xBA2 JUMP JUMPDEST PUSH2 0xF8A DUP5 DUP5 DUP5 DUP5 PUSH2 0x112E JUMP JUMPDEST PUSH2 0x923 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x32 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0x103C JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0x1066 JUMPI DUP1 PUSH2 0x1050 DUP2 PUSH2 0x166A JUMP JUMPDEST SWAP2 POP PUSH2 0x105F SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x15D8 JUMP JUMPDEST SWAP2 POP PUSH2 0x1040 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1081 JUMPI PUSH2 0x1081 PUSH2 0x16F9 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x10AB JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0xB9A JUMPI PUSH2 0x10C0 PUSH1 0x1 DUP4 PUSH2 0x15EC JUMP JUMPDEST SWAP2 POP PUSH2 0x10CD PUSH1 0xA DUP7 PUSH2 0x16A3 JUMP JUMPDEST PUSH2 0x10D8 SWAP1 PUSH1 0x30 PUSH2 0x15C0 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x10ED JUMPI PUSH2 0x10ED PUSH2 0x16E3 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x1127 PUSH1 0xA DUP7 PUSH2 0x15D8 JUMP JUMPDEST SWAP5 POP PUSH2 0x10AF JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x12D0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x118B SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x1571 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x11A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x11D5 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x11D2 SWAP2 DUP2 ADD SWAP1 PUSH2 0x14E0 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1285 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1203 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1208 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0x127D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x32 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 AND PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 EQ SWAP1 POP PUSH2 0xB9A JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x12F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1309 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA18 DUP3 PUSH2 0x12DB JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1325 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x132E DUP4 PUSH2 0x12DB JUMP JUMPDEST SWAP2 POP PUSH2 0x133C PUSH1 0x20 DUP5 ADD PUSH2 0x12DB JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x135A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1363 DUP5 PUSH2 0x12DB JUMP JUMPDEST SWAP3 POP PUSH2 0x1371 PUSH1 0x20 DUP6 ADD PUSH2 0x12DB JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1397 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13A0 DUP6 PUSH2 0x12DB JUMP JUMPDEST SWAP4 POP PUSH2 0x13AE PUSH1 0x20 DUP7 ADD PUSH2 0x12DB JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x13D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x13E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x13F8 JUMPI PUSH2 0x13F8 PUSH2 0x16F9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x1420 JUMPI PUSH2 0x1420 PUSH2 0x16F9 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP11 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0x1439 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1470 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1479 DUP4 PUSH2 0x12DB JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x148E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x14AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14B5 DUP4 PUSH2 0x12DB JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xA18 DUP2 PUSH2 0x170F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xA18 DUP2 PUSH2 0x170F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x150F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x152E DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x1603 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x1554 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x1603 JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x1568 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x1603 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND DUP4 MSTORE DUP1 DUP7 AND PUSH1 0x20 DUP5 ADD MSTORE POP DUP4 PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x80 PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x15A3 PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x1516 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0xA18 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1516 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x15D3 JUMPI PUSH2 0x15D3 PUSH2 0x16B7 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x15E7 JUMPI PUSH2 0x15E7 PUSH2 0x16CD JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x15FE JUMPI PUSH2 0x15FE PUSH2 0x16B7 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x161E JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1606 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x923 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1643 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1664 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x169C JUMPI PUSH2 0x169C PUSH2 0x16B7 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x16B2 JUMPI PUSH2 0x16B2 PUSH2 0x16CD JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP2 AND DUP2 EQ PUSH2 0x681 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ISZERO DUP6 PUSH29 0x35B16EEC48947CACEA4D96CE3BFC70CD2A2B55D6972BC9169C4EB7876 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "178:345:71:-:0;;;218:41;;;;;;;;;-1:-1:-1;1316:113:7;;;;;;;;;;;-1:-1:-1;;;1316:113:7;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1316:113:7;;;;1382:13;;1316:113;;;1382:13;;-1:-1:-1;;1382:13:7;:::i;:::-;-1:-1:-1;1405:17:7;;;;:7;;:17;;;;;:::i;:::-;;1316:113;;178:345:71;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;178:345:71;;;-1:-1:-1;178:345:71;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:380:84;93:1;89:12;;;;136;;;157:2;;211:4;203:6;199:17;189:27;;157:2;264;256:6;253:14;233:18;230:38;227:2;;;310:10;305:3;301:20;298:1;291:31;345:4;342:1;335:15;373:4;370:1;363:15;227:2;;69:325;;;:::o;:::-;178:345:71;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_approve_1859": {
                  "entryPoint": 2591,
                  "id": 1859,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_baseURI_1334": {
                  "entryPoint": null,
                  "id": 1334,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_beforeTokenTransfer_1932": {
                  "entryPoint": null,
                  "id": 1932,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_burn_1766": {
                  "entryPoint": 3787,
                  "id": 1766,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_checkOnERC721Received_1921": {
                  "entryPoint": 4398,
                  "id": 1921,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@_exists_1573": {
                  "entryPoint": null,
                  "id": 1573,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_isApprovedOrOwner_1614": {
                  "entryPoint": 2714,
                  "id": 1614,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_mint_1715": {
                  "entryPoint": 3452,
                  "id": 1715,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_msgSender_2403": {
                  "entryPoint": null,
                  "id": 2403,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_safeTransfer_1555": {
                  "entryPoint": 3955,
                  "id": 1555,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_transfer_1835": {
                  "entryPoint": 2978,
                  "id": 1835,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@approve_1377": {
                  "entryPoint": 1174,
                  "id": 1377,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@balanceOf_1235": {
                  "entryPoint": 1807,
                  "id": 1235,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@burn_16333": {
                  "entryPoint": 1656,
                  "id": 16333,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@getApproved_1398": {
                  "entryPoint": 1003,
                  "id": 1398,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@isApprovedForAll_1450": {
                  "entryPoint": null,
                  "id": 1450,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@isContract_2114": {
                  "entryPoint": null,
                  "id": 2114,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@mint_16322": {
                  "entryPoint": 1615,
                  "id": 16322,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@name_1273": {
                  "entryPoint": 857,
                  "id": 1273,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@ownerOf_1263": {
                  "entryPoint": 1668,
                  "id": 1263,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@safeTransferFrom_1496": {
                  "entryPoint": 1629,
                  "id": 1496,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@safeTransferFrom_1526": {
                  "entryPoint": 2203,
                  "id": 1526,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@setApprovalForAll_1432": {
                  "entryPoint": 1976,
                  "id": 1432,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@supportsInterface_1211": {
                  "entryPoint": 628,
                  "id": 1211,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@supportsInterface_3218": {
                  "entryPoint": null,
                  "id": 3218,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@symbol_1283": {
                  "entryPoint": 1961,
                  "id": 1283,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@toString_2572": {
                  "entryPoint": 4092,
                  "id": 2572,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@tokenURI_1325": {
                  "entryPoint": 2345,
                  "id": 1325,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@transferFrom_1477": {
                  "entryPoint": 1480,
                  "id": 1477,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "abi_decode_address": {
                  "entryPoint": 4827,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 4855,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 4882,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 4933,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
                  "entryPoint": 4993,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_addresst_bool": {
                  "entryPoint": 5213,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 5273,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_bytes4": {
                  "entryPoint": 5315,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_bytes4_fromMemory": {
                  "entryPoint": 5344,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 5373,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_bytes": {
                  "entryPoint": 5398,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 5442,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5489,
                  "id": null,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5549,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 5568,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 5592,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 5612,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 5635,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "extract_byte_array_length": {
                  "entryPoint": 5679,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 5738,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "mod_t_uint256": {
                  "entryPoint": 5795,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 5815,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x12": {
                  "entryPoint": 5837,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 5859,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 5881,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_bytes4": {
                  "entryPoint": 5903,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:13606:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:84",
                            "type": ""
                          }
                        ],
                        "src": "215:186:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:84",
                            "type": ""
                          }
                        ],
                        "src": "406:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:84",
                            "type": ""
                          }
                        ],
                        "src": "671:328:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1134:1067:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1181:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1190:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1193:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1183:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1183:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1183:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1155:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1164:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1151:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1151:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1176:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1147:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1147:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1144:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1206:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1235:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1216:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1216:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1206:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1254:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1287:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1298:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1283:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1283:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1264:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1264:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1254:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1311:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1338:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1349:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1334:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1334:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1321:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1321:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1311:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1362:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1393:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1404:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1389:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1389:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1376:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1376:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1366:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1417:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1427:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1421:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1472:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1481:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1484:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1474:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1474:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1474:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1460:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1468:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1457:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1457:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1454:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1497:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1511:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1522:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1507:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1507:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1501:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1577:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1586:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1589:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1579:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1579:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1579:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1556:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1560:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1552:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1552:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1567:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1548:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1548:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1541:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1541:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1538:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1602:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1625:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1612:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1612:16:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "1606:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1651:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "1653:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1653:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1653:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "1643:2:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1647:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1640:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1640:10:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1637:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1682:76:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1692:66:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "1686:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1767:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1787:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1781:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1781:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1771:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1799:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1821:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_3",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "1845:2:84"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1849:4:84",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1841:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1841:13:84"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "1856:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "1837:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1837:22:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1861:2:84",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1833:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1833:31:84"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "1866:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1829:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1829:40:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1817:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1817:53:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1803:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1929:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "1931:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1931:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1931:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1888:10:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1900:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1885:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1885:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1908:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1920:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1905:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1905:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "1882:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1882:46:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1879:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1967:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1971:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1960:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1960:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1960:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1998:6:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "2006:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1991:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1991:18:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1991:18:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2055:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2064:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2067:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2057:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2057:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2057:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2032:2:84"
                                          },
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "2036:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2028:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2028:11:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2041:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2024:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2024:20:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2046:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2021:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2021:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2018:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2097:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2105:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2093:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2093:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2114:2:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2118:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2110:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2110:11:84"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "2123:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldatacopy",
                                  "nodeType": "YulIdentifier",
                                  "src": "2080:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2080:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2080:46:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "memPtr",
                                            "nodeType": "YulIdentifier",
                                            "src": "2150:6:84"
                                          },
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "2158:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2146:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2146:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2163:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2142:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2142:24:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2168:1:84",
                                    "type": "",
                                    "value": "0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2135:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2135:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2135:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2179:16:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "2189:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2179:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1076:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1087:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1099:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1107:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1115:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1123:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1004:1197:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2290:263:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2336:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2345:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2348:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2338:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2338:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2338:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2311:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2320:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2307:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2307:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2332:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2303:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2303:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2300:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2361:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2390:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2371:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2371:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2361:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2409:45:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2439:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2450:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2435:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2435:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2422:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2422:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2413:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2507:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2516:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2519:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2509:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2509:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2509:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2476:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2497:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "2490:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2490:13:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "2483:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2483:21:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2473:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2473:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2466:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2466:40:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2463:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2532:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2542:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2532:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_bool",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2248:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2259:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2271:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2279:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2206:347:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2645:167:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2691:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2700:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2703:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2693:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2693:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2693:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2666:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2675:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2662:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2662:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2687:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2658:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2658:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2655:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2716:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2745:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2726:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2726:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2716:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2764:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2791:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2802:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2787:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2787:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2774:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2774:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2764:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2603:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2614:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2626:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2634:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2558:254:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2886:176:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2932:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2941:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2944:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2934:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2934:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2934:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2907:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2916:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2903:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2903:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2928:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2899:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2899:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2896:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2957:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2983:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2970:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2970:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2961:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3026:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_bytes4",
                                  "nodeType": "YulIdentifier",
                                  "src": "3002:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3002:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3002:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3041:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3051:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3041:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bytes4",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2852:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2863:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2875:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2817:245:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3147:169:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3193:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3202:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3205:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3195:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3195:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3195:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3168:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3177:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3164:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3164:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3189:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3160:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3160:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3157:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3218:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3237:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3231:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3231:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3222:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3280:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_bytes4",
                                  "nodeType": "YulIdentifier",
                                  "src": "3256:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3256:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3256:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3295:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3305:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3295:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bytes4_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3113:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3124:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3136:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3067:249:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3391:110:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3437:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3446:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3449:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3439:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3439:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3439:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3412:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3421:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3408:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3408:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3433:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3404:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3404:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3401:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3462:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3485:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3472:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3472:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3462:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3357:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3368:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3380:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3321:180:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3555:267:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3565:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3585:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3579:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3579:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3569:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3607:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3612:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3600:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3600:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3600:19:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3654:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3661:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3650:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3650:16:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3672:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3677:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3668:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3668:14:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3684:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3628:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3628:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3628:63:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3700:116:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3715:3:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "3728:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3736:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3724:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3724:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3741:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "3720:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3720:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3711:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3711:98:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3811:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3707:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3707:109:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "3700:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_bytes",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3532:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3539:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "3547:3:84",
                            "type": ""
                          }
                        ],
                        "src": "3506:316:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4014:283:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4024:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4044:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4038:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4038:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4028:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4086:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4094:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4082:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4082:17:84"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4101:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4106:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "4060:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4060:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4060:53:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4122:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4139:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4144:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4135:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4135:16:84"
                              },
                              "variables": [
                                {
                                  "name": "end_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4126:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4160:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4182:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4176:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4176:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4164:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4224:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4232:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4220:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4220:17:84"
                                  },
                                  {
                                    "name": "end_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4239:5:84"
                                  },
                                  {
                                    "name": "length_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4246:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "4198:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4198:57:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4198:57:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4264:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "end_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4275:5:84"
                                  },
                                  {
                                    "name": "length_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4282:8:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4271:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4271:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "4264:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3982:3:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3987:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3995:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "4006:3:84",
                            "type": ""
                          }
                        ],
                        "src": "3827:470:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4403:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4413:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4425:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4436:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4421:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4421:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4413:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4455:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4470:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4478:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4466:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4466:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4448:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4448:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4448:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4372:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4383:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4394:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4302:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4736:308:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4746:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4756:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4750:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4814:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4829:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4837:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4825:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4825:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4807:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4807:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4807:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4861:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4872:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4857:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4857:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4881:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4889:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4877:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4877:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4850:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4850:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4850:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4913:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4924:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4909:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4909:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4929:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4902:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4902:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4902:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4956:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4967:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4952:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4952:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4972:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4945:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4945:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4945:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4985:53:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5010:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5022:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5033:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5018:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5018:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "4993:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4993:45:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4985:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4681:9:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "4692:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "4700:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4708:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4716:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4727:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4533:511:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5144:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5154:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5166:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5177:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5162:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5162:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5154:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5196:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "5221:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "5214:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5214:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "5207:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5207:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5189:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5189:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5189:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5113:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5124:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5135:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5049:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5362:98:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5379:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5390:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5372:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5372:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5372:21:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5402:52:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5427:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5439:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5450:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5435:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5435:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "5410:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5410:44:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5402:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5331:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5342:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5353:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5241:219:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5639:240:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5656:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5667:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5649:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5649:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5649:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5690:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5701:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5686:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5686:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5706:2:84",
                                    "type": "",
                                    "value": "50"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5679:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5679:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5679:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5729:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5740:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5725:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5725:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5745:34:84",
                                    "type": "",
                                    "value": "ERC721: transfer to non ERC721Re"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5718:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5718:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5718:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5800:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5811:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5796:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5796:18:84"
                                  },
                                  {
                                    "hexValue": "63656976657220696d706c656d656e746572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5816:20:84",
                                    "type": "",
                                    "value": "ceiver implementer"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5789:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5789:48:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5789:48:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5846:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5858:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5869:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5854:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5854:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5846:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5616:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5630:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5465:414:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6058:178:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6075:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6086:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6068:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6068:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6068:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6109:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6120:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6105:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6105:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6125:2:84",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6098:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6098:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6098:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6148:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6159:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6144:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6144:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6164:30:84",
                                    "type": "",
                                    "value": "ERC721: token already minted"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6137:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6137:58:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6137:58:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6204:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6216:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6227:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6212:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6212:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6204:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6035:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6049:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5884:352:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6415:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6432:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6443:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6425:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6425:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6425:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6466:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6477:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6462:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6462:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6482:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6455:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6455:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6455:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6505:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6516:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6501:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6501:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6521:34:84",
                                    "type": "",
                                    "value": "ERC721: transfer to the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6494:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6494:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6494:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6576:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6587:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6572:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6572:18:84"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6592:6:84",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6565:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6565:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6565:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6608:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6620:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6631:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6616:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6616:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6608:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6392:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6406:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6241:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6820:175:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6837:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6848:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6830:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6830:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6830:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6871:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6882:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6867:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6867:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6887:2:84",
                                    "type": "",
                                    "value": "25"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6860:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6860:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6860:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6910:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6921:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6906:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6906:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6926:27:84",
                                    "type": "",
                                    "value": "ERC721: approve to caller"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6899:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6899:55:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6899:55:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6963:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6975:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6986:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6971:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6971:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6963:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6797:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6811:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6646:349:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7174:234:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7191:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7202:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7184:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7184:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7184:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7225:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7236:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7221:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7221:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7241:2:84",
                                    "type": "",
                                    "value": "44"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7214:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7214:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7214:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7264:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7275:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7260:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7260:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7280:34:84",
                                    "type": "",
                                    "value": "ERC721: operator query for nonex"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7253:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7253:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7253:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7335:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7346:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7331:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7331:18:84"
                                  },
                                  {
                                    "hexValue": "697374656e7420746f6b656e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7351:14:84",
                                    "type": "",
                                    "value": "istent token"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7324:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7324:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7324:42:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7375:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7387:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7398:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7383:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7383:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7375:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7151:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7165:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7000:408:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7587:246:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7604:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7615:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7597:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7597:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7597:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7638:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7649:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7634:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7634:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7654:2:84",
                                    "type": "",
                                    "value": "56"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7627:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7627:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7627:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7677:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7688:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7673:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7673:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7693:34:84",
                                    "type": "",
                                    "value": "ERC721: approve caller is not ow"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7666:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7666:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7666:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7748:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7759:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7744:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7744:18:84"
                                  },
                                  {
                                    "hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7764:26:84",
                                    "type": "",
                                    "value": "ner nor approved for all"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7737:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7737:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7737:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7800:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7812:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7823:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7808:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7808:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7800:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7564:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7578:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7413:420:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8012:232:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8029:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8040:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8022:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8022:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8022:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8063:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8074:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8059:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8059:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8079:2:84",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8052:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8052:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8052:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8102:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8113:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8098:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8098:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8118:34:84",
                                    "type": "",
                                    "value": "ERC721: balance query for the ze"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8091:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8091:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8091:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8173:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8184:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8169:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8169:18:84"
                                  },
                                  {
                                    "hexValue": "726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8189:12:84",
                                    "type": "",
                                    "value": "ro address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8162:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8162:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8162:40:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8211:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8223:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8234:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8219:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8219:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8211:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7989:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8003:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7838:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8423:231:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8440:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8451:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8433:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8433:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8433:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8474:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8485:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8470:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8470:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8490:2:84",
                                    "type": "",
                                    "value": "41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8463:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8463:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8463:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8513:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8524:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8509:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8509:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8529:34:84",
                                    "type": "",
                                    "value": "ERC721: owner query for nonexist"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8502:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8502:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8502:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8584:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8595:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8580:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8580:18:84"
                                  },
                                  {
                                    "hexValue": "656e7420746f6b656e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8600:11:84",
                                    "type": "",
                                    "value": "ent token"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8573:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8573:39:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8573:39:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8621:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8633:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8644:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8629:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8629:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8621:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8400:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8414:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8249:405:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8833:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8850:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8861:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8843:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8843:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8843:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8884:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8895:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8880:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8880:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8900:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8873:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8873:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8873:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8923:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8934:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8919:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8919:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8939:34:84",
                                    "type": "",
                                    "value": "ERC721: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8912:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8912:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8912:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8983:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8995:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9006:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8991:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8991:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8983:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8810:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8824:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8659:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9194:234:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9211:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9222:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9204:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9204:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9204:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9245:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9256:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9241:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9241:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9261:2:84",
                                    "type": "",
                                    "value": "44"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9234:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9234:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9234:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9284:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9295:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9280:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9280:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9300:34:84",
                                    "type": "",
                                    "value": "ERC721: approved query for nonex"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9273:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9273:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9273:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9355:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9366:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9351:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9351:18:84"
                                  },
                                  {
                                    "hexValue": "697374656e7420746f6b656e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9371:14:84",
                                    "type": "",
                                    "value": "istent token"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9344:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9344:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9344:42:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9395:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9407:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9418:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9403:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9403:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9395:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9171:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9185:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9020:408:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9607:231:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9624:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9635:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9617:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9617:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9617:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9658:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9669:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9654:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9654:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9674:2:84",
                                    "type": "",
                                    "value": "41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9647:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9647:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9647:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9697:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9708:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9693:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9693:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a207472616e73666572206f6620746f6b656e20746861742069",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9713:34:84",
                                    "type": "",
                                    "value": "ERC721: transfer of token that i"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9686:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9686:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9686:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9768:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9779:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9764:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9764:18:84"
                                  },
                                  {
                                    "hexValue": "73206e6f74206f776e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9784:11:84",
                                    "type": "",
                                    "value": "s not own"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9757:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9757:39:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9757:39:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9805:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9817:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9828:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9813:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9813:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9805:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9584:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9598:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9433:405:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10017:237:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10034:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10045:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10027:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10027:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10027:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10068:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10079:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10064:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10064:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10084:2:84",
                                    "type": "",
                                    "value": "47"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10057:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10057:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10057:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10107:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10118:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10103:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10103:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732314d657461646174613a2055524920717565727920666f72206e6f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10123:34:84",
                                    "type": "",
                                    "value": "ERC721Metadata: URI query for no"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10096:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10096:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10096:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10178:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10189:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10174:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10174:18:84"
                                  },
                                  {
                                    "hexValue": "6e6578697374656e7420746f6b656e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10194:17:84",
                                    "type": "",
                                    "value": "nexistent token"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10167:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10167:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10167:45:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10221:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10233:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10244:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10229:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10229:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10221:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9994:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10008:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9843:411:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10433:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10450:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10461:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10443:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10443:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10443:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10484:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10495:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10480:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10480:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10500:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10473:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10473:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10473:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10523:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10534:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10519:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10519:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10539:34:84",
                                    "type": "",
                                    "value": "ERC721: approval to current owne"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10512:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10512:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10512:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10594:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10605:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10590:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10590:18:84"
                                  },
                                  {
                                    "hexValue": "72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10610:3:84",
                                    "type": "",
                                    "value": "r"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10583:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10583:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10583:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10623:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10635:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10646:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10631:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10631:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10623:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10410:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10424:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10259:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10835:239:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10852:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10863:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10845:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10845:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10845:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10886:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10897:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10882:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10882:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10902:2:84",
                                    "type": "",
                                    "value": "49"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10875:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10875:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10875:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10925:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10936:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10921:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10921:18:84"
                                  },
                                  {
                                    "hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10941:34:84",
                                    "type": "",
                                    "value": "ERC721: transfer caller is not o"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10914:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10914:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10914:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10996:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11007:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10992:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10992:18:84"
                                  },
                                  {
                                    "hexValue": "776e6572206e6f7220617070726f766564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11012:19:84",
                                    "type": "",
                                    "value": "wner nor approved"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10985:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10985:47:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10985:47:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11041:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11053:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11064:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11049:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11049:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11041:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10812:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10826:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10661:413:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11180:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11190:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11202:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11213:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11198:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11198:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11190:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11232:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11243:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11225:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11225:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11225:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11149:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11160:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11171:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11079:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11309:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11336:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "11338:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11338:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11338:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "11325:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "11332:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "11328:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11328:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11322:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11322:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11319:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11367:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "11378:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "11381:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11374:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11374:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "11367:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "11292:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "11295:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "11301:3:84",
                            "type": ""
                          }
                        ],
                        "src": "11261:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11440:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11463:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "11465:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11465:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11465:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "11460:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "11453:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11453:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11450:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11494:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "11503:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "11506:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "11499:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11499:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "11494:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "11425:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "11428:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "11434:1:84",
                            "type": ""
                          }
                        ],
                        "src": "11394:120:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11568:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11590:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "11592:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11592:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11592:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "11584:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "11587:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11581:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11581:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11578:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11621:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "11633:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "11636:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "11629:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11629:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "11621:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "11550:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "11553:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "11559:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11519:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11702:205:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11712:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11721:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "11716:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11781:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "11806:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "11811:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "11802:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11802:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11825:3:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11830:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "11821:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11821:11:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "11815:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11815:18:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11795:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11795:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11795:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11742:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11745:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11739:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11739:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "11753:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11755:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "11764:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11767:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11760:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11760:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "11755:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "11735:3:84",
                                "statements": []
                              },
                              "src": "11731:113:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11870:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "11883:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "11888:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "11879:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11879:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11897:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11872:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11872:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11872:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11859:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11862:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11856:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11856:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11853:2:84"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "11680:3:84",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "11685:3:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "11690:6:84",
                            "type": ""
                          }
                        ],
                        "src": "11649:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11967:382:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11977:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11991:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "11994:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "11987:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11987:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "11977:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12008:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "12038:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12044:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12034:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12034:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "12012:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12085:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12087:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "12101:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12109:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "12097:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12097:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "12087:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "12065:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "12058:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12058:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12055:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12175:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12196:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12199:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12189:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12189:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12189:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12297:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12300:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12290:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12290:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12290:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12325:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12328:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "12318:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12318:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12318:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "12131:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "12154:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12162:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "12151:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12151:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "12128:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12128:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12125:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "11947:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "11956:6:84",
                            "type": ""
                          }
                        ],
                        "src": "11912:437:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12401:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12492:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12494:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12494:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12494:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "12417:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12424:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "12414:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12414:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12411:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12523:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "12534:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12541:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12530:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12530:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "12523:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "12383:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "12393:3:84",
                            "type": ""
                          }
                        ],
                        "src": "12354:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12592:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12615:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "12617:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12617:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12617:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12612:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "12605:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12605:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "12602:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12646:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12655:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12658:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "12651:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12651:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "12646:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12577:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12580:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "12586:1:84",
                            "type": ""
                          }
                        ],
                        "src": "12554:112:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12703:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12720:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12723:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12713:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12713:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12713:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12817:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12820:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12810:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12810:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12810:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12841:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12844:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "12834:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12834:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12834:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "12671:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12892:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12909:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12912:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12902:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12902:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12902:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13006:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13009:4:84",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12999:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12999:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12999:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13030:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13033:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13023:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13023:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13023:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "12860:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13081:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13098:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13101:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13091:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13091:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13091:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13195:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13198:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13188:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13188:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13188:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13219:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13222:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13212:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13212:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13212:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "13049:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13270:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13287:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13290:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13280:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13280:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13280:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13384:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13387:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13377:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13377:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13377:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13408:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13411:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13401:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13401:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13401:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "13238:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13471:133:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13582:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13591:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13594:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13584:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13584:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13584:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "13494:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "13505:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13512:66:84",
                                            "type": "",
                                            "value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "13501:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13501:78:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "13491:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13491:89:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "13484:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13484:97:84"
                              },
                              "nodeType": "YulIf",
                              "src": "13481:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_bytes4",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "13460:5:84",
                            "type": ""
                          }
                        ],
                        "src": "13427:177:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        let offset := calldataload(add(headStart, 96))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := calldataload(_2)\n        if gt(_3, _1) { panic_error_0x41() }\n        let _4 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_3, 0x1f), _4), 63), _4))\n        if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _3)\n        if gt(add(add(_2, _3), 32), dataEnd) { revert(0, 0) }\n        calldatacopy(add(memPtr, 32), add(_2, 32), _3)\n        mstore(add(add(memPtr, _3), 32), 0)\n        value3 := memPtr\n    }\n    function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let value := calldataload(add(headStart, 32))\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value1 := value\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_encode_bytes(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n        end := add(add(pos, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 0x20)\n    }\n    function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        let end_1 := add(pos, length)\n        let length_1 := mload(value1)\n        copy_memory_to_memory(add(value1, 0x20), end_1, length_1)\n        end := add(end_1, length_1)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), 128)\n        tail := abi_encode_bytes(value3, add(headStart, 128))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_bytes(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 50)\n        mstore(add(headStart, 64), \"ERC721: transfer to non ERC721Re\")\n        mstore(add(headStart, 96), \"ceiver implementer\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"ERC721: token already minted\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC721: transfer to the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 25)\n        mstore(add(headStart, 64), \"ERC721: approve to caller\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 44)\n        mstore(add(headStart, 64), \"ERC721: operator query for nonex\")\n        mstore(add(headStart, 96), \"istent token\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 56)\n        mstore(add(headStart, 64), \"ERC721: approve caller is not ow\")\n        mstore(add(headStart, 96), \"ner nor approved for all\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"ERC721: balance query for the ze\")\n        mstore(add(headStart, 96), \"ro address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 41)\n        mstore(add(headStart, 64), \"ERC721: owner query for nonexist\")\n        mstore(add(headStart, 96), \"ent token\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"ERC721: mint to the zero address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 44)\n        mstore(add(headStart, 64), \"ERC721: approved query for nonex\")\n        mstore(add(headStart, 96), \"istent token\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 41)\n        mstore(add(headStart, 64), \"ERC721: transfer of token that i\")\n        mstore(add(headStart, 96), \"s not own\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 47)\n        mstore(add(headStart, 64), \"ERC721Metadata: URI query for no\")\n        mstore(add(headStart, 96), \"nexistent token\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC721: approval to current owne\")\n        mstore(add(headStart, 96), \"r\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 49)\n        mstore(add(headStart, 64), \"ERC721: transfer caller is not o\")\n        mstore(add(headStart, 96), \"wner nor approved\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\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) { mstore(add(dst, length), 0) }\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_bytes4(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100f55760003560e01c806342966c6811610097578063a22cb46511610066578063a22cb465146101ff578063b88d4fde14610212578063c87b56dd14610225578063e985e9c51461023857600080fd5b806342966c68146101b05780636352211e146101c357806370a08231146101d657806395d89b41146101f757600080fd5b8063095ea7b3116100d3578063095ea7b31461016257806323b872dd1461017757806340c10f191461018a57806342842e0e1461019d57600080fd5b806301ffc9a7146100fa57806306fdde0314610122578063081812fc14610137575b600080fd5b61010d6101083660046114c3565b610274565b60405190151581526020015b60405180910390f35b61012a610359565b60405161011991906115ad565b61014a6101453660046114fd565b6103eb565b6040516001600160a01b039091168152602001610119565b610175610170366004611499565b610496565b005b610175610185366004611345565b6105c8565b610175610198366004611499565b61064f565b6101756101ab366004611345565b61065d565b6101756101be3660046114fd565b610678565b61014a6101d13660046114fd565b610684565b6101e96101e43660046112f7565b61070f565b604051908152602001610119565b61012a6107a9565b61017561020d36600461145d565b6107b8565b610175610220366004611381565b61089b565b61012a6102333660046114fd565b610929565b61010d610246366004611312565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061030757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061035357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600080546103689061162f565b80601f01602080910402602001604051908101604052809291908181526020018280546103949061162f565b80156103e15780601f106103b6576101008083540402835291602001916103e1565b820191906000526020600020905b8154815290600101906020018083116103c457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661047a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104a182610684565b9050806001600160a01b0316836001600160a01b0316141561052b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610471565b336001600160a01b038216148061054757506105478133610246565b6105b95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610471565b6105c38383610a1f565b505050565b6105d23382610a9a565b6106445760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610471565b6105c3838383610ba2565b6106598282610d7c565b5050565b6105c38383836040518060200160405280600081525061089b565b61068181610ecb565b50565b6000818152600260205260408120546001600160a01b0316806103535760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610471565b60006001600160a01b03821661078d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610471565b506001600160a01b031660009081526003602052604090205490565b6060600180546103689061162f565b6001600160a01b0382163314156108115760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610471565b3360008181526005602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108a53383610a9a565b6109175760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610471565b61092384848484610f73565b50505050565b6000818152600260205260409020546060906001600160a01b03166109b65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610471565b60006109cd60408051602081019091526000815290565b905060008151116109ed5760405180602001604052806000815250610a18565b806109f784610ffc565b604051602001610a08929190611542565b6040516020818303038152906040525b9392505050565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190610a6182610684565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610b245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610471565b6000610b2f83610684565b9050806001600160a01b0316846001600160a01b03161480610b6a5750836001600160a01b0316610b5f846103eb565b6001600160a01b0316145b80610b9a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610bb582610684565b6001600160a01b031614610c315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610471565b6001600160a01b038216610cac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610471565b610cb7600082610a1f565b6001600160a01b0383166000908152600360205260408120805460019290610ce09084906115ec565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d0e9084906115c0565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216610dd25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610471565b6000818152600260205260409020546001600160a01b031615610e375760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610471565b6001600160a01b0382166000908152600360205260408120805460019290610e609084906115c0565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000610ed682610684565b9050610ee3600083610a1f565b6001600160a01b0381166000908152600360205260408120805460019290610f0c9084906115ec565b9091555050600082815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b610f7e848484610ba2565b610f8a8484848461112e565b6109235760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610471565b60608161103c57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561106657806110508161166a565b915061105f9050600a836115d8565b9150611040565b60008167ffffffffffffffff811115611081576110816116f9565b6040519080825280601f01601f1916602001820160405280156110ab576020820181803683370190505b5090505b8415610b9a576110c06001836115ec565b91506110cd600a866116a3565b6110d89060306115c0565b60f81b8183815181106110ed576110ed6116e3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611127600a866115d8565b94506110af565b60006001600160a01b0384163b156112d0576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061118b903390899088908890600401611571565b602060405180830381600087803b1580156111a557600080fd5b505af19250505080156111d5575060408051601f3d908101601f191682019092526111d2918101906114e0565b60015b611285573d808015611203576040519150601f19603f3d011682016040523d82523d6000602084013e611208565b606091505b50805161127d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610471565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610b9a565b506001949350505050565b80356001600160a01b03811681146112f257600080fd5b919050565b60006020828403121561130957600080fd5b610a18826112db565b6000806040838503121561132557600080fd5b61132e836112db565b915061133c602084016112db565b90509250929050565b60008060006060848603121561135a57600080fd5b611363846112db565b9250611371602085016112db565b9150604084013590509250925092565b6000806000806080858703121561139757600080fd5b6113a0856112db565b93506113ae602086016112db565b925060408501359150606085013567ffffffffffffffff808211156113d257600080fd5b818701915087601f8301126113e657600080fd5b8135818111156113f8576113f86116f9565b604051601f8201601f19908116603f01168101908382118183101715611420576114206116f9565b816040528281528a602084870101111561143957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561147057600080fd5b611479836112db565b91506020830135801515811461148e57600080fd5b809150509250929050565b600080604083850312156114ac57600080fd5b6114b5836112db565b946020939093013593505050565b6000602082840312156114d557600080fd5b8135610a188161170f565b6000602082840312156114f257600080fd5b8151610a188161170f565b60006020828403121561150f57600080fd5b5035919050565b6000815180845261152e816020860160208601611603565b601f01601f19169290920160200192915050565b60008351611554818460208801611603565b835190830190611568818360208801611603565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526115a36080830184611516565b9695505050505050565b602081526000610a186020830184611516565b600082198211156115d3576115d36116b7565b500190565b6000826115e7576115e76116cd565b500490565b6000828210156115fe576115fe6116b7565b500390565b60005b8381101561161e578181015183820152602001611606565b838111156109235750506000910152565b600181811c9082168061164357607f821691505b6020821081141561166457634e487b7160e01b600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561169c5761169c6116b7565b5060010190565b6000826116b2576116b26116cd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461068157600080fdfea264697066735822122015857c035b16eec48947cacea4d96ce3bfc70cd2a2b55d6972bc9169c4eb787664736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xF5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x42966C68 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1FF JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x212 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x238 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x42966C68 EQ PUSH2 0x1B0 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x162 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x18A JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x19D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x137 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10D PUSH2 0x108 CALLDATASIZE PUSH1 0x4 PUSH2 0x14C3 JUMP JUMPDEST PUSH2 0x274 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x12A PUSH2 0x359 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x15AD JUMP JUMPDEST PUSH2 0x14A PUSH2 0x145 CALLDATASIZE PUSH1 0x4 PUSH2 0x14FD JUMP JUMPDEST PUSH2 0x3EB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0x175 PUSH2 0x170 CALLDATASIZE PUSH1 0x4 PUSH2 0x1499 JUMP JUMPDEST PUSH2 0x496 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x175 PUSH2 0x185 CALLDATASIZE PUSH1 0x4 PUSH2 0x1345 JUMP JUMPDEST PUSH2 0x5C8 JUMP JUMPDEST PUSH2 0x175 PUSH2 0x198 CALLDATASIZE PUSH1 0x4 PUSH2 0x1499 JUMP JUMPDEST PUSH2 0x64F JUMP JUMPDEST PUSH2 0x175 PUSH2 0x1AB CALLDATASIZE PUSH1 0x4 PUSH2 0x1345 JUMP JUMPDEST PUSH2 0x65D JUMP JUMPDEST PUSH2 0x175 PUSH2 0x1BE CALLDATASIZE PUSH1 0x4 PUSH2 0x14FD JUMP JUMPDEST PUSH2 0x678 JUMP JUMPDEST PUSH2 0x14A PUSH2 0x1D1 CALLDATASIZE PUSH1 0x4 PUSH2 0x14FD JUMP JUMPDEST PUSH2 0x684 JUMP JUMPDEST PUSH2 0x1E9 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x12F7 JUMP JUMPDEST PUSH2 0x70F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0x12A PUSH2 0x7A9 JUMP JUMPDEST PUSH2 0x175 PUSH2 0x20D CALLDATASIZE PUSH1 0x4 PUSH2 0x145D JUMP JUMPDEST PUSH2 0x7B8 JUMP JUMPDEST PUSH2 0x175 PUSH2 0x220 CALLDATASIZE PUSH1 0x4 PUSH2 0x1381 JUMP JUMPDEST PUSH2 0x89B JUMP JUMPDEST PUSH2 0x12A PUSH2 0x233 CALLDATASIZE PUSH1 0x4 PUSH2 0x14FD JUMP JUMPDEST PUSH2 0x929 JUMP JUMPDEST PUSH2 0x10D PUSH2 0x246 CALLDATASIZE PUSH1 0x4 PUSH2 0x1312 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 EQ DUP1 PUSH2 0x307 JUMPI POP PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 EQ JUMPDEST DUP1 PUSH2 0x353 JUMPI POP PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x368 SWAP1 PUSH2 0x162F JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x394 SWAP1 PUSH2 0x162F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3E1 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3B6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3E1 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 0x3C4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x47A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4A1 DUP3 PUSH2 0x684 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x52B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x547 JUMPI POP PUSH2 0x547 DUP2 CALLER PUSH2 0x246 JUMP JUMPDEST PUSH2 0x5B9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x38 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH2 0x5C3 DUP4 DUP4 PUSH2 0xA1F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5D2 CALLER DUP3 PUSH2 0xA9A JUMP JUMPDEST PUSH2 0x644 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x31 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH2 0x5C3 DUP4 DUP4 DUP4 PUSH2 0xBA2 JUMP JUMPDEST PUSH2 0x659 DUP3 DUP3 PUSH2 0xD7C JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x5C3 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x89B JUMP JUMPDEST PUSH2 0x681 DUP2 PUSH2 0xECB JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x353 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x78D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x368 SWAP1 PUSH2 0x162F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND CALLER EQ ISZERO PUSH2 0x811 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x471 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP1 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x8A5 CALLER DUP4 PUSH2 0xA9A JUMP JUMPDEST PUSH2 0x917 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x31 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH2 0x923 DUP5 DUP5 DUP5 DUP5 PUSH2 0xF73 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x60 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9B6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9CD PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x9ED JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xA18 JUMP JUMPDEST DUP1 PUSH2 0x9F7 DUP5 PUSH2 0xFFC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xA08 SWAP3 SWAP2 SWAP1 PUSH2 0x1542 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0xA61 DUP3 PUSH2 0x684 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB24 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB2F DUP4 PUSH2 0x684 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0xB6A JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB5F DUP5 PUSH2 0x3EB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0xB9A JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xBB5 DUP3 PUSH2 0x684 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC31 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x73206E6F74206F776E0000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xCAC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH2 0xCB7 PUSH1 0x0 DUP3 PUSH2 0xA1F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xCE0 SWAP1 DUP5 SWAP1 PUSH2 0x15EC JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xD0E SWAP1 DUP5 SWAP1 PUSH2 0x15C0 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP5 SWAP4 SWAP2 DUP8 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xDD2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x471 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0xE37 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x471 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xE60 SWAP1 DUP5 SWAP1 PUSH2 0x15C0 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP4 SWAP3 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP3 SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xED6 DUP3 PUSH2 0x684 JUMP JUMPDEST SWAP1 POP PUSH2 0xEE3 PUSH1 0x0 DUP4 PUSH2 0xA1F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xF0C SWAP1 DUP5 SWAP1 PUSH2 0x15EC JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE MLOAD DUP4 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP4 SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH2 0xF7E DUP5 DUP5 DUP5 PUSH2 0xBA2 JUMP JUMPDEST PUSH2 0xF8A DUP5 DUP5 DUP5 DUP5 PUSH2 0x112E JUMP JUMPDEST PUSH2 0x923 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x32 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0x103C JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0x1066 JUMPI DUP1 PUSH2 0x1050 DUP2 PUSH2 0x166A JUMP JUMPDEST SWAP2 POP PUSH2 0x105F SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x15D8 JUMP JUMPDEST SWAP2 POP PUSH2 0x1040 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1081 JUMPI PUSH2 0x1081 PUSH2 0x16F9 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x10AB JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0xB9A JUMPI PUSH2 0x10C0 PUSH1 0x1 DUP4 PUSH2 0x15EC JUMP JUMPDEST SWAP2 POP PUSH2 0x10CD PUSH1 0xA DUP7 PUSH2 0x16A3 JUMP JUMPDEST PUSH2 0x10D8 SWAP1 PUSH1 0x30 PUSH2 0x15C0 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x10ED JUMPI PUSH2 0x10ED PUSH2 0x16E3 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x1127 PUSH1 0xA DUP7 PUSH2 0x15D8 JUMP JUMPDEST SWAP5 POP PUSH2 0x10AF JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x12D0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x118B SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x1571 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x11A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x11D5 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x11D2 SWAP2 DUP2 ADD SWAP1 PUSH2 0x14E0 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1285 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1203 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1208 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0x127D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x32 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x471 JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 AND PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 EQ SWAP1 POP PUSH2 0xB9A JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x12F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1309 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA18 DUP3 PUSH2 0x12DB JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1325 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x132E DUP4 PUSH2 0x12DB JUMP JUMPDEST SWAP2 POP PUSH2 0x133C PUSH1 0x20 DUP5 ADD PUSH2 0x12DB JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x135A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1363 DUP5 PUSH2 0x12DB JUMP JUMPDEST SWAP3 POP PUSH2 0x1371 PUSH1 0x20 DUP6 ADD PUSH2 0x12DB JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1397 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13A0 DUP6 PUSH2 0x12DB JUMP JUMPDEST SWAP4 POP PUSH2 0x13AE PUSH1 0x20 DUP7 ADD PUSH2 0x12DB JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x13D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x13E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x13F8 JUMPI PUSH2 0x13F8 PUSH2 0x16F9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x1420 JUMPI PUSH2 0x1420 PUSH2 0x16F9 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP11 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0x1439 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1470 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1479 DUP4 PUSH2 0x12DB JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x148E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x14AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14B5 DUP4 PUSH2 0x12DB JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xA18 DUP2 PUSH2 0x170F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xA18 DUP2 PUSH2 0x170F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x150F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x152E DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x1603 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x1554 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x1603 JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x1568 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x1603 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND DUP4 MSTORE DUP1 DUP7 AND PUSH1 0x20 DUP5 ADD MSTORE POP DUP4 PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x80 PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x15A3 PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x1516 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0xA18 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1516 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x15D3 JUMPI PUSH2 0x15D3 PUSH2 0x16B7 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x15E7 JUMPI PUSH2 0x15E7 PUSH2 0x16CD JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x15FE JUMPI PUSH2 0x15FE PUSH2 0x16B7 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x161E JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1606 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x923 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1643 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1664 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x169C JUMPI PUSH2 0x169C PUSH2 0x16B7 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x16B2 JUMPI PUSH2 0x16B2 PUSH2 0x16CD JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP2 AND DUP2 EQ PUSH2 0x681 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ISZERO DUP6 PUSH29 0x35B16EEC48947CACEA4D96CE3BFC70CD2A2B55D6972BC9169C4EB7876 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "178:345:71:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1496:300:7;;;;;;:::i;:::-;;:::i;:::-;;;5214:14:84;;5207:22;5189:41;;5177:2;5162:18;1496:300:7;;;;;;;;2414:98;;;:::i;:::-;;;;;;;:::i;3925:217::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4466:55:84;;;4448:74;;4436:2;4421:18;3925:217:7;4403:125:84;3463:401:7;;;;;;:::i;:::-;;:::i;:::-;;4789:330;;;;;;:::i;:::-;;:::i;313:85:71:-;;;;;;:::i;:::-;;:::i;5185:179:7:-;;;;;;:::i;:::-;;:::i;452:69:71:-;;;;;;:::i;:::-;;:::i;2117:235:7:-;;;;;;:::i;:::-;;:::i;1855:205::-;;;;;;:::i;:::-;;:::i;:::-;;;11225:25:84;;;11213:2;11198:18;1855:205:7;11180:76:84;2576:102:7;;;:::i;4209:290::-;;;;;;:::i;:::-;;:::i;5430:320::-;;;;;;:::i;:::-;;:::i;2744:329::-;;;;;;:::i;:::-;;:::i;4565:162::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4685:25:7;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4565:162;1496:300;1598:4;1633:40;;;1648:25;1633:40;;:104;;-1:-1:-1;1689:48:7;;;1704:33;1689:48;1633:104;:156;;;-1:-1:-1;886:25:17;871:40;;;;1753:36:7;1614:175;1496:300;-1:-1:-1;;1496:300:7:o;2414:98::-;2468:13;2500:5;2493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414:98;:::o;3925:217::-;4001:7;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:7;4020:73;;;;-1:-1:-1;;;4020:73:7;;9222:2:84;4020:73:7;;;9204:21:84;9261:2;9241:18;;;9234:30;9300:34;9280:18;;;9273:62;9371:14;9351:18;;;9344:42;9403:19;;4020:73:7;;;;;;;;;-1:-1:-1;4111:24:7;;;;:15;:24;;;;;;-1:-1:-1;;;;;4111:24:7;;3925:217::o;3463:401::-;3543:13;3559:23;3574:7;3559:14;:23::i;:::-;3543:39;;3606:5;-1:-1:-1;;;;;3600:11:7;:2;-1:-1:-1;;;;;3600:11:7;;;3592:57;;;;-1:-1:-1;;;3592:57:7;;10461:2:84;3592:57:7;;;10443:21:84;10500:2;10480:18;;;10473:30;10539:34;10519:18;;;10512:62;10610:3;10590:18;;;10583:31;10631:19;;3592:57:7;10433:223:84;3592:57:7;666:10:12;-1:-1:-1;;;;;3681:21:7;;;;:62;;-1:-1:-1;3706:37:7;3723:5;666:10:12;4565:162:7;:::i;3706:37::-;3660:165;;;;-1:-1:-1;;;3660:165:7;;7615:2:84;3660:165:7;;;7597:21:84;7654:2;7634:18;;;7627:30;7693:34;7673:18;;;7666:62;7764:26;7744:18;;;7737:54;7808:19;;3660:165:7;7587:246:84;3660:165:7;3836:21;3845:2;3849:7;3836:8;:21::i;:::-;3533:331;3463:401;;:::o;4789:330::-;4978:41;666:10:12;5011:7:7;4978:18;:41::i;:::-;4970:103;;;;-1:-1:-1;;;4970:103:7;;10863:2:84;4970:103:7;;;10845:21:84;10902:2;10882:18;;;10875:30;10941:34;10921:18;;;10914:62;11012:19;10992:18;;;10985:47;11049:19;;4970:103:7;10835:239:84;4970:103:7;5084:28;5094:4;5100:2;5104:7;5084:9;:28::i;313:85:71:-;373:18;379:2;383:7;373:5;:18::i;:::-;313:85;;:::o;5185:179:7:-;5318:39;5335:4;5341:2;5345:7;5318:39;;;;;;;;;;;;:16;:39::i;452:69:71:-;500:14;506:7;500:5;:14::i;:::-;452:69;:::o;2117:235:7:-;2189:7;2224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2224:16:7;2258:19;2250:73;;;;-1:-1:-1;;;2250:73:7;;8451:2:84;2250:73:7;;;8433:21:84;8490:2;8470:18;;;8463:30;8529:34;8509:18;;;8502:62;8600:11;8580:18;;;8573:39;8629:19;;2250:73:7;8423:231:84;1855:205:7;1927:7;-1:-1:-1;;;;;1954:19:7;;1946:74;;;;-1:-1:-1;;;1946:74:7;;8040:2:84;1946:74:7;;;8022:21:84;8079:2;8059:18;;;8052:30;8118:34;8098:18;;;8091:62;8189:12;8169:18;;;8162:40;8219:19;;1946:74:7;8012:232:84;1946:74:7;-1:-1:-1;;;;;;2037:16:7;;;;;:9;:16;;;;;;;1855:205::o;2576:102::-;2632:13;2664:7;2657:14;;;;;:::i;4209:290::-;-1:-1:-1;;;;;4311:24:7;;666:10:12;4311:24:7;;4303:62;;;;-1:-1:-1;;;4303:62:7;;6848:2:84;4303:62:7;;;6830:21:84;6887:2;6867:18;;;6860:30;6926:27;6906:18;;;6899:55;6971:18;;4303:62:7;6820:175:84;4303:62:7;666:10:12;4376:32:7;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4376:42:7;;;;;;;;;;;;:53;;;;;;;;;;;;;4444:48;;5189:41:84;;;4376:42:7;;666:10:12;4444:48:7;;5162:18:84;4444:48:7;;;;;;;4209:290;;:::o;5430:320::-;5599:41;666:10:12;5632:7:7;5599:18;:41::i;:::-;5591:103;;;;-1:-1:-1;;;5591:103:7;;10863:2:84;5591:103:7;;;10845:21:84;10902:2;10882:18;;;10875:30;10941:34;10921:18;;;10914:62;11012:19;10992:18;;;10985:47;11049:19;;5591:103:7;10835:239:84;5591:103:7;5704:39;5718:4;5724:2;5728:7;5737:5;5704:13;:39::i;:::-;5430:320;;;;:::o;2744:329::-;7287:4;7310:16;;;:7;:16;;;;;;2817:13;;-1:-1:-1;;;;;7310:16:7;2842:76;;;;-1:-1:-1;;;2842:76:7;;10045:2:84;2842:76:7;;;10027:21:84;10084:2;10064:18;;;10057:30;10123:34;10103:18;;;10096:62;10194:17;10174:18;;;10167:45;10229:19;;2842:76:7;10017:237:84;2842:76:7;2929:21;2953:10;3390:9;;;;;;;;;-1:-1:-1;3390:9:7;;;3314:92;2953:10;2929:34;;3004:1;2986:7;2980:21;:25;:86;;;;;;;;;;;;;;;;;3032:7;3041:18;:7;:16;:18::i;:::-;3015:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2980:86;2973:93;2744:329;-1:-1:-1;;;2744:329:7:o;11073:171::-;11147:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;11147:29:7;-1:-1:-1;;;;;11147:29:7;;;;;;;;:24;;11200:23;11147:24;11200:14;:23::i;:::-;-1:-1:-1;;;;;11191:46:7;;;;;;;;;;;11073:171;;:::o;7505:344::-;7598:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:7;7614:73;;;;-1:-1:-1;;;7614:73:7;;7202:2:84;7614:73:7;;;7184:21:84;7241:2;7221:18;;;7214:30;7280:34;7260:18;;;7253:62;7351:14;7331:18;;;7324:42;7383:19;;7614:73:7;7174:234:84;7614:73:7;7697:13;7713:23;7728:7;7713:14;:23::i;:::-;7697:39;;7765:5;-1:-1:-1;;;;;7754:16:7;:7;-1:-1:-1;;;;;7754:16:7;;:51;;;;7798:7;-1:-1:-1;;;;;7774:31:7;:20;7786:7;7774:11;:20::i;:::-;-1:-1:-1;;;;;7774:31:7;;7754:51;:87;;;-1:-1:-1;;;;;;4685:25:7;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7809:32;7746:96;7505:344;-1:-1:-1;;;;7505:344:7:o;10402:560::-;10556:4;-1:-1:-1;;;;;10529:31:7;:23;10544:7;10529:14;:23::i;:::-;-1:-1:-1;;;;;10529:31:7;;10521:85;;;;-1:-1:-1;;;10521:85:7;;9635:2:84;10521:85:7;;;9617:21:84;9674:2;9654:18;;;9647:30;9713:34;9693:18;;;9686:62;9784:11;9764:18;;;9757:39;9813:19;;10521:85:7;9607:231:84;10521:85:7;-1:-1:-1;;;;;10624:16:7;;10616:65;;;;-1:-1:-1;;;10616:65:7;;6443:2:84;10616:65:7;;;6425:21:84;6482:2;6462:18;;;6455:30;6521:34;6501:18;;;6494:62;6592:6;6572:18;;;6565:34;6616:19;;10616:65:7;6415:226:84;10616:65:7;10793:29;10810:1;10814:7;10793:8;:29::i;:::-;-1:-1:-1;;;;;10833:15:7;;;;;;:9;:15;;;;;:20;;10852:1;;10833:15;:20;;10852:1;;10833:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10863:13:7;;;;;;:9;:13;;;;;:18;;10880:1;;10863:13;:18;;10880:1;;10863:18;:::i;:::-;;;;-1:-1:-1;;10891:16:7;;;;:7;:16;;;;;;:21;;-1:-1:-1;;10891:21:7;-1:-1:-1;;;;;10891:21:7;;;;;;;;;10928:27;;10891:16;;10928:27;;;;;;;10402:560;;;:::o;9141:372::-;-1:-1:-1;;;;;9220:16:7;;9212:61;;;;-1:-1:-1;;;9212:61:7;;8861:2:84;9212:61:7;;;8843:21:84;;;8880:18;;;8873:30;8939:34;8919:18;;;8912:62;8991:18;;9212:61:7;8833:182:84;9212:61:7;7287:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:7;:30;9283:58;;;;-1:-1:-1;;;9283:58:7;;6086:2:84;9283:58:7;;;6068:21:84;6125:2;6105:18;;;6098:30;6164;6144:18;;;6137:58;6212:18;;9283:58:7;6058:178:84;9283:58:7;-1:-1:-1;;;;;9408:13:7;;;;;;:9;:13;;;;;:18;;9425:1;;9408:13;:18;;9425:1;;9408:18;:::i;:::-;;;;-1:-1:-1;;9436:16:7;;;;:7;:16;;;;;;:21;;-1:-1:-1;;9436:21:7;-1:-1:-1;;;;;9436:21:7;;;;;;;;9473:33;;9436:16;;;9473:33;;9436:16;;9473:33;9141:372;;:::o;9730:348::-;9789:13;9805:23;9820:7;9805:14;:23::i;:::-;9789:39;;9925:29;9942:1;9946:7;9925:8;:29::i;:::-;-1:-1:-1;;;;;9965:16:7;;;;;;:9;:16;;;;;:21;;9985:1;;9965:16;:21;;9985:1;;9965:21;:::i;:::-;;;;-1:-1:-1;;10003:16:7;;;;:7;:16;;;;;;9996:23;;-1:-1:-1;;9996:23:7;;;10035:36;10011:7;;10003:16;-1:-1:-1;;;;;10035:36:7;;;;;10003:16;;10035:36;9779:299;9730:348;:::o;6612:307::-;6763:28;6773:4;6779:2;6783:7;6763:9;:28::i;:::-;6809:48;6832:4;6838:2;6842:7;6851:5;6809:22;:48::i;:::-;6801:111;;;;-1:-1:-1;;;6801:111:7;;5667:2:84;6801:111:7;;;5649:21:84;5706:2;5686:18;;;5679:30;5745:34;5725:18;;;5718:62;5816:20;5796:18;;;5789:48;5854:19;;6801:111:7;5639:240:84;275:703:14;331:13;548:10;544:51;;-1:-1:-1;;574:10:14;;;;;;;;;;;;;;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:14;;-1:-1:-1;720:2:14;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:14;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:14;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;919:11:14;928:2;919:11;;:::i;:::-;;;791:150;;11797:778:7;11947:4;-1:-1:-1;;;;;11967:13:7;;1034:20:11;1080:8;11963:606:7;;12002:72;;;;;-1:-1:-1;;;;;12002:36:7;;;;;:72;;666:10:12;;12053:4:7;;12059:7;;12068:5;;12002:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12002:72:7;;;;;;;;-1:-1:-1;;12002:72:7;;;;;;;;;;;;:::i;:::-;;;11998:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12241:13:7;;12237:266;;12283:60;;-1:-1:-1;;;12283:60:7;;5667:2:84;12283:60:7;;;5649:21:84;5706:2;5686:18;;;5679:30;5745:34;5725:18;;;5718:62;5816:20;5796:18;;;5789:48;5854:19;;12283:60:7;5639:240:84;12237:266:7;12455:6;12449:13;12440:6;12436:2;12432:15;12425:38;11998:519;12124:51;;12134:41;12124:51;;-1:-1:-1;12117:58:7;;11963:606;-1:-1:-1;12554:4:7;11797:778;;;;;;:::o;14:196:84:-;82:20;;-1:-1:-1;;;;;131:54:84;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:1197::-;1099:6;1107;1115;1123;1176:3;1164:9;1155:7;1151:23;1147:33;1144:2;;;1193:1;1190;1183:12;1144:2;1216:29;1235:9;1216:29;:::i;:::-;1206:39;;1264:38;1298:2;1287:9;1283:18;1264:38;:::i;:::-;1254:48;;1349:2;1338:9;1334:18;1321:32;1311:42;;1404:2;1393:9;1389:18;1376:32;1427:18;1468:2;1460:6;1457:14;1454:2;;;1484:1;1481;1474:12;1454:2;1522:6;1511:9;1507:22;1497:32;;1567:7;1560:4;1556:2;1552:13;1548:27;1538:2;;1589:1;1586;1579:12;1538:2;1625;1612:16;1647:2;1643;1640:10;1637:2;;;1653:18;;:::i;:::-;1787:2;1781:9;1849:4;1841:13;;-1:-1:-1;;1837:22:84;;;1861:2;1833:31;1829:40;1817:53;;;1885:18;;;1905:22;;;1882:46;1879:2;;;1931:18;;:::i;:::-;1971:10;1967:2;1960:22;2006:2;1998:6;1991:18;2046:7;2041:2;2036;2032;2028:11;2024:20;2021:33;2018:2;;;2067:1;2064;2057:12;2018:2;2123;2118;2114;2110:11;2105:2;2097:6;2093:15;2080:46;2168:1;2163:2;2158;2150:6;2146:15;2142:24;2135:35;2189:6;2179:16;;;;;;;1134:1067;;;;;;;:::o;2206:347::-;2271:6;2279;2332:2;2320:9;2311:7;2307:23;2303:32;2300:2;;;2348:1;2345;2338:12;2300:2;2371:29;2390:9;2371:29;:::i;:::-;2361:39;;2450:2;2439:9;2435:18;2422:32;2497:5;2490:13;2483:21;2476:5;2473:32;2463:2;;2519:1;2516;2509:12;2463:2;2542:5;2532:15;;;2290:263;;;;;:::o;2558:254::-;2626:6;2634;2687:2;2675:9;2666:7;2662:23;2658:32;2655:2;;;2703:1;2700;2693:12;2655:2;2726:29;2745:9;2726:29;:::i;:::-;2716:39;2802:2;2787:18;;;;2774:32;;-1:-1:-1;;;2645:167:84:o;2817:245::-;2875:6;2928:2;2916:9;2907:7;2903:23;2899:32;2896:2;;;2944:1;2941;2934:12;2896:2;2983:9;2970:23;3002:30;3026:5;3002:30;:::i;3067:249::-;3136:6;3189:2;3177:9;3168:7;3164:23;3160:32;3157:2;;;3205:1;3202;3195:12;3157:2;3237:9;3231:16;3256:30;3280:5;3256:30;:::i;3321:180::-;3380:6;3433:2;3421:9;3412:7;3408:23;3404:32;3401:2;;;3449:1;3446;3439:12;3401:2;-1:-1:-1;3472:23:84;;3391:110;-1:-1:-1;3391:110:84:o;3506:316::-;3547:3;3585:5;3579:12;3612:6;3607:3;3600:19;3628:63;3684:6;3677:4;3672:3;3668:14;3661:4;3654:5;3650:16;3628:63;:::i;:::-;3736:2;3724:15;-1:-1:-1;;3720:88:84;3711:98;;;;3811:4;3707:109;;3555:267;-1:-1:-1;;3555:267:84:o;3827:470::-;4006:3;4044:6;4038:13;4060:53;4106:6;4101:3;4094:4;4086:6;4082:17;4060:53;:::i;:::-;4176:13;;4135:16;;;;4198:57;4176:13;4135:16;4232:4;4220:17;;4198:57;:::i;:::-;4271:20;;4014:283;-1:-1:-1;;;;4014:283:84:o;4533:511::-;4727:4;-1:-1:-1;;;;;4837:2:84;4829:6;4825:15;4814:9;4807:34;4889:2;4881:6;4877:15;4872:2;4861:9;4857:18;4850:43;;4929:6;4924:2;4913:9;4909:18;4902:34;4972:3;4967:2;4956:9;4952:18;4945:31;4993:45;5033:3;5022:9;5018:19;5010:6;4993:45;:::i;:::-;4985:53;4736:308;-1:-1:-1;;;;;;4736:308:84:o;5241:219::-;5390:2;5379:9;5372:21;5353:4;5410:44;5450:2;5439:9;5435:18;5427:6;5410:44;:::i;11261:128::-;11301:3;11332:1;11328:6;11325:1;11322:13;11319:2;;;11338:18;;:::i;:::-;-1:-1:-1;11374:9:84;;11309:80::o;11394:120::-;11434:1;11460;11450:2;;11465:18;;:::i;:::-;-1:-1:-1;11499:9:84;;11440:74::o;11519:125::-;11559:4;11587:1;11584;11581:8;11578:2;;;11592:18;;:::i;:::-;-1:-1:-1;11629:9:84;;11568:76::o;11649:258::-;11721:1;11731:113;11745:6;11742:1;11739:13;11731:113;;;11821:11;;;11815:18;11802:11;;;11795:39;11767:2;11760:10;11731:113;;;11862:6;11859:1;11856:13;11853:2;;;-1:-1:-1;;11897:1:84;11879:16;;11872:27;11702:205::o;11912:437::-;11991:1;11987:12;;;;12034;;;12055:2;;12109:4;12101:6;12097:17;12087:27;;12055:2;12162;12154:6;12151:14;12131:18;12128:38;12125:2;;;-1:-1:-1;;;12196:1:84;12189:88;12300:4;12297:1;12290:15;12328:4;12325:1;12318:15;12125:2;;11967:382;;;:::o;12354:195::-;12393:3;12424:66;12417:5;12414:77;12411:2;;;12494:18;;:::i;:::-;-1:-1:-1;12541:1:84;12530:13;;12401:148::o;12554:112::-;12586:1;12612;12602:2;;12617:18;;:::i;:::-;-1:-1:-1;12651:9:84;;12592:74::o;12671:184::-;-1:-1:-1;;;12720:1:84;12713:88;12820:4;12817:1;12810:15;12844:4;12841:1;12834:15;12860:184;-1:-1:-1;;;12909:1:84;12902:88;13009:4;13006:1;12999:15;13033:4;13030:1;13023:15;13049:184;-1:-1:-1;;;13098:1:84;13091:88;13198:4;13195:1;13188:15;13222:4;13219:1;13212:15;13238:184;-1:-1:-1;;;13287:1:84;13280:88;13387:4;13384:1;13377:15;13411:4;13408:1;13401:15;13427:177;13512:66;13505:5;13501:78;13494:5;13491:89;13481:2;;13594:1;13591;13584:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1200600",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "approve(address,uint256)": "infinite",
                "balanceOf(address)": "2656",
                "burn(uint256)": "infinite",
                "getApproved(uint256)": "4760",
                "isApprovedForAll(address,address)": "infinite",
                "mint(address,uint256)": "53274",
                "name()": "infinite",
                "ownerOf(uint256)": "2595",
                "safeTransferFrom(address,address,uint256)": "infinite",
                "safeTransferFrom(address,address,uint256,bytes)": "infinite",
                "setApprovalForAll(address,bool)": "26647",
                "supportsInterface(bytes4)": "456",
                "symbol()": "infinite",
                "tokenURI(uint256)": "infinite",
                "transferFrom(address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "burn(uint256)": "42966c68",
              "getApproved(uint256)": "081812fc",
              "isApprovedForAll(address,address)": "e985e9c5",
              "mint(address,uint256)": "40c10f19",
              "name()": "06fdde03",
              "ownerOf(uint256)": "6352211e",
              "safeTransferFrom(address,address,uint256)": "42842e0e",
              "safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
              "setApprovalForAll(address,bool)": "a22cb465",
              "supportsInterface(bytes4)": "01ffc9a7",
              "symbol()": "95d89b41",
              "tokenURI(uint256)": "c87b56dd",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Extension of {ERC721} for Minting/Burning\",\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"See {IERC721-approve}.\"},\"balanceOf(address)\":{\"details\":\"See {IERC721-balanceOf}.\"},\"burn(uint256)\":{\"details\":\"See {ERC721-_burn}.\"},\"getApproved(uint256)\":{\"details\":\"See {IERC721-getApproved}.\"},\"isApprovedForAll(address,address)\":{\"details\":\"See {IERC721-isApprovedForAll}.\"},\"mint(address,uint256)\":{\"details\":\"See {ERC721-_mint}.\"},\"name()\":{\"details\":\"See {IERC721Metadata-name}.\"},\"ownerOf(uint256)\":{\"details\":\"See {IERC721-ownerOf}.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"See {IERC721-safeTransferFrom}.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"See {IERC721-safeTransferFrom}.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"See {IERC721-setApprovalForAll}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"symbol()\":{\"details\":\"See {IERC721Metadata-symbol}.\"},\"tokenURI(uint256)\":{\"details\":\"See {IERC721Metadata-tokenURI}.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC721-transferFrom}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/ERC721Mintable.sol\":\"ERC721Mintable\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/ERC721.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC721.sol\\\";\\nimport \\\"./IERC721Receiver.sol\\\";\\nimport \\\"./extensions/IERC721Metadata.sol\\\";\\nimport \\\"../../utils/Address.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\nimport \\\"../../utils/Strings.sol\\\";\\nimport \\\"../../utils/introspection/ERC165.sol\\\";\\n\\n/**\\n * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including\\n * the Metadata extension, but not including the Enumerable extension, which is available separately as\\n * {ERC721Enumerable}.\\n */\\ncontract ERC721 is Context, ERC165, IERC721, IERC721Metadata {\\n    using Address for address;\\n    using Strings for uint256;\\n\\n    // Token name\\n    string private _name;\\n\\n    // Token symbol\\n    string private _symbol;\\n\\n    // Mapping from token ID to owner address\\n    mapping(uint256 => address) private _owners;\\n\\n    // Mapping owner address to token count\\n    mapping(address => uint256) private _balances;\\n\\n    // Mapping from token ID to approved address\\n    mapping(uint256 => address) private _tokenApprovals;\\n\\n    // Mapping from owner to operator approvals\\n    mapping(address => mapping(address => bool)) private _operatorApprovals;\\n\\n    /**\\n     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.\\n     */\\n    constructor(string memory name_, string memory symbol_) {\\n        _name = name_;\\n        _symbol = symbol_;\\n    }\\n\\n    /**\\n     * @dev See {IERC165-supportsInterface}.\\n     */\\n    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\\n        return\\n            interfaceId == type(IERC721).interfaceId ||\\n            interfaceId == type(IERC721Metadata).interfaceId ||\\n            super.supportsInterface(interfaceId);\\n    }\\n\\n    /**\\n     * @dev See {IERC721-balanceOf}.\\n     */\\n    function balanceOf(address owner) public view virtual override returns (uint256) {\\n        require(owner != address(0), \\\"ERC721: balance query for the zero address\\\");\\n        return _balances[owner];\\n    }\\n\\n    /**\\n     * @dev See {IERC721-ownerOf}.\\n     */\\n    function ownerOf(uint256 tokenId) public view virtual override returns (address) {\\n        address owner = _owners[tokenId];\\n        require(owner != address(0), \\\"ERC721: owner query for nonexistent token\\\");\\n        return owner;\\n    }\\n\\n    /**\\n     * @dev See {IERC721Metadata-name}.\\n     */\\n    function name() public view virtual override returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev See {IERC721Metadata-symbol}.\\n     */\\n    function symbol() public view virtual override returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev See {IERC721Metadata-tokenURI}.\\n     */\\n    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\\n        require(_exists(tokenId), \\\"ERC721Metadata: URI query for nonexistent token\\\");\\n\\n        string memory baseURI = _baseURI();\\n        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \\\"\\\";\\n    }\\n\\n    /**\\n     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\\n     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty\\n     * by default, can be overriden in child contracts.\\n     */\\n    function _baseURI() internal view virtual returns (string memory) {\\n        return \\\"\\\";\\n    }\\n\\n    /**\\n     * @dev See {IERC721-approve}.\\n     */\\n    function approve(address to, uint256 tokenId) public virtual override {\\n        address owner = ERC721.ownerOf(tokenId);\\n        require(to != owner, \\\"ERC721: approval to current owner\\\");\\n\\n        require(\\n            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),\\n            \\\"ERC721: approve caller is not owner nor approved for all\\\"\\n        );\\n\\n        _approve(to, tokenId);\\n    }\\n\\n    /**\\n     * @dev See {IERC721-getApproved}.\\n     */\\n    function getApproved(uint256 tokenId) public view virtual override returns (address) {\\n        require(_exists(tokenId), \\\"ERC721: approved query for nonexistent token\\\");\\n\\n        return _tokenApprovals[tokenId];\\n    }\\n\\n    /**\\n     * @dev See {IERC721-setApprovalForAll}.\\n     */\\n    function setApprovalForAll(address operator, bool approved) public virtual override {\\n        require(operator != _msgSender(), \\\"ERC721: approve to caller\\\");\\n\\n        _operatorApprovals[_msgSender()][operator] = approved;\\n        emit ApprovalForAll(_msgSender(), operator, approved);\\n    }\\n\\n    /**\\n     * @dev See {IERC721-isApprovedForAll}.\\n     */\\n    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {\\n        return _operatorApprovals[owner][operator];\\n    }\\n\\n    /**\\n     * @dev See {IERC721-transferFrom}.\\n     */\\n    function transferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) public virtual override {\\n        //solhint-disable-next-line max-line-length\\n        require(_isApprovedOrOwner(_msgSender(), tokenId), \\\"ERC721: transfer caller is not owner nor approved\\\");\\n\\n        _transfer(from, to, tokenId);\\n    }\\n\\n    /**\\n     * @dev See {IERC721-safeTransferFrom}.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) public virtual override {\\n        safeTransferFrom(from, to, tokenId, \\\"\\\");\\n    }\\n\\n    /**\\n     * @dev See {IERC721-safeTransferFrom}.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes memory _data\\n    ) public virtual override {\\n        require(_isApprovedOrOwner(_msgSender(), tokenId), \\\"ERC721: transfer caller is not owner nor approved\\\");\\n        _safeTransfer(from, to, tokenId, _data);\\n    }\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\\n     *\\n     * `_data` is additional data, it has no specified format and it is sent in call to `to`.\\n     *\\n     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.\\n     * implement alternative mechanisms to perform token transfer, such as signature-based.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function _safeTransfer(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes memory _data\\n    ) internal virtual {\\n        _transfer(from, to, tokenId);\\n        require(_checkOnERC721Received(from, to, tokenId, _data), \\\"ERC721: transfer to non ERC721Receiver implementer\\\");\\n    }\\n\\n    /**\\n     * @dev Returns whether `tokenId` exists.\\n     *\\n     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.\\n     *\\n     * Tokens start existing when they are minted (`_mint`),\\n     * and stop existing when they are burned (`_burn`).\\n     */\\n    function _exists(uint256 tokenId) internal view virtual returns (bool) {\\n        return _owners[tokenId] != address(0);\\n    }\\n\\n    /**\\n     * @dev Returns whether `spender` is allowed to manage `tokenId`.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {\\n        require(_exists(tokenId), \\\"ERC721: operator query for nonexistent token\\\");\\n        address owner = ERC721.ownerOf(tokenId);\\n        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));\\n    }\\n\\n    /**\\n     * @dev Safely mints `tokenId` and transfers it to `to`.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must not exist.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function _safeMint(address to, uint256 tokenId) internal virtual {\\n        _safeMint(to, tokenId, \\\"\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is\\n     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.\\n     */\\n    function _safeMint(\\n        address to,\\n        uint256 tokenId,\\n        bytes memory _data\\n    ) internal virtual {\\n        _mint(to, tokenId);\\n        require(\\n            _checkOnERC721Received(address(0), to, tokenId, _data),\\n            \\\"ERC721: transfer to non ERC721Receiver implementer\\\"\\n        );\\n    }\\n\\n    /**\\n     * @dev Mints `tokenId` and transfers it to `to`.\\n     *\\n     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must not exist.\\n     * - `to` cannot be the zero address.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function _mint(address to, uint256 tokenId) internal virtual {\\n        require(to != address(0), \\\"ERC721: mint to the zero address\\\");\\n        require(!_exists(tokenId), \\\"ERC721: token already minted\\\");\\n\\n        _beforeTokenTransfer(address(0), to, tokenId);\\n\\n        _balances[to] += 1;\\n        _owners[tokenId] = to;\\n\\n        emit Transfer(address(0), to, tokenId);\\n    }\\n\\n    /**\\n     * @dev Destroys `tokenId`.\\n     * The approval is cleared when the token is burned.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function _burn(uint256 tokenId) internal virtual {\\n        address owner = ERC721.ownerOf(tokenId);\\n\\n        _beforeTokenTransfer(owner, address(0), tokenId);\\n\\n        // Clear approvals\\n        _approve(address(0), tokenId);\\n\\n        _balances[owner] -= 1;\\n        delete _owners[tokenId];\\n\\n        emit Transfer(owner, address(0), tokenId);\\n    }\\n\\n    /**\\n     * @dev Transfers `tokenId` from `from` to `to`.\\n     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.\\n     *\\n     * Requirements:\\n     *\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must be owned by `from`.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function _transfer(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) internal virtual {\\n        require(ERC721.ownerOf(tokenId) == from, \\\"ERC721: transfer of token that is not own\\\");\\n        require(to != address(0), \\\"ERC721: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(from, to, tokenId);\\n\\n        // Clear approvals from the previous owner\\n        _approve(address(0), tokenId);\\n\\n        _balances[from] -= 1;\\n        _balances[to] += 1;\\n        _owners[tokenId] = to;\\n\\n        emit Transfer(from, to, tokenId);\\n    }\\n\\n    /**\\n     * @dev Approve `to` to operate on `tokenId`\\n     *\\n     * Emits a {Approval} event.\\n     */\\n    function _approve(address to, uint256 tokenId) internal virtual {\\n        _tokenApprovals[tokenId] = to;\\n        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);\\n    }\\n\\n    /**\\n     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.\\n     * The call is not executed if the target address is not a contract.\\n     *\\n     * @param from address representing the previous owner of the given token ID\\n     * @param to target address that will receive the tokens\\n     * @param tokenId uint256 ID of the token to be transferred\\n     * @param _data bytes optional data to send along with the call\\n     * @return bool whether the call correctly returned the expected magic value\\n     */\\n    function _checkOnERC721Received(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes memory _data\\n    ) private returns (bool) {\\n        if (to.isContract()) {\\n            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {\\n                return retval == IERC721Receiver.onERC721Received.selector;\\n            } catch (bytes memory reason) {\\n                if (reason.length == 0) {\\n                    revert(\\\"ERC721: transfer to non ERC721Receiver implementer\\\");\\n                } else {\\n                    assembly {\\n                        revert(add(32, reason), mload(reason))\\n                    }\\n                }\\n            }\\n        } else {\\n            return true;\\n        }\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any token transfer. This includes minting\\n     * and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be\\n     * transferred to `to`.\\n     * - When `from` is zero, `tokenId` will be minted for `to`.\\n     * - When `to` is zero, ``from``'s `tokenId` will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) internal virtual {}\\n}\\n\",\"keccak256\":\"0x7d2b8ba4b256bfcac347991b75242f9bc37f499c5236af50cf09d0b35943dc0c\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../../utils/introspection/IERC165.sol\\\";\\n\\n/**\\n * @dev Required interface of an ERC721 compliant contract.\\n */\\ninterface IERC721 is IERC165 {\\n    /**\\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\\n     */\\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\\n     */\\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\\n\\n    /**\\n     * @dev Returns the number of tokens in ``owner``'s account.\\n     */\\n    function balanceOf(address owner) external view returns (uint256 balance);\\n\\n    /**\\n     * @dev Returns the owner of the `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function ownerOf(uint256 tokenId) external view returns (address owner);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Transfers `tokenId` token from `from` to `to`.\\n     *\\n     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\\n     * The approval is cleared when the token is transferred.\\n     *\\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\\n     *\\n     * Requirements:\\n     *\\n     * - The caller must own the token or be an approved operator.\\n     * - `tokenId` must exist.\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address to, uint256 tokenId) external;\\n\\n    /**\\n     * @dev Returns the account approved for `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function getApproved(uint256 tokenId) external view returns (address operator);\\n\\n    /**\\n     * @dev Approve or remove `operator` as an operator for the caller.\\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\\n     *\\n     * Requirements:\\n     *\\n     * - The `operator` cannot be the caller.\\n     *\\n     * Emits an {ApprovalForAll} event.\\n     */\\n    function setApprovalForAll(address operator, bool _approved) external;\\n\\n    /**\\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\\n     *\\n     * See {setApprovalForAll}\\n     */\\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external;\\n}\\n\",\"keccak256\":\"0xf101e8720213560fab41104d53b3cc7ba0456ef3a98455aa7f022391783144a0\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title ERC721 token receiver interface\\n * @dev Interface for any contract that wants to support safeTransfers\\n * from ERC721 asset contracts.\\n */\\ninterface IERC721Receiver {\\n    /**\\n     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\\n     * by `operator` from `from`, this function is called.\\n     *\\n     * It must return its Solidity selector to confirm the token transfer.\\n     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\\n     *\\n     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\\n     */\\n    function onERC721Received(\\n        address operator,\\n        address from,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external returns (bytes4);\\n}\\n\",\"keccak256\":\"0xd9517254724276e2e8de3769183c1f738f445f0095c26fd9b86d3c6687e887b9\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC721.sol\\\";\\n\\n/**\\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\\n * @dev See https://eips.ethereum.org/EIPS/eip-721\\n */\\ninterface IERC721Metadata is IERC721 {\\n    /**\\n     * @dev Returns the token collection name.\\n     */\\n    function name() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the token collection symbol.\\n     */\\n    function symbol() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\\n     */\\n    function tokenURI(uint256 tokenId) external view returns (string memory);\\n}\\n\",\"keccak256\":\"0xd32fb7f530a914b1083d10a6bed3a586f2451952fec04fe542bcc670a82f7ba5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n    function _msgSender() internal view virtual returns (address) {\\n        return msg.sender;\\n    }\\n\\n    function _msgData() internal view virtual returns (bytes calldata) {\\n        return msg.data;\\n    }\\n}\\n\",\"keccak256\":\"0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Strings.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev String operations.\\n */\\nlibrary Strings {\\n    bytes16 private constant _HEX_SYMBOLS = \\\"0123456789abcdef\\\";\\n\\n    /**\\n     * @dev Converts a `uint256` to its ASCII `string` decimal representation.\\n     */\\n    function toString(uint256 value) internal pure returns (string memory) {\\n        // Inspired by OraclizeAPI's implementation - MIT licence\\n        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\\n\\n        if (value == 0) {\\n            return \\\"0\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 digits;\\n        while (temp != 0) {\\n            digits++;\\n            temp /= 10;\\n        }\\n        bytes memory buffer = new bytes(digits);\\n        while (value != 0) {\\n            digits -= 1;\\n            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\\n            value /= 10;\\n        }\\n        return string(buffer);\\n    }\\n\\n    /**\\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\\n     */\\n    function toHexString(uint256 value) internal pure returns (string memory) {\\n        if (value == 0) {\\n            return \\\"0x00\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 length = 0;\\n        while (temp != 0) {\\n            length++;\\n            temp >>= 8;\\n        }\\n        return toHexString(value, length);\\n    }\\n\\n    /**\\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\\n     */\\n    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\\n        bytes memory buffer = new bytes(2 * length + 2);\\n        buffer[0] = \\\"0\\\";\\n        buffer[1] = \\\"x\\\";\\n        for (uint256 i = 2 * length + 1; i > 1; --i) {\\n            buffer[i] = _HEX_SYMBOLS[value & 0xf];\\n            value >>= 4;\\n        }\\n        require(value == 0, \\\"Strings: hex length insufficient\\\");\\n        return string(buffer);\\n    }\\n}\\n\",\"keccak256\":\"0x391d3ba97ab6856a16b225d6ee29617ad15ff00db70f3b4df1ab5ea33aa47c9d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC165.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC165} interface.\\n *\\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\\n * for the additional interface id that will be supported. For example:\\n *\\n * ```solidity\\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\\n *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\\n * }\\n * ```\\n *\\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\\n */\\nabstract contract ERC165 is IERC165 {\\n    /**\\n     * @dev See {IERC165-supportsInterface}.\\n     */\\n    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\\n        return interfaceId == type(IERC165).interfaceId;\\n    }\\n}\\n\",\"keccak256\":\"0x5718c5df9bd67ac68a796961df938821bb5dc0cd4c6118d77e9145afb187409b\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4\",\"license\":\"MIT\"},\"contracts/test/ERC721Mintable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC721/ERC721.sol\\\";\\n\\n/**\\n * @dev Extension of {ERC721} for Minting/Burning\\n */\\ncontract ERC721Mintable is ERC721 {\\n    constructor() ERC721(\\\"ERC 721\\\", \\\"NFT\\\") {}\\n\\n    /**\\n     * @dev See {ERC721-_mint}.\\n     */\\n    function mint(address to, uint256 tokenId) public {\\n        _mint(to, tokenId);\\n    }\\n\\n    /**\\n     * @dev See {ERC721-_burn}.\\n     */\\n    function burn(uint256 tokenId) public {\\n        _burn(tokenId);\\n    }\\n}\\n\",\"keccak256\":\"0x60c2963e47b9e9decdfac3af669887ad1fdd70790ac01331f2285fd3a6d0accc\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 1143,
                "contract": "contracts/test/ERC721Mintable.sol:ERC721Mintable",
                "label": "_name",
                "offset": 0,
                "slot": "0",
                "type": "t_string_storage"
              },
              {
                "astId": 1145,
                "contract": "contracts/test/ERC721Mintable.sol:ERC721Mintable",
                "label": "_symbol",
                "offset": 0,
                "slot": "1",
                "type": "t_string_storage"
              },
              {
                "astId": 1149,
                "contract": "contracts/test/ERC721Mintable.sol:ERC721Mintable",
                "label": "_owners",
                "offset": 0,
                "slot": "2",
                "type": "t_mapping(t_uint256,t_address)"
              },
              {
                "astId": 1153,
                "contract": "contracts/test/ERC721Mintable.sol:ERC721Mintable",
                "label": "_balances",
                "offset": 0,
                "slot": "3",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 1157,
                "contract": "contracts/test/ERC721Mintable.sol:ERC721Mintable",
                "label": "_tokenApprovals",
                "offset": 0,
                "slot": "4",
                "type": "t_mapping(t_uint256,t_address)"
              },
              {
                "astId": 1163,
                "contract": "contracts/test/ERC721Mintable.sol:ERC721Mintable",
                "label": "_operatorApprovals",
                "offset": 0,
                "slot": "5",
                "type": "t_mapping(t_address,t_mapping(t_address,t_bool))"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_bool": {
                "encoding": "inplace",
                "label": "bool",
                "numberOfBytes": "1"
              },
              "t_mapping(t_address,t_bool)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => bool)",
                "numberOfBytes": "32",
                "value": "t_bool"
              },
              "t_mapping(t_address,t_mapping(t_address,t_bool))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => bool))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_bool)"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_mapping(t_uint256,t_address)": {
                "encoding": "mapping",
                "key": "t_uint256",
                "label": "mapping(uint256 => address)",
                "numberOfBytes": "32",
                "value": "t_address"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "contracts/test/PrizePoolHarness.sol": {
        "PrizePoolHarness": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract YieldSourceStub",
                  "name": "_stubYieldSource",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardCaptured",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Awarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardedExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256[]",
                  "name": "tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "AwardedExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "BalanceCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "ControlledTokenAdded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Deposited",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "bytes",
                  "name": "error",
                  "type": "bytes"
                }
              ],
              "name": "ErrorAwardingExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "LiquidityCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "PrizeStrategySet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                }
              ],
              "name": "TicketSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "TransferredExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "redeemed",
                  "type": "uint256"
                }
              ],
              "name": "Withdrawal",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "VERSION",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "award",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "awardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "awardExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256[]",
                  "name": "_tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "awardExternalERC721",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "balance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                }
              ],
              "name": "canAwardExternal",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "captureAwardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ICompLike",
                  "name": "_compLike",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                }
              ],
              "name": "compLikeDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "currentTime",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "depositTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_delegate",
                  "type": "address"
                }
              ],
              "name": "depositToAndDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getAccountedBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBalanceCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLiquidityCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeStrategy",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getTicket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "internalCurrentTime",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_controlledToken",
                  "type": "address"
                }
              ],
              "name": "isControlled",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                },
                {
                  "internalType": "contract ITicket",
                  "name": "_controlledToken",
                  "type": "address"
                }
              ],
              "name": "mint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                },
                {
                  "internalType": "bytes",
                  "name": "",
                  "type": "bytes"
                }
              ],
              "name": "onERC721Received",
              "outputs": [
                {
                  "internalType": "bytes4",
                  "name": "",
                  "type": "bytes4"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "redeemAmount",
                  "type": "uint256"
                }
              ],
              "name": "redeem",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "setBalanceCap",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "setCurrentAwardBalance",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_nowTime",
                  "type": "uint256"
                }
              ],
              "name": "setCurrentTime",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "setLiquidityCap",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "setPrizeStrategy",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_ticket",
                  "type": "address"
                }
              ],
              "name": "setTicket",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "stubYieldSource",
              "outputs": [
                {
                  "internalType": "contract YieldSourceStub",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "mintAmount",
                  "type": "uint256"
                }
              ],
              "name": "supply",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "transferExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_from",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawFrom",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "award(address,uint256)": {
                "details": "The amount awarded must be less than the awardBalance()",
                "params": {
                  "amount": "The amount of assets to be awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardBalance()": {
                "details": "captureAwardBalance() should be called first",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "awardExternalERC20(address,address,uint256)": {
                "details": "Used to award any arbitrary tokens held by the Prize Pool",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardExternalERC721(address,address,uint256[])": {
                "details": "Used to award any arbitrary NFTs held by the Prize Pool",
                "params": {
                  "externalToken": "The address of the external NFT token being awarded",
                  "to": "The address of the winner that receives the award",
                  "tokenIds": "An array of NFT Token IDs to be transferred"
                }
              },
              "balance()": {
                "returns": {
                  "_0": "The underlying balance of assets"
                }
              },
              "canAwardExternal(address)": {
                "details": "Checks with the Prize Pool if a specific token type may be awarded as an external prize",
                "params": {
                  "externalToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token may be awarded, false otherwise"
                }
              },
              "captureAwardBalance()": {
                "details": "This function also captures the reserve fees.",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "compLikeDelegate(address,address)": {
                "params": {
                  "compLike": "The COMP-like token held by the prize pool that should be delegated",
                  "to": "The address to delegate to"
                }
              },
              "depositTo(address,uint256)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "depositToAndDelegate(address,uint256,address)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "delegate": "The address to delegate to for the caller",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "getAccountedBalance()": {
                "returns": {
                  "_0": "uint256 accountBalance"
                }
              },
              "isControlled(address)": {
                "details": "Checks if a specific token is controlled by the Prize Pool",
                "params": {
                  "controlledToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token is a controlled token, false otherwise"
                }
              },
              "onERC721Received(address,address,uint256,bytes)": {
                "details": "Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`."
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setBalanceCap(uint256)": {
                "details": "If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.",
                "params": {
                  "balanceCap": "New balance cap."
                },
                "returns": {
                  "_0": "True if new balance cap has been successfully set."
                }
              },
              "setLiquidityCap(uint256)": {
                "params": {
                  "liquidityCap": "The new liquidity cap for the prize pool"
                }
              },
              "setPrizeStrategy(address)": {
                "params": {
                  "_prizeStrategy": "The new prize strategy."
                }
              },
              "setTicket(address)": {
                "params": {
                  "ticket": "Address of the ticket to set."
                },
                "returns": {
                  "_0": "True if ticket has been successfully set."
                }
              },
              "transferExternalERC20(address,address,uint256)": {
                "details": "Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              },
              "withdrawFrom(address,uint256)": {
                "params": {
                  "amount": "The amount of tokens to redeem for assets.",
                  "from": "The address to redeem tokens from."
                },
                "returns": {
                  "_0": "The actual amount withdrawn"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_13922": {
                  "entryPoint": null,
                  "id": 13922,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_16361": {
                  "entryPoint": null,
                  "id": 16361,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_18": {
                  "entryPoint": null,
                  "id": 18,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_3961": {
                  "entryPoint": null,
                  "id": 3961,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setLiquidityCap_14793": {
                  "entryPoint": 204,
                  "id": 14793,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 124,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_YieldSourceStub_$17255_fromMemory": {
                  "entryPoint": 263,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 326,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:744:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "137:287:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "183:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "192:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "195:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "185:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "185:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "185:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "158:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "167:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "154:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "154:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "179:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "150:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "150:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "147:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "208:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "221:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "221:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "212:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "271:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "246:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "246:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "246:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "286:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "296:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "286:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "310:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "335:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "346:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "331:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "331:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "325:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "325:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "314:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "384:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "359:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "359:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "359:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "401:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "411:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "401:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_YieldSourceStub_$17255_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "95:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "106:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "118:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "126:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:410:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "530:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "540:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "552:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "563:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "548:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "548:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "540:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "582:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "575:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "575:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "575:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "499:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "510:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "521:4:84",
                            "type": ""
                          }
                        ],
                        "src": "429:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "656:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "720:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "729:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "732:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "722:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "722:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "722:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "679:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "690:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "705:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "710:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "701:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "701:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "714:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "697:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "697:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "686:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "686:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "676:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "676:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "669:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "669:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "666:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "645:5:84",
                            "type": ""
                          }
                        ],
                        "src": "611:131:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_YieldSourceStub_$17255_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b506040516200277638038062002776833981016040819052620000349162000107565b818062000041816200007c565b50600160025562000054600019620000cc565b50600980546001600160a01b0319166001600160a01b0392909216919091179055506200015f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60068190556040518181527f3ff20538222f568f27ff436c0c49dfd3e48d5b8f86533a3f759dc1c7089775ab9060200160405180910390a150565b600080604083850312156200011b57600080fd5b8251620001288162000146565b60208401519092506200013b8162000146565b809150509250929050565b6001600160a01b03811681146200015c57600080fd5b50565b612607806200016f6000396000f3fe608060405234801561001057600080fd5b50600436106102925760003560e01c80637b99adb111610160578063c002c4d6116100d8578063e30c39781161008c578063f2fde38b11610071578063f2fde38b1461053d578063ffa1ad7414610550578063ffaad6a51461059957600080fd5b8063e30c397814610524578063e6d8a94b1461053557600080fd5b8063d7a169eb116100bd578063d7a169eb146104ed578063d804abaf14610500578063db006a751461051157600080fd5b8063c002c4d6146104d3578063d18e81b3146104e457600080fd5b80639470b0bd1161012f578063b15a49c111610114578063b15a49c1146104bd578063b38f5b6d146104c5578063b69ef8a8146104cb57600080fd5b80639470b0bd14610497578063aec9c307146104aa57600080fd5b80637b99adb11461044d57806384449464146104605780638da5cb5b1461047357806391ca480e1461048457600080fd5b80632f7627e31161020e5780635d8a776e116101c25780636a3fd4f9116101a75780636a3fd4f91461041f578063715018a61461043257806378b3d3271461043a57600080fd5b80635d8a776e14610404578063630665b41461041757600080fd5b806335403023116101f357806335403023146103d65780634e71e0c8146103e95780635a3f111c146103f157600080fd5b80632f7627e3146103bb57806333e5761f146103ce57600080fd5b806316960d551161026557806321df0da71161024a57806321df0da71461037557806322f8e566146103955780632b0ab144146103a857600080fd5b806316960d551461033f5780631c65c78b1461035257600080fd5b806308234319146102975780630d4d1513146102ae57806313f55e39146102c3578063150b7a02146102d6575b600080fd5b6005545b6040519081526020015b60405180910390f35b6102c16102bc366004612396565b6105ac565b005b6102c16102d136600461228a565b6105bc565b61030e6102e43660046122cb565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016102a5565b6102c161034d3660046121f5565b61067d565b6103656103603660046121bb565b610947565b60405190151581526020016102a5565b61037d610aee565b6040516001600160a01b0390911681526020016102a5565b6102c16103a3366004612433565b600855565b6102c16103b636600461228a565b610afd565b6102c16103c93660046123fa565b610bac565b61029b610d22565b6102c16103e4366004612433565b610d2c565b6102c1610d38565b60095461037d906001600160a01b031681565b6102c161041236600461236a565b610dc6565b60075461029b565b61036561042d3660046121bb565b610eec565b6102c1610efd565b6103656104483660046121bb565b610f72565b6102c161045b366004612433565b610f8b565b6102c161046e366004612433565b600755565b6000546001600160a01b031661037d565b6102c16104923660046121bb565b610ffd565b61029b6104a536600461236a565b61106f565b6103656104b8366004612433565b6111d0565b60065461029b565b4261029b565b61029b611244565b6003546001600160a01b031661037d565b61029b60085481565b6102c16104fb366004612396565b61124e565b6004546001600160a01b031661037d565b6102c161051f366004612433565b61138e565b6001546001600160a01b031661037d565b61029b611397565b6102c161054b3660046121bb565b611495565b61058c6040518060400160405280600581526020017f342e302e3000000000000000000000000000000000000000000000000000000081525081565b6040516102a591906124f1565b6102c16105a736600461236a565b6115d1565b6105b7838383611692565b505050565b6004546001600160a01b0316331461061b5760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064015b60405180910390fd5b610626838383611712565b156105b757816001600160a01b0316836001600160a01b03167fb0bac59718cd343c80a813518afcf36846cfcfe6d56e2b3cab9bd49f5f9b251c8360405161067091815260200190565b60405180910390a3505050565b6004546001600160a01b031633146106d75760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a655374726174656779000000006044820152606401610612565b6106e083611795565b61072c5760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e6044820152606401610612565b8061073657610941565b60008167ffffffffffffffff811115610751576107516125a6565b60405190808252806020026020018201604052801561077a578160200160208202803683370190505b5090506000805b838110156108eb57856001600160a01b03166342842e0e30898888868181106107ac576107ac612590565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b1681526001600160a01b03958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b15801561081b57600080fd5b505af192505050801561082c575060015b61089d573d80801561085a576040519150601f19603f3d011682016040523d82523d6000602084013e61085f565b606091505b507f17e975018310f88872b58d4d8263adca83cf5c1893496ea2a86923dab15276ad8160405161088f91906124f1565b60405180910390a1506108d9565b600191508484828181106108b3576108b3612590565b905060200201358382815181106108cc576108cc612590565b6020026020010181815250505b806108e38161255f565b915050610781565b50801561093e57846001600160a01b0316866001600160a01b03167f69c2de32bc4d47f488e72626a6cfdee85089342e52675e7de79c4b417623960c8460405161093591906124ad565b60405180910390a35b50505b50505050565b60003361095c6000546001600160a01b031690565b6001600160a01b0316146109b25760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610612565b6001600160a01b038216610a2e5760405162461bcd60e51b815260206004820152602160248201527f5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d61646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610612565b6003546001600160a01b031615610a875760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f7469636b65742d616c72656164792d736574000000006044820152606401610612565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091556040517f9f9d59c87dbdc6ca82d9e5924782004b9aebc366c505c0ccab12f61e2a9f332190600090a2610ae660001961182c565b506001919050565b6000610af8611868565b905090565b6004546001600160a01b03163314610b575760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a655374726174656779000000006044820152606401610612565b610b62838383611712565b156105b757816001600160a01b0316836001600160a01b03167fc65f48aca3b7a99b7443d04b8ffbb073156179bc628dc3f7def50477489734698360405161067091815260200190565b33610bbf6000546001600160a01b031690565b6001600160a01b031614610c155760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610612565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610c7057600080fd5b505afa158015610c84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca8919061244c565b1115610d1e576040517f5c19a95c0000000000000000000000000000000000000000000000000000000081526001600160a01b038281166004830152831690635c19a95c90602401600060405180830381600087803b158015610d0a57600080fd5b505af115801561093e573d6000803e3d6000fd5b5050565b6000610af86118fe565b610d3581611994565b50565b6001546001600160a01b03163314610d925760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610612565b600154610da7906001600160a01b0316611a14565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6004546001600160a01b03163314610e205760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a655374726174656779000000006044820152606401610612565b80610e29575050565b60075480821115610e7c5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f61776172642d657863656564732d617661696c0000006044820152606401610612565b8181036007556003546001600160a01b0316610e99848483611692565b806001600160a01b0316846001600160a01b03167fe2554529d99ab7a67db6b4cea2b32c7d55ae325f958861e05f304fdded867e3185604051610ede91815260200190565b60405180910390a350505050565b6000610ef782611795565b92915050565b33610f106000546001600160a01b031690565b6001600160a01b031614610f665760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610612565b610f706000611a14565b565b6003546000906001600160a01b03808416911614610ef7565b33610f9e6000546001600160a01b031690565b6001600160a01b031614610ff45760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610612565b610d3581611a71565b336110106000546001600160a01b031690565b6001600160a01b0316146110665760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610612565b610d3581611aa6565b60006002805414156110c35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b600280556003546040517f631b5dfb0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0385811660248301526044820185905290911690819063631b5dfb90606401600060405180830381600087803b15801561113657600080fd5b505af115801561114a573d6000803e3d6000fd5b50505050600061115984611b53565b90506111788582611168611868565b6001600160a01b03169190611beb565b60408051858152602081018390526001600160a01b03808516929088169133917fe56473357106d0cdea364a045d5ab7abb44b6bd1c0f092ba3734983a43459f8f910160405180910390a46001600255949350505050565b6000336111e56000546001600160a01b031690565b6001600160a01b03161461123b5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610612565b610ae68261182c565b6000610af8611c94565b6002805414156112a05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b60028055816112ae81611d07565b6112fa5760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d636170006044820152606401610612565b611305338585611d3d565b6003546040517f33e39b610000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b038481166024830152909116906333e39b6190604401600060405180830381600087803b15801561136b57600080fd5b505af115801561137f573d6000803e3d6000fd5b50506001600255505050505050565b610d1e81611b53565b60006002805414156113eb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b6002805560006113f96118fe565b6007549091506000611409611c94565b9050600083821161141b576000611425565b611425848361251c565b90506000838211611437576000611441565b611441848361251c565b9050801561148757600782905560405181815291935083917fce2b6e507c7ca1a20ce136810f524eefc19ba4c7e4866eb6cc0cba76e778d4be9060200160405180910390a15b505060016002555092915050565b336114a86000546001600160a01b031690565b6001600160a01b0316146114fe5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610612565b6001600160a01b03811661157a5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610612565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6002805414156116235760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b600280558061163181611d07565b61167d5760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d636170006044820152606401610612565b611688338484611d3d565b5050600160025550565b6040517f5d7b07580000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260248201849052821690635d7b075890604401600060405180830381600087803b1580156116f557600080fd5b505af1158015611709573d6000803e3d6000fd5b50505050505050565b600061171d83611795565b6117695760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e6044820152606401610612565b816117765750600061178e565b61178a6001600160a01b0384168584611beb565b5060015b9392505050565b6009546040517f6a3fd4f90000000000000000000000000000000000000000000000000000000081526001600160a01b0383811660048301526000921690636a3fd4f99060240160206040518083038186803b1580156117f457600080fd5b505afa158015611808573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef791906123d8565b60058190556040518181527f439b9ac8f2088164a8d80921758209db1623cf1a37a48913679ef3a43d7a5cf7906020015b60405180910390a150565b600954604080517fc89039c500000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163c89039c5916004808301926020929190829003018186803b1580156118c657600080fd5b505afa1580156118da573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af891906121d8565b600354604080517f18160ddd00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561195c57600080fd5b505afa158015611970573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af8919061244c565b6009546040517f87a6eeef000000000000000000000000000000000000000000000000000000008152600481018390523060248201526001600160a01b03909116906387a6eeef90604401600060405180830381600087803b1580156119f957600080fd5b505af1158015611a0d573d6000803e3d6000fd5b5050505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60068190556040518181527f3ff20538222f568f27ff436c0c49dfd3e48d5b8f86533a3f759dc1c7089775ab9060200161185d565b6001600160a01b038116611afc5760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f6044820152606401610612565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f7f58dc86bc2e435cb77ca0edb1df55e25f90caf2d6bd866971715437d456a21290600090a250565b6009546040517f013054c2000000000000000000000000000000000000000000000000000000008152600481018390526000916001600160a01b03169063013054c290602401602060405180830381600087803b158015611bb357600080fd5b505af1158015611bc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef7919061244c565b6040516001600160a01b0383166024820152604481018290526105b79084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611e2f565b6009546040517fb99152d00000000000000000000000000000000000000000000000000000000081523060048201526000916001600160a01b03169063b99152d090602401602060405180830381600087803b158015611cf357600080fd5b505af1158015611970573d6000803e3d6000fd5b600654600090600019811415611d205750600192915050565b8083611d2a6118fe565b611d349190612504565b11159392505050565b611d478282611f14565b611d935760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f657863656564732d62616c616e63652d6361700000006044820152606401610612565b6003546001600160a01b0316611dbe843084611dad611868565b6001600160a01b0316929190611fdb565b611dc9838383611692565b611dd282611994565b806001600160a01b0316836001600160a01b0316856001600160a01b03167f4174a9435a04d04d274c76779cad136a41fde6937c56241c09ab9d3c7064a1a985604051611e2191815260200190565b60405180910390a450505050565b6000611e84826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661202c9092919063ffffffff16565b8051909150156105b75780806020019051810190611ea291906123d8565b6105b75760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610612565b600554600090600019811415611f2e576001915050610ef7565b6003546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152839286929116906370a082319060240160206040518083038186803b158015611f8f57600080fd5b505afa158015611fa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fc7919061244c565b611fd19190612504565b1115949350505050565b6040516001600160a01b03808516602483015283166044820152606481018290526109419085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401611c30565b606061203b8484600085612043565b949350505050565b6060824710156120bb5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610612565b843b6121095760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610612565b600080866001600160a01b031685876040516121259190612491565b60006040518083038185875af1925050503d8060008114612162576040519150601f19603f3d011682016040523d82523d6000602084013e612167565b606091505b5091509150612177828286612182565b979650505050505050565b6060831561219157508161178e565b8251156121a15782518084602001fd5b8160405162461bcd60e51b815260040161061291906124f1565b6000602082840312156121cd57600080fd5b813561178e816125bc565b6000602082840312156121ea57600080fd5b815161178e816125bc565b6000806000806060858703121561220b57600080fd5b8435612216816125bc565b93506020850135612226816125bc565b9250604085013567ffffffffffffffff8082111561224357600080fd5b818701915087601f83011261225757600080fd5b81358181111561226657600080fd5b8860208260051b850101111561227b57600080fd5b95989497505060200194505050565b60008060006060848603121561229f57600080fd5b83356122aa816125bc565b925060208401356122ba816125bc565b929592945050506040919091013590565b6000806000806000608086880312156122e357600080fd5b85356122ee816125bc565b945060208601356122fe816125bc565b935060408601359250606086013567ffffffffffffffff8082111561232257600080fd5b818801915088601f83011261233657600080fd5b81358181111561234557600080fd5b89602082850101111561235757600080fd5b9699959850939650602001949392505050565b6000806040838503121561237d57600080fd5b8235612388816125bc565b946020939093013593505050565b6000806000606084860312156123ab57600080fd5b83356123b6816125bc565b92506020840135915060408401356123cd816125bc565b809150509250925092565b6000602082840312156123ea57600080fd5b8151801515811461178e57600080fd5b6000806040838503121561240d57600080fd5b8235612418816125bc565b91506020830135612428816125bc565b809150509250929050565b60006020828403121561244557600080fd5b5035919050565b60006020828403121561245e57600080fd5b5051919050565b6000815180845261247d816020860160208601612533565b601f01601f19169290920160200192915050565b600082516124a3818460208701612533565b9190910192915050565b6020808252825182820181905260009190848201906040850190845b818110156124e5578351835292840192918401916001016124c9565b50909695505050505050565b60208152600061178e6020830184612465565b600082198211156125175761251761257a565b500190565b60008282101561252e5761252e61257a565b500390565b60005b8381101561254e578181015183820152602001612536565b838111156109415750506000910152565b60006000198214156125735761257361257a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d3557600080fdfea2646970667358221220a5ec34052a94d7b217747206e265f1543522899c39f5255eeef5e608316439e464736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2776 CODESIZE SUB DUP1 PUSH3 0x2776 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x107 JUMP JUMPDEST DUP2 DUP1 PUSH3 0x41 DUP2 PUSH3 0x7C JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x2 SSTORE PUSH3 0x54 PUSH1 0x0 NOT PUSH3 0xCC JUMP JUMPDEST POP PUSH1 0x9 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP PUSH3 0x15F JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x6 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x3FF20538222F568F27FF436C0C49DFD3E48D5B8F86533A3F759DC1C7089775AB SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x11B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH3 0x128 DUP2 PUSH3 0x146 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x13B DUP2 PUSH3 0x146 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x15C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2607 DUP1 PUSH3 0x16F 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 0x292 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7B99ADB1 GT PUSH2 0x160 JUMPI DUP1 PUSH4 0xC002C4D6 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0xE30C3978 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xF2FDE38B GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x53D JUMPI DUP1 PUSH4 0xFFA1AD74 EQ PUSH2 0x550 JUMPI DUP1 PUSH4 0xFFAAD6A5 EQ PUSH2 0x599 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x524 JUMPI DUP1 PUSH4 0xE6D8A94B EQ PUSH2 0x535 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xD7A169EB GT PUSH2 0xBD JUMPI DUP1 PUSH4 0xD7A169EB EQ PUSH2 0x4ED JUMPI DUP1 PUSH4 0xD804ABAF EQ PUSH2 0x500 JUMPI DUP1 PUSH4 0xDB006A75 EQ PUSH2 0x511 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC002C4D6 EQ PUSH2 0x4D3 JUMPI DUP1 PUSH4 0xD18E81B3 EQ PUSH2 0x4E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9470B0BD GT PUSH2 0x12F JUMPI DUP1 PUSH4 0xB15A49C1 GT PUSH2 0x114 JUMPI DUP1 PUSH4 0xB15A49C1 EQ PUSH2 0x4BD JUMPI DUP1 PUSH4 0xB38F5B6D EQ PUSH2 0x4C5 JUMPI DUP1 PUSH4 0xB69EF8A8 EQ PUSH2 0x4CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9470B0BD EQ PUSH2 0x497 JUMPI DUP1 PUSH4 0xAEC9C307 EQ PUSH2 0x4AA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7B99ADB1 EQ PUSH2 0x44D JUMPI DUP1 PUSH4 0x84449464 EQ PUSH2 0x460 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x473 JUMPI DUP1 PUSH4 0x91CA480E EQ PUSH2 0x484 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F7627E3 GT PUSH2 0x20E JUMPI DUP1 PUSH4 0x5D8A776E GT PUSH2 0x1C2 JUMPI DUP1 PUSH4 0x6A3FD4F9 GT PUSH2 0x1A7 JUMPI DUP1 PUSH4 0x6A3FD4F9 EQ PUSH2 0x41F JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x432 JUMPI DUP1 PUSH4 0x78B3D327 EQ PUSH2 0x43A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x5D8A776E EQ PUSH2 0x404 JUMPI DUP1 PUSH4 0x630665B4 EQ PUSH2 0x417 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x35403023 GT PUSH2 0x1F3 JUMPI DUP1 PUSH4 0x35403023 EQ PUSH2 0x3D6 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x3E9 JUMPI DUP1 PUSH4 0x5A3F111C EQ PUSH2 0x3F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F7627E3 EQ PUSH2 0x3BB JUMPI DUP1 PUSH4 0x33E5761F EQ PUSH2 0x3CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x16960D55 GT PUSH2 0x265 JUMPI DUP1 PUSH4 0x21DF0DA7 GT PUSH2 0x24A JUMPI DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0x375 JUMPI DUP1 PUSH4 0x22F8E566 EQ PUSH2 0x395 JUMPI DUP1 PUSH4 0x2B0AB144 EQ PUSH2 0x3A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x16960D55 EQ PUSH2 0x33F JUMPI DUP1 PUSH4 0x1C65C78B EQ PUSH2 0x352 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8234319 EQ PUSH2 0x297 JUMPI DUP1 PUSH4 0xD4D1513 EQ PUSH2 0x2AE JUMPI DUP1 PUSH4 0x13F55E39 EQ PUSH2 0x2C3 JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x2D6 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x5 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C1 PUSH2 0x2BC CALLDATASIZE PUSH1 0x4 PUSH2 0x2396 JUMP JUMPDEST PUSH2 0x5AC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2C1 PUSH2 0x2D1 CALLDATASIZE PUSH1 0x4 PUSH2 0x228A JUMP JUMPDEST PUSH2 0x5BC JUMP JUMPDEST PUSH2 0x30E PUSH2 0x2E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x22CB JUMP JUMPDEST PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2A5 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x34D CALLDATASIZE PUSH1 0x4 PUSH2 0x21F5 JUMP JUMPDEST PUSH2 0x67D JUMP JUMPDEST PUSH2 0x365 PUSH2 0x360 CALLDATASIZE PUSH1 0x4 PUSH2 0x21BB JUMP JUMPDEST PUSH2 0x947 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2A5 JUMP JUMPDEST PUSH2 0x37D PUSH2 0xAEE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2A5 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x3A3 CALLDATASIZE PUSH1 0x4 PUSH2 0x2433 JUMP JUMPDEST PUSH1 0x8 SSTORE JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x3B6 CALLDATASIZE PUSH1 0x4 PUSH2 0x228A JUMP JUMPDEST PUSH2 0xAFD JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x3C9 CALLDATASIZE PUSH1 0x4 PUSH2 0x23FA JUMP JUMPDEST PUSH2 0xBAC JUMP JUMPDEST PUSH2 0x29B PUSH2 0xD22 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x3E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x2433 JUMP JUMPDEST PUSH2 0xD2C JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0xD38 JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH2 0x37D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x412 CALLDATASIZE PUSH1 0x4 PUSH2 0x236A JUMP JUMPDEST PUSH2 0xDC6 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH2 0x29B JUMP JUMPDEST PUSH2 0x365 PUSH2 0x42D CALLDATASIZE PUSH1 0x4 PUSH2 0x21BB JUMP JUMPDEST PUSH2 0xEEC JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0xEFD JUMP JUMPDEST PUSH2 0x365 PUSH2 0x448 CALLDATASIZE PUSH1 0x4 PUSH2 0x21BB JUMP JUMPDEST PUSH2 0xF72 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x45B CALLDATASIZE PUSH1 0x4 PUSH2 0x2433 JUMP JUMPDEST PUSH2 0xF8B JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x46E CALLDATASIZE PUSH1 0x4 PUSH2 0x2433 JUMP JUMPDEST PUSH1 0x7 SSTORE JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x37D JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x492 CALLDATASIZE PUSH1 0x4 PUSH2 0x21BB JUMP JUMPDEST PUSH2 0xFFD JUMP JUMPDEST PUSH2 0x29B PUSH2 0x4A5 CALLDATASIZE PUSH1 0x4 PUSH2 0x236A JUMP JUMPDEST PUSH2 0x106F JUMP JUMPDEST PUSH2 0x365 PUSH2 0x4B8 CALLDATASIZE PUSH1 0x4 PUSH2 0x2433 JUMP JUMPDEST PUSH2 0x11D0 JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH2 0x29B JUMP JUMPDEST TIMESTAMP PUSH2 0x29B JUMP JUMPDEST PUSH2 0x29B PUSH2 0x1244 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x37D JUMP JUMPDEST PUSH2 0x29B PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x4FB CALLDATASIZE PUSH1 0x4 PUSH2 0x2396 JUMP JUMPDEST PUSH2 0x124E JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x37D JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x51F CALLDATASIZE PUSH1 0x4 PUSH2 0x2433 JUMP JUMPDEST PUSH2 0x138E JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x37D JUMP JUMPDEST PUSH2 0x29B PUSH2 0x1397 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x54B CALLDATASIZE PUSH1 0x4 PUSH2 0x21BB JUMP JUMPDEST PUSH2 0x1495 JUMP JUMPDEST PUSH2 0x58C PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x342E302E30000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A5 SWAP2 SWAP1 PUSH2 0x24F1 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x5A7 CALLDATASIZE PUSH1 0x4 PUSH2 0x236A JUMP JUMPDEST PUSH2 0x15D1 JUMP JUMPDEST PUSH2 0x5B7 DUP4 DUP4 DUP4 PUSH2 0x1692 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x61B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x626 DUP4 DUP4 DUP4 PUSH2 0x1712 JUMP JUMPDEST ISZERO PUSH2 0x5B7 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xB0BAC59718CD343C80A813518AFCF36846CFCFE6D56E2B3CAB9BD49F5F9B251C DUP4 PUSH1 0x40 MLOAD PUSH2 0x670 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x6D7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0x6E0 DUP4 PUSH2 0x1795 JUMP JUMPDEST PUSH2 0x72C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST DUP1 PUSH2 0x736 JUMPI PUSH2 0x941 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x751 JUMPI PUSH2 0x751 PUSH2 0x25A6 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x77A JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP1 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x8EB JUMPI DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x42842E0E ADDRESS DUP10 DUP9 DUP9 DUP7 DUP2 DUP2 LT PUSH2 0x7AC JUMPI PUSH2 0x7AC PUSH2 0x2590 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP9 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP6 DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP5 SWAP1 SWAP4 AND PUSH1 0x24 DUP6 ADD MSTORE POP PUSH1 0x20 SWAP1 SWAP2 MUL ADD CALLDATALOAD PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x81B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x82C JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x89D JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x85A JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x85F JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH32 0x17E975018310F88872B58D4D8263ADCA83CF5C1893496EA2A86923DAB15276AD DUP2 PUSH1 0x40 MLOAD PUSH2 0x88F SWAP2 SWAP1 PUSH2 0x24F1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP PUSH2 0x8D9 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP DUP5 DUP5 DUP3 DUP2 DUP2 LT PUSH2 0x8B3 JUMPI PUSH2 0x8B3 PUSH2 0x2590 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x8CC JUMPI PUSH2 0x8CC PUSH2 0x2590 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0x8E3 DUP2 PUSH2 0x255F JUMP JUMPDEST SWAP2 POP POP PUSH2 0x781 JUMP JUMPDEST POP DUP1 ISZERO PUSH2 0x93E JUMPI DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x69C2DE32BC4D47F488E72626A6CFDEE85089342E52675E7DE79C4B417623960C DUP5 PUSH1 0x40 MLOAD PUSH2 0x935 SWAP2 SWAP1 PUSH2 0x24AD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x95C PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9B2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xA2E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D6E6F742D7A65726F2D616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0xA87 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D616C72656164792D73657400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x9F9D59C87DBDC6CA82D9E5924782004B9AEBC366C505C0CCAB12F61E2A9F3321 SWAP1 PUSH1 0x0 SWAP1 LOG2 PUSH2 0xAE6 PUSH1 0x0 NOT PUSH2 0x182C JUMP JUMPDEST POP PUSH1 0x1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAF8 PUSH2 0x1868 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xB57 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0xB62 DUP4 DUP4 DUP4 PUSH2 0x1712 JUMP JUMPDEST ISZERO PUSH2 0x5B7 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xC65F48ACA3B7A99B7443D04B8FFBB073156179BC628DC3F7DEF5047748973469 DUP4 PUSH1 0x40 MLOAD PUSH2 0x670 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST CALLER PUSH2 0xBBF PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC15 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xC70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC84 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 0xCA8 SWAP2 SWAP1 PUSH2 0x244C JUMP JUMPDEST GT ISZERO PUSH2 0xD1E JUMPI PUSH1 0x40 MLOAD PUSH32 0x5C19A95C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x5C19A95C SWAP1 PUSH1 0x24 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xD0A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x93E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAF8 PUSH2 0x18FE JUMP JUMPDEST PUSH2 0xD35 DUP2 PUSH2 0x1994 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xD92 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0xDA7 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1A14 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE20 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST DUP1 PUSH2 0xE29 JUMPI POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD DUP1 DUP3 GT ISZERO PUSH2 0xE7C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F61776172642D657863656564732D617661696C000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x7 SSTORE PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xE99 DUP5 DUP5 DUP4 PUSH2 0x1692 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xE2554529D99AB7A67DB6B4CEA2B32C7D55AE325F958861E05F304FDDED867E31 DUP6 PUSH1 0x40 MLOAD PUSH2 0xEDE SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEF7 DUP3 PUSH2 0x1795 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0xF10 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF66 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0xF70 PUSH1 0x0 PUSH2 0x1A14 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND EQ PUSH2 0xEF7 JUMP JUMPDEST CALLER PUSH2 0xF9E PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xFF4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0xD35 DUP2 PUSH2 0x1A71 JUMP JUMPDEST CALLER PUSH2 0x1010 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1066 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0xD35 DUP2 PUSH2 0x1AA6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x10C3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x631B5DFB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP6 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 DUP2 SWAP1 PUSH4 0x631B5DFB SWAP1 PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1136 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x114A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 PUSH2 0x1159 DUP5 PUSH2 0x1B53 JUMP JUMPDEST SWAP1 POP PUSH2 0x1178 DUP6 DUP3 PUSH2 0x1168 PUSH2 0x1868 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x1BEB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP3 SWAP1 DUP9 AND SWAP2 CALLER SWAP2 PUSH32 0xE56473357106D0CDEA364A045D5AB7ABB44B6BD1C0F092BA3734983A43459F8F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x1 PUSH1 0x2 SSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x11E5 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x123B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0xAE6 DUP3 PUSH2 0x182C JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAF8 PUSH2 0x1C94 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x12A0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP2 PUSH2 0x12AE DUP2 PUSH2 0x1D07 JUMP JUMPDEST PUSH2 0x12FA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0x1305 CALLER DUP6 DUP6 PUSH2 0x1D3D JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x33E39B6100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x33E39B61 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x136B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x137F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0xD1E DUP2 PUSH2 0x1B53 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x13EB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x0 PUSH2 0x13F9 PUSH2 0x18FE JUMP JUMPDEST PUSH1 0x7 SLOAD SWAP1 SWAP2 POP PUSH1 0x0 PUSH2 0x1409 PUSH2 0x1C94 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x141B JUMPI PUSH1 0x0 PUSH2 0x1425 JUMP JUMPDEST PUSH2 0x1425 DUP5 DUP4 PUSH2 0x251C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x1437 JUMPI PUSH1 0x0 PUSH2 0x1441 JUMP JUMPDEST PUSH2 0x1441 DUP5 DUP4 PUSH2 0x251C JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1487 JUMPI PUSH1 0x7 DUP3 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE SWAP2 SWAP4 POP DUP4 SWAP2 PUSH32 0xCE2B6E507C7CA1A20CE136810F524EEFC19BA4C7E4866EB6CC0CBA76E778D4BE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x14A8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x14FE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x157A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x1623 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP1 PUSH2 0x1631 DUP2 PUSH2 0x1D07 JUMP JUMPDEST PUSH2 0x167D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0x1688 CALLER DUP5 DUP5 PUSH2 0x1D3D JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x5D7B075800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 AND SWAP1 PUSH4 0x5D7B0758 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x16F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1709 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x171D DUP4 PUSH2 0x1795 JUMP JUMPDEST PUSH2 0x1769 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST DUP2 PUSH2 0x1776 JUMPI POP PUSH1 0x0 PUSH2 0x178E JUMP JUMPDEST PUSH2 0x178A PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP6 DUP5 PUSH2 0x1BEB JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x40 MLOAD PUSH32 0x6A3FD4F900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x0 SWAP3 AND SWAP1 PUSH4 0x6A3FD4F9 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x17F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1808 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 0xEF7 SWAP2 SWAP1 PUSH2 0x23D8 JUMP JUMPDEST PUSH1 0x5 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x439B9AC8F2088164A8D80921758209DB1623CF1A37A48913679EF3A43D7A5CF7 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0xC89039C500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 MLOAD PUSH1 0x0 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 PUSH4 0xC89039C5 SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x18C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x18DA 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 0xAF8 SWAP2 SWAP1 PUSH2 0x21D8 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x18160DDD00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 MLOAD PUSH1 0x0 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 PUSH4 0x18160DDD SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x195C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1970 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 0xAF8 SWAP2 SWAP1 PUSH2 0x244C JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x40 MLOAD PUSH32 0x87A6EEEF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x87A6EEEF SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x19F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1A0D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x6 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x3FF20538222F568F27FF436C0C49DFD3E48D5B8F86533A3F759DC1C7089775AB SWAP1 PUSH1 0x20 ADD PUSH2 0x185D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1AFC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7072697A6553747261746567792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x7F58DC86BC2E435CB77CA0EDB1DF55E25F90CAF2D6BD866971715437D456A212 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x40 MLOAD PUSH32 0x13054C200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x13054C2 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1BB3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1BC7 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 0xEF7 SWAP2 SWAP1 PUSH2 0x244C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x5B7 SWAP1 DUP5 SWAP1 PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x1E2F JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x40 MLOAD PUSH32 0xB99152D000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xB99152D0 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1CF3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1970 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x1D20 JUMPI POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP4 PUSH2 0x1D2A PUSH2 0x18FE JUMP JUMPDEST PUSH2 0x1D34 SWAP2 SWAP1 PUSH2 0x2504 JUMP JUMPDEST GT ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1D47 DUP3 DUP3 PUSH2 0x1F14 JUMP JUMPDEST PUSH2 0x1D93 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D62616C616E63652D636170000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1DBE DUP5 ADDRESS DUP5 PUSH2 0x1DAD PUSH2 0x1868 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x1FDB JUMP JUMPDEST PUSH2 0x1DC9 DUP4 DUP4 DUP4 PUSH2 0x1692 JUMP JUMPDEST PUSH2 0x1DD2 DUP3 PUSH2 0x1994 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4174A9435A04D04D274C76779CAD136A41FDE6937C56241C09AB9D3C7064A1A9 DUP6 PUSH1 0x40 MLOAD PUSH2 0x1E21 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E84 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x202C SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x5B7 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1EA2 SWAP2 SWAP1 PUSH2 0x23D8 JUMP JUMPDEST PUSH2 0x5B7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x1F2E JUMPI PUSH1 0x1 SWAP2 POP POP PUSH2 0xEF7 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 SWAP3 DUP7 SWAP3 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1F8F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1FA3 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 0x1FC7 SWAP2 SWAP1 PUSH2 0x244C JUMP JUMPDEST PUSH2 0x1FD1 SWAP2 SWAP1 PUSH2 0x2504 JUMP JUMPDEST GT ISZERO SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x941 SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD PUSH2 0x1C30 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x203B DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x2043 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x20BB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x612 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x2109 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x2125 SWAP2 SWAP1 PUSH2 0x2491 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x2162 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x2167 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x2177 DUP3 DUP3 DUP7 PUSH2 0x2182 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x2191 JUMPI POP DUP2 PUSH2 0x178E JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x21A1 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x612 SWAP2 SWAP1 PUSH2 0x24F1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x21CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x178E DUP2 PUSH2 0x25BC JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x21EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x178E DUP2 PUSH2 0x25BC JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x220B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2216 DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x2226 DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2243 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2257 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2266 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x227B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x229F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x22AA DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x22BA DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x22E3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x22EE DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x22FE DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2322 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2336 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2345 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x2357 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x237D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2388 DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x23AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x23B6 DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x23CD DUP2 PUSH2 0x25BC JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x178E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x240D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2418 DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2428 DUP2 PUSH2 0x25BC JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2445 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x245E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x247D DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2533 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x24A3 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2533 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x24E5 JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x24C9 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x178E PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2465 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x2517 JUMPI PUSH2 0x2517 PUSH2 0x257A JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x252E JUMPI PUSH2 0x252E PUSH2 0x257A JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x254E JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2536 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x941 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2573 JUMPI PUSH2 0x2573 PUSH2 0x257A JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD35 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA5 0xEC CALLVALUE SDIV 0x2A SWAP5 0xD7 0xB2 OR PUSH21 0x7206E265F1543522899C39F5255EEEF5E608316439 0xE4 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "132:1731:72:-:0;;;255:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;327:6;;1648:24:22;327:6:72;1648:9:22;:24::i;:::-;-1:-1:-1;1637:1:0;1742:7;:22;2625:35:59::2;-1:-1:-1::0;;2625:16:59::2;:35::i;:::-;-1:-1:-1::0;345:15:72::1;:34:::0;;-1:-1:-1;;;;;;345:34:72::1;-1:-1:-1::0;;;;;345:34:72;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;132:1731:72;;3470:174:22;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;;;;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;13592:148:59:-;13660:12;:28;;;13703:30;;575:25:84;;;13703:30:59;;563:2:84;548:18;13703:30:59;;;;;;;13592:148;:::o;14:410:84:-;118:6;126;179:2;167:9;158:7;154:23;150:32;147:2;;;195:1;192;185:12;147:2;227:9;221:16;246:31;271:5;246:31;:::i;:::-;346:2;331:18;;325:25;296:5;;-1:-1:-1;359:33:84;325:25;359:33;:::i;:::-;411:7;401:17;;;137:287;;;;;:::o;611:131::-;-1:-1:-1;;;;;686:31:84;;676:42;;666:2;;732:1;729;722:12;666:2;656:86;:::o;:::-;132:1731:72;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@VERSION_13859": {
                  "entryPoint": null,
                  "id": 13859,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_balance_16470": {
                  "entryPoint": 7316,
                  "id": 16470,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_callOptionalReturn_1116": {
                  "entryPoint": 7727,
                  "id": 1116,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_canAddLiquidity_14748": {
                  "entryPoint": 7431,
                  "id": 14748,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_canAwardExternal_16441": {
                  "entryPoint": 6037,
                  "id": 16441,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_canDeposit_14717": {
                  "entryPoint": 7956,
                  "id": 14717,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_currentTime_14839": {
                  "entryPoint": null,
                  "id": 14839,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_depositTo_14211": {
                  "entryPoint": 7485,
                  "id": 14211,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_isControlled_14763": {
                  "entryPoint": null,
                  "id": 14763,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_mint_14682": {
                  "entryPoint": 5778,
                  "id": 14682,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_redeem_16501": {
                  "entryPoint": 6995,
                  "id": 16501,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setBalanceCap_14778": {
                  "entryPoint": 6188,
                  "id": 14778,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setLiquidityCap_14793": {
                  "entryPoint": 6769,
                  "id": 14793,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 6676,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setPrizeStrategy_14818": {
                  "entryPoint": 6822,
                  "id": 14818,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_supply_16487": {
                  "entryPoint": 6548,
                  "id": 16487,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_ticketTotalSupply_14829": {
                  "entryPoint": 6398,
                  "id": 14829,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_token_16455": {
                  "entryPoint": 6248,
                  "id": 16455,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_transferOut_14663": {
                  "entryPoint": 5906,
                  "id": 14663,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@awardBalance_13943": {
                  "entryPoint": null,
                  "id": 13943,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@awardExternalERC20_14370": {
                  "entryPoint": 2813,
                  "id": 14370,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@awardExternalERC721_14473": {
                  "entryPoint": 1661,
                  "id": 14473,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@award_14316": {
                  "entryPoint": 3526,
                  "id": 14316,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@balance_13933": {
                  "entryPoint": 4676,
                  "id": 13933,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@canAwardExternal_13957": {
                  "entryPoint": 3820,
                  "id": 13957,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@captureAwardBalance_14105": {
                  "entryPoint": 5015,
                  "id": 14105,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@claimOwnership_4038": {
                  "entryPoint": 3384,
                  "id": 4038,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@compLikeDelegate_14606": {
                  "entryPoint": 2988,
                  "id": 14606,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@currentTime_16342": {
                  "entryPoint": null,
                  "id": 16342,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@depositToAndDelegate_14159": {
                  "entryPoint": 4686,
                  "id": 14159,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@depositTo_14127": {
                  "entryPoint": 5585,
                  "id": 14127,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@functionCallWithValue_2255": {
                  "entryPoint": 8259,
                  "id": 2255,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_2185": {
                  "entryPoint": 8236,
                  "id": 2185,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getAccountedBalance_13983": {
                  "entryPoint": 3362,
                  "id": 13983,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getBalanceCap_13993": {
                  "entryPoint": null,
                  "id": 13993,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getLiquidityCap_14003": {
                  "entryPoint": null,
                  "id": 14003,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizeStrategy_14024": {
                  "entryPoint": null,
                  "id": 14024,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getTicket_14014": {
                  "entryPoint": null,
                  "id": 14014,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getToken_14038": {
                  "entryPoint": 2798,
                  "id": 14038,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@internalCurrentTime_16427": {
                  "entryPoint": null,
                  "id": 16427,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_2114": {
                  "entryPoint": null,
                  "id": 2114,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@isControlled_13972": {
                  "entryPoint": 3954,
                  "id": 13972,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@mint_16378": {
                  "entryPoint": 1452,
                  "id": 16378,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@onERC721Received_14626": {
                  "entryPoint": null,
                  "id": 14626,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@owner_3970": {
                  "entryPoint": null,
                  "id": 3970,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3979": {
                  "entryPoint": null,
                  "id": 3979,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@redeem_16398": {
                  "entryPoint": 5006,
                  "id": 16398,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@renounceOwnership_3993": {
                  "entryPoint": 3837,
                  "id": 3993,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeTransferFrom_950": {
                  "entryPoint": 8155,
                  "id": 950,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@safeTransfer_924": {
                  "entryPoint": 7147,
                  "id": 924,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setBalanceCap_14491": {
                  "entryPoint": 4560,
                  "id": 14491,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setCurrentAwardBalance_16511": {
                  "entryPoint": null,
                  "id": 16511,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setCurrentTime_16408": {
                  "entryPoint": null,
                  "id": 16408,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setLiquidityCap_14505": {
                  "entryPoint": 3979,
                  "id": 14505,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setPrizeStrategy_14576": {
                  "entryPoint": 4093,
                  "id": 14576,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setTicket_14562": {
                  "entryPoint": 2375,
                  "id": 14562,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@stubYieldSource_16345": {
                  "entryPoint": null,
                  "id": 16345,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@supply_16388": {
                  "entryPoint": 3372,
                  "id": 16388,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@transferExternalERC20_14343": {
                  "entryPoint": 1468,
                  "id": 14343,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@transferOwnership_4020": {
                  "entryPoint": 5269,
                  "id": 4020,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_2390": {
                  "entryPoint": 8578,
                  "id": 2390,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@withdrawFrom_14263": {
                  "entryPoint": 4207,
                  "id": 14263,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 8635,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address_fromMemory": {
                  "entryPoint": 8664,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_calldata_ptr": {
                  "entryPoint": 8693,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 8842,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr": {
                  "entryPoint": 8907,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 9066,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint256t_address": {
                  "entryPoint": 9110,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_uint256t_contract$_ITicket_$12213": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 9176,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_ICompLike_$11027t_address": {
                  "entryPoint": 9210,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_contract$_ITicket_$12213": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 9267,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 9292,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_bytes": {
                  "entryPoint": 9317,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 9361,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 9389,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed": {
                  "entryPoint": 9457,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_YieldSourceStub_$17255__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 9476,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 9500,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 9523,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "increment_t_uint256": {
                  "entryPoint": 9567,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 9594,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 9616,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 9638,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 9660,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:17071:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "84:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "130:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "142:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "132:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "132:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "132:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "105:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "101:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "101:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "126:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "97:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "97:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "94:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "155:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "181:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "168:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "168:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "159:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "225:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "200:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "200:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "200:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "250:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "50:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "61:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "73:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "347:170:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "393:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "402:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "405:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "395:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "395:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "395:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "368:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "377:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "364:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "364:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "389:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "360:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "360:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "357:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "418:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "437:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "431:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "431:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "422:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "481:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "456:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "456:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "456:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "496:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "506:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "496:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "313:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "324:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "336:6:84",
                            "type": ""
                          }
                        ],
                        "src": "266:251:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "661:752:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "707:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "716:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "719:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "709:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "709:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "709:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "682:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "691:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "678:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "678:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "703:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "674:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "674:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "671:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "732:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "758:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "745:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "745:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "736:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "802:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "777:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "777:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "777:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "817:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "827:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "817:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "841:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "873:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "884:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "869:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "869:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "845:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "922:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "897:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "897:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "897:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "939:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "949:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "939:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "965:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "996:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1007:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "992:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "992:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "979:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "979:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "969:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1020:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1030:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1024:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1075:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1084:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1087:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1077:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1077:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1077:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1063:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1071:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1060:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1060:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1057:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1100:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1114:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1125:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1110:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1110:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1104:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1180:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1189:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1192:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1182:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1182:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1182:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1159:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1163:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1155:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1155:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1170:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1151:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1151:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1144:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1144:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1141:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1205:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1232:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1219:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1219:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1209:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1262:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1271:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1274:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1264:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1264:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1264:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1250:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1258:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1247:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1247:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1244:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1336:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1345:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1348:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1338:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1338:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1338:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1301:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1309:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1312:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1305:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1305:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1297:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1297:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1322:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1293:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1293:32:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1327:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1290:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1290:45:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1287:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1361:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1375:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1379:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1371:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1371:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1361:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1391:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1401:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1391:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "603:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "614:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "626:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "634:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "642:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "650:6:84",
                            "type": ""
                          }
                        ],
                        "src": "522:891:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1522:352:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1568:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1577:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1580:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1570:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1570:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1570:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1543:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1552:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1539:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1539:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1564:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1535:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1535:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1532:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1593:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1619:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1606:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1606:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1597:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1663:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1638:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1638:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1638:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1678:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1688:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1678:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1702:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1734:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1745:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1730:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1730:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1717:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1717:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1706:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1783:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1758:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1758:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1758:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1800:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1810:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1800:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1826:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1853:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1864:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1849:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1849:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1836:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1836:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1826:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1472:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1483:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1495:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1503:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1511:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1418:456:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2019:796:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2066:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2075:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2078:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2068:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2068:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2068:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2040:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2049:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2036:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2036:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2061:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2032:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2032:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2029:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2091:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2117:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2104:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2104:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2095:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2161:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2136:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2136:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2136:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2176:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2186:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2176:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2200:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2232:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2243:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2228:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2228:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2215:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2215:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2204:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2281:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2256:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2256:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2256:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2298:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2308:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2298:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2324:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2351:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2362:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2347:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2347:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2334:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2334:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2324:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2375:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2406:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2417:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2402:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2402:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2389:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2389:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2379:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2430:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2440:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2434:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2485:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2494:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2497:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2487:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2487:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2487:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2473:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2481:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2470:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2470:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2467:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2510:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2524:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2535:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2520:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2520:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2514:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2590:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2599:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2602:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2592:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2592:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2592:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2569:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2573:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2565:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2565:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2580:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2561:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2561:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2554:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2554:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2551:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2615:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2642:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2629:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2629:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "2619:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2672:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2681:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2684:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2674:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2674:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2674:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "2660:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2668:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2657:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2657:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2654:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2738:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2747:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2750:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2740:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2740:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2740:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2711:2:84"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "2715:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2707:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2707:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2724:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2703:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2703:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2729:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2700:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2700:37:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2697:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2763:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2777:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2781:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2773:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2773:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2763:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2793:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "2803:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2793:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1953:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1964:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1976:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1984:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1992:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2000:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2008:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1879:936:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2907:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2953:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2962:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2965:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2955:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2955:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2955:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2928:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2937:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2924:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2924:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2949:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2920:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2920:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2917:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2978:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3004:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2991:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2991:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2982:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3048:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3023:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3023:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3023:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3063:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3073:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3063:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3087:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3114:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3125:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3110:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3110:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3097:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3097:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3087:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2865:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2876:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2888:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2896:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2820:315:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3244:352:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3290:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3299:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3302:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3292:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3292:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3292:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3265:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3274:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3261:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3261:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3286:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3257:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3257:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3254:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3315:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3341:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3328:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3328:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3319:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3385:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3360:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3360:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3360:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3400:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3410:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3400:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3424:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3451:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3462:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3447:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3447:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3434:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3434:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3424:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3475:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3507:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3518:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3503:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3503:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3490:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3490:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3479:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3556:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3531:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3531:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3531:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3573:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "3583:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "3573:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3194:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3205:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3217:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3225:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3233:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3140:456:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3722:352:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3768:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3777:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3780:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3770:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3770:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3770:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3743:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3752:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3739:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3739:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3764:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3735:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3735:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3732:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3793:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3819:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3806:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3806:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3797:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3863:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3838:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3838:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3838:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3878:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3888:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3878:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3902:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3929:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3940:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3925:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3925:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3912:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3912:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3902:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3953:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3985:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3996:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3981:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3981:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3968:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3968:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3957:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4034:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4009:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4009:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4009:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4051:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "4061:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "4051:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256t_contract$_ITicket_$12213",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3672:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3683:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3695:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3703:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3711:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3601:473:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4157:199:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4203:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4212:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4215:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4205:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4205:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4205:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4178:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4187:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4174:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4174:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4199:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4170:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4170:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4167:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4228:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4247:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4241:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4241:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4232:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4310:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4319:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4322:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4312:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4312:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4312:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4279:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4300:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "4293:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4293:13:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "4286:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4286:21:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "4276:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4276:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4269:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4269:40:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4266:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4335:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4345:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4335:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4123:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4134:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4146:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4079:277:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4467:301:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4513:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4522:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4525:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4515:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4515:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4515:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4488:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4497:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4484:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4484:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4509:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4480:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4480:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4477:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4538:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4564:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4551:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4551:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4542:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4608:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4583:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4583:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4583:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4623:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4633:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4623:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4647:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4679:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4690:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4675:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4675:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4662:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4662:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4651:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4728:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4703:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4703:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4703:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4745:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "4755:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4745:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ICompLike_$11027t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4425:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4436:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4448:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4456:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4361:407:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4860:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4906:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4915:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4918:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4908:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4908:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4908:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4881:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4890:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4877:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4877:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4902:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4873:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4873:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4870:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4931:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4957:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4944:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4944:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4935:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "5001:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4976:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4976:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4976:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5016:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "5026:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5016:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$12213",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4826:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4837:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4849:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4773:264:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5112:110:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5158:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5167:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5170:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5160:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5160:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5160:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5133:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5142:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5129:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5129:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5154:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5125:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5125:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5122:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5183:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5206:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5193:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5193:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5183:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5078:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5089:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5101:6:84",
                            "type": ""
                          }
                        ],
                        "src": "5042:180:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5308:103:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5354:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5363:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5366:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5356:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5356:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5356:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5329:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5338:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5325:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5325:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5350:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5321:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5321:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5318:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5379:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5395:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5389:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5389:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5379:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5274:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5285:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5297:6:84",
                            "type": ""
                          }
                        ],
                        "src": "5227:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5465:267:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5475:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "5495:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5489:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5489:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "5479:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5517:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5522:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5510:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5510:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5510:19:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5564:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5571:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5560:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5560:16:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5582:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5587:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5578:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5578:14:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5594:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5538:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5538:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5538:63:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5610:116:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5625:3:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "5638:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5646:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5634:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5634:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5651:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "5630:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5630:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5621:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5621:98:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5721:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5617:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5617:109:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "5610:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_bytes",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "5442:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "5449:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "5457:3:84",
                            "type": ""
                          }
                        ],
                        "src": "5416:316:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5874:137:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5884:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5904:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5898:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5898:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "5888:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5946:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5954:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5942:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5942:17:84"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5961:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5966:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5920:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5920:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5920:53:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5982:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5993:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5998:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5989:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5989:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "5982:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "5850:3:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5855:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "5866:3:84",
                            "type": ""
                          }
                        ],
                        "src": "5737:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6117:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6127:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6139:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6150:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6135:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6135:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6127:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6169:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6184:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6192:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6180:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6180:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6162:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6162:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6162:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6086:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6097:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6108:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6016:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6376:198:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6386:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6398:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6409:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6394:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6394:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6386:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6421:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6431:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6425:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6489:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6504:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6512:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6500:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6500:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6482:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6482:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6482:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6536:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6547:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6532:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6532:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6556:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6564:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6552:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6552:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6525:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6525:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6525:43:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6337:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6348:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6356:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6367:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6247:327:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6736:241:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6746:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6758:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6769:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6754:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6754:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6746:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6781:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6791:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6785:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6849:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6864:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6872:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6860:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6860:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6842:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6842:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6842:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6896:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6907:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6892:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6892:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6916:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6924:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6912:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6912:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6885:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6885:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6885:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6948:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6959:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6944:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6944:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6964:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6937:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6937:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6937:34:84"
                            }
                          ]
                        },
                        "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": "6689:9:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "6700:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6708:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6716:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6727:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6579:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7111:168:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7121:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7133:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7144:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7129:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7129:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7121:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7163:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7178:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7186:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7174:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7174:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7156:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7156:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7156:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7250:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7261:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7246:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7246:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7266:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7239:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7239:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7239:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7072:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7083:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7091:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7102:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6982:297:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7435:481:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7445:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7455:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7449:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7466:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7484:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7495:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7480:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7480:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7470:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7514:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7525:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7507:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7507:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7507:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7537:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "7548:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "7541:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7563:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7583:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7577:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7577:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "7567:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7606:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7614:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7599:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7599:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7599:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7630:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7641:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7652:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7637:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7637:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "7630:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7664:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7682:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7690:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7678:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7678:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "7668:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7702:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7711:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "7706:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7770:120:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "7791:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "7802:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "7796:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7796:13:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7784:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7784:26:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7784:26:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7823:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "7834:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7839:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7830:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7830:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7823:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7855:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "7869:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7877:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7865:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7865:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "7855:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "7732:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7735:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7729:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7729:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "7743:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7745:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "7754:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7757:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7750:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7750:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "7745:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "7725:3:84",
                                "statements": []
                              },
                              "src": "7721:169:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7899:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "7907:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7899:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7404:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7415:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7426:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7284:632:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8016:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8026:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8038:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8049:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8034:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8034:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8026:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8068:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "8093:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "8086:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8086:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "8079:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8079:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8061:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8061:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8061:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7985:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7996:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8007:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7921:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8212:149:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8222:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8234:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8245:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8230:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8230:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8222:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8264:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8279:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8287:66:84",
                                        "type": "",
                                        "value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8275:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8275:79:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8257:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8257:98:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8257:98:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8181:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8192:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8203:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8113:248:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8485:98:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8502:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8513:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8495:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8495:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8495:21:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8525:52:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8550:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8562:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8573:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8558:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8558:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "8533:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8533:44:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8525:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8454:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8465:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8476:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8366:217:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8706:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8716:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8728:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8739:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8724:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8724:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8716:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8758:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8773:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8781:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8769:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8769:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8751:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8751:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8751:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8675:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8686:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8697:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8588:243:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8962:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8972:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8984:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8995:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8980:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8980:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8972:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9014:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "9029:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9037:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9025:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9025:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9007:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9007:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9007:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_YieldSourceStub_$17255__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8931:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8942:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8953:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8836:251:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9213:98:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9230:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9241:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9223:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9223:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9223:21:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9253:52:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9278:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9290:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9301:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9286:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9286:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "9261:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9261:44:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9253:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9182:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9193:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9204:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9092:219:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9490:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9507:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9518:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9500:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9500:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9500:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9541:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9552:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9537:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9537:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9557:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9530:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9530:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9530:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9580:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9591:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9576:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9576:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9596:34:84",
                                    "type": "",
                                    "value": "PrizePool/prizeStrategy-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9569:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9569:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9569:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9640:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9652:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9663:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9648:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9648:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9640:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9467:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9481:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9316:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9851:178:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9868:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9879:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9861:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9861:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9861:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9902:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9913:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9898:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9898:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9918:2:84",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9891:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9891:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9891:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9941:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9952:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9937:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9937:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f6f6e6c792d7072697a655374726174656779",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9957:30:84",
                                    "type": "",
                                    "value": "PrizePool/only-prizeStrategy"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9930:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9930:58:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9930:58:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9997:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10009:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10020:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10005:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10005:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9997:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9828:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9842:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9677:352:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10208:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10225:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10236:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10218:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10218:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10218:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10259:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10270:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10255:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10255:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10275:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10248:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10248:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10248:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10298:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10309:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10294:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10294:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10314:34:84",
                                    "type": "",
                                    "value": "PrizePool/ticket-not-zero-addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10287:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10287:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10287:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10369:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10380:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10365:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10365:18:84"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10385:3:84",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10358:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10358:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10358:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10398:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10410:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10421:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10406:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10406:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10398:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10185:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10199:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10034:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10610:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10627:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10638:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10620:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10620:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10620:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10661:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10672:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10657:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10657:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10677:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10650:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10650:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10650:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10700:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10711:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10696:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10696:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10716:34:84",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10689:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10689:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10689:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10771:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10782:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10767:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10767:18:84"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10787:8:84",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10760:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10760:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10760:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10805:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10817:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10828:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10813:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10813:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10805:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10587:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10601:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10436:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11017:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11034:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11045:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11027:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11027:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11027:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11068:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11079:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11064:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11064:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11084:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11057:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11057:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11057:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11107:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11118:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11103:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11103:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11123:26:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11096:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11096:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11096:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11159:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11171:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11182:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11167:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11167:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11159:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10994:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11008:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10843:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11370:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11387:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11398:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11380:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11380:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11380:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11421:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11432:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11417:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11417:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11437:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11410:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11410:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11410:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11460:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11471:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11456:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11456:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11476:34:84",
                                    "type": "",
                                    "value": "PrizePool/invalid-external-token"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11449:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11449:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11449:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11520:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11532:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11543:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11528:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11528:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11520:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11347:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11361:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11196:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11731:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11748:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11759:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11741:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11741:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11741:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11782:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11793:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11778:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11778:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11798:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11771:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11771:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11771:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11821:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11832:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11817:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11817:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11837:33:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11810:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11810:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11810:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11880:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11892:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11903:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11888:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11888:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11880:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11708:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11722:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11557:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12091:178:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12108:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12119:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12101:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12101:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12101:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12142:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12153:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12138:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12138:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12158:2:84",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12131:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12131:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12131:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12181:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12192:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12177:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12177:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f7469636b65742d616c72656164792d736574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12197:30:84",
                                    "type": "",
                                    "value": "PrizePool/ticket-already-set"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12170:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12170:58:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12170:58:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12237:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12249:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12260:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12245:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12245:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12237:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12068:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12082:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11917:352:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12448:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12465:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12476:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12458:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12458:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12458:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12499:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12510:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12495:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12495:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12515:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12488:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12488:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12488:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12538:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12549:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12534:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12534:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f61776172642d657863656564732d617661696c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12554:31:84",
                                    "type": "",
                                    "value": "PrizePool/award-exceeds-avail"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12527:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12527:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12527:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12595:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12607:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12618:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12603:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12603:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12595:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12425:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12439:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12274:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12806:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12823:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12834:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12816:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12816:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12816:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12857:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12868:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12853:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12853:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12873:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12846:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12846:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12846:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12896:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12907:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12892:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12892:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12912:31:84",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12885:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12885:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12885:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12953:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12965:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12976:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12961:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12961:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12953:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12783:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12797:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12632:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13164:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13181:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13192:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13174:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13174:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13174:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13215:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13226:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13211:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13211:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13231:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13204:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13204:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13204:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13254:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13265:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13250:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13250:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13270:34:84",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13243:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13243:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13243:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13325:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13336:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13321:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13321:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13341:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13314:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13314:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13314:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13358:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13370:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13381:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13366:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13366:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13358:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13141:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13155:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12990:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13570:232:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13587:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13598:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13580:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13580:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13580:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13621:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13632:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13617:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13617:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13637:2:84",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13610:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13610:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13610:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13660:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13671:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13656:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13656:18:84"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13676:34:84",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13649:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13649:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13649:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13731:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13742:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13727:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13727:18:84"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13747:12:84",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13720:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13720:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13720:40:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13769:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13781:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13792:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13777:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13777:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13769:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13547:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13561:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13396:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13981:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13998:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14009:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13991:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13991:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13991:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14032:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14043:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14028:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14028:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14048:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14021:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14021:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14021:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14071:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14082:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14067:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14067:18:84"
                                  },
                                  {
                                    "hexValue": "5265656e7472616e637947756172643a207265656e7472616e742063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14087:33:84",
                                    "type": "",
                                    "value": "ReentrancyGuard: reentrant call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14060:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14060:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14060:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14130:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14142:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14153:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14138:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14138:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14130:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13958:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13972:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13807:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14341:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14358:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14369:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14351:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14351:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14351:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14392:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14403:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14388:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14388:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14408:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14381:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14381:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14381:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14431:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14442:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14427:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14427:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f657863656564732d6c69717569646974792d636170",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14447:33:84",
                                    "type": "",
                                    "value": "PrizePool/exceeds-liquidity-cap"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14420:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14420:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14420:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14490:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14502:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14513:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14498:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14498:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14490:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14318:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14332:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14167:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14701:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14718:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14729:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14711:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14711:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14711:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14752:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14763:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14748:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14748:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14768:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14741:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14741:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14741:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14791:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14802:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14787:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14787:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f657863656564732d62616c616e63652d636170",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14807:31:84",
                                    "type": "",
                                    "value": "PrizePool/exceeds-balance-cap"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14780:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14780:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14780:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14848:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14860:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14871:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14856:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14856:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14848:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14678:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14692:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14527:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14986:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "14996:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15008:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15019:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15004:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15004:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14996:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15038:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "15049:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15031:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15031:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15031:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14955:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14966:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14977:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14885:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15196:168:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15206:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15218:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15229:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15214:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15214:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15206:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15248:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "15259:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15241:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15241:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15241:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15286:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15297:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15282:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15282:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "15306:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15314:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15302:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15302:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15275:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15275:83:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15275:83:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15157:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "15168:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15176:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15187:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15067:297:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15498:119:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15508:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15520:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15531:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15516:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15516:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15508:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15550:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "15561:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15543:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15543:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15543:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15588:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15599:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15584:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15584:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "15604:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15577:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15577:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15577:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15459:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "15470:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15478:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15489:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15369:248:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15670:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15697:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "15699:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15699:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15699:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15686:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "15693:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "15689:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15689:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15683:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15683:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "15680:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15728:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15739:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15742:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15735:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15735:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "15728:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "15653:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "15656:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "15662:3:84",
                            "type": ""
                          }
                        ],
                        "src": "15622:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15804:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15826:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "15828:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15828:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15828:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15820:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15823:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15817:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15817:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "15814:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15857:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15869:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15872:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "15865:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15865:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "15857:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "15786:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "15789:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "15795:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15755:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15938:205:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "15948:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "15957:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "15952:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "16017:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "16042:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "16047:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "16038:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "16038:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "16061:3:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "16066:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "16057:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "16057:11:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "16051:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "16051:18:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "16031:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16031:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "16031:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "15978:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "15981:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15975:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15975:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "15989:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "15991:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "16000:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "16003:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "15996:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15996:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "15991:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "15971:3:84",
                                "statements": []
                              },
                              "src": "15967:113:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "16106:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "16119:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "16124:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "16115:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "16115:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "16133:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "16108:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16108:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "16108:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "16095:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "16098:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "16092:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16092:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "16089:2:84"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "15916:3:84",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "15921:3:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "15926:6:84",
                            "type": ""
                          }
                        ],
                        "src": "15885:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16195:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "16286:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "16288:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16288:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "16288:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "16211:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16218:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "16208:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16208:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "16205:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16317:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "16328:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16335:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16324:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16324:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "16317:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "16177:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "16187:3:84",
                            "type": ""
                          }
                        ],
                        "src": "16148:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16380:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16397:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16400:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16390:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16390:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16390:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16494:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16497:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16487:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16487:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16487:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16518:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16521:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "16511:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16511:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16511:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "16348:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16569:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16586:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16589:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16579:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16579:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16579:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16683:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16686:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16676:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16676:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16676:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16707:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16710:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "16700:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16700:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16700:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "16537:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16758:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16775:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16778:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16768:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16768:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16768:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16872:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16875:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16865:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16865:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16865:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16896:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16899:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "16889:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16889:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16889:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "16726:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16960:109:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "17047:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "17056:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "17059:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "17049:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17049:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17049:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "16983:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "16994:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17001:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "16990:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16990:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "16980:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16980:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "16973:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16973:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "16970:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "16949:5:84",
                            "type": ""
                          }
                        ],
                        "src": "16915:154:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let offset := calldataload(add(headStart, 64))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value2 := add(_2, 32)\n        value3 := length\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        value2 := calldataload(add(headStart, 64))\n        let offset := calldataload(add(headStart, 96))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, length), 32), dataEnd) { revert(0, 0) }\n        value3 := add(_2, 32)\n        value4 := length\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_uint256t_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n        let value_1 := calldataload(add(headStart, 64))\n        validator_revert_address(value_1)\n        value2 := value_1\n    }\n    function abi_decode_tuple_t_addresst_uint256t_contract$_ITicket_$12213(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n        let value_1 := calldataload(add(headStart, 64))\n        validator_revert_address(value_1)\n        value2 := value_1\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_ICompLike_$11027t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_contract$_ITicket_$12213(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_bytes(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n        end := add(add(pos, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 0x20)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\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    {\n        tail := add(headStart, 96)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff00000000000000000000000000000000000000000000000000000000))\n    }\n    function abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_bytes(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_contract$_ITicket_$12213__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_YieldSourceStub_$17255__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_bytes(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"PrizePool/prizeStrategy-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"PrizePool/only-prizeStrategy\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"PrizePool/ticket-not-zero-addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Address: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r call\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"PrizePool/invalid-external-token\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"PrizePool/ticket-already-set\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"PrizePool/award-exceeds-avail\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"Address: call to non-contract\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"SafeERC20: ERC20 operation did n\")\n        mstore(add(headStart, 96), \"ot succeed\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ReentrancyGuard: reentrant call\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"PrizePool/exceeds-liquidity-cap\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"PrizePool/exceeds-balance-cap\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\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) { mstore(add(dst, length), 0) }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106102925760003560e01c80637b99adb111610160578063c002c4d6116100d8578063e30c39781161008c578063f2fde38b11610071578063f2fde38b1461053d578063ffa1ad7414610550578063ffaad6a51461059957600080fd5b8063e30c397814610524578063e6d8a94b1461053557600080fd5b8063d7a169eb116100bd578063d7a169eb146104ed578063d804abaf14610500578063db006a751461051157600080fd5b8063c002c4d6146104d3578063d18e81b3146104e457600080fd5b80639470b0bd1161012f578063b15a49c111610114578063b15a49c1146104bd578063b38f5b6d146104c5578063b69ef8a8146104cb57600080fd5b80639470b0bd14610497578063aec9c307146104aa57600080fd5b80637b99adb11461044d57806384449464146104605780638da5cb5b1461047357806391ca480e1461048457600080fd5b80632f7627e31161020e5780635d8a776e116101c25780636a3fd4f9116101a75780636a3fd4f91461041f578063715018a61461043257806378b3d3271461043a57600080fd5b80635d8a776e14610404578063630665b41461041757600080fd5b806335403023116101f357806335403023146103d65780634e71e0c8146103e95780635a3f111c146103f157600080fd5b80632f7627e3146103bb57806333e5761f146103ce57600080fd5b806316960d551161026557806321df0da71161024a57806321df0da71461037557806322f8e566146103955780632b0ab144146103a857600080fd5b806316960d551461033f5780631c65c78b1461035257600080fd5b806308234319146102975780630d4d1513146102ae57806313f55e39146102c3578063150b7a02146102d6575b600080fd5b6005545b6040519081526020015b60405180910390f35b6102c16102bc366004612396565b6105ac565b005b6102c16102d136600461228a565b6105bc565b61030e6102e43660046122cb565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016102a5565b6102c161034d3660046121f5565b61067d565b6103656103603660046121bb565b610947565b60405190151581526020016102a5565b61037d610aee565b6040516001600160a01b0390911681526020016102a5565b6102c16103a3366004612433565b600855565b6102c16103b636600461228a565b610afd565b6102c16103c93660046123fa565b610bac565b61029b610d22565b6102c16103e4366004612433565b610d2c565b6102c1610d38565b60095461037d906001600160a01b031681565b6102c161041236600461236a565b610dc6565b60075461029b565b61036561042d3660046121bb565b610eec565b6102c1610efd565b6103656104483660046121bb565b610f72565b6102c161045b366004612433565b610f8b565b6102c161046e366004612433565b600755565b6000546001600160a01b031661037d565b6102c16104923660046121bb565b610ffd565b61029b6104a536600461236a565b61106f565b6103656104b8366004612433565b6111d0565b60065461029b565b4261029b565b61029b611244565b6003546001600160a01b031661037d565b61029b60085481565b6102c16104fb366004612396565b61124e565b6004546001600160a01b031661037d565b6102c161051f366004612433565b61138e565b6001546001600160a01b031661037d565b61029b611397565b6102c161054b3660046121bb565b611495565b61058c6040518060400160405280600581526020017f342e302e3000000000000000000000000000000000000000000000000000000081525081565b6040516102a591906124f1565b6102c16105a736600461236a565b6115d1565b6105b7838383611692565b505050565b6004546001600160a01b0316331461061b5760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064015b60405180910390fd5b610626838383611712565b156105b757816001600160a01b0316836001600160a01b03167fb0bac59718cd343c80a813518afcf36846cfcfe6d56e2b3cab9bd49f5f9b251c8360405161067091815260200190565b60405180910390a3505050565b6004546001600160a01b031633146106d75760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a655374726174656779000000006044820152606401610612565b6106e083611795565b61072c5760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e6044820152606401610612565b8061073657610941565b60008167ffffffffffffffff811115610751576107516125a6565b60405190808252806020026020018201604052801561077a578160200160208202803683370190505b5090506000805b838110156108eb57856001600160a01b03166342842e0e30898888868181106107ac576107ac612590565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b1681526001600160a01b03958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b15801561081b57600080fd5b505af192505050801561082c575060015b61089d573d80801561085a576040519150601f19603f3d011682016040523d82523d6000602084013e61085f565b606091505b507f17e975018310f88872b58d4d8263adca83cf5c1893496ea2a86923dab15276ad8160405161088f91906124f1565b60405180910390a1506108d9565b600191508484828181106108b3576108b3612590565b905060200201358382815181106108cc576108cc612590565b6020026020010181815250505b806108e38161255f565b915050610781565b50801561093e57846001600160a01b0316866001600160a01b03167f69c2de32bc4d47f488e72626a6cfdee85089342e52675e7de79c4b417623960c8460405161093591906124ad565b60405180910390a35b50505b50505050565b60003361095c6000546001600160a01b031690565b6001600160a01b0316146109b25760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610612565b6001600160a01b038216610a2e5760405162461bcd60e51b815260206004820152602160248201527f5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d61646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610612565b6003546001600160a01b031615610a875760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f7469636b65742d616c72656164792d736574000000006044820152606401610612565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091556040517f9f9d59c87dbdc6ca82d9e5924782004b9aebc366c505c0ccab12f61e2a9f332190600090a2610ae660001961182c565b506001919050565b6000610af8611868565b905090565b6004546001600160a01b03163314610b575760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a655374726174656779000000006044820152606401610612565b610b62838383611712565b156105b757816001600160a01b0316836001600160a01b03167fc65f48aca3b7a99b7443d04b8ffbb073156179bc628dc3f7def50477489734698360405161067091815260200190565b33610bbf6000546001600160a01b031690565b6001600160a01b031614610c155760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610612565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610c7057600080fd5b505afa158015610c84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca8919061244c565b1115610d1e576040517f5c19a95c0000000000000000000000000000000000000000000000000000000081526001600160a01b038281166004830152831690635c19a95c90602401600060405180830381600087803b158015610d0a57600080fd5b505af115801561093e573d6000803e3d6000fd5b5050565b6000610af86118fe565b610d3581611994565b50565b6001546001600160a01b03163314610d925760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610612565b600154610da7906001600160a01b0316611a14565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6004546001600160a01b03163314610e205760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a655374726174656779000000006044820152606401610612565b80610e29575050565b60075480821115610e7c5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f61776172642d657863656564732d617661696c0000006044820152606401610612565b8181036007556003546001600160a01b0316610e99848483611692565b806001600160a01b0316846001600160a01b03167fe2554529d99ab7a67db6b4cea2b32c7d55ae325f958861e05f304fdded867e3185604051610ede91815260200190565b60405180910390a350505050565b6000610ef782611795565b92915050565b33610f106000546001600160a01b031690565b6001600160a01b031614610f665760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610612565b610f706000611a14565b565b6003546000906001600160a01b03808416911614610ef7565b33610f9e6000546001600160a01b031690565b6001600160a01b031614610ff45760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610612565b610d3581611a71565b336110106000546001600160a01b031690565b6001600160a01b0316146110665760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610612565b610d3581611aa6565b60006002805414156110c35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b600280556003546040517f631b5dfb0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0385811660248301526044820185905290911690819063631b5dfb90606401600060405180830381600087803b15801561113657600080fd5b505af115801561114a573d6000803e3d6000fd5b50505050600061115984611b53565b90506111788582611168611868565b6001600160a01b03169190611beb565b60408051858152602081018390526001600160a01b03808516929088169133917fe56473357106d0cdea364a045d5ab7abb44b6bd1c0f092ba3734983a43459f8f910160405180910390a46001600255949350505050565b6000336111e56000546001600160a01b031690565b6001600160a01b03161461123b5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610612565b610ae68261182c565b6000610af8611c94565b6002805414156112a05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b60028055816112ae81611d07565b6112fa5760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d636170006044820152606401610612565b611305338585611d3d565b6003546040517f33e39b610000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b038481166024830152909116906333e39b6190604401600060405180830381600087803b15801561136b57600080fd5b505af115801561137f573d6000803e3d6000fd5b50506001600255505050505050565b610d1e81611b53565b60006002805414156113eb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b6002805560006113f96118fe565b6007549091506000611409611c94565b9050600083821161141b576000611425565b611425848361251c565b90506000838211611437576000611441565b611441848361251c565b9050801561148757600782905560405181815291935083917fce2b6e507c7ca1a20ce136810f524eefc19ba4c7e4866eb6cc0cba76e778d4be9060200160405180910390a15b505060016002555092915050565b336114a86000546001600160a01b031690565b6001600160a01b0316146114fe5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610612565b6001600160a01b03811661157a5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610612565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6002805414156116235760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b600280558061163181611d07565b61167d5760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d636170006044820152606401610612565b611688338484611d3d565b5050600160025550565b6040517f5d7b07580000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260248201849052821690635d7b075890604401600060405180830381600087803b1580156116f557600080fd5b505af1158015611709573d6000803e3d6000fd5b50505050505050565b600061171d83611795565b6117695760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e6044820152606401610612565b816117765750600061178e565b61178a6001600160a01b0384168584611beb565b5060015b9392505050565b6009546040517f6a3fd4f90000000000000000000000000000000000000000000000000000000081526001600160a01b0383811660048301526000921690636a3fd4f99060240160206040518083038186803b1580156117f457600080fd5b505afa158015611808573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef791906123d8565b60058190556040518181527f439b9ac8f2088164a8d80921758209db1623cf1a37a48913679ef3a43d7a5cf7906020015b60405180910390a150565b600954604080517fc89039c500000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163c89039c5916004808301926020929190829003018186803b1580156118c657600080fd5b505afa1580156118da573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af891906121d8565b600354604080517f18160ddd00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561195c57600080fd5b505afa158015611970573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af8919061244c565b6009546040517f87a6eeef000000000000000000000000000000000000000000000000000000008152600481018390523060248201526001600160a01b03909116906387a6eeef90604401600060405180830381600087803b1580156119f957600080fd5b505af1158015611a0d573d6000803e3d6000fd5b5050505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60068190556040518181527f3ff20538222f568f27ff436c0c49dfd3e48d5b8f86533a3f759dc1c7089775ab9060200161185d565b6001600160a01b038116611afc5760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f6044820152606401610612565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f7f58dc86bc2e435cb77ca0edb1df55e25f90caf2d6bd866971715437d456a21290600090a250565b6009546040517f013054c2000000000000000000000000000000000000000000000000000000008152600481018390526000916001600160a01b03169063013054c290602401602060405180830381600087803b158015611bb357600080fd5b505af1158015611bc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef7919061244c565b6040516001600160a01b0383166024820152604481018290526105b79084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611e2f565b6009546040517fb99152d00000000000000000000000000000000000000000000000000000000081523060048201526000916001600160a01b03169063b99152d090602401602060405180830381600087803b158015611cf357600080fd5b505af1158015611970573d6000803e3d6000fd5b600654600090600019811415611d205750600192915050565b8083611d2a6118fe565b611d349190612504565b11159392505050565b611d478282611f14565b611d935760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f657863656564732d62616c616e63652d6361700000006044820152606401610612565b6003546001600160a01b0316611dbe843084611dad611868565b6001600160a01b0316929190611fdb565b611dc9838383611692565b611dd282611994565b806001600160a01b0316836001600160a01b0316856001600160a01b03167f4174a9435a04d04d274c76779cad136a41fde6937c56241c09ab9d3c7064a1a985604051611e2191815260200190565b60405180910390a450505050565b6000611e84826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661202c9092919063ffffffff16565b8051909150156105b75780806020019051810190611ea291906123d8565b6105b75760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610612565b600554600090600019811415611f2e576001915050610ef7565b6003546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152839286929116906370a082319060240160206040518083038186803b158015611f8f57600080fd5b505afa158015611fa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fc7919061244c565b611fd19190612504565b1115949350505050565b6040516001600160a01b03808516602483015283166044820152606481018290526109419085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401611c30565b606061203b8484600085612043565b949350505050565b6060824710156120bb5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610612565b843b6121095760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610612565b600080866001600160a01b031685876040516121259190612491565b60006040518083038185875af1925050503d8060008114612162576040519150601f19603f3d011682016040523d82523d6000602084013e612167565b606091505b5091509150612177828286612182565b979650505050505050565b6060831561219157508161178e565b8251156121a15782518084602001fd5b8160405162461bcd60e51b815260040161061291906124f1565b6000602082840312156121cd57600080fd5b813561178e816125bc565b6000602082840312156121ea57600080fd5b815161178e816125bc565b6000806000806060858703121561220b57600080fd5b8435612216816125bc565b93506020850135612226816125bc565b9250604085013567ffffffffffffffff8082111561224357600080fd5b818701915087601f83011261225757600080fd5b81358181111561226657600080fd5b8860208260051b850101111561227b57600080fd5b95989497505060200194505050565b60008060006060848603121561229f57600080fd5b83356122aa816125bc565b925060208401356122ba816125bc565b929592945050506040919091013590565b6000806000806000608086880312156122e357600080fd5b85356122ee816125bc565b945060208601356122fe816125bc565b935060408601359250606086013567ffffffffffffffff8082111561232257600080fd5b818801915088601f83011261233657600080fd5b81358181111561234557600080fd5b89602082850101111561235757600080fd5b9699959850939650602001949392505050565b6000806040838503121561237d57600080fd5b8235612388816125bc565b946020939093013593505050565b6000806000606084860312156123ab57600080fd5b83356123b6816125bc565b92506020840135915060408401356123cd816125bc565b809150509250925092565b6000602082840312156123ea57600080fd5b8151801515811461178e57600080fd5b6000806040838503121561240d57600080fd5b8235612418816125bc565b91506020830135612428816125bc565b809150509250929050565b60006020828403121561244557600080fd5b5035919050565b60006020828403121561245e57600080fd5b5051919050565b6000815180845261247d816020860160208601612533565b601f01601f19169290920160200192915050565b600082516124a3818460208701612533565b9190910192915050565b6020808252825182820181905260009190848201906040850190845b818110156124e5578351835292840192918401916001016124c9565b50909695505050505050565b60208152600061178e6020830184612465565b600082198211156125175761251761257a565b500190565b60008282101561252e5761252e61257a565b500390565b60005b8381101561254e578181015183820152602001612536565b838111156109415750506000910152565b60006000198214156125735761257361257a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d3557600080fdfea2646970667358221220a5ec34052a94d7b217747206e265f1543522899c39f5255eeef5e608316439e464736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x292 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7B99ADB1 GT PUSH2 0x160 JUMPI DUP1 PUSH4 0xC002C4D6 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0xE30C3978 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xF2FDE38B GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x53D JUMPI DUP1 PUSH4 0xFFA1AD74 EQ PUSH2 0x550 JUMPI DUP1 PUSH4 0xFFAAD6A5 EQ PUSH2 0x599 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x524 JUMPI DUP1 PUSH4 0xE6D8A94B EQ PUSH2 0x535 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xD7A169EB GT PUSH2 0xBD JUMPI DUP1 PUSH4 0xD7A169EB EQ PUSH2 0x4ED JUMPI DUP1 PUSH4 0xD804ABAF EQ PUSH2 0x500 JUMPI DUP1 PUSH4 0xDB006A75 EQ PUSH2 0x511 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC002C4D6 EQ PUSH2 0x4D3 JUMPI DUP1 PUSH4 0xD18E81B3 EQ PUSH2 0x4E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9470B0BD GT PUSH2 0x12F JUMPI DUP1 PUSH4 0xB15A49C1 GT PUSH2 0x114 JUMPI DUP1 PUSH4 0xB15A49C1 EQ PUSH2 0x4BD JUMPI DUP1 PUSH4 0xB38F5B6D EQ PUSH2 0x4C5 JUMPI DUP1 PUSH4 0xB69EF8A8 EQ PUSH2 0x4CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9470B0BD EQ PUSH2 0x497 JUMPI DUP1 PUSH4 0xAEC9C307 EQ PUSH2 0x4AA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7B99ADB1 EQ PUSH2 0x44D JUMPI DUP1 PUSH4 0x84449464 EQ PUSH2 0x460 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x473 JUMPI DUP1 PUSH4 0x91CA480E EQ PUSH2 0x484 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F7627E3 GT PUSH2 0x20E JUMPI DUP1 PUSH4 0x5D8A776E GT PUSH2 0x1C2 JUMPI DUP1 PUSH4 0x6A3FD4F9 GT PUSH2 0x1A7 JUMPI DUP1 PUSH4 0x6A3FD4F9 EQ PUSH2 0x41F JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x432 JUMPI DUP1 PUSH4 0x78B3D327 EQ PUSH2 0x43A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x5D8A776E EQ PUSH2 0x404 JUMPI DUP1 PUSH4 0x630665B4 EQ PUSH2 0x417 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x35403023 GT PUSH2 0x1F3 JUMPI DUP1 PUSH4 0x35403023 EQ PUSH2 0x3D6 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x3E9 JUMPI DUP1 PUSH4 0x5A3F111C EQ PUSH2 0x3F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F7627E3 EQ PUSH2 0x3BB JUMPI DUP1 PUSH4 0x33E5761F EQ PUSH2 0x3CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x16960D55 GT PUSH2 0x265 JUMPI DUP1 PUSH4 0x21DF0DA7 GT PUSH2 0x24A JUMPI DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0x375 JUMPI DUP1 PUSH4 0x22F8E566 EQ PUSH2 0x395 JUMPI DUP1 PUSH4 0x2B0AB144 EQ PUSH2 0x3A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x16960D55 EQ PUSH2 0x33F JUMPI DUP1 PUSH4 0x1C65C78B EQ PUSH2 0x352 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8234319 EQ PUSH2 0x297 JUMPI DUP1 PUSH4 0xD4D1513 EQ PUSH2 0x2AE JUMPI DUP1 PUSH4 0x13F55E39 EQ PUSH2 0x2C3 JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x2D6 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x5 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C1 PUSH2 0x2BC CALLDATASIZE PUSH1 0x4 PUSH2 0x2396 JUMP JUMPDEST PUSH2 0x5AC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2C1 PUSH2 0x2D1 CALLDATASIZE PUSH1 0x4 PUSH2 0x228A JUMP JUMPDEST PUSH2 0x5BC JUMP JUMPDEST PUSH2 0x30E PUSH2 0x2E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x22CB JUMP JUMPDEST PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2A5 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x34D CALLDATASIZE PUSH1 0x4 PUSH2 0x21F5 JUMP JUMPDEST PUSH2 0x67D JUMP JUMPDEST PUSH2 0x365 PUSH2 0x360 CALLDATASIZE PUSH1 0x4 PUSH2 0x21BB JUMP JUMPDEST PUSH2 0x947 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2A5 JUMP JUMPDEST PUSH2 0x37D PUSH2 0xAEE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2A5 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x3A3 CALLDATASIZE PUSH1 0x4 PUSH2 0x2433 JUMP JUMPDEST PUSH1 0x8 SSTORE JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x3B6 CALLDATASIZE PUSH1 0x4 PUSH2 0x228A JUMP JUMPDEST PUSH2 0xAFD JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x3C9 CALLDATASIZE PUSH1 0x4 PUSH2 0x23FA JUMP JUMPDEST PUSH2 0xBAC JUMP JUMPDEST PUSH2 0x29B PUSH2 0xD22 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x3E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x2433 JUMP JUMPDEST PUSH2 0xD2C JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0xD38 JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH2 0x37D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x412 CALLDATASIZE PUSH1 0x4 PUSH2 0x236A JUMP JUMPDEST PUSH2 0xDC6 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH2 0x29B JUMP JUMPDEST PUSH2 0x365 PUSH2 0x42D CALLDATASIZE PUSH1 0x4 PUSH2 0x21BB JUMP JUMPDEST PUSH2 0xEEC JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0xEFD JUMP JUMPDEST PUSH2 0x365 PUSH2 0x448 CALLDATASIZE PUSH1 0x4 PUSH2 0x21BB JUMP JUMPDEST PUSH2 0xF72 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x45B CALLDATASIZE PUSH1 0x4 PUSH2 0x2433 JUMP JUMPDEST PUSH2 0xF8B JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x46E CALLDATASIZE PUSH1 0x4 PUSH2 0x2433 JUMP JUMPDEST PUSH1 0x7 SSTORE JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x37D JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x492 CALLDATASIZE PUSH1 0x4 PUSH2 0x21BB JUMP JUMPDEST PUSH2 0xFFD JUMP JUMPDEST PUSH2 0x29B PUSH2 0x4A5 CALLDATASIZE PUSH1 0x4 PUSH2 0x236A JUMP JUMPDEST PUSH2 0x106F JUMP JUMPDEST PUSH2 0x365 PUSH2 0x4B8 CALLDATASIZE PUSH1 0x4 PUSH2 0x2433 JUMP JUMPDEST PUSH2 0x11D0 JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH2 0x29B JUMP JUMPDEST TIMESTAMP PUSH2 0x29B JUMP JUMPDEST PUSH2 0x29B PUSH2 0x1244 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x37D JUMP JUMPDEST PUSH2 0x29B PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x4FB CALLDATASIZE PUSH1 0x4 PUSH2 0x2396 JUMP JUMPDEST PUSH2 0x124E JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x37D JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x51F CALLDATASIZE PUSH1 0x4 PUSH2 0x2433 JUMP JUMPDEST PUSH2 0x138E JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x37D JUMP JUMPDEST PUSH2 0x29B PUSH2 0x1397 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x54B CALLDATASIZE PUSH1 0x4 PUSH2 0x21BB JUMP JUMPDEST PUSH2 0x1495 JUMP JUMPDEST PUSH2 0x58C PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x342E302E30000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A5 SWAP2 SWAP1 PUSH2 0x24F1 JUMP JUMPDEST PUSH2 0x2C1 PUSH2 0x5A7 CALLDATASIZE PUSH1 0x4 PUSH2 0x236A JUMP JUMPDEST PUSH2 0x15D1 JUMP JUMPDEST PUSH2 0x5B7 DUP4 DUP4 DUP4 PUSH2 0x1692 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x61B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x626 DUP4 DUP4 DUP4 PUSH2 0x1712 JUMP JUMPDEST ISZERO PUSH2 0x5B7 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xB0BAC59718CD343C80A813518AFCF36846CFCFE6D56E2B3CAB9BD49F5F9B251C DUP4 PUSH1 0x40 MLOAD PUSH2 0x670 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x6D7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0x6E0 DUP4 PUSH2 0x1795 JUMP JUMPDEST PUSH2 0x72C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST DUP1 PUSH2 0x736 JUMPI PUSH2 0x941 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x751 JUMPI PUSH2 0x751 PUSH2 0x25A6 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x77A JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP1 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x8EB JUMPI DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x42842E0E ADDRESS DUP10 DUP9 DUP9 DUP7 DUP2 DUP2 LT PUSH2 0x7AC JUMPI PUSH2 0x7AC PUSH2 0x2590 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP9 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP6 DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP5 SWAP1 SWAP4 AND PUSH1 0x24 DUP6 ADD MSTORE POP PUSH1 0x20 SWAP1 SWAP2 MUL ADD CALLDATALOAD PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x81B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x82C JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x89D JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x85A JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x85F JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH32 0x17E975018310F88872B58D4D8263ADCA83CF5C1893496EA2A86923DAB15276AD DUP2 PUSH1 0x40 MLOAD PUSH2 0x88F SWAP2 SWAP1 PUSH2 0x24F1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP PUSH2 0x8D9 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP DUP5 DUP5 DUP3 DUP2 DUP2 LT PUSH2 0x8B3 JUMPI PUSH2 0x8B3 PUSH2 0x2590 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x8CC JUMPI PUSH2 0x8CC PUSH2 0x2590 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0x8E3 DUP2 PUSH2 0x255F JUMP JUMPDEST SWAP2 POP POP PUSH2 0x781 JUMP JUMPDEST POP DUP1 ISZERO PUSH2 0x93E JUMPI DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x69C2DE32BC4D47F488E72626A6CFDEE85089342E52675E7DE79C4B417623960C DUP5 PUSH1 0x40 MLOAD PUSH2 0x935 SWAP2 SWAP1 PUSH2 0x24AD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x95C PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9B2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xA2E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D6E6F742D7A65726F2D616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0xA87 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D616C72656164792D73657400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x9F9D59C87DBDC6CA82D9E5924782004B9AEBC366C505C0CCAB12F61E2A9F3321 SWAP1 PUSH1 0x0 SWAP1 LOG2 PUSH2 0xAE6 PUSH1 0x0 NOT PUSH2 0x182C JUMP JUMPDEST POP PUSH1 0x1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAF8 PUSH2 0x1868 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xB57 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0xB62 DUP4 DUP4 DUP4 PUSH2 0x1712 JUMP JUMPDEST ISZERO PUSH2 0x5B7 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xC65F48ACA3B7A99B7443D04B8FFBB073156179BC628DC3F7DEF5047748973469 DUP4 PUSH1 0x40 MLOAD PUSH2 0x670 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST CALLER PUSH2 0xBBF PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC15 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xC70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC84 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 0xCA8 SWAP2 SWAP1 PUSH2 0x244C JUMP JUMPDEST GT ISZERO PUSH2 0xD1E JUMPI PUSH1 0x40 MLOAD PUSH32 0x5C19A95C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x5C19A95C SWAP1 PUSH1 0x24 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xD0A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x93E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAF8 PUSH2 0x18FE JUMP JUMPDEST PUSH2 0xD35 DUP2 PUSH2 0x1994 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xD92 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0xDA7 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1A14 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE20 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST DUP1 PUSH2 0xE29 JUMPI POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD DUP1 DUP3 GT ISZERO PUSH2 0xE7C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F61776172642D657863656564732D617661696C000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x7 SSTORE PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xE99 DUP5 DUP5 DUP4 PUSH2 0x1692 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xE2554529D99AB7A67DB6B4CEA2B32C7D55AE325F958861E05F304FDDED867E31 DUP6 PUSH1 0x40 MLOAD PUSH2 0xEDE SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEF7 DUP3 PUSH2 0x1795 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0xF10 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF66 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0xF70 PUSH1 0x0 PUSH2 0x1A14 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND EQ PUSH2 0xEF7 JUMP JUMPDEST CALLER PUSH2 0xF9E PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xFF4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0xD35 DUP2 PUSH2 0x1A71 JUMP JUMPDEST CALLER PUSH2 0x1010 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1066 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0xD35 DUP2 PUSH2 0x1AA6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x10C3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x631B5DFB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP6 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 DUP2 SWAP1 PUSH4 0x631B5DFB SWAP1 PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1136 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x114A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 PUSH2 0x1159 DUP5 PUSH2 0x1B53 JUMP JUMPDEST SWAP1 POP PUSH2 0x1178 DUP6 DUP3 PUSH2 0x1168 PUSH2 0x1868 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x1BEB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP3 SWAP1 DUP9 AND SWAP2 CALLER SWAP2 PUSH32 0xE56473357106D0CDEA364A045D5AB7ABB44B6BD1C0F092BA3734983A43459F8F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x1 PUSH1 0x2 SSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x11E5 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x123B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0xAE6 DUP3 PUSH2 0x182C JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAF8 PUSH2 0x1C94 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x12A0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP2 PUSH2 0x12AE DUP2 PUSH2 0x1D07 JUMP JUMPDEST PUSH2 0x12FA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0x1305 CALLER DUP6 DUP6 PUSH2 0x1D3D JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x33E39B6100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x33E39B61 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x136B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x137F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0xD1E DUP2 PUSH2 0x1B53 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x13EB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x0 PUSH2 0x13F9 PUSH2 0x18FE JUMP JUMPDEST PUSH1 0x7 SLOAD SWAP1 SWAP2 POP PUSH1 0x0 PUSH2 0x1409 PUSH2 0x1C94 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x141B JUMPI PUSH1 0x0 PUSH2 0x1425 JUMP JUMPDEST PUSH2 0x1425 DUP5 DUP4 PUSH2 0x251C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x1437 JUMPI PUSH1 0x0 PUSH2 0x1441 JUMP JUMPDEST PUSH2 0x1441 DUP5 DUP4 PUSH2 0x251C JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1487 JUMPI PUSH1 0x7 DUP3 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE SWAP2 SWAP4 POP DUP4 SWAP2 PUSH32 0xCE2B6E507C7CA1A20CE136810F524EEFC19BA4C7E4866EB6CC0CBA76E778D4BE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x14A8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x14FE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x157A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x1623 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP1 PUSH2 0x1631 DUP2 PUSH2 0x1D07 JUMP JUMPDEST PUSH2 0x167D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH2 0x1688 CALLER DUP5 DUP5 PUSH2 0x1D3D JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x5D7B075800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 AND SWAP1 PUSH4 0x5D7B0758 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x16F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1709 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x171D DUP4 PUSH2 0x1795 JUMP JUMPDEST PUSH2 0x1769 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST DUP2 PUSH2 0x1776 JUMPI POP PUSH1 0x0 PUSH2 0x178E JUMP JUMPDEST PUSH2 0x178A PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP6 DUP5 PUSH2 0x1BEB JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x40 MLOAD PUSH32 0x6A3FD4F900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x0 SWAP3 AND SWAP1 PUSH4 0x6A3FD4F9 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x17F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1808 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 0xEF7 SWAP2 SWAP1 PUSH2 0x23D8 JUMP JUMPDEST PUSH1 0x5 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x439B9AC8F2088164A8D80921758209DB1623CF1A37A48913679EF3A43D7A5CF7 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0xC89039C500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 MLOAD PUSH1 0x0 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 PUSH4 0xC89039C5 SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x18C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x18DA 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 0xAF8 SWAP2 SWAP1 PUSH2 0x21D8 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x18160DDD00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 MLOAD PUSH1 0x0 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 PUSH4 0x18160DDD SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x195C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1970 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 0xAF8 SWAP2 SWAP1 PUSH2 0x244C JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x40 MLOAD PUSH32 0x87A6EEEF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x87A6EEEF SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x19F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1A0D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x6 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x3FF20538222F568F27FF436C0C49DFD3E48D5B8F86533A3F759DC1C7089775AB SWAP1 PUSH1 0x20 ADD PUSH2 0x185D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1AFC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7072697A6553747261746567792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x7F58DC86BC2E435CB77CA0EDB1DF55E25F90CAF2D6BD866971715437D456A212 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x40 MLOAD PUSH32 0x13054C200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x13054C2 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1BB3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1BC7 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 0xEF7 SWAP2 SWAP1 PUSH2 0x244C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x5B7 SWAP1 DUP5 SWAP1 PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x1E2F JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x40 MLOAD PUSH32 0xB99152D000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xB99152D0 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1CF3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1970 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x1D20 JUMPI POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP4 PUSH2 0x1D2A PUSH2 0x18FE JUMP JUMPDEST PUSH2 0x1D34 SWAP2 SWAP1 PUSH2 0x2504 JUMP JUMPDEST GT ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1D47 DUP3 DUP3 PUSH2 0x1F14 JUMP JUMPDEST PUSH2 0x1D93 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D62616C616E63652D636170000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1DBE DUP5 ADDRESS DUP5 PUSH2 0x1DAD PUSH2 0x1868 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x1FDB JUMP JUMPDEST PUSH2 0x1DC9 DUP4 DUP4 DUP4 PUSH2 0x1692 JUMP JUMPDEST PUSH2 0x1DD2 DUP3 PUSH2 0x1994 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4174A9435A04D04D274C76779CAD136A41FDE6937C56241C09AB9D3C7064A1A9 DUP6 PUSH1 0x40 MLOAD PUSH2 0x1E21 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E84 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x202C SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x5B7 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1EA2 SWAP2 SWAP1 PUSH2 0x23D8 JUMP JUMPDEST PUSH2 0x5B7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x1F2E JUMPI PUSH1 0x1 SWAP2 POP POP PUSH2 0xEF7 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 SWAP3 DUP7 SWAP3 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1F8F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1FA3 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 0x1FC7 SWAP2 SWAP1 PUSH2 0x244C JUMP JUMPDEST PUSH2 0x1FD1 SWAP2 SWAP1 PUSH2 0x2504 JUMP JUMPDEST GT ISZERO SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x941 SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD PUSH2 0x1C30 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x203B DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x2043 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x20BB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x612 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x2109 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x612 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x2125 SWAP2 SWAP1 PUSH2 0x2491 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x2162 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x2167 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x2177 DUP3 DUP3 DUP7 PUSH2 0x2182 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x2191 JUMPI POP DUP2 PUSH2 0x178E JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x21A1 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x612 SWAP2 SWAP1 PUSH2 0x24F1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x21CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x178E DUP2 PUSH2 0x25BC JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x21EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x178E DUP2 PUSH2 0x25BC JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x220B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2216 DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x2226 DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2243 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2257 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2266 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x227B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x229F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x22AA DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x22BA DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x22E3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x22EE DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x22FE DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2322 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2336 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2345 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x2357 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x237D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2388 DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x23AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x23B6 DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x23CD DUP2 PUSH2 0x25BC JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x178E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x240D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2418 DUP2 PUSH2 0x25BC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2428 DUP2 PUSH2 0x25BC JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2445 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x245E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x247D DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2533 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x24A3 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2533 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x24E5 JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x24C9 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x178E PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2465 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x2517 JUMPI PUSH2 0x2517 PUSH2 0x257A JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x252E JUMPI PUSH2 0x252E PUSH2 0x257A JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x254E JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2536 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x941 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2573 JUMPI PUSH2 0x2573 PUSH2 0x257A JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD35 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA5 0xEC CALLVALUE SDIV 0x2A SWAP5 0xD7 0xB2 OR PUSH21 0x7206E265F1543522899C39F5255EEEF5E608316439 0xE4 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "132:1731:72:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3545:100:59;3628:10;;3545:100;;;15031:25:84;;;15019:2;15004:18;3545:100:59;;;;;;;;392:163:72;;;;;;:::i;:::-;;:::i;:::-;;7453:299:59;;;;;;:::i;:::-;;:::i;10285:212::-;;;;;;:::i;:::-;10449:41;10285:212;;;;;;;;;;;8287:66:84;8275:79;;;8257:98;;8245:2;8230:18;10285:212:59;8212:149:84;8118:961:59;;;;;;:::i;:::-;;:::i;9466:379::-;;;;;;:::i;:::-;;:::i;:::-;;;8086:14:84;;8079:22;8061:41;;8049:2;8034:18;9466:379:59;8016:92:84;4095:102:59;;;:::i;:::-;;;-1:-1:-1;;;;;6180:55:84;;;6162:74;;6150:2;6135:18;4095:102:59;6117:125:84;739:90:72;;;;;;:::i;:::-;800:11;:22;739:90;7789:292:59;;;;;;:::i;:::-;;:::i;10047:196::-;;;;;;:::i;:::-;;:::i;3392:116::-;;;:::i;561:81:72:-;;;;;;:::i;:::-;;:::i;3147:129:22:-;;;:::i;210:38:72:-;;;;;-1:-1:-1;;;;;210:38:72;;;6909:507:59;;;;;;:::i;:::-;;:::i;2886:109::-;2968:20;;2886:109;;3032:145;;;;;;:::i;:::-;;:::i;2508:94:22:-;;;:::i;3214:141:59:-;;;;;;:::i;:::-;;:::i;9305:124::-;;;;;;:::i;:::-;;:::i;1758:103:72:-;;;;;;:::i;:::-;1825:20;:29;1758:103;1814:85:22;1860:7;1886:6;-1:-1:-1;;;;;1886:6:22;1814:85;;9882:128:59;;;;;;:::i;:::-;;:::i;6371:501::-;;;;;;:::i;:::-;;:::i;9116:152::-;;;;;;:::i;:::-;;:::i;3682:104::-;3767:12;;3682:104;;941:107:72;14530:15:59;941:107:72;4095:102:59;2760:89;;;:::i;3823:92::-;3902:6;;-1:-1:-1;;;;;3902:6:59;3823:92;;177:26:72;;;;;;5405:285:59;;;;;;:::i;:::-;;:::i;3952:106::-;4038:13;;-1:-1:-1;;;;;4038:13:59;3952:106;;648:85:72;;;;;;:::i;:::-;;:::i;2014:101:22:-;2095:13;;-1:-1:-1;;;;;2095:13:22;2014:101;;4234:903:59;;;:::i;2751:234:22:-;;;;;;:::i;:::-;;:::i;1362:40:59:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;5174:194::-;;;;;;:::i;:::-;;:::i;392:163:72:-;511:37;517:3;522:7;531:16;511:5;:37::i;:::-;392:163;;;:::o;7453:299:59:-;2094:13;;-1:-1:-1;;;;;2094:13:59;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:59;;9879:2:84;2072:68:59;;;9861:21:84;9918:2;9898:18;;;9891:30;9957;9937:18;;;9930:58;10005:18;;2072:68:59;;;;;;;;;7618:42:::1;7631:3;7636:14;7652:7;7618:12;:42::i;:::-;7614:132;;;7711:14;-1:-1:-1::0;;;;;7681:54:59::1;7706:3;-1:-1:-1::0;;;;;7681:54:59::1;;7727:7;7681:54;;;;15031:25:84::0;;15019:2;15004:18;;14986:76;7681:54:59::1;;;;;;;;7453:299:::0;;;:::o;8118:961::-;2094:13;;-1:-1:-1;;;;;2094:13:59;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:59;;9879:2:84;2072:68:59;;;9861:21:84;9918:2;9898:18;;;9891:30;9957;9937:18;;;9930:58;10005:18;;2072:68:59;9851:178:84;2072:68:59;8298:33:::1;8316:14;8298:17;:33::i;:::-;8290:78;;;::::0;-1:-1:-1;;;8290:78:59;;11398:2:84;8290:78:59::1;::::0;::::1;11380:21:84::0;;;11417:18;;;11410:30;11476:34;11456:18;;;11449:62;11528:18;;8290:78:59::1;11370:182:84::0;8290:78:59::1;8383:21:::0;8379:58:::1;;8420:7;;8379:58;8447:33;8497:9:::0;8483:31:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;8483:31:59::1;-1:-1:-1::0;8447:67:59;-1:-1:-1;8525:23:59::1;::::0;8559:390:::1;8579:20:::0;;::::1;8559:390;;;8632:14;-1:-1:-1::0;;;;;8624:40:59::1;;8673:4;8680:3;8685:9;;8695:1;8685:12;;;;;;;:::i;:::-;8624:74;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;6860:15:84;;;8624:74:59::1;::::0;::::1;6842:34:84::0;6912:15;;;;6892:18;;;6885:43;-1:-1:-1;8685:12:59::1;::::0;;::::1;;;6944:18:84::0;;;6937:34;6754:18;;8624:74:59::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;8620:319;;;::::0;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8890:34;8918:5;8890:34;;;;;;:::i;:::-;;;;;;;;8810:129;8620:319;;;8738:4;8717:25;;8782:9;;8792:1;8782:12;;;;;;;:::i;:::-;;;;;;;8760:16;8777:1;8760:19;;;;;;;;:::i;:::-;;;;;;:34;;;::::0;::::1;8620:319;8601:3:::0;::::1;::::0;::::1;:::i;:::-;;;;8559:390;;;;8962:18;8958:115;;;9029:14;-1:-1:-1::0;;;;;9002:60:59::1;9024:3;-1:-1:-1::0;;;;;9002:60:59::1;;9045:16;9002:60;;;;;;:::i;:::-;;;;;;;;8958:115;8280:799;;2150:1;8118:961:::0;;;;:::o;9466:379::-;9539:4;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;11045:2:84;3819:58:22;;;11027:21:84;11084:2;11064:18;;;11057:30;11123:26;11103:18;;;11096:54;11167:18;;3819:58:22;11017:174:84;3819:58:22;-1:-1:-1;;;;;9563:30:59;::::1;9555:76;;;::::0;-1:-1:-1;;;9555:76:59;;10236:2:84;9555:76:59::1;::::0;::::1;10218:21:84::0;10275:2;10255:18;;;10248:30;10314:34;10294:18;;;10287:62;10385:3;10365:18;;;10358:31;10406:19;;9555:76:59::1;10208:223:84::0;9555:76:59::1;9657:6;::::0;-1:-1:-1;;;;;9657:6:59::1;9649:29:::0;9641:70:::1;;;::::0;-1:-1:-1;;;9641:70:59;;12119:2:84;9641:70:59::1;::::0;::::1;12101:21:84::0;12158:2;12138:18;;;12131:30;12197;12177:18;;;12170:58;12245:18;;9641:70:59::1;12091:178:84::0;9641:70:59::1;9722:6;:16:::0;;-1:-1:-1;;9722:16:59::1;-1:-1:-1::0;;;;;9722:16:59;::::1;::::0;;::::1;::::0;;;9754:18:::1;::::0;::::1;::::0;-1:-1:-1;;9754:18:59::1;9783:33;-1:-1:-1::0;;9783:14:59::1;:33::i;:::-;-1:-1:-1::0;9834:4:59::1;9466:379:::0;;;:::o;4095:102::-;4147:7;4181:8;:6;:8::i;:::-;4166:24;;4095:102;:::o;7789:292::-;2094:13;;-1:-1:-1;;;;;2094:13:59;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:59;;9879:2:84;2072:68:59;;;9861:21:84;9918:2;9898:18;;;9891:30;9957;9937:18;;;9930:58;10005:18;;2072:68:59;9851:178:84;2072:68:59;7951:42:::1;7964:3;7969:14;7985:7;7951:12;:42::i;:::-;7947:128;;;8040:14;-1:-1:-1::0;;;;;8014:50:59::1;8035:3;-1:-1:-1::0;;;;;8014:50:59::1;;8056:7;8014:50;;;;15031:25:84::0;;15019:2;15004:18;;14986:76;10047:196:59;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;11045:2:84;3819:58:22;;;11027:21:84;11084:2;11064:18;;;11057:30;11123:26;11103:18;;;11096:54;11167:18;;3819:58:22;11017:174:84;3819:58:22;10149:34:59::1;::::0;;;;10177:4:::1;10149:34;::::0;::::1;6162:74:84::0;10186:1:59::1;::::0;-1:-1:-1;;;;;10149:19:59;::::1;::::0;::::1;::::0;6135:18:84;;10149:34:59::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;10145:92;;;10203:23;::::0;;;;-1:-1:-1;;;;;6180:55:84;;;10203:23:59::1;::::0;::::1;6162:74:84::0;10203:18:59;::::1;::::0;::::1;::::0;6135::84;;10203:23:59::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;10145:92;10047:196:::0;;:::o;3392:116::-;3455:7;3481:20;:18;:20::i;561:81:72:-;616:19;624:10;616:7;:19::i;:::-;561:81;:::o;3147:129:22:-;4050:13;;-1:-1:-1;;;;;4050:13:22;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:22;;11759:2:84;4028:71:22;;;11741:21:84;11798:2;11778:18;;;11771:30;11837:33;11817:18;;;11810:61;11888:18;;4028:71:22;11731:181:84;4028:71:22;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:22::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:22::1;::::0;;3147:129::o;6909:507:59:-;2094:13;;-1:-1:-1;;;;;2094:13:59;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:59;;9879:2:84;2072:68:59;;;9861:21:84;9918:2;9898:18;;;9891:30;9957;9937:18;;;9930:58;10005:18;;2072:68:59;9851:178:84;2072:68:59;7004:12;7000:49:::1;;10047:196:::0;;:::o;7000:49::-:1;7089:20;::::0;7128:30;;::::1;;7120:72;;;::::0;-1:-1:-1;;;7120:72:59;;12476:2:84;7120:72:59::1;::::0;::::1;12458:21:84::0;12515:2;12495:18;;;12488:30;12554:31;12534:18;;;12527:59;12603:18;;7120:72:59::1;12448:179:84::0;7120:72:59::1;7250:29:::0;;::::1;7227:20;:52:::0;7318:6:::1;::::0;-1:-1:-1;;;;;7318:6:59::1;7335:28;7341:3:::0;7272:7;7318:6;7335:5:::1;:28::i;:::-;7392:7;-1:-1:-1::0;;;;;7379:30:59::1;7387:3;-1:-1:-1::0;;;;;7379:30:59::1;;7401:7;7379:30;;;;15031:25:84::0;;15019:2;15004:18;;14986:76;7379:30:59::1;;;;;;;;6990:426;;6909:507:::0;;:::o;3032:145::-;3114:4;3137:33;3155:14;3137:17;:33::i;:::-;3130:40;3032:145;-1:-1:-1;;3032:145:59:o;2508:94:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;11045:2:84;3819:58:22;;;11027:21:84;11084:2;11064:18;;;11057:30;11123:26;11103:18;;;11096:54;11167:18;;3819:58:22;11017:174:84;3819:58:22;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;3214:141:59:-;13170:6;;3294:4;;-1:-1:-1;;;;;13170:26:59;;;:6;;:26;3317:31;13074:130;9305:124;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;11045:2:84;3819:58:22;;;11027:21:84;11084:2;11064:18;;;11057:30;11123:26;11103:18;;;11096:54;11167:18;;3819:58:22;11017:174:84;3819:58:22;9391:31:59::1;9408:13;9391:16;:31::i;9882:128::-:0;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;11045:2:84;3819:58:22;;;11027:21:84;11084:2;11064:18;;;11057:30;11123:26;11103:18;;;11096:54;11167:18;;3819:58:22;11017:174:84;3819:58:22;9970:33:59::1;9988:14;9970:17;:33::i;6371:501::-:0;6497:7;1680:1:0;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:0;;14009:2:84;2251:63:0;;;13991:21:84;14048:2;14028:18;;;14021:30;14087:33;14067:18;;;14060:61;14138:18;;2251:63:0;13981:181:84;2251:63:0;1680:1;2389:18;;6538:6:59::1;::::0;6583:54:::1;::::0;;;;6610:10:::1;6583:54;::::0;::::1;6842:34:84::0;-1:-1:-1;;;;;6912:15:84;;;6892:18;;;6885:43;6944:18;;;6937:34;;;6538:6:59;;::::1;::::0;;;6583:26:::1;::::0;6754:18:84;;6583:54:59::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;6678:17;6698:16;6706:7;6698;:16::i;:::-;6678:36;;6725:39;6747:5;6754:9;6725:8;:6;:8::i;:::-;-1:-1:-1::0;;;;;6725:21:59::1;::::0;:39;:21:::1;:39::i;:::-;6780:58;::::0;;15543:25:84;;;15599:2;15584:18;;15577:34;;;-1:-1:-1;;;;;6780:58:59;;::::1;::::0;;;::::1;::::0;6791:10:::1;::::0;6780:58:::1;::::0;15516:18:84;6780:58:59::1;;;;;;;1637:1:0::0;2562:7;:22;6856:9:59;6371:501;-1:-1:-1;;;;6371:501:59:o;9116:152::-;9197:4;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;11045:2:84;3819:58:22;;;11027:21:84;11084:2;11064:18;;;11057:30;11123:26;11103:18;;;11096:54;11167:18;;3819:58:22;11017:174:84;3819:58:22;9213:27:59::1;9228:11;9213:14;:27::i;2760:89::-:0;2806:7;2832:10;:8;:10::i;5405:285::-;1680:1:0;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:0;;14009:2:84;2251:63:0;;;13991:21:84;14048:2;14028:18;;;14021:30;14087:33;14067:18;;;14060:61;14138:18;;2251:63:0;13981:181:84;2251:63:0;1680:1;2389:18;;5563:7:59;2327:25:::1;5563:7:::0;2327:16:::1;:25::i;:::-;2319:69;;;::::0;-1:-1:-1;;;2319:69:59;;14369:2:84;2319:69:59::1;::::0;::::1;14351:21:84::0;14408:2;14388:18;;;14381:30;14447:33;14427:18;;;14420:61;14498:18;;2319:69:59::1;14341:181:84::0;2319:69:59::1;5586:36:::2;5597:10;5609:3;5614:7;5586:10;:36::i;:::-;5632:6;::::0;:51:::2;::::0;;;;5661:10:::2;5632:51;::::0;::::2;6482:34:84::0;-1:-1:-1;;;;;6552:15:84;;;6532:18;;;6525:43;5632:6:59;;::::2;::::0;:28:::2;::::0;6394:18:84;;5632:51:59::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;1637:1:0;2562:7;:22;-1:-1:-1;;;;;;5405:285:59:o;648:85:72:-;705:21;713:12;705:7;:21::i;4234:903:59:-;4305:7;1680:1:0;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:0;;14009:2:84;2251:63:0;;;13991:21:84;14048:2;14028:18;;;14021:30;14087:33;14067:18;;;14060:61;14138:18;;2251:63:0;13981:181:84;2251:63:0;1680:1;2389:18;;4324:25:59::1;4352:20;:18;:20::i;:::-;4412;::::0;4324:48;;-1:-1:-1;4382:27:59::1;4583:10;:8;:10::i;:::-;4558:35;;4603:21;4645:17;4628:14;:34;4627:101;;4727:1;4627:101;;;4678:34;4695:17:::0;4678:14;:34:::1;:::i;:::-;4603:125;;4739:31;4790:19;4774:13;:35;4773:103;;4875:1;4773:103;;;4825:35;4841:19:::0;4825:13;:35:::1;:::i;:::-;4739:137:::0;-1:-1:-1;4891:27:59;;4887:207:::1;;4983:20;:42:::0;;;5045:38:::1;::::0;15031:25:84;;;4956:13:59;;-1:-1:-1;4956:13:59;;5045:38:::1;::::0;15019:2:84;15004:18;5045:38:59::1;;;;;;;4887:207;-1:-1:-1::0;;1637:1:0;2562:7;:22;-1:-1:-1;5111:19:59;4234:903;-1:-1:-1;;4234:903:59:o;2751:234:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;11045:2:84;3819:58:22;;;11027:21:84;11084:2;11064:18;;;11057:30;11123:26;11103:18;;;11096:54;11167:18;;3819:58:22;11017:174:84;3819:58:22;-1:-1:-1;;;;;2834:23:22;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:22;;13192:2:84;2826:73:22::1;::::0;::::1;13174:21:84::0;13231:2;13211:18;;;13204:30;13270:34;13250:18;;;13243:62;13341:7;13321:18;;;13314:35;13366:19;;2826:73:22::1;13164:227:84::0;2826:73:22::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:22::1;-1:-1:-1::0;;;;;2910:25:22;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:22::1;2751:234:::0;:::o;5174:194:59:-;1680:1:0;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:0;;14009:2:84;2251:63:0;;;13991:21:84;14048:2;14028:18;;;14021:30;14087:33;14067:18;;;14060:61;14138:18;;2251:63:0;13981:181:84;2251:63:0;1680:1;2389:18;;5302:7:59;2327:25:::1;5302:7:::0;2327:16:::1;:25::i;:::-;2319:69;;;::::0;-1:-1:-1;;;2319:69:59;;14369:2:84;2319:69:59::1;::::0;::::1;14351:21:84::0;14408:2;14388:18;;;14381:30;14447:33;14427:18;;;14420:61;14498:18;;2319:69:59::1;14341:181:84::0;2319:69:59::1;5325:36:::2;5336:10;5348:3;5353:7;5325:10;:36::i;:::-;-1:-1:-1::0;;1637:1:0;2562:7;:22;-1:-1:-1;5174:194:59:o;11602:172::-;11722:45;;;;;-1:-1:-1;;;;;7174:55:84;;;11722:45:59;;;7156:74:84;7246:18;;;7239:34;;;11722:31:59;;;;;7129:18:84;;11722:45:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11602:172;;;:::o;10936:372::-;11060:4;11084:33;11102:14;11084:17;:33::i;:::-;11076:78;;;;-1:-1:-1;;;11076:78:59;;11398:2:84;11076:78:59;;;11380:21:84;;;11417:18;;;11410:30;11476:34;11456:18;;;11449:62;11528:18;;11076:78:59;11370:182:84;11076:78:59;11169:12;11165:55;;-1:-1:-1;11204:5:59;11197:12;;11165:55;11230:49;-1:-1:-1;;;;;11230:35:59;;11266:3;11271:7;11230:35;:49::i;:::-;-1:-1:-1;11297:4:59;10936:372;;;;;;:::o;1054:161:72:-;1160:15;;:48;;;;;-1:-1:-1;;;;;6180:55:84;;;1160:48:72;;;6162:74:84;1137:4:72;;1160:15;;:32;;6135:18:84;;1160:48:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;13334:136:59:-;13398:10;:24;;;13437:26;;15031:25:84;;;13437:26:59;;15019:2:84;15004:18;13437:26:59;;;;;;;;13334:136;:::o;1221:120:72:-;1303:15;;:30;;;;;;;;1271:6;;-1:-1:-1;;;;;1303:15:72;;:28;;:30;;;;;;;;;;;;;;:15;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14215:106:59:-;14294:6;;:20;;;;;;;;14268:7;;-1:-1:-1;;;;;14294:6:59;;:18;;:20;;;;;;;;;;;;;;:6;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;1478:128:72:-;1543:15;;:56;;;;;;;;15241:25:84;;;1593:4:72;15282:18:84;;;15275:83;-1:-1:-1;;;;;1543:15:72;;;;:29;;15214:18:84;;1543:56:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1478:128;:::o;3470:174:22:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;13592:148:59:-;13660:12;:28;;;13703:30;;15031:25:84;;;13703:30:59;;15019:2:84;15004:18;13703:30:59;14986:76:84;13887:239:59;-1:-1:-1;;;;;13965:28:59;;13957:73;;;;-1:-1:-1;;;13957:73:59;;9518:2:84;13957:73:59;;;9500:21:84;;;9537:18;;;9530:30;9596:34;9576:18;;;9569:62;9648:18;;13957:73:59;9490:182:84;13957:73:59;14041:13;:30;;-1:-1:-1;;14041:30:59;-1:-1:-1;;;;;14041:30:59;;;;;;;;14087:32;;;;-1:-1:-1;;14087:32:59;13887:239;:::o;1612:140:72:-;1704:15;;:41;;;;;;;;15031:25:84;;;1678:7:72;;-1:-1:-1;;;;;1704:15:72;;:27;;15004:18:84;;1704:41:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;634:205:6:-;773:58;;-1:-1:-1;;;;;7174:55:84;;773:58:6;;;7156:74:84;7246:18;;;7239:34;;;746:86:6;;766:5;;796:23;;7129:18:84;;773:58:6;;;;-1:-1:-1;;773:58:6;;;;;;;;;;;;;;;;;;;;;;;;;;;746:19;:86::i;1347:125:72:-;1420:15;;:45;;;;;1459:4;1420:45;;;6162:74:84;1394:7:72;;-1:-1:-1;;;;;1420:15:72;;:30;;6135:18:84;;1420:45:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12605:252:59;12711:12;;12671:4;;-1:-1:-1;;12737:34:59;;12733:51;;;-1:-1:-1;12780:4:59;;12605:252;-1:-1:-1;;12605:252:59:o;12733:51::-;12836:13;12825:7;12802:20;:18;:20::i;:::-;:30;;;;:::i;:::-;:47;;;12605:252;-1:-1:-1;;;12605:252:59:o;5938:396::-;6038:25;6050:3;6055:7;6038:11;:25::i;:::-;6030:67;;;;-1:-1:-1;;;6030:67:59;;14729:2:84;6030:67:59;;;14711:21:84;14768:2;14748:18;;;14741:30;14807:31;14787:18;;;14780:59;14856:18;;6030:67:59;14701:179:84;6030:67:59;6126:6;;-1:-1:-1;;;;;6126:6:59;6143:60;6169:9;6188:4;6195:7;6143:8;:6;:8::i;:::-;-1:-1:-1;;;;;6143:25:59;;:60;;:25;:60::i;:::-;6214:28;6220:3;6225:7;6234;6214:5;:28::i;:::-;6252:16;6260:7;6252;:16::i;:::-;6310:7;-1:-1:-1;;;;;6284:43:59;6305:3;-1:-1:-1;;;;;6284:43:59;6294:9;-1:-1:-1;;;;;6284:43:59;;6319:7;6284:43;;;;15031:25:84;;15019:2;15004:18;;14986:76;6284:43:59;;;;;;;;6020:314;5938:396;;;:::o;3140:706:6:-;3559:23;3585:69;3613:4;3585:69;;;;;;;;;;;;;;;;;3593:5;-1:-1:-1;;;;;3585:27:6;;;:69;;;;;:::i;:::-;3668:17;;3559:95;;-1:-1:-1;3668:21:6;3664:176;;3763:10;3752:30;;;;;;;;;;;;:::i;:::-;3744:85;;;;-1:-1:-1;;;3744:85:6;;13598:2:84;3744:85:6;;;13580:21:84;13637:2;13617:18;;;13610:30;13676:34;13656:18;;;13649:62;13747:12;13727:18;;;13720:40;13777:19;;3744:85:6;13570:232:84;12093:259:59;12207:10;;12169:4;;-1:-1:-1;;12232:32:59;;12228:49;;;12273:4;12266:11;;;;;12228:49;12296:6;;:23;;;;;-1:-1:-1;;;;;6180:55:84;;;12296:23:59;;;6162:74:84;12333:11:59;;12322:7;;12296:6;;;:16;;6135:18:84;;12296:23:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;;;;:::i;:::-;:48;;;12093:259;-1:-1:-1;;;;12093:259:59:o;845:241:6:-;1010:68;;-1:-1:-1;;;;;6860:15:84;;;1010:68:6;;;6842:34:84;6912:15;;6892:18;;;6885:43;6944:18;;;6937:34;;;983:96:6;;1003:5;;1033:27;;6754:18:84;;1010:68:6;6736:241:84;3461:223:11;3594:12;3625:52;3647:6;3655:4;3661:1;3664:12;3625:21;:52::i;:::-;3618:59;3461:223;-1:-1:-1;;;;3461:223:11:o;4548:499::-;4713:12;4770:5;4745:21;:30;;4737:81;;;;-1:-1:-1;;;4737:81:11;;10638:2:84;4737:81:11;;;10620:21:84;10677:2;10657:18;;;10650:30;10716:34;10696:18;;;10689:62;10787:8;10767:18;;;10760:36;10813:19;;4737:81:11;10610:228:84;4737:81:11;1034:20;;4828:60;;;;-1:-1:-1;;;4828:60:11;;12834:2:84;4828:60:11;;;12816:21:84;12873:2;12853:18;;;12846:30;12912:31;12892:18;;;12885:59;12961:18;;4828:60:11;12806:179:84;4828:60:11;4900:12;4914:23;4941:6;-1:-1:-1;;;;;4941:11:11;4960:5;4967:4;4941:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4899:73;;;;4989:51;5006:7;5015:10;5027:12;4989:16;:51::i;:::-;4982:58;4548:499;-1:-1:-1;;;;;;;4548:499:11:o;7161:692::-;7307:12;7335:7;7331:516;;;-1:-1:-1;7365:10:11;7358:17;;7331:516;7476:17;;:21;7472:365;;7670:10;7664:17;7730:15;7717:10;7713:2;7709:19;7702:44;7472:365;7809:12;7802:20;;-1:-1:-1;;;7802:20:11;;;;;;;;:::i;14:247:84:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;200:31;225:5;200:31;:::i;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:2;;;405:1;402;395:12;357:2;437:9;431:16;456:31;481:5;456:31;:::i;522:891::-;626:6;634;642;650;703:2;691:9;682:7;678:23;674:32;671:2;;;719:1;716;709:12;671:2;758:9;745:23;777:31;802:5;777:31;:::i;:::-;827:5;-1:-1:-1;884:2:84;869:18;;856:32;897:33;856:32;897:33;:::i;:::-;949:7;-1:-1:-1;1007:2:84;992:18;;979:32;1030:18;1060:14;;;1057:2;;;1087:1;1084;1077:12;1057:2;1125:6;1114:9;1110:22;1100:32;;1170:7;1163:4;1159:2;1155:13;1151:27;1141:2;;1192:1;1189;1182:12;1141:2;1232;1219:16;1258:2;1250:6;1247:14;1244:2;;;1274:1;1271;1264:12;1244:2;1327:7;1322:2;1312:6;1309:1;1305:14;1301:2;1297:23;1293:32;1290:45;1287:2;;;1348:1;1345;1338:12;1287:2;661:752;;;;-1:-1:-1;;1379:2:84;1371:11;;-1:-1:-1;;;661:752:84:o;1418:456::-;1495:6;1503;1511;1564:2;1552:9;1543:7;1539:23;1535:32;1532:2;;;1580:1;1577;1570:12;1532:2;1619:9;1606:23;1638:31;1663:5;1638:31;:::i;:::-;1688:5;-1:-1:-1;1745:2:84;1730:18;;1717:32;1758:33;1717:32;1758:33;:::i;:::-;1522:352;;1810:7;;-1:-1:-1;;;1864:2:84;1849:18;;;;1836:32;;1522:352::o;1879:936::-;1976:6;1984;1992;2000;2008;2061:3;2049:9;2040:7;2036:23;2032:33;2029:2;;;2078:1;2075;2068:12;2029:2;2117:9;2104:23;2136:31;2161:5;2136:31;:::i;:::-;2186:5;-1:-1:-1;2243:2:84;2228:18;;2215:32;2256:33;2215:32;2256:33;:::i;:::-;2308:7;-1:-1:-1;2362:2:84;2347:18;;2334:32;;-1:-1:-1;2417:2:84;2402:18;;2389:32;2440:18;2470:14;;;2467:2;;;2497:1;2494;2487:12;2467:2;2535:6;2524:9;2520:22;2510:32;;2580:7;2573:4;2569:2;2565:13;2561:27;2551:2;;2602:1;2599;2592:12;2551:2;2642;2629:16;2668:2;2660:6;2657:14;2654:2;;;2684:1;2681;2674:12;2654:2;2729:7;2724:2;2715:6;2711:2;2707:15;2703:24;2700:37;2697:2;;;2750:1;2747;2740:12;2697:2;2019:796;;;;-1:-1:-1;2019:796:84;;-1:-1:-1;2781:2:84;2773:11;;2803:6;2019:796;-1:-1:-1;;;2019:796:84:o;2820:315::-;2888:6;2896;2949:2;2937:9;2928:7;2924:23;2920:32;2917:2;;;2965:1;2962;2955:12;2917:2;3004:9;2991:23;3023:31;3048:5;3023:31;:::i;:::-;3073:5;3125:2;3110:18;;;;3097:32;;-1:-1:-1;;;2907:228:84:o;3140:456::-;3217:6;3225;3233;3286:2;3274:9;3265:7;3261:23;3257:32;3254:2;;;3302:1;3299;3292:12;3254:2;3341:9;3328:23;3360:31;3385:5;3360:31;:::i;:::-;3410:5;-1:-1:-1;3462:2:84;3447:18;;3434:32;;-1:-1:-1;3518:2:84;3503:18;;3490:32;3531:33;3490:32;3531:33;:::i;:::-;3583:7;3573:17;;;3244:352;;;;;:::o;4079:277::-;4146:6;4199:2;4187:9;4178:7;4174:23;4170:32;4167:2;;;4215:1;4212;4205:12;4167:2;4247:9;4241:16;4300:5;4293:13;4286:21;4279:5;4276:32;4266:2;;4322:1;4319;4312:12;4361:407;4448:6;4456;4509:2;4497:9;4488:7;4484:23;4480:32;4477:2;;;4525:1;4522;4515:12;4477:2;4564:9;4551:23;4583:31;4608:5;4583:31;:::i;:::-;4633:5;-1:-1:-1;4690:2:84;4675:18;;4662:32;4703:33;4662:32;4703:33;:::i;:::-;4755:7;4745:17;;;4467:301;;;;;:::o;5042:180::-;5101:6;5154:2;5142:9;5133:7;5129:23;5125:32;5122:2;;;5170:1;5167;5160:12;5122:2;-1:-1:-1;5193:23:84;;5112:110;-1:-1:-1;5112:110:84:o;5227:184::-;5297:6;5350:2;5338:9;5329:7;5325:23;5321:32;5318:2;;;5366:1;5363;5356:12;5318:2;-1:-1:-1;5389:16:84;;5308:103;-1:-1:-1;5308:103:84:o;5416:316::-;5457:3;5495:5;5489:12;5522:6;5517:3;5510:19;5538:63;5594:6;5587:4;5582:3;5578:14;5571:4;5564:5;5560:16;5538:63;:::i;:::-;5646:2;5634:15;-1:-1:-1;;5630:88:84;5621:98;;;;5721:4;5617:109;;5465:267;-1:-1:-1;;5465:267:84:o;5737:274::-;5866:3;5904:6;5898:13;5920:53;5966:6;5961:3;5954:4;5946:6;5942:17;5920:53;:::i;:::-;5989:16;;;;;5874:137;-1:-1:-1;;5874:137:84:o;7284:632::-;7455:2;7507:21;;;7577:13;;7480:18;;;7599:22;;;7426:4;;7455:2;7678:15;;;;7652:2;7637:18;;;7426:4;7721:169;7735:6;7732:1;7729:13;7721:169;;;7796:13;;7784:26;;7865:15;;;;7830:12;;;;7757:1;7750:9;7721:169;;;-1:-1:-1;7907:3:84;;7435:481;-1:-1:-1;;;;;;7435:481:84:o;8366:217::-;8513:2;8502:9;8495:21;8476:4;8533:44;8573:2;8562:9;8558:18;8550:6;8533:44;:::i;15622:128::-;15662:3;15693:1;15689:6;15686:1;15683:13;15680:2;;;15699:18;;:::i;:::-;-1:-1:-1;15735:9:84;;15670:80::o;15755:125::-;15795:4;15823:1;15820;15817:8;15814:2;;;15828:18;;:::i;:::-;-1:-1:-1;15865:9:84;;15804:76::o;15885:258::-;15957:1;15967:113;15981:6;15978:1;15975:13;15967:113;;;16057:11;;;16051:18;16038:11;;;16031:39;16003:2;15996:10;15967:113;;;16098:6;16095:1;16092:13;16089:2;;;-1:-1:-1;;16133:1:84;16115:16;;16108:27;15938:205::o;16148:195::-;16187:3;-1:-1:-1;;16211:5:84;16208:77;16205:2;;;16288:18;;:::i;:::-;-1:-1:-1;16335:1:84;16324:13;;16195:148::o;16348:184::-;-1:-1:-1;;;16397:1:84;16390:88;16497:4;16494:1;16487:15;16521:4;16518:1;16511:15;16537:184;-1:-1:-1;;;16586:1:84;16579:88;16686:4;16683:1;16676:15;16710:4;16707:1;16700:15;16726:184;-1:-1:-1;;;16775:1:84;16768:88;16875:4;16872:1;16865:15;16899:4;16896:1;16889:15;16915:154;-1:-1:-1;;;;;16994:5:84;16990:54;16983:5;16980:65;16970:2;;17059:1;17056;17049:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1947000",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "VERSION()": "infinite",
                "award(address,uint256)": "infinite",
                "awardBalance()": "2371",
                "awardExternalERC20(address,address,uint256)": "infinite",
                "awardExternalERC721(address,address,uint256[])": "infinite",
                "balance()": "infinite",
                "canAwardExternal(address)": "infinite",
                "captureAwardBalance()": "infinite",
                "claimOwnership()": "54531",
                "compLikeDelegate(address,address)": "infinite",
                "currentTime()": "2374",
                "depositTo(address,uint256)": "infinite",
                "depositToAndDelegate(address,uint256,address)": "infinite",
                "getAccountedBalance()": "infinite",
                "getBalanceCap()": "2317",
                "getLiquidityCap()": "2348",
                "getPrizeStrategy()": "2420",
                "getTicket()": "2399",
                "getToken()": "infinite",
                "internalCurrentTime()": "269",
                "isControlled(address)": "2634",
                "mint(address,uint256,address)": "infinite",
                "onERC721Received(address,address,uint256,bytes)": "infinite",
                "owner()": "2421",
                "pendingOwner()": "2398",
                "redeem(uint256)": "infinite",
                "renounceOwnership()": "28224",
                "setBalanceCap(uint256)": "25753",
                "setCurrentAwardBalance(uint256)": "22380",
                "setCurrentTime(uint256)": "22402",
                "setLiquidityCap(uint256)": "25649",
                "setPrizeStrategy(address)": "infinite",
                "setTicket(address)": "53399",
                "stubYieldSource()": "2449",
                "supply(uint256)": "infinite",
                "transferExternalERC20(address,address,uint256)": "infinite",
                "transferOwnership(address)": "27966",
                "withdrawFrom(address,uint256)": "infinite"
              },
              "internal": {
                "_balance()": "infinite",
                "_canAwardExternal(address)": "infinite",
                "_currentTime()": "infinite",
                "_redeem(uint256)": "infinite",
                "_supply(uint256)": "infinite",
                "_token()": "infinite"
              }
            },
            "methodIdentifiers": {
              "VERSION()": "ffa1ad74",
              "award(address,uint256)": "5d8a776e",
              "awardBalance()": "630665b4",
              "awardExternalERC20(address,address,uint256)": "2b0ab144",
              "awardExternalERC721(address,address,uint256[])": "16960d55",
              "balance()": "b69ef8a8",
              "canAwardExternal(address)": "6a3fd4f9",
              "captureAwardBalance()": "e6d8a94b",
              "claimOwnership()": "4e71e0c8",
              "compLikeDelegate(address,address)": "2f7627e3",
              "currentTime()": "d18e81b3",
              "depositTo(address,uint256)": "ffaad6a5",
              "depositToAndDelegate(address,uint256,address)": "d7a169eb",
              "getAccountedBalance()": "33e5761f",
              "getBalanceCap()": "08234319",
              "getLiquidityCap()": "b15a49c1",
              "getPrizeStrategy()": "d804abaf",
              "getTicket()": "c002c4d6",
              "getToken()": "21df0da7",
              "internalCurrentTime()": "b38f5b6d",
              "isControlled(address)": "78b3d327",
              "mint(address,uint256,address)": "0d4d1513",
              "onERC721Received(address,address,uint256,bytes)": "150b7a02",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "redeem(uint256)": "db006a75",
              "renounceOwnership()": "715018a6",
              "setBalanceCap(uint256)": "aec9c307",
              "setCurrentAwardBalance(uint256)": "84449464",
              "setCurrentTime(uint256)": "22f8e566",
              "setLiquidityCap(uint256)": "7b99adb1",
              "setPrizeStrategy(address)": "91ca480e",
              "setTicket(address)": "1c65c78b",
              "stubYieldSource()": "5a3f111c",
              "supply(uint256)": "35403023",
              "transferExternalERC20(address,address,uint256)": "13f55e39",
              "transferOwnership(address)": "f2fde38b",
              "withdrawFrom(address,uint256)": "9470b0bd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract YieldSourceStub\",\"name\":\"_stubYieldSource\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardCaptured\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Awarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardedExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"AwardedExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"balanceCap\",\"type\":\"uint256\"}],\"name\":\"BalanceCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"ControlledTokenAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Deposited\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"error\",\"type\":\"bytes\"}],\"name\":\"ErrorAwardingExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidityCap\",\"type\":\"uint256\"}],\"name\":\"LiquidityCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"prizeStrategy\",\"type\":\"address\"}],\"name\":\"PrizeStrategySet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"}],\"name\":\"TicketSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"TransferredExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"redeemed\",\"type\":\"uint256\"}],\"name\":\"Withdrawal\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"award\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"awardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"awardExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"_tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"awardExternalERC721\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"balance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"}],\"name\":\"canAwardExternal\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"captureAwardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ICompLike\",\"name\":\"_compLike\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"}],\"name\":\"compLikeDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currentTime\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"depositTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_delegate\",\"type\":\"address\"}],\"name\":\"depositToAndDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAccountedBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBalanceCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLiquidityCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeStrategy\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getTicket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"internalCurrentTime\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_controlledToken\",\"type\":\"address\"}],\"name\":\"isControlled\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"contract ITicket\",\"name\":\"_controlledToken\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"redeemAmount\",\"type\":\"uint256\"}],\"name\":\"redeem\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_balanceCap\",\"type\":\"uint256\"}],\"name\":\"setBalanceCap\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"setCurrentAwardBalance\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_nowTime\",\"type\":\"uint256\"}],\"name\":\"setCurrentTime\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_liquidityCap\",\"type\":\"uint256\"}],\"name\":\"setLiquidityCap\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_prizeStrategy\",\"type\":\"address\"}],\"name\":\"setPrizeStrategy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_ticket\",\"type\":\"address\"}],\"name\":\"setTicket\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"stubYieldSource\",\"outputs\":[{\"internalType\":\"contract YieldSourceStub\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"mintAmount\",\"type\":\"uint256\"}],\"name\":\"supply\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"transferExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFrom\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"award(address,uint256)\":{\"details\":\"The amount awarded must be less than the awardBalance()\",\"params\":{\"amount\":\"The amount of assets to be awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardBalance()\":{\"details\":\"captureAwardBalance() should be called first\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"awardExternalERC20(address,address,uint256)\":{\"details\":\"Used to award any arbitrary tokens held by the Prize Pool\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardExternalERC721(address,address,uint256[])\":{\"details\":\"Used to award any arbitrary NFTs held by the Prize Pool\",\"params\":{\"externalToken\":\"The address of the external NFT token being awarded\",\"to\":\"The address of the winner that receives the award\",\"tokenIds\":\"An array of NFT Token IDs to be transferred\"}},\"balance()\":{\"returns\":{\"_0\":\"The underlying balance of assets\"}},\"canAwardExternal(address)\":{\"details\":\"Checks with the Prize Pool if a specific token type may be awarded as an external prize\",\"params\":{\"externalToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token may be awarded, false otherwise\"}},\"captureAwardBalance()\":{\"details\":\"This function also captures the reserve fees.\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"compLikeDelegate(address,address)\":{\"params\":{\"compLike\":\"The COMP-like token held by the prize pool that should be delegated\",\"to\":\"The address to delegate to\"}},\"depositTo(address,uint256)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"to\":\"The address receiving the newly minted tokens\"}},\"depositToAndDelegate(address,uint256,address)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"delegate\":\"The address to delegate to for the caller\",\"to\":\"The address receiving the newly minted tokens\"}},\"getAccountedBalance()\":{\"returns\":{\"_0\":\"uint256 accountBalance\"}},\"isControlled(address)\":{\"details\":\"Checks if a specific token is controlled by the Prize Pool\",\"params\":{\"controlledToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token is a controlled token, false otherwise\"}},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\"},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setBalanceCap(uint256)\":{\"details\":\"If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.\",\"params\":{\"balanceCap\":\"New balance cap.\"},\"returns\":{\"_0\":\"True if new balance cap has been successfully set.\"}},\"setLiquidityCap(uint256)\":{\"params\":{\"liquidityCap\":\"The new liquidity cap for the prize pool\"}},\"setPrizeStrategy(address)\":{\"params\":{\"_prizeStrategy\":\"The new prize strategy.\"}},\"setTicket(address)\":{\"params\":{\"ticket\":\"Address of the ticket to set.\"},\"returns\":{\"_0\":\"True if ticket has been successfully set.\"}},\"transferExternalERC20(address,address,uint256)\":{\"details\":\"Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}},\"withdrawFrom(address,uint256)\":{\"params\":{\"amount\":\"The amount of tokens to redeem for assets.\",\"from\":\"The address to redeem tokens from.\"},\"returns\":{\"_0\":\"The actual amount withdrawn\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"VERSION()\":{\"notice\":\"Semver Version\"},\"award(address,uint256)\":{\"notice\":\"Called by the prize strategy to award prizes.\"},\"awardBalance()\":{\"notice\":\"Returns the balance that is available to award.\"},\"awardExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to award external ERC20 prizes\"},\"awardExternalERC721(address,address,uint256[])\":{\"notice\":\"Called by the prize strategy to award external ERC721 prizes\"},\"captureAwardBalance()\":{\"notice\":\"Captures any available interest as award balance.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"compLikeDelegate(address,address)\":{\"notice\":\"Delegate the votes for a Compound COMP-like token held by the prize pool\"},\"depositTo(address,uint256)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens\"},\"depositToAndDelegate(address,uint256,address)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller.\"},\"getAccountedBalance()\":{\"notice\":\"Read internal Ticket accounted balance.\"},\"getBalanceCap()\":{\"notice\":\"Read internal balanceCap variable\"},\"getLiquidityCap()\":{\"notice\":\"Read internal liquidityCap variable\"},\"getPrizeStrategy()\":{\"notice\":\"Read prizeStrategy variable\"},\"getTicket()\":{\"notice\":\"Read ticket variable\"},\"getToken()\":{\"notice\":\"Read token variable\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setBalanceCap(uint256)\":{\"notice\":\"Allows the owner to set a balance cap per `token` for the pool.\"},\"setLiquidityCap(uint256)\":{\"notice\":\"Allows the Governor to set a cap on the amount of liquidity that he pool can hold\"},\"setPrizeStrategy(address)\":{\"notice\":\"Sets the prize strategy of the prize pool.  Only callable by the owner.\"},\"setTicket(address)\":{\"notice\":\"Set prize pool ticket.\"},\"transferExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to transfer out external ERC20 tokens\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"},\"withdrawFrom(address,uint256)\":{\"notice\":\"Withdraw assets from the Prize Pool instantly.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/PrizePoolHarness.sol\":\"PrizePoolHarness\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Contract module that helps prevent reentrant calls to a function.\\n *\\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\\n * available, which can be applied to functions to make sure there are no nested\\n * (reentrant) calls to them.\\n *\\n * Note that because there is a single `nonReentrant` guard, functions marked as\\n * `nonReentrant` may not call one another. This can be worked around by making\\n * those functions `private`, and then adding `external` `nonReentrant` entry\\n * points to them.\\n *\\n * TIP: If you would like to learn more about reentrancy and alternative ways\\n * to protect against it, check out our blog post\\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\\n */\\nabstract contract ReentrancyGuard {\\n    // Booleans are more expensive than uint256 or any type that takes up a full\\n    // word because each write operation emits an extra SLOAD to first read the\\n    // slot's contents, replace the bits taken up by the boolean, and then write\\n    // back. This is the compiler's defense against contract upgrades and\\n    // pointer aliasing, and it cannot be disabled.\\n\\n    // The values being non-zero value makes deployment a bit more expensive,\\n    // but in exchange the refund on every call to nonReentrant will be lower in\\n    // amount. Since refunds are capped to a percentage of the total\\n    // transaction's gas, it is best to keep them low in cases like this one, to\\n    // increase the likelihood of the full refund coming into effect.\\n    uint256 private constant _NOT_ENTERED = 1;\\n    uint256 private constant _ENTERED = 2;\\n\\n    uint256 private _status;\\n\\n    constructor() {\\n        _status = _NOT_ENTERED;\\n    }\\n\\n    /**\\n     * @dev Prevents a contract from calling itself, directly or indirectly.\\n     * Calling a `nonReentrant` function from another `nonReentrant`\\n     * function is not supported. It is possible to prevent this from happening\\n     * by making the `nonReentrant` function external, and make it call a\\n     * `private` function that does the actual work.\\n     */\\n    modifier nonReentrant() {\\n        // On the first call to nonReentrant, _notEntered will be true\\n        require(_status != _ENTERED, \\\"ReentrancyGuard: reentrant call\\\");\\n\\n        // Any calls to nonReentrant after this point will fail\\n        _status = _ENTERED;\\n\\n        _;\\n\\n        // By storing the original value once again, a refund is triggered (see\\n        // https://eips.ethereum.org/EIPS/eip-2200)\\n        _status = _NOT_ENTERED;\\n    }\\n}\\n\",\"keccak256\":\"0x842ccf9a6cd33e17b7acef8372ca42090755217b358fe0c44c98e951ea549d3a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../../utils/introspection/IERC165.sol\\\";\\n\\n/**\\n * @dev Required interface of an ERC721 compliant contract.\\n */\\ninterface IERC721 is IERC165 {\\n    /**\\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\\n     */\\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\\n     */\\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\\n\\n    /**\\n     * @dev Returns the number of tokens in ``owner``'s account.\\n     */\\n    function balanceOf(address owner) external view returns (uint256 balance);\\n\\n    /**\\n     * @dev Returns the owner of the `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function ownerOf(uint256 tokenId) external view returns (address owner);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Transfers `tokenId` token from `from` to `to`.\\n     *\\n     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\\n     * The approval is cleared when the token is transferred.\\n     *\\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\\n     *\\n     * Requirements:\\n     *\\n     * - The caller must own the token or be an approved operator.\\n     * - `tokenId` must exist.\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address to, uint256 tokenId) external;\\n\\n    /**\\n     * @dev Returns the account approved for `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function getApproved(uint256 tokenId) external view returns (address operator);\\n\\n    /**\\n     * @dev Approve or remove `operator` as an operator for the caller.\\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\\n     *\\n     * Requirements:\\n     *\\n     * - The `operator` cannot be the caller.\\n     *\\n     * Emits an {ApprovalForAll} event.\\n     */\\n    function setApprovalForAll(address operator, bool _approved) external;\\n\\n    /**\\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\\n     *\\n     * See {setApprovalForAll}\\n     */\\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external;\\n}\\n\",\"keccak256\":\"0xf101e8720213560fab41104d53b3cc7ba0456ef3a98455aa7f022391783144a0\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title ERC721 token receiver interface\\n * @dev Interface for any contract that wants to support safeTransfers\\n * from ERC721 asset contracts.\\n */\\ninterface IERC721Receiver {\\n    /**\\n     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\\n     * by `operator` from `from`, this function is called.\\n     *\\n     * It must return its Solidity selector to confirm the token transfer.\\n     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\\n     *\\n     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\\n     */\\n    function onERC721Received(\\n        address operator,\\n        address from,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external returns (bytes4);\\n}\\n\",\"keccak256\":\"0xd9517254724276e2e8de3769183c1f738f445f0095c26fd9b86d3c6687e887b9\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC165.sol\\\";\\n\\n/**\\n * @dev Library used to query support of an interface declared via {IERC165}.\\n *\\n * Note that these functions return the actual result of the query: they do not\\n * `revert` if an interface is not supported. It is up to the caller to decide\\n * what to do in these cases.\\n */\\nlibrary ERC165Checker {\\n    // As per the EIP-165 spec, no interface should ever match 0xffffffff\\n    bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;\\n\\n    /**\\n     * @dev Returns true if `account` supports the {IERC165} interface,\\n     */\\n    function supportsERC165(address account) internal view returns (bool) {\\n        // Any contract that implements ERC165 must explicitly indicate support of\\n        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid\\n        return\\n            _supportsERC165Interface(account, type(IERC165).interfaceId) &&\\n            !_supportsERC165Interface(account, _INTERFACE_ID_INVALID);\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports the interface defined by\\n     * `interfaceId`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {\\n        // query support of both ERC165 as per the spec and support of _interfaceId\\n        return supportsERC165(account) && _supportsERC165Interface(account, interfaceId);\\n    }\\n\\n    /**\\n     * @dev Returns a boolean array where each value corresponds to the\\n     * interfaces passed in and whether they're supported or not. This allows\\n     * you to batch check interfaces for a contract where your expectation\\n     * is that some interfaces may not be supported.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function getSupportedInterfaces(address account, bytes4[] memory interfaceIds)\\n        internal\\n        view\\n        returns (bool[] memory)\\n    {\\n        // an array of booleans corresponding to interfaceIds and whether they're supported or not\\n        bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);\\n\\n        // query support of ERC165 itself\\n        if (supportsERC165(account)) {\\n            // query support of each interface in interfaceIds\\n            for (uint256 i = 0; i < interfaceIds.length; i++) {\\n                interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]);\\n            }\\n        }\\n\\n        return interfaceIdsSupported;\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports all the interfaces defined in\\n     * `interfaceIds`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * Batch-querying can lead to gas savings by skipping repeated checks for\\n     * {IERC165} support.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {\\n        // query support of ERC165 itself\\n        if (!supportsERC165(account)) {\\n            return false;\\n        }\\n\\n        // query support of each interface in _interfaceIds\\n        for (uint256 i = 0; i < interfaceIds.length; i++) {\\n            if (!_supportsERC165Interface(account, interfaceIds[i])) {\\n                return false;\\n            }\\n        }\\n\\n        // all interfaces supported\\n        return true;\\n    }\\n\\n    /**\\n     * @notice Query if a contract implements an interface, does not check ERC165 support\\n     * @param account The address of the contract to query for support of an interface\\n     * @param interfaceId The interface identifier, as specified in ERC-165\\n     * @return true if the contract at account indicates support of the interface with\\n     * identifier interfaceId, false otherwise\\n     * @dev Assumes that account contains a contract that supports ERC165, otherwise\\n     * the behavior of this method is undefined. This precondition can be checked\\n     * with {supportsERC165}.\\n     * Interface identification is specified in ERC-165.\\n     */\\n    function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {\\n        bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId);\\n        (bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams);\\n        if (result.length < 32) return false;\\n        return success && abi.decode(result, (bool));\\n    }\\n}\\n\",\"keccak256\":\"0xaf583f9537cf446d08c33909e52313d349a831f6b88f20361b76474e40b4c36f\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.\\n/// @notice Prize Pools subclasses need to implement this interface so that yield can be generated.\\ninterface IYieldSource {\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token address.\\n    function depositToken() external view returns (address);\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens.\\n    function balanceOfToken(address addr) external returns (uint256);\\n\\n    /// @notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\\n    /// @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\\n    /// @param to The user whose balance will receive the tokens\\n    function supplyTokenTo(uint256 amount, address to) external;\\n\\n    /// @notice Redeems tokens from the yield source.\\n    /// @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\\n    /// @return The actual amount of interst bearing tokens that were redeemed.\\n    function redeemToken(uint256 amount) external returns (uint256);\\n}\\n\",\"keccak256\":\"0x659c59f7b0a4cac6ce4c46a8ccec1d8d7ab14aa08451c0d521804fec9ccc95f1\",\"license\":\"GPL-3.0\"},\"contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"},\"contracts/prize-pool/PrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\nimport \\\"@openzeppelin/contracts/security/ReentrancyGuard.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC721/IERC721.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\\\";\\nimport \\\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/IPrizePool.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizePool\\n  * @author PoolTogether Inc Team\\n  * @notice Escrows assets and deposits them into a yield source.  Exposes interest to Prize Strategy.\\n            Users deposit and withdraw from this contract to participate in Prize Pool.\\n            Accounting is managed using Controlled Tokens, whose mint and burn functions can only be called by this contract.\\n            Must be inherited to provide specific yield-bearing asset control, such as Compound cTokens\\n*/\\nabstract contract PrizePool is IPrizePool, Ownable, ReentrancyGuard, IERC721Receiver {\\n    using SafeCast for uint256;\\n    using SafeERC20 for IERC20;\\n    using ERC165Checker for address;\\n\\n    /// @notice Semver Version\\n    string public constant VERSION = \\\"4.0.0\\\";\\n\\n    /// @notice Prize Pool ticket. Can only be set once by calling `setTicket()`.\\n    ITicket internal ticket;\\n\\n    /// @notice The Prize Strategy that this Prize Pool is bound to.\\n    address internal prizeStrategy;\\n\\n    /// @notice The total amount of tickets a user can hold.\\n    uint256 internal balanceCap;\\n\\n    /// @notice The total amount of funds that the prize pool can hold.\\n    uint256 internal liquidityCap;\\n\\n    /// @notice the The awardable balance\\n    uint256 internal _currentAwardBalance;\\n\\n    /* ============ Modifiers ============ */\\n\\n    /// @dev Function modifier to ensure caller is the prize-strategy\\n    modifier onlyPrizeStrategy() {\\n        require(msg.sender == prizeStrategy, \\\"PrizePool/only-prizeStrategy\\\");\\n        _;\\n    }\\n\\n    /// @dev Function modifier to ensure the deposit amount does not exceed the liquidity cap (if set)\\n    modifier canAddLiquidity(uint256 _amount) {\\n        require(_canAddLiquidity(_amount), \\\"PrizePool/exceeds-liquidity-cap\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /// @notice Deploy the Prize Pool\\n    /// @param _owner Address of the Prize Pool owner\\n    constructor(address _owner) Ownable(_owner) ReentrancyGuard() {\\n        _setLiquidityCap(type(uint256).max);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizePool\\n    function balance() external override returns (uint256) {\\n        return _balance();\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardBalance() external view override returns (uint256) {\\n        return _currentAwardBalance;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function canAwardExternal(address _externalToken) external view override returns (bool) {\\n        return _canAwardExternal(_externalToken);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function isControlled(ITicket _controlledToken) external view override returns (bool) {\\n        return _isControlled(_controlledToken);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getAccountedBalance() external view override returns (uint256) {\\n        return _ticketTotalSupply();\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getBalanceCap() external view override returns (uint256) {\\n        return balanceCap;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getLiquidityCap() external view override returns (uint256) {\\n        return liquidityCap;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getTicket() external view override returns (ITicket) {\\n        return ticket;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getPrizeStrategy() external view override returns (address) {\\n        return prizeStrategy;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getToken() external view override returns (address) {\\n        return address(_token());\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function captureAwardBalance() external override nonReentrant returns (uint256) {\\n        uint256 ticketTotalSupply = _ticketTotalSupply();\\n        uint256 currentAwardBalance = _currentAwardBalance;\\n\\n        // it's possible for the balance to be slightly less due to rounding errors in the underlying yield source\\n        uint256 currentBalance = _balance();\\n        uint256 totalInterest = (currentBalance > ticketTotalSupply)\\n            ? currentBalance - ticketTotalSupply\\n            : 0;\\n\\n        uint256 unaccountedPrizeBalance = (totalInterest > currentAwardBalance)\\n            ? totalInterest - currentAwardBalance\\n            : 0;\\n\\n        if (unaccountedPrizeBalance > 0) {\\n            currentAwardBalance = totalInterest;\\n            _currentAwardBalance = currentAwardBalance;\\n\\n            emit AwardCaptured(unaccountedPrizeBalance);\\n        }\\n\\n        return currentAwardBalance;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function depositTo(address _to, uint256 _amount)\\n        external\\n        override\\n        nonReentrant\\n        canAddLiquidity(_amount)\\n    {\\n        _depositTo(msg.sender, _to, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function depositToAndDelegate(address _to, uint256 _amount, address _delegate)\\n        external\\n        override\\n        nonReentrant\\n        canAddLiquidity(_amount)\\n    {\\n        _depositTo(msg.sender, _to, _amount);\\n        ticket.controllerDelegateFor(msg.sender, _delegate);\\n    }\\n\\n    /// @notice Transfers tokens in from one user and mints tickets to another\\n    /// @notice _operator The user to transfer tokens from\\n    /// @notice _to The user to mint tickets to\\n    /// @notice _amount The amount to transfer and mint\\n    function _depositTo(address _operator, address _to, uint256 _amount) internal\\n    {\\n        require(_canDeposit(_to, _amount), \\\"PrizePool/exceeds-balance-cap\\\");\\n\\n        ITicket _ticket = ticket;\\n\\n        _token().safeTransferFrom(_operator, address(this), _amount);\\n\\n        _mint(_to, _amount, _ticket);\\n        _supply(_amount);\\n\\n        emit Deposited(_operator, _to, _ticket, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function withdrawFrom(address _from, uint256 _amount)\\n        external\\n        override\\n        nonReentrant\\n        returns (uint256)\\n    {\\n        ITicket _ticket = ticket;\\n\\n        // burn the tickets\\n        _ticket.controllerBurnFrom(msg.sender, _from, _amount);\\n\\n        // redeem the tickets\\n        uint256 _redeemed = _redeem(_amount);\\n\\n        _token().safeTransfer(_from, _redeemed);\\n\\n        emit Withdrawal(msg.sender, _from, _ticket, _amount, _redeemed);\\n\\n        return _redeemed;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function award(address _to, uint256 _amount) external override onlyPrizeStrategy {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        uint256 currentAwardBalance = _currentAwardBalance;\\n\\n        require(_amount <= currentAwardBalance, \\\"PrizePool/award-exceeds-avail\\\");\\n\\n        unchecked {\\n            _currentAwardBalance = currentAwardBalance - _amount;\\n        }\\n\\n        ITicket _ticket = ticket;\\n\\n        _mint(_to, _amount, _ticket);\\n\\n        emit Awarded(_to, _ticket, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function transferExternalERC20(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) external override onlyPrizeStrategy {\\n        if (_transferOut(_to, _externalToken, _amount)) {\\n            emit TransferredExternalERC20(_to, _externalToken, _amount);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardExternalERC20(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) external override onlyPrizeStrategy {\\n        if (_transferOut(_to, _externalToken, _amount)) {\\n            emit AwardedExternalERC20(_to, _externalToken, _amount);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardExternalERC721(\\n        address _to,\\n        address _externalToken,\\n        uint256[] calldata _tokenIds\\n    ) external override onlyPrizeStrategy {\\n        require(_canAwardExternal(_externalToken), \\\"PrizePool/invalid-external-token\\\");\\n\\n        if (_tokenIds.length == 0) {\\n            return;\\n        }\\n\\n        uint256[] memory _awardedTokenIds = new uint256[](_tokenIds.length); \\n        bool hasAwardedTokenIds;\\n\\n        for (uint256 i = 0; i < _tokenIds.length; i++) {\\n            try IERC721(_externalToken).safeTransferFrom(address(this), _to, _tokenIds[i]) {\\n                hasAwardedTokenIds = true;\\n                _awardedTokenIds[i] = _tokenIds[i];\\n            } catch (\\n                bytes memory error\\n            ) {\\n                emit ErrorAwardingExternalERC721(error);\\n            }\\n        }\\n        if (hasAwardedTokenIds) { \\n            emit AwardedExternalERC721(_to, _externalToken, _awardedTokenIds);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setBalanceCap(uint256 _balanceCap) external override onlyOwner returns (bool) {\\n        _setBalanceCap(_balanceCap);\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setLiquidityCap(uint256 _liquidityCap) external override onlyOwner {\\n        _setLiquidityCap(_liquidityCap);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setTicket(ITicket _ticket) external override onlyOwner returns (bool) {\\n        require(address(_ticket) != address(0), \\\"PrizePool/ticket-not-zero-address\\\");\\n        require(address(ticket) == address(0), \\\"PrizePool/ticket-already-set\\\");\\n\\n        ticket = _ticket;\\n\\n        emit TicketSet(_ticket);\\n\\n        _setBalanceCap(type(uint256).max);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setPrizeStrategy(address _prizeStrategy) external override onlyOwner {\\n        _setPrizeStrategy(_prizeStrategy);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function compLikeDelegate(ICompLike _compLike, address _to) external override onlyOwner {\\n        if (_compLike.balanceOf(address(this)) > 0) {\\n            _compLike.delegate(_to);\\n        }\\n    }\\n\\n    /// @inheritdoc IERC721Receiver\\n    function onERC721Received(\\n        address,\\n        address,\\n        uint256,\\n        bytes calldata\\n    ) external pure override returns (bytes4) {\\n        return IERC721Receiver.onERC721Received.selector;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /// @notice Transfer out `amount` of `externalToken` to recipient `to`\\n    /// @dev Only awardable `externalToken` can be transferred out\\n    /// @param _to Recipient address\\n    /// @param _externalToken Address of the external asset token being transferred\\n    /// @param _amount Amount of external assets to be transferred\\n    /// @return True if transfer is successful\\n    function _transferOut(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) internal returns (bool) {\\n        require(_canAwardExternal(_externalToken), \\\"PrizePool/invalid-external-token\\\");\\n\\n        if (_amount == 0) {\\n            return false;\\n        }\\n\\n        IERC20(_externalToken).safeTransfer(_to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @notice Called to mint controlled tokens.  Ensures that token listener callbacks are fired.\\n    /// @param _to The user who is receiving the tokens\\n    /// @param _amount The amount of tokens they are receiving\\n    /// @param _controlledToken The token that is going to be minted\\n    function _mint(\\n        address _to,\\n        uint256 _amount,\\n        ITicket _controlledToken\\n    ) internal {\\n        _controlledToken.controllerMint(_to, _amount);\\n    }\\n\\n    /// @dev Checks if `user` can deposit in the Prize Pool based on the current balance cap.\\n    /// @param _user Address of the user depositing.\\n    /// @param _amount The amount of tokens to be deposited into the Prize Pool.\\n    /// @return True if the Prize Pool can receive the specified `amount` of tokens.\\n    function _canDeposit(address _user, uint256 _amount) internal view returns (bool) {\\n        uint256 _balanceCap = balanceCap;\\n\\n        if (_balanceCap == type(uint256).max) return true;\\n\\n        return (ticket.balanceOf(_user) + _amount <= _balanceCap);\\n    }\\n\\n    /// @dev Checks if the Prize Pool can receive liquidity based on the current cap\\n    /// @param _amount The amount of liquidity to be added to the Prize Pool\\n    /// @return True if the Prize Pool can receive the specified amount of liquidity\\n    function _canAddLiquidity(uint256 _amount) internal view returns (bool) {\\n        uint256 _liquidityCap = liquidityCap;\\n        if (_liquidityCap == type(uint256).max) return true;\\n        return (_ticketTotalSupply() + _amount <= _liquidityCap);\\n    }\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param _controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function _isControlled(ITicket _controlledToken) internal view returns (bool) {\\n        return (ticket == _controlledToken);\\n    }\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @param _balanceCap New balance cap.\\n    function _setBalanceCap(uint256 _balanceCap) internal {\\n        balanceCap = _balanceCap;\\n        emit BalanceCapSet(_balanceCap);\\n    }\\n\\n    /// @notice Allows the owner to set a liquidity cap for the pool\\n    /// @param _liquidityCap New liquidity cap\\n    function _setLiquidityCap(uint256 _liquidityCap) internal {\\n        liquidityCap = _liquidityCap;\\n        emit LiquidityCapSet(_liquidityCap);\\n    }\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy\\n    function _setPrizeStrategy(address _prizeStrategy) internal {\\n        require(_prizeStrategy != address(0), \\\"PrizePool/prizeStrategy-not-zero\\\");\\n\\n        prizeStrategy = _prizeStrategy;\\n\\n        emit PrizeStrategySet(_prizeStrategy);\\n    }\\n\\n    /// @notice The current total of tickets.\\n    /// @return Ticket total supply.\\n    function _ticketTotalSupply() internal view returns (uint256) {\\n        return ticket.totalSupply();\\n    }\\n\\n    /// @dev Gets the current time as represented by the current block\\n    /// @return The timestamp of the current block\\n    function _currentTime() internal view virtual returns (uint256) {\\n        return block.timestamp;\\n    }\\n\\n    /* ============ Abstract Contract Implementatiton ============ */\\n\\n    /// @notice Determines whether the passed token can be transferred out as an external award.\\n    /// @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\\n    /// prize strategy should not be allowed to move those tokens.\\n    /// @param _externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function _canAwardExternal(address _externalToken) internal view virtual returns (bool);\\n\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token\\n    function _token() internal view virtual returns (IERC20);\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens\\n    function _balance() internal virtual returns (uint256);\\n\\n    /// @notice Supplies asset tokens to the yield source.\\n    /// @param _mintAmount The amount of asset tokens to be supplied\\n    function _supply(uint256 _mintAmount) internal virtual;\\n\\n    /// @notice Redeems asset tokens from the yield source.\\n    /// @param _redeemAmount The amount of yield-bearing tokens to be redeemed\\n    /// @return The actual amount of tokens that were redeemed.\\n    function _redeem(uint256 _redeemAmount) internal virtual returns (uint256);\\n}\\n\",\"keccak256\":\"0x7b5a51eb6c75a9a88a6f36c76cbaaab6db5396bacb2c82b3a2aeada33b3ca103\",\"license\":\"GPL-3.0\"},\"contracts/test/PrizePoolHarness.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../prize-pool/PrizePool.sol\\\";\\nimport \\\"./YieldSourceStub.sol\\\";\\n\\ncontract PrizePoolHarness is PrizePool {\\n    uint256 public currentTime;\\n\\n    YieldSourceStub public stubYieldSource;\\n\\n    constructor(address _owner, YieldSourceStub _stubYieldSource) PrizePool(_owner) {\\n        stubYieldSource = _stubYieldSource;\\n    }\\n\\n    function mint(\\n        address _to,\\n        uint256 _amount,\\n        ITicket _controlledToken\\n    ) external {\\n        _mint(_to, _amount, _controlledToken);\\n    }\\n\\n    function supply(uint256 mintAmount) external {\\n        _supply(mintAmount);\\n    }\\n\\n    function redeem(uint256 redeemAmount) external {\\n        _redeem(redeemAmount);\\n    }\\n\\n    function setCurrentTime(uint256 _nowTime) external {\\n        currentTime = _nowTime;\\n    }\\n\\n    function _currentTime() internal view override returns (uint256) {\\n        return currentTime;\\n    }\\n\\n    function internalCurrentTime() external view returns (uint256) {\\n        return super._currentTime();\\n    }\\n\\n    function _canAwardExternal(address _externalToken) internal view override returns (bool) {\\n        return stubYieldSource.canAwardExternal(_externalToken);\\n    }\\n\\n    function _token() internal view override returns (IERC20) {\\n        return IERC20(stubYieldSource.depositToken());\\n    }\\n\\n    function _balance() internal override returns (uint256) {\\n        return stubYieldSource.balanceOfToken(address(this));\\n    }\\n\\n    function _supply(uint256 mintAmount) internal override {\\n        stubYieldSource.supplyTokenTo(mintAmount, address(this));\\n    }\\n\\n    function _redeem(uint256 redeemAmount) internal override returns (uint256) {\\n        return stubYieldSource.redeemToken(redeemAmount);\\n    }\\n\\n    function setCurrentAwardBalance(uint256 amount) external {\\n        _currentAwardBalance = amount;\\n    }\\n}\\n\",\"keccak256\":\"0x9a55d1a4257fedbf429365071c428a0f2d76abb90e2c8ce14a715d6783f7bfe9\",\"license\":\"GPL-3.0\"},\"contracts/test/YieldSourceStub.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\\\";\\n\\ninterface YieldSourceStub is IYieldSource {\\n    function canAwardExternal(address _externalToken) external view returns (bool);\\n}\\n\",\"keccak256\":\"0x0054ee3da4800546615a2b72370967956823fd712d8b3321119b60f747e08cba\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/test/PrizePoolHarness.sol:PrizePoolHarness",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/test/PrizePoolHarness.sol:PrizePoolHarness",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 10,
                "contract": "contracts/test/PrizePoolHarness.sol:PrizePoolHarness",
                "label": "_status",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 13863,
                "contract": "contracts/test/PrizePoolHarness.sol:PrizePoolHarness",
                "label": "ticket",
                "offset": 0,
                "slot": "3",
                "type": "t_contract(ITicket)12213"
              },
              {
                "astId": 13866,
                "contract": "contracts/test/PrizePoolHarness.sol:PrizePoolHarness",
                "label": "prizeStrategy",
                "offset": 0,
                "slot": "4",
                "type": "t_address"
              },
              {
                "astId": 13869,
                "contract": "contracts/test/PrizePoolHarness.sol:PrizePoolHarness",
                "label": "balanceCap",
                "offset": 0,
                "slot": "5",
                "type": "t_uint256"
              },
              {
                "astId": 13872,
                "contract": "contracts/test/PrizePoolHarness.sol:PrizePoolHarness",
                "label": "liquidityCap",
                "offset": 0,
                "slot": "6",
                "type": "t_uint256"
              },
              {
                "astId": 13875,
                "contract": "contracts/test/PrizePoolHarness.sol:PrizePoolHarness",
                "label": "_currentAwardBalance",
                "offset": 0,
                "slot": "7",
                "type": "t_uint256"
              },
              {
                "astId": 16342,
                "contract": "contracts/test/PrizePoolHarness.sol:PrizePoolHarness",
                "label": "currentTime",
                "offset": 0,
                "slot": "8",
                "type": "t_uint256"
              },
              {
                "astId": 16345,
                "contract": "contracts/test/PrizePoolHarness.sol:PrizePoolHarness",
                "label": "stubYieldSource",
                "offset": 0,
                "slot": "9",
                "type": "t_contract(YieldSourceStub)17255"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(ITicket)12213": {
                "encoding": "inplace",
                "label": "contract ITicket",
                "numberOfBytes": "20"
              },
              "t_contract(YieldSourceStub)17255": {
                "encoding": "inplace",
                "label": "contract YieldSourceStub",
                "numberOfBytes": "20"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "VERSION()": {
                "notice": "Semver Version"
              },
              "award(address,uint256)": {
                "notice": "Called by the prize strategy to award prizes."
              },
              "awardBalance()": {
                "notice": "Returns the balance that is available to award."
              },
              "awardExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to award external ERC20 prizes"
              },
              "awardExternalERC721(address,address,uint256[])": {
                "notice": "Called by the prize strategy to award external ERC721 prizes"
              },
              "captureAwardBalance()": {
                "notice": "Captures any available interest as award balance."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "compLikeDelegate(address,address)": {
                "notice": "Delegate the votes for a Compound COMP-like token held by the prize pool"
              },
              "depositTo(address,uint256)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens"
              },
              "depositToAndDelegate(address,uint256,address)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller."
              },
              "getAccountedBalance()": {
                "notice": "Read internal Ticket accounted balance."
              },
              "getBalanceCap()": {
                "notice": "Read internal balanceCap variable"
              },
              "getLiquidityCap()": {
                "notice": "Read internal liquidityCap variable"
              },
              "getPrizeStrategy()": {
                "notice": "Read prizeStrategy variable"
              },
              "getTicket()": {
                "notice": "Read ticket variable"
              },
              "getToken()": {
                "notice": "Read token variable"
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setBalanceCap(uint256)": {
                "notice": "Allows the owner to set a balance cap per `token` for the pool."
              },
              "setLiquidityCap(uint256)": {
                "notice": "Allows the Governor to set a cap on the amount of liquidity that he pool can hold"
              },
              "setPrizeStrategy(address)": {
                "notice": "Sets the prize strategy of the prize pool.  Only callable by the owner."
              },
              "setTicket(address)": {
                "notice": "Set prize pool ticket."
              },
              "transferExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to transfer out external ERC20 tokens"
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              },
              "withdrawFrom(address,uint256)": {
                "notice": "Withdraw assets from the Prize Pool instantly."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/test/PrizeSplitHarness.sol": {
        "PrizeSplitHarness": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "prizeAwarded",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "contract IControlledToken",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "PrizeSplitAwarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "target",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitRemoved",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "target",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint16",
                  "name": "percentage",
                  "type": "uint16"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "ONE_AS_FIXED_POINT_3",
              "outputs": [
                {
                  "internalType": "uint16",
                  "name": "",
                  "type": "uint16"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "target",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "awardPrizeSplitAmount",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizePool",
              "outputs": [
                {
                  "internalType": "contract IPrizePool",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_prizeSplitIndex",
                  "type": "uint256"
                }
              ],
              "name": "getPrizeSplit",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeSplits",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "_prizeSplit",
                  "type": "tuple"
                },
                {
                  "internalType": "uint8",
                  "name": "_prizeSplitIndex",
                  "type": "uint8"
                }
              ],
              "name": "setPrizeSplit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "_newPrizeSplits",
                  "type": "tuple[]"
                }
              ],
              "name": "setPrizeSplits",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "getPrizePool()": {
                "returns": {
                  "_0": "IPrizePool"
                }
              },
              "getPrizeSplit(uint256)": {
                "details": "Read PrizeSplitConfig struct from prizeSplits array.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig"
                },
                "returns": {
                  "_0": "PrizeSplitConfig Single prize split config"
                }
              },
              "getPrizeSplits()": {
                "details": "Read all PrizeSplitConfig structs stored in prizeSplits.",
                "returns": {
                  "_0": "Array of PrizeSplitConfig structs"
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "details": "Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig to update",
                  "prizeStrategySplit": "PrizeSplitConfig config struct"
                }
              },
              "setPrizeSplits((address,uint16)[])": {
                "details": "Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.",
                "params": {
                  "newPrizeSplits": "Array of PrizeSplitConfig structs"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_16527": {
                  "entryPoint": null,
                  "id": 16527,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_3961": {
                  "entryPoint": null,
                  "id": 3961,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 64,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_address_fromMemory": {
                  "entryPoint": 144,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:306:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "95:209:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "141:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "150:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "153:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "143:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "143:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "143:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "116:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "125:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "112:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "112:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "137:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "108:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "108:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "105:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "166:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "185:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "179:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "179:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "170:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "258:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "267:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "270:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "260:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "260:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "260:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "217:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "228:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "243:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "248:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "239:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "239:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "252:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "235:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "235:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "224:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "224:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "214:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "214:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "207:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "207:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "204:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "283:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "293:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "283:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "61:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "72:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "84:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:290:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b506040516110d83803806110d883398101604081905261002f91610090565b8061003981610040565b50506100c0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100a257600080fd5b81516001600160a01b03811681146100b957600080fd5b9392505050565b611009806100cf6000396000f3fe608060405234801561001057600080fd5b50600436106100d45760003560e01c8063884bf67c11610081578063cf713d6e1161005b578063cf713d6e14610186578063e30c3978146101c1578063f2fde38b146101d257600080fd5b8063884bf67c146101455780638da5cb5b14610160578063cf1e3b591461017157600080fd5b806345a9f187116100b257806345a9f187146101145780634e71e0c814610135578063715018a61461013d57600080fd5b8063056ea84f146100d9578063063a2298146100ee5780631898f91d14610101575b600080fd5b6100ec6100e7366004610ea3565b6101e5565b005b6100ec6100fc366004610e12565b610494565b6100ec61010f366004610de8565b610909565b61011d6103e881565b60405161ffff90911681526020015b60405180910390f35b6100ec610917565b6100ec6109a5565b60005b6040516001600160a01b03909116815260200161012c565b6000546001600160a01b0316610148565b610179610a1a565b60405161012c9190610efa565b610199610194366004610ee1565b610a91565b6040805182516001600160a01b0316815260209283015161ffff16928101929092520161012c565b6001546001600160a01b0316610148565b6100ec6101e0366004610dc6565b610af4565b336101f86000546001600160a01b031690565b6001600160a01b0316146102535760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b60025460ff8216106102cd5760405162461bcd60e51b815260206004820152602160248201527f5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c6960448201527f7400000000000000000000000000000000000000000000000000000000000000606482015260840161024a565b81516001600160a01b03166103495760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161024a565b8160028260ff168154811061036057610360610fbd565b60009182526020808320845192018054949091015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199094166001600160a01b0390921691909117929092179091556103b8610c30565b90506103e88111156104325760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161024a565b82600001516001600160a01b03167f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a3484602001518460405161048792919061ffff92909216825260ff16602082015260400190565b60405180910390a2505050565b336104a76000546001600160a01b031690565b6001600160a01b0316146104fd5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161024a565b8060ff8111156105755760405162461bcd60e51b815260206004820152602560248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c60448201527f656e677468000000000000000000000000000000000000000000000000000000606482015260840161024a565b60005b818110156107f957600084848381811061059457610594610fbd565b9050604002018036038101906105aa9190610e87565b80519091506001600160a01b03166106295760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161024a565b60025482106106ae576002805460018101825560009190915281517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9091018054602084015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199091166001600160a01b0390931692909217919091179055610794565b6000600283815481106106c3576106c3610fbd565b6000918252602091829020604080518082019091529101546001600160a01b03808216808452600160a01b90920461ffff1693830193909352845191935091161415806107205750806020015161ffff16826020015161ffff1614155b1561078b57816002848154811061073957610739610fbd565b6000918252602091829020835191018054939092015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199093166001600160a01b0390911617919091179055610792565b50506107e7565b505b80516020808301516040805161ffff90921682529181018590526001600160a01b03909216917f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a34910160405180910390a2505b806107f181610f76565b915050610578565b505b60025481101561087f5760028054600019810191908061081d5761081d610fa7565b6000828152602081208201600019908101805475ffffffffffffffffffffffffffffffffffffffffffff1916905590910190915560405182917f99fa473fdf53414bcd014cf6e7509fc58c68f7b86174767faa6ad5100cd5bae591a2506107fb565b6000610889610c30565b90506103e88111156109035760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161024a565b50505050565b6109138282610c92565b5050565b6001546001600160a01b031633146109715760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161024a565b600154610986906001600160a01b0316610cd7565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336109b86000546001600160a01b031690565b6001600160a01b031614610a0e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161024a565b610a186000610cd7565b565b60606002805480602002602001604051908101604052809291908181526020016000905b82821015610a8857600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff1681830152825260019092019101610a3e565b50505050905090565b604080518082019091526000808252602082015260028281548110610ab857610ab8610fbd565b6000918252602091829020604080518082019091529101546001600160a01b0381168252600160a01b900461ffff169181019190915292915050565b33610b076000546001600160a01b031690565b6001600160a01b031614610b5d5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161024a565b6001600160a01b038116610bd95760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161024a565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6002546000908190815b81811015610c8a5760028181548110610c5557610c55610fbd565b600091825260209091200154610c7690600160a01b900461ffff1684610f5e565b925080610c8281610f76565b915050610c3a565b509092915050565b6040518181526000906001600160a01b038416907f40b9722744d0ba62d8b847077d65a712335b6769aa37fff7ad7852ec299222a79060200160405180910390a35050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b0381168114610d4b57600080fd5b919050565b600060408284031215610d6257600080fd5b6040516040810181811067ffffffffffffffff82111715610d9357634e487b7160e01b600052604160045260246000fd5b604052905080610da283610d34565b8152602083013561ffff81168114610db957600080fd5b6020919091015292915050565b600060208284031215610dd857600080fd5b610de182610d34565b9392505050565b60008060408385031215610dfb57600080fd5b610e0483610d34565b946020939093013593505050565b60008060208385031215610e2557600080fd5b823567ffffffffffffffff80821115610e3d57600080fd5b818501915085601f830112610e5157600080fd5b813581811115610e6057600080fd5b8660208260061b8501011115610e7557600080fd5b60209290920196919550909350505050565b600060408284031215610e9957600080fd5b610de18383610d50565b60008060608385031215610eb657600080fd5b610ec08484610d50565b9150604083013560ff81168114610ed657600080fd5b809150509250929050565b600060208284031215610ef357600080fd5b5035919050565b602080825282518282018190526000919060409081850190868401855b82811015610f5157610f4184835180516001600160a01b0316825260209081015161ffff16910152565b9284019290850190600101610f17565b5091979650505050505050565b60008219821115610f7157610f71610f91565b500190565b6000600019821415610f8a57610f8a610f91565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea26469706673582212201dd354c7606ec8e489e5d7d452927deca055d29ee8c587ddf193cee5f529e73b64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x10D8 CODESIZE SUB DUP1 PUSH2 0x10D8 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2F SWAP2 PUSH2 0x90 JUMP JUMPDEST DUP1 PUSH2 0x39 DUP2 PUSH2 0x40 JUMP JUMPDEST POP POP PUSH2 0xC0 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xB9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1009 DUP1 PUSH2 0xCF 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 0xD4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x884BF67C GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xCF713D6E GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xCF713D6E EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1C1 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x884BF67C EQ PUSH2 0x145 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x160 JUMPI DUP1 PUSH4 0xCF1E3B59 EQ PUSH2 0x171 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x45A9F187 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x45A9F187 EQ PUSH2 0x114 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x135 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x13D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x56EA84F EQ PUSH2 0xD9 JUMPI DUP1 PUSH4 0x63A2298 EQ PUSH2 0xEE JUMPI DUP1 PUSH4 0x1898F91D EQ PUSH2 0x101 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEC PUSH2 0xE7 CALLDATASIZE PUSH1 0x4 PUSH2 0xEA3 JUMP JUMPDEST PUSH2 0x1E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xEC PUSH2 0xFC CALLDATASIZE PUSH1 0x4 PUSH2 0xE12 JUMP JUMPDEST PUSH2 0x494 JUMP JUMPDEST PUSH2 0xEC PUSH2 0x10F CALLDATASIZE PUSH1 0x4 PUSH2 0xDE8 JUMP JUMPDEST PUSH2 0x909 JUMP JUMPDEST PUSH2 0x11D PUSH2 0x3E8 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xEC PUSH2 0x917 JUMP JUMPDEST PUSH2 0xEC PUSH2 0x9A5 JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12C JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x148 JUMP JUMPDEST PUSH2 0x179 PUSH2 0xA1A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x12C SWAP2 SWAP1 PUSH2 0xEFA JUMP JUMPDEST PUSH2 0x199 PUSH2 0x194 CALLDATASIZE PUSH1 0x4 PUSH2 0xEE1 JUMP JUMPDEST PUSH2 0xA91 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH2 0xFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x12C JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x148 JUMP JUMPDEST PUSH2 0xEC PUSH2 0x1E0 CALLDATASIZE PUSH1 0x4 PUSH2 0xDC6 JUMP JUMPDEST PUSH2 0xAF4 JUMP JUMPDEST CALLER PUSH2 0x1F8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x253 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH1 0xFF DUP3 AND LT PUSH2 0x2CD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F6E6F6E6578697374656E742D7072697A6573706C69 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7400000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x24A JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x349 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x24A JUMP JUMPDEST DUP2 PUSH1 0x2 DUP3 PUSH1 0xFF AND DUP2 SLOAD DUP2 LT PUSH2 0x360 JUMPI PUSH2 0x360 PUSH2 0xFBD JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP5 MLOAD SWAP3 ADD DUP1 SLOAD SWAP5 SWAP1 SWAP2 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE PUSH2 0x3B8 PUSH2 0xC30 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x432 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x24A JUMP JUMPDEST DUP3 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 DUP5 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x40 MLOAD PUSH2 0x487 SWAP3 SWAP2 SWAP1 PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH1 0xFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST CALLER PUSH2 0x4A7 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x4FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x24A JUMP JUMPDEST DUP1 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x575 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C6974732D6C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x656E677468000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x24A JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x7F9 JUMPI PUSH1 0x0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x594 JUMPI PUSH2 0x594 PUSH2 0xFBD JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MUL ADD DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5AA SWAP2 SWAP1 PUSH2 0xE87 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x629 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x24A JUMP JUMPDEST PUSH1 0x2 SLOAD DUP3 LT PUSH2 0x6AE JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH32 0x405787FA12A823E0F2B7631CC41B3BA8828B3321CA811111FA75CD3AA3BB5ACE SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x794 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x6C3 JUMPI PUSH2 0x6C3 PUSH2 0xFBD JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP3 DIV PUSH2 0xFFFF AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE DUP5 MLOAD SWAP2 SWAP4 POP SWAP2 AND EQ ISZERO DUP1 PUSH2 0x720 JUMPI POP DUP1 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND DUP3 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x78B JUMPI DUP2 PUSH1 0x2 DUP5 DUP2 SLOAD DUP2 LT PUSH2 0x739 JUMPI PUSH2 0x739 PUSH2 0xFBD JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD SWAP2 ADD DUP1 SLOAD SWAP4 SWAP1 SWAP3 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x792 JUMP JUMPDEST POP POP PUSH2 0x7E7 JUMP JUMPDEST POP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x40 DUP1 MLOAD PUSH2 0xFFFF SWAP1 SWAP3 AND DUP3 MSTORE SWAP2 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMPDEST DUP1 PUSH2 0x7F1 DUP2 PUSH2 0xF76 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x578 JUMP JUMPDEST POP JUMPDEST PUSH1 0x2 SLOAD DUP2 LT ISZERO PUSH2 0x87F JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP1 PUSH2 0x81D JUMPI PUSH2 0x81D PUSH2 0xFA7 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 DUP3 ADD PUSH1 0x0 NOT SWAP1 DUP2 ADD DUP1 SLOAD PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE SWAP1 SWAP2 ADD SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD DUP3 SWAP2 PUSH32 0x99FA473FDF53414BCD014CF6E7509FC58C68F7B86174767FAA6AD5100CD5BAE5 SWAP2 LOG2 POP PUSH2 0x7FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0x889 PUSH2 0xC30 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x903 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x24A JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x913 DUP3 DUP3 PUSH2 0xC92 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x971 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x24A JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x986 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xCD7 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x9B8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA0E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x24A JUMP JUMPDEST PUSH2 0xA18 PUSH1 0x0 PUSH2 0xCD7 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0xA88 JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP1 DUP5 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP2 DUP4 ADD MSTORE DUP3 MSTORE PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0xA3E JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xAB8 JUMPI PUSH2 0xAB8 PUSH2 0xFBD JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0xB07 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xB5D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x24A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xBD9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x24A JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xC8A JUMPI PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xC55 JUMPI PUSH2 0xC55 PUSH2 0xFBD JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH2 0xC76 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP5 PUSH2 0xF5E JUMP JUMPDEST SWAP3 POP DUP1 PUSH2 0xC82 DUP2 PUSH2 0xF76 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xC3A JUMP JUMPDEST POP SWAP1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0x40B9722744D0BA62D8B847077D65A712335B6769AA37FFF7AD7852EC299222A7 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD4B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD62 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x40 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xD93 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 POP DUP1 PUSH2 0xDA2 DUP4 PUSH2 0xD34 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0xDB9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDD8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDE1 DUP3 PUSH2 0xD34 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDFB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE04 DUP4 PUSH2 0xD34 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE25 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xE3D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xE51 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xE60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x6 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xE75 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE99 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDE1 DUP4 DUP4 PUSH2 0xD50 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x60 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEB6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEC0 DUP5 DUP5 PUSH2 0xD50 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP4 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0xED6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xEF3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xF51 JUMPI PUSH2 0xF41 DUP5 DUP4 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH2 0xFFFF AND SWAP2 ADD MSTORE JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xF17 JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xF71 JUMPI PUSH2 0xF71 PUSH2 0xF91 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0xF8A JUMPI PUSH2 0xF8A PUSH2 0xF91 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SAR 0xD3 SLOAD 0xC7 PUSH1 0x6E 0xC8 0xE4 DUP10 0xE5 0xD7 0xD4 MSTORE SWAP3 PUSH30 0xECA055D29EE8C587DDF193CEE5F529E73B64736F6C634300080600330000 ",
              "sourceMap": "150:528:73:-:0;;;197:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;233:6;1648:24:22;233:6:73;1648:9:22;:24::i;:::-;1603:76;197:46:73;150:528;;3470:174:22;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;;;;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:290:84:-;84:6;137:2;125:9;116:7;112:23;108:32;105:2;;;153:1;150;143:12;105:2;179:16;;-1:-1:-1;;;;;224:31:84;;214:42;;204:2;;270:1;267;260:12;204:2;293:5;95:209;-1:-1:-1;;;95:209:84:o;:::-;150:528:73;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@ONE_AS_FIXED_POINT_3_15255": {
                  "entryPoint": null,
                  "id": 15255,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_awardPrizeSplitAmount_16547": {
                  "entryPoint": 3218,
                  "id": 16547,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 3287,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_totalPrizeSplitPercentageAmount_15521": {
                  "entryPoint": 3120,
                  "id": 15521,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@awardPrizeSplitAmount_16560": {
                  "entryPoint": 2313,
                  "id": 16560,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@claimOwnership_4038": {
                  "entryPoint": 2327,
                  "id": 4038,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getPrizePool_16575": {
                  "entryPoint": null,
                  "id": 16575,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizeSplit_15270": {
                  "entryPoint": 2705,
                  "id": 15270,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getPrizeSplits_15282": {
                  "entryPoint": 2586,
                  "id": 15282,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_3970": {
                  "entryPoint": null,
                  "id": 3970,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3979": {
                  "entryPoint": null,
                  "id": 3979,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3993": {
                  "entryPoint": 2469,
                  "id": 3993,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setPrizeSplit_15485": {
                  "entryPoint": 485,
                  "id": 15485,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@setPrizeSplits_15427": {
                  "entryPoint": 1172,
                  "id": 15427,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@transferOwnership_4020": {
                  "entryPoint": 2804,
                  "id": 4020,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_address": {
                  "entryPoint": 3380,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_struct_PrizeSplitConfig": {
                  "entryPoint": 3408,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 3526,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 3560,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_calldata_ptr_$dyn_calldata_ptr": {
                  "entryPoint": 3602,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr": {
                  "entryPoint": 3719,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptrt_uint8": {
                  "entryPoint": 3747,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 3809,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_struct_PrizeSplitConfig": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 3834,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizePool_$11883__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr__to_t_struct$_PrizeSplitConfig_$11903_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16_t_uint256__to_t_uint16_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16_t_uint8__to_t_uint16_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 3934,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 3958,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 3985,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x31": {
                  "entryPoint": 4007,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 4029,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:9215:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "288:673:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "332:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "341:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "344:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "334:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "334:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "334:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "309:3:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "314:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "305:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "305:19:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "326:4:84",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "301:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "301:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "298:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "357:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "377:4:84",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "371:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "371:11:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "361:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "391:35:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "413:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "421:4:84",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "409:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "409:17:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "395:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "509:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "530:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "533:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "523:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "523:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "631:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "634:4:84",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "624:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "624:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "624:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "659:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "662:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "652:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "652:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "652:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "444:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "456:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "441:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "441:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "480:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "492:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "477:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "477:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "438:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "438:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "435:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "693:4:84",
                                    "type": "",
                                    "value": "0x40"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "699:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "686:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "686:24:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "686:24:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "719:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "728:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "719:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "750:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "777:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_address",
                                      "nodeType": "YulIdentifier",
                                      "src": "758:18:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "758:29:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "743:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "743:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "743:45:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "797:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "829:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "840:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "825:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "825:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "812:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "812:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "801:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "898:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "907:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "910:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "900:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "900:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "900:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "866:7:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "879:7:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "888:6:84",
                                            "type": "",
                                            "value": "0xffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "875:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "875:20:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "863:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "863:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "853:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "934:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "942:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "930:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "930:15:84"
                                  },
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "947:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "923:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "923:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "923:32:84"
                            }
                          ]
                        },
                        "name": "abi_decode_struct_PrizeSplitConfig",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "259:9:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "270:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "278:5:84",
                            "type": ""
                          }
                        ],
                        "src": "215:746:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1036:116:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1082:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1091:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1094:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1084:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1084:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1084:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1057:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1066:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1053:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1053:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1078:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1049:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1049:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1046:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1107:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1136:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1117:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1117:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1107:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1002:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1013:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1025:6:84",
                            "type": ""
                          }
                        ],
                        "src": "966:186:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1244:167:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1290:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1299:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1302:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1292:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1292:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1292:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1265:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1274:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1261:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1261:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1286:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1257:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1257:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1254:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1315:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1344:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1325:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1325:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1315:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1363:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1390:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1401:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1386:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1386:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1373:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1373:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1363:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1202:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1213:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1225:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1233:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1157:254:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1558:510:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1604:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1613:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1616:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1606:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1606:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1606:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1579:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1588:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1575:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1575:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1600:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1571:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1571:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1568:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1629:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1656:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1643:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1643:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1633:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1675:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1685:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1679:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1730:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1739:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1742:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1732:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1732:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1732:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1718:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1726:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1715:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1715:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1712:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1755:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1769:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1780:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1765:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1765:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1759:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1835:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1844:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1847:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1837:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1837:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1837:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1814:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1818:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1810:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1810:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1825:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1806:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1806:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1799:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1799:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1796:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1860:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1887:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1874:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1874:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1864:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1917:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1926:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1929:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1919:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1919:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1919:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1905:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1913:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1902:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1902:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1899:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1991:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2000:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2003:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1993:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1993:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1993:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1956:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1964:1:84",
                                                "type": "",
                                                "value": "6"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1967:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1960:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1960:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1952:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1952:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1977:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1948:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1948:32:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1982:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1945:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1945:45:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1942:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2016:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2030:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2034:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2026:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2026:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2016:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2046:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "2056:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2046:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_calldata_ptr_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1516:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1527:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1539:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1547:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1416:652:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2178:141:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2224:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2233:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2236:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2226:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2226:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2226:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2199:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2208:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2195:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2195:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2220:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2191:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2191:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2188:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2249:64:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2294:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2305:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeSplitConfig",
                                  "nodeType": "YulIdentifier",
                                  "src": "2259:34:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2259:54:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2249:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2144:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2155:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2167:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2073:246:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2444:283:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2490:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2499:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2502:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2492:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2492:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2492:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2465:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2474:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2461:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2461:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2486:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2457:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2457:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2454:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2515:64:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2560:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2571:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeSplitConfig",
                                  "nodeType": "YulIdentifier",
                                  "src": "2525:34:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2525:54:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2515:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2588:45:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2618:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2629:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2614:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2614:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2601:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2601:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2592:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2681:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2690:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2693:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2683:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2683:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2683:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2655:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2666:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2673:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2662:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2662:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2652:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2652:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2645:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2645:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2642:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2706:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2716:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2706:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptrt_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2402:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2413:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2425:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2433:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2324:403:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2802:110:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2848:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2857:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2860:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2850:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2850:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2850:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2823:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2832:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2819:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2819:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2844:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2815:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2815:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2812:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2873:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2896:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2883:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2883:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2873:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2768:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2779:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2791:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2732:180:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2977:159:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2994:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "3009:5:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3003:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3003:12:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3017:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2999:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2999:61:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2987:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2987:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2987:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3081:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3086:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3077:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3077:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3107:5:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3114:4:84",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3103:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3103:16:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3097:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3097:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3122:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3093:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3093:36:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3070:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3070:60:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3070:60:84"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_PrizeSplitConfig",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2961:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2968:3:84",
                            "type": ""
                          }
                        ],
                        "src": "2917:219:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3242:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3252:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3264:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3275:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3260:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3260:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3252:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3294:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3309:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3317:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3305:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3305:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3287:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3287:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3287:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3211:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3222:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3233:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3141:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3593:530:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3603:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3613:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3607:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3624:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3642:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3653:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3638:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3638:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3628:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3672:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3683:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3665:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3665:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3665:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3695:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "3706:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "3699:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3721:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3741:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3735:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3735:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3725:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3764:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3772:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3757:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3757:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3757:22:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3788:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3798:2:84",
                                "type": "",
                                "value": "64"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3792:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3809:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3820:9:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3831:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3816:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3816:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "3809:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3843:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3861:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3869:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3857:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3857:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3847:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3881:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3890:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3885:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3949:148:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "4004:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3998:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3998:13:84"
                                        },
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4013:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_struct_PrizeSplitConfig",
                                        "nodeType": "YulIdentifier",
                                        "src": "3963:34:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3963:54:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3963:54:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4030:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4041:3:84"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4046:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4037:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4037:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4030:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4062:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "4076:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4084:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4072:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4072:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4062:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3911:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3914:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3908:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3908:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3922:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3924:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3933:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3936:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3929:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3929:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3924:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3904:3:84",
                                "statements": []
                              },
                              "src": "3900:197:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4106:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "4114:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4106:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3562:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3573:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3584:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3372:751:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4249:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4259:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4271:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4282:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4267:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4267:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4259:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4301:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4316:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4324:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4312:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4312:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4294:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4294:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4294:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizePool_$11883__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4218:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4229:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4240:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4128:246:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4553:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4570:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4581:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4563:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4563:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4563:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4604:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4615:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4600:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4600:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4620:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4593:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4593:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4593:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4643:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4654:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4639:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4639:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4659:26:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4632:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4632:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4632:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4695:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4707:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4718:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4703:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4703:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4695:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4530:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4544:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4379:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4906:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4923:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4934:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4916:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4916:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4916:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4957:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4968:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4953:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4953:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4973:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4946:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4946:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4946:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4996:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5007:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4992:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4992:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5012:33:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4985:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4985:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4985:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5055:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5067:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5078:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5063:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5063:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5055:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4883:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4897:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4732:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5266:236:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5283:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5294:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5276:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5276:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5276:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5317:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5328:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5313:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5313:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5333:2:84",
                                    "type": "",
                                    "value": "46"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5306:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5306:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5306:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5356:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5367:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5352:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5352:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d7065",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5372:34:84",
                                    "type": "",
                                    "value": "PrizeSplit/invalid-prizesplit-pe"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5345:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5345:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5345:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5427:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5438:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5423:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5423:18:84"
                                  },
                                  {
                                    "hexValue": "7263656e746167652d746f74616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5443:16:84",
                                    "type": "",
                                    "value": "rcentage-total"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5416:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5416:44:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5416:44:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5469:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5481:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5492:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5477:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5477:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5469:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5243:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5257:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5092:410:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5681:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5698:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5709:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5691:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5691:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5691:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5732:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5743:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5728:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5728:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5748:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5721:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5721:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5721:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5771:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5782:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5767:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5767:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d7461",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5787:34:84",
                                    "type": "",
                                    "value": "PrizeSplit/invalid-prizesplit-ta"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5760:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5760:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5760:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5842:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5853:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5838:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5838:18:84"
                                  },
                                  {
                                    "hexValue": "72676574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5858:6:84",
                                    "type": "",
                                    "value": "rget"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5831:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5831:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5831:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5874:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5886:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5897:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5882:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5882:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5874:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5658:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5672:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5507:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6086:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6103:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6114:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6096:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6096:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6096:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6137:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6148:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6133:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6133:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6153:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6126:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6126:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6126:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6176:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6187:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6172:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6172:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6192:34:84",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6165:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6165:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6165:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6247:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6258:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6243:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6243:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6263:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6236:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6236:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6236:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6280:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6292:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6303:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6288:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6288:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6280:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6063:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6077:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5912:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6492:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6509:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6520:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6502:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6502:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6502:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6543:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6554:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6539:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6539:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6559:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6532:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6532:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6532:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6582:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6593:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6578:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6578:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6598:34:84",
                                    "type": "",
                                    "value": "PrizeSplit/invalid-prizesplits-l"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6571:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6571:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6571:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6653:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6664:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6649:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6649:18:84"
                                  },
                                  {
                                    "hexValue": "656e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6669:7:84",
                                    "type": "",
                                    "value": "ength"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6642:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6642:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6642:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6686:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6698:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6709:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6694:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6694:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6686:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6469:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6483:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6318:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6898:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6915:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6926:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6908:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6908:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6908:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6949:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6960:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6945:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6945:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6965:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6938:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6938:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6938:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6988:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6999:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6984:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6984:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c69",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7004:34:84",
                                    "type": "",
                                    "value": "PrizeSplit/nonexistent-prizespli"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6977:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6977:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6977:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7059:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7070:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7055:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7055:18:84"
                                  },
                                  {
                                    "hexValue": "74",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7075:3:84",
                                    "type": "",
                                    "value": "t"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7048:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7048:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7048:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7088:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7100:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7111:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7096:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7096:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7088:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6875:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6889:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6724:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7297:104:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7307:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7319:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7330:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7315:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7315:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7307:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7377:6:84"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7385:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeSplitConfig",
                                  "nodeType": "YulIdentifier",
                                  "src": "7342:34:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7342:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7342:53:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr__to_t_struct$_PrizeSplitConfig_$11903_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7266:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7277:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7288:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7126:275:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7505:89:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7515:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7527:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7538:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7523:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7523:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7515:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7557:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7572:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7580:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7568:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7568:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7550:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7550:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7550:38:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7474:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7485:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7496:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7406:188:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7726:132:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7736:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7748:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7759:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7744:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7744:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7736:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7778:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7793:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7801:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7789:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7789:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7771:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7771:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7771:38:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7829:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7840:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7825:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7825:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7845:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7818:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7818:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7818:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16_t_uint256__to_t_uint16_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7687:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7698:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7706:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7717:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7599:259:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7988:143:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7998:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8010:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8021:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8006:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8006:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7998:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8040:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8055:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8063:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8051:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8051:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8033:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8033:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8033:38:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8091:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8102:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8087:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8087:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8111:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8119:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8107:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8107:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8080:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8080:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8080:45:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16_t_uint8__to_t_uint16_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7949:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7960:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7968:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7979:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7863:268:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8237:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8247:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8259:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8270:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8255:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8255:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8247:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8289:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8300:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8282:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8282:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8282:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8206:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8217:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8228:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8136:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8366:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8393:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8395:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8395:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8395:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8382:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "8389:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "8385:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8385:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8379:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8379:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8376:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8424:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8435:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8438:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8431:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8431:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8424:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8349:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8352:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8358:3:84",
                            "type": ""
                          }
                        ],
                        "src": "8318:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8498:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8589:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8591:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8591:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8591:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "8514:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8521:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "8511:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8511:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8508:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8620:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "8631:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8638:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8627:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8627:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "8620:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "8480:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "8490:3:84",
                            "type": ""
                          }
                        ],
                        "src": "8451:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8683:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8700:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8703:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8693:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8693:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8693:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8797:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8800:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8790:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8790:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8790:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8821:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8824:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "8814:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8814:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8814:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "8651:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8872:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8889:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8892:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8882:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8882:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8882:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8986:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8989:4:84",
                                    "type": "",
                                    "value": "0x31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8979:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8979:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8979:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9010:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9013:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9003:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9003:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9003:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x31",
                        "nodeType": "YulFunctionDefinition",
                        "src": "8840:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9061:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9078:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9081:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9071:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9071:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9071:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9175:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9178:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9168:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9168:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9168:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9199:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9202:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9192:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9192:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9192:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9029:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_struct_PrizeSplitConfig(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x40) { revert(0, 0) }\n        let memPtr := mload(0x40)\n        let newFreePtr := add(memPtr, 0x40)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(0x40, newFreePtr)\n        value := memPtr\n        mstore(memPtr, abi_decode_address(headStart))\n        let value_1 := calldataload(add(headStart, 32))\n        if iszero(eq(value_1, and(value_1, 0xffff))) { revert(0, 0) }\n        mstore(add(memPtr, 32), value_1)\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(6, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_2, 32)\n        value1 := length\n    }\n    function abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeSplitConfig(headStart, dataEnd)\n    }\n    function abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptrt_uint8(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeSplitConfig(headStart, dataEnd)\n        let value := calldataload(add(headStart, 64))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value1 := value\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_encode_struct_PrizeSplitConfig(value, pos)\n    {\n        mstore(pos, and(mload(value), 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(pos, 0x20), and(mload(add(value, 0x20)), 0xffff))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        let _2 := 64\n        pos := add(headStart, _2)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            abi_encode_struct_PrizeSplitConfig(mload(srcPtr), pos)\n            pos := add(pos, _2)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_contract$_IPrizePool_$11883__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 46)\n        mstore(add(headStart, 64), \"PrizeSplit/invalid-prizesplit-pe\")\n        mstore(add(headStart, 96), \"rcentage-total\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"PrizeSplit/invalid-prizesplit-ta\")\n        mstore(add(headStart, 96), \"rget\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"PrizeSplit/invalid-prizesplits-l\")\n        mstore(add(headStart, 96), \"ength\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"PrizeSplit/nonexistent-prizespli\")\n        mstore(add(headStart, 96), \"t\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr__to_t_struct$_PrizeSplitConfig_$11903_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        abi_encode_struct_PrizeSplitConfig(value0, headStart)\n    }\n    function abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffff))\n    }\n    function abi_encode_tuple_t_uint16_t_uint256__to_t_uint16_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_uint16_t_uint8__to_t_uint16_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffff))\n        mstore(add(headStart, 32), and(value1, 0xff))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x31()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x31)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100d45760003560e01c8063884bf67c11610081578063cf713d6e1161005b578063cf713d6e14610186578063e30c3978146101c1578063f2fde38b146101d257600080fd5b8063884bf67c146101455780638da5cb5b14610160578063cf1e3b591461017157600080fd5b806345a9f187116100b257806345a9f187146101145780634e71e0c814610135578063715018a61461013d57600080fd5b8063056ea84f146100d9578063063a2298146100ee5780631898f91d14610101575b600080fd5b6100ec6100e7366004610ea3565b6101e5565b005b6100ec6100fc366004610e12565b610494565b6100ec61010f366004610de8565b610909565b61011d6103e881565b60405161ffff90911681526020015b60405180910390f35b6100ec610917565b6100ec6109a5565b60005b6040516001600160a01b03909116815260200161012c565b6000546001600160a01b0316610148565b610179610a1a565b60405161012c9190610efa565b610199610194366004610ee1565b610a91565b6040805182516001600160a01b0316815260209283015161ffff16928101929092520161012c565b6001546001600160a01b0316610148565b6100ec6101e0366004610dc6565b610af4565b336101f86000546001600160a01b031690565b6001600160a01b0316146102535760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b60025460ff8216106102cd5760405162461bcd60e51b815260206004820152602160248201527f5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c6960448201527f7400000000000000000000000000000000000000000000000000000000000000606482015260840161024a565b81516001600160a01b03166103495760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161024a565b8160028260ff168154811061036057610360610fbd565b60009182526020808320845192018054949091015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199094166001600160a01b0390921691909117929092179091556103b8610c30565b90506103e88111156104325760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161024a565b82600001516001600160a01b03167f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a3484602001518460405161048792919061ffff92909216825260ff16602082015260400190565b60405180910390a2505050565b336104a76000546001600160a01b031690565b6001600160a01b0316146104fd5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161024a565b8060ff8111156105755760405162461bcd60e51b815260206004820152602560248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c60448201527f656e677468000000000000000000000000000000000000000000000000000000606482015260840161024a565b60005b818110156107f957600084848381811061059457610594610fbd565b9050604002018036038101906105aa9190610e87565b80519091506001600160a01b03166106295760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161024a565b60025482106106ae576002805460018101825560009190915281517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9091018054602084015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199091166001600160a01b0390931692909217919091179055610794565b6000600283815481106106c3576106c3610fbd565b6000918252602091829020604080518082019091529101546001600160a01b03808216808452600160a01b90920461ffff1693830193909352845191935091161415806107205750806020015161ffff16826020015161ffff1614155b1561078b57816002848154811061073957610739610fbd565b6000918252602091829020835191018054939092015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199093166001600160a01b0390911617919091179055610792565b50506107e7565b505b80516020808301516040805161ffff90921682529181018590526001600160a01b03909216917f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a34910160405180910390a2505b806107f181610f76565b915050610578565b505b60025481101561087f5760028054600019810191908061081d5761081d610fa7565b6000828152602081208201600019908101805475ffffffffffffffffffffffffffffffffffffffffffff1916905590910190915560405182917f99fa473fdf53414bcd014cf6e7509fc58c68f7b86174767faa6ad5100cd5bae591a2506107fb565b6000610889610c30565b90506103e88111156109035760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161024a565b50505050565b6109138282610c92565b5050565b6001546001600160a01b031633146109715760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161024a565b600154610986906001600160a01b0316610cd7565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336109b86000546001600160a01b031690565b6001600160a01b031614610a0e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161024a565b610a186000610cd7565b565b60606002805480602002602001604051908101604052809291908181526020016000905b82821015610a8857600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff1681830152825260019092019101610a3e565b50505050905090565b604080518082019091526000808252602082015260028281548110610ab857610ab8610fbd565b6000918252602091829020604080518082019091529101546001600160a01b0381168252600160a01b900461ffff169181019190915292915050565b33610b076000546001600160a01b031690565b6001600160a01b031614610b5d5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161024a565b6001600160a01b038116610bd95760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161024a565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6002546000908190815b81811015610c8a5760028181548110610c5557610c55610fbd565b600091825260209091200154610c7690600160a01b900461ffff1684610f5e565b925080610c8281610f76565b915050610c3a565b509092915050565b6040518181526000906001600160a01b038416907f40b9722744d0ba62d8b847077d65a712335b6769aa37fff7ad7852ec299222a79060200160405180910390a35050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b0381168114610d4b57600080fd5b919050565b600060408284031215610d6257600080fd5b6040516040810181811067ffffffffffffffff82111715610d9357634e487b7160e01b600052604160045260246000fd5b604052905080610da283610d34565b8152602083013561ffff81168114610db957600080fd5b6020919091015292915050565b600060208284031215610dd857600080fd5b610de182610d34565b9392505050565b60008060408385031215610dfb57600080fd5b610e0483610d34565b946020939093013593505050565b60008060208385031215610e2557600080fd5b823567ffffffffffffffff80821115610e3d57600080fd5b818501915085601f830112610e5157600080fd5b813581811115610e6057600080fd5b8660208260061b8501011115610e7557600080fd5b60209290920196919550909350505050565b600060408284031215610e9957600080fd5b610de18383610d50565b60008060608385031215610eb657600080fd5b610ec08484610d50565b9150604083013560ff81168114610ed657600080fd5b809150509250929050565b600060208284031215610ef357600080fd5b5035919050565b602080825282518282018190526000919060409081850190868401855b82811015610f5157610f4184835180516001600160a01b0316825260209081015161ffff16910152565b9284019290850190600101610f17565b5091979650505050505050565b60008219821115610f7157610f71610f91565b500190565b6000600019821415610f8a57610f8a610f91565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea26469706673582212201dd354c7606ec8e489e5d7d452927deca055d29ee8c587ddf193cee5f529e73b64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xD4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x884BF67C GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xCF713D6E GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xCF713D6E EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1C1 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x884BF67C EQ PUSH2 0x145 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x160 JUMPI DUP1 PUSH4 0xCF1E3B59 EQ PUSH2 0x171 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x45A9F187 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x45A9F187 EQ PUSH2 0x114 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x135 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x13D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x56EA84F EQ PUSH2 0xD9 JUMPI DUP1 PUSH4 0x63A2298 EQ PUSH2 0xEE JUMPI DUP1 PUSH4 0x1898F91D EQ PUSH2 0x101 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEC PUSH2 0xE7 CALLDATASIZE PUSH1 0x4 PUSH2 0xEA3 JUMP JUMPDEST PUSH2 0x1E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xEC PUSH2 0xFC CALLDATASIZE PUSH1 0x4 PUSH2 0xE12 JUMP JUMPDEST PUSH2 0x494 JUMP JUMPDEST PUSH2 0xEC PUSH2 0x10F CALLDATASIZE PUSH1 0x4 PUSH2 0xDE8 JUMP JUMPDEST PUSH2 0x909 JUMP JUMPDEST PUSH2 0x11D PUSH2 0x3E8 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xEC PUSH2 0x917 JUMP JUMPDEST PUSH2 0xEC PUSH2 0x9A5 JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12C JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x148 JUMP JUMPDEST PUSH2 0x179 PUSH2 0xA1A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x12C SWAP2 SWAP1 PUSH2 0xEFA JUMP JUMPDEST PUSH2 0x199 PUSH2 0x194 CALLDATASIZE PUSH1 0x4 PUSH2 0xEE1 JUMP JUMPDEST PUSH2 0xA91 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH2 0xFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x12C JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x148 JUMP JUMPDEST PUSH2 0xEC PUSH2 0x1E0 CALLDATASIZE PUSH1 0x4 PUSH2 0xDC6 JUMP JUMPDEST PUSH2 0xAF4 JUMP JUMPDEST CALLER PUSH2 0x1F8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x253 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH1 0xFF DUP3 AND LT PUSH2 0x2CD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F6E6F6E6578697374656E742D7072697A6573706C69 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7400000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x24A JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x349 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x24A JUMP JUMPDEST DUP2 PUSH1 0x2 DUP3 PUSH1 0xFF AND DUP2 SLOAD DUP2 LT PUSH2 0x360 JUMPI PUSH2 0x360 PUSH2 0xFBD JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP5 MLOAD SWAP3 ADD DUP1 SLOAD SWAP5 SWAP1 SWAP2 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE PUSH2 0x3B8 PUSH2 0xC30 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x432 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x24A JUMP JUMPDEST DUP3 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 DUP5 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x40 MLOAD PUSH2 0x487 SWAP3 SWAP2 SWAP1 PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH1 0xFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST CALLER PUSH2 0x4A7 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x4FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x24A JUMP JUMPDEST DUP1 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x575 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C6974732D6C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x656E677468000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x24A JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x7F9 JUMPI PUSH1 0x0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x594 JUMPI PUSH2 0x594 PUSH2 0xFBD JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MUL ADD DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5AA SWAP2 SWAP1 PUSH2 0xE87 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x629 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x24A JUMP JUMPDEST PUSH1 0x2 SLOAD DUP3 LT PUSH2 0x6AE JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH32 0x405787FA12A823E0F2B7631CC41B3BA8828B3321CA811111FA75CD3AA3BB5ACE SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x794 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x6C3 JUMPI PUSH2 0x6C3 PUSH2 0xFBD JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP3 DIV PUSH2 0xFFFF AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE DUP5 MLOAD SWAP2 SWAP4 POP SWAP2 AND EQ ISZERO DUP1 PUSH2 0x720 JUMPI POP DUP1 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND DUP3 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x78B JUMPI DUP2 PUSH1 0x2 DUP5 DUP2 SLOAD DUP2 LT PUSH2 0x739 JUMPI PUSH2 0x739 PUSH2 0xFBD JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD SWAP2 ADD DUP1 SLOAD SWAP4 SWAP1 SWAP3 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x792 JUMP JUMPDEST POP POP PUSH2 0x7E7 JUMP JUMPDEST POP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x40 DUP1 MLOAD PUSH2 0xFFFF SWAP1 SWAP3 AND DUP3 MSTORE SWAP2 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMPDEST DUP1 PUSH2 0x7F1 DUP2 PUSH2 0xF76 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x578 JUMP JUMPDEST POP JUMPDEST PUSH1 0x2 SLOAD DUP2 LT ISZERO PUSH2 0x87F JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP1 PUSH2 0x81D JUMPI PUSH2 0x81D PUSH2 0xFA7 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 DUP3 ADD PUSH1 0x0 NOT SWAP1 DUP2 ADD DUP1 SLOAD PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE SWAP1 SWAP2 ADD SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD DUP3 SWAP2 PUSH32 0x99FA473FDF53414BCD014CF6E7509FC58C68F7B86174767FAA6AD5100CD5BAE5 SWAP2 LOG2 POP PUSH2 0x7FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0x889 PUSH2 0xC30 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x903 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x24A JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x913 DUP3 DUP3 PUSH2 0xC92 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x971 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x24A JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x986 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xCD7 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x9B8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA0E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x24A JUMP JUMPDEST PUSH2 0xA18 PUSH1 0x0 PUSH2 0xCD7 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0xA88 JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP1 DUP5 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP2 DUP4 ADD MSTORE DUP3 MSTORE PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0xA3E JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xAB8 JUMPI PUSH2 0xAB8 PUSH2 0xFBD JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0xB07 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xB5D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x24A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xBD9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x24A JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xC8A JUMPI PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xC55 JUMPI PUSH2 0xC55 PUSH2 0xFBD JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH2 0xC76 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP5 PUSH2 0xF5E JUMP JUMPDEST SWAP3 POP DUP1 PUSH2 0xC82 DUP2 PUSH2 0xF76 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xC3A JUMP JUMPDEST POP SWAP1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0x40B9722744D0BA62D8B847077D65A712335B6769AA37FFF7AD7852EC299222A7 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD4B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD62 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x40 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xD93 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 POP DUP1 PUSH2 0xDA2 DUP4 PUSH2 0xD34 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0xDB9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDD8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDE1 DUP3 PUSH2 0xD34 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDFB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE04 DUP4 PUSH2 0xD34 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE25 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xE3D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xE51 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xE60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x6 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xE75 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE99 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDE1 DUP4 DUP4 PUSH2 0xD50 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x60 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEB6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEC0 DUP5 DUP5 PUSH2 0xD50 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP4 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0xED6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xEF3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xF51 JUMPI PUSH2 0xF41 DUP5 DUP4 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH2 0xFFFF AND SWAP2 ADD MSTORE JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xF17 JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xF71 JUMPI PUSH2 0xF71 PUSH2 0xF91 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0xF8A JUMPI PUSH2 0xF8A PUSH2 0xF91 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SAR 0xD3 SLOAD 0xC7 PUSH1 0x6E 0xC8 0xE4 DUP10 0xE5 0xD7 0xD4 MSTORE SWAP3 PUSH30 0xECA055D29EE8C587DDF193CEE5F529E73B64736F6C634300080600330000 ",
              "sourceMap": "150:528:73:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3265:835:62;;;;;;:::i;:::-;;:::i;:::-;;942:2285;;;;;;:::i;:::-;;:::i;422:134:73:-;;;;;;:::i;:::-;;:::i;404:50:62:-;;450:4;404:50;;;;;7580:6:84;7568:19;;;7550:38;;7538:2;7523:18;404:50:62;;;;;;;;3147:129:22;;;:::i;2508:94::-;;;:::i;562:114:73:-;618:10;562:114;;;-1:-1:-1;;;;;3305:55:84;;;3287:74;;3275:2;3260:18;562:114:73;3242:125:84;1814:85:22;1860:7;1886:6;-1:-1:-1;;;;;1886:6:22;1814:85;;783:121:62;;;:::i;:::-;;;;;;;:::i;549:196::-;;;;;;:::i;:::-;;:::i;:::-;;;;3003:12:84;;-1:-1:-1;;;;;2999:61:84;2987:74;;3114:4;3103:16;;;3097:23;3122:6;3093:36;3077:14;;;3070:60;;;;7315:18;549:196:62;7297:104:84;2014:101:22;2095:13;;-1:-1:-1;;;;;2095:13:22;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;3265:835:62:-;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;4581:2:84;3819:58:22;;;4563:21:84;4620:2;4600:18;;;4593:30;4659:26;4639:18;;;4632:54;4703:18;;3819:58:22;;;;;;;;;3442:12:62::1;:19:::0;3423:38:::1;::::0;::::1;;3415:84;;;::::0;-1:-1:-1;;;3415:84:62;;6926:2:84;3415:84:62::1;::::0;::::1;6908:21:84::0;6965:2;6945:18;;;6938:30;7004:34;6984:18;;;6977:62;7075:3;7055:18;;;7048:31;7096:19;;3415:84:62::1;6898:223:84::0;3415:84:62::1;3517:18:::0;;-1:-1:-1;;;;;3517:32:62::1;3509:81;;;::::0;-1:-1:-1;;;3509:81:62;;5709:2:84;3509:81:62::1;::::0;::::1;5691:21:84::0;5748:2;5728:18;;;5721:30;5787:34;5767:18;;;5760:62;5858:6;5838:18;;;5831:34;5882:19;;3509:81:62::1;5681:226:84::0;3509:81:62::1;3675:11;3642:12;3655:16;3642:30;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;:44;;:30;::::1;:44:::0;;;;;::::1;::::0;::::1;;-1:-1:-1::0;;;3642:44:62::1;-1:-1:-1::0;;3642:44:62;;;-1:-1:-1;;;;;3642:44:62;;::::1;::::0;;;;;;;::::1;::::0;;;3771:34:::1;:32;:34::i;:::-;3745:60:::0;-1:-1:-1;450:4:62::1;3823:39:::0;::::1;;3815:98;;;::::0;-1:-1:-1;;;3815:98:62;;5294:2:84;3815:98:62::1;::::0;::::1;5276:21:84::0;5333:2;5313:18;;;5306:30;5372:34;5352:18;;;5345:62;5443:16;5423:18;;;5416:44;5477:19;;3815:98:62::1;5266:236:84::0;3815:98:62::1;3999:11;:18;;;-1:-1:-1::0;;;;;3972:121:62::1;;4031:11;:22;;;4067:16;3972:121;;;;;;8063:6:84::0;8051:19;;;;8033:38;;8119:4;8107:17;8102:2;8087:18;;8080:45;8021:2;8006:18;;7988:143;3972:121:62::1;;;;;;;;3405:695;3265:835:::0;;:::o;942:2285::-;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;4581:2:84;3819:58:22;;;4563:21:84;4620:2;4600:18;;;4593:30;4659:26;4639:18;;;4632:54;4703:18;;3819:58:22;4553:174:84;3819:58:22;1108:15:62;1172::::1;1148:39:::0;::::1;;1140:89;;;::::0;-1:-1:-1;;;1140:89:62;;6520:2:84;1140:89:62::1;::::0;::::1;6502:21:84::0;6559:2;6539:18;;;6532:30;6598:34;6578:18;;;6571:62;6669:7;6649:18;;;6642:35;6694:19;;1140:89:62::1;6492:227:84::0;1140:89:62::1;1348:13;1343:1270;1375:20;1367:5;:28;1343:1270;;;1420:29;1452:15;;1468:5;1452:22;;;;;;;:::i;:::-;;;;;;1420:54;;;;;;;;;;:::i;:::-;1560:12:::0;;1420:54;;-1:-1:-1;;;;;;1560:26:62::1;1552:75;;;::::0;-1:-1:-1;;;1552:75:62;;5709:2:84;1552:75:62::1;::::0;::::1;5691:21:84::0;5748:2;5728:18;;;5721:30;5787:34;5767:18;;;5760:62;5858:6;5838:18;;;5831:34;5882:19;;1552:75:62::1;5681:226:84::0;1552:75:62::1;1786:12;:19:::0;:28;-1:-1:-1;1782:691:62::1;;1834:12;:24:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;1834:24:62;;;;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;;-1:-1:-1::0;;;1834:24:62::1;-1:-1:-1::0;;1834:24:62;;;-1:-1:-1;;;;;1834:24:62;;::::1;::::0;;;;;;;::::1;::::0;;1782:691:::1;;;1978:36;2017:12;2030:5;2017:19;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;1978:58:::1;::::0;;;;::::1;::::0;;;2017:19;::::1;1978:58:::0;-1:-1:-1;;;;;1978:58:62;;::::1;::::0;;;-1:-1:-1;;;1978:58:62;;::::1;;;::::0;;::::1;::::0;;;;2215:12;;1978:58;;-1:-1:-1;2215:35:62;::::1;;;::::0;:102:::1;;;2294:12;:23;;;2274:43;;:5;:16;;;:43;;;;2215:102;2190:269;;;2380:5;2358:12;2371:5;2358:19;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;:27;;:19;::::1;:27:::0;;;;;::::1;::::0;::::1;;-1:-1:-1::0;;;2358:27:62::1;-1:-1:-1::0;;2358:27:62;;;-1:-1:-1;;;;;2358:27:62;;::::1;::::0;;;;::::1;::::0;;2190:269:::1;;;2432:8;;;;2190:269;1879:594;1782:691;2564:12:::0;;2578:16:::1;::::0;;::::1;::::0;2550:52:::1;::::0;;7801:6:84;7789:19;;;7771:38;;7825:18;;;7818:34;;;-1:-1:-1;;;;;2550:52:62;;::::1;::::0;::::1;::::0;7744:18:84;2550:52:62::1;;;;;;;1406:1207;1343:1270;1397:7:::0;::::1;::::0;::::1;:::i;:::-;;;;1343:1270;;;;2740:254;2747:12;:19:::0;:42;-1:-1:-1;2740:254:62::1;;;2870:12;:19:::0;;-1:-1:-1;;2870:23:62;;;:12;:19;2921:18:::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;2921:18:62;;;;;-1:-1:-1;;2921:18:62;;;;;;;;;2958:25:::1;::::0;2976:6;;2958:25:::1;::::0;::::1;2791:203;2740:254;;;3052:23;3078:34;:32;:34::i;:::-;3052:60:::0;-1:-1:-1;450:4:62::1;3130:39:::0;::::1;;3122:98;;;::::0;-1:-1:-1;;;3122:98:62;;5294:2:84;3122:98:62::1;::::0;::::1;5276:21:84::0;5333:2;5313:18;;;5306:30;5372:34;5352:18;;;5345:62;5443:16;5423:18;;;5416:44;5477:19;;3122:98:62::1;5266:236:84::0;3122:98:62::1;1067:2160;;942:2285:::0;;:::o;422:134:73:-;511:38;534:6;542;511:22;:38::i;:::-;422:134;;:::o;3147:129:22:-;4050:13;;-1:-1:-1;;;;;4050:13:22;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:22;;4934:2:84;4028:71:22;;;4916:21:84;4973:2;4953:18;;;4946:30;5012:33;4992:18;;;4985:61;5063:18;;4028:71:22;4906:181:84;4028:71:22;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:22::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:22::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;4581:2:84;3819:58:22;;;4563:21:84;4620:2;4600:18;;;4593:30;4659:26;4639:18;;;4632:54;4703:18;;3819:58:22;4553:174:84;3819:58:22;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;783:121:62:-;841:25;885:12;878:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;878:19:62;;;;-1:-1:-1;;;878:19:62;;;;;;;;;;;;;;;;;;;;;;;;;783:121;:::o;549:196::-;-1:-1:-1;;;;;;;;;;;;;;;;;708:12:62;721:16;708:30;;;;;;;;:::i;:::-;;;;;;;;;;701:37;;;;;;;;;708:30;;701:37;-1:-1:-1;;;;;701:37:62;;;;-1:-1:-1;;;701:37:62;;;;;;;;;;;;;-1:-1:-1;;549:196:62:o;2751:234:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;4581:2:84;3819:58:22;;;4563:21:84;4620:2;4600:18;;;4593:30;4659:26;4639:18;;;4632:54;4703:18;;3819:58:22;4553:174:84;3819:58:22;-1:-1:-1;;;;;2834:23:22;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:22;;6114:2:84;2826:73:22::1;::::0;::::1;6096:21:84::0;6153:2;6133:18;;;6126:30;6192:34;6172:18;;;6165:62;6263:7;6243:18;;;6236:35;6288:19;;2826:73:22::1;6086:227:84::0;2826:73:22::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:22::1;-1:-1:-1::0;;;;;2910:25:22;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:22::1;2751:234:::0;:::o;4431:365:62:-;4583:12;:19;4498:7;;;;;4613:139;4645:17;4637:5;:25;4613:139;;;4711:12;4724:5;4711:19;;;;;;;;:::i;:::-;;;;;;;;;;:30;4687:54;;-1:-1:-1;;;4711:30:62;;;;4687:54;;:::i;:::-;;-1:-1:-1;4664:7:62;;;;:::i;:::-;;;;4613:139;;;-1:-1:-1;4769:20:62;;4431:365;-1:-1:-1;;4431:365:62:o;249:167:73:-;346:63;;8282:25:84;;;405:1:73;;-1:-1:-1;;;;;346:63:73;;;;;8270:2:84;8255:18;346:63:73;;;;;;;249:167;;:::o;3470:174:22:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:196:84:-;82:20;;-1:-1:-1;;;;;131:54:84;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:746::-;278:5;326:4;314:9;309:3;305:19;301:30;298:2;;;344:1;341;334:12;298:2;377:4;371:11;421:4;413:6;409:17;492:6;480:10;477:22;456:18;444:10;441:34;438:62;435:2;;;-1:-1:-1;;;530:1:84;523:88;634:4;631:1;624:15;662:4;659:1;652:15;435:2;693:4;686:24;728:6;-1:-1:-1;728:6:84;758:29;777:9;758:29;:::i;:::-;750:6;743:45;840:2;829:9;825:18;812:32;888:6;879:7;875:20;866:7;863:33;853:2;;910:1;907;900:12;853:2;942;930:15;;;;923:32;288:673;;-1:-1:-1;;288:673:84:o;966:186::-;1025:6;1078:2;1066:9;1057:7;1053:23;1049:32;1046:2;;;1094:1;1091;1084:12;1046:2;1117:29;1136:9;1117:29;:::i;:::-;1107:39;1036:116;-1:-1:-1;;;1036:116:84:o;1157:254::-;1225:6;1233;1286:2;1274:9;1265:7;1261:23;1257:32;1254:2;;;1302:1;1299;1292:12;1254:2;1325:29;1344:9;1325:29;:::i;:::-;1315:39;1401:2;1386:18;;;;1373:32;;-1:-1:-1;;;1244:167:84:o;1416:652::-;1539:6;1547;1600:2;1588:9;1579:7;1575:23;1571:32;1568:2;;;1616:1;1613;1606:12;1568:2;1656:9;1643:23;1685:18;1726:2;1718:6;1715:14;1712:2;;;1742:1;1739;1732:12;1712:2;1780:6;1769:9;1765:22;1755:32;;1825:7;1818:4;1814:2;1810:13;1806:27;1796:2;;1847:1;1844;1837:12;1796:2;1887;1874:16;1913:2;1905:6;1902:14;1899:2;;;1929:1;1926;1919:12;1899:2;1982:7;1977:2;1967:6;1964:1;1960:14;1956:2;1952:23;1948:32;1945:45;1942:2;;;2003:1;2000;1993:12;1942:2;2034;2026:11;;;;;2056:6;;-1:-1:-1;1558:510:84;;-1:-1:-1;;;;1558:510:84:o;2073:246::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:2;;;2236:1;2233;2226:12;2188:2;2259:54;2305:7;2294:9;2259:54;:::i;2324:403::-;2425:6;2433;2486:2;2474:9;2465:7;2461:23;2457:32;2454:2;;;2502:1;2499;2492:12;2454:2;2525:54;2571:7;2560:9;2525:54;:::i;:::-;2515:64;;2629:2;2618:9;2614:18;2601:32;2673:4;2666:5;2662:16;2655:5;2652:27;2642:2;;2693:1;2690;2683:12;2642:2;2716:5;2706:15;;;2444:283;;;;;:::o;2732:180::-;2791:6;2844:2;2832:9;2823:7;2819:23;2815:32;2812:2;;;2860:1;2857;2850:12;2812:2;-1:-1:-1;2883:23:84;;2802:110;-1:-1:-1;2802:110:84:o;3372:751::-;3613:2;3665:21;;;3735:13;;3638:18;;;3757:22;;;3584:4;;3613:2;3798;;3816:18;;;;3857:15;;;3584:4;3900:197;3914:6;3911:1;3908:13;3900:197;;;3963:54;4013:3;4004:6;3998:13;3003:12;;-1:-1:-1;;;;;2999:61:84;2987:74;;3114:4;3103:16;;;3097:23;3122:6;3093:36;3077:14;;3070:60;2977:159;3963:54;4037:12;;;;4072:15;;;;3936:1;3929:9;3900:197;;;-1:-1:-1;4114:3:84;;3593:530;-1:-1:-1;;;;;;;3593:530:84:o;8318:128::-;8358:3;8389:1;8385:6;8382:1;8379:13;8376:2;;;8395:18;;:::i;:::-;-1:-1:-1;8431:9:84;;8366:80::o;8451:195::-;8490:3;-1:-1:-1;;8514:5:84;8511:77;8508:2;;;8591:18;;:::i;:::-;-1:-1:-1;8638:1:84;8627:13;;8498:148::o;8651:184::-;-1:-1:-1;;;8700:1:84;8693:88;8800:4;8797:1;8790:15;8824:4;8821:1;8814:15;8840:184;-1:-1:-1;;;8889:1:84;8882:88;8989:4;8986:1;8979:15;9013:4;9010:1;9003:15;9029:184;-1:-1:-1;;;9078:1:84;9071:88;9178:4;9175:1;9168:15;9202:4;9199:1;9192:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "821000",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "ONE_AS_FIXED_POINT_3()": "216",
                "awardPrizeSplitAmount(address,uint256)": "2266",
                "claimOwnership()": "54486",
                "getPrizePool()": "225",
                "getPrizeSplit(uint256)": "4832",
                "getPrizeSplits()": "infinite",
                "owner()": "2376",
                "pendingOwner()": "2375",
                "renounceOwnership()": "28202",
                "setPrizeSplit((address,uint16),uint8)": "infinite",
                "setPrizeSplits((address,uint16)[])": "infinite",
                "transferOwnership(address)": "27972"
              },
              "internal": {
                "_awardPrizeSplitAmount(address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "ONE_AS_FIXED_POINT_3()": "45a9f187",
              "awardPrizeSplitAmount(address,uint256)": "1898f91d",
              "claimOwnership()": "4e71e0c8",
              "getPrizePool()": "884bf67c",
              "getPrizeSplit(uint256)": "cf713d6e",
              "getPrizeSplits()": "cf1e3b59",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setPrizeSplit((address,uint16),uint8)": "056ea84f",
              "setPrizeSplits((address,uint16)[])": "063a2298",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"prizeAwarded\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"contract IControlledToken\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"PrizeSplitAwarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"target\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"ONE_AS_FIXED_POINT_3\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"\",\"type\":\"uint16\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"awardPrizeSplitAmount\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizePool\",\"outputs\":[{\"internalType\":\"contract IPrizePool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_prizeSplitIndex\",\"type\":\"uint256\"}],\"name\":\"getPrizeSplit\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeSplits\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"_prizeSplit\",\"type\":\"tuple\"},{\"internalType\":\"uint8\",\"name\":\"_prizeSplitIndex\",\"type\":\"uint8\"}],\"name\":\"setPrizeSplit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"_newPrizeSplits\",\"type\":\"tuple[]\"}],\"name\":\"setPrizeSplits\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"getPrizePool()\":{\"returns\":{\"_0\":\"IPrizePool\"}},\"getPrizeSplit(uint256)\":{\"details\":\"Read PrizeSplitConfig struct from prizeSplits array.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig\"},\"returns\":{\"_0\":\"PrizeSplitConfig Single prize split config\"}},\"getPrizeSplits()\":{\"details\":\"Read all PrizeSplitConfig structs stored in prizeSplits.\",\"returns\":{\"_0\":\"Array of PrizeSplitConfig structs\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setPrizeSplit((address,uint16),uint8)\":{\"details\":\"Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig to update\",\"prizeStrategySplit\":\"PrizeSplitConfig config struct\"}},\"setPrizeSplits((address,uint16)[])\":{\"details\":\"Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\",\"params\":{\"newPrizeSplits\":\"Array of PrizeSplitConfig structs\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"version\":1},\"userdoc\":{\"events\":{\"PrizeSplitAwarded(address,uint256,address)\":{\"notice\":\"Emit when an individual prize split is awarded.\"},\"PrizeSplitRemoved(uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is removed.\"},\"PrizeSplitSet(address,uint16,uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is added or updated.\"}},\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"getPrizePool()\":{\"notice\":\"Get PrizePool address\"},\"getPrizeSplit(uint256)\":{\"notice\":\"Read prize split config from active PrizeSplits.\"},\"getPrizeSplits()\":{\"notice\":\"Read all prize splits configs.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setPrizeSplit((address,uint16),uint8)\":{\"notice\":\"Updates a previously set prize split config.\"},\"setPrizeSplits((address,uint16)[])\":{\"notice\":\"Set and remove prize split(s) configs. Only callable by owner.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/PrizeSplitHarness.sol\":\"PrizeSplitHarness\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeSplit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IControlledToken.sol\\\";\\nimport \\\"./IPrizePool.sol\\\";\\n\\n/**\\n * @title Abstract prize split contract for adding unique award distribution to static addresses.\\n * @author PoolTogether Inc Team\\n */\\ninterface IPrizeSplit {\\n    /**\\n     * @notice Emit when an individual prize split is awarded.\\n     * @param user          User address being awarded\\n     * @param prizeAwarded  Awarded prize amount\\n     * @param token         Token address\\n     */\\n    event PrizeSplitAwarded(\\n        address indexed user,\\n        uint256 prizeAwarded,\\n        IControlledToken indexed token\\n    );\\n\\n    /**\\n     * @notice The prize split configuration struct.\\n     * @dev    The prize split configuration struct used to award prize splits during distribution.\\n     * @param target     Address of recipient receiving the prize split distribution\\n     * @param percentage Percentage of prize split using a 0-1000 range for single decimal precision i.e. 125 = 12.5%\\n     */\\n    struct PrizeSplitConfig {\\n        address target;\\n        uint16 percentage;\\n    }\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is added or updated.\\n     * @dev    Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.\\n     * @param target     Address of prize split recipient\\n     * @param percentage Percentage of prize split. Must be between 0 and 1000 for single decimal precision\\n     * @param index      Index of prize split in the prizeSplts array\\n     */\\n    event PrizeSplitSet(address indexed target, uint16 percentage, uint256 index);\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is removed.\\n     * @dev    Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.\\n     * @param target Index of a previously active prize split config\\n     */\\n    event PrizeSplitRemoved(uint256 indexed target);\\n\\n    /**\\n     * @notice Read prize split config from active PrizeSplits.\\n     * @dev    Read PrizeSplitConfig struct from prizeSplits array.\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig\\n     * @return PrizeSplitConfig Single prize split config\\n     */\\n    function getPrizeSplit(uint256 prizeSplitIndex) external view returns (PrizeSplitConfig memory);\\n\\n    /**\\n     * @notice Read all prize splits configs.\\n     * @dev    Read all PrizeSplitConfig structs stored in prizeSplits.\\n     * @return Array of PrizeSplitConfig structs\\n     */\\n    function getPrizeSplits() external view returns (PrizeSplitConfig[] memory);\\n\\n    /**\\n     * @notice Get PrizePool address\\n     * @return IPrizePool\\n     */\\n    function getPrizePool() external view returns (IPrizePool);\\n\\n    /**\\n     * @notice Set and remove prize split(s) configs. Only callable by owner.\\n     * @dev Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\\n     * @param newPrizeSplits Array of PrizeSplitConfig structs\\n     */\\n    function setPrizeSplits(PrizeSplitConfig[] calldata newPrizeSplits) external;\\n\\n    /**\\n     * @notice Updates a previously set prize split config.\\n     * @dev Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\\n     * @param prizeStrategySplit PrizeSplitConfig config struct\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig to update\\n     */\\n    function setPrizeSplit(PrizeSplitConfig memory prizeStrategySplit, uint8 prizeSplitIndex)\\n        external;\\n}\\n\",\"keccak256\":\"0xf9946a5bbe45641a0f86674135eb56310b3a97f09e5665fd1c11bc213d42d2ac\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"},\"contracts/prize-strategy/PrizeSplit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"../interfaces/IPrizeSplit.sol\\\";\\n\\n/**\\n * @title PrizeSplit Interface\\n * @author PoolTogether Inc Team\\n */\\nabstract contract PrizeSplit is IPrizeSplit, Ownable {\\n    /* ============ Global Variables ============ */\\n    PrizeSplitConfig[] internal _prizeSplits;\\n\\n    uint16 public constant ONE_AS_FIXED_POINT_3 = 1000;\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeSplit\\n    function getPrizeSplit(uint256 _prizeSplitIndex)\\n        external\\n        view\\n        override\\n        returns (PrizeSplitConfig memory)\\n    {\\n        return _prizeSplits[_prizeSplitIndex];\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function getPrizeSplits() external view override returns (PrizeSplitConfig[] memory) {\\n        return _prizeSplits;\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function setPrizeSplits(PrizeSplitConfig[] calldata _newPrizeSplits)\\n        external\\n        override\\n        onlyOwner\\n    {\\n        uint256 newPrizeSplitsLength = _newPrizeSplits.length;\\n        require(newPrizeSplitsLength <= type(uint8).max, \\\"PrizeSplit/invalid-prizesplits-length\\\");\\n\\n        // Add and/or update prize split configs using _newPrizeSplits PrizeSplitConfig structs array.\\n        for (uint256 index = 0; index < newPrizeSplitsLength; index++) {\\n            PrizeSplitConfig memory split = _newPrizeSplits[index];\\n\\n            // REVERT when setting the canonical burn address.\\n            require(split.target != address(0), \\\"PrizeSplit/invalid-prizesplit-target\\\");\\n\\n            // IF the CURRENT prizeSplits length is below the NEW prizeSplits\\n            // PUSH the PrizeSplit struct to end of the list.\\n            if (_prizeSplits.length <= index) {\\n                _prizeSplits.push(split);\\n            } else {\\n                // ELSE update an existing PrizeSplit struct with new parameters\\n                PrizeSplitConfig memory currentSplit = _prizeSplits[index];\\n\\n                // IF new PrizeSplit DOES NOT match the current PrizeSplit\\n                // WRITE to STORAGE with the new PrizeSplit\\n                if (\\n                    split.target != currentSplit.target ||\\n                    split.percentage != currentSplit.percentage\\n                ) {\\n                    _prizeSplits[index] = split;\\n                } else {\\n                    continue;\\n                }\\n            }\\n\\n            // Emit the added/updated prize split config.\\n            emit PrizeSplitSet(split.target, split.percentage, index);\\n        }\\n\\n        // Remove old prize splits configs. Match storage _prizesSplits.length with the passed newPrizeSplits.length\\n        while (_prizeSplits.length > newPrizeSplitsLength) {\\n            uint256 _index;\\n            unchecked {\\n                _index = _prizeSplits.length - 1;\\n            }\\n            _prizeSplits.pop();\\n            emit PrizeSplitRemoved(_index);\\n        }\\n\\n        // Total prize split do not exceed 100%\\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \\\"PrizeSplit/invalid-prizesplit-percentage-total\\\");\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function setPrizeSplit(PrizeSplitConfig memory _prizeSplit, uint8 _prizeSplitIndex)\\n        external\\n        override\\n        onlyOwner\\n    {\\n        require(_prizeSplitIndex < _prizeSplits.length, \\\"PrizeSplit/nonexistent-prizesplit\\\");\\n        require(_prizeSplit.target != address(0), \\\"PrizeSplit/invalid-prizesplit-target\\\");\\n\\n        // Update the prize split config\\n        _prizeSplits[_prizeSplitIndex] = _prizeSplit;\\n\\n        // Total prize split do not exceed 100%\\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \\\"PrizeSplit/invalid-prizesplit-percentage-total\\\");\\n\\n        // Emit updated prize split config\\n        emit PrizeSplitSet(\\n            _prizeSplit.target,\\n            _prizeSplit.percentage,\\n            _prizeSplitIndex\\n        );\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates total prize split percentage amount.\\n     * @dev Calculates total PrizeSplitConfig percentage(s) amount. Used to check the total does not exceed 100% of award distribution.\\n     * @return Total prize split(s) percentage amount\\n     */\\n    function _totalPrizeSplitPercentageAmount() internal view returns (uint256) {\\n        uint256 _tempTotalPercentage;\\n        uint256 prizeSplitsLength = _prizeSplits.length;\\n\\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\\n            _tempTotalPercentage += _prizeSplits[index].percentage;\\n        }\\n\\n        return _tempTotalPercentage;\\n    }\\n\\n    /**\\n     * @notice Distributes prize split(s).\\n     * @dev Distributes prize split(s) by awarding ticket or sponsorship tokens.\\n     * @param _prize Starting prize award amount\\n     * @return The remainder after splits are taken\\n     */\\n    function _distributePrizeSplits(uint256 _prize) internal returns (uint256) {\\n        uint256 _prizeTemp = _prize;\\n        uint256 prizeSplitsLength = _prizeSplits.length;\\n\\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\\n            PrizeSplitConfig memory split = _prizeSplits[index];\\n            uint256 _splitAmount = (_prize * split.percentage) / 1000;\\n\\n            // Award the prize split distribution amount.\\n            _awardPrizeSplitAmount(split.target, _splitAmount);\\n\\n            // Update the remaining prize amount after distributing the prize split percentage.\\n            _prizeTemp -= _splitAmount;\\n        }\\n\\n        return _prizeTemp;\\n    }\\n\\n    /**\\n     * @notice Mints ticket or sponsorship tokens to prize split recipient.\\n     * @dev Mints ticket or sponsorship tokens to prize split recipient via the linked PrizePool contract.\\n     * @param _target Recipient of minted tokens\\n     * @param _amount Amount of minted tokens\\n     */\\n    function _awardPrizeSplitAmount(address _target, uint256 _amount) internal virtual;\\n}\\n\",\"keccak256\":\"0x1d11be0738fa1cbcfd6ad33a417c30116cd202a311828e3cfe6a176eaee53dbe\",\"license\":\"GPL-3.0\"},\"contracts/test/PrizeSplitHarness.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../prize-strategy/PrizeSplit.sol\\\";\\nimport \\\"../interfaces/IControlledToken.sol\\\";\\n\\ncontract PrizeSplitHarness is PrizeSplit {\\n    constructor(address _owner) Ownable(_owner) {}\\n\\n    function _awardPrizeSplitAmount(address target, uint256 amount) internal override {\\n        emit PrizeSplitAwarded(target, amount, IControlledToken(address(0)));\\n    }\\n\\n    function awardPrizeSplitAmount(address target, uint256 amount) external {\\n        return _awardPrizeSplitAmount(target, amount);\\n    }\\n\\n    function getPrizePool() external pure override returns (IPrizePool) {\\n        return IPrizePool(address(0));\\n    }\\n}\\n\",\"keccak256\":\"0x8cbc19af3055a449884401c376722519a80315349b272846960d62b5b01fe162\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/test/PrizeSplitHarness.sol:PrizeSplitHarness",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/test/PrizeSplitHarness.sol:PrizeSplitHarness",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 15252,
                "contract": "contracts/test/PrizeSplitHarness.sol:PrizeSplitHarness",
                "label": "_prizeSplits",
                "offset": 0,
                "slot": "2",
                "type": "t_array(t_struct(PrizeSplitConfig)11903_storage)dyn_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(PrizeSplitConfig)11903_storage)dyn_storage": {
                "base": "t_struct(PrizeSplitConfig)11903_storage",
                "encoding": "dynamic_array",
                "label": "struct IPrizeSplit.PrizeSplitConfig[]",
                "numberOfBytes": "32"
              },
              "t_struct(PrizeSplitConfig)11903_storage": {
                "encoding": "inplace",
                "label": "struct IPrizeSplit.PrizeSplitConfig",
                "members": [
                  {
                    "astId": 11900,
                    "contract": "contracts/test/PrizeSplitHarness.sol:PrizeSplitHarness",
                    "label": "target",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_address"
                  },
                  {
                    "astId": 11902,
                    "contract": "contracts/test/PrizeSplitHarness.sol:PrizeSplitHarness",
                    "label": "percentage",
                    "offset": 20,
                    "slot": "0",
                    "type": "t_uint16"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint16": {
                "encoding": "inplace",
                "label": "uint16",
                "numberOfBytes": "2"
              }
            }
          },
          "userdoc": {
            "events": {
              "PrizeSplitAwarded(address,uint256,address)": {
                "notice": "Emit when an individual prize split is awarded."
              },
              "PrizeSplitRemoved(uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is removed."
              },
              "PrizeSplitSet(address,uint16,uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is added or updated."
              }
            },
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "getPrizePool()": {
                "notice": "Get PrizePool address"
              },
              "getPrizeSplit(uint256)": {
                "notice": "Read prize split config from active PrizeSplits."
              },
              "getPrizeSplits()": {
                "notice": "Read all prize splits configs."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "notice": "Updates a previously set prize split config."
              },
              "setPrizeSplits((address,uint16)[])": {
                "notice": "Set and remove prize split(s) configs. Only callable by owner."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/test/PrizeSplitStrategyHarness.sol": {
        "PrizeSplitStrategyHarness": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IPrizePool",
                  "name": "_prizePool",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "contract IPrizePool",
                  "name": "prizePool",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "totalPrizeCaptured",
                  "type": "uint256"
                }
              ],
              "name": "Distributed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "prizeAwarded",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "contract IControlledToken",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "PrizeSplitAwarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "target",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitRemoved",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "target",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint16",
                  "name": "percentage",
                  "type": "uint16"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "ONE_AS_FIXED_POINT_3",
              "outputs": [
                {
                  "internalType": "uint16",
                  "name": "",
                  "type": "uint16"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "target",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "awardPrizeSplitAmount",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "distribute",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizePool",
              "outputs": [
                {
                  "internalType": "contract IPrizePool",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_prizeSplitIndex",
                  "type": "uint256"
                }
              ],
              "name": "getPrizeSplit",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeSplits",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "_prizeSplit",
                  "type": "tuple"
                },
                {
                  "internalType": "uint8",
                  "name": "_prizeSplitIndex",
                  "type": "uint8"
                }
              ],
              "name": "setPrizeSplit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "_newPrizeSplits",
                  "type": "tuple[]"
                }
              ],
              "name": "setPrizeSplits",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "distribute()": {
                "details": "Permissionless function to initialize distribution of interst",
                "returns": {
                  "_0": "Prize captured from PrizePool"
                }
              },
              "getPrizePool()": {
                "returns": {
                  "_0": "IPrizePool"
                }
              },
              "getPrizeSplit(uint256)": {
                "details": "Read PrizeSplitConfig struct from prizeSplits array.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig"
                },
                "returns": {
                  "_0": "PrizeSplitConfig Single prize split config"
                }
              },
              "getPrizeSplits()": {
                "details": "Read all PrizeSplitConfig structs stored in prizeSplits.",
                "returns": {
                  "_0": "Array of PrizeSplitConfig structs"
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "details": "Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig to update",
                  "prizeStrategySplit": "PrizeSplitConfig config struct"
                }
              },
              "setPrizeSplits((address,uint16)[])": {
                "details": "Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.",
                "params": {
                  "newPrizeSplits": "Array of PrizeSplitConfig structs"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_15646": {
                  "entryPoint": null,
                  "id": 15646,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_16594": {
                  "entryPoint": null,
                  "id": 16594,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_3961": {
                  "entryPoint": null,
                  "id": 3961,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 273,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IPrizePool_$11883_fromMemory": {
                  "entryPoint": 353,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_contract$_IPrizePool_$11883__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f9fc44fe3aa7ee21ea2cdd22b631ab2cd09324a8cfe0653e1e16eb1ea032e2b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 416,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1200:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "132:287:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "178:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "187:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "190:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "180:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "180:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "180:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "153:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "162:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "149:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "149:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "174:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "145:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "145:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "142:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "203:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "222:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "216:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "216:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "207:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "266:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "241:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "241:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "241:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "281:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "291:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "281:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "305:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "330:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "341:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "326:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "326:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "320:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "320:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "309:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "379:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "354:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "354:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "354:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "396:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "406:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "396:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IPrizePool_$11883_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "90:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "101:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "113:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "121:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:405:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "545:102:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "555:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "567:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "578:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "563:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "563:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "555:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "597:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "612:6:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "628:3:84",
                                                "type": "",
                                                "value": "160"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "633:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "624:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "624:11:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "637:1:84",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "620:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "620:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "608:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "608:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "590:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "590:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "590:51:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizePool_$11883__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "514:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "525:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "536:4:84",
                            "type": ""
                          }
                        ],
                        "src": "424:223:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "826:236:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "843:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "854:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "836:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "836:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "836:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "877:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "888:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "873:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "873:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "893:2:84",
                                    "type": "",
                                    "value": "46"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "866:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "866:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "866:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "916:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "927:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "912:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "912:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c697453747261746567792f7072697a652d706f6f6c2d6e6f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "932:34:84",
                                    "type": "",
                                    "value": "PrizeSplitStrategy/prize-pool-no"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "905:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "905:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "905:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "987:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "998:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "983:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "983:18:84"
                                  },
                                  {
                                    "hexValue": "742d7a65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1003:16:84",
                                    "type": "",
                                    "value": "t-zero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "976:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "976:44:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "976:44:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1029:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1041:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1052:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1037:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1037:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1029:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f9fc44fe3aa7ee21ea2cdd22b631ab2cd09324a8cfe0653e1e16eb1ea032e2b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "803:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "817:4:84",
                            "type": ""
                          }
                        ],
                        "src": "652:410:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1112:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1176:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1185:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1188:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1178:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1178:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1178:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1135:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1146:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1161:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1166:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1157:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1157:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1170:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1153:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1153:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1142:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1142:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1132:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1132:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1125:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1125:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1122:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1101:5:84",
                            "type": ""
                          }
                        ],
                        "src": "1067:131:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IPrizePool_$11883_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_contract$_IPrizePool_$11883__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_stringliteral_f9fc44fe3aa7ee21ea2cdd22b631ab2cd09324a8cfe0653e1e16eb1ea032e2b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 46)\n        mstore(add(headStart, 64), \"PrizeSplitStrategy/prize-pool-no\")\n        mstore(add(headStart, 96), \"t-zero-address\")\n        tail := add(headStart, 128)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b50604051620015aa380380620015aa833981016040819052620000349162000161565b818181620000428162000111565b506001600160a01b038116620000b55760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c697453747261746567792f7072697a652d706f6f6c2d6e6f60448201526d742d7a65726f2d6164647265737360901b606482015260840160405180910390fd5b606081901b6001600160601b0319166080526040516001600160a01b0380831682528316907f09e48df7857bd0c1e0d31bb8a85d42cf1874817895f171c917f6ee2cea73ec209060200160405180910390a250505050620001b9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156200017557600080fd5b82516200018281620001a0565b60208401519092506200019581620001a0565b809150509250929050565b6001600160a01b0381168114620001b657600080fd5b50565b60805160601c6113bd620001ed6000396000818161015201528181610b3901528181610dca0152610e9b01526113bd6000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c8063884bf67c1161008c578063cf713d6e11610066578063cf713d6e146101b0578063e30c3978146101eb578063e4fc6b6d146101fc578063f2fde38b1461021257600080fd5b8063884bf67c146101505780638da5cb5b1461018a578063cf1e3b591461019b57600080fd5b806345a9f187116100bd57806345a9f1871461011f5780634e71e0c814610140578063715018a61461014857600080fd5b8063056ea84f146100e4578063063a2298146100f95780631898f91d1461010c575b600080fd5b6100f76100f23660046111ce565b610225565b005b6100f7610107366004611120565b6104d4565b6100f761011a3660046110f4565b610949565b6101286103e881565b60405161ffff90911681526020015b60405180910390f35b6100f7610957565b6100f76109e5565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610137565b6000546001600160a01b0316610172565b6101a3610a5a565b604051610137919061123e565b6101c36101be36600461120c565b610ad1565b6040805182516001600160a01b0316815260209283015161ffff169281019290925201610137565b6001546001600160a01b0316610172565b610204610b34565b604051908152602001610137565b6100f76102203660046110d0565b610c28565b336102386000546001600160a01b031690565b6001600160a01b0316146102935760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b60025460ff82161061030d5760405162461bcd60e51b815260206004820152602160248201527f5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c6960448201527f7400000000000000000000000000000000000000000000000000000000000000606482015260840161028a565b81516001600160a01b03166103895760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161028a565b8160028260ff16815481106103a0576103a0611359565b60009182526020808320845192018054949091015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199094166001600160a01b0390921691909117929092179091556103f8610d64565b90506103e88111156104725760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161028a565b82600001516001600160a01b03167f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a348460200151846040516104c792919061ffff92909216825260ff16602082015260400190565b60405180910390a2505050565b336104e76000546001600160a01b031690565b6001600160a01b03161461053d5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161028a565b8060ff8111156105b55760405162461bcd60e51b815260206004820152602560248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c60448201527f656e677468000000000000000000000000000000000000000000000000000000606482015260840161028a565b60005b818110156108395760008484838181106105d4576105d4611359565b9050604002018036038101906105ea91906111b2565b80519091506001600160a01b03166106695760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161028a565b60025482106106ee576002805460018101825560009190915281517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9091018054602084015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199091166001600160a01b03909316929092179190911790556107d4565b60006002838154811061070357610703611359565b6000918252602091829020604080518082019091529101546001600160a01b03808216808452600160a01b90920461ffff1693830193909352845191935091161415806107605750806020015161ffff16826020015161ffff1614155b156107cb57816002848154811061077957610779611359565b6000918252602091829020835191018054939092015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199093166001600160a01b03909116179190911790556107d2565b5050610827565b505b80516020808301516040805161ffff90921682529181018590526001600160a01b03909216917f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a34910160405180910390a2505b8061083181611312565b9150506105b8565b505b6002548110156108bf5760028054600019810191908061085d5761085d611343565b6000828152602081208201600019908101805475ffffffffffffffffffffffffffffffffffffffffffff1916905590910190915560405182917f99fa473fdf53414bcd014cf6e7509fc58c68f7b86174767faa6ad5100cd5bae591a25061083b565b60006108c9610d64565b90506103e88111156109435760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161028a565b50505050565b6109538282610dc6565b5050565b6001546001600160a01b031633146109b15760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161028a565b6001546109c6906001600160a01b0316610f4b565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336109f86000546001600160a01b031690565b6001600160a01b031614610a4e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161028a565b610a586000610f4b565b565b60606002805480602002602001604051908101604052809291908181526020016000905b82821015610ac857600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff1681830152825260019092019101610a7e565b50505050905090565b604080518082019091526000808252602082015260028281548110610af857610af8611359565b6000918252602091829020604080518082019091529101546001600160a01b0381168252600160a01b900461ffff169181019190915292915050565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e6d8a94b6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610b9257600080fd5b505af1158015610ba6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bca9190611225565b905080610bd957600091505090565b6000610be482610fa8565b90507fddc9c30275a04c48091f24199f9c405765de34d979d6847f5b9798a57232d2e5610c1182846112fb565b60405190815260200160405180910390a150919050565b33610c3b6000546001600160a01b031690565b6001600160a01b031614610c915760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161028a565b6001600160a01b038116610d0d5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161028a565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6002546000908190815b81811015610dbe5760028181548110610d8957610d89611359565b600091825260209091200154610daa90600160a01b900461ffff16846112a2565b925080610db681611312565b915050610d6e565b509092915050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b158015610e2157600080fd5b505afa158015610e35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e599190611195565b6040517f5d8a776e0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152602482018590529192507f000000000000000000000000000000000000000000000000000000000000000090911690635d8a776e90604401600060405180830381600087803b158015610ee157600080fd5b505af1158015610ef5573d6000803e3d6000fd5b50505050806001600160a01b0316836001600160a01b03167f40b9722744d0ba62d8b847077d65a712335b6769aa37fff7ad7852ec299222a784604051610f3e91815260200190565b60405180910390a3505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000908290825b8181101561104f57600060028281548110610fcf57610fcf611359565b60009182526020808320604080518082019091529201546001600160a01b0381168352600160a01b900461ffff169082018190529092506103e89061101490896112dc565b61101e91906112ba565b905061102e826000015182610dc6565b61103881866112fb565b94505050808061104790611312565b915050610fb2565b50909392505050565b60006040828403121561106a57600080fd5b6040516040810181811067ffffffffffffffff8211171561109b57634e487b7160e01b600052604160045260246000fd5b60405290508082356110ac8161136f565b8152602083013561ffff811681146110c357600080fd5b6020919091015292915050565b6000602082840312156110e257600080fd5b81356110ed8161136f565b9392505050565b6000806040838503121561110757600080fd5b82356111128161136f565b946020939093013593505050565b6000806020838503121561113357600080fd5b823567ffffffffffffffff8082111561114b57600080fd5b818501915085601f83011261115f57600080fd5b81358181111561116e57600080fd5b8660208260061b850101111561118357600080fd5b60209290920196919550909350505050565b6000602082840312156111a757600080fd5b81516110ed8161136f565b6000604082840312156111c457600080fd5b6110ed8383611058565b600080606083850312156111e157600080fd5b6111eb8484611058565b9150604083013560ff8116811461120157600080fd5b809150509250929050565b60006020828403121561121e57600080fd5b5035919050565b60006020828403121561123757600080fd5b5051919050565b602080825282518282018190526000919060409081850190868401855b828110156112955761128584835180516001600160a01b0316825260209081015161ffff16910152565b928401929085019060010161125b565b5091979650505050505050565b600082198211156112b5576112b561132d565b500190565b6000826112d757634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156112f6576112f661132d565b500290565b60008282101561130d5761130d61132d565b500390565b60006000198214156113265761132661132d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461138457600080fd5b5056fea26469706673582212203ef05d597c45756cd963db420a325beb704a96d244ce29689657149a3038d43064736f6c63430008060033",
              "opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x15AA CODESIZE SUB DUP1 PUSH3 0x15AA DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x161 JUMP JUMPDEST DUP2 DUP2 DUP2 PUSH3 0x42 DUP2 PUSH3 0x111 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0xB5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C697453747261746567792F7072697A652D706F6F6C2D6E6F PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x742D7A65726F2D61646472657373 PUSH1 0x90 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x60 DUP2 SWAP1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND PUSH1 0x80 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND DUP3 MSTORE DUP4 AND SWAP1 PUSH32 0x9E48DF7857BD0C1E0D31BB8A85D42CF1874817895F171C917F6EE2CEA73EC20 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP PUSH3 0x1B9 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x175 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH3 0x182 DUP2 PUSH3 0x1A0 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x195 DUP2 PUSH3 0x1A0 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x1B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH2 0x13BD PUSH3 0x1ED PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x152 ADD MSTORE DUP2 DUP2 PUSH2 0xB39 ADD MSTORE DUP2 DUP2 PUSH2 0xDCA ADD MSTORE PUSH2 0xE9B ADD MSTORE PUSH2 0x13BD 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 0xDF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x884BF67C GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xCF713D6E GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xCF713D6E EQ PUSH2 0x1B0 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1EB JUMPI DUP1 PUSH4 0xE4FC6B6D EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x212 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x884BF67C EQ PUSH2 0x150 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x18A JUMPI DUP1 PUSH4 0xCF1E3B59 EQ PUSH2 0x19B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x45A9F187 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x45A9F187 EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x140 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x148 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x56EA84F EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x63A2298 EQ PUSH2 0xF9 JUMPI DUP1 PUSH4 0x1898F91D EQ PUSH2 0x10C JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0xF2 CALLDATASIZE PUSH1 0x4 PUSH2 0x11CE JUMP JUMPDEST PUSH2 0x225 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xF7 PUSH2 0x107 CALLDATASIZE PUSH1 0x4 PUSH2 0x1120 JUMP JUMPDEST PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x11A CALLDATASIZE PUSH1 0x4 PUSH2 0x10F4 JUMP JUMPDEST PUSH2 0x949 JUMP JUMPDEST PUSH2 0x128 PUSH2 0x3E8 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF7 PUSH2 0x957 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x9E5 JUMP JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x137 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x172 JUMP JUMPDEST PUSH2 0x1A3 PUSH2 0xA5A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x123E JUMP JUMPDEST PUSH2 0x1C3 PUSH2 0x1BE CALLDATASIZE PUSH1 0x4 PUSH2 0x120C JUMP JUMPDEST PUSH2 0xAD1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH2 0xFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x137 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x172 JUMP JUMPDEST PUSH2 0x204 PUSH2 0xB34 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x137 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x220 CALLDATASIZE PUSH1 0x4 PUSH2 0x10D0 JUMP JUMPDEST PUSH2 0xC28 JUMP JUMPDEST CALLER PUSH2 0x238 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x293 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH1 0xFF DUP3 AND LT PUSH2 0x30D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F6E6F6E6578697374656E742D7072697A6573706C69 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7400000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x28A JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x389 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x28A JUMP JUMPDEST DUP2 PUSH1 0x2 DUP3 PUSH1 0xFF AND DUP2 SLOAD DUP2 LT PUSH2 0x3A0 JUMPI PUSH2 0x3A0 PUSH2 0x1359 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP5 MLOAD SWAP3 ADD DUP1 SLOAD SWAP5 SWAP1 SWAP2 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE PUSH2 0x3F8 PUSH2 0xD64 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x472 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x28A JUMP JUMPDEST DUP3 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 DUP5 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x40 MLOAD PUSH2 0x4C7 SWAP3 SWAP2 SWAP1 PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH1 0xFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST CALLER PUSH2 0x4E7 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x53D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x28A JUMP JUMPDEST DUP1 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x5B5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C6974732D6C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x656E677468000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x28A JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x839 JUMPI PUSH1 0x0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x5D4 JUMPI PUSH2 0x5D4 PUSH2 0x1359 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MUL ADD DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5EA SWAP2 SWAP1 PUSH2 0x11B2 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x669 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x28A JUMP JUMPDEST PUSH1 0x2 SLOAD DUP3 LT PUSH2 0x6EE JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH32 0x405787FA12A823E0F2B7631CC41B3BA8828B3321CA811111FA75CD3AA3BB5ACE SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x7D4 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x703 JUMPI PUSH2 0x703 PUSH2 0x1359 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP3 DIV PUSH2 0xFFFF AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE DUP5 MLOAD SWAP2 SWAP4 POP SWAP2 AND EQ ISZERO DUP1 PUSH2 0x760 JUMPI POP DUP1 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND DUP3 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x7CB JUMPI DUP2 PUSH1 0x2 DUP5 DUP2 SLOAD DUP2 LT PUSH2 0x779 JUMPI PUSH2 0x779 PUSH2 0x1359 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD SWAP2 ADD DUP1 SLOAD SWAP4 SWAP1 SWAP3 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x7D2 JUMP JUMPDEST POP POP PUSH2 0x827 JUMP JUMPDEST POP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x40 DUP1 MLOAD PUSH2 0xFFFF SWAP1 SWAP3 AND DUP3 MSTORE SWAP2 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMPDEST DUP1 PUSH2 0x831 DUP2 PUSH2 0x1312 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x5B8 JUMP JUMPDEST POP JUMPDEST PUSH1 0x2 SLOAD DUP2 LT ISZERO PUSH2 0x8BF JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP1 PUSH2 0x85D JUMPI PUSH2 0x85D PUSH2 0x1343 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 DUP3 ADD PUSH1 0x0 NOT SWAP1 DUP2 ADD DUP1 SLOAD PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE SWAP1 SWAP2 ADD SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD DUP3 SWAP2 PUSH32 0x99FA473FDF53414BCD014CF6E7509FC58C68F7B86174767FAA6AD5100CD5BAE5 SWAP2 LOG2 POP PUSH2 0x83B JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C9 PUSH2 0xD64 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x943 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x28A JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x953 DUP3 DUP3 PUSH2 0xDC6 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x9B1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x28A JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x9C6 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF4B JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x9F8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA4E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x28A JUMP JUMPDEST PUSH2 0xA58 PUSH1 0x0 PUSH2 0xF4B JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0xAC8 JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP1 DUP5 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP2 DUP4 ADD MSTORE DUP3 MSTORE PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0xA7E JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xAF8 JUMPI PUSH2 0xAF8 PUSH2 0x1359 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE6D8A94B PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB92 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xBA6 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 0xBCA SWAP2 SWAP1 PUSH2 0x1225 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0xBD9 JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBE4 DUP3 PUSH2 0xFA8 JUMP JUMPDEST SWAP1 POP PUSH32 0xDDC9C30275A04C48091F24199F9C405765DE34D979D6847F5B9798A57232D2E5 PUSH2 0xC11 DUP3 DUP5 PUSH2 0x12FB JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0xC3B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC91 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x28A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xD0D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x28A JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xDBE JUMPI PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xD89 JUMPI PUSH2 0xD89 PUSH2 0x1359 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH2 0xDAA SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP5 PUSH2 0x12A2 JUMP JUMPDEST SWAP3 POP DUP1 PUSH2 0xDB6 DUP2 PUSH2 0x1312 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xD6E JUMP JUMPDEST POP SWAP1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC002C4D6 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xE21 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xE35 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 0xE59 SWAP2 SWAP1 PUSH2 0x1195 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x5D8A776E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP3 POP PUSH32 0x0 SWAP1 SWAP2 AND SWAP1 PUSH4 0x5D8A776E SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xEE1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xEF5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x40B9722744D0BA62D8B847077D65A712335B6769AA37FFF7AD7852EC299222A7 DUP5 PUSH1 0x40 MLOAD PUSH2 0xF3E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 DUP3 SWAP1 DUP3 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x104F JUMPI PUSH1 0x0 PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xFCF JUMPI PUSH2 0xFCF PUSH2 0x1359 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP3 POP PUSH2 0x3E8 SWAP1 PUSH2 0x1014 SWAP1 DUP10 PUSH2 0x12DC JUMP JUMPDEST PUSH2 0x101E SWAP2 SWAP1 PUSH2 0x12BA JUMP JUMPDEST SWAP1 POP PUSH2 0x102E DUP3 PUSH1 0x0 ADD MLOAD DUP3 PUSH2 0xDC6 JUMP JUMPDEST PUSH2 0x1038 DUP2 DUP7 PUSH2 0x12FB JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0x1047 SWAP1 PUSH2 0x1312 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xFB2 JUMP JUMPDEST POP SWAP1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x106A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x40 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x109B JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 POP DUP1 DUP3 CALLDATALOAD PUSH2 0x10AC DUP2 PUSH2 0x136F JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x10C3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x10ED DUP2 PUSH2 0x136F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1107 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1112 DUP2 PUSH2 0x136F JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1133 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x114B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x115F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x116E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x6 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1183 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x10ED DUP2 PUSH2 0x136F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10ED DUP4 DUP4 PUSH2 0x1058 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x60 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x11E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x11EB DUP5 DUP5 PUSH2 0x1058 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP4 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1201 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x121E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1237 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1295 JUMPI PUSH2 0x1285 DUP5 DUP4 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH2 0xFFFF AND SWAP2 ADD MSTORE JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x125B JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x12B5 JUMPI PUSH2 0x12B5 PUSH2 0x132D JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x12D7 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x12F6 JUMPI PUSH2 0x12F6 PUSH2 0x132D JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x130D JUMPI PUSH2 0x130D PUSH2 0x132D JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1326 JUMPI PUSH2 0x1326 PUSH2 0x132D JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1384 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 RETURNDATACOPY CREATE 0x5D MSIZE PUSH29 0x45756CD963DB420A325BEB704A96D244CE29689657149A3038D4306473 PUSH16 0x6C634300080600330000000000000000 ",
              "sourceMap": "113:297:74:-:0;;;176:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;246:6;254:10;246:6;1648:24:22;246:6:74;1648:9:22;:24::i;:::-;-1:-1:-1;;;;;;1534:33:63;::::1;1513:126;;;::::0;-1:-1:-1;;;1513:126:63;;854:2:84;1513:126:63::1;::::0;::::1;836:21:84::0;893:2;873:18;;;866:30;932:34;912:18;;;905:62;-1:-1:-1;;;983:18:84;;;976:44;1037:19;;1513:126:63::1;;;;;;;;1649:22;::::0;;;-1:-1:-1;;;;;;1649:22:63;::::1;::::0;1686:28:::1;::::0;-1:-1:-1;;;;;608:32:84;;;590:51;;1686:28:63;::::1;::::0;::::1;::::0;578:2:84;563:18;1686:28:63::1;;;;;;;1436:285:::0;;176:92:74;;113:297;;3470:174:22;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;;;;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:405:84:-;113:6;121;174:2;162:9;153:7;149:23;145:32;142:2;;;190:1;187;180:12;142:2;222:9;216:16;241:31;266:5;241:31;:::i;:::-;341:2;326:18;;320:25;291:5;;-1:-1:-1;354:33:84;320:25;354:33;:::i;:::-;406:7;396:17;;;132:287;;;;;:::o;1067:131::-;-1:-1:-1;;;;;1142:31:84;;1132:42;;1122:2;;1188:1;1185;1178:12;1122:2;1112:86;:::o;:::-;113:297:74;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@ONE_AS_FIXED_POINT_3_15255": {
                  "entryPoint": null,
                  "id": 15255,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_awardPrizeSplitAmount_15721": {
                  "entryPoint": 3526,
                  "id": 15721,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_distributePrizeSplits_15580": {
                  "entryPoint": 4008,
                  "id": 15580,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_4058": {
                  "entryPoint": 3915,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_totalPrizeSplitPercentageAmount_15521": {
                  "entryPoint": 3428,
                  "id": 15521,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@awardPrizeSplitAmount_16607": {
                  "entryPoint": 2377,
                  "id": 16607,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@claimOwnership_4038": {
                  "entryPoint": 2391,
                  "id": 4038,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@distribute_15680": {
                  "entryPoint": 2868,
                  "id": 15680,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizePool_15691": {
                  "entryPoint": null,
                  "id": 15691,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizeSplit_15270": {
                  "entryPoint": 2769,
                  "id": 15270,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getPrizeSplits_15282": {
                  "entryPoint": 2650,
                  "id": 15282,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_3970": {
                  "entryPoint": null,
                  "id": 3970,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3979": {
                  "entryPoint": null,
                  "id": 3979,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3993": {
                  "entryPoint": 2533,
                  "id": 3993,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setPrizeSplit_15485": {
                  "entryPoint": 549,
                  "id": 15485,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@setPrizeSplits_15427": {
                  "entryPoint": 1236,
                  "id": 15427,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@transferOwnership_4020": {
                  "entryPoint": 3112,
                  "id": 4020,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_struct_PrizeSplitConfig": {
                  "entryPoint": 4184,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 4304,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 4340,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_calldata_ptr_$dyn_calldata_ptr": {
                  "entryPoint": 4384,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_contract$_ITicket_$12213_fromMemory": {
                  "entryPoint": 4501,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr": {
                  "entryPoint": 4530,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptrt_uint8": {
                  "entryPoint": 4558,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 4620,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 4645,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_struct_PrizeSplitConfig": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 4670,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizePool_$11883__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr__to_t_struct$_PrizeSplitConfig_$11903_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16_t_uint256__to_t_uint16_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16_t_uint8__to_t_uint16_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 4770,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 4794,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint256": {
                  "entryPoint": 4828,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 4859,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 4882,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 4909,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x31": {
                  "entryPoint": 4931,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 4953,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 4975,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:10768:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "87:740:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "131:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "140:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "143:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "133:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "133:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "133:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "108:3:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "113:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "104:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "104:19:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "125:4:84",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "100:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "100:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "97:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "156:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "176:4:84",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "170:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "170:11:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "160:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "190:35:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "212:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "220:4:84",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "208:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "208:17:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "194:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "308:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "329:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "332:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "322:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "322:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "322:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "430:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "433:4:84",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "423:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "423:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "423:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "458:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "461:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "451:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "451:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "451:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "243:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "255:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "240:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "240:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "279:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "291:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "276:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "276:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "237:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "237:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "234:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:4:84",
                                    "type": "",
                                    "value": "0x40"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "498:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:24:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:24:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "518:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "527:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "518:5:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "542:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "570:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "557:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "557:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "546:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "614:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "589:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "589:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "589:33:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "638:6:84"
                                  },
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "646:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "631:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "631:23:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "631:23:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "663:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "695:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "706:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "691:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "691:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "678:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "678:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "667:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "764:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "773:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "776:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "766:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "766:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "766:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "732:7:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "745:7:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "754:6:84",
                                            "type": "",
                                            "value": "0xffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "741:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "741:20:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "729:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "729:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "722:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "722:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "719:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "800:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "808:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "796:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "796:15:84"
                                  },
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "813:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "789:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "789:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "789:32:84"
                            }
                          ]
                        },
                        "name": "abi_decode_struct_PrizeSplitConfig",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "58:9:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "69:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "77:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:813:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "902:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "948:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "957:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "960:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "950:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "950:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "950:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "923:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "932:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "919:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "919:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "944:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "915:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "915:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "912:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "973:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "999:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "986:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "986:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "977:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1043:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1018:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1018:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1018:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1058:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1068:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1058:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "868:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "879:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "891:6:84",
                            "type": ""
                          }
                        ],
                        "src": "832:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1171:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1217:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1226:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1229:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1219:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1219:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1219:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1192:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1201:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1188:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1188:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1213:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1184:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1184:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1181:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1242:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1268:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1255:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1255:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1246:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1312:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1287:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1287:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1287:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1327:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1337:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1327:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1351:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1378:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1389:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1374:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1374:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1361:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1361:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1351:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1129:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1140:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1152:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1160:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1084:315:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1546:510:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1592:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1601:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1604:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1594:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1594:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1594:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1567:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1576:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1563:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1563:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1588:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1559:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1559:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1556:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1617:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1644:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1631:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1631:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1621:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1663:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1673:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1667:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1718:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1727:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1730:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1720:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1720:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1720:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1706:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1714:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1703:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1703:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1700:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1743:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1757:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1768:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1753:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1753:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1747:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1823:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1832:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1835:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1825:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1825:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1825:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1802:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1806:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1798:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1798:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1813:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1794:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1794:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1787:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1787:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1784:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1848:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1875:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1862:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1862:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1852:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1905:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1914:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1917:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1907:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1907:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1907:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1893:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1901:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1890:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1890:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1887:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1979:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1988:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1991:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1981:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1981:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1981:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1944:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1952:1:84",
                                                "type": "",
                                                "value": "6"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1955:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1948:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1948:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1940:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1940:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1965:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1936:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1936:32:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1970:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1933:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1933:45:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1930:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2004:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2018:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2022:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2014:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2014:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2004:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2034:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "2044:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2034:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_calldata_ptr_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1504:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1515:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1527:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1535:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1404:652:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2159:170:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2205:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2214:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2217:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2207:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2207:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2207:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2180:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2189:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2176:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2176:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2201:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2172:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2172:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2169:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2230:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2249:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2243:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2243:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2234:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2293:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2268:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2268:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2268:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2308:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2318:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2308:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$12213_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2125:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2136:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2148:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2061:268:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2439:141:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2485:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2494:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2497:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2487:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2487:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2487:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2460:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2469:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2456:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2456:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2481:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2452:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2452:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2449:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2510:64:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2555:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2566:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeSplitConfig",
                                  "nodeType": "YulIdentifier",
                                  "src": "2520:34:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2520:54:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2510:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2405:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2416:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2428:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2334:246:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2705:283:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2751:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2760:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2763:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2753:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2753:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2753:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2726:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2735:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2722:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2722:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2747:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2718:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2718:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2715:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2776:64:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2821:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2832:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeSplitConfig",
                                  "nodeType": "YulIdentifier",
                                  "src": "2786:34:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2786:54:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2776:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2849:45:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2879:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2890:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2875:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2875:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2862:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2862:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2853:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2942:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2951:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2954:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2944:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2944:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2944:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2916:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2927:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2934:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2923:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2923:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2913:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2913:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2906:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2906:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2903:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2967:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2977:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2967:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptrt_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2663:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2674:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2686:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2694:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2585:403:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3063:110:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3109:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3118:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3121:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3111:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3111:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3111:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3084:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3093:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3080:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3080:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3105:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3076:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3076:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3073:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3134:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3157:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3144:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3144:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3134:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3029:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3040:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3052:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2993:180:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3259:103:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3305:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3314:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3317:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3307:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3307:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3307:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3280:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3289:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3276:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3276:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3301:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3272:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3272:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3269:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3330:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3346:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3340:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3340:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3330:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3225:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3236:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3248:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3178:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3427:159:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3444:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "3459:5:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3453:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3453:12:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3467:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3449:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3449:61:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3437:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3437:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3437:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3531:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3536:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3527:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3527:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3557:5:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3564:4:84",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3553:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3553:16:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3547:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3547:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3572:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3543:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3543:36:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3520:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3520:60:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3520:60:84"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_PrizeSplitConfig",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3411:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3418:3:84",
                            "type": ""
                          }
                        ],
                        "src": "3367:219:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3692:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3702:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3714:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3725:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3710:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3710:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3702:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3744:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3759:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3767:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3755:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3755:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3737:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3737:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3737:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3661:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3672:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3683:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3591:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3951:168:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3961:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3973:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3984:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3969:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3969:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3961:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4003:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4018:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4026:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4014:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4014:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3996:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3996:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3996:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4090:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4101:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4086:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4086:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4106:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4079:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4079:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4079:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3912:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3923:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3931:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3942:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3822:297:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4345:530:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4355:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4365:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4359:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4376:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4394:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4405:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4390:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4390:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4380:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4424:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4435:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4417:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4417:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4417:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4447:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "4458:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "4451:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4473:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4493:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4487:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4487:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4477:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4516:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4524:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4509:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4509:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4509:22:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4540:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4550:2:84",
                                "type": "",
                                "value": "64"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "4544:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4561:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4572:9:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4583:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4568:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4568:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "4561:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4595:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4613:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4621:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4609:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4609:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "4599:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4633:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4642:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4637:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4701:148:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "4756:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "4750:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4750:13:84"
                                        },
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4765:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_struct_PrizeSplitConfig",
                                        "nodeType": "YulIdentifier",
                                        "src": "4715:34:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4715:54:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4715:54:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4782:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4793:3:84"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4798:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4789:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4789:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4782:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4814:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "4828:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4836:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4824:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4824:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4814:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4663:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4666:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4660:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4660:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4674:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4676:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4685:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4688:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4681:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4681:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4676:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4656:3:84",
                                "statements": []
                              },
                              "src": "4652:197:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4858:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "4866:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4858:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4314:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4325:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4336:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4124:751:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5001:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5011:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5023:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5034:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5019:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5019:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5011:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5053:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5068:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5076:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5064:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5064:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5046:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5046:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5046:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizePool_$11883__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4970:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4981:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4992:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4880:246:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5305:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5322:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5333:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5315:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5315:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5315:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5356:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5367:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5352:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5352:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5372:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5345:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5345:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5345:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5395:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5406:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5391:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5391:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5411:26:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5384:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5384:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5384:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5447:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5459:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5470:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5455:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5455:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5447:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5282:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5296:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5131:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5658:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5675:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5686:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5668:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5668:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5668:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5709:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5720:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5705:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5705:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5725:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5698:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5698:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5698:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5748:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5759:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5744:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5744:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5764:33:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5737:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5737:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5737:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5807:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5819:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5830:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5815:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5815:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5807:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5635:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5649:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5484:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6018:236:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6035:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6046:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6028:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6028:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6028:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6069:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6080:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6065:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6065:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6085:2:84",
                                    "type": "",
                                    "value": "46"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6058:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6058:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6058:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6108:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6119:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6104:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6104:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d7065",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6124:34:84",
                                    "type": "",
                                    "value": "PrizeSplit/invalid-prizesplit-pe"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6097:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6097:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6097:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6179:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6190:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6175:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6175:18:84"
                                  },
                                  {
                                    "hexValue": "7263656e746167652d746f74616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6195:16:84",
                                    "type": "",
                                    "value": "rcentage-total"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6168:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6168:44:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6168:44:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6221:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6233:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6244:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6229:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6229:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6221:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5995:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6009:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5844:410:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6433:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6450:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6461:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6443:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6443:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6443:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6484:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6495:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6480:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6480:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6500:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6473:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6473:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6473:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6523:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6534:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6519:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6519:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d7461",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6539:34:84",
                                    "type": "",
                                    "value": "PrizeSplit/invalid-prizesplit-ta"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6512:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6512:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6512:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6594:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6605:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6590:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6590:18:84"
                                  },
                                  {
                                    "hexValue": "72676574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6610:6:84",
                                    "type": "",
                                    "value": "rget"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6583:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6583:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6583:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6626:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6638:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6649:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6634:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6634:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6626:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6410:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6424:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6259:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6838:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6855:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6866:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6848:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6848:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6848:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6889:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6900:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6885:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6885:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6905:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6878:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6878:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6878:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6928:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6939:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6924:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6924:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6944:34:84",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6917:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6917:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6917:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6999:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7010:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6995:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6995:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7015:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6988:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6988:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6988:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7032:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7044:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7055:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7040:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7040:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7032:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6815:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6829:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6664:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7244:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7261:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7272:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7254:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7254:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7254:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7295:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7306:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7291:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7291:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7311:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7284:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7284:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7284:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7334:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7345:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7330:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7330:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7350:34:84",
                                    "type": "",
                                    "value": "PrizeSplit/invalid-prizesplits-l"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7323:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7323:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7323:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7405:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7416:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7401:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7401:18:84"
                                  },
                                  {
                                    "hexValue": "656e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7421:7:84",
                                    "type": "",
                                    "value": "ength"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7394:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7394:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7394:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7438:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7450:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7461:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7446:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7446:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7438:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7221:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7235:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7070:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7650:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7667:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7678:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7660:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7660:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7660:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7701:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7712:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7697:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7697:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7717:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7690:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7690:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7690:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7740:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7751:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7736:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7736:18:84"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c69",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7756:34:84",
                                    "type": "",
                                    "value": "PrizeSplit/nonexistent-prizespli"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7729:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7729:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7729:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7811:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7822:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7807:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7807:18:84"
                                  },
                                  {
                                    "hexValue": "74",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7827:3:84",
                                    "type": "",
                                    "value": "t"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7800:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7800:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7800:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7840:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7852:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7863:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7848:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7848:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7840:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7627:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7641:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7476:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8049:104:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8059:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8071:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8082:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8067:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8067:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8059:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8129:6:84"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8137:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeSplitConfig",
                                  "nodeType": "YulIdentifier",
                                  "src": "8094:34:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8094:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8094:53:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr__to_t_struct$_PrizeSplitConfig_$11903_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8018:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8029:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8040:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7878:275:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8257:89:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8267:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8279:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8290:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8275:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8275:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8267:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8309:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8324:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8332:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8320:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8320:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8302:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8302:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8302:38:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8226:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8237:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8248:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8158:188:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8478:132:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8488:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8500:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8511:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8496:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8496:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8488:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8530:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8545:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8553:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8541:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8541:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8523:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8523:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8523:38:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8581:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8592:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8577:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8577:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8597:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8570:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8570:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8570:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16_t_uint256__to_t_uint16_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8439:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8450:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8458:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8469:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8351:259:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8740:143:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8750:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8762:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8773:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8758:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8758:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8750:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8792:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8807:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8815:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8803:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8803:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8785:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8785:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8785:38:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8843:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8854:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8839:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8839:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8863:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8871:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8859:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8859:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8832:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8832:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8832:45:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16_t_uint8__to_t_uint16_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8701:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8712:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8720:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8731:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8615:268:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8989:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8999:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9011:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9022:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9007:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9007:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8999:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9041:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9052:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9034:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9034:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9034:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8958:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8969:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8980:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8888:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9118:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9145:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9147:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9147:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9147:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9134:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "9141:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "9137:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9137:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9131:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9131:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9128:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9176:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9187:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9190:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9183:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9183:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "9176:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9101:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9104:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "9110:3:84",
                            "type": ""
                          }
                        ],
                        "src": "9070:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9249:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9280:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9301:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9304:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9294:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9294:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9294:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9402:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9405:4:84",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9395:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9395:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9395:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9430:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9433:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9423:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9423:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9423:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9269:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "9262:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9262:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9259:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9457:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9466:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9469:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "9462:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9462:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "9457:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9234:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9237:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "9243:1:84",
                            "type": ""
                          }
                        ],
                        "src": "9203:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9534:176:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9653:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9655:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9655:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9655:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "9565:1:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "9558:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9558:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "9551:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9551:17:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "9573:1:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9580:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          },
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "9648:1:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "9576:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9576:74:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9570:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9570:81:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9547:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9547:105:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9544:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9684:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9699:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9702:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "9695:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9695:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "9684:7:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9513:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9516:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "9522:7:84",
                            "type": ""
                          }
                        ],
                        "src": "9482:228:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9764:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9786:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9788:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9788:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9788:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9780:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9783:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9777:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9777:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9774:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9817:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9829:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9832:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "9825:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9825:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "9817:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9746:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9749:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "9755:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9715:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9892:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9983:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9985:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9985:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9985:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9908:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9915:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "9905:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9905:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9902:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10014:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "10025:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10032:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10021:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10021:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "10014:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "9874:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "9884:3:84",
                            "type": ""
                          }
                        ],
                        "src": "9845:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10077:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10094:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10097:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10087:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10087:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10087:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10191:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10194:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10184:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10184:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10184:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10215:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10218:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10208:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10208:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10208:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "10045:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10266:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10283:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10286:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10276:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10276:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10276:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10380:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10383:4:84",
                                    "type": "",
                                    "value": "0x31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10373:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10373:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10373:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10404:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10407:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10397:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10397:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10397:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x31",
                        "nodeType": "YulFunctionDefinition",
                        "src": "10234:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10455:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10472:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10475:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10465:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10465:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10465:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10569:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10572:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10562:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10562:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10562:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10593:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10596:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10586:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10586:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10586:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "10423:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10657:109:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10744:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10753:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10756:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "10746:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10746:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10746:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "10680:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "10691:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "10698:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "10687:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10687:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "10677:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10677:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "10670:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10670:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "10667:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "10646:5:84",
                            "type": ""
                          }
                        ],
                        "src": "10612:154:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_struct_PrizeSplitConfig(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x40) { revert(0, 0) }\n        let memPtr := mload(0x40)\n        let newFreePtr := add(memPtr, 0x40)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(0x40, newFreePtr)\n        value := memPtr\n        let value_1 := calldataload(headStart)\n        validator_revert_address(value_1)\n        mstore(memPtr, value_1)\n        let value_2 := calldataload(add(headStart, 32))\n        if iszero(eq(value_2, and(value_2, 0xffff))) { revert(0, 0) }\n        mstore(add(memPtr, 32), value_2)\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(6, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_2, 32)\n        value1 := length\n    }\n    function abi_decode_tuple_t_contract$_ITicket_$12213_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeSplitConfig(headStart, dataEnd)\n    }\n    function abi_decode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptrt_uint8(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeSplitConfig(headStart, dataEnd)\n        let value := calldataload(add(headStart, 64))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value1 := value\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_struct_PrizeSplitConfig(value, pos)\n    {\n        mstore(pos, and(mload(value), 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(pos, 0x20), and(mload(add(value, 0x20)), 0xffff))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        let _2 := 64\n        pos := add(headStart, _2)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            abi_encode_struct_PrizeSplitConfig(mload(srcPtr), pos)\n            pos := add(pos, _2)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_contract$_IPrizePool_$11883__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 46)\n        mstore(add(headStart, 64), \"PrizeSplit/invalid-prizesplit-pe\")\n        mstore(add(headStart, 96), \"rcentage-total\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"PrizeSplit/invalid-prizesplit-ta\")\n        mstore(add(headStart, 96), \"rget\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"PrizeSplit/invalid-prizesplits-l\")\n        mstore(add(headStart, 96), \"ength\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"PrizeSplit/nonexistent-prizespli\")\n        mstore(add(headStart, 96), \"t\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_struct$_PrizeSplitConfig_$11903_memory_ptr__to_t_struct$_PrizeSplitConfig_$11903_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        abi_encode_struct_PrizeSplitConfig(value0, headStart)\n    }\n    function abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffff))\n    }\n    function abi_encode_tuple_t_uint16_t_uint256__to_t_uint16_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_uint16_t_uint8__to_t_uint16_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffff))\n        mstore(add(headStart, 32), and(value1, 0xff))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n        product := mul(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x31()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x31)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "15603": [
                  {
                    "length": 32,
                    "start": 338
                  },
                  {
                    "length": 32,
                    "start": 2873
                  },
                  {
                    "length": 32,
                    "start": 3530
                  },
                  {
                    "length": 32,
                    "start": 3739
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100df5760003560e01c8063884bf67c1161008c578063cf713d6e11610066578063cf713d6e146101b0578063e30c3978146101eb578063e4fc6b6d146101fc578063f2fde38b1461021257600080fd5b8063884bf67c146101505780638da5cb5b1461018a578063cf1e3b591461019b57600080fd5b806345a9f187116100bd57806345a9f1871461011f5780634e71e0c814610140578063715018a61461014857600080fd5b8063056ea84f146100e4578063063a2298146100f95780631898f91d1461010c575b600080fd5b6100f76100f23660046111ce565b610225565b005b6100f7610107366004611120565b6104d4565b6100f761011a3660046110f4565b610949565b6101286103e881565b60405161ffff90911681526020015b60405180910390f35b6100f7610957565b6100f76109e5565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610137565b6000546001600160a01b0316610172565b6101a3610a5a565b604051610137919061123e565b6101c36101be36600461120c565b610ad1565b6040805182516001600160a01b0316815260209283015161ffff169281019290925201610137565b6001546001600160a01b0316610172565b610204610b34565b604051908152602001610137565b6100f76102203660046110d0565b610c28565b336102386000546001600160a01b031690565b6001600160a01b0316146102935760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b60025460ff82161061030d5760405162461bcd60e51b815260206004820152602160248201527f5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c6960448201527f7400000000000000000000000000000000000000000000000000000000000000606482015260840161028a565b81516001600160a01b03166103895760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161028a565b8160028260ff16815481106103a0576103a0611359565b60009182526020808320845192018054949091015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199094166001600160a01b0390921691909117929092179091556103f8610d64565b90506103e88111156104725760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161028a565b82600001516001600160a01b03167f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a348460200151846040516104c792919061ffff92909216825260ff16602082015260400190565b60405180910390a2505050565b336104e76000546001600160a01b031690565b6001600160a01b03161461053d5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161028a565b8060ff8111156105b55760405162461bcd60e51b815260206004820152602560248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c60448201527f656e677468000000000000000000000000000000000000000000000000000000606482015260840161028a565b60005b818110156108395760008484838181106105d4576105d4611359565b9050604002018036038101906105ea91906111b2565b80519091506001600160a01b03166106695760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161028a565b60025482106106ee576002805460018101825560009190915281517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9091018054602084015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199091166001600160a01b03909316929092179190911790556107d4565b60006002838154811061070357610703611359565b6000918252602091829020604080518082019091529101546001600160a01b03808216808452600160a01b90920461ffff1693830193909352845191935091161415806107605750806020015161ffff16826020015161ffff1614155b156107cb57816002848154811061077957610779611359565b6000918252602091829020835191018054939092015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199093166001600160a01b03909116179190911790556107d2565b5050610827565b505b80516020808301516040805161ffff90921682529181018590526001600160a01b03909216917f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a34910160405180910390a2505b8061083181611312565b9150506105b8565b505b6002548110156108bf5760028054600019810191908061085d5761085d611343565b6000828152602081208201600019908101805475ffffffffffffffffffffffffffffffffffffffffffff1916905590910190915560405182917f99fa473fdf53414bcd014cf6e7509fc58c68f7b86174767faa6ad5100cd5bae591a25061083b565b60006108c9610d64565b90506103e88111156109435760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161028a565b50505050565b6109538282610dc6565b5050565b6001546001600160a01b031633146109b15760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161028a565b6001546109c6906001600160a01b0316610f4b565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336109f86000546001600160a01b031690565b6001600160a01b031614610a4e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161028a565b610a586000610f4b565b565b60606002805480602002602001604051908101604052809291908181526020016000905b82821015610ac857600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff1681830152825260019092019101610a7e565b50505050905090565b604080518082019091526000808252602082015260028281548110610af857610af8611359565b6000918252602091829020604080518082019091529101546001600160a01b0381168252600160a01b900461ffff169181019190915292915050565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e6d8a94b6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610b9257600080fd5b505af1158015610ba6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bca9190611225565b905080610bd957600091505090565b6000610be482610fa8565b90507fddc9c30275a04c48091f24199f9c405765de34d979d6847f5b9798a57232d2e5610c1182846112fb565b60405190815260200160405180910390a150919050565b33610c3b6000546001600160a01b031690565b6001600160a01b031614610c915760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161028a565b6001600160a01b038116610d0d5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161028a565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6002546000908190815b81811015610dbe5760028181548110610d8957610d89611359565b600091825260209091200154610daa90600160a01b900461ffff16846112a2565b925080610db681611312565b915050610d6e565b509092915050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b158015610e2157600080fd5b505afa158015610e35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e599190611195565b6040517f5d8a776e0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152602482018590529192507f000000000000000000000000000000000000000000000000000000000000000090911690635d8a776e90604401600060405180830381600087803b158015610ee157600080fd5b505af1158015610ef5573d6000803e3d6000fd5b50505050806001600160a01b0316836001600160a01b03167f40b9722744d0ba62d8b847077d65a712335b6769aa37fff7ad7852ec299222a784604051610f3e91815260200190565b60405180910390a3505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000908290825b8181101561104f57600060028281548110610fcf57610fcf611359565b60009182526020808320604080518082019091529201546001600160a01b0381168352600160a01b900461ffff169082018190529092506103e89061101490896112dc565b61101e91906112ba565b905061102e826000015182610dc6565b61103881866112fb565b94505050808061104790611312565b915050610fb2565b50909392505050565b60006040828403121561106a57600080fd5b6040516040810181811067ffffffffffffffff8211171561109b57634e487b7160e01b600052604160045260246000fd5b60405290508082356110ac8161136f565b8152602083013561ffff811681146110c357600080fd5b6020919091015292915050565b6000602082840312156110e257600080fd5b81356110ed8161136f565b9392505050565b6000806040838503121561110757600080fd5b82356111128161136f565b946020939093013593505050565b6000806020838503121561113357600080fd5b823567ffffffffffffffff8082111561114b57600080fd5b818501915085601f83011261115f57600080fd5b81358181111561116e57600080fd5b8660208260061b850101111561118357600080fd5b60209290920196919550909350505050565b6000602082840312156111a757600080fd5b81516110ed8161136f565b6000604082840312156111c457600080fd5b6110ed8383611058565b600080606083850312156111e157600080fd5b6111eb8484611058565b9150604083013560ff8116811461120157600080fd5b809150509250929050565b60006020828403121561121e57600080fd5b5035919050565b60006020828403121561123757600080fd5b5051919050565b602080825282518282018190526000919060409081850190868401855b828110156112955761128584835180516001600160a01b0316825260209081015161ffff16910152565b928401929085019060010161125b565b5091979650505050505050565b600082198211156112b5576112b561132d565b500190565b6000826112d757634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156112f6576112f661132d565b500290565b60008282101561130d5761130d61132d565b500390565b60006000198214156113265761132661132d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461138457600080fd5b5056fea26469706673582212203ef05d597c45756cd963db420a325beb704a96d244ce29689657149a3038d43064736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xDF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x884BF67C GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xCF713D6E GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xCF713D6E EQ PUSH2 0x1B0 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1EB JUMPI DUP1 PUSH4 0xE4FC6B6D EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x212 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x884BF67C EQ PUSH2 0x150 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x18A JUMPI DUP1 PUSH4 0xCF1E3B59 EQ PUSH2 0x19B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x45A9F187 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x45A9F187 EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x140 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x148 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x56EA84F EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x63A2298 EQ PUSH2 0xF9 JUMPI DUP1 PUSH4 0x1898F91D EQ PUSH2 0x10C JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0xF2 CALLDATASIZE PUSH1 0x4 PUSH2 0x11CE JUMP JUMPDEST PUSH2 0x225 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xF7 PUSH2 0x107 CALLDATASIZE PUSH1 0x4 PUSH2 0x1120 JUMP JUMPDEST PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x11A CALLDATASIZE PUSH1 0x4 PUSH2 0x10F4 JUMP JUMPDEST PUSH2 0x949 JUMP JUMPDEST PUSH2 0x128 PUSH2 0x3E8 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF7 PUSH2 0x957 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x9E5 JUMP JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x137 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x172 JUMP JUMPDEST PUSH2 0x1A3 PUSH2 0xA5A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x123E JUMP JUMPDEST PUSH2 0x1C3 PUSH2 0x1BE CALLDATASIZE PUSH1 0x4 PUSH2 0x120C JUMP JUMPDEST PUSH2 0xAD1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH2 0xFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x137 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x172 JUMP JUMPDEST PUSH2 0x204 PUSH2 0xB34 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x137 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x220 CALLDATASIZE PUSH1 0x4 PUSH2 0x10D0 JUMP JUMPDEST PUSH2 0xC28 JUMP JUMPDEST CALLER PUSH2 0x238 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x293 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH1 0xFF DUP3 AND LT PUSH2 0x30D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F6E6F6E6578697374656E742D7072697A6573706C69 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7400000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x28A JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x389 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x28A JUMP JUMPDEST DUP2 PUSH1 0x2 DUP3 PUSH1 0xFF AND DUP2 SLOAD DUP2 LT PUSH2 0x3A0 JUMPI PUSH2 0x3A0 PUSH2 0x1359 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP5 MLOAD SWAP3 ADD DUP1 SLOAD SWAP5 SWAP1 SWAP2 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE PUSH2 0x3F8 PUSH2 0xD64 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x472 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x28A JUMP JUMPDEST DUP3 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 DUP5 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x40 MLOAD PUSH2 0x4C7 SWAP3 SWAP2 SWAP1 PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH1 0xFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST CALLER PUSH2 0x4E7 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x53D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x28A JUMP JUMPDEST DUP1 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x5B5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C6974732D6C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x656E677468000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x28A JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x839 JUMPI PUSH1 0x0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x5D4 JUMPI PUSH2 0x5D4 PUSH2 0x1359 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MUL ADD DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5EA SWAP2 SWAP1 PUSH2 0x11B2 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x669 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x28A JUMP JUMPDEST PUSH1 0x2 SLOAD DUP3 LT PUSH2 0x6EE JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH32 0x405787FA12A823E0F2B7631CC41B3BA8828B3321CA811111FA75CD3AA3BB5ACE SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x7D4 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x703 JUMPI PUSH2 0x703 PUSH2 0x1359 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP3 DIV PUSH2 0xFFFF AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE DUP5 MLOAD SWAP2 SWAP4 POP SWAP2 AND EQ ISZERO DUP1 PUSH2 0x760 JUMPI POP DUP1 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND DUP3 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x7CB JUMPI DUP2 PUSH1 0x2 DUP5 DUP2 SLOAD DUP2 LT PUSH2 0x779 JUMPI PUSH2 0x779 PUSH2 0x1359 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD SWAP2 ADD DUP1 SLOAD SWAP4 SWAP1 SWAP3 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x7D2 JUMP JUMPDEST POP POP PUSH2 0x827 JUMP JUMPDEST POP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x40 DUP1 MLOAD PUSH2 0xFFFF SWAP1 SWAP3 AND DUP3 MSTORE SWAP2 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMPDEST DUP1 PUSH2 0x831 DUP2 PUSH2 0x1312 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x5B8 JUMP JUMPDEST POP JUMPDEST PUSH1 0x2 SLOAD DUP2 LT ISZERO PUSH2 0x8BF JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP1 PUSH2 0x85D JUMPI PUSH2 0x85D PUSH2 0x1343 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 DUP3 ADD PUSH1 0x0 NOT SWAP1 DUP2 ADD DUP1 SLOAD PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE SWAP1 SWAP2 ADD SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD DUP3 SWAP2 PUSH32 0x99FA473FDF53414BCD014CF6E7509FC58C68F7B86174767FAA6AD5100CD5BAE5 SWAP2 LOG2 POP PUSH2 0x83B JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C9 PUSH2 0xD64 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x943 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x28A JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x953 DUP3 DUP3 PUSH2 0xDC6 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x9B1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x28A JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x9C6 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF4B JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x9F8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA4E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x28A JUMP JUMPDEST PUSH2 0xA58 PUSH1 0x0 PUSH2 0xF4B JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0xAC8 JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP1 DUP5 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP2 DUP4 ADD MSTORE DUP3 MSTORE PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0xA7E JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xAF8 JUMPI PUSH2 0xAF8 PUSH2 0x1359 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE6D8A94B PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB92 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xBA6 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 0xBCA SWAP2 SWAP1 PUSH2 0x1225 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0xBD9 JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBE4 DUP3 PUSH2 0xFA8 JUMP JUMPDEST SWAP1 POP PUSH32 0xDDC9C30275A04C48091F24199F9C405765DE34D979D6847F5B9798A57232D2E5 PUSH2 0xC11 DUP3 DUP5 PUSH2 0x12FB JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0xC3B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC91 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x28A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xD0D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x28A JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xDBE JUMPI PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xD89 JUMPI PUSH2 0xD89 PUSH2 0x1359 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH2 0xDAA SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP5 PUSH2 0x12A2 JUMP JUMPDEST SWAP3 POP DUP1 PUSH2 0xDB6 DUP2 PUSH2 0x1312 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xD6E JUMP JUMPDEST POP SWAP1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC002C4D6 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xE21 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xE35 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 0xE59 SWAP2 SWAP1 PUSH2 0x1195 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x5D8A776E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP3 POP PUSH32 0x0 SWAP1 SWAP2 AND SWAP1 PUSH4 0x5D8A776E SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xEE1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xEF5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x40B9722744D0BA62D8B847077D65A712335B6769AA37FFF7AD7852EC299222A7 DUP5 PUSH1 0x40 MLOAD PUSH2 0xF3E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 DUP3 SWAP1 DUP3 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x104F JUMPI PUSH1 0x0 PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xFCF JUMPI PUSH2 0xFCF PUSH2 0x1359 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP3 POP PUSH2 0x3E8 SWAP1 PUSH2 0x1014 SWAP1 DUP10 PUSH2 0x12DC JUMP JUMPDEST PUSH2 0x101E SWAP2 SWAP1 PUSH2 0x12BA JUMP JUMPDEST SWAP1 POP PUSH2 0x102E DUP3 PUSH1 0x0 ADD MLOAD DUP3 PUSH2 0xDC6 JUMP JUMPDEST PUSH2 0x1038 DUP2 DUP7 PUSH2 0x12FB JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0x1047 SWAP1 PUSH2 0x1312 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xFB2 JUMP JUMPDEST POP SWAP1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x106A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x40 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x109B JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 POP DUP1 DUP3 CALLDATALOAD PUSH2 0x10AC DUP2 PUSH2 0x136F JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x10C3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x10ED DUP2 PUSH2 0x136F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1107 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1112 DUP2 PUSH2 0x136F JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1133 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x114B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x115F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x116E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x6 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1183 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x10ED DUP2 PUSH2 0x136F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10ED DUP4 DUP4 PUSH2 0x1058 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x60 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x11E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x11EB DUP5 DUP5 PUSH2 0x1058 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP4 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1201 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x121E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1237 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1295 JUMPI PUSH2 0x1285 DUP5 DUP4 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH2 0xFFFF AND SWAP2 ADD MSTORE JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x125B JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x12B5 JUMPI PUSH2 0x12B5 PUSH2 0x132D JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x12D7 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x12F6 JUMPI PUSH2 0x12F6 PUSH2 0x132D JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x130D JUMPI PUSH2 0x130D PUSH2 0x132D JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1326 JUMPI PUSH2 0x1326 PUSH2 0x132D JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1384 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 RETURNDATACOPY CREATE 0x5D MSIZE PUSH29 0x45756CD963DB420A325BEB704A96D244CE29689657149A3038D4306473 PUSH16 0x6C634300080600330000000000000000 ",
              "sourceMap": "113:297:74:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3265:835:62;;;;;;:::i;:::-;;:::i;:::-;;942:2285;;;;;;:::i;:::-;;:::i;274:134:74:-;;;;;;:::i;:::-;;:::i;404:50:62:-;;450:4;404:50;;;;;8332:6:84;8320:19;;;8302:38;;8290:2;8275:18;404:50:62;;;;;;;;3147:129:22;;;:::i;2508:94::-;;;:::i;2147:101:63:-;2232:9;2147:101;;;-1:-1:-1;;;;;3755:55:84;;;3737:74;;3725:2;3710:18;2147:101:63;3692:125:84;1814:85:22;1860:7;1886:6;-1:-1:-1;;;;;1886:6:22;1814:85;;783:121:62;;;:::i;:::-;;;;;;;:::i;549:196::-;;;;;;:::i;:::-;;:::i;:::-;;;;3453:12:84;;-1:-1:-1;;;;;3449:61:84;3437:74;;3564:4;3553:16;;;3547:23;3572:6;3543:36;3527:14;;;3520:60;;;;8067:18;549:196:62;8049:104:84;2014:101:22;2095:13;;-1:-1:-1;;;;;2095:13:22;2014:101;;1813:296:63;;;:::i;:::-;;;9034:25:84;;;9022:2;9007:18;1813:296:63;8989:76:84;2751:234:22;;;;;;:::i;:::-;;:::i;3265:835:62:-;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;5333:2:84;3819:58:22;;;5315:21:84;5372:2;5352:18;;;5345:30;5411:26;5391:18;;;5384:54;5455:18;;3819:58:22;;;;;;;;;3442:12:62::1;:19:::0;3423:38:::1;::::0;::::1;;3415:84;;;::::0;-1:-1:-1;;;3415:84:62;;7678:2:84;3415:84:62::1;::::0;::::1;7660:21:84::0;7717:2;7697:18;;;7690:30;7756:34;7736:18;;;7729:62;7827:3;7807:18;;;7800:31;7848:19;;3415:84:62::1;7650:223:84::0;3415:84:62::1;3517:18:::0;;-1:-1:-1;;;;;3517:32:62::1;3509:81;;;::::0;-1:-1:-1;;;3509:81:62;;6461:2:84;3509:81:62::1;::::0;::::1;6443:21:84::0;6500:2;6480:18;;;6473:30;6539:34;6519:18;;;6512:62;6610:6;6590:18;;;6583:34;6634:19;;3509:81:62::1;6433:226:84::0;3509:81:62::1;3675:11;3642:12;3655:16;3642:30;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;:44;;:30;::::1;:44:::0;;;;;::::1;::::0;::::1;;-1:-1:-1::0;;;3642:44:62::1;-1:-1:-1::0;;3642:44:62;;;-1:-1:-1;;;;;3642:44:62;;::::1;::::0;;;;;;;::::1;::::0;;;3771:34:::1;:32;:34::i;:::-;3745:60:::0;-1:-1:-1;450:4:62::1;3823:39:::0;::::1;;3815:98;;;::::0;-1:-1:-1;;;3815:98:62;;6046:2:84;3815:98:62::1;::::0;::::1;6028:21:84::0;6085:2;6065:18;;;6058:30;6124:34;6104:18;;;6097:62;6195:16;6175:18;;;6168:44;6229:19;;3815:98:62::1;6018:236:84::0;3815:98:62::1;3999:11;:18;;;-1:-1:-1::0;;;;;3972:121:62::1;;4031:11;:22;;;4067:16;3972:121;;;;;;8815:6:84::0;8803:19;;;;8785:38;;8871:4;8859:17;8854:2;8839:18;;8832:45;8773:2;8758:18;;8740:143;3972:121:62::1;;;;;;;;3405:695;3265:835:::0;;:::o;942:2285::-;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;5333:2:84;3819:58:22;;;5315:21:84;5372:2;5352:18;;;5345:30;5411:26;5391:18;;;5384:54;5455:18;;3819:58:22;5305:174:84;3819:58:22;1108:15:62;1172::::1;1148:39:::0;::::1;;1140:89;;;::::0;-1:-1:-1;;;1140:89:62;;7272:2:84;1140:89:62::1;::::0;::::1;7254:21:84::0;7311:2;7291:18;;;7284:30;7350:34;7330:18;;;7323:62;7421:7;7401:18;;;7394:35;7446:19;;1140:89:62::1;7244:227:84::0;1140:89:62::1;1348:13;1343:1270;1375:20;1367:5;:28;1343:1270;;;1420:29;1452:15;;1468:5;1452:22;;;;;;;:::i;:::-;;;;;;1420:54;;;;;;;;;;:::i;:::-;1560:12:::0;;1420:54;;-1:-1:-1;;;;;;1560:26:62::1;1552:75;;;::::0;-1:-1:-1;;;1552:75:62;;6461:2:84;1552:75:62::1;::::0;::::1;6443:21:84::0;6500:2;6480:18;;;6473:30;6539:34;6519:18;;;6512:62;6610:6;6590:18;;;6583:34;6634:19;;1552:75:62::1;6433:226:84::0;1552:75:62::1;1786:12;:19:::0;:28;-1:-1:-1;1782:691:62::1;;1834:12;:24:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;1834:24:62;;;;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;;-1:-1:-1::0;;;1834:24:62::1;-1:-1:-1::0;;1834:24:62;;;-1:-1:-1;;;;;1834:24:62;;::::1;::::0;;;;;;;::::1;::::0;;1782:691:::1;;;1978:36;2017:12;2030:5;2017:19;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;1978:58:::1;::::0;;;;::::1;::::0;;;2017:19;::::1;1978:58:::0;-1:-1:-1;;;;;1978:58:62;;::::1;::::0;;;-1:-1:-1;;;1978:58:62;;::::1;;;::::0;;::::1;::::0;;;;2215:12;;1978:58;;-1:-1:-1;2215:35:62;::::1;;;::::0;:102:::1;;;2294:12;:23;;;2274:43;;:5;:16;;;:43;;;;2215:102;2190:269;;;2380:5;2358:12;2371:5;2358:19;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;:27;;:19;::::1;:27:::0;;;;;::::1;::::0;::::1;;-1:-1:-1::0;;;2358:27:62::1;-1:-1:-1::0;;2358:27:62;;;-1:-1:-1;;;;;2358:27:62;;::::1;::::0;;;;::::1;::::0;;2190:269:::1;;;2432:8;;;;2190:269;1879:594;1782:691;2564:12:::0;;2578:16:::1;::::0;;::::1;::::0;2550:52:::1;::::0;;8553:6:84;8541:19;;;8523:38;;8577:18;;;8570:34;;;-1:-1:-1;;;;;2550:52:62;;::::1;::::0;::::1;::::0;8496:18:84;2550:52:62::1;;;;;;;1406:1207;1343:1270;1397:7:::0;::::1;::::0;::::1;:::i;:::-;;;;1343:1270;;;;2740:254;2747:12;:19:::0;:42;-1:-1:-1;2740:254:62::1;;;2870:12;:19:::0;;-1:-1:-1;;2870:23:62;;;:12;:19;2921:18:::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;2921:18:62;;;;;-1:-1:-1;;2921:18:62;;;;;;;;;2958:25:::1;::::0;2976:6;;2958:25:::1;::::0;::::1;2791:203;2740:254;;;3052:23;3078:34;:32;:34::i;:::-;3052:60:::0;-1:-1:-1;450:4:62::1;3130:39:::0;::::1;;3122:98;;;::::0;-1:-1:-1;;;3122:98:62;;6046:2:84;3122:98:62::1;::::0;::::1;6028:21:84::0;6085:2;6065:18;;;6058:30;6124:34;6104:18;;;6097:62;6195:16;6175:18;;;6168:44;6229:19;;3122:98:62::1;6018:236:84::0;3122:98:62::1;1067:2160;;942:2285:::0;;:::o;274:134:74:-;363:38;386:6;394;363:22;:38::i;:::-;274:134;;:::o;3147:129:22:-;4050:13;;-1:-1:-1;;;;;4050:13:22;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:22;;5686:2:84;4028:71:22;;;5668:21:84;5725:2;5705:18;;;5698:30;5764:33;5744:18;;;5737:61;5815:18;;4028:71:22;5658:181:84;4028:71:22;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:22::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:22::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;5333:2:84;3819:58:22;;;5315:21:84;5372:2;5352:18;;;5345:30;5411:26;5391:18;;;5384:54;5455:18;;3819:58:22;5305:174:84;3819:58:22;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;783:121:62:-;841:25;885:12;878:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;878:19:62;;;;-1:-1:-1;;;878:19:62;;;;;;;;;;;;;;;;;;;;;;;;;783:121;:::o;549:196::-;-1:-1:-1;;;;;;;;;;;;;;;;;708:12:62;721:16;708:30;;;;;;;;:::i;:::-;;;;;;;;;;701:37;;;;;;;;;708:30;;701:37;-1:-1:-1;;;;;701:37:62;;;;-1:-1:-1;;;701:37:62;;;;;;;;;;;;;-1:-1:-1;;549:196:62:o;1813:296:63:-;1862:7;1881:13;1897:9;-1:-1:-1;;;;;1897:29:63;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1881:47;-1:-1:-1;1943:10:63;1939:24;;1962:1;1955:8;;;1813:296;:::o;1939:24::-;1974:22;1999:29;2022:5;1999:22;:29::i;:::-;1974:54;-1:-1:-1;2044:35:63;2056:22;1974:54;2056:5;:22;:::i;:::-;2044:35;;9034:25:84;;;9022:2;9007:18;2044:35:63;;;;;;;-1:-1:-1;2097:5:63;1813:296;-1:-1:-1;1813:296:63:o;2751:234:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;5333:2:84;3819:58:22;;;5315:21:84;5372:2;5352:18;;;5345:30;5411:26;5391:18;;;5384:54;5455:18;;3819:58:22;5305:174:84;3819:58:22;-1:-1:-1;;;;;2834:23:22;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:22;;6866:2:84;2826:73:22::1;::::0;::::1;6848:21:84::0;6905:2;6885:18;;;6878:30;6944:34;6924:18;;;6917:62;7015:7;6995:18;;;6988:35;7040:19;;2826:73:22::1;6838:227:84::0;2826:73:22::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:22::1;-1:-1:-1::0;;;;;2910:25:22;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:22::1;2751:234:::0;:::o;4431:365:62:-;4583:12;:19;4498:7;;;;;4613:139;4645:17;4637:5;:25;4613:139;;;4711:12;4724:5;4711:19;;;;;;;;:::i;:::-;;;;;;;;;;:30;4687:54;;-1:-1:-1;;;4711:30:62;;;;4687:54;;:::i;:::-;;-1:-1:-1;4664:7:62;;;;:::i;:::-;;;;4613:139;;;-1:-1:-1;4769:20:62;;4431:365;-1:-1:-1;;4431:365:62:o;2572:239:63:-;2662:24;2689:9;-1:-1:-1;;;;;2689:19:63;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2720:29;;;;;-1:-1:-1;;;;;4014:55:84;;;2720:29:63;;;3996:74:84;4086:18;;;4079:34;;;2662:48:63;;-1:-1:-1;2720:9:63;:15;;;;;;3969:18:84;;2720:29:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2796:7;-1:-1:-1;;;;;2764:40:63;2782:3;-1:-1:-1;;;;;2764:40:63;;2787:7;2764:40;;;;9034:25:84;;9022:2;9007:18;;8989:76;2764:40:63;;;;;;;;2652:159;2572:239;;:::o;3470:174:22:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;5043:681:62:-;5193:12;:19;5109:7;;5149:6;;5109:7;5223:467;5255:17;5247:5;:25;5223:467;;;5297:29;5329:12;5342:5;5329:19;;;;;;;;:::i;:::-;;;;;;;;;5297:51;;;;;;;;;5329:19;;5297:51;-1:-1:-1;;;;;5297:51:62;;;;-1:-1:-1;;;5297:51:62;;;;;;;;;;;;-1:-1:-1;5415:4:62;;5386:25;;:6;:25;:::i;:::-;5385:34;;;;:::i;:::-;5362:57;;5492:50;5515:5;:12;;;5529;5492:22;:50::i;:::-;5653:26;5667:12;5653:26;;:::i;:::-;;;5283:407;;5274:7;;;;;:::i;:::-;;;;5223:467;;;-1:-1:-1;5707:10:62;;5043:681;-1:-1:-1;;;5043:681:62:o;14:813:84:-;77:5;125:4;113:9;108:3;104:19;100:30;97:2;;;143:1;140;133:12;97:2;176:4;170:11;220:4;212:6;208:17;291:6;279:10;276:22;255:18;243:10;240:34;237:62;234:2;;;-1:-1:-1;;;329:1:84;322:88;433:4;430:1;423:15;461:4;458:1;451:15;234:2;492:4;485:24;527:6;-1:-1:-1;527:6:84;557:23;;589:33;557:23;589:33;:::i;:::-;631:23;;706:2;691:18;;678:32;754:6;741:20;;729:33;;719:2;;776:1;773;766:12;719:2;808;796:15;;;;789:32;87:740;;-1:-1:-1;;87:740:84:o;832:247::-;891:6;944:2;932:9;923:7;919:23;915:32;912:2;;;960:1;957;950:12;912:2;999:9;986:23;1018:31;1043:5;1018:31;:::i;:::-;1068:5;902:177;-1:-1:-1;;;902:177:84:o;1084:315::-;1152:6;1160;1213:2;1201:9;1192:7;1188:23;1184:32;1181:2;;;1229:1;1226;1219:12;1181:2;1268:9;1255:23;1287:31;1312:5;1287:31;:::i;:::-;1337:5;1389:2;1374:18;;;;1361:32;;-1:-1:-1;;;1171:228:84:o;1404:652::-;1527:6;1535;1588:2;1576:9;1567:7;1563:23;1559:32;1556:2;;;1604:1;1601;1594:12;1556:2;1644:9;1631:23;1673:18;1714:2;1706:6;1703:14;1700:2;;;1730:1;1727;1720:12;1700:2;1768:6;1757:9;1753:22;1743:32;;1813:7;1806:4;1802:2;1798:13;1794:27;1784:2;;1835:1;1832;1825:12;1784:2;1875;1862:16;1901:2;1893:6;1890:14;1887:2;;;1917:1;1914;1907:12;1887:2;1970:7;1965:2;1955:6;1952:1;1948:14;1944:2;1940:23;1936:32;1933:45;1930:2;;;1991:1;1988;1981:12;1930:2;2022;2014:11;;;;;2044:6;;-1:-1:-1;1546:510:84;;-1:-1:-1;;;;1546:510:84:o;2061:268::-;2148:6;2201:2;2189:9;2180:7;2176:23;2172:32;2169:2;;;2217:1;2214;2207:12;2169:2;2249:9;2243:16;2268:31;2293:5;2268:31;:::i;2334:246::-;2428:6;2481:2;2469:9;2460:7;2456:23;2452:32;2449:2;;;2497:1;2494;2487:12;2449:2;2520:54;2566:7;2555:9;2520:54;:::i;2585:403::-;2686:6;2694;2747:2;2735:9;2726:7;2722:23;2718:32;2715:2;;;2763:1;2760;2753:12;2715:2;2786:54;2832:7;2821:9;2786:54;:::i;:::-;2776:64;;2890:2;2879:9;2875:18;2862:32;2934:4;2927:5;2923:16;2916:5;2913:27;2903:2;;2954:1;2951;2944:12;2903:2;2977:5;2967:15;;;2705:283;;;;;:::o;2993:180::-;3052:6;3105:2;3093:9;3084:7;3080:23;3076:32;3073:2;;;3121:1;3118;3111:12;3073:2;-1:-1:-1;3144:23:84;;3063:110;-1:-1:-1;3063:110:84:o;3178:184::-;3248:6;3301:2;3289:9;3280:7;3276:23;3272:32;3269:2;;;3317:1;3314;3307:12;3269:2;-1:-1:-1;3340:16:84;;3259:103;-1:-1:-1;3259:103:84:o;4124:751::-;4365:2;4417:21;;;4487:13;;4390:18;;;4509:22;;;4336:4;;4365:2;4550;;4568:18;;;;4609:15;;;4336:4;4652:197;4666:6;4663:1;4660:13;4652:197;;;4715:54;4765:3;4756:6;4750:13;3453:12;;-1:-1:-1;;;;;3449:61:84;3437:74;;3564:4;3553:16;;;3547:23;3572:6;3543:36;3527:14;;3520:60;3427:159;4715:54;4789:12;;;;4824:15;;;;4688:1;4681:9;4652:197;;;-1:-1:-1;4866:3:84;;4345:530;-1:-1:-1;;;;;;;4345:530:84:o;9070:128::-;9110:3;9141:1;9137:6;9134:1;9131:13;9128:2;;;9147:18;;:::i;:::-;-1:-1:-1;9183:9:84;;9118:80::o;9203:274::-;9243:1;9269;9259:2;;-1:-1:-1;;;9301:1:84;9294:88;9405:4;9402:1;9395:15;9433:4;9430:1;9423:15;9259:2;-1:-1:-1;9462:9:84;;9249:228::o;9482:::-;9522:7;9648:1;-1:-1:-1;;9576:74:84;9573:1;9570:81;9565:1;9558:9;9551:17;9547:105;9544:2;;;9655:18;;:::i;:::-;-1:-1:-1;9695:9:84;;9534:176::o;9715:125::-;9755:4;9783:1;9780;9777:8;9774:2;;;9788:18;;:::i;:::-;-1:-1:-1;9825:9:84;;9764:76::o;9845:195::-;9884:3;-1:-1:-1;;9908:5:84;9905:77;9902:2;;;9985:18;;:::i;:::-;-1:-1:-1;10032:1:84;10021:13;;9892:148::o;10045:184::-;-1:-1:-1;;;10094:1:84;10087:88;10194:4;10191:1;10184:15;10218:4;10215:1;10208:15;10234:184;-1:-1:-1;;;10283:1:84;10276:88;10383:4;10380:1;10373:15;10407:4;10404:1;10397:15;10423:184;-1:-1:-1;;;10472:1:84;10465:88;10572:4;10569:1;10562:15;10596:4;10593:1;10586:15;10612:154;-1:-1:-1;;;;;10691:5:84;10687:54;10680:5;10677:65;10667:2;;10756:1;10753;10746:12;10667:2;10657:109;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1010600",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "ONE_AS_FIXED_POINT_3()": "216",
                "awardPrizeSplitAmount(address,uint256)": "infinite",
                "claimOwnership()": "54486",
                "distribute()": "infinite",
                "getPrizePool()": "infinite",
                "getPrizeSplit(uint256)": "4832",
                "getPrizeSplits()": "infinite",
                "owner()": "2376",
                "pendingOwner()": "2375",
                "renounceOwnership()": "28202",
                "setPrizeSplit((address,uint16),uint8)": "infinite",
                "setPrizeSplits((address,uint16)[])": "infinite",
                "transferOwnership(address)": "27988"
              }
            },
            "methodIdentifiers": {
              "ONE_AS_FIXED_POINT_3()": "45a9f187",
              "awardPrizeSplitAmount(address,uint256)": "1898f91d",
              "claimOwnership()": "4e71e0c8",
              "distribute()": "e4fc6b6d",
              "getPrizePool()": "884bf67c",
              "getPrizeSplit(uint256)": "cf713d6e",
              "getPrizeSplits()": "cf1e3b59",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setPrizeSplit((address,uint16),uint8)": "056ea84f",
              "setPrizeSplits((address,uint16)[])": "063a2298",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IPrizePool\",\"name\":\"_prizePool\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"contract IPrizePool\",\"name\":\"prizePool\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalPrizeCaptured\",\"type\":\"uint256\"}],\"name\":\"Distributed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"prizeAwarded\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"contract IControlledToken\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"PrizeSplitAwarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"target\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"ONE_AS_FIXED_POINT_3\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"\",\"type\":\"uint16\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"awardPrizeSplitAmount\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"distribute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizePool\",\"outputs\":[{\"internalType\":\"contract IPrizePool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_prizeSplitIndex\",\"type\":\"uint256\"}],\"name\":\"getPrizeSplit\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeSplits\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"_prizeSplit\",\"type\":\"tuple\"},{\"internalType\":\"uint8\",\"name\":\"_prizeSplitIndex\",\"type\":\"uint8\"}],\"name\":\"setPrizeSplit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"_newPrizeSplits\",\"type\":\"tuple[]\"}],\"name\":\"setPrizeSplits\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"distribute()\":{\"details\":\"Permissionless function to initialize distribution of interst\",\"returns\":{\"_0\":\"Prize captured from PrizePool\"}},\"getPrizePool()\":{\"returns\":{\"_0\":\"IPrizePool\"}},\"getPrizeSplit(uint256)\":{\"details\":\"Read PrizeSplitConfig struct from prizeSplits array.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig\"},\"returns\":{\"_0\":\"PrizeSplitConfig Single prize split config\"}},\"getPrizeSplits()\":{\"details\":\"Read all PrizeSplitConfig structs stored in prizeSplits.\",\"returns\":{\"_0\":\"Array of PrizeSplitConfig structs\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setPrizeSplit((address,uint16),uint8)\":{\"details\":\"Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig to update\",\"prizeStrategySplit\":\"PrizeSplitConfig config struct\"}},\"setPrizeSplits((address,uint16)[])\":{\"details\":\"Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\",\"params\":{\"newPrizeSplits\":\"Array of PrizeSplitConfig structs\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address)\":{\"notice\":\"Deployed Event\"},\"Distributed(uint256)\":{\"notice\":\"Emit when a strategy captures award amount from PrizePool.\"},\"PrizeSplitAwarded(address,uint256,address)\":{\"notice\":\"Emit when an individual prize split is awarded.\"},\"PrizeSplitRemoved(uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is removed.\"},\"PrizeSplitSet(address,uint16,uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is added or updated.\"}},\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"distribute()\":{\"notice\":\"Capture the award balance and distribute to prize splits.\"},\"getPrizePool()\":{\"notice\":\"Get PrizePool address\"},\"getPrizeSplit(uint256)\":{\"notice\":\"Read prize split config from active PrizeSplits.\"},\"getPrizeSplits()\":{\"notice\":\"Read all prize splits configs.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setPrizeSplit((address,uint16),uint8)\":{\"notice\":\"Updates a previously set prize split config.\"},\"setPrizeSplits((address,uint16)[])\":{\"notice\":\"Set and remove prize split(s) configs. Only callable by owner.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/PrizeSplitStrategyHarness.sol\":\"PrizeSplitStrategyHarness\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IPrizeSplit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IControlledToken.sol\\\";\\nimport \\\"./IPrizePool.sol\\\";\\n\\n/**\\n * @title Abstract prize split contract for adding unique award distribution to static addresses.\\n * @author PoolTogether Inc Team\\n */\\ninterface IPrizeSplit {\\n    /**\\n     * @notice Emit when an individual prize split is awarded.\\n     * @param user          User address being awarded\\n     * @param prizeAwarded  Awarded prize amount\\n     * @param token         Token address\\n     */\\n    event PrizeSplitAwarded(\\n        address indexed user,\\n        uint256 prizeAwarded,\\n        IControlledToken indexed token\\n    );\\n\\n    /**\\n     * @notice The prize split configuration struct.\\n     * @dev    The prize split configuration struct used to award prize splits during distribution.\\n     * @param target     Address of recipient receiving the prize split distribution\\n     * @param percentage Percentage of prize split using a 0-1000 range for single decimal precision i.e. 125 = 12.5%\\n     */\\n    struct PrizeSplitConfig {\\n        address target;\\n        uint16 percentage;\\n    }\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is added or updated.\\n     * @dev    Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.\\n     * @param target     Address of prize split recipient\\n     * @param percentage Percentage of prize split. Must be between 0 and 1000 for single decimal precision\\n     * @param index      Index of prize split in the prizeSplts array\\n     */\\n    event PrizeSplitSet(address indexed target, uint16 percentage, uint256 index);\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is removed.\\n     * @dev    Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.\\n     * @param target Index of a previously active prize split config\\n     */\\n    event PrizeSplitRemoved(uint256 indexed target);\\n\\n    /**\\n     * @notice Read prize split config from active PrizeSplits.\\n     * @dev    Read PrizeSplitConfig struct from prizeSplits array.\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig\\n     * @return PrizeSplitConfig Single prize split config\\n     */\\n    function getPrizeSplit(uint256 prizeSplitIndex) external view returns (PrizeSplitConfig memory);\\n\\n    /**\\n     * @notice Read all prize splits configs.\\n     * @dev    Read all PrizeSplitConfig structs stored in prizeSplits.\\n     * @return Array of PrizeSplitConfig structs\\n     */\\n    function getPrizeSplits() external view returns (PrizeSplitConfig[] memory);\\n\\n    /**\\n     * @notice Get PrizePool address\\n     * @return IPrizePool\\n     */\\n    function getPrizePool() external view returns (IPrizePool);\\n\\n    /**\\n     * @notice Set and remove prize split(s) configs. Only callable by owner.\\n     * @dev Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\\n     * @param newPrizeSplits Array of PrizeSplitConfig structs\\n     */\\n    function setPrizeSplits(PrizeSplitConfig[] calldata newPrizeSplits) external;\\n\\n    /**\\n     * @notice Updates a previously set prize split config.\\n     * @dev Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\\n     * @param prizeStrategySplit PrizeSplitConfig config struct\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig to update\\n     */\\n    function setPrizeSplit(PrizeSplitConfig memory prizeStrategySplit, uint8 prizeSplitIndex)\\n        external;\\n}\\n\",\"keccak256\":\"0xf9946a5bbe45641a0f86674135eb56310b3a97f09e5665fd1c11bc213d42d2ac\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IStrategy.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\ninterface IStrategy {\\n    /**\\n     * @notice Emit when a strategy captures award amount from PrizePool.\\n     * @param totalPrizeCaptured  Total prize captured from the PrizePool\\n     */\\n    event Distributed(uint256 totalPrizeCaptured);\\n\\n    /**\\n     * @notice Capture the award balance and distribute to prize splits.\\n     * @dev    Permissionless function to initialize distribution of interst\\n     * @return Prize captured from PrizePool\\n     */\\n    function distribute() external returns (uint256);\\n}\\n\",\"keccak256\":\"0x3c30617be7a8c311c320fe3b50c77c4270333ddcfe5b01822fcbe85e2db4623e\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"},\"contracts/prize-strategy/PrizeSplit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"../interfaces/IPrizeSplit.sol\\\";\\n\\n/**\\n * @title PrizeSplit Interface\\n * @author PoolTogether Inc Team\\n */\\nabstract contract PrizeSplit is IPrizeSplit, Ownable {\\n    /* ============ Global Variables ============ */\\n    PrizeSplitConfig[] internal _prizeSplits;\\n\\n    uint16 public constant ONE_AS_FIXED_POINT_3 = 1000;\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeSplit\\n    function getPrizeSplit(uint256 _prizeSplitIndex)\\n        external\\n        view\\n        override\\n        returns (PrizeSplitConfig memory)\\n    {\\n        return _prizeSplits[_prizeSplitIndex];\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function getPrizeSplits() external view override returns (PrizeSplitConfig[] memory) {\\n        return _prizeSplits;\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function setPrizeSplits(PrizeSplitConfig[] calldata _newPrizeSplits)\\n        external\\n        override\\n        onlyOwner\\n    {\\n        uint256 newPrizeSplitsLength = _newPrizeSplits.length;\\n        require(newPrizeSplitsLength <= type(uint8).max, \\\"PrizeSplit/invalid-prizesplits-length\\\");\\n\\n        // Add and/or update prize split configs using _newPrizeSplits PrizeSplitConfig structs array.\\n        for (uint256 index = 0; index < newPrizeSplitsLength; index++) {\\n            PrizeSplitConfig memory split = _newPrizeSplits[index];\\n\\n            // REVERT when setting the canonical burn address.\\n            require(split.target != address(0), \\\"PrizeSplit/invalid-prizesplit-target\\\");\\n\\n            // IF the CURRENT prizeSplits length is below the NEW prizeSplits\\n            // PUSH the PrizeSplit struct to end of the list.\\n            if (_prizeSplits.length <= index) {\\n                _prizeSplits.push(split);\\n            } else {\\n                // ELSE update an existing PrizeSplit struct with new parameters\\n                PrizeSplitConfig memory currentSplit = _prizeSplits[index];\\n\\n                // IF new PrizeSplit DOES NOT match the current PrizeSplit\\n                // WRITE to STORAGE with the new PrizeSplit\\n                if (\\n                    split.target != currentSplit.target ||\\n                    split.percentage != currentSplit.percentage\\n                ) {\\n                    _prizeSplits[index] = split;\\n                } else {\\n                    continue;\\n                }\\n            }\\n\\n            // Emit the added/updated prize split config.\\n            emit PrizeSplitSet(split.target, split.percentage, index);\\n        }\\n\\n        // Remove old prize splits configs. Match storage _prizesSplits.length with the passed newPrizeSplits.length\\n        while (_prizeSplits.length > newPrizeSplitsLength) {\\n            uint256 _index;\\n            unchecked {\\n                _index = _prizeSplits.length - 1;\\n            }\\n            _prizeSplits.pop();\\n            emit PrizeSplitRemoved(_index);\\n        }\\n\\n        // Total prize split do not exceed 100%\\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \\\"PrizeSplit/invalid-prizesplit-percentage-total\\\");\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function setPrizeSplit(PrizeSplitConfig memory _prizeSplit, uint8 _prizeSplitIndex)\\n        external\\n        override\\n        onlyOwner\\n    {\\n        require(_prizeSplitIndex < _prizeSplits.length, \\\"PrizeSplit/nonexistent-prizesplit\\\");\\n        require(_prizeSplit.target != address(0), \\\"PrizeSplit/invalid-prizesplit-target\\\");\\n\\n        // Update the prize split config\\n        _prizeSplits[_prizeSplitIndex] = _prizeSplit;\\n\\n        // Total prize split do not exceed 100%\\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \\\"PrizeSplit/invalid-prizesplit-percentage-total\\\");\\n\\n        // Emit updated prize split config\\n        emit PrizeSplitSet(\\n            _prizeSplit.target,\\n            _prizeSplit.percentage,\\n            _prizeSplitIndex\\n        );\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates total prize split percentage amount.\\n     * @dev Calculates total PrizeSplitConfig percentage(s) amount. Used to check the total does not exceed 100% of award distribution.\\n     * @return Total prize split(s) percentage amount\\n     */\\n    function _totalPrizeSplitPercentageAmount() internal view returns (uint256) {\\n        uint256 _tempTotalPercentage;\\n        uint256 prizeSplitsLength = _prizeSplits.length;\\n\\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\\n            _tempTotalPercentage += _prizeSplits[index].percentage;\\n        }\\n\\n        return _tempTotalPercentage;\\n    }\\n\\n    /**\\n     * @notice Distributes prize split(s).\\n     * @dev Distributes prize split(s) by awarding ticket or sponsorship tokens.\\n     * @param _prize Starting prize award amount\\n     * @return The remainder after splits are taken\\n     */\\n    function _distributePrizeSplits(uint256 _prize) internal returns (uint256) {\\n        uint256 _prizeTemp = _prize;\\n        uint256 prizeSplitsLength = _prizeSplits.length;\\n\\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\\n            PrizeSplitConfig memory split = _prizeSplits[index];\\n            uint256 _splitAmount = (_prize * split.percentage) / 1000;\\n\\n            // Award the prize split distribution amount.\\n            _awardPrizeSplitAmount(split.target, _splitAmount);\\n\\n            // Update the remaining prize amount after distributing the prize split percentage.\\n            _prizeTemp -= _splitAmount;\\n        }\\n\\n        return _prizeTemp;\\n    }\\n\\n    /**\\n     * @notice Mints ticket or sponsorship tokens to prize split recipient.\\n     * @dev Mints ticket or sponsorship tokens to prize split recipient via the linked PrizePool contract.\\n     * @param _target Recipient of minted tokens\\n     * @param _amount Amount of minted tokens\\n     */\\n    function _awardPrizeSplitAmount(address _target, uint256 _amount) internal virtual;\\n}\\n\",\"keccak256\":\"0x1d11be0738fa1cbcfd6ad33a417c30116cd202a311828e3cfe6a176eaee53dbe\",\"license\":\"GPL-3.0\"},\"contracts/prize-strategy/PrizeSplitStrategy.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./PrizeSplit.sol\\\";\\nimport \\\"../interfaces/IStrategy.sol\\\";\\nimport \\\"../interfaces/IPrizePool.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeSplitStrategy\\n  * @author PoolTogether Inc Team\\n  * @notice Captures PrizePool interest for PrizeReserve and additional PrizeSplit recipients.\\n            The PrizeSplitStrategy will have at minimum a single PrizeSplit with 100% of the captured\\n            interest transfered to the PrizeReserve. Additional PrizeSplits can be added, depending on\\n            the deployers requirements (i.e. percentage to charity). In contrast to previous PoolTogether\\n            iterations, interest can be captured independent of a new Draw. Ideally (to save gas) interest\\n            is only captured when also distributing the captured prize(s) to applicable Prize Distributor(s).\\n*/\\ncontract PrizeSplitStrategy is PrizeSplit, IStrategy {\\n    /**\\n     * @notice PrizePool address\\n     */\\n    IPrizePool internal immutable prizePool;\\n\\n    /**\\n     * @notice Deployed Event\\n     * @param owner Contract owner\\n     * @param prizePool Linked PrizePool contract\\n     */\\n    event Deployed(address indexed owner, IPrizePool prizePool);\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Deploy the PrizeSplitStrategy smart contract.\\n     * @param _owner     Owner address\\n     * @param _prizePool PrizePool address\\n     */\\n    constructor(address _owner, IPrizePool _prizePool) Ownable(_owner) {\\n        require(\\n            address(_prizePool) != address(0),\\n            \\\"PrizeSplitStrategy/prize-pool-not-zero-address\\\"\\n        );\\n        prizePool = _prizePool;\\n        emit Deployed(_owner, _prizePool);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IStrategy\\n    function distribute() external override returns (uint256) {\\n        uint256 prize = prizePool.captureAwardBalance();\\n\\n        if (prize == 0) return 0;\\n\\n        uint256 prizeRemaining = _distributePrizeSplits(prize);\\n\\n        emit Distributed(prize - prizeRemaining);\\n\\n        return prize;\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function getPrizePool() external view override returns (IPrizePool) {\\n        return prizePool;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Award ticket tokens to prize split recipient.\\n     * @dev Award ticket tokens to prize split recipient via the linked PrizePool contract.\\n     * @param _to Recipient of minted tokens.\\n     * @param _amount Amount of minted tokens.\\n     */\\n    function _awardPrizeSplitAmount(address _to, uint256 _amount) internal override {\\n        IControlledToken _ticket = prizePool.getTicket();\\n        prizePool.award(_to, _amount);\\n        emit PrizeSplitAwarded(_to, _amount, _ticket);\\n    }\\n}\\n\",\"keccak256\":\"0x96db683d90ff551b707be4868fa227c0d1be35d1f58897d084e09cc5a115913b\",\"license\":\"GPL-3.0\"},\"contracts/test/PrizeSplitStrategyHarness.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../prize-strategy/PrizeSplitStrategy.sol\\\";\\n\\ncontract PrizeSplitStrategyHarness is PrizeSplitStrategy {\\n    constructor(address _owner, IPrizePool _prizePool) PrizeSplitStrategy(_owner, _prizePool) {}\\n\\n    function awardPrizeSplitAmount(address target, uint256 amount) external {\\n        return _awardPrizeSplitAmount(target, amount);\\n    }\\n}\\n\",\"keccak256\":\"0x29d871aa8604214801c519b326f22dc464059ea0abe03dd0fe1cb9f57df1800f\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/test/PrizeSplitStrategyHarness.sol:PrizeSplitStrategyHarness",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/test/PrizeSplitStrategyHarness.sol:PrizeSplitStrategyHarness",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 15252,
                "contract": "contracts/test/PrizeSplitStrategyHarness.sol:PrizeSplitStrategyHarness",
                "label": "_prizeSplits",
                "offset": 0,
                "slot": "2",
                "type": "t_array(t_struct(PrizeSplitConfig)11903_storage)dyn_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(PrizeSplitConfig)11903_storage)dyn_storage": {
                "base": "t_struct(PrizeSplitConfig)11903_storage",
                "encoding": "dynamic_array",
                "label": "struct IPrizeSplit.PrizeSplitConfig[]",
                "numberOfBytes": "32"
              },
              "t_struct(PrizeSplitConfig)11903_storage": {
                "encoding": "inplace",
                "label": "struct IPrizeSplit.PrizeSplitConfig",
                "members": [
                  {
                    "astId": 11900,
                    "contract": "contracts/test/PrizeSplitStrategyHarness.sol:PrizeSplitStrategyHarness",
                    "label": "target",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_address"
                  },
                  {
                    "astId": 11902,
                    "contract": "contracts/test/PrizeSplitStrategyHarness.sol:PrizeSplitStrategyHarness",
                    "label": "percentage",
                    "offset": 20,
                    "slot": "0",
                    "type": "t_uint16"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint16": {
                "encoding": "inplace",
                "label": "uint16",
                "numberOfBytes": "2"
              }
            }
          },
          "userdoc": {
            "events": {
              "Deployed(address,address)": {
                "notice": "Deployed Event"
              },
              "Distributed(uint256)": {
                "notice": "Emit when a strategy captures award amount from PrizePool."
              },
              "PrizeSplitAwarded(address,uint256,address)": {
                "notice": "Emit when an individual prize split is awarded."
              },
              "PrizeSplitRemoved(uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is removed."
              },
              "PrizeSplitSet(address,uint16,uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is added or updated."
              }
            },
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "distribute()": {
                "notice": "Capture the award balance and distribute to prize splits."
              },
              "getPrizePool()": {
                "notice": "Get PrizePool address"
              },
              "getPrizeSplit(uint256)": {
                "notice": "Read prize split config from active PrizeSplits."
              },
              "getPrizeSplits()": {
                "notice": "Read all prize splits configs."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "notice": "Updates a previously set prize split config."
              },
              "setPrizeSplits((address,uint16)[])": {
                "notice": "Set and remove prize split(s) configs. Only callable by owner."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/test/RNGServiceMock.sol": {
        "RNGServiceMock": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "randomNumber",
                  "type": "uint256"
                }
              ],
              "name": "RandomNumberCompleted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                }
              ],
              "name": "RandomNumberRequested",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "getLastRequestId",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getRequestFee",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "_feeToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_requestFee",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "name": "isRequestComplete",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "name": "randomNumber",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "requestRandomNumber",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_random",
                  "type": "uint256"
                }
              ],
              "name": "setRandomNumber",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_feeToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_requestFee",
                  "type": "uint256"
                }
              ],
              "name": "setRequestFee",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "getLastRequestId()": {
                "returns": {
                  "requestId": "The last request id used in the last request"
                }
              },
              "getRequestFee()": {
                "returns": {
                  "_feeToken": "_feeToken",
                  "_requestFee": "_requestFee"
                }
              },
              "requestRandomNumber()": {
                "details": "Some services will complete the request immediately, others may have a time-delaySome services require payment in the form of a token, such as $LINK for Chainlink VRF",
                "returns": {
                  "_0": "The ID of the request used to get the results of the RNG service",
                  "_1": "The block number at which the RNG service will start generating time-delayed randomness. The calling contract should \"lock\" all activity until the result is available via the `requestId`"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50610270806100206000396000f3fe608060405234801561001057600080fd5b506004361061007d5760003560e01c80638678a7b21161005b5780638678a7b21461010a5780639d2a5f981461011e578063d6bfea2814610141578063de1760fd1461015657600080fd5b80630d37b5371461008257806319c2b4c3146100d75780633a19b9bc146100e6575b600080fd5b6100a660015460025473ffffffffffffffffffffffffffffffffffffffff90911691565b6040805173ffffffffffffffffffffffffffffffffffffffff90931683526020830191909152015b60405180910390f35b604051600181526020016100ce565b6100fa6100f436600461020d565b50600190565b60405190151581526020016100ce565b6040805160018082526020820152016100ce565b61013361012c36600461020d565b5060005490565b6040519081526020016100ce565b61015461014f3660046101f4565b600055565b005b6101546101643660046101af565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9390931692909217909155600255565b600080604083850312156101c257600080fd5b823573ffffffffffffffffffffffffffffffffffffffff811681146101e657600080fd5b946020939093013593505050565b60006020828403121561020657600080fd5b5035919050565b60006020828403121561021f57600080fd5b813563ffffffff8116811461023357600080fd5b939250505056fea2646970667358221220dffa4bb926ba2058ce1c9f3ac8ed96f6245ebe1f8212a5111a8c09b94c3bff9364736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x270 DUP1 PUSH2 0x20 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 0x7D JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8678A7B2 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x8678A7B2 EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0x9D2A5F98 EQ PUSH2 0x11E JUMPI DUP1 PUSH4 0xD6BFEA28 EQ PUSH2 0x141 JUMPI DUP1 PUSH4 0xDE1760FD EQ PUSH2 0x156 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xD37B537 EQ PUSH2 0x82 JUMPI DUP1 PUSH4 0x19C2B4C3 EQ PUSH2 0xD7 JUMPI DUP1 PUSH4 0x3A19B9BC EQ PUSH2 0xE6 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA6 PUSH1 0x1 SLOAD PUSH1 0x2 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xCE JUMP JUMPDEST PUSH2 0xFA PUSH2 0xF4 CALLDATASIZE PUSH1 0x4 PUSH2 0x20D JUMP JUMPDEST POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xCE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE ADD PUSH2 0xCE JUMP JUMPDEST PUSH2 0x133 PUSH2 0x12C CALLDATASIZE PUSH1 0x4 PUSH2 0x20D JUMP JUMPDEST POP PUSH1 0x0 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xCE JUMP JUMPDEST PUSH2 0x154 PUSH2 0x14F CALLDATASIZE PUSH1 0x4 PUSH2 0x1F4 JUMP JUMPDEST PUSH1 0x0 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x154 PUSH2 0x164 CALLDATASIZE PUSH1 0x4 PUSH2 0x1AF JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP4 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE PUSH1 0x2 SSTORE JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x206 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x21F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x233 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDF STATICCALL 0x4B 0xB9 0x26 0xBA KECCAK256 PC 0xCE SHR SWAP16 GASPRICE 0xC8 0xED SWAP7 0xF6 0x24 0x5E 0xBE 0x1F DUP3 SLT 0xA5 GT BYTE DUP13 MULMOD 0xB9 0x4C EXTCODESIZE SELFDESTRUCT SWAP4 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "140:1052:75:-:0;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@getLastRequestId_16628": {
                  "entryPoint": null,
                  "id": 16628,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getRequestFee_16658": {
                  "entryPoint": null,
                  "id": 16658,
                  "parameterSlots": 0,
                  "returnSlots": 2
                },
                "@isRequestComplete_16692": {
                  "entryPoint": null,
                  "id": 16692,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@randomNumber_16703": {
                  "entryPoint": null,
                  "id": 16703,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@requestRandomNumber_16681": {
                  "entryPoint": null,
                  "id": 16681,
                  "parameterSlots": 0,
                  "returnSlots": 2
                },
                "@setRandomNumber_16668": {
                  "entryPoint": null,
                  "id": 16668,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setRequestFee_16644": {
                  "entryPoint": null,
                  "id": 16644,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 431,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 500,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32": {
                  "entryPoint": 525,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_uint32__to_t_uint32_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:2028:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "101:290:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "147:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "156:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "159:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "149:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "149:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "149:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "122:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "131:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "118:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "118:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "143:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "172:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "198:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "185:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "185:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "176:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "294:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "303:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "306:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "296:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "296:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "296:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "230:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "241:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "248:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "237:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "237:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "227:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "227:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "220:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "220:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "217:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "319:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "329:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "319:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "343:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "370:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "381:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "366:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "366:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "353:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "353:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "343:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "59:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "70:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "82:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "90:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:377:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "466:110:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "512:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "521:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "524:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "514:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "514:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "487:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "496:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "483:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "483:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "508:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "479:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "479:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "476:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "537:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "560:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "547:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "547:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "537:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "432:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "443:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "455:6:84",
                            "type": ""
                          }
                        ],
                        "src": "396:180:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "650:207:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "696:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "705:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "708:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "698:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "698:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "698:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "671:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "680:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "667:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "667:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "692:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "663:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "663:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "660:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "721:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "747:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "734:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "734:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "725:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "811:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "820:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "823:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "813:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "813:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "813:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "779:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "790:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "797:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "786:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "786:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "776:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "776:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "769:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "769:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "766:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "836:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "846:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "836:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "616:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "627:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "639:6:84",
                            "type": ""
                          }
                        ],
                        "src": "581:276:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "991:168:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1001:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1013:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1024:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1009:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1009:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1001:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1043:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "1058:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1066:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1054:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1054:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1036:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1036:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1036:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1130:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1141:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1126:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1126:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1146:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1119:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1119:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1119:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "952:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "963:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "971:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "982:4:84",
                            "type": ""
                          }
                        ],
                        "src": "862:297:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1259:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1269:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1281:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1292:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1277:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1277:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1269:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1311:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "1336:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1329:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1329:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "1322:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1322:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1304:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1304:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1304:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1228:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1239:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1250:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1164:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1457:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1467:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1479:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1490:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1475:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1475:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1467:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1509:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1520:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1502:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1502:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1502:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1426:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1437:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1448:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1356:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1637:93:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1647:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1659:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1670:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1655:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1655:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1647:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1689:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "1704:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1712:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1700:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1700:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1682:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1682:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1682:42:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1606:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1617:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1628:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1538:192:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1860:166:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1870:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1882:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1893:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1878:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1878:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1870:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1905:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1915:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1909:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1941:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "1956:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1964:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1952:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1952:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1934:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1934:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1934:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1988:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1999:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1984:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1984:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2008:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2016:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2004:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2004:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1977:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1977:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1977:43:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint32__to_t_uint32_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1821:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1832:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1840:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1851:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1735:291:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_uint32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint32_t_uint32__to_t_uint32_t_uint32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        let _1 := 0xffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b506004361061007d5760003560e01c80638678a7b21161005b5780638678a7b21461010a5780639d2a5f981461011e578063d6bfea2814610141578063de1760fd1461015657600080fd5b80630d37b5371461008257806319c2b4c3146100d75780633a19b9bc146100e6575b600080fd5b6100a660015460025473ffffffffffffffffffffffffffffffffffffffff90911691565b6040805173ffffffffffffffffffffffffffffffffffffffff90931683526020830191909152015b60405180910390f35b604051600181526020016100ce565b6100fa6100f436600461020d565b50600190565b60405190151581526020016100ce565b6040805160018082526020820152016100ce565b61013361012c36600461020d565b5060005490565b6040519081526020016100ce565b61015461014f3660046101f4565b600055565b005b6101546101643660046101af565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9390931692909217909155600255565b600080604083850312156101c257600080fd5b823573ffffffffffffffffffffffffffffffffffffffff811681146101e657600080fd5b946020939093013593505050565b60006020828403121561020657600080fd5b5035919050565b60006020828403121561021f57600080fd5b813563ffffffff8116811461023357600080fd5b939250505056fea2646970667358221220dffa4bb926ba2058ce1c9f3ac8ed96f6245ebe1f8212a5111a8c09b94c3bff9364736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x7D JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8678A7B2 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x8678A7B2 EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0x9D2A5F98 EQ PUSH2 0x11E JUMPI DUP1 PUSH4 0xD6BFEA28 EQ PUSH2 0x141 JUMPI DUP1 PUSH4 0xDE1760FD EQ PUSH2 0x156 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xD37B537 EQ PUSH2 0x82 JUMPI DUP1 PUSH4 0x19C2B4C3 EQ PUSH2 0xD7 JUMPI DUP1 PUSH4 0x3A19B9BC EQ PUSH2 0xE6 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA6 PUSH1 0x1 SLOAD PUSH1 0x2 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xCE JUMP JUMPDEST PUSH2 0xFA PUSH2 0xF4 CALLDATASIZE PUSH1 0x4 PUSH2 0x20D JUMP JUMPDEST POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xCE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE ADD PUSH2 0xCE JUMP JUMPDEST PUSH2 0x133 PUSH2 0x12C CALLDATASIZE PUSH1 0x4 PUSH2 0x20D JUMP JUMPDEST POP PUSH1 0x0 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xCE JUMP JUMPDEST PUSH2 0x154 PUSH2 0x14F CALLDATASIZE PUSH1 0x4 PUSH2 0x1F4 JUMP JUMPDEST PUSH1 0x0 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x154 PUSH2 0x164 CALLDATASIZE PUSH1 0x4 PUSH2 0x1AF JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP4 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE PUSH1 0x2 SSTORE JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x206 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x21F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x233 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDF STATICCALL 0x4B 0xB9 0x26 0xBA KECCAK256 PC 0xCE SHR SWAP16 GASPRICE 0xC8 0xED SWAP7 0xF6 0x24 0x5E 0xBE 0x1F DUP3 SLT 0xA5 GT BYTE DUP13 MULMOD 0xB9 0x4C EXTCODESIZE SELFDESTRUCT SWAP4 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "140:1052:75:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;592:179;;743:8;;753:10;;743:8;;;;;592:179;;;;;1066:42:84;1054:55;;;1036:74;;1141:2;1126:18;;1119:34;;;;1009:18;592:179:75;;;;;;;;280:103;;;375:1;1682:42:84;;1670:2;1655:18;280:103:75;1637:93:84;982:101:75;;;;;;:::i;:::-;-1:-1:-1;1072:4:75;;982:101;;;;1329:14:84;;1322:22;1304:41;;1292:2;1277:18;982:101:75;1259:92:84;867:109:75;;;;964:1;1934:34:84;;;1999:2;1984:18;;1977:43;1878:18;867:109:75;1860:166:84;1089:101:75;;;;;;:::i;:::-;-1:-1:-1;1151:7:75;1177:6;;1089:101;;;;1502:25:84;;;1490:2;1475:18;1089:101:75;1457:76:84;777:84:75;;;;;;:::i;:::-;838:6;:16;777:84;;;389:143;;;;;;:::i;:::-;471:8;:20;;;;;;;;;;;;;;;;501:10;:24;389:143;14:377:84;82:6;90;143:2;131:9;122:7;118:23;114:32;111:2;;;159:1;156;149:12;111:2;198:9;185:23;248:42;241:5;237:54;230:5;227:65;217:2;;306:1;303;296:12;217:2;329:5;381:2;366:18;;;;353:32;;-1:-1:-1;;;101:290:84:o;396:180::-;455:6;508:2;496:9;487:7;483:23;479:32;476:2;;;524:1;521;514:12;476:2;-1:-1:-1;547:23:84;;466:110;-1:-1:-1;466:110:84:o;581:276::-;639:6;692:2;680:9;671:7;667:23;663:32;660:2;;;708:1;705;698:12;660:2;747:9;734:23;797:10;790:5;786:22;779:5;776:33;766:2;;823:1;820;813:12;766:2;846:5;650:207;-1:-1:-1;;;650:207:84:o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "124800",
                "executionCost": "171",
                "totalCost": "124971"
              },
              "external": {
                "getLastRequestId()": "200",
                "getRequestFee()": "4433",
                "isRequestComplete(uint32)": "359",
                "randomNumber(uint32)": "2430",
                "requestRandomNumber()": "195",
                "setRandomNumber(uint256)": "22356",
                "setRequestFee(address,uint256)": "46678"
              }
            },
            "methodIdentifiers": {
              "getLastRequestId()": "19c2b4c3",
              "getRequestFee()": "0d37b537",
              "isRequestComplete(uint32)": "3a19b9bc",
              "randomNumber(uint32)": "9d2a5f98",
              "requestRandomNumber()": "8678a7b2",
              "setRandomNumber(uint256)": "d6bfea28",
              "setRequestFee(address,uint256)": "de1760fd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"randomNumber\",\"type\":\"uint256\"}],\"name\":\"RandomNumberCompleted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RandomNumberRequested\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"getLastRequestId\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getRequestFee\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"_feeToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_requestFee\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"name\":\"isRequestComplete\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"name\":\"randomNumber\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"requestRandomNumber\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_random\",\"type\":\"uint256\"}],\"name\":\"setRandomNumber\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_feeToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_requestFee\",\"type\":\"uint256\"}],\"name\":\"setRequestFee\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"getLastRequestId()\":{\"returns\":{\"requestId\":\"The last request id used in the last request\"}},\"getRequestFee()\":{\"returns\":{\"_feeToken\":\"_feeToken\",\"_requestFee\":\"_requestFee\"}},\"requestRandomNumber()\":{\"details\":\"Some services will complete the request immediately, others may have a time-delaySome services require payment in the form of a token, such as $LINK for Chainlink VRF\",\"returns\":{\"_0\":\"The ID of the request used to get the results of the RNG service\",\"_1\":\"The block number at which the RNG service will start generating time-delayed randomness. The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\"}}},\"version\":1},\"userdoc\":{\"events\":{\"RandomNumberCompleted(uint32,uint256)\":{\"notice\":\"Emitted when an existing request for a random number has been completed\"},\"RandomNumberRequested(uint32,address)\":{\"notice\":\"Emitted when a new request for a random number has been submitted\"}},\"kind\":\"user\",\"methods\":{\"getLastRequestId()\":{\"notice\":\"Gets the last request id used by the RNG service\"},\"requestRandomNumber()\":{\"notice\":\"Sends a request for a random number to the 3rd-party service\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/RNGServiceMock.sol\":\"RNGServiceMock\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Random Number Generator Interface\\n * @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\n */\\ninterface RNGInterface {\\n  /**\\n   * @notice Emitted when a new request for a random number has been submitted\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param sender The indexed address of the sender of the request\\n   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /**\\n   * @notice Emitted when an existing request for a random number has been completed\\n   * @param requestId The indexed ID of the request used to get the results of the RNG service\\n   * @param randomNumber The random number produced by the 3rd-party service\\n   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /**\\n   * @notice Gets the last request id used by the RNG service\\n   * @return requestId The last request id used in the last request\\n   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /**\\n   * @notice Gets the Fee for making a Request against an RNG service\\n   * @return feeToken The address of the token that is used to pay fees\\n   * @return requestFee The fee required to be paid to make a request\\n   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /**\\n   * @notice Sends a request for a random number to the 3rd-party service\\n   * @dev Some services will complete the request immediately, others may have a time-delay\\n   * @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n   * @return requestId The ID of the request used to get the results of the RNG service\\n   * @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /**\\n   * @notice Checks if the request for randomness from the 3rd-party service has completed\\n   * @dev For time-delayed requests, this function is used to check/confirm completion\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return isCompleted True if the request has completed and a random number is available, false otherwise\\n   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /**\\n   * @notice Gets the random number produced by the 3rd-party service\\n   * @param requestId The ID of the request used to get the results of the RNG service\\n   * @return randomNum The random number\\n   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"},\"contracts/test/RNGServiceMock.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\n\\ncontract RNGServiceMock is RNGInterface {\\n    uint256 internal random;\\n    address internal feeToken;\\n    uint256 internal requestFee;\\n\\n    function getLastRequestId() external pure override returns (uint32 requestId) {\\n        return 1;\\n    }\\n\\n    function setRequestFee(address _feeToken, uint256 _requestFee) external {\\n        feeToken = _feeToken;\\n        requestFee = _requestFee;\\n    }\\n\\n    /// @return _feeToken\\n    /// @return _requestFee\\n    function getRequestFee()\\n        external\\n        view\\n        override\\n        returns (address _feeToken, uint256 _requestFee)\\n    {\\n        return (feeToken, requestFee);\\n    }\\n\\n    function setRandomNumber(uint256 _random) external {\\n        random = _random;\\n    }\\n\\n    function requestRandomNumber() external pure override returns (uint32, uint32) {\\n        return (1, 1);\\n    }\\n\\n    function isRequestComplete(uint32) external pure override returns (bool) {\\n        return true;\\n    }\\n\\n    function randomNumber(uint32) external view override returns (uint256) {\\n        return random;\\n    }\\n}\\n\",\"keccak256\":\"0xae43a026b2c8b1ea2825e1e2024755a10edb5d8868682bf4e3d08c3627d7fe96\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 16615,
                "contract": "contracts/test/RNGServiceMock.sol:RNGServiceMock",
                "label": "random",
                "offset": 0,
                "slot": "0",
                "type": "t_uint256"
              },
              {
                "astId": 16617,
                "contract": "contracts/test/RNGServiceMock.sol:RNGServiceMock",
                "label": "feeToken",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 16619,
                "contract": "contracts/test/RNGServiceMock.sol:RNGServiceMock",
                "label": "requestFee",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "events": {
              "RandomNumberCompleted(uint32,uint256)": {
                "notice": "Emitted when an existing request for a random number has been completed"
              },
              "RandomNumberRequested(uint32,address)": {
                "notice": "Emitted when a new request for a random number has been submitted"
              }
            },
            "kind": "user",
            "methods": {
              "getLastRequestId()": {
                "notice": "Gets the last request id used by the RNG service"
              },
              "requestRandomNumber()": {
                "notice": "Sends a request for a random number to the 3rd-party service"
              }
            },
            "version": 1
          }
        }
      },
      "contracts/test/ReserveHarness.sol": {
        "ReserveHarness": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IERC20",
                  "name": "_token",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "reserveAccumulated",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "withdrawAccumulated",
                  "type": "uint256"
                }
              ],
              "name": "Checkpoint",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IERC20",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousOwner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Withdrawn",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "checkpoint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ERC20Mintable",
                  "name": "_token",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "doubleCheckpoint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_startTimestamp",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "_endTimestamp",
                  "type": "uint32"
                }
              ],
              "name": "getReserveAccumulatedBetween",
              "outputs": [
                {
                  "internalType": "uint224",
                  "name": "",
                  "type": "uint224"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct ObservationLib.Observation[]",
                  "name": "observations",
                  "type": "tuple[]"
                }
              ],
              "name": "setObservationsAt",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "token",
              "outputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "withdrawAccumulator",
              "outputs": [
                {
                  "internalType": "uint224",
                  "name": "",
                  "type": "uint224"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "checkpoint()": {
                "details": "Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint."
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "getReserveAccumulatedBetween(uint32,uint32)": {
                "details": "Search the ring buffer for two checkpoint observations and diffs accumulator amount.",
                "params": {
                  "endTimestamp": "Transfer amount",
                  "startTimestamp": "Account address"
                }
              },
              "getToken()": {
                "returns": {
                  "_0": "IERC20"
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "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."
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              },
              "withdrawTo(address,uint256)": {
                "details": "Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.",
                "params": {
                  "amount": "Transfer amount",
                  "recipient": "Account address"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_16723": {
                  "entryPoint": null,
                  "id": 16723,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_3961": {
                  "entryPoint": null,
                  "id": 3961,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_9551": {
                  "entryPoint": null,
                  "id": 9551,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_setOwner_4058": {
                  "entryPoint": 147,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IERC20_$663_fromMemory": {
                  "entryPoint": 227,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "validator_revert_address": {
                  "entryPoint": 290,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:551:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "126:287:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "172:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "181:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "184:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "174:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "174:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "174:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "147:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "156:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "143:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "143:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "168:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "139:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "139:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "136:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "197:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "216:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "210:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "210:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "201:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "260:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "235:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "235:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "235:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "275:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "285:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "275:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "299:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "324:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "335:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "320:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "320:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "314:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "314:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "303:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "373:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "348:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "348:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "348:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "390:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "400:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "390:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IERC20_$663_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "84:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "95:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "107:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "115:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "463:86:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "527:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "536:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "539:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "529:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "529:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "529:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "486:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "497:5:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "512:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "517:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "508:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "508:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "521:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "504:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "504:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "493:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "493:31:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "483:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "483:42:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "476:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "476:50:84"
                              },
                              "nodeType": "YulIf",
                              "src": "473:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "452:5:84",
                            "type": ""
                          }
                        ],
                        "src": "418:131:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IERC20_$663_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b5060405162001964380380620019648339810160408190526200003491620000e3565b818181620000428162000093565b506001600160601b0319606082901b166080526040516001600160a01b038216907ff40fcec21964ffb566044d083b4073f29f7f7929110ea19e1b3ebe375d89055e90600090a2505050506200013b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060408385031215620000f757600080fd5b8251620001048162000122565b6020840151909250620001178162000122565b809150509250929050565b6001600160a01b03811681146200013857600080fd5b50565b60805160601c6117f56200016f6000396000818161012401528181610238015281816103ff01526108e301526117f56000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063d0ebdbe711610066578063d0ebdbe7146101ec578063e30c39781461020f578063f2fde38b14610220578063fc0c546a1461023357600080fd5b8063715018a6146101b85780638da5cb5b146101c0578063af6a9400146101d1578063c2c4c5c1146101e457600080fd5b80632d00ddda116100d35780632d00ddda14610161578063481c6a751461018c5780634e71e0c81461019d5780636099b487146101a557600080fd5b80631af082db146100fa578063205c28781461010f57806321df0da714610122575b600080fd5b61010d61010836600461144f565b61025a565b005b61010d61011d366004611423565b6102f6565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b600354610174906001600160e01b031681565b6040516001600160e01b039091168152602001610158565b6002546001600160a01b0316610144565b61010d61047d565b61010d6101b3366004611423565b61050b565b61010d610598565b6000546001600160a01b0316610144565b6101746101df3660046114ff565b61060d565b61010d6106db565b6101ff6101fa366004611406565b6106e3565b6040519015158152602001610158565b6001546001600160a01b0316610144565b61010d61022e366004611406565b610757565b6101447f000000000000000000000000000000000000000000000000000000000000000081565b60005b818110156102b25782828281811061027757610277611722565b90506040020160058262ffffff811061029257610292611722565b0161029d8282611738565b508190506102aa816116a9565b91505061025d565b5060048054630100000062ffffff9093169283027fffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000090911690921791909117905550565b336103096002546001600160a01b031690565b6001600160a01b0316148061033757503361032c6000546001600160a01b031690565b6001600160a01b0316145b6103ae5760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103b6610893565b600380548291906000906103d49084906001600160e01b03166115a5565b92506101000a8154816001600160e01b0302191690836001600160e01b0316021790555061043682827f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610b5a9092919063ffffffff16565b816001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d58260405161047191815260200190565b60405180910390a25050565b6001546001600160a01b031633146104d75760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016103a5565b6001546104ec906001600160a01b0316610bca565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b610513610893565b6040517f40c10f19000000000000000000000000000000000000000000000000000000008152306004820152602481018290526001600160a01b038316906340c10f1990604401600060405180830381600087803b15801561057457600080fd5b505af1158015610588573d6000803e3d6000fd5b50505050610594610893565b5050565b336105ab6000546001600160a01b031690565b6001600160a01b0316146106015760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a5565b61060b6000610bca565b565b60008163ffffffff168363ffffffff161061066a5760405162461bcd60e51b815260206004820152601b60248201527f526573657276652f73746172742d6c6573732d7468616e2d656e64000000000060448201526064016103a5565b60045462ffffff630100000082048116911660008061068883610c27565b9150915060008061069885610c9d565b9150915060006106ac848387868b8f610d10565b905060006106be858488878c8f610d10565b90506106ca828261163a565b985050505050505050505b92915050565b61060b610893565b6000336106f86000546001600160a01b031690565b6001600160a01b03161461074e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a5565b6106d582610db7565b3361076a6000546001600160a01b031690565b6001600160a01b0316146107c05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a5565b6001600160a01b03811661083c5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103a5565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600480546040517f70a08231000000000000000000000000000000000000000000000000000000008152309281019290925262ffffff630100000082048116929116906000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b15801561092557600080fd5b505afa158015610939573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095d91906114e6565b6003549091506001600160e01b031660008061097885610c27565b9150915080600001516001600160e01b0316836001600160e01b03168561099f91906115ee565b1115610b52574260006109b285876115a5565b90508163ffffffff16836020015163ffffffff1614610aa7576040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058862ffffff1662ffffff8110610a0957610a09611722565b825160209093015163ffffffff16600160e01b026001600160e01b0390931692909217910155610a3f62ffffff80891690610ea3565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000001662ffffff9283161790558881161015610aa257610a838860016115d0565b600460036101000a81548162ffffff021916908362ffffff1602179055505b610b0c565b6040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058562ffffff1662ffffff8110610ae557610ae5611722565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101555b604080516001600160e01b038084168252871660208201527f21d81d5d656869e8ce3ba8d65526a2f0dbbcd3d36f5f9999eb7c84360e45eced910160405180910390a150505b505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b03167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610bc5908490610ec0565b505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805180820190915260008082526020820181905290610c4e62ffffff80851690610fa5565b915060058262ffffff1662ffffff8110610c6a57610c6a611722565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919391925050565b60408051808201909152600080825260208201528190600562ffffff808416908110610ccb57610ccb611722565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201819052909150610d0b5760009150600582610c6a565b915091565b60004262ffffff8416610d27576000915050610dad565b8263ffffffff16876020015163ffffffff161115610d49576000915050610dad565b8263ffffffff16886020015163ffffffff1611610d695750508551610dad565b600080610d7b60058989888a88610fcd565b915091508463ffffffff16816020015163ffffffff161415610da257519250610dad915050565b50519150610dad9050565b9695505050505050565b6002546000906001600160a01b03908116908316811415610e405760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103a5565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b6000610eb9610eb38460016115ee565b8361119a565b9392505050565b6000610f15826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111a69092919063ffffffff16565b805190915015610bc55780806020019051810190610f3391906114c4565b610bc55760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016103a5565b600081610fb4575060006106d5565b610eb96001610fc384866115ee565b610eb39190611662565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff1610611018578862ffffff16611033565b600161102962ffffff8816846115ee565b6110339190611662565b905060005b600261104483856115ee565b61104e9190611626565b90508a611060828962ffffff1661119a565b62ffffff1662ffffff811061107757611077611722565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201819052909550806110bf576110b78260016115ee565b935050611038565b8b6110cf838a62ffffff16610ea3565b62ffffff1662ffffff81106110e6576110e6611722565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b9091048116602083015290955060009061112b90838116908c908b906111bd16565b905080801561115457506111548660200151898c63ffffffff166111bd9092919063ffffffff16565b1561116057505061118c565b8061117757611170600184611662565b9350611185565b6111828360016115ee565b94505b5050611038565b505050965096945050505050565b6000610eb982846116e2565b60606111b5848460008561128e565b949350505050565b60008163ffffffff168463ffffffff16111580156111e757508163ffffffff168363ffffffff1611155b15611203578263ffffffff168463ffffffff1611159050610eb9565b60008263ffffffff168563ffffffff16116112325761122d63ffffffff8616640100000000611606565b61123a565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116112725761126d63ffffffff8616640100000000611606565b61127a565b8463ffffffff165b64ffffffffff169091111595945050505050565b6060824710156113065760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016103a5565b843b6113545760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103a5565b600080866001600160a01b031685876040516113709190611538565b60006040518083038185875af1925050503d80600081146113ad576040519150601f19603f3d011682016040523d82523d6000602084013e6113b2565b606091505b50915091506113c28282866113cd565b979650505050505050565b606083156113dc575081610eb9565b8251156113ec5782518084602001fd5b8160405162461bcd60e51b81526004016103a59190611554565b60006020828403121561141857600080fd5b8135610eb981611795565b6000806040838503121561143657600080fd5b823561144181611795565b946020939093013593505050565b6000806020838503121561146257600080fd5b823567ffffffffffffffff8082111561147a57600080fd5b818501915085601f83011261148e57600080fd5b81358181111561149d57600080fd5b8660208260061b85010111156114b257600080fd5b60209290920196919550909350505050565b6000602082840312156114d657600080fd5b81518015158114610eb957600080fd5b6000602082840312156114f857600080fd5b5051919050565b6000806040838503121561151257600080fd5b823561151d816117ad565b9150602083013561152d816117ad565b809150509250929050565b6000825161154a818460208701611679565b9190910192915050565b6020815260008251806020840152611573816040850160208701611679565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60006001600160e01b038083168185168083038211156115c7576115c76116f6565b01949350505050565b600062ffffff8083168185168083038211156115c7576115c76116f6565b60008219821115611601576116016116f6565b500190565b600064ffffffffff8083168185168083038211156115c7576115c76116f6565b6000826116355761163561170c565b500490565b60006001600160e01b038381169083168181101561165a5761165a6116f6565b039392505050565b600082821015611674576116746116f6565b500390565b60005b8381101561169457818101518382015260200161167c565b838111156116a3576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156116db576116db6116f6565b5060010190565b6000826116f1576116f161170c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b81356001600160e01b03811680821461175057600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000915080828454161783556020840135611789816117ad565b60e01b90911617905550565b6001600160a01b03811681146117aa57600080fd5b50565b63ffffffff811681146117aa57600080fdfea26469706673582212201887ffb5cb01869425d1d2b5dcaf496fb5ebf37d2905b9eaf25a3d882f98fa9b64736f6c63430008060033",
              "opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x1964 CODESIZE SUB DUP1 PUSH3 0x1964 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0xE3 JUMP JUMPDEST DUP2 DUP2 DUP2 PUSH3 0x42 DUP2 PUSH3 0x93 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP3 SWAP1 SHL AND PUSH1 0x80 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xF40FCEC21964FFB566044D083B4073F29F7F7929110EA19E1B3EBE375D89055E SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP POP PUSH3 0x13B JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0xF7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH3 0x104 DUP2 PUSH3 0x122 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x117 DUP2 PUSH3 0x122 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x138 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH2 0x17F5 PUSH3 0x16F PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x124 ADD MSTORE DUP2 DUP2 PUSH2 0x238 ADD MSTORE DUP2 DUP2 PUSH2 0x3FF ADD MSTORE PUSH2 0x8E3 ADD MSTORE PUSH2 0x17F5 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 0xF5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x1EC JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x220 JUMPI DUP1 PUSH4 0xFC0C546A EQ PUSH2 0x233 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1B8 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1C0 JUMPI DUP1 PUSH4 0xAF6A9400 EQ PUSH2 0x1D1 JUMPI DUP1 PUSH4 0xC2C4C5C1 EQ PUSH2 0x1E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2D00DDDA GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x2D00DDDA EQ PUSH2 0x161 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x18C JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x19D JUMPI DUP1 PUSH4 0x6099B487 EQ PUSH2 0x1A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1AF082DB EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x205C2878 EQ PUSH2 0x10F JUMPI DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0x122 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10D PUSH2 0x108 CALLDATASIZE PUSH1 0x4 PUSH2 0x144F JUMP JUMPDEST PUSH2 0x25A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x10D PUSH2 0x11D CALLDATASIZE PUSH1 0x4 PUSH2 0x1423 JUMP JUMPDEST PUSH2 0x2F6 JUMP JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x174 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x158 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x144 JUMP JUMPDEST PUSH2 0x10D PUSH2 0x47D JUMP JUMPDEST PUSH2 0x10D PUSH2 0x1B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x1423 JUMP JUMPDEST PUSH2 0x50B JUMP JUMPDEST PUSH2 0x10D PUSH2 0x598 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x144 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x1DF CALLDATASIZE PUSH1 0x4 PUSH2 0x14FF JUMP JUMPDEST PUSH2 0x60D JUMP JUMPDEST PUSH2 0x10D PUSH2 0x6DB JUMP JUMPDEST PUSH2 0x1FF PUSH2 0x1FA CALLDATASIZE PUSH1 0x4 PUSH2 0x1406 JUMP JUMPDEST PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x158 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x144 JUMP JUMPDEST PUSH2 0x10D PUSH2 0x22E CALLDATASIZE PUSH1 0x4 PUSH2 0x1406 JUMP JUMPDEST PUSH2 0x757 JUMP JUMPDEST PUSH2 0x144 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2B2 JUMPI DUP3 DUP3 DUP3 DUP2 DUP2 LT PUSH2 0x277 JUMPI PUSH2 0x277 PUSH2 0x1722 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MUL ADD PUSH1 0x5 DUP3 PUSH3 0xFFFFFF DUP2 LT PUSH2 0x292 JUMPI PUSH2 0x292 PUSH2 0x1722 JUMP JUMPDEST ADD PUSH2 0x29D DUP3 DUP3 PUSH2 0x1738 JUMP JUMPDEST POP DUP2 SWAP1 POP PUSH2 0x2AA DUP2 PUSH2 0x16A9 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x25D JUMP JUMPDEST POP PUSH1 0x4 DUP1 SLOAD PUSH4 0x1000000 PUSH3 0xFFFFFF SWAP1 SWAP4 AND SWAP3 DUP4 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000 SWAP1 SWAP2 AND SWAP1 SWAP3 OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST CALLER PUSH2 0x309 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x337 JUMPI POP CALLER PUSH2 0x32C PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x3AE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3B6 PUSH2 0x893 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD DUP3 SWAP2 SWAP1 PUSH1 0x0 SWAP1 PUSH2 0x3D4 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH2 0x15A5 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH2 0x436 DUP3 DUP3 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB5A SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7084F5476618D8E60B11EF0D7D3F06914655ADB8793E28FF7F018D4C76D505D5 DUP3 PUSH1 0x40 MLOAD PUSH2 0x471 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x4D7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x4EC SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xBCA JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x513 PUSH2 0x893 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x40C10F1900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x40C10F19 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x574 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x588 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH2 0x594 PUSH2 0x893 JUMP JUMPDEST POP POP JUMP JUMPDEST CALLER PUSH2 0x5AB PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x601 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH2 0x60B PUSH1 0x0 PUSH2 0xBCA JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND LT PUSH2 0x66A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x526573657276652F73746172742D6C6573732D7468616E2D656E640000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH3 0xFFFFFF PUSH4 0x1000000 DUP3 DIV DUP2 AND SWAP2 AND PUSH1 0x0 DUP1 PUSH2 0x688 DUP4 PUSH2 0xC27 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 PUSH2 0x698 DUP6 PUSH2 0xC9D JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x6AC DUP5 DUP4 DUP8 DUP7 DUP12 DUP16 PUSH2 0xD10 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x6BE DUP6 DUP5 DUP9 DUP8 DUP13 DUP16 PUSH2 0xD10 JUMP JUMPDEST SWAP1 POP PUSH2 0x6CA DUP3 DUP3 PUSH2 0x163A JUMP JUMPDEST SWAP9 POP POP POP POP POP POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x60B PUSH2 0x893 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x6F8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x74E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH2 0x6D5 DUP3 PUSH2 0xDB7 JUMP JUMPDEST CALLER PUSH2 0x76A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x83C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH3 0xFFFFFF PUSH4 0x1000000 DUP3 DIV DUP2 AND SWAP3 SWAP2 AND SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x925 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x939 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 0x95D SWAP2 SWAP1 PUSH2 0x14E6 JUMP JUMPDEST PUSH1 0x3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x0 DUP1 PUSH2 0x978 DUP6 PUSH2 0xC27 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP1 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP6 PUSH2 0x99F SWAP2 SWAP1 PUSH2 0x15EE JUMP JUMPDEST GT ISZERO PUSH2 0xB52 JUMPI TIMESTAMP PUSH1 0x0 PUSH2 0x9B2 DUP6 DUP8 PUSH2 0x15A5 JUMP JUMPDEST SWAP1 POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ PUSH2 0xAA7 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x5 DUP9 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xA09 JUMPI PUSH2 0xA09 PUSH2 0x1722 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE PUSH2 0xA3F PUSH3 0xFFFFFF DUP1 DUP10 AND SWAP1 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000 AND PUSH3 0xFFFFFF SWAP3 DUP4 AND OR SWAP1 SSTORE DUP9 DUP2 AND LT ISZERO PUSH2 0xAA2 JUMPI PUSH2 0xA83 DUP9 PUSH1 0x1 PUSH2 0x15D0 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH3 0xFFFFFF MUL NOT AND SWAP1 DUP4 PUSH3 0xFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST PUSH2 0xB0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x5 DUP6 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xAE5 JUMPI PUSH2 0xAE5 PUSH2 0x1722 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP5 AND DUP3 MSTORE DUP8 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x21D81D5D656869E8CE3BA8D65526A2F0DBBCD3D36F5F9999EB7C84360E45ECED SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE PUSH2 0xBC5 SWAP1 DUP5 SWAP1 PUSH2 0xEC0 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH2 0xC4E PUSH3 0xFFFFFF DUP1 DUP6 AND SWAP1 PUSH2 0xFA5 JUMP JUMPDEST SWAP2 POP PUSH1 0x5 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xC6A JUMPI PUSH2 0xC6A PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP4 SWAP2 SWAP3 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP2 SWAP1 PUSH1 0x5 PUSH3 0xFFFFFF DUP1 DUP5 AND SWAP1 DUP2 LT PUSH2 0xCCB JUMPI PUSH2 0xCCB PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0xD0B JUMPI PUSH1 0x0 SWAP2 POP PUSH1 0x5 DUP3 PUSH2 0xC6A JUMP JUMPDEST SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0x0 TIMESTAMP PUSH3 0xFFFFFF DUP5 AND PUSH2 0xD27 JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0xDAD JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0xD49 JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0xDAD JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP9 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND GT PUSH2 0xD69 JUMPI POP POP DUP6 MLOAD PUSH2 0xDAD JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xD7B PUSH1 0x5 DUP10 DUP10 DUP9 DUP11 DUP9 PUSH2 0xFCD JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP5 PUSH4 0xFFFFFFFF AND DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0xDA2 JUMPI MLOAD SWAP3 POP PUSH2 0xDAD SWAP2 POP POP JUMP JUMPDEST POP MLOAD SWAP2 POP PUSH2 0xDAD SWAP1 POP JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0xE40 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEB9 PUSH2 0xEB3 DUP5 PUSH1 0x1 PUSH2 0x15EE JUMP JUMPDEST DUP4 PUSH2 0x119A JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF15 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11A6 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0xBC5 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0xF33 SWAP2 SWAP1 PUSH2 0x14C4 JUMP JUMPDEST PUSH2 0xBC5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0xFB4 JUMPI POP PUSH1 0x0 PUSH2 0x6D5 JUMP JUMPDEST PUSH2 0xEB9 PUSH1 0x1 PUSH2 0xFC3 DUP5 DUP7 PUSH2 0x15EE JUMP JUMPDEST PUSH2 0xEB3 SWAP2 SWAP1 PUSH2 0x1662 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0x1018 JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0x1033 JUMP JUMPDEST PUSH1 0x1 PUSH2 0x1029 PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x15EE JUMP JUMPDEST PUSH2 0x1033 SWAP2 SWAP1 PUSH2 0x1662 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0x1044 DUP4 DUP6 PUSH2 0x15EE JUMP JUMPDEST PUSH2 0x104E SWAP2 SWAP1 PUSH2 0x1626 JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0x1060 DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0x119A JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x1077 JUMPI PUSH2 0x1077 PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0x10BF JUMPI PUSH2 0x10B7 DUP3 PUSH1 0x1 PUSH2 0x15EE JUMP JUMPDEST SWAP4 POP POP PUSH2 0x1038 JUMP JUMPDEST DUP12 PUSH2 0x10CF DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0xEA3 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x10E6 JUMPI PUSH2 0x10E6 PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0x112B SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0x11BD AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1154 JUMPI POP PUSH2 0x1154 DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0x11BD SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x1160 JUMPI POP POP PUSH2 0x118C JUMP JUMPDEST DUP1 PUSH2 0x1177 JUMPI PUSH2 0x1170 PUSH1 0x1 DUP5 PUSH2 0x1662 JUMP JUMPDEST SWAP4 POP PUSH2 0x1185 JUMP JUMPDEST PUSH2 0x1182 DUP4 PUSH1 0x1 PUSH2 0x15EE JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0x1038 JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEB9 DUP3 DUP5 PUSH2 0x16E2 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x11B5 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x128E JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x11E7 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x1203 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0xEB9 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1232 JUMPI PUSH2 0x122D PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1606 JUMP JUMPDEST PUSH2 0x123A JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1272 JUMPI PUSH2 0x126D PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1606 JUMP JUMPDEST PUSH2 0x127A JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x1306 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A5 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x1354 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1370 SWAP2 SWAP1 PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x13AD JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x13B2 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x13C2 DUP3 DUP3 DUP7 PUSH2 0x13CD JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x13DC JUMPI POP DUP2 PUSH2 0xEB9 JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x13EC JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3A5 SWAP2 SWAP1 PUSH2 0x1554 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1418 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xEB9 DUP2 PUSH2 0x1795 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1436 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1441 DUP2 PUSH2 0x1795 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1462 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x147A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x148E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x149D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x6 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x14B2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14D6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xEB9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1512 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x151D DUP2 PUSH2 0x17AD JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x152D DUP2 PUSH2 0x17AD JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x154A DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x1679 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1573 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1679 JUMP JUMPDEST PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x15C7 JUMPI PUSH2 0x15C7 PUSH2 0x16F6 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x15C7 JUMPI PUSH2 0x15C7 PUSH2 0x16F6 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1601 JUMPI PUSH2 0x1601 PUSH2 0x16F6 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x15C7 JUMPI PUSH2 0x15C7 PUSH2 0x16F6 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1635 JUMPI PUSH2 0x1635 PUSH2 0x170C JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x165A JUMPI PUSH2 0x165A PUSH2 0x16F6 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1674 JUMPI PUSH2 0x1674 PUSH2 0x16F6 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1694 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x167C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x16A3 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x16DB JUMPI PUSH2 0x16DB PUSH2 0x16F6 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x16F1 JUMPI PUSH2 0x16F1 PUSH2 0x170C JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP1 DUP3 EQ PUSH2 0x1750 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP2 POP DUP1 DUP3 DUP5 SLOAD AND OR DUP4 SSTORE PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x1789 DUP2 PUSH2 0x17AD JUMP JUMPDEST PUSH1 0xE0 SHL SWAP1 SWAP2 AND OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x17AA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x17AA JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 XOR DUP8 SELFDESTRUCT 0xB5 0xCB ADD DUP7 SWAP5 0x25 0xD1 0xD2 0xB5 0xDC 0xAF 0x49 PUSH16 0xB5EBF37D2905B9EAF25A3D882F98FA9B PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "117:616:76:-:0;;;158:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;209:6;217;209;1648:24:22;209:6:76;1648:9:22;:24::i;:::-;-1:-1:-1;;;;;;;2174:14:35::1;::::0;;;;::::1;::::0;2203:16:::1;::::0;-1:-1:-1;;;;;2174:14:35;::::1;::::0;2203:16:::1;::::0;;;::::1;2105:121:::0;;158:69:76;;117:616;;3470:174:22;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;;;;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:399:84:-;107:6;115;168:2;156:9;147:7;143:23;139:32;136:2;;;184:1;181;174:12;136:2;216:9;210:16;235:31;260:5;235:31;:::i;:::-;335:2;320:18;;314:25;285:5;;-1:-1:-1;348:33:84;314:25;348:33;:::i;:::-;400:7;390:17;;;126:287;;;;;:::o;418:131::-;-1:-1:-1;;;;;493:31:84;;483:42;;473:2;;539:1;536;529:12;473:2;463:86;:::o;:::-;117:616:76;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_callOptionalReturn_1116": {
                  "entryPoint": 3776,
                  "id": 1116,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_checkpoint_9874": {
                  "entryPoint": 2195,
                  "id": 9874,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_getNewestObservation_9941": {
                  "entryPoint": 3111,
                  "id": 9941,
                  "parameterSlots": 1,
                  "returnSlots": 2
                },
                "@_getOldestObservation_9912": {
                  "entryPoint": 3229,
                  "id": 9912,
                  "parameterSlots": 1,
                  "returnSlots": 2
                },
                "@_getReserveAccumulatedAt_9759": {
                  "entryPoint": 3344,
                  "id": 9759,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "@_setManager_3896": {
                  "entryPoint": 3511,
                  "id": 3896,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_4058": {
                  "entryPoint": 3018,
                  "id": 4058,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@binarySearch_12591": {
                  "entryPoint": 4045,
                  "id": 12591,
                  "parameterSlots": 6,
                  "returnSlots": 2
                },
                "@checkpoint_9560": {
                  "entryPoint": 1755,
                  "id": 9560,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@claimOwnership_4038": {
                  "entryPoint": 1149,
                  "id": 4038,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@doubleCheckpoint_16793": {
                  "entryPoint": 1291,
                  "id": 16793,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@functionCallWithValue_2255": {
                  "entryPoint": 4750,
                  "id": 2255,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_2185": {
                  "entryPoint": 4518,
                  "id": 2185,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getReserveAccumulatedBetween_9642": {
                  "entryPoint": 1549,
                  "id": 9642,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getToken_9571": {
                  "entryPoint": null,
                  "id": 9571,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_2114": {
                  "entryPoint": null,
                  "id": 2114,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@lte_12705": {
                  "entryPoint": 4541,
                  "id": 12705,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@manager_3850": {
                  "entryPoint": null,
                  "id": 3850,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@newestIndex_12830": {
                  "entryPoint": 4005,
                  "id": 12830,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nextIndex_12848": {
                  "entryPoint": 3747,
                  "id": 12848,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@owner_3970": {
                  "entryPoint": null,
                  "id": 3970,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3979": {
                  "entryPoint": null,
                  "id": 3979,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3993": {
                  "entryPoint": 1432,
                  "id": 3993,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeTransfer_924": {
                  "entryPoint": 2906,
                  "id": 924,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setManager_3865": {
                  "entryPoint": 1763,
                  "id": 3865,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setObservationsAt_16768": {
                  "entryPoint": 602,
                  "id": 16768,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@token_9507": {
                  "entryPoint": null,
                  "id": 9507,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_4020": {
                  "entryPoint": 1879,
                  "id": 4020,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_2390": {
                  "entryPoint": 5069,
                  "id": 2390,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@withdrawAccumulator_9510": {
                  "entryPoint": null,
                  "id": 9510,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@withdrawTo_9676": {
                  "entryPoint": 758,
                  "id": 9676,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@wrap_12781": {
                  "entryPoint": 4506,
                  "id": 12781,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 5126,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 5155,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_array$_t_struct$_Observation_$12454_calldata_ptr_$dyn_calldata_ptr": {
                  "entryPoint": 5199,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 5316,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_ERC20Mintable_$16294t_uint256": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 5350,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32t_uint32": {
                  "entryPoint": 5375,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 5432,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IERC20_$663__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5460,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4d84b71e55d064d66bafac0d640c9a3219796f833676f31bba05b3cc08ac0349__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint224__to_t_uint224__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint224_t_uint224__to_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint224": {
                  "entryPoint": 5541,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint24": {
                  "entryPoint": 5584,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 5614,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint40": {
                  "entryPoint": 5638,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 5670,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint224": {
                  "entryPoint": 5690,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 5730,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 5753,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "increment_t_uint256": {
                  "entryPoint": 5801,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "mod_t_uint256": {
                  "entryPoint": 5858,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 5878,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x12": {
                  "entryPoint": 5900,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 5922,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "update_storage_value_offset_0t_struct$_Observation_$12454_calldata_ptr_to_t_struct$_Observation_$12454_storage": {
                  "entryPoint": 5944,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 6037,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint32": {
                  "entryPoint": 6061,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:11837:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "84:177:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "130:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "142:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "132:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "132:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "132:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "105:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "101:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "101:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "126:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "97:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "97:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "94:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "155:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "181:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "168:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "168:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "159:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "225:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "200:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "200:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "200:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "250:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "50:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "61:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "73:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:247:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "353:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "399:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "408:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "411:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "401:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "401:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "401:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "374:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "383:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "370:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "370:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "395:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "363:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "424:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "450:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "437:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "437:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "428:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "494:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "469:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "469:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "469:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "509:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "519:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "509:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "533:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "560:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "571:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "556:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "556:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "543:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "543:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "533:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "311:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "322:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "334:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "342:6:84",
                            "type": ""
                          }
                        ],
                        "src": "266:315:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "723:510:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "769:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "778:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "781:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "771:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "771:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "771:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "744:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "753:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "740:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "740:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "765:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "736:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "736:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "733:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "794:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "821:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "808:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "808:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "798:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "840:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "850:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "844:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "895:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "904:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "907:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "897:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "897:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "897:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "883:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "891:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "880:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "880:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "877:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "920:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "934:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "945:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "930:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "930:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "924:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1000:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1009:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1012:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1002:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1002:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1002:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "979:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "983:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "975:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "975:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "990:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "971:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "971:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "964:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "964:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "961:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1025:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1052:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1039:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1039:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1029:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1082:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1091:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1094:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1084:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1084:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1084:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1070:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1078:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1067:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1067:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1064:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1156:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1165:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1168:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1158:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1158:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1158:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1121:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1129:1:84",
                                                "type": "",
                                                "value": "6"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1132:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1125:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1125:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1117:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1117:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1142:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1113:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1113:32:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1147:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1110:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1110:45:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1107:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1181:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1195:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1199:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1191:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1191:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1181:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1211:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1221:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1211:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_Observation_$12454_calldata_ptr_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "681:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "692:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "704:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "712:6:84",
                            "type": ""
                          }
                        ],
                        "src": "586:647:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1316:199:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1362:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1371:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1374:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1364:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1364:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1364:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1337:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1346:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1333:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1333:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1358:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1329:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1329:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1326:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1387:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1406:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1400:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1400:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1391:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1469:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1478:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1481:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1471:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1471:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1471:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1438:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1459:5:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "1452:6:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1452:13:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1445:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1445:21:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1435:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1435:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1428:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1428:40:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1425:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1494:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1504:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1494:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1282:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1293:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1305:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1238:277:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1630:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1676:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1685:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1688:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1678:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1678:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1678:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1651:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1660:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1647:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1647:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1672:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1643:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1643:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1640:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1701:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1727:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1714:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1714:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1705:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1771:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1746:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1746:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1746:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1786:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1796:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1786:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1810:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1837:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1848:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1833:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1833:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1820:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1820:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1810:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ERC20Mintable_$16294t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1588:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1599:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1611:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1619:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1520:338:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1944:103:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1990:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1999:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2002:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1992:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1992:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1992:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1965:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1974:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1961:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1961:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1986:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1957:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1957:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1954:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2015:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2031:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2025:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2025:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2015:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1910:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1921:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1933:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1863:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2137:299:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2183:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2192:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2195:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2185:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2185:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2185:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2158:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2167:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2154:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2154:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2179:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2150:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2150:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2147:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2208:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2234:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2221:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2221:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2212:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2277:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2253:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2253:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2253:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2292:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2302:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2292:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2316:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2348:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2359:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2344:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2344:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2331:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2331:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2320:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2396:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2372:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2372:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2372:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2413:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2423:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2413:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2095:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2106:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2118:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2126:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2052:384:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2578:137:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2588:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2608:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2602:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2602:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "2592:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2650:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2658:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2646:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2646:17:84"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2665:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "2670:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "2624:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2624:53:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2624:53:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2686:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2697:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "2702:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2693:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2693:16:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "2686:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2554:3:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2559:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "2570:3:84",
                            "type": ""
                          }
                        ],
                        "src": "2441:274:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2821:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2831:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2843:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2854:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2839:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2839:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2831:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2873:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2888:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2896:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2884:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2884:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2866:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2866:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2866:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2790:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2801:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2812:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2720:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3080:168:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3090:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3102:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3113:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3098:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3098:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3090:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3132:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3147:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3155:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3143:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3143:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3125:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3125:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3125:74:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3219:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3230:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3215:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3215:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3235:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3208:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3208:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3208:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3041:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3052:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3060:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3071:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2951:297:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3348:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3358:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3370:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3381:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3366:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3366:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3358:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3400:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "3425:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "3418:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3418:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "3411:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3411:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3393:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3393:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3393:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3317:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3328:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3339:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3253:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3560:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3570:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3582:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3593:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3578:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3578:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3570:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3612:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3627:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3635:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3623:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3623:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3605:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3605:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3605:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IERC20_$663__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3529:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3540:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3551:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3445:240:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3811:321:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3828:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3839:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3821:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3821:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3821:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3851:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3871:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3865:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3865:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3855:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3898:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3909:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3894:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3894:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3914:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3887:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3887:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3887:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3956:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3964:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3952:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3952:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3973:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3984:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3969:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3969:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3989:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3930:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3930:66:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3930:66:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4005:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4021:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "4040:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4048:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4036:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4036:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4053:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4032:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4032:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4017:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4017:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4123:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4013:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4013:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4005:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3780:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3791:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3802:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3690:442:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4311:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4328:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4339:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4321:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4321:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4321:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4362:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4373:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4358:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4358:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4378:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4351:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4351:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4351:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4401:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4412:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4397:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4397:18:84"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4417:34:84",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4390:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4390:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4390:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4472:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4483:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4468:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4468:18:84"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4488:5:84",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4461:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4461:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4461:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4503:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4515:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4526:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4511:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4511:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4503:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4288:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4302:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4137:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4715:177:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4732:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4743:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4725:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4725:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4725:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4766:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4777:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4762:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4762:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4782:2:84",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4755:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4755:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4755:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4805:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4816:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4801:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4801:18:84"
                                  },
                                  {
                                    "hexValue": "526573657276652f73746172742d6c6573732d7468616e2d656e64",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4821:29:84",
                                    "type": "",
                                    "value": "Reserve/start-less-than-end"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4794:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4794:57:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4794:57:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4860:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4872:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4883:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4868:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4868:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4860:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4d84b71e55d064d66bafac0d640c9a3219796f833676f31bba05b3cc08ac0349__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4692:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4706:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4541:351:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5071:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5088:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5099:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5081:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5081:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5081:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5122:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5133:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5118:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5118:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5138:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5111:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5111:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5111:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5161:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5172:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5157:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5157:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5177:34:84",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5150:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5150:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5150:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5232:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5243:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5228:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5228:18:84"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5248:8:84",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5221:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5221:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5221:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5266:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5278:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5289:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5274:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5274:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5266:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5048:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5062:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4897:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5478:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5495:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5506:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5488:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5488:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5488:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5529:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5540:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5525:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5525:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5545:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5518:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5518:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5518:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5568:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5579:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5564:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5564:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5584:26:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5557:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5557:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5557:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5620:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5632:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5643:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5628:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5628:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5620:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5455:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5469:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5304:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5831:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5848:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5859:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5841:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5841:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5841:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5882:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5893:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5878:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5878:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5898:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5871:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5871:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5871:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5921:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5932:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5917:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5917:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5937:33:84",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5910:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5910:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5910:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5980:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5992:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6003:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5988:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5988:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5980:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5808:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5822:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5657:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6191:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6208:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6219:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6201:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6201:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6201:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6242:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6253:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6238:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6238:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6258:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6231:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6231:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6231:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6281:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6292:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6277:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6277:18:84"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6297:34:84",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6270:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6270:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6270:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6352:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6363:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6348:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6348:18:84"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6368:8:84",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6341:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6341:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6341:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6386:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6398:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6409:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6394:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6394:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6386:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6168:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6182:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6017:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6598:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6615:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6626:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6608:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6608:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6608:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6649:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6660:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6645:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6645:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6665:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6638:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6638:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6638:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6688:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6699:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6684:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6684:18:84"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6704:31:84",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6677:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6677:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6677:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6745:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6757:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6768:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6753:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6753:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6745:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6575:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6589:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6424:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6956:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6973:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6984:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6966:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6966:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6966:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7007:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7018:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7003:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7003:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7023:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6996:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6996:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6996:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7046:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7057:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7042:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7042:18:84"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7062:34:84",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7035:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7035:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7035:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7117:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7128:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7113:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7113:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7133:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7106:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7106:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7106:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7150:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7162:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7173:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7158:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7158:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7150:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6933:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6947:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6782:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7362:232:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7379:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7390:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7372:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7372:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7372:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7413:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7424:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7409:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7409:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7429:2:84",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7402:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7402:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7402:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7452:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7463:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7448:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7448:18:84"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7468:34:84",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7441:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7441:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7441:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7523:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7534:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7519:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7519:18:84"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7539:12:84",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7512:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7512:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7512:40:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7561:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7573:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7584:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7569:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7569:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7561:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7339:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7353:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7188:406:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7700:141:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7710:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7722:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7733:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7718:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7718:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7710:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7752:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7767:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7775:58:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7763:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7763:71:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7745:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7745:90:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7745:90:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint224__to_t_uint224__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7669:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7680:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7691:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7599:242:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7975:214:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7985:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7997:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8008:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7993:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7993:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7985:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8020:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8030:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8024:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8104:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8119:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8127:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8115:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8115:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8097:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8097:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8097:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8151:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8162:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8147:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8147:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8171:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8179:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8167:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8167:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8140:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8140:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8140:43:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint224_t_uint224__to_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7936:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7947:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7955:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7966:4:84",
                            "type": ""
                          }
                        ],
                        "src": "7846:343:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8295:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8305:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8317:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8328:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8313:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8313:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8305:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8347:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8358:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8340:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8340:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8340:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8264:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8275:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8286:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8194:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8424:229:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8434:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8444:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8438:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8511:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8526:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8529:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8522:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8522:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8515:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8541:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8556:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8559:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8552:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8552:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8545:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8596:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8598:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8598:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8598:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8577:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8586:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8590:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "8582:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8582:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8574:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8574:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8571:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8627:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8638:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8643:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8634:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8634:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8627:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8407:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8410:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8416:3:84",
                            "type": ""
                          }
                        ],
                        "src": "8376:277:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8705:179:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8715:18:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8725:8:84",
                                "type": "",
                                "value": "0xffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8719:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8742:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8757:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8760:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8753:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8753:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8746:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8772:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8787:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8790:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8783:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8783:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8776:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8827:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8829:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8829:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8829:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8808:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8817:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8821:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "8813:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8813:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8805:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8805:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8802:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8858:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8869:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8874:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8865:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8865:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8858:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint24",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8688:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8691:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8697:3:84",
                            "type": ""
                          }
                        ],
                        "src": "8658:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8937:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8964:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8966:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8966:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8966:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8953:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "8960:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "8956:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8956:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8950:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8950:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8947:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8995:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9006:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9009:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9002:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9002:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8995:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8920:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8923:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8929:3:84",
                            "type": ""
                          }
                        ],
                        "src": "8889:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9069:183:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9079:22:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9089:12:84",
                                "type": "",
                                "value": "0xffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9083:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9110:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9125:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9128:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9121:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9121:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9114:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9140:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9155:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9158:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9151:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9151:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9144:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9195:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9197:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9197:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9197:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9176:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9185:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9189:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "9181:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9181:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9173:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9173:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9170:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9226:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9237:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9242:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9233:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9233:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "9226:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint40",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9052:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9055:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "9061:3:84",
                            "type": ""
                          }
                        ],
                        "src": "9022:230:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9303:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9326:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "9328:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9328:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9328:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9323:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "9316:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9316:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9313:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9357:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9366:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9369:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "9362:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9362:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "9357:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9288:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9291:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "9297:1:84",
                            "type": ""
                          }
                        ],
                        "src": "9257:120:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9431:221:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9441:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9451:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9445:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9518:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9533:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9536:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9529:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9529:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9522:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9548:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9563:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9566:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9559:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9559:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9552:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9594:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9596:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9596:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9596:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9584:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9589:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9581:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9581:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9578:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9625:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9637:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9642:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "9633:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9633:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "9625:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9413:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9416:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "9422:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9382:270:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9706:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9728:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9730:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9730:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9730:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9722:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9725:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9719:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9719:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9716:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9759:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9771:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9774:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "9767:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9767:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "9759:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9688:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9691:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "9697:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9657:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9840:205:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9850:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9859:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "9854:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9919:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "9944:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "9949:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "9940:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9940:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9963:3:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9968:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "9959:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "9959:11:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "9953:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9953:18:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9933:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9933:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9933:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "9880:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9883:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9877:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9877:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "9891:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9893:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "9902:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9905:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9898:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9898:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "9893:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "9873:3:84",
                                "statements": []
                              },
                              "src": "9869:113:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10008:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "10021:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "10026:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "10017:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10017:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10035:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10010:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10010:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10010:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "9997:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10000:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9994:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9994:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9991:2:84"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "9818:3:84",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "9823:3:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "9828:6:84",
                            "type": ""
                          }
                        ],
                        "src": "9787:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10097:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10188:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "10190:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10190:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10190:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "10113:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10120:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "10110:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10110:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "10107:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10219:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "10230:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10237:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10226:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10226:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "10219:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "10079:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "10089:3:84",
                            "type": ""
                          }
                        ],
                        "src": "10050:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10288:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10311:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "10313:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10313:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10313:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "10308:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "10301:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10301:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "10298:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10342:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "10351:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "10354:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "10347:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10347:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "10342:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "10273:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "10276:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "10282:1:84",
                            "type": ""
                          }
                        ],
                        "src": "10250:112:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10399:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10416:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10419:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10409:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10409:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10409:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10513:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10516:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10506:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10506:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10506:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10537:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10540:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10530:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10530:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10530:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "10367:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10588:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10605:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10608:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10598:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10598:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10598:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10702:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10705:4:84",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10695:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10695:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10695:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10726:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10729:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10719:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10719:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10719:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "10556:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10777:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10794:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10797:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10787:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10787:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10787:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10891:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10894:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10884:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10884:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10884:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10915:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10918:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10908:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10908:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10908:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "10745:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11071:479:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11081:34:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "11109:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11096:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11096:19:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11085:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11124:82:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11138:7:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11147:58:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "11134:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11134:72:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11128:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11242:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11251:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11254:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "11244:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11244:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11244:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11228:7:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11237:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "11225:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11225:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "11218:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11218:23:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11215:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11267:76:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11277:66:84",
                                "type": "",
                                "value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "11271:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "11359:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "slot",
                                                "nodeType": "YulIdentifier",
                                                "src": "11378:4:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sload",
                                              "nodeType": "YulIdentifier",
                                              "src": "11372:5:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "11372:11:84"
                                          },
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "11385:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "11368:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11368:20:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11390:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "11365:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11365:28:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11352:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11352:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11352:42:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11403:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "11435:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11442:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11431:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11431:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11418:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11418:28:84"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "11407:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "11479:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11455:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11455:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11455:32:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "11503:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11512:2:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "11524:3:84",
                                                "type": "",
                                                "value": "224"
                                              },
                                              {
                                                "name": "value_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "11529:7:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "11520:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "11520:17:84"
                                          },
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "11539:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "11516:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11516:26:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "11509:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11509:34:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11496:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11496:48:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11496:48:84"
                            }
                          ]
                        },
                        "name": "update_storage_value_offset_0t_struct$_Observation_$12454_calldata_ptr_to_t_struct$_Observation_$12454_storage",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "11054:4:84",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "11060:5:84",
                            "type": ""
                          }
                        ],
                        "src": "10934:616:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11600:109:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11687:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11696:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11699:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "11689:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11689:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11689:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "11623:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "11634:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "11641:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "11630:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11630:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "11620:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11620:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "11613:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11613:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11610:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "11589:5:84",
                            "type": ""
                          }
                        ],
                        "src": "11555:154:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11758:77:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11813:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11822:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11825:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "11815:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11815:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11815:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "11781:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "11792:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "11799:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "11788:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11788:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "11778:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11778:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "11771:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11771:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11768:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "11747:5:84",
                            "type": ""
                          }
                        ],
                        "src": "11714:121:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_array$_t_struct$_Observation_$12454_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(6, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_2, 32)\n        value1 := length\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_ERC20Mintable_$16294t_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_decode_tuple_t_uint32t_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IERC20_$663__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4d84b71e55d064d66bafac0d640c9a3219796f833676f31bba05b3cc08ac0349__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 27)\n        mstore(add(headStart, 64), \"Reserve/start-less-than-end\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Address: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r call\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"Address: call to non-contract\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"SafeERC20: ERC20 operation did n\")\n        mstore(add(headStart, 96), \"ot succeed\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint224__to_t_uint224__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint224_t_uint224__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function checked_add_t_uint224(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint24(x, y) -> sum\n    {\n        let _1 := 0xffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint40(x, y) -> sum\n    {\n        let _1 := 0xffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function checked_sub_t_uint224(x, y) -> diff\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\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) { mstore(add(dst, length), 0) }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function update_storage_value_offset_0t_struct$_Observation_$12454_calldata_ptr_to_t_struct$_Observation_$12454_storage(slot, value)\n    {\n        let value_1 := calldataload(value)\n        let _1 := and(value_1, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n        if iszero(eq(value_1, _1)) { revert(0, 0) }\n        let _2 := 0xffffffff00000000000000000000000000000000000000000000000000000000\n        sstore(slot, or(and(sload(slot), _2), _1))\n        let value_2 := calldataload(add(value, 32))\n        validator_revert_uint32(value_2)\n        sstore(slot, or(_1, and(shl(224, value_2), _2)))\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "9507": [
                  {
                    "length": 32,
                    "start": 292
                  },
                  {
                    "length": 32,
                    "start": 568
                  },
                  {
                    "length": 32,
                    "start": 1023
                  },
                  {
                    "length": 32,
                    "start": 2275
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063d0ebdbe711610066578063d0ebdbe7146101ec578063e30c39781461020f578063f2fde38b14610220578063fc0c546a1461023357600080fd5b8063715018a6146101b85780638da5cb5b146101c0578063af6a9400146101d1578063c2c4c5c1146101e457600080fd5b80632d00ddda116100d35780632d00ddda14610161578063481c6a751461018c5780634e71e0c81461019d5780636099b487146101a557600080fd5b80631af082db146100fa578063205c28781461010f57806321df0da714610122575b600080fd5b61010d61010836600461144f565b61025a565b005b61010d61011d366004611423565b6102f6565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b600354610174906001600160e01b031681565b6040516001600160e01b039091168152602001610158565b6002546001600160a01b0316610144565b61010d61047d565b61010d6101b3366004611423565b61050b565b61010d610598565b6000546001600160a01b0316610144565b6101746101df3660046114ff565b61060d565b61010d6106db565b6101ff6101fa366004611406565b6106e3565b6040519015158152602001610158565b6001546001600160a01b0316610144565b61010d61022e366004611406565b610757565b6101447f000000000000000000000000000000000000000000000000000000000000000081565b60005b818110156102b25782828281811061027757610277611722565b90506040020160058262ffffff811061029257610292611722565b0161029d8282611738565b508190506102aa816116a9565b91505061025d565b5060048054630100000062ffffff9093169283027fffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000090911690921791909117905550565b336103096002546001600160a01b031690565b6001600160a01b0316148061033757503361032c6000546001600160a01b031690565b6001600160a01b0316145b6103ae5760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103b6610893565b600380548291906000906103d49084906001600160e01b03166115a5565b92506101000a8154816001600160e01b0302191690836001600160e01b0316021790555061043682827f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610b5a9092919063ffffffff16565b816001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d58260405161047191815260200190565b60405180910390a25050565b6001546001600160a01b031633146104d75760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016103a5565b6001546104ec906001600160a01b0316610bca565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b610513610893565b6040517f40c10f19000000000000000000000000000000000000000000000000000000008152306004820152602481018290526001600160a01b038316906340c10f1990604401600060405180830381600087803b15801561057457600080fd5b505af1158015610588573d6000803e3d6000fd5b50505050610594610893565b5050565b336105ab6000546001600160a01b031690565b6001600160a01b0316146106015760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a5565b61060b6000610bca565b565b60008163ffffffff168363ffffffff161061066a5760405162461bcd60e51b815260206004820152601b60248201527f526573657276652f73746172742d6c6573732d7468616e2d656e64000000000060448201526064016103a5565b60045462ffffff630100000082048116911660008061068883610c27565b9150915060008061069885610c9d565b9150915060006106ac848387868b8f610d10565b905060006106be858488878c8f610d10565b90506106ca828261163a565b985050505050505050505b92915050565b61060b610893565b6000336106f86000546001600160a01b031690565b6001600160a01b03161461074e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a5565b6106d582610db7565b3361076a6000546001600160a01b031690565b6001600160a01b0316146107c05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a5565b6001600160a01b03811661083c5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103a5565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600480546040517f70a08231000000000000000000000000000000000000000000000000000000008152309281019290925262ffffff630100000082048116929116906000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b15801561092557600080fd5b505afa158015610939573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095d91906114e6565b6003549091506001600160e01b031660008061097885610c27565b9150915080600001516001600160e01b0316836001600160e01b03168561099f91906115ee565b1115610b52574260006109b285876115a5565b90508163ffffffff16836020015163ffffffff1614610aa7576040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058862ffffff1662ffffff8110610a0957610a09611722565b825160209093015163ffffffff16600160e01b026001600160e01b0390931692909217910155610a3f62ffffff80891690610ea3565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000001662ffffff9283161790558881161015610aa257610a838860016115d0565b600460036101000a81548162ffffff021916908362ffffff1602179055505b610b0c565b6040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058562ffffff1662ffffff8110610ae557610ae5611722565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101555b604080516001600160e01b038084168252871660208201527f21d81d5d656869e8ce3ba8d65526a2f0dbbcd3d36f5f9999eb7c84360e45eced910160405180910390a150505b505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b03167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610bc5908490610ec0565b505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805180820190915260008082526020820181905290610c4e62ffffff80851690610fa5565b915060058262ffffff1662ffffff8110610c6a57610c6a611722565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919391925050565b60408051808201909152600080825260208201528190600562ffffff808416908110610ccb57610ccb611722565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201819052909150610d0b5760009150600582610c6a565b915091565b60004262ffffff8416610d27576000915050610dad565b8263ffffffff16876020015163ffffffff161115610d49576000915050610dad565b8263ffffffff16886020015163ffffffff1611610d695750508551610dad565b600080610d7b60058989888a88610fcd565b915091508463ffffffff16816020015163ffffffff161415610da257519250610dad915050565b50519150610dad9050565b9695505050505050565b6002546000906001600160a01b03908116908316811415610e405760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103a5565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b6000610eb9610eb38460016115ee565b8361119a565b9392505050565b6000610f15826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111a69092919063ffffffff16565b805190915015610bc55780806020019051810190610f3391906114c4565b610bc55760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016103a5565b600081610fb4575060006106d5565b610eb96001610fc384866115ee565b610eb39190611662565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff1610611018578862ffffff16611033565b600161102962ffffff8816846115ee565b6110339190611662565b905060005b600261104483856115ee565b61104e9190611626565b90508a611060828962ffffff1661119a565b62ffffff1662ffffff811061107757611077611722565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201819052909550806110bf576110b78260016115ee565b935050611038565b8b6110cf838a62ffffff16610ea3565b62ffffff1662ffffff81106110e6576110e6611722565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b9091048116602083015290955060009061112b90838116908c908b906111bd16565b905080801561115457506111548660200151898c63ffffffff166111bd9092919063ffffffff16565b1561116057505061118c565b8061117757611170600184611662565b9350611185565b6111828360016115ee565b94505b5050611038565b505050965096945050505050565b6000610eb982846116e2565b60606111b5848460008561128e565b949350505050565b60008163ffffffff168463ffffffff16111580156111e757508163ffffffff168363ffffffff1611155b15611203578263ffffffff168463ffffffff1611159050610eb9565b60008263ffffffff168563ffffffff16116112325761122d63ffffffff8616640100000000611606565b61123a565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116112725761126d63ffffffff8616640100000000611606565b61127a565b8463ffffffff165b64ffffffffff169091111595945050505050565b6060824710156113065760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016103a5565b843b6113545760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103a5565b600080866001600160a01b031685876040516113709190611538565b60006040518083038185875af1925050503d80600081146113ad576040519150601f19603f3d011682016040523d82523d6000602084013e6113b2565b606091505b50915091506113c28282866113cd565b979650505050505050565b606083156113dc575081610eb9565b8251156113ec5782518084602001fd5b8160405162461bcd60e51b81526004016103a59190611554565b60006020828403121561141857600080fd5b8135610eb981611795565b6000806040838503121561143657600080fd5b823561144181611795565b946020939093013593505050565b6000806020838503121561146257600080fd5b823567ffffffffffffffff8082111561147a57600080fd5b818501915085601f83011261148e57600080fd5b81358181111561149d57600080fd5b8660208260061b85010111156114b257600080fd5b60209290920196919550909350505050565b6000602082840312156114d657600080fd5b81518015158114610eb957600080fd5b6000602082840312156114f857600080fd5b5051919050565b6000806040838503121561151257600080fd5b823561151d816117ad565b9150602083013561152d816117ad565b809150509250929050565b6000825161154a818460208701611679565b9190910192915050565b6020815260008251806020840152611573816040850160208701611679565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60006001600160e01b038083168185168083038211156115c7576115c76116f6565b01949350505050565b600062ffffff8083168185168083038211156115c7576115c76116f6565b60008219821115611601576116016116f6565b500190565b600064ffffffffff8083168185168083038211156115c7576115c76116f6565b6000826116355761163561170c565b500490565b60006001600160e01b038381169083168181101561165a5761165a6116f6565b039392505050565b600082821015611674576116746116f6565b500390565b60005b8381101561169457818101518382015260200161167c565b838111156116a3576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156116db576116db6116f6565b5060010190565b6000826116f1576116f161170c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b81356001600160e01b03811680821461175057600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000915080828454161783556020840135611789816117ad565b60e01b90911617905550565b6001600160a01b03811681146117aa57600080fd5b50565b63ffffffff811681146117aa57600080fdfea26469706673582212201887ffb5cb01869425d1d2b5dcaf496fb5ebf37d2905b9eaf25a3d882f98fa9b64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xF5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x1EC JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x220 JUMPI DUP1 PUSH4 0xFC0C546A EQ PUSH2 0x233 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1B8 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1C0 JUMPI DUP1 PUSH4 0xAF6A9400 EQ PUSH2 0x1D1 JUMPI DUP1 PUSH4 0xC2C4C5C1 EQ PUSH2 0x1E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2D00DDDA GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x2D00DDDA EQ PUSH2 0x161 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x18C JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x19D JUMPI DUP1 PUSH4 0x6099B487 EQ PUSH2 0x1A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1AF082DB EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x205C2878 EQ PUSH2 0x10F JUMPI DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0x122 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10D PUSH2 0x108 CALLDATASIZE PUSH1 0x4 PUSH2 0x144F JUMP JUMPDEST PUSH2 0x25A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x10D PUSH2 0x11D CALLDATASIZE PUSH1 0x4 PUSH2 0x1423 JUMP JUMPDEST PUSH2 0x2F6 JUMP JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x174 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x158 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x144 JUMP JUMPDEST PUSH2 0x10D PUSH2 0x47D JUMP JUMPDEST PUSH2 0x10D PUSH2 0x1B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x1423 JUMP JUMPDEST PUSH2 0x50B JUMP JUMPDEST PUSH2 0x10D PUSH2 0x598 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x144 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x1DF CALLDATASIZE PUSH1 0x4 PUSH2 0x14FF JUMP JUMPDEST PUSH2 0x60D JUMP JUMPDEST PUSH2 0x10D PUSH2 0x6DB JUMP JUMPDEST PUSH2 0x1FF PUSH2 0x1FA CALLDATASIZE PUSH1 0x4 PUSH2 0x1406 JUMP JUMPDEST PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x158 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x144 JUMP JUMPDEST PUSH2 0x10D PUSH2 0x22E CALLDATASIZE PUSH1 0x4 PUSH2 0x1406 JUMP JUMPDEST PUSH2 0x757 JUMP JUMPDEST PUSH2 0x144 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2B2 JUMPI DUP3 DUP3 DUP3 DUP2 DUP2 LT PUSH2 0x277 JUMPI PUSH2 0x277 PUSH2 0x1722 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MUL ADD PUSH1 0x5 DUP3 PUSH3 0xFFFFFF DUP2 LT PUSH2 0x292 JUMPI PUSH2 0x292 PUSH2 0x1722 JUMP JUMPDEST ADD PUSH2 0x29D DUP3 DUP3 PUSH2 0x1738 JUMP JUMPDEST POP DUP2 SWAP1 POP PUSH2 0x2AA DUP2 PUSH2 0x16A9 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x25D JUMP JUMPDEST POP PUSH1 0x4 DUP1 SLOAD PUSH4 0x1000000 PUSH3 0xFFFFFF SWAP1 SWAP4 AND SWAP3 DUP4 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000 SWAP1 SWAP2 AND SWAP1 SWAP3 OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST CALLER PUSH2 0x309 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x337 JUMPI POP CALLER PUSH2 0x32C PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x3AE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3B6 PUSH2 0x893 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD DUP3 SWAP2 SWAP1 PUSH1 0x0 SWAP1 PUSH2 0x3D4 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH2 0x15A5 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH2 0x436 DUP3 DUP3 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB5A SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7084F5476618D8E60B11EF0D7D3F06914655ADB8793E28FF7F018D4C76D505D5 DUP3 PUSH1 0x40 MLOAD PUSH2 0x471 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x4D7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x4EC SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xBCA JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x513 PUSH2 0x893 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x40C10F1900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x40C10F19 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x574 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x588 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH2 0x594 PUSH2 0x893 JUMP JUMPDEST POP POP JUMP JUMPDEST CALLER PUSH2 0x5AB PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x601 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH2 0x60B PUSH1 0x0 PUSH2 0xBCA JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND LT PUSH2 0x66A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x526573657276652F73746172742D6C6573732D7468616E2D656E640000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH3 0xFFFFFF PUSH4 0x1000000 DUP3 DIV DUP2 AND SWAP2 AND PUSH1 0x0 DUP1 PUSH2 0x688 DUP4 PUSH2 0xC27 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 PUSH2 0x698 DUP6 PUSH2 0xC9D JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x6AC DUP5 DUP4 DUP8 DUP7 DUP12 DUP16 PUSH2 0xD10 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x6BE DUP6 DUP5 DUP9 DUP8 DUP13 DUP16 PUSH2 0xD10 JUMP JUMPDEST SWAP1 POP PUSH2 0x6CA DUP3 DUP3 PUSH2 0x163A JUMP JUMPDEST SWAP9 POP POP POP POP POP POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x60B PUSH2 0x893 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x6F8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x74E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH2 0x6D5 DUP3 PUSH2 0xDB7 JUMP JUMPDEST CALLER PUSH2 0x76A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x83C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH3 0xFFFFFF PUSH4 0x1000000 DUP3 DIV DUP2 AND SWAP3 SWAP2 AND SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x925 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x939 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 0x95D SWAP2 SWAP1 PUSH2 0x14E6 JUMP JUMPDEST PUSH1 0x3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x0 DUP1 PUSH2 0x978 DUP6 PUSH2 0xC27 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP1 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP6 PUSH2 0x99F SWAP2 SWAP1 PUSH2 0x15EE JUMP JUMPDEST GT ISZERO PUSH2 0xB52 JUMPI TIMESTAMP PUSH1 0x0 PUSH2 0x9B2 DUP6 DUP8 PUSH2 0x15A5 JUMP JUMPDEST SWAP1 POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ PUSH2 0xAA7 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x5 DUP9 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xA09 JUMPI PUSH2 0xA09 PUSH2 0x1722 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE PUSH2 0xA3F PUSH3 0xFFFFFF DUP1 DUP10 AND SWAP1 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000 AND PUSH3 0xFFFFFF SWAP3 DUP4 AND OR SWAP1 SSTORE DUP9 DUP2 AND LT ISZERO PUSH2 0xAA2 JUMPI PUSH2 0xA83 DUP9 PUSH1 0x1 PUSH2 0x15D0 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH3 0xFFFFFF MUL NOT AND SWAP1 DUP4 PUSH3 0xFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST PUSH2 0xB0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x5 DUP6 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xAE5 JUMPI PUSH2 0xAE5 PUSH2 0x1722 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP5 AND DUP3 MSTORE DUP8 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x21D81D5D656869E8CE3BA8D65526A2F0DBBCD3D36F5F9999EB7C84360E45ECED SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE PUSH2 0xBC5 SWAP1 DUP5 SWAP1 PUSH2 0xEC0 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH2 0xC4E PUSH3 0xFFFFFF DUP1 DUP6 AND SWAP1 PUSH2 0xFA5 JUMP JUMPDEST SWAP2 POP PUSH1 0x5 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xC6A JUMPI PUSH2 0xC6A PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP4 SWAP2 SWAP3 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP2 SWAP1 PUSH1 0x5 PUSH3 0xFFFFFF DUP1 DUP5 AND SWAP1 DUP2 LT PUSH2 0xCCB JUMPI PUSH2 0xCCB PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0xD0B JUMPI PUSH1 0x0 SWAP2 POP PUSH1 0x5 DUP3 PUSH2 0xC6A JUMP JUMPDEST SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0x0 TIMESTAMP PUSH3 0xFFFFFF DUP5 AND PUSH2 0xD27 JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0xDAD JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0xD49 JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0xDAD JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP9 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND GT PUSH2 0xD69 JUMPI POP POP DUP6 MLOAD PUSH2 0xDAD JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xD7B PUSH1 0x5 DUP10 DUP10 DUP9 DUP11 DUP9 PUSH2 0xFCD JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP5 PUSH4 0xFFFFFFFF AND DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0xDA2 JUMPI MLOAD SWAP3 POP PUSH2 0xDAD SWAP2 POP POP JUMP JUMPDEST POP MLOAD SWAP2 POP PUSH2 0xDAD SWAP1 POP JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0xE40 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEB9 PUSH2 0xEB3 DUP5 PUSH1 0x1 PUSH2 0x15EE JUMP JUMPDEST DUP4 PUSH2 0x119A JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF15 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11A6 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0xBC5 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0xF33 SWAP2 SWAP1 PUSH2 0x14C4 JUMP JUMPDEST PUSH2 0xBC5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0xFB4 JUMPI POP PUSH1 0x0 PUSH2 0x6D5 JUMP JUMPDEST PUSH2 0xEB9 PUSH1 0x1 PUSH2 0xFC3 DUP5 DUP7 PUSH2 0x15EE JUMP JUMPDEST PUSH2 0xEB3 SWAP2 SWAP1 PUSH2 0x1662 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0x1018 JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0x1033 JUMP JUMPDEST PUSH1 0x1 PUSH2 0x1029 PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x15EE JUMP JUMPDEST PUSH2 0x1033 SWAP2 SWAP1 PUSH2 0x1662 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0x1044 DUP4 DUP6 PUSH2 0x15EE JUMP JUMPDEST PUSH2 0x104E SWAP2 SWAP1 PUSH2 0x1626 JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0x1060 DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0x119A JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x1077 JUMPI PUSH2 0x1077 PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0x10BF JUMPI PUSH2 0x10B7 DUP3 PUSH1 0x1 PUSH2 0x15EE JUMP JUMPDEST SWAP4 POP POP PUSH2 0x1038 JUMP JUMPDEST DUP12 PUSH2 0x10CF DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0xEA3 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x10E6 JUMPI PUSH2 0x10E6 PUSH2 0x1722 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0x112B SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0x11BD AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1154 JUMPI POP PUSH2 0x1154 DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0x11BD SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x1160 JUMPI POP POP PUSH2 0x118C JUMP JUMPDEST DUP1 PUSH2 0x1177 JUMPI PUSH2 0x1170 PUSH1 0x1 DUP5 PUSH2 0x1662 JUMP JUMPDEST SWAP4 POP PUSH2 0x1185 JUMP JUMPDEST PUSH2 0x1182 DUP4 PUSH1 0x1 PUSH2 0x15EE JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0x1038 JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEB9 DUP3 DUP5 PUSH2 0x16E2 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x11B5 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x128E JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x11E7 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x1203 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0xEB9 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1232 JUMPI PUSH2 0x122D PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1606 JUMP JUMPDEST PUSH2 0x123A JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1272 JUMPI PUSH2 0x126D PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1606 JUMP JUMPDEST PUSH2 0x127A JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x1306 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A5 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x1354 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A5 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1370 SWAP2 SWAP1 PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x13AD JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x13B2 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x13C2 DUP3 DUP3 DUP7 PUSH2 0x13CD JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x13DC JUMPI POP DUP2 PUSH2 0xEB9 JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x13EC JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3A5 SWAP2 SWAP1 PUSH2 0x1554 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1418 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xEB9 DUP2 PUSH2 0x1795 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1436 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1441 DUP2 PUSH2 0x1795 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1462 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x147A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x148E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x149D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x6 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x14B2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14D6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xEB9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1512 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x151D DUP2 PUSH2 0x17AD JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x152D DUP2 PUSH2 0x17AD JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x154A DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x1679 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1573 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1679 JUMP JUMPDEST PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x15C7 JUMPI PUSH2 0x15C7 PUSH2 0x16F6 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x15C7 JUMPI PUSH2 0x15C7 PUSH2 0x16F6 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1601 JUMPI PUSH2 0x1601 PUSH2 0x16F6 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x15C7 JUMPI PUSH2 0x15C7 PUSH2 0x16F6 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1635 JUMPI PUSH2 0x1635 PUSH2 0x170C JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x165A JUMPI PUSH2 0x165A PUSH2 0x16F6 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1674 JUMPI PUSH2 0x1674 PUSH2 0x16F6 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1694 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x167C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x16A3 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x16DB JUMPI PUSH2 0x16DB PUSH2 0x16F6 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x16F1 JUMPI PUSH2 0x16F1 PUSH2 0x170C JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP1 DUP3 EQ PUSH2 0x1750 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP2 POP DUP1 DUP3 DUP5 SLOAD AND OR DUP4 SSTORE PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x1789 DUP2 PUSH2 0x17AD JUMP JUMPDEST PUSH1 0xE0 SHL SWAP1 SWAP2 AND OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x17AA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x17AA JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 XOR DUP8 SELFDESTRUCT 0xB5 0xCB ADD DUP7 SWAP5 0x25 0xD1 0xD2 0xB5 0xDC 0xAF 0x49 PUSH16 0xB5EBF37D2905B9EAF25A3D882F98FA9B PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "117:616:76:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233:320;;;;;;:::i;:::-;;:::i;:::-;;3648:278:35;;;;;;:::i;:::-;;:::i;2422:89::-;2499:5;2422:89;;;-1:-1:-1;;;;;2884:55:84;;;2866:74;;2854:2;2839:18;2422:89:35;;;;;;;;1494:34;;;;;-1:-1:-1;;;;;1494:34:35;;;;;;-1:-1:-1;;;;;7763:71:84;;;7745:90;;7733:2;7718:18;1494:34:35;7700:141:84;1403:89:21;1477:8;;-1:-1:-1;;;;;1477:8:21;1403:89;;3147:129:22;;;:::i;559:172:76:-;;;;;;:::i;:::-;;:::i;2508:94:22:-;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:22;1814:85;;2546:1067:35;;;;;;:::i;:::-;;:::i;2317:70::-;;;:::i;1744:123:21:-;;;;;;:::i;:::-;;:::i;:::-;;;3418:14:84;;3411:22;3393:41;;3381:2;3366:18;1744:123:21;3348:92:84;2014:101:22;2095:13;;-1:-1:-1;;;;;2095:13:22;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;1407:29:35:-;;;;;233:320:76;336:9;331:115;351:23;;;331:115;;;420:12;;433:1;420:15;;;;;;;:::i;:::-;;;;;;395:19;415:1;395:22;;;;;;;:::i;:::-;;:40;;:22;:40;:::i;:::-;-1:-1:-1;376:3:76;;-1:-1:-1;376:3:76;;;:::i;:::-;;;;331:115;;;-1:-1:-1;456:9:76;:39;;505:41;456:39;;;;505:41;;;;;;;;;;;;;;;;-1:-1:-1;233:320:76:o;3648:278:35:-;2861:10:21;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:21;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:21;;:48;;;-1:-1:-1;2886:10:21;2875:7;1860::22;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;2875:7:21;-1:-1:-1;;;;;2875:21:21;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:21;;6219:2:84;2840:99:21;;;6201:21:84;6258:2;6238:18;;;6231:30;6297:34;6277:18;;;6270:62;6368:8;6348:18;;;6341:36;6394:19;;2840:99:21;;;;;;;;;3752:13:35::1;:11;:13::i;:::-;3776:19;:39:::0;;3807:7;;3776:19;::::1;::::0;:39:::1;::::0;3807:7;;-1:-1:-1;;;;;3776:39:35::1;;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;3776:39:35::1;;;;;-1:-1:-1::0;;;;;3776:39:35::1;;;;;;3834;3853:10;3865:7;3834:5;-1:-1:-1::0;;;;;3834:18:35::1;;;:39;;;;;:::i;:::-;3899:10;-1:-1:-1::0;;;;;3889:30:35::1;;3911:7;3889:30;;;;8340:25:84::0;;8328:2;8313:18;;8295:76;3889:30:35::1;;;;;;;;3648:278:::0;;:::o;3147:129:22:-;4050:13;;-1:-1:-1;;;;;4050:13:22;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:22;;5859:2:84;4028:71:22;;;5841:21:84;5898:2;5878:18;;;5871:30;5937:33;5917:18;;;5910:61;5988:18;;4028:71:22;5831:181:84;4028:71:22;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:22::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:22::1;::::0;;3147:129::o;559:172:76:-;643:13;:11;:13::i;:::-;666:35;;;;;686:4;666:35;;;3125:74:84;3215:18;;;3208:34;;;-1:-1:-1;;;;;666:11:76;;;;;3098:18:84;;666:35:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;711:13;:11;:13::i;:::-;559:172;;:::o;2508:94:22:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;5506:2:84;3819:58:22;;;5488:21:84;5545:2;5525:18;;;5518:30;5584:26;5564:18;;;5557:54;5628:18;;3819:58:22;5478:174:84;3819:58:22;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2546:1067:35:-;2694:7;2743:13;2725:31;;:15;:31;;;2717:71;;;;-1:-1:-1;;;2717:71:35;;4743:2:84;2717:71:35;;;4725:21:84;4782:2;4762:18;;;4755:30;4821:29;4801:18;;;4794:57;4868:18;;2717:71:35;4715:177:84;2717:71:35;2820:11;;;;;;;;;2861:9;2798:19;;2959:33;2861:9;2959:21;:33::i;:::-;2881:111;;;;3003:19;3024:52;3080:33;3102:10;3080:21;:33::i;:::-;3002:111;;;;3124:14;3141:205;3179:18;3211;3243:12;3269;3295;3321:15;3141:24;:205::i;:::-;3124:222;;3357:12;3372:203;3410:18;3442;3474:12;3500;3526;3552:13;3372:24;:203::i;:::-;3357:218;-1:-1:-1;3593:13:35;3600:6;3357:218;3593:13;:::i;:::-;3586:20;;;;;;;;;;2546:1067;;;;;:::o;2317:70::-;2367:13;:11;:13::i;1744:123:21:-;1813:4;3838:10:22;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;5506:2:84;3819:58:22;;;5488:21:84;5545:2;5525:18;;;5518:30;5584:26;5564:18;;;5557:54;5628:18;;3819:58:22;5478:174:84;3819:58:22;1836:24:21::1;1848:11;1836;:24::i;2751:234:22:-:0;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:22;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:22;;3819:58;;;;-1:-1:-1;;;3819:58:22;;5506:2:84;3819:58:22;;;5488:21:84;5545:2;5525:18;;;5518:30;5584:26;5564:18;;;5557:54;5628:18;;3819:58:22;5478:174:84;3819:58:22;-1:-1:-1;;;;;2834:23:22;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:22;;6984:2:84;2826:73:22::1;::::0;::::1;6966:21:84::0;7023:2;7003:18;;;6996:30;7062:34;7042:18;;;7035:62;7133:7;7113:18;;;7106:35;7158:19;;2826:73:22::1;6956:227:84::0;2826:73:22::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:22::1;-1:-1:-1::0;;;;;2910:25:22;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:22::1;2751:234:::0;:::o;7170:1957:35:-;7234:11;;;7322:30;;;;;7346:4;7322:30;;;2866:74:84;;;;7234:11:35;;;;;;;7275:9;;;-1:-1:-1;;;;;;;7322:5:35;:15;;;;2839:18:84;;7322:30:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7393:19;;7294:58;;-1:-1:-1;;;;;;7393:19:35;7362:28;;7506:33;7528:10;7506:21;:33::i;:::-;7430:109;;;;7817:17;:24;;;-1:-1:-1;;;;;7774:67:35;7794:20;-1:-1:-1;;;;;7774:40:35;:17;:40;;;;:::i;:::-;:67;7770:1351;;;7881:15;7857:14;8015:49;8044:20;8023:17;8015:49;:::i;:::-;7983:81;;8246:7;8215:38;;:17;:27;;;:38;;;8211:825;;8307:137;;;;;;;;8364:21;-1:-1:-1;;;;;8307:137:35;;;;;8418:7;8307:137;;;;;8273:19;8293:10;8273:31;;;;;;;;;:::i;:::-;:171;;;;;;;;;-1:-1:-1;;;8273:171:35;-1:-1:-1;;;;;8273:171:35;;;;;;;:31;;:171;8481:52;;;;;;:23;:52::i;:::-;8462:9;:72;;;;;;;;;;;8556:30;;;;8552:107;;;8624:16;:12;8639:1;8624:16;:::i;:::-;8610:11;;:30;;;;;;;;;;;;;;;;;;8552:107;8211:825;;;8884:137;;;;;;;;8941:21;-1:-1:-1;;;;;8884:137:35;;;;;8995:7;8884:137;;;;;8849:19;8869:11;8849:32;;;;;;;;;:::i;:::-;:172;;;;;;;;;-1:-1:-1;;;8849:172:35;-1:-1:-1;;;;;8849:172:35;;;;;;;:32;;:172;8211:825;9055:55;;;-1:-1:-1;;;;;8115:15:84;;;8097:34;;8167:15;;8162:2;8147:18;;8140:43;9055:55:35;;7993:18:84;9055:55:35;;;;;;;7843:1278;;7770:1351;7202:1925;;;;;;7170:1957::o;634:205:6:-;773:58;;;-1:-1:-1;;;;;3143:55:84;;773:58:6;;;3125:74:84;3215:18;;;;3208:34;;;773:58:6;;;;;;;;;;3098:18:84;;;;773:58:6;;;;;;;;-1:-1:-1;;;;;773:58:6;796:23;773:58;;;746:86;;766:5;;746:19;:86::i;:::-;634:205;;;:::o;3470:174:22:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:22;;;-1:-1:-1;;3562:18:22;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;9852:299:35:-;-1:-1:-1;;;;;;;;;9949:12:35;-1:-1:-1;;;;;;;;;9949:12:35;10039:54;;;;;;:25;:54::i;:::-;10024:70;;10118:19;10138:5;10118:26;;;;;;;;;:::i;:::-;10104:40;;;;;;;;;10118:26;;10104:40;-1:-1:-1;;;;;10104:40:35;;;;-1:-1:-1;;;10104:40:35;;;;;;;;9852:299;;10104:40;;-1:-1:-1;;9852:299:35:o;9251:477::-;-1:-1:-1;;;;;;;;;;;;;;;;;9431:10:35;;9465:19;:26;;;;;;;;;;;:::i;:::-;9451:40;;;;;;;;;9465:26;;9451:40;-1:-1:-1;;;;;9451:40:35;;;;-1:-1:-1;;;9451:40:35;;;;;;;;;;;;-1:-1:-1;9606:116:35;;9660:1;;-1:-1:-1;9689:19:35;9660:1;9689:22;;9606:116;9251:477;;;:::o;4571:2531::-;4872:7;4915:15;4990:17;;;4986:31;;5016:1;5009:8;;;;;4986:31;5720:10;5689:41;;:18;:28;;;:41;;;5685:80;;;5753:1;5746:8;;;;;5685:80;6033:10;6001:42;;:18;:28;;;:42;;;5997:105;;-1:-1:-1;;6066:25:35;;6059:32;;5997:105;6289:44;6347:43;6403:221;6448:19;6485:12;6515;6545:10;6573:12;6603:7;6403:27;:221::i;:::-;6275:349;;;;6981:10;6958:33;;:9;:19;;;:33;;;6954:142;;;7014:16;;-1:-1:-1;7007:23:35;;-1:-1:-1;;7007:23:35;6954:142;-1:-1:-1;7068:17:35;;-1:-1:-1;7061:24:35;;-1:-1:-1;7061:24:35;4571:2531;;;;;;;;;:::o;2109:326:21:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:21;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:21;;4339:2:84;2230:79:21;;;4321:21:84;4378:2;4358:18;;;4351:30;4417:34;4397:18;;;4390:62;4488:5;4468:18;;;4461:33;4511:19;;2230:79:21;4311:225:84;2230:79:21;2320:8;:22;;-1:-1:-1;;2320:22:21;-1:-1:-1;;;;;2320:22:21;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:21;-1:-1:-1;2424:4:21;;2109:326;-1:-1:-1;;2109:326:21:o;2263:171:56:-;2367:7;2397:30;2402:10;:6;2411:1;2402:10;:::i;:::-;2414:12;2397:4;:30::i;:::-;2390:37;2263:171;-1:-1:-1;;;2263:171:56:o;3140:706:6:-;3559:23;3585:69;3613:4;3585:69;;;;;;;;;;;;;;;;;3593:5;-1:-1:-1;;;;;3585:27:6;;;:69;;;;;:::i;:::-;3668:17;;3559:95;;-1:-1:-1;3668:21:6;3664:176;;3763:10;3752:30;;;;;;;;;;;;:::i;:::-;3744:85;;;;-1:-1:-1;;;3744:85:6;;7390:2:84;3744:85:6;;;7372:21:84;7429:2;7409:18;;;7402:30;7468:34;7448:18;;;7441:62;7539:12;7519:18;;;7512:40;7569:19;;3744:85:6;7362:232:84;1666:262:56;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:56;1836:8;;1799:56;1872:49;1905:1;1877:25;1890:12;1877:10;:25;:::i;:::-;:29;;;;:::i;2382:2006:54:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2719:16:54;2738:23;2719:42;;;;2771:17;2817:8;2791:23;:34;;;:114;;2882:23;2791:114;;;;;2866:1;2840:23;;;;:8;:23;:::i;:::-;:27;;;;:::i;:::-;2771:134;;2915:20;2946:1436;3237:1;3213:20;3224:9;3213:8;:20;:::i;:::-;3212:26;;;;:::i;:::-;3197:41;;3266:13;3287:46;3306:12;3320;3287:46;;:18;:46::i;:::-;3266:69;;;;;;;;;:::i;:::-;3253:82;;;;;;;;;3266:69;;3253:82;-1:-1:-1;;;;;3253:82:54;;;;-1:-1:-1;;;3253:82:54;;;;;;;;;;;;-1:-1:-1;3253:82:54;3511:116;;3570:16;:12;3585:1;3570:16;:::i;:::-;3559:27;;3604:8;;;3511:116;3653:13;3674:51;3698:12;3712;3674:51;;:23;:51::i;:::-;3653:74;;;;;;;;;:::i;:::-;3641:86;;;;;;;;;3653:74;;3641:86;-1:-1:-1;;;;;3641:86:54;;;;;-1:-1:-1;;;3641:86:54;;;;;;;;;;;-1:-1:-1;;;3765:39:54;;:23;;;;3789:7;;3798:5;;3765:23;:39;:::i;:::-;3742:62;;3890:15;:58;;;;;3909:39;3921:9;:19;;;3942:5;3909:7;:11;;;;:39;;;;;:::i;:::-;3886:102;;;3968:5;;;;3886:102;4138:15;4133:239;;4185:16;4200:1;4185:12;:16;:::i;:::-;4173:28;;4133:239;;;4341:16;:12;4356:1;4341:16;:::i;:::-;4330:27;;4133:239;2959:1423;;2946:1436;;;2709:1679;;;2382:2006;;;;;;;;;:::o;580:129:56:-;655:7;681:21;690:12;681:6;:21;:::i;3461:223:11:-;3594:12;3625:52;3647:6;3655:4;3661:1;3664:12;3625:21;:52::i;:::-;3618:59;3461:223;-1:-1:-1;;;;3461:223:11:o;1658:417:55:-;1765:4;1854:10;1848:16;;:2;:16;;;;:36;;;;;1874:10;1868:16;;:2;:16;;;;1848:36;1844:57;;;1899:2;1893:8;;:2;:8;;;;1886:15;;;;1844:57;1912:17;1937:10;1932:15;;:2;:15;;;:33;;1955:10;;;;1960:5;1955:10;:::i;:::-;1932:33;;;1950:2;1932:33;;;1912:53;;;;1975:17;2000:10;1995:15;;:2;:15;;;:33;;2018:10;;;;2023:5;2018:10;:::i;:::-;1995:33;;;2013:2;1995:33;;;1975:53;;2046:22;;;;;1658:417;-1:-1:-1;;;;;1658:417:55:o;4548:499:11:-;4713:12;4770:5;4745:21;:30;;4737:81;;;;-1:-1:-1;;;4737:81:11;;5099:2:84;4737:81:11;;;5081:21:84;5138:2;5118:18;;;5111:30;5177:34;5157:18;;;5150:62;5248:8;5228:18;;;5221:36;5274:19;;4737:81:11;5071:228:84;4737:81:11;1034:20;;4828:60;;;;-1:-1:-1;;;4828:60:11;;6626:2:84;4828:60:11;;;6608:21:84;6665:2;6645:18;;;6638:30;6704:31;6684:18;;;6677:59;6753:18;;4828:60:11;6598:179:84;4828:60:11;4900:12;4914:23;4941:6;-1:-1:-1;;;;;4941:11:11;4960:5;4967:4;4941:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4899:73;;;;4989:51;5006:7;5015:10;5027:12;4989:16;:51::i;:::-;4982:58;4548:499;-1:-1:-1;;;;;;;4548:499:11:o;7161:692::-;7307:12;7335:7;7331:516;;;-1:-1:-1;7365:10:11;7358:17;;7331:516;7476:17;;:21;7472:365;;7670:10;7664:17;7730:15;7717:10;7713:2;7709:19;7702:44;7472:365;7809:12;7802:20;;-1:-1:-1;;;7802:20:11;;;;;;;;:::i;14:247:84:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;200:31;225:5;200:31;:::i;266:315::-;334:6;342;395:2;383:9;374:7;370:23;366:32;363:2;;;411:1;408;401:12;363:2;450:9;437:23;469:31;494:5;469:31;:::i;:::-;519:5;571:2;556:18;;;;543:32;;-1:-1:-1;;;353:228:84:o;586:647::-;704:6;712;765:2;753:9;744:7;740:23;736:32;733:2;;;781:1;778;771:12;733:2;821:9;808:23;850:18;891:2;883:6;880:14;877:2;;;907:1;904;897:12;877:2;945:6;934:9;930:22;920:32;;990:7;983:4;979:2;975:13;971:27;961:2;;1012:1;1009;1002:12;961:2;1052;1039:16;1078:2;1070:6;1067:14;1064:2;;;1094:1;1091;1084:12;1064:2;1147:7;1142:2;1132:6;1129:1;1125:14;1121:2;1117:23;1113:32;1110:45;1107:2;;;1168:1;1165;1158:12;1107:2;1199;1191:11;;;;;1221:6;;-1:-1:-1;723:510:84;;-1:-1:-1;;;;723:510:84:o;1238:277::-;1305:6;1358:2;1346:9;1337:7;1333:23;1329:32;1326:2;;;1374:1;1371;1364:12;1326:2;1406:9;1400:16;1459:5;1452:13;1445:21;1438:5;1435:32;1425:2;;1481:1;1478;1471:12;1863:184;1933:6;1986:2;1974:9;1965:7;1961:23;1957:32;1954:2;;;2002:1;1999;1992:12;1954:2;-1:-1:-1;2025:16:84;;1944:103;-1:-1:-1;1944:103:84:o;2052:384::-;2118:6;2126;2179:2;2167:9;2158:7;2154:23;2150:32;2147:2;;;2195:1;2192;2185:12;2147:2;2234:9;2221:23;2253:30;2277:5;2253:30;:::i;:::-;2302:5;-1:-1:-1;2359:2:84;2344:18;;2331:32;2372;2331;2372;:::i;:::-;2423:7;2413:17;;;2137:299;;;;;:::o;2441:274::-;2570:3;2608:6;2602:13;2624:53;2670:6;2665:3;2658:4;2650:6;2646:17;2624:53;:::i;:::-;2693:16;;;;;2578:137;-1:-1:-1;;2578:137:84:o;3690:442::-;3839:2;3828:9;3821:21;3802:4;3871:6;3865:13;3914:6;3909:2;3898:9;3894:18;3887:34;3930:66;3989:6;3984:2;3973:9;3969:18;3964:2;3956:6;3952:15;3930:66;:::i;:::-;4048:2;4036:15;4053:66;4032:88;4017:104;;;;4123:2;4013:113;;3811:321;-1:-1:-1;;3811:321:84:o;8376:277::-;8416:3;-1:-1:-1;;;;;8529:2:84;8526:1;8522:10;8559:2;8556:1;8552:10;8590:3;8586:2;8582:12;8577:3;8574:21;8571:2;;;8598:18;;:::i;:::-;8634:13;;8424:229;-1:-1:-1;;;;8424:229:84:o;8658:226::-;8697:3;8725:8;8760:2;8757:1;8753:10;8790:2;8787:1;8783:10;8821:3;8817:2;8813:12;8808:3;8805:21;8802:2;;;8829:18;;:::i;8889:128::-;8929:3;8960:1;8956:6;8953:1;8950:13;8947:2;;;8966:18;;:::i;:::-;-1:-1:-1;9002:9:84;;8937:80::o;9022:230::-;9061:3;9089:12;9128:2;9125:1;9121:10;9158:2;9155:1;9151:10;9189:3;9185:2;9181:12;9176:3;9173:21;9170:2;;;9197:18;;:::i;9257:120::-;9297:1;9323;9313:2;;9328:18;;:::i;:::-;-1:-1:-1;9362:9:84;;9303:74::o;9382:270::-;9422:4;-1:-1:-1;;;;;9559:10:84;;;;9529;;9581:12;;;9578:2;;;9596:18;;:::i;:::-;9633:13;;9431:221;-1:-1:-1;;;9431:221:84:o;9657:125::-;9697:4;9725:1;9722;9719:8;9716:2;;;9730:18;;:::i;:::-;-1:-1:-1;9767:9:84;;9706:76::o;9787:258::-;9859:1;9869:113;9883:6;9880:1;9877:13;9869:113;;;9959:11;;;9953:18;9940:11;;;9933:39;9905:2;9898:10;9869:113;;;10000:6;9997:1;9994:13;9991:2;;;10035:1;10026:6;10021:3;10017:16;10010:27;9991:2;;9840:205;;;:::o;10050:195::-;10089:3;10120:66;10113:5;10110:77;10107:2;;;10190:18;;:::i;:::-;-1:-1:-1;10237:1:84;10226:13;;10097:148::o;10250:112::-;10282:1;10308;10298:2;;10313:18;;:::i;:::-;-1:-1:-1;10347:9:84;;10288:74::o;10367:184::-;-1:-1:-1;;;10416:1:84;10409:88;10516:4;10513:1;10506:15;10540:4;10537:1;10530:15;10556:184;-1:-1:-1;;;10605:1:84;10598:88;10705:4;10702:1;10695:15;10729:4;10726:1;10719:15;10745:184;-1:-1:-1;;;10794:1:84;10787:88;10894:4;10891:1;10884:15;10918:4;10915:1;10908:15;10934:616;11109:5;11096:19;-1:-1:-1;;;;;11138:7:84;11134:72;11237:2;11228:7;11225:15;11215:2;;11254:1;11251;11244:12;11215:2;11277:66;11267:76;;11390:2;11385;11378:4;11372:11;11368:20;11365:28;11359:4;11352:42;11442:2;11435:5;11431:14;11418:28;11455:32;11479:7;11455:32;:::i;:::-;11524:3;11520:17;11516:26;;;11509:34;11496:48;;-1:-1:-1;11071:479:84:o;11555:154::-;-1:-1:-1;;;;;11634:5:84;11630:54;11623:5;11620:65;11610:2;;11699:1;11696;11689:12;11610:2;11600:109;:::o;11714:121::-;11799:10;11792:5;11788:22;11781:5;11778:33;11768:2;;11825:1;11822;11815:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1226600",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "checkpoint()": "infinite",
                "claimOwnership()": "54508",
                "doubleCheckpoint(address,uint256)": "infinite",
                "getReserveAccumulatedBetween(uint32,uint32)": "infinite",
                "getToken()": "infinite",
                "manager()": "2365",
                "owner()": "2365",
                "pendingOwner()": "2364",
                "renounceOwnership()": "28158",
                "setManager(address)": "30561",
                "setObservationsAt((uint224,uint32)[])": "infinite",
                "token()": "infinite",
                "transferOwnership(address)": "27966",
                "withdrawAccumulator()": "2360",
                "withdrawTo(address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "checkpoint()": "c2c4c5c1",
              "claimOwnership()": "4e71e0c8",
              "doubleCheckpoint(address,uint256)": "6099b487",
              "getReserveAccumulatedBetween(uint32,uint32)": "af6a9400",
              "getToken()": "21df0da7",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setManager(address)": "d0ebdbe7",
              "setObservationsAt((uint224,uint32)[])": "1af082db",
              "token()": "fc0c546a",
              "transferOwnership(address)": "f2fde38b",
              "withdrawAccumulator()": "2d00ddda",
              "withdrawTo(address,uint256)": "205c2878"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IERC20\",\"name\":\"_token\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"reserveAccumulated\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"withdrawAccumulated\",\"type\":\"uint256\"}],\"name\":\"Checkpoint\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"checkpoint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ERC20Mintable\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"doubleCheckpoint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_startTimestamp\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"_endTimestamp\",\"type\":\"uint32\"}],\"name\":\"getReserveAccumulatedBetween\",\"outputs\":[{\"internalType\":\"uint224\",\"name\":\"\",\"type\":\"uint224\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"internalType\":\"struct ObservationLib.Observation[]\",\"name\":\"observations\",\"type\":\"tuple[]\"}],\"name\":\"setObservationsAt\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"token\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"withdrawAccumulator\",\"outputs\":[{\"internalType\":\"uint224\",\"name\":\"\",\"type\":\"uint224\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"checkpoint()\":{\"details\":\"Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint.\"},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"getReserveAccumulatedBetween(uint32,uint32)\":{\"details\":\"Search the ring buffer for two checkpoint observations and diffs accumulator amount.\",\"params\":{\"endTimestamp\":\"Transfer amount\",\"startTimestamp\":\"Account address\"}},\"getToken()\":{\"returns\":{\"_0\":\"IERC20\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"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.\"},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}},\"withdrawTo(address,uint256)\":{\"details\":\"Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\",\"params\":{\"amount\":\"Transfer amount\",\"recipient\":\"Account address\"}}},\"version\":1},\"userdoc\":{\"events\":{\"Checkpoint(uint256,uint256)\":{\"notice\":\"Emit when checkpoint is created.\"},\"Withdrawn(address,uint256)\":{\"notice\":\"Emit when the withdrawTo function has executed.\"}},\"kind\":\"user\",\"methods\":{\"checkpoint()\":{\"notice\":\"Create observation checkpoint in ring bufferr.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"getReserveAccumulatedBetween(uint32,uint32)\":{\"notice\":\"Calculate token accumulation beween timestamp range.\"},\"getToken()\":{\"notice\":\"Read global token value.\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"token()\":{\"notice\":\"ERC20 token\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"},\"withdrawAccumulator()\":{\"notice\":\"Total withdraw amount from reserve\"},\"withdrawTo(address,uint256)\":{\"notice\":\"Transfer Reserve token balance to recipient address.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/ReserveHarness.sol\":\"ReserveHarness\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\\n * instead returning `false` on failure. This behavior is nonetheless\\n * conventional and does not conflict with the expectations of ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(string memory name_, string memory symbol_) {\\n        _name = name_;\\n        _symbol = symbol_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual override returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual override returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual override returns (uint8) {\\n        return 18;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual override returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual override returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\\n        _transfer(_msgSender(), recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\\n        _approve(_msgSender(), spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual override returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][_msgSender()];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, _msgSender(), currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n        uint256 currentAllowance = _allowances[_msgSender()][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(_msgSender(), spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n}\\n\",\"keccak256\":\"0xb03df8481a954604ad0c9125680893b2e3f7ff770fe470e38b89ac61b84e8072\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\n */\\ninterface IERC20Metadata is IERC20 {\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the symbol of the token.\\n     */\\n    function symbol() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the decimals places of the token.\\n     */\\n    function decimals() external view returns (uint8);\\n}\\n\",\"keccak256\":\"0x83fe24f5c04a56091e50f4a345ff504c8bff658a76d4c43b16878c8f940c53b2\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n    function _msgSender() internal view virtual returns (address) {\\n        return msg.sender;\\n    }\\n\\n    function _msgData() internal view virtual returns (bytes calldata) {\\n        return msg.data;\\n    }\\n}\\n\",\"keccak256\":\"0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"contracts/Reserve.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport \\\"./interfaces/IReserve.sol\\\";\\nimport \\\"./libraries/ObservationLib.sol\\\";\\nimport \\\"./libraries/RingBufferLib.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 Reserve\\n    * @author PoolTogether Inc Team\\n    * @notice The Reserve contract provides historical lookups of a token balance increase during a target timerange.\\n              As the Reserve contract transfers OUT tokens, the withdraw accumulator is increased. When tokens are\\n              transfered IN new checkpoint *can* be created if checkpoint() is called after transfering tokens.\\n              By using the reserve and withdraw accumulators to create a new checkpoint, any contract or account\\n              can lookup the balance increase of the reserve for a target timerange.   \\n    * @dev    By calculating the total held tokens in a specific time range, contracts that require knowledge \\n              of captured interest during a draw period, can easily call into the Reserve and deterministically\\n              determine the newly aqcuired tokens for that time range. \\n */\\ncontract Reserve is IReserve, Manageable {\\n    using SafeERC20 for IERC20;\\n\\n    /// @notice ERC20 token\\n    IERC20 public immutable token;\\n\\n    /// @notice Total withdraw amount from reserve\\n    uint224 public withdrawAccumulator;\\n    uint32 private _gap;\\n\\n    uint24 internal nextIndex;\\n    uint24 internal cardinality;\\n\\n    /// @notice The maximum number of twab entries\\n    uint24 internal constant MAX_CARDINALITY = 16777215; // 2**24 - 1\\n\\n    ObservationLib.Observation[MAX_CARDINALITY] internal reserveAccumulators;\\n\\n    /* ============ Events ============ */\\n\\n    event Deployed(IERC20 indexed token);\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructs Ticket with passed parameters.\\n     * @param _owner Owner address\\n     * @param _token ERC20 address\\n     */\\n    constructor(address _owner, IERC20 _token) Ownable(_owner) {\\n        token = _token;\\n        emit Deployed(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IReserve\\n    function checkpoint() external override {\\n        _checkpoint();\\n    }\\n\\n    /// @inheritdoc IReserve\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IReserve\\n    function getReserveAccumulatedBetween(uint32 _startTimestamp, uint32 _endTimestamp)\\n        external\\n        view\\n        override\\n        returns (uint224)\\n    {\\n        require(_startTimestamp < _endTimestamp, \\\"Reserve/start-less-than-end\\\");\\n        uint24 _cardinality = cardinality;\\n        uint24 _nextIndex = nextIndex;\\n\\n        (uint24 _newestIndex, ObservationLib.Observation memory _newestObservation) = _getNewestObservation(_nextIndex);\\n        (uint24 _oldestIndex, ObservationLib.Observation memory _oldestObservation) = _getOldestObservation(_nextIndex);\\n\\n        uint224 _start = _getReserveAccumulatedAt(\\n            _newestObservation,\\n            _oldestObservation,\\n            _newestIndex,\\n            _oldestIndex,\\n            _cardinality,\\n            _startTimestamp\\n        );\\n\\n        uint224 _end = _getReserveAccumulatedAt(\\n            _newestObservation,\\n            _oldestObservation,\\n            _newestIndex,\\n            _oldestIndex,\\n            _cardinality,\\n            _endTimestamp\\n        );\\n\\n        return _end - _start;\\n    }\\n\\n    /// @inheritdoc IReserve\\n    function withdrawTo(address _recipient, uint256 _amount) external override onlyManagerOrOwner {\\n        _checkpoint();\\n\\n        withdrawAccumulator += uint224(_amount);\\n        \\n        token.safeTransfer(_recipient, _amount);\\n\\n        emit Withdrawn(_recipient, _amount);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Find optimal observation checkpoint using target timestamp\\n     * @dev    Uses binary search if target timestamp is within ring buffer range.\\n     * @param _newestObservation ObservationLib.Observation\\n     * @param _oldestObservation ObservationLib.Observation\\n     * @param _newestIndex The index of the newest observation\\n     * @param _oldestIndex The index of the oldest observation\\n     * @param _cardinality       RingBuffer Range\\n     * @param _timestamp          Timestamp target\\n     *\\n     * @return Optimal reserveAccumlator for timestamp.\\n     */\\n    function _getReserveAccumulatedAt(\\n        ObservationLib.Observation memory _newestObservation,\\n        ObservationLib.Observation memory _oldestObservation,\\n        uint24 _newestIndex,\\n        uint24 _oldestIndex,\\n        uint24 _cardinality,\\n        uint32 _timestamp\\n    ) internal view returns (uint224) {\\n        uint32 timeNow = uint32(block.timestamp);\\n\\n        // IF empty ring buffer exit early.\\n        if (_cardinality == 0) return 0;\\n\\n        /**\\n         * Ring Buffer Search Optimization\\n         * Before performing binary search on the ring buffer check\\n         * to see if timestamp is within range of [o T n] by comparing\\n         * the target timestamp to the oldest/newest observation.timestamps\\n         * IF the timestamp is out of the ring buffer range avoid starting\\n         * a binary search, because we can return NULL or oldestObservation.amount\\n         */\\n\\n        /**\\n         * IF oldestObservation.timestamp is after timestamp: T[old ]\\n         * the Reserve did NOT have a balance or the ring buffer\\n         * no longer contains that timestamp checkpoint.\\n         */\\n        if (_oldestObservation.timestamp > _timestamp) {\\n            return 0;\\n        }\\n\\n        /**\\n         * IF newestObservation.timestamp is before timestamp: [ new]T\\n         * return _newestObservation.amount since observation\\n         * contains the highest checkpointed reserveAccumulator.\\n         */\\n        if (_newestObservation.timestamp <= _timestamp) {\\n            return _newestObservation.amount;\\n        }\\n\\n        // IF the timestamp is witin range of ring buffer start/end: [new T old]\\n        // FIND the closest observation to the left(or exact) of timestamp: [OT ]\\n        (\\n            ObservationLib.Observation memory beforeOrAt,\\n            ObservationLib.Observation memory atOrAfter\\n        ) = ObservationLib.binarySearch(\\n                reserveAccumulators,\\n                _newestIndex,\\n                _oldestIndex,\\n                _timestamp,\\n                _cardinality,\\n                timeNow\\n            );\\n\\n        // IF target timestamp is EXACT match for atOrAfter.timestamp observation return amount.\\n        // NOT having an exact match with atOrAfter means values will contain accumulator value AFTER the searchable range.\\n        // ELSE return observation.totalDepositedAccumulator closest to LEFT of target timestamp.\\n        if (atOrAfter.timestamp == _timestamp) {\\n            return atOrAfter.amount;\\n        } else {\\n            return beforeOrAt.amount;\\n        }\\n    }\\n\\n    /// @notice Records the currently accrued reserve amount.\\n    function _checkpoint() internal {\\n        uint24 _cardinality = cardinality;\\n        uint24 _nextIndex = nextIndex;\\n        uint256 _balanceOfReserve = token.balanceOf(address(this));\\n        uint224 _withdrawAccumulator = withdrawAccumulator; //sload\\n        (uint24 newestIndex, ObservationLib.Observation memory newestObservation) = _getNewestObservation(_nextIndex);\\n\\n        /**\\n         * IF tokens have been deposited into Reserve contract since the last checkpoint\\n         * create a new Reserve balance checkpoint. The will will update multiple times in a single block.\\n         */\\n        if (_balanceOfReserve + _withdrawAccumulator > newestObservation.amount) {\\n            uint32 nowTime = uint32(block.timestamp);\\n\\n            // checkpointAccumulator = currentBalance + totalWithdraws\\n            uint224 newReserveAccumulator = uint224(_balanceOfReserve) + _withdrawAccumulator;\\n\\n            // IF newestObservation IS NOT in the current block.\\n            // CREATE observation in the accumulators ring buffer.\\n            if (newestObservation.timestamp != nowTime) {\\n                reserveAccumulators[_nextIndex] = ObservationLib.Observation({\\n                    amount: newReserveAccumulator,\\n                    timestamp: nowTime\\n                });\\n                nextIndex = uint24(RingBufferLib.nextIndex(_nextIndex, MAX_CARDINALITY));\\n                if (_cardinality < MAX_CARDINALITY) {\\n                    cardinality = _cardinality + 1;\\n                }\\n            }\\n            // ELSE IF newestObservation IS in the current block.\\n            // UPDATE the checkpoint previously created in block history.\\n            else {\\n                reserveAccumulators[newestIndex] = ObservationLib.Observation({\\n                    amount: newReserveAccumulator,\\n                    timestamp: nowTime\\n                });\\n            }\\n\\n            emit Checkpoint(newReserveAccumulator, _withdrawAccumulator);\\n        }\\n    }\\n\\n    /// @notice Retrieves the oldest observation\\n    /// @param _nextIndex The next index of the Reserve observations\\n    function _getOldestObservation(uint24 _nextIndex)\\n        internal\\n        view\\n        returns (uint24 index, ObservationLib.Observation memory observation)\\n    {\\n        index = _nextIndex;\\n        observation = reserveAccumulators[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (observation.timestamp == 0) {\\n            index = 0;\\n            observation = reserveAccumulators[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest observation\\n    /// @param _nextIndex The next index of the Reserve observations\\n    function _getNewestObservation(uint24 _nextIndex)\\n        internal\\n        view\\n        returns (uint24 index, ObservationLib.Observation memory observation)\\n    {\\n        index = uint24(RingBufferLib.newestIndex(_nextIndex, MAX_CARDINALITY));\\n        observation = reserveAccumulators[index];\\n    }\\n}\\n\",\"keccak256\":\"0x5be51c0e373153f0d6e95ecb7ff60e7cdd67aa6356f6e5ea43ee075ed526de31\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IReserve.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface IReserve {\\n    /**\\n     * @notice Emit when checkpoint is created.\\n     * @param reserveAccumulated  Total depsosited\\n     * @param withdrawAccumulated Total withdrawn\\n     */\\n\\n    event Checkpoint(uint256 reserveAccumulated, uint256 withdrawAccumulated);\\n    /**\\n     * @notice Emit when the withdrawTo function has executed.\\n     * @param recipient Address receiving funds\\n     * @param amount    Amount of tokens transfered.\\n     */\\n    event Withdrawn(address indexed recipient, uint256 amount);\\n\\n    /**\\n     * @notice Create observation checkpoint in ring bufferr.\\n     * @dev    Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint.\\n     */\\n    function checkpoint() external;\\n\\n    /**\\n     * @notice Read global token value.\\n     * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n     * @notice Calculate token accumulation beween timestamp range.\\n     * @dev    Search the ring buffer for two checkpoint observations and diffs accumulator amount.\\n     * @param startTimestamp Account address\\n     * @param endTimestamp   Transfer amount\\n     */\\n    function getReserveAccumulatedBetween(uint32 startTimestamp, uint32 endTimestamp)\\n        external\\n        returns (uint224);\\n\\n    /**\\n     * @notice Transfer Reserve token balance to recipient address.\\n     * @dev    Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\\n     * @param recipient Account address\\n     * @param amount    Transfer amount\\n     */\\n    function withdrawTo(address recipient, uint256 amount) external;\\n}\\n\",\"keccak256\":\"0x630c99a29c1df33cf2cf9492ea8640e875fa6cbb46c53a9d1ce935567589fef6\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/test/ERC20Mintable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/ERC20.sol\\\";\\n\\n/**\\n * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\\n * which have permission to mint (create) new tokens as they see fit.\\n *\\n * At construction, the deployer of the contract is the only minter.\\n */\\ncontract ERC20Mintable is ERC20 {\\n    constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {}\\n\\n    /**\\n     * @dev See {ERC20-_mint}.\\n     *\\n     * Requirements:\\n     *\\n     * - the caller must have the {MinterRole}.\\n     */\\n    function mint(address account, uint256 amount) public {\\n        _mint(account, amount);\\n    }\\n\\n    function burn(address account, uint256 amount) public returns (bool) {\\n        _burn(account, amount);\\n        return true;\\n    }\\n\\n    function masterTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) public {\\n        _transfer(from, to, amount);\\n    }\\n}\\n\",\"keccak256\":\"0xb12c70d2e26ca0478bc0b2a7923519275e2b7edf75eb4d66abdb492091f02984\",\"license\":\"GPL-3.0\"},\"contracts/test/ReserveHarness.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../Reserve.sol\\\";\\nimport \\\"./ERC20Mintable.sol\\\";\\n\\ncontract ReserveHarness is Reserve {\\n    constructor(address _owner, IERC20 _token) Reserve(_owner, _token) {}\\n\\n    function setObservationsAt(ObservationLib.Observation[] calldata observations) external {\\n        for (uint256 i = 0; i < observations.length; i++) {\\n            reserveAccumulators[i] = observations[i];\\n        }\\n\\n        nextIndex = uint24(observations.length);\\n        cardinality = uint24(observations.length);\\n    }\\n\\n    function doubleCheckpoint(ERC20Mintable _token, uint256 _amount) external {\\n        _checkpoint();\\n        _token.mint(address(this), _amount);\\n        _checkpoint();\\n    }\\n}\\n\",\"keccak256\":\"0xc8479972c73531e2369786904b5fc0a571b67051c7caf0fe6c7f1ba6b2a03648\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3936,
                "contract": "contracts/test/ReserveHarness.sol:ReserveHarness",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3938,
                "contract": "contracts/test/ReserveHarness.sol:ReserveHarness",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3834,
                "contract": "contracts/test/ReserveHarness.sol:ReserveHarness",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 9510,
                "contract": "contracts/test/ReserveHarness.sol:ReserveHarness",
                "label": "withdrawAccumulator",
                "offset": 0,
                "slot": "3",
                "type": "t_uint224"
              },
              {
                "astId": 9512,
                "contract": "contracts/test/ReserveHarness.sol:ReserveHarness",
                "label": "_gap",
                "offset": 28,
                "slot": "3",
                "type": "t_uint32"
              },
              {
                "astId": 9514,
                "contract": "contracts/test/ReserveHarness.sol:ReserveHarness",
                "label": "nextIndex",
                "offset": 0,
                "slot": "4",
                "type": "t_uint24"
              },
              {
                "astId": 9516,
                "contract": "contracts/test/ReserveHarness.sol:ReserveHarness",
                "label": "cardinality",
                "offset": 3,
                "slot": "4",
                "type": "t_uint24"
              },
              {
                "astId": 9525,
                "contract": "contracts/test/ReserveHarness.sol:ReserveHarness",
                "label": "reserveAccumulators",
                "offset": 0,
                "slot": "5",
                "type": "t_array(t_struct(Observation)12454_storage)16777215_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(Observation)12454_storage)16777215_storage": {
                "base": "t_struct(Observation)12454_storage",
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation[16777215]",
                "numberOfBytes": "536870880"
              },
              "t_struct(Observation)12454_storage": {
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation",
                "members": [
                  {
                    "astId": 12451,
                    "contract": "contracts/test/ReserveHarness.sol:ReserveHarness",
                    "label": "amount",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint224"
                  },
                  {
                    "astId": 12453,
                    "contract": "contracts/test/ReserveHarness.sol:ReserveHarness",
                    "label": "timestamp",
                    "offset": 28,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint224": {
                "encoding": "inplace",
                "label": "uint224",
                "numberOfBytes": "28"
              },
              "t_uint24": {
                "encoding": "inplace",
                "label": "uint24",
                "numberOfBytes": "3"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              }
            }
          },
          "userdoc": {
            "events": {
              "Checkpoint(uint256,uint256)": {
                "notice": "Emit when checkpoint is created."
              },
              "Withdrawn(address,uint256)": {
                "notice": "Emit when the withdrawTo function has executed."
              }
            },
            "kind": "user",
            "methods": {
              "checkpoint()": {
                "notice": "Create observation checkpoint in ring bufferr."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "getReserveAccumulatedBetween(uint32,uint32)": {
                "notice": "Calculate token accumulation beween timestamp range."
              },
              "getToken()": {
                "notice": "Read global token value."
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "token()": {
                "notice": "ERC20 token"
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              },
              "withdrawAccumulator()": {
                "notice": "Total withdraw amount from reserve"
              },
              "withdrawTo(address,uint256)": {
                "notice": "Transfer Reserve token balance to recipient address."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/test/TicketHarness.sol": {
        "TicketHarness": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "string",
                  "name": "_name",
                  "type": "string"
                },
                {
                  "internalType": "string",
                  "name": "_symbol",
                  "type": "string"
                },
                {
                  "internalType": "uint8",
                  "name": "decimals_",
                  "type": "uint8"
                },
                {
                  "internalType": "address",
                  "name": "_controller",
                  "type": "address"
                }
              ],
              "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": "delegator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                }
              ],
              "name": "Delegated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "name",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "symbol",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "uint8",
                  "name": "decimals",
                  "type": "uint8"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "controller",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct ObservationLib.Observation",
                  "name": "newTotalSupplyTwab",
                  "type": "tuple"
                }
              ],
              "name": "NewTotalSupplyTwab",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                },
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct ObservationLib.Observation",
                  "name": "newTwab",
                  "type": "tuple"
                }
              ],
              "name": "NewUserTwab",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "name",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "symbol",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "uint8",
                  "name": "decimals",
                  "type": "uint8"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "controller",
                  "type": "address"
                }
              ],
              "name": "TicketInitialized",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "DOMAIN_SEPARATOR",
              "outputs": [
                {
                  "internalType": "bytes32",
                  "name": "",
                  "type": "bytes32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "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": "address",
                  "name": "_from",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "burn",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "controller",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurn",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_operator",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurnFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                }
              ],
              "name": "controllerDelegateFor",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerMint",
              "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": "_to",
                  "type": "address"
                }
              ],
              "name": "delegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                }
              ],
              "name": "delegateOf",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_newDelegate",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_deadline",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "_v",
                  "type": "uint8"
                },
                {
                  "internalType": "bytes32",
                  "name": "_r",
                  "type": "bytes32"
                },
                {
                  "internalType": "bytes32",
                  "name": "_s",
                  "type": "bytes32"
                }
              ],
              "name": "delegateWithSignature",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "flashLoan",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                }
              ],
              "name": "getAccountDetails",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint208",
                      "name": "balance",
                      "type": "uint208"
                    },
                    {
                      "internalType": "uint24",
                      "name": "nextTwabIndex",
                      "type": "uint24"
                    },
                    {
                      "internalType": "uint24",
                      "name": "cardinality",
                      "type": "uint24"
                    }
                  ],
                  "internalType": "struct TwabLib.AccountDetails",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint64",
                  "name": "_startTime",
                  "type": "uint64"
                },
                {
                  "internalType": "uint64",
                  "name": "_endTime",
                  "type": "uint64"
                }
              ],
              "name": "getAverageBalanceBetween",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32",
                  "name": "_startTime",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "_endTime",
                  "type": "uint32"
                }
              ],
              "name": "getAverageBalanceTx",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint64[]",
                  "name": "_startTimes",
                  "type": "uint64[]"
                },
                {
                  "internalType": "uint64[]",
                  "name": "_endTimes",
                  "type": "uint64[]"
                }
              ],
              "name": "getAverageBalancesBetween",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64[]",
                  "name": "_startTimes",
                  "type": "uint64[]"
                },
                {
                  "internalType": "uint64[]",
                  "name": "_endTimes",
                  "type": "uint64[]"
                }
              ],
              "name": "getAverageTotalSuppliesBetween",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint64",
                  "name": "_target",
                  "type": "uint64"
                }
              ],
              "name": "getBalanceAt",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32",
                  "name": "_target",
                  "type": "uint32"
                }
              ],
              "name": "getBalanceTx",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint64[]",
                  "name": "_targets",
                  "type": "uint64[]"
                }
              ],
              "name": "getBalancesAt",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64[]",
                  "name": "_targets",
                  "type": "uint64[]"
                }
              ],
              "name": "getTotalSuppliesAt",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "_target",
                  "type": "uint64"
                }
              ],
              "name": "getTotalSupplyAt",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint16",
                  "name": "_index",
                  "type": "uint16"
                }
              ],
              "name": "getTwab",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct ObservationLib.Observation",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "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": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "mint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "mintTwice",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "nonces",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "deadline",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "v",
                  "type": "uint8"
                },
                {
                  "internalType": "bytes32",
                  "name": "r",
                  "type": "bytes32"
                },
                {
                  "internalType": "bytes32",
                  "name": "s",
                  "type": "bytes32"
                }
              ],
              "name": "permit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "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"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "transferTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "DOMAIN_SEPARATOR()": {
                "details": "See {IERC20Permit-DOMAIN_SEPARATOR}."
              },
              "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}."
              },
              "controllerBurn(address,uint256)": {
                "details": "May be overridden to provide more granular control over burning",
                "params": {
                  "_amount": "Amount of tokens to burn",
                  "_user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerBurnFrom(address,address,uint256)": {
                "details": "May be overridden to provide more granular control over operator-burning",
                "params": {
                  "_amount": "Amount of tokens to burn",
                  "_operator": "Address of the operator performing the burn action via the controller contract",
                  "_user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerDelegateFor(address,address)": {
                "params": {
                  "delegate": "The new delegate",
                  "user": "The user for whom to delegate"
                }
              },
              "controllerMint(address,uint256)": {
                "details": "May be overridden to provide more granular control over minting",
                "params": {
                  "_amount": "Amount of tokens to mint",
                  "_user": "Address of the receiver of the minted tokens"
                }
              },
              "decimals()": {
                "details": "This value should be equal to the decimals of the token used to deposit into the pool.",
                "returns": {
                  "_0": "uint8 decimals."
                }
              },
              "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`."
              },
              "delegate(address)": {
                "details": "Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the targetted sender and/or recipient address(s).To reset the delegate, pass the zero address (0x000.000) as `to` parameter.Current delegate address should be different from the new delegate address `to`.",
                "params": {
                  "to": "Recipient of delegated TWAB."
                }
              },
              "delegateOf(address)": {
                "details": "Address of the delegate will be the zero address if `user` has not delegated their tickets.",
                "params": {
                  "user": "Address of the delegator."
                },
                "returns": {
                  "_0": "Address of the delegate."
                }
              },
              "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": {
                "params": {
                  "deadline": "The timestamp by which this must be submitted",
                  "delegate": "The new delegate",
                  "r": "The r portion of the ECDSA sig",
                  "s": "The s portion of the ECDSA sig",
                  "user": "The user who is delegating",
                  "v": "The v portion of the ECDSA sig"
                }
              },
              "getAccountDetails(address)": {
                "params": {
                  "user": "The user for whom to fetch the TWAB context."
                },
                "returns": {
                  "_0": "The TWAB context, which includes { balance, nextTwabIndex, cardinality }"
                }
              },
              "getAverageBalanceBetween(address,uint64,uint64)": {
                "params": {
                  "endTime": "The end time of the time frame.",
                  "startTime": "The start time of the time frame.",
                  "user": "The user whose balance is checked."
                },
                "returns": {
                  "_0": "The average balance that the user held during the time frame."
                }
              },
              "getAverageBalancesBetween(address,uint64[],uint64[])": {
                "params": {
                  "endTimes": "The end time of the time frame.",
                  "startTimes": "The start time of the time frame.",
                  "user": "The user whose balance is checked."
                },
                "returns": {
                  "_0": "The average balance that the user held during the time frame."
                }
              },
              "getAverageTotalSuppliesBetween(uint64[],uint64[])": {
                "params": {
                  "endTimes": "Array of end times.",
                  "startTimes": "Array of start times."
                },
                "returns": {
                  "_0": "The average total supplies held during the time frame."
                }
              },
              "getBalanceAt(address,uint64)": {
                "params": {
                  "timestamp": "Timestamp at which we want to retrieve the TWAB balance.",
                  "user": "Address of the user whose TWAB is being fetched."
                },
                "returns": {
                  "_0": "The TWAB balance at the given timestamp."
                }
              },
              "getBalancesAt(address,uint64[])": {
                "params": {
                  "timestamps": "Timestamps range at which we want to retrieve the TWAB balances.",
                  "user": "Address of the user whose TWABs are being fetched."
                },
                "returns": {
                  "_0": "`user` TWAB balances."
                }
              },
              "getTotalSuppliesAt(uint64[])": {
                "params": {
                  "timestamps": "Timestamps range at which we want to retrieve the total supply TWAB balance."
                },
                "returns": {
                  "_0": "Total supply TWAB balances."
                }
              },
              "getTotalSupplyAt(uint64)": {
                "params": {
                  "timestamp": "Timestamp at which we want to retrieve the total supply TWAB balance."
                },
                "returns": {
                  "_0": "The total supply TWAB balance at the given timestamp."
                }
              },
              "getTwab(address,uint16)": {
                "params": {
                  "index": "The index of the TWAB to fetch.",
                  "user": "The user for whom to fetch the TWAB."
                },
                "returns": {
                  "_0": "The TWAB, which includes the twab amount and the timestamp."
                }
              },
              "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."
              },
              "nonces(address)": {
                "details": "See {IERC20Permit-nonces}."
              },
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": {
                "details": "See {IERC20Permit-permit}."
              },
              "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`."
              },
              "transferTo(address,address,uint256)": {
                "details": "we need to use a different function name than `transfer` otherwise it collides with the `transfer` function of the `ERC20` contract"
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_10001": {
                  "entryPoint": null,
                  "id": 10001,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_16821": {
                  "entryPoint": null,
                  "id": 16821,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_3129": {
                  "entryPoint": null,
                  "id": 3129,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_5208": {
                  "entryPoint": null,
                  "id": 5208,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_727": {
                  "entryPoint": null,
                  "id": 727,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_84": {
                  "entryPoint": null,
                  "id": 84,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_3178": {
                  "entryPoint": null,
                  "id": 3178,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 918,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory": {
                  "entryPoint": 1063,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_encode_string": {
                  "entryPoint": 1227,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed": {
                  "entryPoint": 1273,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 1334,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "extract_byte_array_length": {
                  "entryPoint": 1385,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 1446,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:4371:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:622:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:84"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:84"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:84",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:84"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:84",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:84"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:84"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:84"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "582:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "591:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "594:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "584:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "584:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "584:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "557:6:84"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "565:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "553:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "553:15:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "570:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "549:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "549:26:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "577:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "546:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "546:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "543:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "633:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "641:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "629:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "629:17:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "652:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "660:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "648:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "648:17:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "667:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "607:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "607:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "607:63:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "679:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "688:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "679:5:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:686:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "855:738:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "902:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "911:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "914:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "904:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "904:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "904:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "876:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "885:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "872:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "872:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "897:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "868:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "868:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "865:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "927:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "947:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "941:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "941:16:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "931:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "966:28:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "984:2:84",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "988:1:84",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "980:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "980:10:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "992:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "976:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "976:18:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "970:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1021:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1030:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1033:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1023:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1023:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1023:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1009:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1017:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1006:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1006:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1003:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1046:71:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1089:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1100:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1085:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1085:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1109:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1056:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1056:61:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1046:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1126:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1152:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1163:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1148:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1148:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1142:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1142:25:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1130:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1196:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1205:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1208:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1198:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1198:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1198:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1182:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1192:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1179:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1179:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1176:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1221:73:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1264:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1275:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1260:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1260:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1286:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1231:28:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1231:63:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1221:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1303:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1326:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1337:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1322:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1322:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1316:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1316:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1307:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1389:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1398:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1401:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1391:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1391:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1391:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1363:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1374:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1381:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1370:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1370:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1360:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1360:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1353:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1353:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1350:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1414:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1424:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1414:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1438:40:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1463:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1474:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1459:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1459:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1453:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1453:25:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1442:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1545:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1554:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1557:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1547:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1547:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1547:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1500:7:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "1513:7:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1530:3:84",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1535:1:84",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1526:3:84"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1526:11:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1539:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1522:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1522:19:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1509:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1509:33:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1497:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1497:46:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1490:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1490:54:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1487:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1570:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1580:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1570:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "797:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "808:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "820:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "828:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "836:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "844:6:84",
                            "type": ""
                          }
                        ],
                        "src": "705:888:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1648:208:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1658:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1678:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1672:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1672:12:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1662:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:3:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1705:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1693:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1693:19:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1693:19:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1747:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1754:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1743:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1743:16:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1765:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1770:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1761:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1761:14:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1777:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1721:21:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1721:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1721:63:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1793:57:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1808:3:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1821:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1829:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "1817:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1817:15:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1838:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "not",
                                              "nodeType": "YulIdentifier",
                                              "src": "1834:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1834:7:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1813:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1813:29:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1804:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1804:39:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1845:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1800:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1800:50:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1793:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_string",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1625:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "1632:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1640:3:84",
                            "type": ""
                          }
                        ],
                        "src": "1598:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2074:276:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2084:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2096:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2107:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2092:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2092:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2084:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2127:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2138:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2120:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2120:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2120:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2165:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2176:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2161:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2161:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2181:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2154:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2154:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2154:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2208:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2219:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2204:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2204:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2224:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2197:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2197:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2197:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2251:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2262:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2247:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2247:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "2267:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2240:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2240:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2240:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2294:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2305:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2290:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2290:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "2315:6:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2331:3:84",
                                                "type": "",
                                                "value": "160"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2336:1:84",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "2327:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2327:11:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2340:1:84",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "2323:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2323:19:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2311:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2311:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2283:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2283:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2283:61:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2011:9:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2022:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2030:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2038:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2046:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2054:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2065:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1861:489:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2548:268:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2565:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2576:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2558:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2558:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2558:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2588:59:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2620:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2632:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2643:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2628:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2628:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2602:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2602:45:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2592:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2667:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2678:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2663:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2663:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2687:6:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2695:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2683:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2683:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2656:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2656:50:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2656:50:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2715:41:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2741:6:84"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2749:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2723:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2723:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2715:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2776:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2787:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2772:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2772:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2796:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2804:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2792:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2792:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2765:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2765:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2765:45:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2501:9:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2512:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2520:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2528:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2539:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2355:461:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2995:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3012:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3023:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3005:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3005:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3005:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3046:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3057:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3042:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3042:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3062:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3035:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3035:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3035:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3085:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3096:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3081:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3081:18:84"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3101:34:84",
                                    "type": "",
                                    "value": "ControlledToken/decimals-gt-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3074:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3074:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3074:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3145:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3157:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3168:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3153:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3153:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3145:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2972:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2986:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2821:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3356:233:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3373:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3384:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3366:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3366:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3366:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3407:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3418:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3403:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3403:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3423:2:84",
                                    "type": "",
                                    "value": "43"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3396:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3396:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3396:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3446:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3457:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3442:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3442:18:84"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3462:34:84",
                                    "type": "",
                                    "value": "ControlledToken/controller-not-z"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3435:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3435:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3435:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3517:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3528:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3513:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3513:18:84"
                                  },
                                  {
                                    "hexValue": "65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3533:13:84",
                                    "type": "",
                                    "value": "ero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3506:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3506:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3506:41:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3556:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3568:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3579:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3564:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3564:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3556:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3333:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3347:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3182:407:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3647:205:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3657:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3666:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3661:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3726:63:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "3751:3:84"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "3756:1:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3747:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3747:11:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3770:3:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3775:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "3766:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "3766:11:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3760:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3760:18:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3740:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3740:39:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3740:39:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3687:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3690:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3684:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3684:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3698:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3700:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3709:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3712:2:84",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3705:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3705:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3700:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3680:3:84",
                                "statements": []
                              },
                              "src": "3676:113:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3815:31:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "3828:3:84"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "3833:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3824:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3824:16:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3842:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3817:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3817:27:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3817:27:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3804:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3807:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3801:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3801:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3798:2:84"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "3625:3:84",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "3630:3:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "3635:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3594:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3912:325:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3922:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3936:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "3939:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "3932:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3932:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "3922:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3953:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "3983:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3989:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "3979:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3979:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "3957:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4030:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4032:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "4046:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4054:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "4042:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4042:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "4032:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "4010:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4003:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4003:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4000:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4120:111:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4141:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4148:3:84",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4153:10:84",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "4144:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4144:20:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4134:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4134:31:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4134:31:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4185:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4188:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4178:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4178:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4178:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4213:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4216:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4206:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4206:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4206:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "4076:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "4099:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4107:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4096:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4096:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "4073:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4073:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4070:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "3892:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "3901:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3857:380:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4274:95:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4291:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4298:3:84",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4303:10:84",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "4294:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4294:20:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4284:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4284:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4284:31:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4331:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4334:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4324:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4324:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4324:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4355:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4358:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "4348:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4348:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4348:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "4242:127:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        if gt(add(add(offset, _1), 0x20), end) { revert(0, 0) }\n        copy_memory_to_memory(add(offset, 0x20), add(memPtr, 0x20), _1)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        let value := mload(add(headStart, 64))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value2 := value\n        let value_1 := mload(add(headStart, 96))\n        if iszero(eq(value_1, and(value_1, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value3 := value_1\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 96)\n        let tail_1 := abi_encode_string(value0, add(headStart, 96))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_string(value1, tail_1)\n        mstore(add(headStart, 64), and(value2, 0xff))\n    }\n    function abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"ControlledToken/decimals-gt-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 43)\n        mstore(add(headStart, 64), \"ControlledToken/controller-not-z\")\n        mstore(add(headStart, 96), \"ero-address\")\n        tail := add(headStart, 128)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\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) { mstore(add(dst, length), 0) }\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "6101a06040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120527f94019368dc6b2ee4ac32010c9d0081ec29874325b541829d001d22c296b5246c610180523480156200005c57600080fd5b5060405162003e8738038062003e878339810160408190526200007f9162000427565b83838383838383836040518060400160405280601c81526020017f506f6f6c546f67657468657220436f6e74726f6c6c6564546f6b656e0000000081525080604051806040016040528060018152602001603160f81b81525086868160039080519060200190620000f2929190620002f0565b50805162000108906004906020840190620002f0565b5050825160209384012082519284019290922060c083815260e08290524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818a018190528183019890985260608101959095526080808601939093523085830152805180860390920182529390920190925280519401939093209092526101005250506001600160a01b038116620002055760405162461bcd60e51b815260206004820152602b60248201527f436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a60448201526a65726f2d6164647265737360a81b60648201526084015b60405180910390fd5b6001600160601b0319606082901b166101405260ff82166200026a5760405162461bcd60e51b815260206004820181905260248201527f436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f6044820152606401620001fc565b7fff0000000000000000000000000000000000000000000000000000000000000060f883901b16610160526040516001600160a01b038216907fde72fc29218361f33503847e6f32be813f9ec92fc7c772bb59e46675c890fd0e90620002d690879087908790620004f9565b60405180910390a2505050505050505050505050620005bc565b828054620002fe9062000569565b90600052602060002090601f0160209004810192826200032257600085556200036d565b82601f106200033d57805160ff19168380011785556200036d565b828001600101855582156200036d579182015b828111156200036d57825182559160200191906001019062000350565b506200037b9291506200037f565b5090565b5b808211156200037b576000815560010162000380565b600082601f830112620003a857600080fd5b81516001600160401b0380821115620003c557620003c5620005a6565b604051601f8301601f19908116603f01168101908282118183101715620003f057620003f0620005a6565b816040528381528660208588010111156200040a57600080fd5b6200041d84602083016020890162000536565b9695505050505050565b600080600080608085870312156200043e57600080fd5b84516001600160401b03808211156200045657600080fd5b620004648883890162000396565b955060208701519150808211156200047b57600080fd5b506200048a8782880162000396565b935050604085015160ff81168114620004a257600080fd5b60608601519092506001600160a01b0381168114620004c057600080fd5b939692955090935050565b60008151808452620004e581602086016020860162000536565b601f01601f19169290920160200192915050565b6060815260006200050e6060830186620004cb565b8281036020840152620005228186620004cb565b91505060ff83166040830152949350505050565b60005b838110156200055357818101518382015260200162000539565b8381111562000563576000848401525b50505050565b600181811c908216806200057e57607f821691505b60208210811415620005a057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160e05161010051610120516101405160601c6101605160f81c610180516138386200064f6000396000610f6b015260006103df0152600081816106be0152818161098601528181610af001528181610c840152610ea0015260006111cd015260006117e9015260006118380152600061181301526000611797015260006117c001526138386000f3fe608060405234801561001057600080fd5b50600436106102925760003560e01c806368c7fd571161016057806398b16f36116100d8578063a5f2a1521161008c578063d505accf11610071578063d505accf1461066d578063dd62ed3e14610680578063f77c4791146106b957600080fd5b8063a5f2a15214610647578063a9059cbb1461065a57600080fd5b80639dc29fac116100bd5780639dc29fac146106135780639ecb037014610626578063a457c2d71461063457600080fd5b806398b16f36146105f25780639d9e465c1461060057600080fd5b80638d22ea2a1161012f57806390596dd11161011457806390596dd1146105c4578063919974dc146105d757806395d89b41146105ea57600080fd5b80638d22ea2a1461056a5780638e6d536a146105b157600080fd5b806368c7fd571461050857806370a082311461051b5780637ecebe001461054457806385beb5f11461055757600080fd5b806333e39b611161020e578063456f95e6116101c25780635d7b0758116101a75780635d7b0758146104c2578063613ed6bd146104d5578063631b5dfb146104f557600080fd5b8063456f95e61461049c5780635c19a95c146104af57600080fd5b806336bb2a38116101f357806336bb2a3814610439578063395093511461047657806340c10f191461048957600080fd5b806333e39b611461041c5780633644e5151461043157600080fd5b806323b872dd116102655780632d0dd6861161024a5780632d0dd686146103c5578063313ce567146103d857806331c4293d1461040957600080fd5b806323b872dd146103015780632aceb5341461031457600080fd5b806306fdde0314610297578063095ea7b3146102b557806309daa017146102d857806318160ddd146102f9575b600080fd5b61029f6106e0565b6040516102ac9190613529565b60405180910390f35b6102c86102c3366004613321565b610772565b60405190151581526020016102ac565b6102eb6102e636600461334b565b610789565b6040519081526020016102ac565b6002546102eb565b6102c861030f36600461310a565b6107f8565b61038d6103223660046130bc565b6040805160608082018352600080835260208084018290529284018190526001600160a01b03949094168452600682529282902082519384018352546001600160d01b038116845262ffffff600160d01b8204811692850192909252600160e81b9004169082015290565b6040805182516001600160d01b0316815260208084015162ffffff9081169183019190915292820151909216908201526060016102ac565b6102eb6103d33660046134ca565b6108be565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016102ac565b6102eb610417366004613375565b61090a565b61042f61042a3660046130d7565b61097b565b005b6102eb610a01565b61044c6104473660046132e3565b610a10565b6040805182516001600160e01b0316815260209283015163ffffffff1692810192909252016102ac565b6102c8610484366004613321565b610a88565b61042f610497366004613321565b610ac4565b61042f6104aa366004613321565b610ace565b61042f6104bd3660046130bc565b610ad8565b61042f6104d0366004613321565b610ae5565b6104e86104e336600461320f565b610b5d565b6040516102ac91906134e5565b61042f61050336600461310a565b610c79565b6104e8610516366004613262565b610d52565b6102eb6105293660046130bc565b6001600160a01b031660009081526020819052604090205490565b6102eb6105523660046130bc565b610d84565b6104e861056536600461341c565b610da2565b6105996105783660046130bc565b6001600160a01b039081166000908152630100000760205260409020541690565b6040516001600160a01b0390911681526020016102ac565b6104e86105bf36600461345e565b610e85565b61042f6105d2366004613321565b610e95565b61042f6105e53660046131b0565b610f17565b61029f611097565b6102eb6104173660046133e2565b61042f61060e366004613321565b6110a6565b61042f610621366004613321565b610f0d565b6102eb6102e63660046133b8565b6102c8610642366004613321565b6110b0565b61042f61065536600461310a565b611161565b6102c8610668366004613321565b61116c565b61042f61067b366004613146565b611179565b6102eb61068e3660046130d7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105997f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546106ef906136e6565b80601f016020809104026020016040519081016040528092919081815260200182805461071b906136e6565b80156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b5050505050905090565b600061077f3384846112dd565b5060015b92915050565b6001600160a01b0382166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b900490931691830191909152906107f09060018301908542611435565b949350505050565b6000610805848484611461565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108a45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6108b185338584036112dd565b60019150505b9392505050565b604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090610783906008908442611435565b6001600160a01b0383166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b90049093169183019190915290610972906001830190868642611685565b95945050505050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146109f35760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c657200604482015260640161089b565b6109fd82826116bd565b5050565b6000610a0b611793565b905090565b60408051808201909152600080825260208201526001600160a01b038316600090815260066020526040902060010161ffff831662ffffff8110610a5657610a566137aa565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201529392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161077f918590610abf9086906135e9565b6112dd565b6109fd8282611886565b610ac48282611886565b610ae233826116bd565b50565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610ac45760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c657200604482015260640161089b565b60608160008167ffffffffffffffff811115610b7b57610b7b6137c0565b604051908082528060200260200182016040528015610ba4578160200160208202803683370190505b506001600160a01b0387166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b900490931691830191909152929350905b84811015610c6c57610c3d83600101838a8a85818110610c2257610c226137aa565b9050602002016020810190610c3791906134ca565b42611435565b848281518110610c4f57610c4f6137aa565b602090810291909101015280610c648161371b565b915050610c00565b5091979650505050505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610cf15760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c657200604482015260640161089b565b816001600160a01b0316836001600160a01b031614610d43576001600160a01b03828116600090815260016020908152604080832093871683529290522054610d439083908590610abf9085906136b2565b610d4d8282611971565b505050565b6001600160a01b0385166000908152600660205260409020606090610d7a9086868686611b02565b9695505050505050565b6001600160a01b038116600090815260056020526040812054610783565b60608160008167ffffffffffffffff811115610dc057610dc06137c0565b604051908082528060200260200182016040528015610de9578160200160208202803683370190505b50604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915290915060005b83811015610e7a57610e4b600883898985818110610c2257610c226137aa565b838281518110610e5d57610e5d6137aa565b602090810291909101015280610e728161371b565b915050610e2b565b509095945050505050565b6060610972600786868686611b02565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f0d5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c657200604482015260640161089b565b6109fd8282611971565b83421115610f675760405162461bcd60e51b815260206004820181905260248201527f5469636b65742f64656c65676174652d657870697265642d646561646c696e65604482015260640161089b565b60007f00000000000000000000000000000000000000000000000000000000000000008787610f958a611ca1565b6040805160208101959095526001600160a01b039384169085015291166060830152608082015260a0810186905260c0016040516020818303038152906040528051906020012090506000610fe982611cc9565b90506000610ff982878787611d32565b9050886001600160a01b0316816001600160a01b0316146110825760405162461bcd60e51b815260206004820152602160248201527f5469636b65742f64656c65676174652d696e76616c69642d7369676e6174757260448201527f6500000000000000000000000000000000000000000000000000000000000000606482015260840161089b565b61108c89896116bd565b505050505050505050565b6060600480546106ef906136e6565b610f0d8282611886565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561114a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161089b565b61115733858584036112dd565b5060019392505050565b610d4d838383611461565b600061077f338484611461565b834211156111c95760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161089b565b60007f00000000000000000000000000000000000000000000000000000000000000008888886111f88c611ca1565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061125382611cc9565b9050600061126382878787611d32565b9050896001600160a01b0316816001600160a01b0316146112c65760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161089b565b6112d18a8a8a6112dd565b50505050505050505050565b6001600160a01b0383166113585760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161089b565b6001600160a01b0382166113d45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161089b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000808263ffffffff168463ffffffff16116114515783611453565b825b9050610d7a86868386611d5a565b6001600160a01b0383166114dd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161089b565b6001600160a01b0382166115595760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161089b565b611564838383611e73565b6001600160a01b038316600090815260208190526040902054818110156115f35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161089b565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061162a9084906135e9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161167691815260200190565b60405180910390a35b50505050565b6000808263ffffffff168463ffffffff16116116a157836116a3565b825b90506116b28787878487611f06565b979650505050505050565b6001600160a01b038281166000908152602081815260408083205463010000079092529091205490919081169083168114156116f95750505050565b6001600160a01b03848116600090815263010000076020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001691851691909117905561174d818484611fa2565b826001600160a01b0316846001600160a01b03167f4bc154dd35d6a5cb9206482ecb473cdbf2473006d6bce728b9cc0741bcc59ea260405160405180910390a350505050565b60007f00000000000000000000000000000000000000000000000000000000000000004614156117e257507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b0382166118dc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161089b565b6118e860008383611e73565b80600260008282546118fa91906135e9565b90915550506001600160a01b038216600090815260208190526040812080548392906119279084906135e9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166119ed5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161089b565b6119f982600083611e73565b6001600160a01b03821660009081526020819052604090205481811015611a885760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161089b565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611ab79084906136b2565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b606083828114611b7a5760405162461bcd60e51b815260206004820152602360248201527f5469636b65742f73746172742d656e642d74696d65732d6c656e6774682d6d6160448201527f7463680000000000000000000000000000000000000000000000000000000000606482015260840161089b565b6040805160608101825288546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915260008267ffffffffffffffff811115611bcf57611bcf6137c0565b604051908082528060200260200182016040528015611bf8578160200160208202803683370190505b5090504260005b84811015611c9257611c638b600101858c8c85818110611c2157611c216137aa565b9050602002016020810190611c3691906134ca565b8b8b86818110611c4857611c486137aa565b9050602002016020810190611c5d91906134ca565b86611685565b838281518110611c7557611c756137aa565b602090810291909101015280611c8a8161371b565b915050611bff565b50909998505050505050505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b6000610783611cd6611793565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611d4387878787612002565b91509150611d50816120ef565b5095945050505050565b604080518082019091526000808252602082018190529081906040805180820190915260008082526020820152611d9188886122e0565b60208101519194509150611db29063ffffffff908116908890889061236016565b15611dcd57505084516001600160d01b031691506107f09050565b6000611dd98989612431565b6020810151909350909150611dfa9063ffffffff808a16919089906124ae16565b15611e0c5760009450505050506107f0565b611e1e8985838a8c604001518b61257d565b8094508193505050611e39836020015183602001518861274a565b63ffffffff1682600001518460000151611e53919061368a565b611e5d9190613621565b6001600160e01b03169998505050505050505050565b816001600160a01b0316836001600160a01b03161415611e9257505050565b60006001600160a01b03841615611ec357506001600160a01b03808416600090815263010000076020526040902054165b60006001600160a01b03841615611ef457506001600160a01b03808416600090815263010000076020526040902054165b611eff828285611fa2565b5050505050565b6000806000611f158888612431565b91509150600080611f268a8a6122e0565b915091506000611f3c8b8b8487878a8f8e612814565b90506000611f508c8c8588888b8f8f612814565b9050611f65816020015183602001518a61274a565b63ffffffff1682600001518260000151611f7f919061368a565b611f899190613621565b6001600160e01b03169c9b505050505050505050505050565b6001600160a01b03831615611fd257611fbb838261295e565b6001600160a01b038216611fd257611fd281612ab3565b6001600160a01b03821615610d4d57611feb8282612bcc565b6001600160a01b038316610d4d57610d4d81612c03565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561203957506000905060036120e6565b8460ff16601b1415801561205157508460ff16601c14155b1561206257506000905060046120e6565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156120b6573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166120df576000600192509250506120e6565b9150600090505b94509492505050565b600081600481111561210357612103613794565b141561210c5750565b600181600481111561212057612120613794565b141561216e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161089b565b600281600481111561218257612182613794565b14156121d05760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161089b565b60038160048111156121e4576121e4613794565b14156122585760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161089b565b600481600481111561226c5761226c613794565b1415610ae25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161089b565b604080518082019091526000808252602082018190529061230f836020015162ffffff1662ffffff8016612c1e565b9150838262ffffff1662ffffff811061232a5761232a6137aa565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919491935090915050565b60008163ffffffff168463ffffffff161115801561238a57508163ffffffff168363ffffffff1611155b156123a6578263ffffffff168463ffffffff16111590506108b7565b60008263ffffffff168563ffffffff16116123d5576123d063ffffffff8616640100000000613601565b6123dd565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116124155761241063ffffffff8616640100000000613601565b61241d565b8463ffffffff165b64ffffffffff169091111595945050505050565b604080518082019091526000808252602082018190529082602001519150838262ffffff1662ffffff8110612468576124686137aa565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff16602082018190529091506124a75760009150838261232a565b9250929050565b60008163ffffffff168463ffffffff16111580156124d857508163ffffffff168363ffffffff1611155b156124f3578263ffffffff168463ffffffff161090506108b7565b60008263ffffffff168563ffffffff16116125225761251d63ffffffff8616640100000000613601565b61252a565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116125625761255d63ffffffff8616640100000000613601565b61256a565b8463ffffffff165b64ffffffffff1690911095945050505050565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff16106125c8578862ffffff166125e3565b60016125d962ffffff8816846135e9565b6125e391906136b2565b905060005b60026125f483856135e9565b6125fe9190613647565b90508a612610828962ffffff16612c48565b62ffffff1662ffffff8110612627576126276137aa565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff16602082018190529095508061266f576126678260016135e9565b9350506125e8565b8b61267f838a62ffffff16612c54565b62ffffff1662ffffff8110612696576126966137aa565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b909104811660208301529095506000906126db90838116908c908b9061236016565b905080801561270457506127048660200151898c63ffffffff166123609092919063ffffffff16565b1561271057505061273c565b80612727576127206001846136b2565b9350612735565b6127328360016135e9565b94505b50506125e8565b505050965096945050505050565b60008163ffffffff168463ffffffff161115801561277457508163ffffffff168363ffffffff1611155b1561278a5761278383856136c9565b90506108b7565b60008263ffffffff168563ffffffff16116127b9576127b463ffffffff8616640100000000613601565b6127c1565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116127f9576127f463ffffffff8616640100000000613601565b612801565b8463ffffffff165b64ffffffffff169050610d7a81836136b2565b60408051808201909152600080825260208201526128478383896020015163ffffffff166124ae9092919063ffffffff16565b1561286b576128648789600001516001600160d01b031685612c64565b9050612952565b8263ffffffff16876020015163ffffffff16141561288a575085612952565b8263ffffffff16866020015163ffffffff1614156128a9575084612952565b6128c88660200151838563ffffffff166124ae9092919063ffffffff16565b156128ed5750604080518082019091526000815263ffffffff83166020820152612952565b6000806129028b8888888e604001518961257d565b91509150600061291b826020015184602001518761274a565b63ffffffff1683600001518360000151612935919061368a565b61293f9190613621565b905061294c838288612c64565b93505050505b98975050505050505050565b80612967575050565b6001600160a01b03821660009081526006602052604081209080806129cb8461298f87612cdf565b6040518060400160405280601b81526020017f5469636b65742f747761622d6275726e2d6c742d62616c616e6365000000000081525042612d62565b82518754602085015160408601516001600160d01b039093167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b9190921602178755919450925090508015612aab576040805183516001600160e01b0316815260208085015163ffffffff16908201526001600160a01b038816917fdd3e7cd3a260a292b0b3306b2ca62f30a7349619a9d09c58109318774c6b627d910160405180910390a25b505050505050565b80612abb5750565b6000806000612aed6007612ace86612cdf565b6040518060600160405280602c81526020016137d7602c913942612d62565b825160078054602086015160408701516001600160d01b039094167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b919093160291909117905591945092509050801561167f576040805183516001600160e01b0316815260208085015163ffffffff16908201527f3375b905d617084fa6b7531688cc8046feb1f1a0b8ba2273de03c59d8d84416c910160405180910390a150505050565b80612bd5575050565b6001600160a01b03821660009081526006602052604081209080806129cb84612bfd87612cdf565b42612e26565b80612c0b5750565b6000806000612aed6007612bfd86612cdf565b600081612c2d57506000610783565b6108b76001612c3c84866135e9565b612c4691906136b2565b835b60006108b78284613754565b60006108b7612c468460016135e9565b60408051808201909152600080825260208201526040518060400160405280612ca28660200151858663ffffffff1661274a9092919063ffffffff16565b612cb29063ffffffff168661365b565b8651612cbe91906135a9565b6001600160e01b031681526020018363ffffffff1681525090509392505050565b60006001600160d01b03821115612d5e5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203260448201527f3038206269747300000000000000000000000000000000000000000000000000606482015260840161089b565b5090565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825287546001600160d01b0380821680845262ffffff600160d01b840481166020860152600160e81b9093049092169383019390935260009287919089161115612df85760405162461bcd60e51b815260040161089b9190613529565b50612e07886001018287612ecf565b8251999099036001600160d01b03168252909990985095505050505050565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825286546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090612ea2600188018287612ecf565b83519296509094509250612eb790879061357e565b6001600160d01b031684525091959094509092509050565b60408051606081018252600080825260208201819052918101919091526040805180820190915260008082526020820152600080612f0d87876122e0565b9150508463ffffffff16816020015163ffffffff161415612f3657859350915060009050612fad565b6000612f508288600001516001600160d01b031688612c64565b90508088886020015162ffffff1662ffffff8110612f7057612f706137aa565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556000612fa188612fb6565b95509093506001925050505b93509350939050565b60408051606081018252600080825260208083018290529282015290820151612fe69062ffffff90811690612c54565b62ffffff9081166020840152604083015181161015612d5e5760018260400181815161301291906135cb565b62ffffff169052505090565b80356001600160a01b038116811461303557600080fd5b919050565b60008083601f84011261304c57600080fd5b50813567ffffffffffffffff81111561306457600080fd5b6020830191508360208260051b85010111156124a757600080fd5b803563ffffffff8116811461303557600080fd5b803567ffffffffffffffff8116811461303557600080fd5b803560ff8116811461303557600080fd5b6000602082840312156130ce57600080fd5b6108b78261301e565b600080604083850312156130ea57600080fd5b6130f38361301e565b91506131016020840161301e565b90509250929050565b60008060006060848603121561311f57600080fd5b6131288461301e565b92506131366020850161301e565b9150604084013590509250925092565b600080600080600080600060e0888a03121561316157600080fd5b61316a8861301e565b96506131786020890161301e565b95506040880135945060608801359350613194608089016130ab565b925060a0880135915060c0880135905092959891949750929550565b60008060008060008060c087890312156131c957600080fd5b6131d28761301e565b95506131e06020880161301e565b9450604087013593506131f5606088016130ab565b92506080870135915060a087013590509295509295509295565b60008060006040848603121561322457600080fd5b61322d8461301e565b9250602084013567ffffffffffffffff81111561324957600080fd5b6132558682870161303a565b9497909650939450505050565b60008060008060006060868803121561327a57600080fd5b6132838661301e565b9450602086013567ffffffffffffffff808211156132a057600080fd5b6132ac89838a0161303a565b909650945060408801359150808211156132c557600080fd5b506132d28882890161303a565b969995985093965092949392505050565b600080604083850312156132f657600080fd5b6132ff8361301e565b9150602083013561ffff8116811461331657600080fd5b809150509250929050565b6000806040838503121561333457600080fd5b61333d8361301e565b946020939093013593505050565b6000806040838503121561335e57600080fd5b6133678361301e565b91506131016020840161307f565b60008060006060848603121561338a57600080fd5b6133938461301e565b92506133a16020850161307f565b91506133af6040850161307f565b90509250925092565b600080604083850312156133cb57600080fd5b6133d48361301e565b915061310160208401613093565b6000806000606084860312156133f757600080fd5b6134008461301e565b925061340e60208501613093565b91506133af60408501613093565b6000806020838503121561342f57600080fd5b823567ffffffffffffffff81111561344657600080fd5b6134528582860161303a565b90969095509350505050565b6000806000806040858703121561347457600080fd5b843567ffffffffffffffff8082111561348c57600080fd5b6134988883890161303a565b909650945060208701359150808211156134b157600080fd5b506134be8782880161303a565b95989497509550505050565b6000602082840312156134dc57600080fd5b6108b782613093565b6020808252825182820181905260009190848201906040850190845b8181101561351d57835183529284019291840191600101613501565b50909695505050505050565b600060208083528351808285015260005b818110156135565785810183015185820160400152820161353a565b81811115613568576000604083870101525b50601f01601f1916929092016040019392505050565b60006001600160d01b038083168185168083038211156135a0576135a0613768565b01949350505050565b60006001600160e01b038083168185168083038211156135a0576135a0613768565b600062ffffff8083168185168083038211156135a0576135a0613768565b600082198211156135fc576135fc613768565b500190565b600064ffffffffff8083168185168083038211156135a0576135a0613768565b60006001600160e01b038084168061363b5761363b61377e565b92169190910492915050565b6000826136565761365661377e565b500490565b60006001600160e01b038083168185168183048111821515161561368157613681613768565b02949350505050565b60006001600160e01b03838116908316818110156136aa576136aa613768565b039392505050565b6000828210156136c4576136c4613768565b500390565b600063ffffffff838116908316818110156136aa576136aa613768565b600181811c908216806136fa57607f821691505b60208210811415611cc357634e487b7160e01b600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561374d5761374d613768565b5060010190565b6000826137635761376361377e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfe5469636b65742f6275726e2d616d6f756e742d657863656564732d746f74616c2d737570706c792d74776162a26469706673582212202772a0f14c2449c0f6ad1d6298aa78fa0667f14ffa07c5a4155ef8d92945dd9764736f6c63430008060033",
              "opcodes": "PUSH2 0x1A0 PUSH1 0x40 MSTORE PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 PUSH2 0x120 MSTORE PUSH32 0x94019368DC6B2EE4AC32010C9D0081EC29874325B541829D001D22C296B5246C PUSH2 0x180 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x3E87 CODESIZE SUB DUP1 PUSH3 0x3E87 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x7F SWAP2 PUSH3 0x427 JUMP JUMPDEST DUP4 DUP4 DUP4 DUP4 DUP4 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1C DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x506F6F6C546F67657468657220436F6E74726F6C6C6564546F6B656E00000000 DUP2 MSTORE POP DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x31 PUSH1 0xF8 SHL DUP2 MSTORE POP DUP7 DUP7 DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xF2 SWAP3 SWAP2 SWAP1 PUSH3 0x2F0 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x108 SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x2F0 JUMP JUMPDEST POP POP DUP3 MLOAD PUSH1 0x20 SWAP4 DUP5 ADD KECCAK256 DUP3 MLOAD SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 KECCAK256 PUSH1 0xC0 DUP4 DUP2 MSTORE PUSH1 0xE0 DUP3 SWAP1 MSTORE CHAINID PUSH1 0xA0 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP2 DUP11 ADD DUP2 SWAP1 MSTORE DUP2 DUP4 ADD SWAP9 SWAP1 SWAP9 MSTORE PUSH1 0x60 DUP2 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x80 DUP1 DUP7 ADD SWAP4 SWAP1 SWAP4 MSTORE ADDRESS DUP6 DUP4 ADD MSTORE DUP1 MLOAD DUP1 DUP7 SUB SWAP1 SWAP3 ADD DUP3 MSTORE SWAP4 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP5 ADD SWAP4 SWAP1 SWAP4 KECCAK256 SWAP1 SWAP3 MSTORE PUSH2 0x100 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0x205 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F636F6E74726F6C6C65722D6E6F742D7A PUSH1 0x44 DUP3 ADD MSTORE PUSH11 0x65726F2D61646472657373 PUSH1 0xA8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP3 SWAP1 SHL AND PUSH2 0x140 MSTORE PUSH1 0xFF DUP3 AND PUSH3 0x26A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F646563696D616C732D67742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x1FC JUMP JUMPDEST PUSH32 0xFF00000000000000000000000000000000000000000000000000000000000000 PUSH1 0xF8 DUP4 SWAP1 SHL AND PUSH2 0x160 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xDE72FC29218361F33503847E6F32BE813F9EC92FC7C772BB59E46675C890FD0E SWAP1 PUSH3 0x2D6 SWAP1 DUP8 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH3 0x4F9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP POP POP POP POP POP PUSH3 0x5BC JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x2FE SWAP1 PUSH3 0x569 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x322 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x36D JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x33D JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x36D JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x36D JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x36D JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x350 JUMP JUMPDEST POP PUSH3 0x37B SWAP3 SWAP2 POP PUSH3 0x37F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x37B JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x380 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x3A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x3C5 JUMPI PUSH3 0x3C5 PUSH3 0x5A6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x3F0 JUMPI PUSH3 0x3F0 PUSH3 0x5A6 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE DUP7 PUSH1 0x20 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x40A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x41D DUP5 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP10 ADD PUSH3 0x536 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x43E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x456 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x464 DUP9 DUP4 DUP10 ADD PUSH3 0x396 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x47B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x48A DUP8 DUP3 DUP9 ADD PUSH3 0x396 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0x4A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x60 DUP7 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x4C0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH3 0x4E5 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH3 0x536 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x0 PUSH3 0x50E PUSH1 0x60 DUP4 ADD DUP7 PUSH3 0x4CB JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x522 DUP2 DUP7 PUSH3 0x4CB JUMP JUMPDEST SWAP2 POP POP PUSH1 0xFF DUP4 AND PUSH1 0x40 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x553 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x539 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x563 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x57E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x5A0 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x140 MLOAD PUSH1 0x60 SHR PUSH2 0x160 MLOAD PUSH1 0xF8 SHR PUSH2 0x180 MLOAD PUSH2 0x3838 PUSH3 0x64F PUSH1 0x0 CODECOPY PUSH1 0x0 PUSH2 0xF6B ADD MSTORE PUSH1 0x0 PUSH2 0x3DF ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x6BE ADD MSTORE DUP2 DUP2 PUSH2 0x986 ADD MSTORE DUP2 DUP2 PUSH2 0xAF0 ADD MSTORE DUP2 DUP2 PUSH2 0xC84 ADD MSTORE PUSH2 0xEA0 ADD MSTORE PUSH1 0x0 PUSH2 0x11CD ADD MSTORE PUSH1 0x0 PUSH2 0x17E9 ADD MSTORE PUSH1 0x0 PUSH2 0x1838 ADD MSTORE PUSH1 0x0 PUSH2 0x1813 ADD MSTORE PUSH1 0x0 PUSH2 0x1797 ADD MSTORE PUSH1 0x0 PUSH2 0x17C0 ADD MSTORE PUSH2 0x3838 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 0x292 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x68C7FD57 GT PUSH2 0x160 JUMPI DUP1 PUSH4 0x98B16F36 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0xA5F2A152 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xD505ACCF GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x66D JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x680 JUMPI DUP1 PUSH4 0xF77C4791 EQ PUSH2 0x6B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA5F2A152 EQ PUSH2 0x647 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x65A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9DC29FAC GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x613 JUMPI DUP1 PUSH4 0x9ECB0370 EQ PUSH2 0x626 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x634 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x98B16F36 EQ PUSH2 0x5F2 JUMPI DUP1 PUSH4 0x9D9E465C EQ PUSH2 0x600 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8D22EA2A GT PUSH2 0x12F JUMPI DUP1 PUSH4 0x90596DD1 GT PUSH2 0x114 JUMPI DUP1 PUSH4 0x90596DD1 EQ PUSH2 0x5C4 JUMPI DUP1 PUSH4 0x919974DC EQ PUSH2 0x5D7 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x5EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8D22EA2A EQ PUSH2 0x56A JUMPI DUP1 PUSH4 0x8E6D536A EQ PUSH2 0x5B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x68C7FD57 EQ PUSH2 0x508 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x51B JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x544 JUMPI DUP1 PUSH4 0x85BEB5F1 EQ PUSH2 0x557 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E39B61 GT PUSH2 0x20E JUMPI DUP1 PUSH4 0x456F95E6 GT PUSH2 0x1C2 JUMPI DUP1 PUSH4 0x5D7B0758 GT PUSH2 0x1A7 JUMPI DUP1 PUSH4 0x5D7B0758 EQ PUSH2 0x4C2 JUMPI DUP1 PUSH4 0x613ED6BD EQ PUSH2 0x4D5 JUMPI DUP1 PUSH4 0x631B5DFB EQ PUSH2 0x4F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x456F95E6 EQ PUSH2 0x49C JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x4AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x36BB2A38 GT PUSH2 0x1F3 JUMPI DUP1 PUSH4 0x36BB2A38 EQ PUSH2 0x439 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x476 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x489 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E39B61 EQ PUSH2 0x41C JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x431 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x265 JUMPI DUP1 PUSH4 0x2D0DD686 GT PUSH2 0x24A JUMPI DUP1 PUSH4 0x2D0DD686 EQ PUSH2 0x3C5 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x3D8 JUMPI DUP1 PUSH4 0x31C4293D EQ PUSH2 0x409 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x2ACEB534 EQ PUSH2 0x314 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x297 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2B5 JUMPI DUP1 PUSH4 0x9DAA017 EQ PUSH2 0x2D8 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x2F9 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x29F PUSH2 0x6E0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2AC SWAP2 SWAP1 PUSH2 0x3529 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C8 PUSH2 0x2C3 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0x772 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x2E6 CALLDATASIZE PUSH1 0x4 PUSH2 0x334B JUMP JUMPDEST PUSH2 0x789 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AC JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x2EB JUMP JUMPDEST PUSH2 0x2C8 PUSH2 0x30F CALLDATASIZE PUSH1 0x4 PUSH2 0x310A JUMP JUMPDEST PUSH2 0x7F8 JUMP JUMPDEST PUSH2 0x38D PUSH2 0x322 CALLDATASIZE PUSH1 0x4 PUSH2 0x30BC JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP1 DUP3 ADD DUP4 MSTORE PUSH1 0x0 DUP1 DUP4 MSTORE PUSH1 0x20 DUP1 DUP5 ADD DUP3 SWAP1 MSTORE SWAP3 DUP5 ADD DUP2 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 SWAP1 SWAP5 AND DUP5 MSTORE PUSH1 0x6 DUP3 MSTORE SWAP3 DUP3 SWAP1 KECCAK256 DUP3 MLOAD SWAP4 DUP5 ADD DUP4 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP5 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP3 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV AND SWAP1 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 DUP3 ADD MLOAD SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x3D3 CALLDATASIZE PUSH1 0x4 PUSH2 0x34CA JUMP JUMPDEST PUSH2 0x8BE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x417 CALLDATASIZE PUSH1 0x4 PUSH2 0x3375 JUMP JUMPDEST PUSH2 0x90A JUMP JUMPDEST PUSH2 0x42F PUSH2 0x42A CALLDATASIZE PUSH1 0x4 PUSH2 0x30D7 JUMP JUMPDEST PUSH2 0x97B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2EB PUSH2 0xA01 JUMP JUMPDEST PUSH2 0x44C PUSH2 0x447 CALLDATASIZE PUSH1 0x4 PUSH2 0x32E3 JUMP JUMPDEST PUSH2 0xA10 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x2C8 PUSH2 0x484 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0xA88 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x497 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0xAC4 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x4AA CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0xACE JUMP JUMPDEST PUSH2 0x42F PUSH2 0x4BD CALLDATASIZE PUSH1 0x4 PUSH2 0x30BC JUMP JUMPDEST PUSH2 0xAD8 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x4D0 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0xAE5 JUMP JUMPDEST PUSH2 0x4E8 PUSH2 0x4E3 CALLDATASIZE PUSH1 0x4 PUSH2 0x320F JUMP JUMPDEST PUSH2 0xB5D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2AC SWAP2 SWAP1 PUSH2 0x34E5 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x503 CALLDATASIZE PUSH1 0x4 PUSH2 0x310A JUMP JUMPDEST PUSH2 0xC79 JUMP JUMPDEST PUSH2 0x4E8 PUSH2 0x516 CALLDATASIZE PUSH1 0x4 PUSH2 0x3262 JUMP JUMPDEST PUSH2 0xD52 JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x529 CALLDATASIZE PUSH1 0x4 PUSH2 0x30BC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x552 CALLDATASIZE PUSH1 0x4 PUSH2 0x30BC JUMP JUMPDEST PUSH2 0xD84 JUMP JUMPDEST PUSH2 0x4E8 PUSH2 0x565 CALLDATASIZE PUSH1 0x4 PUSH2 0x341C JUMP JUMPDEST PUSH2 0xDA2 JUMP JUMPDEST PUSH2 0x599 PUSH2 0x578 CALLDATASIZE PUSH1 0x4 PUSH2 0x30BC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x4E8 PUSH2 0x5BF CALLDATASIZE PUSH1 0x4 PUSH2 0x345E JUMP JUMPDEST PUSH2 0xE85 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x5D2 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0xE95 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x5E5 CALLDATASIZE PUSH1 0x4 PUSH2 0x31B0 JUMP JUMPDEST PUSH2 0xF17 JUMP JUMPDEST PUSH2 0x29F PUSH2 0x1097 JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x417 CALLDATASIZE PUSH1 0x4 PUSH2 0x33E2 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x60E CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0x10A6 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x621 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0xF0D JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x2E6 CALLDATASIZE PUSH1 0x4 PUSH2 0x33B8 JUMP JUMPDEST PUSH2 0x2C8 PUSH2 0x642 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0x10B0 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x655 CALLDATASIZE PUSH1 0x4 PUSH2 0x310A JUMP JUMPDEST PUSH2 0x1161 JUMP JUMPDEST PUSH2 0x2C8 PUSH2 0x668 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0x116C JUMP JUMPDEST PUSH2 0x42F PUSH2 0x67B CALLDATASIZE PUSH1 0x4 PUSH2 0x3146 JUMP JUMPDEST PUSH2 0x1179 JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x68E CALLDATASIZE PUSH1 0x4 PUSH2 0x30D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x599 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x6EF SWAP1 PUSH2 0x36E6 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x71B SWAP1 PUSH2 0x36E6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x768 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x73D JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x768 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 0x74B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77F CALLER DUP5 DUP5 PUSH2 0x12DD JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0x7F0 SWAP1 PUSH1 0x1 DUP4 ADD SWAP1 DUP6 TIMESTAMP PUSH2 0x1435 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x805 DUP5 DUP5 DUP5 PUSH2 0x1461 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x8A4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8B1 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x12DD JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x783 SWAP1 PUSH1 0x8 SWAP1 DUP5 TIMESTAMP PUSH2 0x1435 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0x972 SWAP1 PUSH1 0x1 DUP4 ADD SWAP1 DUP7 DUP7 TIMESTAMP PUSH2 0x1685 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x9F3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x9FD DUP3 DUP3 PUSH2 0x16BD JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA0B PUSH2 0x1793 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD PUSH2 0xFFFF DUP4 AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xA56 JUMPI PUSH2 0xA56 PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x77F SWAP2 DUP6 SWAP1 PUSH2 0xABF SWAP1 DUP7 SWAP1 PUSH2 0x35E9 JUMP JUMPDEST PUSH2 0x12DD JUMP JUMPDEST PUSH2 0x9FD DUP3 DUP3 PUSH2 0x1886 JUMP JUMPDEST PUSH2 0xAC4 DUP3 DUP3 PUSH2 0x1886 JUMP JUMPDEST PUSH2 0xAE2 CALLER DUP3 PUSH2 0x16BD JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xAC4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB7B JUMPI PUSH2 0xB7B PUSH2 0x37C0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xBA4 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 SWAP4 POP SWAP1 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0xC6C JUMPI PUSH2 0xC3D DUP4 PUSH1 0x1 ADD DUP4 DUP11 DUP11 DUP6 DUP2 DUP2 LT PUSH2 0xC22 JUMPI PUSH2 0xC22 PUSH2 0x37AA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xC37 SWAP2 SWAP1 PUSH2 0x34CA JUMP JUMPDEST TIMESTAMP PUSH2 0x1435 JUMP JUMPDEST DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xC4F JUMPI PUSH2 0xC4F PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xC64 DUP2 PUSH2 0x371B JUMP JUMPDEST SWAP2 POP POP PUSH2 0xC00 JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xCF1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xD43 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH2 0xD43 SWAP1 DUP4 SWAP1 DUP6 SWAP1 PUSH2 0xABF SWAP1 DUP6 SWAP1 PUSH2 0x36B2 JUMP JUMPDEST PUSH2 0xD4D DUP3 DUP3 PUSH2 0x1971 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x60 SWAP1 PUSH2 0xD7A SWAP1 DUP7 DUP7 DUP7 DUP7 PUSH2 0x1B02 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x783 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xDC0 JUMPI PUSH2 0xDC0 PUSH2 0x37C0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xDE9 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xE7A JUMPI PUSH2 0xE4B PUSH1 0x8 DUP4 DUP10 DUP10 DUP6 DUP2 DUP2 LT PUSH2 0xC22 JUMPI PUSH2 0xC22 PUSH2 0x37AA JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xE5D JUMPI PUSH2 0xE5D PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xE72 DUP2 PUSH2 0x371B JUMP JUMPDEST SWAP2 POP POP PUSH2 0xE2B JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x972 PUSH1 0x7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x1B02 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xF0D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x9FD DUP3 DUP3 PUSH2 0x1971 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0xF67 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F64656C65676174652D657870697265642D646561646C696E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP8 DUP8 PUSH2 0xF95 DUP11 PUSH2 0x1CA1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND SWAP1 DUP6 ADD MSTORE SWAP2 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0xFE9 DUP3 PUSH2 0x1CC9 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xFF9 DUP3 DUP8 DUP8 DUP8 PUSH2 0x1D32 JUMP JUMPDEST SWAP1 POP DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1082 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F64656C65676174652D696E76616C69642D7369676E61747572 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6500000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x108C DUP10 DUP10 PUSH2 0x16BD JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x6EF SWAP1 PUSH2 0x36E6 JUMP JUMPDEST PUSH2 0xF0D DUP3 DUP3 PUSH2 0x1886 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x114A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x1157 CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x12DD JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0xD4D DUP4 DUP4 DUP4 PUSH2 0x1461 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77F CALLER DUP5 DUP5 PUSH2 0x1461 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x11C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0x11F8 DUP13 PUSH2 0x1CA1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0x1253 DUP3 PUSH2 0x1CC9 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1263 DUP3 DUP8 DUP8 DUP8 PUSH2 0x1D32 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x12C6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x12D1 DUP11 DUP11 DUP11 PUSH2 0x12DD JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1358 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x13D4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1451 JUMPI DUP4 PUSH2 0x1453 JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0xD7A DUP7 DUP7 DUP4 DUP7 PUSH2 0x1D5A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x14DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1559 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x1564 DUP4 DUP4 DUP4 PUSH2 0x1E73 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x15F3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x162A SWAP1 DUP5 SWAP1 PUSH2 0x35E9 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1676 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x16A1 JUMPI DUP4 PUSH2 0x16A3 JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0x16B2 DUP8 DUP8 DUP8 DUP5 DUP8 PUSH2 0x1F06 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH4 0x1000007 SWAP1 SWAP3 MSTORE SWAP1 SWAP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x16F9 JUMPI POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 AND SWAP2 DUP6 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x174D DUP2 DUP5 DUP5 PUSH2 0x1FA2 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4BC154DD35D6A5CB9206482ECB473CDBF2473006D6BCE728B9CC0741BCC59EA2 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 CHAINID EQ ISZERO PUSH2 0x17E2 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH32 0x0 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 DUP3 DUP5 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP4 ADD MSTORE CHAINID PUSH1 0x80 DUP4 ADD MSTORE ADDRESS PUSH1 0xA0 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xC0 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x18DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x18E8 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1E73 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x18FA SWAP2 SWAP1 PUSH2 0x35E9 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x1927 SWAP1 DUP5 SWAP1 PUSH2 0x35E9 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x19ED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x19F9 DUP3 PUSH1 0x0 DUP4 PUSH2 0x1E73 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x1A88 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x1AB7 SWAP1 DUP5 SWAP1 PUSH2 0x36B2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 DUP3 DUP2 EQ PUSH2 0x1B7A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F73746172742D656E642D74696D65732D6C656E6774682D6D61 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7463680000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP9 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1BCF JUMPI PUSH2 0x1BCF PUSH2 0x37C0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1BF8 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x1C92 JUMPI PUSH2 0x1C63 DUP12 PUSH1 0x1 ADD DUP6 DUP13 DUP13 DUP6 DUP2 DUP2 LT PUSH2 0x1C21 JUMPI PUSH2 0x1C21 PUSH2 0x37AA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1C36 SWAP2 SWAP1 PUSH2 0x34CA JUMP JUMPDEST DUP12 DUP12 DUP7 DUP2 DUP2 LT PUSH2 0x1C48 JUMPI PUSH2 0x1C48 PUSH2 0x37AA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1C5D SWAP2 SWAP1 PUSH2 0x34CA JUMP JUMPDEST DUP7 PUSH2 0x1685 JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1C75 JUMPI PUSH2 0x1C75 PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x1C8A DUP2 PUSH2 0x371B JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1BFF JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE SWAP1 JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x783 PUSH2 0x1CD6 PUSH2 0x1793 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x22 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x42 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x62 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1D43 DUP8 DUP8 DUP8 DUP8 PUSH2 0x2002 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1D50 DUP2 PUSH2 0x20EF JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1D91 DUP9 DUP9 PUSH2 0x22E0 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP2 SWAP5 POP SWAP2 POP PUSH2 0x1DB2 SWAP1 PUSH4 0xFFFFFFFF SWAP1 DUP2 AND SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH2 0x2360 AND JUMP JUMPDEST ISZERO PUSH2 0x1DCD JUMPI POP POP DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP2 POP PUSH2 0x7F0 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1DD9 DUP10 DUP10 PUSH2 0x2431 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP1 SWAP4 POP SWAP1 SWAP2 POP PUSH2 0x1DFA SWAP1 PUSH4 0xFFFFFFFF DUP1 DUP11 AND SWAP2 SWAP1 DUP10 SWAP1 PUSH2 0x24AE AND JUMP JUMPDEST ISZERO PUSH2 0x1E0C JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0x7F0 JUMP JUMPDEST PUSH2 0x1E1E DUP10 DUP6 DUP4 DUP11 DUP13 PUSH1 0x40 ADD MLOAD DUP12 PUSH2 0x257D JUMP JUMPDEST DUP1 SWAP5 POP DUP2 SWAP4 POP POP POP PUSH2 0x1E39 DUP4 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP9 PUSH2 0x274A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP5 PUSH1 0x0 ADD MLOAD PUSH2 0x1E53 SWAP2 SWAP1 PUSH2 0x368A JUMP JUMPDEST PUSH2 0x1E5D SWAP2 SWAP1 PUSH2 0x3621 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1E92 JUMPI POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x1EC3 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x1EF4 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND JUMPDEST PUSH2 0x1EFF DUP3 DUP3 DUP6 PUSH2 0x1FA2 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1F15 DUP9 DUP9 PUSH2 0x2431 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 PUSH2 0x1F26 DUP11 DUP11 PUSH2 0x22E0 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x1F3C DUP12 DUP12 DUP5 DUP8 DUP8 DUP11 DUP16 DUP15 PUSH2 0x2814 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1F50 DUP13 DUP13 DUP6 DUP9 DUP9 DUP12 DUP16 DUP16 PUSH2 0x2814 JUMP JUMPDEST SWAP1 POP PUSH2 0x1F65 DUP2 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP11 PUSH2 0x274A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP3 PUSH1 0x0 ADD MLOAD PUSH2 0x1F7F SWAP2 SWAP1 PUSH2 0x368A JUMP JUMPDEST PUSH2 0x1F89 SWAP2 SWAP1 PUSH2 0x3621 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP13 SWAP12 POP POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO PUSH2 0x1FD2 JUMPI PUSH2 0x1FBB DUP4 DUP3 PUSH2 0x295E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1FD2 JUMPI PUSH2 0x1FD2 DUP2 PUSH2 0x2AB3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0xD4D JUMPI PUSH2 0x1FEB DUP3 DUP3 PUSH2 0x2BCC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xD4D JUMPI PUSH2 0xD4D DUP2 PUSH2 0x2C03 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0x2039 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x3 PUSH2 0x20E6 JUMP JUMPDEST DUP5 PUSH1 0xFF AND PUSH1 0x1B EQ ISZERO DUP1 ISZERO PUSH2 0x2051 JUMPI POP DUP5 PUSH1 0xFF AND PUSH1 0x1C EQ ISZERO JUMPDEST ISZERO PUSH2 0x2062 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x4 PUSH2 0x20E6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x20B6 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x20DF JUMPI PUSH1 0x0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0x20E6 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2103 JUMPI PUSH2 0x2103 PUSH2 0x3794 JUMP JUMPDEST EQ ISZERO PUSH2 0x210C JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2120 JUMPI PUSH2 0x2120 PUSH2 0x3794 JUMP JUMPDEST EQ ISZERO PUSH2 0x216E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2182 JUMPI PUSH2 0x2182 PUSH2 0x3794 JUMP JUMPDEST EQ ISZERO PUSH2 0x21D0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x21E4 JUMPI PUSH2 0x21E4 PUSH2 0x3794 JUMP JUMPDEST EQ ISZERO PUSH2 0x2258 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x4 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x226C JUMPI PUSH2 0x226C PUSH2 0x3794 JUMP JUMPDEST EQ ISZERO PUSH2 0xAE2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH2 0x230F DUP4 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP1 AND PUSH2 0x2C1E JUMP JUMPDEST SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x232A JUMPI PUSH2 0x232A PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP5 SWAP2 SWAP4 POP SWAP1 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x238A JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x23A6 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0x8B7 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x23D5 JUMPI PUSH2 0x23D0 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3601 JUMP JUMPDEST PUSH2 0x23DD JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x2415 JUMPI PUSH2 0x2410 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3601 JUMP JUMPDEST PUSH2 0x241D JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP3 PUSH1 0x20 ADD MLOAD SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2468 JUMPI PUSH2 0x2468 PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x24A7 JUMPI PUSH1 0x0 SWAP2 POP DUP4 DUP3 PUSH2 0x232A JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x24D8 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x24F3 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND LT SWAP1 POP PUSH2 0x8B7 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x2522 JUMPI PUSH2 0x251D PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3601 JUMP JUMPDEST PUSH2 0x252A JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x2562 JUMPI PUSH2 0x255D PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3601 JUMP JUMPDEST PUSH2 0x256A JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 LT SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0x25C8 JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0x25E3 JUMP JUMPDEST PUSH1 0x1 PUSH2 0x25D9 PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x35E9 JUMP JUMPDEST PUSH2 0x25E3 SWAP2 SWAP1 PUSH2 0x36B2 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0x25F4 DUP4 DUP6 PUSH2 0x35E9 JUMP JUMPDEST PUSH2 0x25FE SWAP2 SWAP1 PUSH2 0x3647 JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0x2610 DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0x2C48 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2627 JUMPI PUSH2 0x2627 PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0x266F JUMPI PUSH2 0x2667 DUP3 PUSH1 0x1 PUSH2 0x35E9 JUMP JUMPDEST SWAP4 POP POP PUSH2 0x25E8 JUMP JUMPDEST DUP12 PUSH2 0x267F DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0x2C54 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2696 JUMPI PUSH2 0x2696 PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0x26DB SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0x2360 AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x2704 JUMPI POP PUSH2 0x2704 DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0x2360 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x2710 JUMPI POP POP PUSH2 0x273C JUMP JUMPDEST DUP1 PUSH2 0x2727 JUMPI PUSH2 0x2720 PUSH1 0x1 DUP5 PUSH2 0x36B2 JUMP JUMPDEST SWAP4 POP PUSH2 0x2735 JUMP JUMPDEST PUSH2 0x2732 DUP4 PUSH1 0x1 PUSH2 0x35E9 JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0x25E8 JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x2774 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x278A JUMPI PUSH2 0x2783 DUP4 DUP6 PUSH2 0x36C9 JUMP JUMPDEST SWAP1 POP PUSH2 0x8B7 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x27B9 JUMPI PUSH2 0x27B4 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3601 JUMP JUMPDEST PUSH2 0x27C1 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x27F9 JUMPI PUSH2 0x27F4 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3601 JUMP JUMPDEST PUSH2 0x2801 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH2 0xD7A DUP2 DUP4 PUSH2 0x36B2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2847 DUP4 DUP4 DUP10 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x24AE SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x286B JUMPI PUSH2 0x2864 DUP8 DUP10 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP6 PUSH2 0x2C64 JUMP JUMPDEST SWAP1 POP PUSH2 0x2952 JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x288A JUMPI POP DUP6 PUSH2 0x2952 JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x28A9 JUMPI POP DUP5 PUSH2 0x2952 JUMP JUMPDEST PUSH2 0x28C8 DUP7 PUSH1 0x20 ADD MLOAD DUP4 DUP6 PUSH4 0xFFFFFFFF AND PUSH2 0x24AE SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x28ED JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2952 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x2902 DUP12 DUP9 DUP9 DUP9 DUP15 PUSH1 0x40 ADD MLOAD DUP10 PUSH2 0x257D JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x291B DUP3 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x20 ADD MLOAD DUP8 PUSH2 0x274A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x0 ADD MLOAD DUP4 PUSH1 0x0 ADD MLOAD PUSH2 0x2935 SWAP2 SWAP1 PUSH2 0x368A JUMP JUMPDEST PUSH2 0x293F SWAP2 SWAP1 PUSH2 0x3621 JUMP JUMPDEST SWAP1 POP PUSH2 0x294C DUP4 DUP3 DUP9 PUSH2 0x2C64 JUMP JUMPDEST SWAP4 POP POP POP POP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH2 0x2967 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP1 DUP1 PUSH2 0x29CB DUP5 PUSH2 0x298F DUP8 PUSH2 0x2CDF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1B DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5469636B65742F747761622D6275726E2D6C742D62616C616E63650000000000 DUP2 MSTORE POP TIMESTAMP PUSH2 0x2D62 JUMP JUMPDEST DUP3 MLOAD DUP8 SLOAD PUSH1 0x20 DUP6 ADD MLOAD PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP4 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP3 AND MUL OR DUP8 SSTORE SWAP2 SWAP5 POP SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x2AAB JUMPI PUSH1 0x40 DUP1 MLOAD DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH32 0xDD3E7CD3A260A292B0B3306B2CA62F30A7349619A9D09C58109318774C6B627D SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH2 0x2ABB JUMPI POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x2AED PUSH1 0x7 PUSH2 0x2ACE DUP7 PUSH2 0x2CDF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2C DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x37D7 PUSH1 0x2C SWAP2 CODECOPY TIMESTAMP PUSH2 0x2D62 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x7 DUP1 SLOAD PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x40 DUP8 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP5 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP4 AND MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE SWAP2 SWAP5 POP SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x167F JUMPI PUSH1 0x40 DUP1 MLOAD DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 DUP3 ADD MSTORE PUSH32 0x3375B905D617084FA6B7531688CC8046FEB1F1A0B8BA2273DE03C59D8D84416C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP JUMP JUMPDEST DUP1 PUSH2 0x2BD5 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP1 DUP1 PUSH2 0x29CB DUP5 PUSH2 0x2BFD DUP8 PUSH2 0x2CDF JUMP JUMPDEST TIMESTAMP PUSH2 0x2E26 JUMP JUMPDEST DUP1 PUSH2 0x2C0B JUMPI POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x2AED PUSH1 0x7 PUSH2 0x2BFD DUP7 PUSH2 0x2CDF JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x2C2D JUMPI POP PUSH1 0x0 PUSH2 0x783 JUMP JUMPDEST PUSH2 0x8B7 PUSH1 0x1 PUSH2 0x2C3C DUP5 DUP7 PUSH2 0x35E9 JUMP JUMPDEST PUSH2 0x2C46 SWAP2 SWAP1 PUSH2 0x36B2 JUMP JUMPDEST DUP4 JUMPDEST PUSH1 0x0 PUSH2 0x8B7 DUP3 DUP5 PUSH2 0x3754 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8B7 PUSH2 0x2C46 DUP5 PUSH1 0x1 PUSH2 0x35E9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x2CA2 DUP7 PUSH1 0x20 ADD MLOAD DUP6 DUP7 PUSH4 0xFFFFFFFF AND PUSH2 0x274A SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x2CB2 SWAP1 PUSH4 0xFFFFFFFF AND DUP7 PUSH2 0x365B JUMP JUMPDEST DUP7 MLOAD PUSH2 0x2CBE SWAP2 SWAP1 PUSH2 0x35A9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP3 GT ISZERO PUSH2 0x2D5E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2032 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x3038206269747300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP5 DIV DUP2 AND PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x0 SWAP3 DUP8 SWAP2 SWAP1 DUP10 AND GT ISZERO PUSH2 0x2DF8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x89B SWAP2 SWAP1 PUSH2 0x3529 JUMP JUMPDEST POP PUSH2 0x2E07 DUP9 PUSH1 0x1 ADD DUP3 DUP8 PUSH2 0x2ECF JUMP JUMPDEST DUP3 MLOAD SWAP10 SWAP1 SWAP10 SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP3 MSTORE SWAP1 SWAP10 SWAP1 SWAP9 POP SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x2EA2 PUSH1 0x1 DUP9 ADD DUP3 DUP8 PUSH2 0x2ECF JUMP JUMPDEST DUP4 MLOAD SWAP3 SWAP7 POP SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x2EB7 SWAP1 DUP8 SWAP1 PUSH2 0x357E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP5 MSTORE POP SWAP2 SWAP6 SWAP1 SWAP5 POP SWAP1 SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP1 PUSH2 0x2F0D DUP8 DUP8 PUSH2 0x22E0 JUMP JUMPDEST SWAP2 POP POP DUP5 PUSH4 0xFFFFFFFF AND DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x2F36 JUMPI DUP6 SWAP4 POP SWAP2 POP PUSH1 0x0 SWAP1 POP PUSH2 0x2FAD JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F50 DUP3 DUP9 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP9 PUSH2 0x2C64 JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP9 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2F70 JUMPI PUSH2 0x2F70 PUSH2 0x37AA JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE PUSH1 0x0 PUSH2 0x2FA1 DUP9 PUSH2 0x2FB6 JUMP JUMPDEST SWAP6 POP SWAP1 SWAP4 POP PUSH1 0x1 SWAP3 POP POP POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP3 DUP3 ADD MSTORE SWAP1 DUP3 ADD MLOAD PUSH2 0x2FE6 SWAP1 PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP1 PUSH2 0x2C54 JUMP JUMPDEST PUSH3 0xFFFFFF SWAP1 DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD DUP2 AND LT ISZERO PUSH2 0x2D5E JUMPI PUSH1 0x1 DUP3 PUSH1 0x40 ADD DUP2 DUP2 MLOAD PUSH2 0x3012 SWAP2 SWAP1 PUSH2 0x35CB JUMP JUMPDEST PUSH3 0xFFFFFF AND SWAP1 MSTORE POP POP SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x3035 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x304C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3064 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x24A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x3035 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x3035 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x3035 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x30CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x8B7 DUP3 PUSH2 0x301E JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x30EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x30F3 DUP4 PUSH2 0x301E JUMP JUMPDEST SWAP2 POP PUSH2 0x3101 PUSH1 0x20 DUP5 ADD PUSH2 0x301E JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x311F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3128 DUP5 PUSH2 0x301E JUMP JUMPDEST SWAP3 POP PUSH2 0x3136 PUSH1 0x20 DUP6 ADD PUSH2 0x301E JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x3161 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x316A DUP9 PUSH2 0x301E JUMP JUMPDEST SWAP7 POP PUSH2 0x3178 PUSH1 0x20 DUP10 ADD PUSH2 0x301E JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x3194 PUSH1 0x80 DUP10 ADD PUSH2 0x30AB JUMP JUMPDEST SWAP3 POP PUSH1 0xA0 DUP9 ADD CALLDATALOAD SWAP2 POP PUSH1 0xC0 DUP9 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x31C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x31D2 DUP8 PUSH2 0x301E JUMP JUMPDEST SWAP6 POP PUSH2 0x31E0 PUSH1 0x20 DUP9 ADD PUSH2 0x301E JUMP JUMPDEST SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x31F5 PUSH1 0x60 DUP9 ADD PUSH2 0x30AB JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD SWAP2 POP PUSH1 0xA0 DUP8 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3224 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x322D DUP5 PUSH2 0x301E JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3249 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3255 DUP7 DUP3 DUP8 ADD PUSH2 0x303A JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x327A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3283 DUP7 PUSH2 0x301E JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x32A0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x32AC DUP10 DUP4 DUP11 ADD PUSH2 0x303A JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x32C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x32D2 DUP9 DUP3 DUP10 ADD PUSH2 0x303A JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x32F6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x32FF DUP4 PUSH2 0x301E JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x3316 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3334 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x333D DUP4 PUSH2 0x301E JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x335E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3367 DUP4 PUSH2 0x301E JUMP JUMPDEST SWAP2 POP PUSH2 0x3101 PUSH1 0x20 DUP5 ADD PUSH2 0x307F JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x338A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3393 DUP5 PUSH2 0x301E JUMP JUMPDEST SWAP3 POP PUSH2 0x33A1 PUSH1 0x20 DUP6 ADD PUSH2 0x307F JUMP JUMPDEST SWAP2 POP PUSH2 0x33AF PUSH1 0x40 DUP6 ADD PUSH2 0x307F JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x33CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x33D4 DUP4 PUSH2 0x301E JUMP JUMPDEST SWAP2 POP PUSH2 0x3101 PUSH1 0x20 DUP5 ADD PUSH2 0x3093 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x33F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3400 DUP5 PUSH2 0x301E JUMP JUMPDEST SWAP3 POP PUSH2 0x340E PUSH1 0x20 DUP6 ADD PUSH2 0x3093 JUMP JUMPDEST SWAP2 POP PUSH2 0x33AF PUSH1 0x40 DUP6 ADD PUSH2 0x3093 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x342F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3446 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3452 DUP6 DUP3 DUP7 ADD PUSH2 0x303A JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x3474 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x348C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3498 DUP9 DUP4 DUP10 ADD PUSH2 0x303A JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x34B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x34BE DUP8 DUP3 DUP9 ADD PUSH2 0x303A JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x34DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x8B7 DUP3 PUSH2 0x3093 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x351D JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x3501 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3556 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x353A JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x3568 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x35A0 JUMPI PUSH2 0x35A0 PUSH2 0x3768 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x35A0 JUMPI PUSH2 0x35A0 PUSH2 0x3768 JUMP JUMPDEST PUSH1 0x0 PUSH3 0xFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x35A0 JUMPI PUSH2 0x35A0 PUSH2 0x3768 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x35FC JUMPI PUSH2 0x35FC PUSH2 0x3768 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x35A0 JUMPI PUSH2 0x35A0 PUSH2 0x3768 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP5 AND DUP1 PUSH2 0x363B JUMPI PUSH2 0x363B PUSH2 0x377E JUMP JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x3656 JUMPI PUSH2 0x3656 PUSH2 0x377E JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x3681 JUMPI PUSH2 0x3681 PUSH2 0x3768 JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x36AA JUMPI PUSH2 0x36AA PUSH2 0x3768 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x36C4 JUMPI PUSH2 0x36C4 PUSH2 0x3768 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x36AA JUMPI PUSH2 0x36AA PUSH2 0x3768 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x36FA JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1CC3 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x374D JUMPI PUSH2 0x374D PUSH2 0x3768 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x3763 JUMPI PUSH2 0x3763 PUSH2 0x377E JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID SLOAD PUSH10 0x636B65742F6275726E2D PUSH2 0x6D6F PUSH22 0x6E742D657863656564732D746F74616C2D737570706C PUSH26 0x2D74776162A26469706673582212202772A0F14C2449C0F6AD1D PUSH3 0x98AA78 STATICCALL MOD PUSH8 0xF14FFA07C5A4155E 0xF8 0xD9 0x29 GASLIMIT 0xDD SWAP8 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "145:1775:77:-:0;;;1049:95:4;996:148;;1130:83:36;1075:138;;217:181:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;356:5;363:7;372:9;383:11;2136:5:36;2143:7;2152:9;2163:11;1376:52:4;;;;;;;;;;;;;;;;;1415:4;2340:564:16;;;;;;;;;;;;;-1:-1:-1;;;2340:564:16;;;1682:5:28;1689:7;1980:5:1;1972;:13;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1995:17:1;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;;2426:22:16;;;;;;;2482:25;;;;;;;;;2663;;;;2698:31;;;;2758:13;2739:32;;;;-1:-1:-1;3447:73:16;;2536:117;3447:73;;;2120:25:84;;;2161:18;;;2154:34;;;;2204:18;;;2197:34;;;;2247:18;;;;2240:34;;;;3514:4:16;2290:19:84;;;2283:61;3447:73:16;;;;;;;;;;2092:19:84;;;;3447:73:16;;;3437:84;;;;;;;;2781:85;;;2876:21;;-1:-1:-1;;;;;;;1716:34:28;::::2;1708:90;;;::::0;-1:-1:-1;;;1708:90:28;;3384:2:84;1708:90:28::2;::::0;::::2;3366:21:84::0;3423:2;3403:18;;;3396:30;3462:34;3442:18;;;3435:62;-1:-1:-1;;;3513:18:84;;;3506:41;3564:19;;1708:90:28::2;;;;;;;;;-1:-1:-1::0;;;;;;1808:24:28::2;::::0;;;;::::2;::::0;1851:13:::2;::::0;::::2;1843:58;;;::::0;-1:-1:-1;;;1843:58:28;;3023:2:84;1843:58:28::2;::::0;::::2;3005:21:84::0;;;3042:18;;;3035:30;3101:34;3081:18;;;3074:62;3153:18;;1843:58:28::2;2995:182:84::0;1843:58:28::2;1911:21:::0;::::2;::::0;;;;::::2;::::0;1948:48:::2;::::0;-1:-1:-1;;;;;1948:48:28;::::2;::::0;::::2;::::0;::::2;::::0;1957:5;;1964:7;;1923:9;;1948:48:::2;:::i;:::-;;;;;;;;1500:503:::0;;;;1988:190:36;;;;217:181:77;;;;145:1775;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;145:1775:77;;;-1:-1:-1;145:1775:77;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:686:84;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;;;;;224:10:84;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:84;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;577:3;570:4;565:2;557:6;553:15;549:26;546:35;543:2;;;594:1;591;584:12;543:2;607:63;667:2;660:4;652:6;648:17;641:4;633:6;629:17;607:63;:::i;:::-;688:6;78:622;-1:-1:-1;;;;;;78:622:84:o;705:888::-;820:6;828;836;844;897:3;885:9;876:7;872:23;868:33;865:2;;;914:1;911;904:12;865:2;941:16;;-1:-1:-1;;;;;1006:14:84;;;1003:2;;;1033:1;1030;1023:12;1003:2;1056:61;1109:7;1100:6;1089:9;1085:22;1056:61;:::i;:::-;1046:71;;1163:2;1152:9;1148:18;1142:25;1126:41;;1192:2;1182:8;1179:16;1176:2;;;1208:1;1205;1198:12;1176:2;;1231:63;1286:7;1275:8;1264:9;1260:24;1231:63;:::i;:::-;1221:73;;;1337:2;1326:9;1322:18;1316:25;1381:4;1374:5;1370:16;1363:5;1360:27;1350:2;;1401:1;1398;1391:12;1350:2;1474;1459:18;;1453:25;1424:5;;-1:-1:-1;;;;;;1509:33:84;;1497:46;;1487:2;;1557:1;1554;1547:12;1487:2;855:738;;;;-1:-1:-1;855:738:84;;-1:-1:-1;;855:738:84:o;1598:258::-;1640:3;1678:5;1672:12;1705:6;1700:3;1693:19;1721:63;1777:6;1770:4;1765:3;1761:14;1754:4;1747:5;1743:16;1721:63;:::i;:::-;1838:2;1817:15;-1:-1:-1;;1813:29:84;1804:39;;;;1845:4;1800:50;;1648:208;-1:-1:-1;;1648:208:84:o;2355:461::-;2576:2;2565:9;2558:21;2539:4;2602:45;2643:2;2632:9;2628:18;2620:6;2602:45;:::i;:::-;2695:9;2687:6;2683:22;2678:2;2667:9;2663:18;2656:50;2723:33;2749:6;2741;2723:33;:::i;:::-;2715:41;;;2804:4;2796:6;2792:17;2787:2;2776:9;2772:18;2765:45;2548:268;;;;;;:::o;3594:258::-;3666:1;3676:113;3690:6;3687:1;3684:13;3676:113;;;3766:11;;;3760:18;3747:11;;;3740:39;3712:2;3705:10;3676:113;;;3807:6;3804:1;3801:13;3798:2;;;3842:1;3833:6;3828:3;3824:16;3817:27;3798:2;;3647:205;;;:::o;3857:380::-;3936:1;3932:12;;;;3979;;;4000:2;;4054:4;4046:6;4042:17;4032:27;;4000:2;4107;4099:6;4096:14;4076:18;4073:38;4070:2;;;4153:10;4148:3;4144:20;4141:1;4134:31;4188:4;4185:1;4178:15;4216:4;4213:1;4206:15;4070:2;;3912:325;;;:::o;4242:127::-;4303:10;4298:3;4294:20;4291:1;4284:31;4334:4;4331:1;4324:15;4358:4;4355:1;4348:15;4274:95;145:1775:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@DOMAIN_SEPARATOR_827": {
                  "entryPoint": 2561,
                  "id": 827,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_afterTokenTransfer_584": {
                  "entryPoint": null,
                  "id": 584,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_562": {
                  "entryPoint": 4829,
                  "id": 562,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_10657": {
                  "entryPoint": 7795,
                  "id": 10657,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_3178": {
                  "entryPoint": null,
                  "id": 3178,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_burn_517": {
                  "entryPoint": 6513,
                  "id": 517,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_calculateTwab_13452": {
                  "entryPoint": 10260,
                  "id": 13452,
                  "parameterSlots": 8,
                  "returnSlots": 1
                },
                "@_computeNextTwab_13484": {
                  "entryPoint": 11364,
                  "id": 13484,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_decreaseTotalSupplyTwab_10891": {
                  "entryPoint": 10931,
                  "id": 10891,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_decreaseUserTwab_10841": {
                  "entryPoint": 10590,
                  "id": 10841,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_delegate_10505": {
                  "entryPoint": 5821,
                  "id": 10505,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_domainSeparatorV4_3151": {
                  "entryPoint": 6035,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_getAverageBalanceBetween_13227": {
                  "entryPoint": 7942,
                  "id": 13227,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@_getAverageBalancesBetween_10600": {
                  "entryPoint": 6914,
                  "id": 10600,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@_getBalanceAt_13334": {
                  "entryPoint": 7514,
                  "id": 13334,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@_hashTypedDataV4_3194": {
                  "entryPoint": 7369,
                  "id": 3194,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_increaseTotalSupplyTwab_10940": {
                  "entryPoint": 11267,
                  "id": 10940,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_increaseUserTwab_10779": {
                  "entryPoint": 11212,
                  "id": 10779,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_mint_445": {
                  "entryPoint": 6278,
                  "id": 445,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_msgSender_2403": {
                  "entryPoint": null,
                  "id": 2403,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_nextTwab_13559": {
                  "entryPoint": 11983,
                  "id": 13559,
                  "parameterSlots": 3,
                  "returnSlots": 3
                },
                "@_throwError_2753": {
                  "entryPoint": 8431,
                  "id": 2753,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_transferTwab_10718": {
                  "entryPoint": 8098,
                  "id": 10718,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_transfer_389": {
                  "entryPoint": 5217,
                  "id": 389,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_useNonce_856": {
                  "entryPoint": 7329,
                  "id": 856,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@allowance_177": {
                  "entryPoint": null,
                  "id": 177,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_198": {
                  "entryPoint": 1906,
                  "id": 198,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_138": {
                  "entryPoint": null,
                  "id": 138,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@binarySearch_12591": {
                  "entryPoint": 9597,
                  "id": 12591,
                  "parameterSlots": 6,
                  "returnSlots": 2
                },
                "@burn_16852": {
                  "entryPoint": null,
                  "id": 16852,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@checkedSub_12763": {
                  "entryPoint": 10058,
                  "id": 12763,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@controllerBurnFrom_5277": {
                  "entryPoint": 3193,
                  "id": 5277,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@controllerBurn_5242": {
                  "entryPoint": 3733,
                  "id": 5242,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controllerDelegateFor_10378": {
                  "entryPoint": 2427,
                  "id": 10378,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controllerMint_5225": {
                  "entryPoint": 2789,
                  "id": 5225,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controller_5123": {
                  "entryPoint": null,
                  "id": 5123,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@current_2431": {
                  "entryPoint": null,
                  "id": 2431,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_5287": {
                  "entryPoint": null,
                  "id": 5287,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_312": {
                  "entryPoint": 4272,
                  "id": 312,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@decreaseBalance_12984": {
                  "entryPoint": 11618,
                  "id": 12984,
                  "parameterSlots": 4,
                  "returnSlots": 3
                },
                "@delegateOf_10361": {
                  "entryPoint": null,
                  "id": 10361,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@delegateWithSignature_10447": {
                  "entryPoint": 3863,
                  "id": 10447,
                  "parameterSlots": 6,
                  "returnSlots": 0
                },
                "@delegate_10461": {
                  "entryPoint": 2776,
                  "id": 10461,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@flashLoan_16839": {
                  "entryPoint": 4262,
                  "id": 16839,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@getAccountDetails_10017": {
                  "entryPoint": null,
                  "id": 10017,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getAverageBalanceBetween_10165": {
                  "entryPoint": null,
                  "id": 10165,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getAverageBalanceBetween_13022": {
                  "entryPoint": 5765,
                  "id": 13022,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@getAverageBalanceTx_16975": {
                  "entryPoint": 2314,
                  "id": 16975,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getAverageBalancesBetween_10100": {
                  "entryPoint": 3410,
                  "id": 10100,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@getAverageTotalSuppliesBetween_10121": {
                  "entryPoint": 3717,
                  "id": 10121,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@getBalanceAt_10075": {
                  "entryPoint": null,
                  "id": 10075,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getBalanceAt_13138": {
                  "entryPoint": 5173,
                  "id": 13138,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@getBalanceTx_16933": {
                  "entryPoint": 1929,
                  "id": 16933,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getBalancesAt_10248": {
                  "entryPoint": 2909,
                  "id": 10248,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getTotalSuppliesAt_10347": {
                  "entryPoint": 3490,
                  "id": 10347,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getTotalSupplyAt_10275": {
                  "entryPoint": 2238,
                  "id": 10275,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getTwab_10037": {
                  "entryPoint": 2576,
                  "id": 10037,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_273": {
                  "entryPoint": 2696,
                  "id": 273,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseBalance_12929": {
                  "entryPoint": 11814,
                  "id": 12929,
                  "parameterSlots": 3,
                  "returnSlots": 3
                },
                "@increment_2445": {
                  "entryPoint": null,
                  "id": 2445,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@lt_12650": {
                  "entryPoint": 9390,
                  "id": 12650,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@lte_12705": {
                  "entryPoint": 9056,
                  "id": 12705,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@mintTwice_16883": {
                  "entryPoint": 2766,
                  "id": 16883,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@mint_16865": {
                  "entryPoint": 2756,
                  "id": 16865,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@name_94": {
                  "entryPoint": 1760,
                  "id": 94,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@newestIndex_12830": {
                  "entryPoint": 11294,
                  "id": 12830,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@newestTwab_13103": {
                  "entryPoint": 8928,
                  "id": 13103,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "@nextIndex_12848": {
                  "entryPoint": 11348,
                  "id": 12848,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nonces_816": {
                  "entryPoint": 3460,
                  "id": 816,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@oldestTwab_13067": {
                  "entryPoint": 9265,
                  "id": 13067,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "@permit_800": {
                  "entryPoint": 4473,
                  "id": 800,
                  "parameterSlots": 7,
                  "returnSlots": 0
                },
                "@push_13598": {
                  "entryPoint": 12214,
                  "id": 13598,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@recover_3019": {
                  "entryPoint": 7474,
                  "id": 3019,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@symbol_104": {
                  "entryPoint": 4247,
                  "id": 104,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@toTypedDataHash_3056": {
                  "entryPoint": null,
                  "id": 3056,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@toUint208_12407": {
                  "entryPoint": 11487,
                  "id": 12407,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@totalSupply_124": {
                  "entryPoint": null,
                  "id": 124,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_246": {
                  "entryPoint": 2040,
                  "id": 246,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transferTo_16900": {
                  "entryPoint": 4449,
                  "id": 16900,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@transfer_159": {
                  "entryPoint": 4460,
                  "id": 159,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@tryRecover_2986": {
                  "entryPoint": 8194,
                  "id": 2986,
                  "parameterSlots": 4,
                  "returnSlots": 2
                },
                "@wrap_12781": {
                  "entryPoint": 11336,
                  "id": 12781,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_address": {
                  "entryPoint": 12318,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_array_uint64_dyn_calldata": {
                  "entryPoint": 12346,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 12476,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 12503,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 12554,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32": {
                  "entryPoint": 12614,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 7
                },
                "abi_decode_tuple_t_addresst_addresst_uint256t_uint8t_bytes32t_bytes32": {
                  "entryPoint": 12720,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 6
                },
                "abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptr": {
                  "entryPoint": 12815,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr": {
                  "entryPoint": 12898,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_addresst_uint16": {
                  "entryPoint": 13027,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 13089,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint32": {
                  "entryPoint": 13131,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint32t_uint32": {
                  "entryPoint": 13173,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_uint64": {
                  "entryPoint": 13240,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint64t_uint64": {
                  "entryPoint": 13282,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptr": {
                  "entryPoint": 13340,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr": {
                  "entryPoint": 13406,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_uint64": {
                  "entryPoint": 13514,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint32": {
                  "entryPoint": 12415,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint64": {
                  "entryPoint": 12435,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint8": {
                  "entryPoint": 12459,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 13541,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 7,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 13609,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_39ab2e4ed03130f2bab737445eefa0170013f2d5d6416c5398200851ee691d09__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c485dc2a924c6dd174a7f3539c902d57d6264aa0653fd1afa5b4084da601fff7__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d26de55e8ec40107d038a21c3ec11785680740c032de3f1a47bf117807198f53__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_AccountDetails_$12873_memory_ptr__to_t_struct$_AccountDetails_$12873_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Observation_$12454_memory_ptr__to_t_struct$_Observation_$12454_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint208": {
                  "entryPoint": 13694,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint224": {
                  "entryPoint": 13737,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint24": {
                  "entryPoint": 13771,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 13801,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint40": {
                  "entryPoint": 13825,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint224": {
                  "entryPoint": 13857,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 13895,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint224": {
                  "entryPoint": 13915,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint224": {
                  "entryPoint": 13962,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 14002,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 14025,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 14054,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 14107,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "mod_t_uint256": {
                  "entryPoint": 14164,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 14184,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x12": {
                  "entryPoint": 14206,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x21": {
                  "entryPoint": 14228,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 14250,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 14272,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:25688:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:84"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:196:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "298:283:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "347:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "356:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "359:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "349:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "349:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "349:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "326:6:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "334:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "322:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "322:17:84"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "341:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "318:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "318:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "311:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "311:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "308:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "372:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "395:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "382:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "382:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "372:6:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "445:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "454:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "457:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "447:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "447:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "447:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "417:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "425:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "414:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "414:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "411:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "470:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "486:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "494:4:84",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "482:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "482:17:84"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "470:8:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "559:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "568:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "571:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "561:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "561:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "561:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "522:6:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "534:1:84",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "537:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "530:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "530:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "518:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "518:27:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "547:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "514:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "514:38:84"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "554:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "511:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "511:47:84"
                              },
                              "nodeType": "YulIf",
                              "src": "508:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint64_dyn_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "261:6:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "269:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "277:8:84",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "287:6:84",
                            "type": ""
                          }
                        ],
                        "src": "215:366:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "634:115:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "644:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "666:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "653:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "653:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "644:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "727:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "736:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "739:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "729:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "729:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "729:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "695:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "706:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "713:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "702:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "702:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "692:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "692:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "685:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "685:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "682:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "613:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "624:5:84",
                            "type": ""
                          }
                        ],
                        "src": "586:163:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "802:123:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "812:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "834:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "821:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "821:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "812:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "903:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "912:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "915:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "905:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "905:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "905:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "863:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "874:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "881:18:84",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "870:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "870:30:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "860:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "860:41:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "853:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "853:49:84"
                              },
                              "nodeType": "YulIf",
                              "src": "850:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "781:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "792:5:84",
                            "type": ""
                          }
                        ],
                        "src": "754:171:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "977:109:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "987:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1009:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "996:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "996:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "987:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1064:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1073:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1076:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1066:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1066:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1066:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1038:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1049:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1056:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1045:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1045:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1035:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1035:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1028:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1028:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1025:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "956:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "967:5:84",
                            "type": ""
                          }
                        ],
                        "src": "930:156:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1161:116:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1207:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1216:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1219:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1209:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1209:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1209:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1182:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1191:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1178:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1178:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1203:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1174:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1174:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1171:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1232:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1261:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1242:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1242:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1232:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1127:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1138:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1150:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1091:186:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1369:173:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1415:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1424:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1427:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1417:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1417:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1417:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1390:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1399:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1386:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1386:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1411:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1382:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1382:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1379:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1440:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1469:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1450:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1450:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1440:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1488:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1521:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1532:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1517:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1517:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1498:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1498:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1488:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1327:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1338:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1350:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1358:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1282:260:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1651:224:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1697:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1706:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1709:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1699:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1699:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1699:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1672:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1681:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1668:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1668:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1693:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1664:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1664:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1661:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1722:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1751:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1732:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1732:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1722:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1770:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1803:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1814:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1799:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1799:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1780:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1780:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1770:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1827:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1854:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1865:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1850:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1850:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1837:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1837:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1827:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1601:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1612:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1624:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1632:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1640:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1547:328:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2050:436:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2097:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2106:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2109:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2099:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2099:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2099:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2071:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2080:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2067:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2067:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2092:3:84",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2063:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2063:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2060:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2122:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2151:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2132:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2132:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2122:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2170:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2203:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2214:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2199:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2199:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2180:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2180:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2170:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2227:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2254:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2265:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2250:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2250:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2237:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2237:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2227:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2278:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2305:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2316:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2301:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2301:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2288:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2288:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2278:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2329:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2360:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2371:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2356:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2356:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "2339:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2339:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2329:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2385:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2412:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2423:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2408:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2408:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2395:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2395:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "2385:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2437:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2464:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2475:3:84",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2460:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2460:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2447:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2447:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value6",
                                  "nodeType": "YulIdentifier",
                                  "src": "2437:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1968:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1979:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1991:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1999:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2007:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2015:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2023:6:84",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "2031:6:84",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "2039:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1880:606:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2644:384:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2691:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2700:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2703:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2693:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2693:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2693:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2665:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2674:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2661:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2661:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2686:3:84",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2657:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2657:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2654:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2716:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2745:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2726:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2726:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2716:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2764:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2797:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2808:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2793:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2793:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2774:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2774:38:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2764:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2821:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2848:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2859:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2844:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2844:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2831:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2831:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2821:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2872:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2903:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2914:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2899:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2899:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "2882:16:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2882:36:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2872:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2927:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2954:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2965:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2950:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2950:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2937:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2937:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2927:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2979:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3006:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3017:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3002:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3002:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2989:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2989:33:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "2979:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint8t_bytes32t_bytes32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2570:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2581:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2593:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2601:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2609:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2617:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2625:6:84",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "2633:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2491:537:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3154:388:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3200:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3209:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3212:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3202:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3202:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3202:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3175:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3184:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3171:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3171:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3196:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3167:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3167:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3164:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3225:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3254:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3235:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3235:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3225:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3273:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3304:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3315:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3300:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3300:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3287:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3287:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3277:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3362:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3371:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3374:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3364:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3364:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3364:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3334:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3342:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3331:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3331:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3328:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3387:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3454:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "3465:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3450:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3450:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3474:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "3413:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3413:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3391:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3401:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3491:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "3501:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3491:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3518:18:84",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "3528:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "3518:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3104:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3115:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3127:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3135:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3143:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3033:509:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3719:671:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3765:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3774:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3777:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3767:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3767:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3767:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3740:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3749:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3736:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3736:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3761:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3732:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3732:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3729:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3790:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3819:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3800:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3800:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3790:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3838:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3869:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3880:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3865:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3865:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3852:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3852:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3842:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3893:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3903:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3897:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3948:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3957:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3960:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3950:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3950:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3950:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3936:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3944:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3933:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3933:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3930:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3973:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4040:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "4051:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4036:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4036:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "4060:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "3999:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3999:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3977:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3987:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4077:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "4087:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4077:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4104:18:84",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "4114:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "4104:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4131:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4164:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4175:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4160:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4160:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4147:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4147:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4135:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4208:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4217:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4220:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4210:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4210:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4210:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4194:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4204:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4191:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4191:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4188:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4233:97:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4300:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4311:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4296:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4296:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "4322:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "4259:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4259:71:84"
                              },
                              "variables": [
                                {
                                  "name": "value3_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4237:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value4_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4247:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4339:18:84",
                              "value": {
                                "name": "value3_1",
                                "nodeType": "YulIdentifier",
                                "src": "4349:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "4339:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4366:18:84",
                              "value": {
                                "name": "value4_1",
                                "nodeType": "YulIdentifier",
                                "src": "4376:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "4366:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3653:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3664:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3676:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3684:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3692:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "3700:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "3708:6:84",
                            "type": ""
                          }
                        ],
                        "src": "3547:843:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4481:260:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4527:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4536:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4539:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4529:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4529:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4529:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4502:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4511:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4498:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4498:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4523:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4494:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4494:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4491:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4552:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4581:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4562:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4562:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4552:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4600:45:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4630:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4641:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4626:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4626:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4613:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4613:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4604:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4695:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4704:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4707:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4697:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4697:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4697:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4667:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4678:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4685:6:84",
                                            "type": "",
                                            "value": "0xffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4674:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4674:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "4664:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4664:29:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4657:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4657:37:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4654:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4720:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4730:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4720:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint16",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4439:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4450:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4462:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4470:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4395:346:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4833:167:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4879:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4888:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4891:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4881:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4881:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4881:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4854:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4863:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4850:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4850:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4875:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4846:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4846:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4843:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4904:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4933:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4914:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4914:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4904:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4952:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4979:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4990:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4975:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4975:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4962:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4962:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4952:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4791:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4802:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4814:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4822:6:84",
                            "type": ""
                          }
                        ],
                        "src": "4746:254:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5091:172:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5137:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5146:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5149:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5139:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5139:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5139:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5112:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5121:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5108:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5108:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5133:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5104:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5104:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5101:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5162:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5191:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "5172:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5172:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5162:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5210:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5242:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5253:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5238:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5238:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5220:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5220:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "5210:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5049:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5060:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5072:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5080:6:84",
                            "type": ""
                          }
                        ],
                        "src": "5005:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5370:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5416:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5425:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5428:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5418:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5418:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5418:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5391:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5400:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5387:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5387:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5412:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5383:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5383:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5380:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5441:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5470:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "5451:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5451:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5441:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5489:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5521:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5532:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5517:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5517:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5499:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5499:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "5489:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5545:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5577:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5588:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5573:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5573:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5555:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5555:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "5545:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint32t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5320:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5331:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5343:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5351:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5359:6:84",
                            "type": ""
                          }
                        ],
                        "src": "5268:330:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5689:172:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5735:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5744:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5747:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5737:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5737:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5737:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5710:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5719:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5706:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5706:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5731:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5702:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5702:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5699:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5760:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5789:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "5770:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5770:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5760:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5808:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5840:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5851:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5836:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5836:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "5818:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5818:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "5808:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5647:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5658:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5670:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5678:6:84",
                            "type": ""
                          }
                        ],
                        "src": "5603:258:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5968:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6014:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6023:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6026:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6016:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6016:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6016:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5989:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5998:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5985:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5985:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6010:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5981:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5981:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "5978:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6039:39:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6068:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "6049:18:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6049:29:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6039:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6087:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6119:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6130:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6115:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6115:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "6097:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6097:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "6087:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6143:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6175:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6186:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6171:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6171:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "6153:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6153:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "6143:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint64t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5918:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5929:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5941:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5949:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5957:6:84",
                            "type": ""
                          }
                        ],
                        "src": "5866:330:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6305:331:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6351:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6360:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6363:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6353:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6353:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6353:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "6326:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6335:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6322:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6322:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6347:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6318:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6318:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6315:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6376:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6403:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6390:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6390:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "6380:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6456:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6465:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6468:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6458:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6458:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6458:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "6428:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6436:18:84",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6425:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6425:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6422:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6481:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6548:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "6559:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6544:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6544:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "6568:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "6507:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6507:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6485:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6495:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6585:18:84",
                              "value": {
                                "name": "value0_1",
                                "nodeType": "YulIdentifier",
                                "src": "6595:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6585:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6612:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "6622:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "6612:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6263:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "6274:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6286:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6294:6:84",
                            "type": ""
                          }
                        ],
                        "src": "6201:435:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6796:614:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6842:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6851:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6854:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6844:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6844:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6844:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "6817:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6826:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6813:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6813:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6838:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6809:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6809:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6806:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6867:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6894:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6881:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6881:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "6871:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6913:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6923:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6917:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6968:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6977:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6980:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6970:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6970:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6970:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "6956:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6964:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6953:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6953:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6950:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6993:95:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7060:9:84"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "7071:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7056:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7056:22:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "7080:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "7019:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7019:69:84"
                              },
                              "variables": [
                                {
                                  "name": "value0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6997:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7007:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7097:18:84",
                              "value": {
                                "name": "value0_1",
                                "nodeType": "YulIdentifier",
                                "src": "7107:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "7097:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7124:18:84",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "7134:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "7124:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7151:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7184:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7195:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7180:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7180:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7167:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7167:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7155:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7228:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7237:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7240:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7230:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7230:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7230:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7214:8:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7224:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7211:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7211:16:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7208:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7253:97:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7320:9:84"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7331:8:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7316:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7316:24:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "7342:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "7279:36:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7279:71:84"
                              },
                              "variables": [
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7257:8:84",
                                  "type": ""
                                },
                                {
                                  "name": "value3_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7267:8:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7359:18:84",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "7369:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "7359:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7386:18:84",
                              "value": {
                                "name": "value3_1",
                                "nodeType": "YulIdentifier",
                                "src": "7396:8:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "7386:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6738:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "6749:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6761:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6769:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "6777:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "6785:6:84",
                            "type": ""
                          }
                        ],
                        "src": "6641:769:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7484:115:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7530:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7539:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7542:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7532:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7532:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7532:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7505:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7514:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7501:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7501:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7526:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7497:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7497:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7494:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7555:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7583:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "7565:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7565:28:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "7555:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7450:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "7461:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7473:6:84",
                            "type": ""
                          }
                        ],
                        "src": "7415:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7852:196:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "7869:3:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7874:66:84",
                                    "type": "",
                                    "value": "0x1901000000000000000000000000000000000000000000000000000000000000"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7862:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7862:79:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7862:79:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7961:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7966:1:84",
                                        "type": "",
                                        "value": "2"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7957:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7957:11:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7970:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7950:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7950:27:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7950:27:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7997:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8002:2:84",
                                        "type": "",
                                        "value": "34"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7993:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7993:12:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8007:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7986:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7986:28:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7986:28:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8023:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "8034:3:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8039:2:84",
                                    "type": "",
                                    "value": "66"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8030:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8030:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "8023:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "7820:3:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7825:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7833:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "7844:3:84",
                            "type": ""
                          }
                        ],
                        "src": "7604:444:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8154:125:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8164:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8176:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8187:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8172:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8172:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8164:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8206:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8221:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8229:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8217:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8217:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8199:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8199:74:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8199:74:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8123:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8134:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8145:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8053:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8435:481:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8445:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8455:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8449:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8466:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8484:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8495:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8480:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8480:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8470:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8514:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8525:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8507:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8507:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8507:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8537:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "8548:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "8541:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8563:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8583:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "8577:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8577:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "8567:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8606:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "8614:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8599:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8599:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8599:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8630:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8641:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8652:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8637:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8637:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "8630:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8664:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8682:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8690:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8678:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8678:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "8668:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8702:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8711:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "8706:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8770:120:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "8791:3:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "8802:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "8796:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8796:13:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8784:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8784:26:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8784:26:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8823:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "8834:3:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8839:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8830:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8830:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "8823:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8855:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "8869:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8877:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8865:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8865:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "8855:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "8732:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "8735:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8729:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8729:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "8743:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8745:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "8754:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8757:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8750:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8750:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "8745:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "8725:3:84",
                                "statements": []
                              },
                              "src": "8721:169:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8899:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "8907:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8899:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8404:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8415:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8426:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8284:632:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9016:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9026:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9038:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9049:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9034:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9034:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9026:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9068:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "9093:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "9086:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9086:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "9079:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9079:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9061:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9061:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9061:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8985:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8996:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9007:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8921:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9214:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9224:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9236:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9247:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9232:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9232:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9224:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9266:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9277:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9259:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9259:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9259:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9183:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9194:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9205:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9113:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9508:329:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9518:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9530:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9541:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9526:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9526:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9518:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9561:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9572:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9554:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9554:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9554:25:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9588:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9598:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9592:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9660:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9671:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9656:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9656:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9680:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9688:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9676:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9676:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9649:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9649:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9649:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9712:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9723:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9708:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9708:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "9732:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9740:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9728:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9728:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9701:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9701:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9701:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9764:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9775:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9760:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9760:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9780:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9753:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9753:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9753:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9807:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9818:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9803:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9803:19:84"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "9824:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9796:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9796:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9796:35:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9445:9:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "9456:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "9464:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "9472:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "9480:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9488:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9499:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9295:542:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10083:373:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10093:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10105:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10116:3:84",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10101:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10101:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10093:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10136:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "10147:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10129:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10129:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10129:25:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10163:52:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10173:42:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "10167:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10235:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10246:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10231:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10231:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "10255:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "10263:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10251:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10251:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10224:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10224:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10224:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10287:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10298:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10283:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10283:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "10307:6:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "10315:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10303:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10303:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10276:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10276:43:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10276:43:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10339:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10350:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10335:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10335:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "10355:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10328:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10328:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10328:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10382:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10393:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10378:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10378:19:84"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "10399:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10371:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10371:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10371:35:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10426:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10437:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10422:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10422:19:84"
                                  },
                                  {
                                    "name": "value5",
                                    "nodeType": "YulIdentifier",
                                    "src": "10443:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10415:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10415:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10415:35:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10012:9:84",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "10023:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "10031:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "10039:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "10047:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "10055:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10063:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10074:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9842:614:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10674:299:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10684:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10696:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10707:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10692:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10692:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10684:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10727:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "10738:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10720:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10720:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10720:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10765:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10776:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10761:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10761:18:84"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10781:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10754:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10754:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10754:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10808:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10819:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10804:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10804:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "10824:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10797:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10797:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10797:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10851:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10862:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10847:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10847:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "10867:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10840:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10840:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10840:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10894:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10905:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10890:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10890:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "10915:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10923:42:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10911:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10911:55:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10883:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10883:84:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10883:84:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10611:9:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "10622:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "10630:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "10638:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "10646:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10654:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10665:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10461:512:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11159:217:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11169:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11181:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11192:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11177:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11177:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11169:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11212:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11223:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11205:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11205:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11205:25:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11250:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11261:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11246:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11246:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11270:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11278:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11266:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11266:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11239:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11239:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11239:45:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11304:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11315:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11300:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11300:18:84"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "11320:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11293:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11293:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11293:34:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11347:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11358:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11343:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11343:18:84"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "11363:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11336:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11336:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11336:34:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11104:9:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "11115:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "11123:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "11131:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11139:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11150:4:84",
                            "type": ""
                          }
                        ],
                        "src": "10978:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11502:535:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11512:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11522:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11516:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11540:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11551:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11533:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11533:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11533:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11563:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11583:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11577:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11577:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "11567:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11610:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11621:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11606:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11606:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11626:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11599:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11599:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11599:34:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11642:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11651:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "11646:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11711:90:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11740:9:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11751:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "11736:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11736:17:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "11755:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "11732:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11732:26:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "11774:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "11782:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "11770:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "11770:14:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11786:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "11766:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11766:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "11760:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11760:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11725:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11725:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11725:66:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11672:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11675:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11669:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11669:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "11683:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11685:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "11694:1:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "11697:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11690:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11690:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "11685:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "11665:3:84",
                                "statements": []
                              },
                              "src": "11661:140:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11835:66:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11864:9:84"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11875:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "11860:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11860:22:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "11884:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "11856:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11856:31:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11889:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11849:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11849:42:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11849:42:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11816:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11819:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11813:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11813:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "11810:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11910:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11926:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "11945:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "11953:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "11941:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "11941:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "11958:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "11937:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11937:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11922:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11922:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12028:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11918:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11918:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11910:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11471:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11482:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11493:4:84",
                            "type": ""
                          }
                        ],
                        "src": "11381:656:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12216:174:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12233:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12244:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12226:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12226:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12226:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12267:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12278:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12263:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12263:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12283:2:84",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12256:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12256:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12256:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12306:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12317:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12302:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12302:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12322:26:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12295:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12295:54:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12295:54:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12358:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12370:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12381:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12366:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12366:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12358:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12193:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12207:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12042:348:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12569:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12586:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12597:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12579:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12579:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12579:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12620:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12631:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12616:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12616:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12636:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12609:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12609:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12609:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12659:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12670:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12655:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12655:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12675:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12648:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12648:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12648:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12730:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12741:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12726:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12726:18:84"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12746:5:84",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12719:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12719:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12719:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12761:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12773:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12784:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12769:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12769:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12761:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12546:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12560:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12395:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12973:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12990:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13001:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12983:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12983:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12983:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13024:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13035:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13020:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13020:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13040:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13013:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13013:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13013:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13063:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13074:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13059:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13059:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13079:34:84",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13052:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13052:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13052:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13134:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13145:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13130:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13130:18:84"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13150:4:84",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13123:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13123:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13123:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13164:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13176:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13187:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13172:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13172:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13164:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12950:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12964:4:84",
                            "type": ""
                          }
                        ],
                        "src": "12799:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13376:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13393:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13404:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13386:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13386:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13386:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13427:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13438:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13423:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13423:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13443:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13416:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13416:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13416:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13466:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13477:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13462:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13462:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265206c656e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13482:33:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature length"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13455:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13455:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13455:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13525:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13537:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13548:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13533:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13533:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13525:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13353:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13367:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13202:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13736:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13753:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13764:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13746:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13746:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13746:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13787:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13798:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13783:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13783:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13803:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13776:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13776:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13776:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13826:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13837:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13822:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13822:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13842:34:84",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13815:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13815:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13815:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13897:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13908:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13893:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13893:18:84"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13913:4:84",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13886:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13886:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13886:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13927:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13939:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13950:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13935:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13935:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13927:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13713:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13727:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13562:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14139:182:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14156:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14167:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14149:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14149:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14149:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14190:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14201:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14186:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14186:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14206:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14179:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14179:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14179:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14229:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14240:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14225:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14225:18:84"
                                  },
                                  {
                                    "hexValue": "5469636b65742f64656c65676174652d657870697265642d646561646c696e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14245:34:84",
                                    "type": "",
                                    "value": "Ticket/delegate-expired-deadline"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14218:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14218:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14218:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14289:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14301:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14312:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14297:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14297:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14289:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_39ab2e4ed03130f2bab737445eefa0170013f2d5d6416c5398200851ee691d09__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14116:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14130:4:84",
                            "type": ""
                          }
                        ],
                        "src": "13965:356:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14500:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14517:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14528:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14510:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14510:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14510:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14551:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14562:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14547:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14547:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14567:2:84",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14540:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14540:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14540:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14590:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14601:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14586:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14586:18:84"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a206578706972656420646561646c696e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14606:31:84",
                                    "type": "",
                                    "value": "ERC20Permit: expired deadline"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14579:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14579:59:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14579:59:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14647:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14659:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14670:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14655:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14655:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14647:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14477:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14491:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14326:353:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14858:228:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14875:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14886:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14868:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14868:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14868:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14909:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14920:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14905:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14905:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14925:2:84",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14898:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14898:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14898:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14948:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14959:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14944:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14944:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14964:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14937:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14937:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14937:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15019:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15030:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15015:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15015:18:84"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15035:8:84",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15008:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15008:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15008:36:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15053:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15065:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15076:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15061:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15061:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15053:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14835:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14849:4:84",
                            "type": ""
                          }
                        ],
                        "src": "14684:402:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15265:229:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15282:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15293:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15275:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15275:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15275:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15316:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15327:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15312:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15312:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15332:2:84",
                                    "type": "",
                                    "value": "39"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15305:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15305:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15305:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15355:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15366:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15351:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15351:18:84"
                                  },
                                  {
                                    "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2032",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15371:34:84",
                                    "type": "",
                                    "value": "SafeCast: value doesn't fit in 2"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15344:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15344:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15344:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15426:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15437:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15422:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15422:18:84"
                                  },
                                  {
                                    "hexValue": "30382062697473",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15442:9:84",
                                    "type": "",
                                    "value": "08 bits"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15415:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15415:37:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15415:37:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15461:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15473:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15484:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15469:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15469:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15461:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15242:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15256:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15091:403:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15673:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15690:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15701:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15683:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15683:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15683:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15724:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15735:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15720:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15720:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15740:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15713:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15713:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15713:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15763:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15774:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15759:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15759:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202773272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15779:34:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 's' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15752:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15752:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15752:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15834:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15845:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15830:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15830:18:84"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15850:4:84",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15823:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15823:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15823:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15864:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15876:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15887:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15872:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15872:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15864:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15650:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15664:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15499:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16076:224:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16093:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16104:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16086:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16086:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16086:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16127:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16138:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16123:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16123:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16143:2:84",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16116:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16116:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16116:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16166:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16177:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16162:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16162:18:84"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202776272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16182:34:84",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 'v' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16155:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16155:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16155:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16237:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16248:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16233:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16233:18:84"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16253:4:84",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16226:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16226:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16226:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16267:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16279:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16290:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16275:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16275:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16267:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16053:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16067:4:84",
                            "type": ""
                          }
                        ],
                        "src": "15902:398:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16479:180:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16496:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16507:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16489:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16489:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16489:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16530:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16541:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16526:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16526:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16546:2:84",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16519:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16519:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16519:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16569:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16580:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16565:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16565:18:84"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16585:32:84",
                                    "type": "",
                                    "value": "ERC20Permit: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16558:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16558:60:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16558:60:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16627:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16639:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16650:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16635:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16635:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16627:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16456:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16470:4:84",
                            "type": ""
                          }
                        ],
                        "src": "16305:354:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16838:230:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16855:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16866:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16848:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16848:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16848:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16889:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16900:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16885:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16885:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16905:2:84",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16878:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16878:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16878:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16928:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16939:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16924:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16924:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16944:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16917:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16917:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16917:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16999:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17010:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16995:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16995:18:84"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17015:10:84",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16988:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16988:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16988:38:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17035:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17047:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17058:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17043:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17043:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17035:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16815:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16829:4:84",
                            "type": ""
                          }
                        ],
                        "src": "16664:404:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17247:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17264:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17275:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17257:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17257:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17257:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17298:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17309:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17294:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17294:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17314:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17287:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17287:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17287:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17337:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17348:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17333:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17333:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17353:34:84",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17326:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17326:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17326:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17408:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17419:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17404:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17404:18:84"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17424:3:84",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17397:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17397:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17397:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17437:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17449:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17460:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17445:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17445:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17437:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17224:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17238:4:84",
                            "type": ""
                          }
                        ],
                        "src": "17073:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17649:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17666:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17677:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17659:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17659:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17659:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17700:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17711:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17696:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17696:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17716:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17689:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17689:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17689:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17739:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17750:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17735:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17735:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17755:34:84",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17728:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17728:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17728:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17810:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17821:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17806:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17806:18:84"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17826:7:84",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17799:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17799:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17799:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17843:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17855:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17866:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17851:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17851:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17843:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17626:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17640:4:84",
                            "type": ""
                          }
                        ],
                        "src": "17475:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18055:225:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18072:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18083:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18065:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18065:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18065:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18106:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18117:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18102:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18102:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18122:2:84",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18095:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18095:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18095:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18145:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18156:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18141:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18141:18:84"
                                  },
                                  {
                                    "hexValue": "5469636b65742f73746172742d656e642d74696d65732d6c656e6774682d6d61",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18161:34:84",
                                    "type": "",
                                    "value": "Ticket/start-end-times-length-ma"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18134:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18134:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18134:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18216:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18227:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18212:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18212:18:84"
                                  },
                                  {
                                    "hexValue": "746368",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18232:5:84",
                                    "type": "",
                                    "value": "tch"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18205:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18205:33:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18205:33:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18247:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18259:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18270:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18255:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18255:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18247:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c485dc2a924c6dd174a7f3539c902d57d6264aa0653fd1afa5b4084da601fff7__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18032:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18046:4:84",
                            "type": ""
                          }
                        ],
                        "src": "17881:399:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18459:226:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18476:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18487:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18469:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18469:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18469:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18510:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18521:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18506:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18506:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18526:2:84",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18499:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18499:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18499:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18549:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18560:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18545:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18545:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18565:34:84",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18538:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18538:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18538:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18620:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18631:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18616:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18616:18:84"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18636:6:84",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18609:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18609:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18609:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18652:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18664:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18675:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18660:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18660:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18652:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18436:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18450:4:84",
                            "type": ""
                          }
                        ],
                        "src": "18285:400:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18864:223:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18881:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18892:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18874:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18874:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18874:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18915:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18926:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18911:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18911:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18931:2:84",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18904:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18904:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18904:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18954:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18965:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18950:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18950:18:84"
                                  },
                                  {
                                    "hexValue": "5469636b65742f64656c65676174652d696e76616c69642d7369676e61747572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18970:34:84",
                                    "type": "",
                                    "value": "Ticket/delegate-invalid-signatur"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18943:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18943:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18943:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19025:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19036:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19021:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19021:18:84"
                                  },
                                  {
                                    "hexValue": "65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19041:3:84",
                                    "type": "",
                                    "value": "e"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19014:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19014:31:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19014:31:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19054:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19066:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19077:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19062:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19062:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19054:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d26de55e8ec40107d038a21c3ec11785680740c032de3f1a47bf117807198f53__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18841:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18855:4:84",
                            "type": ""
                          }
                        ],
                        "src": "18690:397:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19266:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19283:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19294:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19276:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19276:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19276:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19317:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19328:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19313:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19313:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19333:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19306:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19306:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19306:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19356:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19367:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19352:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19352:18:84"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19372:33:84",
                                    "type": "",
                                    "value": "ControlledToken/only-controller"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19345:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19345:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19345:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19415:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19427:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19438:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19423:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19423:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19415:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19243:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19257:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19092:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19626:227:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19643:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19654:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19636:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19636:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19636:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19677:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19688:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19673:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19673:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19693:2:84",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19666:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19666:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19666:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19716:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19727:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19712:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19712:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19732:34:84",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19705:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19705:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19705:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19787:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19798:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19783:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19783:18:84"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19803:7:84",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19776:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19776:35:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19776:35:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19820:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19832:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19843:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19828:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19828:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19820:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19603:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19617:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19452:401:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20032:181:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20049:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20060:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20042:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20042:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20042:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20083:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20094:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20079:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20079:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20099:2:84",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20072:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20072:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20072:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20122:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20133:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20118:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20118:18:84"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "20138:33:84",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20111:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20111:61:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20111:61:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "20181:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20193:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20204:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20189:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20189:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20181:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20009:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20023:4:84",
                            "type": ""
                          }
                        ],
                        "src": "19858:355:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20385:356:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20395:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20407:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20418:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20403:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20403:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20395:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20437:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "20458:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "20452:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20452:13:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20467:54:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20448:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20448:74:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20430:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20430:93:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20430:93:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20532:44:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "20562:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20570:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20558:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20558:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "20552:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20552:24:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "20536:12:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20585:18:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "20595:8:84",
                                "type": "",
                                "value": "0xffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20589:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20623:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20634:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20619:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20619:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "20645:12:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "20659:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20641:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20641:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20612:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20612:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20612:51:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20683:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20694:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20679:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20679:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "20715:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "20723:4:84",
                                                "type": "",
                                                "value": "0x40"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "20711:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "20711:17:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "20705:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20705:24:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "20731:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20701:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20701:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20672:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20672:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20672:63:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_AccountDetails_$12873_memory_ptr__to_t_struct$_AccountDetails_$12873_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20354:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "20365:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20376:4:84",
                            "type": ""
                          }
                        ],
                        "src": "20218:523:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20907:228:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20917:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20929:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20940:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20925:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20925:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20917:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20959:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "20980:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "20974:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20974:13:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20989:58:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20970:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20970:78:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20952:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20952:97:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20952:97:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21069:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21080:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21065:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21065:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "21101:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "21109:4:84",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "21097:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "21097:17:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "21091:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "21091:24:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21117:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "21087:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21087:41:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21058:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21058:71:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21058:71:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Observation_$12454_memory_ptr__to_t_struct$_Observation_$12454_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20876:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "20887:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20898:4:84",
                            "type": ""
                          }
                        ],
                        "src": "20746:389:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21241:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "21251:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21263:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21274:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21259:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21259:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "21251:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21293:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "21304:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21286:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21286:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21286:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "21210:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "21221:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "21232:4:84",
                            "type": ""
                          }
                        ],
                        "src": "21140:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21419:87:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "21429:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21441:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21452:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21437:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21437:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "21429:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21471:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "21486:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21494:4:84",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "21482:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21482:17:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21464:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21464:36:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21464:36:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "21388:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "21399:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "21410:4:84",
                            "type": ""
                          }
                        ],
                        "src": "21322:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21559:225:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21569:64:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21579:54:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21573:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21642:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21657:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21660:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21653:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21653:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21646:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21672:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21687:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21690:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21683:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21683:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21676:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21727:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21729:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21729:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21729:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21708:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21717:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21721:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "21713:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21713:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21705:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21705:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21702:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21758:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21769:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21774:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21765:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21765:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "21758:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint208",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21542:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21545:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "21551:3:84",
                            "type": ""
                          }
                        ],
                        "src": "21511:273:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21837:229:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21847:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21857:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21851:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21924:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21939:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21942:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21935:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21935:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21928:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21954:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21969:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21972:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21965:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21965:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21958:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22009:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22011:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22011:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22011:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21990:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21999:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "22003:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "21995:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21995:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21987:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21987:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "21984:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22040:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22051:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22056:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22047:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22047:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "22040:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21820:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21823:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "21829:3:84",
                            "type": ""
                          }
                        ],
                        "src": "21789:277:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22118:179:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22128:18:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "22138:8:84",
                                "type": "",
                                "value": "0xffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22132:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22155:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22170:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22173:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22166:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22166:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22159:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22185:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22200:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22203:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22196:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22196:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22189:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22240:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22242:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22242:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22242:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22221:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "22230:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "22234:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "22226:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22226:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "22218:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22218:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22215:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22271:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22282:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22287:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22278:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22278:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "22271:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint24",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22101:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22104:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "22110:3:84",
                            "type": ""
                          }
                        ],
                        "src": "22071:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22350:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22377:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22379:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22379:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22379:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22366:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "22373:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "22369:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22369:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "22363:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22363:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22360:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22408:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22419:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22422:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22415:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22415:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "22408:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22333:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22336:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "22342:3:84",
                            "type": ""
                          }
                        ],
                        "src": "22302:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22482:183:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22492:22:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "22502:12:84",
                                "type": "",
                                "value": "0xffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22496:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22523:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22538:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22541:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22534:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22534:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22527:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22553:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22568:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22571:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22564:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22564:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22557:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22608:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22610:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22610:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22610:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22589:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "22598:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "22602:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "22594:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22594:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "22586:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22586:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22583:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22639:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22650:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22655:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22646:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22646:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "22639:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint40",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22465:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22468:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "22474:3:84",
                            "type": ""
                          }
                        ],
                        "src": "22435:230:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22716:194:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22726:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "22736:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22730:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22803:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22818:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22821:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22814:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22814:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22807:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22848:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "22850:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22850:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22850:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22843:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "22836:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22836:11:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22833:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22879:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "x",
                                        "nodeType": "YulIdentifier",
                                        "src": "22892:1:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "22895:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "22888:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22888:10:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22900:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "22884:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22884:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "22879:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22701:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22704:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "22710:1:84",
                            "type": ""
                          }
                        ],
                        "src": "22670:240:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22961:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22984:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "22986:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22986:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22986:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22981:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "22974:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22974:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "22971:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23015:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23024:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23027:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "23020:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23020:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "23015:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22946:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22949:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "22955:1:84",
                            "type": ""
                          }
                        ],
                        "src": "22915:120:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23092:259:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23102:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "23112:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23106:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23179:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23194:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23197:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23190:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23190:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23183:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23209:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23224:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23227:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23220:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23220:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23213:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23290:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "23292:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23292:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23292:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "23260:3:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "23253:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "23253:11:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "23246:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23246:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "23270:3:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "23279:2:84"
                                          },
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "23283:3:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "23275:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "23275:12:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "23267:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23267:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23242:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23242:47:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23239:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23321:24:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23336:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23341:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "23332:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23332:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "23321:7:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "23071:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "23074:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "23080:7:84",
                            "type": ""
                          }
                        ],
                        "src": "23040:311:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23405:221:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23415:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "23425:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23419:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23492:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23507:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23510:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23503:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23503:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23496:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23522:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23537:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23540:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23533:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23533:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23526:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23568:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "23570:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23570:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23570:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23558:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23563:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "23555:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23555:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23552:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23599:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23611:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23616:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "23607:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23607:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "23599:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "23387:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "23390:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "23396:4:84",
                            "type": ""
                          }
                        ],
                        "src": "23356:270:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23680:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23702:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "23704:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23704:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23704:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23696:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23699:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "23693:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23693:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23690:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23733:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23745:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23748:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "23741:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23741:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "23733:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "23662:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "23665:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "23671:4:84",
                            "type": ""
                          }
                        ],
                        "src": "23631:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23809:173:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23819:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "23829:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23823:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23848:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23863:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23866:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23859:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23859:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23852:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23878:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23893:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23896:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23889:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23889:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23882:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23924:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "23926:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23926:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23926:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23914:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23919:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "23911:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23911:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "23908:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23955:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23967:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23972:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "23963:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23963:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "23955:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "23791:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "23794:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "23800:4:84",
                            "type": ""
                          }
                        ],
                        "src": "23761:221:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24042:382:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "24052:22:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24066:1:84",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "24069:4:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "24062:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24062:12:84"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "24052:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "24083:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "24113:4:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24119:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "24109:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24109:12:84"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "24087:18:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24160:31:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "24162:27:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "24176:6:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24184:4:84",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "24172:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24172:17:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "24162:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "24140:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "24133:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24133:26:84"
                              },
                              "nodeType": "YulIf",
                              "src": "24130:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24250:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24271:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24274:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "24264:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24264:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24264:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24372:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24375:4:84",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "24365:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24365:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24365:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24400:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24403:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "24393:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24393:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24393:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "24206:18:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "24229:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "24237:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "24226:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "24226:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "24203:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24203:38:84"
                              },
                              "nodeType": "YulIf",
                              "src": "24200:2:84"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "24022:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "24031:6:84",
                            "type": ""
                          }
                        ],
                        "src": "23987:437:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24476:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24567:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "24569:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24569:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24569:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "24492:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24499:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "24489:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24489:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "24486:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "24598:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "24609:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24616:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "24605:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24605:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "24598:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "24458:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "24468:3:84",
                            "type": ""
                          }
                        ],
                        "src": "24429:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24667:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24690:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "24692:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24692:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24692:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "24687:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "24680:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24680:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "24677:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "24721:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "24730:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "24733:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "24726:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24726:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "24721:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "24652:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "24655:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "24661:1:84",
                            "type": ""
                          }
                        ],
                        "src": "24629:112:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24778:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24795:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24798:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24788:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24788:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24788:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24892:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24895:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24885:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24885:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24885:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24916:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24919:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24909:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24909:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24909:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "24746:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24967:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24984:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24987:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24977:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24977:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24977:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25081:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25084:4:84",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "25074:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25074:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "25074:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25105:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25108:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "25098:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25098:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "25098:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "24935:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "25156:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25173:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25176:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "25166:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25166:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "25166:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25270:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25273:4:84",
                                    "type": "",
                                    "value": "0x21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "25263:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25263:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "25263:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25294:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25297:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "25287:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25287:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "25287:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x21",
                        "nodeType": "YulFunctionDefinition",
                        "src": "25124:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "25345:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25362:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25365:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "25355:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25355:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "25355:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25459:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25462:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "25452:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25452:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "25452:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25483:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25486:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "25476:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25476:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "25476:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "25313:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "25534:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25551:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25554:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "25544:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25544:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "25544:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25648:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25651:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "25641:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25641:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "25641:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25672:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25675:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "25665:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25665:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "25665:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "25502:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_array_uint64_dyn_calldata(offset, end) -> arrayPos, length\n    {\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(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint64(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint8(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        value3 := calldataload(add(headStart, 96))\n        value4 := abi_decode_uint8(add(headStart, 128))\n        value5 := calldataload(add(headStart, 160))\n        value6 := calldataload(add(headStart, 192))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 192) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        value3 := abi_decode_uint8(add(headStart, 96))\n        value4 := calldataload(add(headStart, 128))\n        value5 := calldataload(add(headStart, 160))\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        let offset_1 := calldataload(add(headStart, 64))\n        if gt(offset_1, _1) { revert(0, 0) }\n        let value3_1, value4_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset_1), dataEnd)\n        value3 := value3_1\n        value4 := value4_1\n    }\n    function abi_decode_tuple_t_addresst_uint16(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let value := calldataload(add(headStart, 32))\n        if iszero(eq(value, and(value, 0xffff))) { revert(0, 0) }\n        value1 := value\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_uint32(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint32(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_uint32(add(headStart, 32))\n        value2 := abi_decode_uint32(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_uint64(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_uint64(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_uint64t_uint64(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_uint64(add(headStart, 32))\n        value2 := abi_decode_uint64(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n    }\n    function abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        let value2_1, value3_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset_1), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n    }\n    function abi_decode_tuple_t_uint64(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n    }\n    function abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        mstore(pos, 0x1901000000000000000000000000000000000000000000000000000000000000)\n        mstore(add(pos, 2), value0)\n        mstore(add(pos, 34), value1)\n        end := add(pos, 66)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), and(value2, _1))\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        mstore(headStart, value0)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), and(value2, _1))\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: burn amount exceeds balan\")\n        mstore(add(headStart, 96), \"ce\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature length\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_39ab2e4ed03130f2bab737445eefa0170013f2d5d6416c5398200851ee691d09__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"Ticket/delegate-expired-deadline\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"ERC20Permit: expired deadline\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 39)\n        mstore(add(headStart, 64), \"SafeCast: value doesn't fit in 2\")\n        mstore(add(headStart, 96), \"08 bits\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature 's' val\")\n        mstore(add(headStart, 96), \"ue\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature 'v' val\")\n        mstore(add(headStart, 96), \"ue\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"ERC20Permit: invalid signature\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC20: burn from the zero addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c485dc2a924c6dd174a7f3539c902d57d6264aa0653fd1afa5b4084da601fff7__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Ticket/start-end-times-length-ma\")\n        mstore(add(headStart, 96), \"tch\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d26de55e8ec40107d038a21c3ec11785680740c032de3f1a47bf117807198f53__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"Ticket/delegate-invalid-signatur\")\n        mstore(add(headStart, 96), \"e\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ControlledToken/only-controller\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_AccountDetails_$12873_memory_ptr__to_t_struct$_AccountDetails_$12873_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(mload(value0), 0xffffffffffffffffffffffffffffffffffffffffffffffffffff))\n        let memberValue0 := mload(add(value0, 0x20))\n        let _1 := 0xffffff\n        mstore(add(headStart, 0x20), and(memberValue0, _1))\n        mstore(add(headStart, 0x40), and(mload(add(value0, 0x40)), _1))\n    }\n    function abi_encode_tuple_t_struct$_Observation_$12454_memory_ptr__to_t_struct$_Observation_$12454_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(mload(value0), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 0x20), and(mload(add(value0, 0x20)), 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint208(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint224(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint24(x, y) -> sum\n    {\n        let _1 := 0xffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint40(x, y) -> sum\n    {\n        let _1 := 0xffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint224(x, y) -> r\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let y_1 := and(y, _1)\n        if iszero(y_1) { panic_error_0x12() }\n        r := div(and(x, _1), y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function checked_mul_t_uint224(x, y) -> product\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if and(iszero(iszero(x_1)), gt(y_1, div(_1, x_1))) { panic_error_0x11() }\n        product := mul(x_1, y_1)\n    }\n    function checked_sub_t_uint224(x, y) -> diff\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "716": [
                  {
                    "length": 32,
                    "start": 4557
                  }
                ],
                "3063": [
                  {
                    "length": 32,
                    "start": 6080
                  }
                ],
                "3065": [
                  {
                    "length": 32,
                    "start": 6039
                  }
                ],
                "3067": [
                  {
                    "length": 32,
                    "start": 6163
                  }
                ],
                "3069": [
                  {
                    "length": 32,
                    "start": 6200
                  }
                ],
                "3071": [
                  {
                    "length": 32,
                    "start": 6121
                  }
                ],
                "5123": [
                  {
                    "length": 32,
                    "start": 1726
                  },
                  {
                    "length": 32,
                    "start": 2438
                  },
                  {
                    "length": 32,
                    "start": 2800
                  },
                  {
                    "length": 32,
                    "start": 3204
                  },
                  {
                    "length": 32,
                    "start": 3744
                  }
                ],
                "5126": [
                  {
                    "length": 32,
                    "start": 991
                  }
                ],
                "9967": [
                  {
                    "length": 32,
                    "start": 3947
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106102925760003560e01c806368c7fd571161016057806398b16f36116100d8578063a5f2a1521161008c578063d505accf11610071578063d505accf1461066d578063dd62ed3e14610680578063f77c4791146106b957600080fd5b8063a5f2a15214610647578063a9059cbb1461065a57600080fd5b80639dc29fac116100bd5780639dc29fac146106135780639ecb037014610626578063a457c2d71461063457600080fd5b806398b16f36146105f25780639d9e465c1461060057600080fd5b80638d22ea2a1161012f57806390596dd11161011457806390596dd1146105c4578063919974dc146105d757806395d89b41146105ea57600080fd5b80638d22ea2a1461056a5780638e6d536a146105b157600080fd5b806368c7fd571461050857806370a082311461051b5780637ecebe001461054457806385beb5f11461055757600080fd5b806333e39b611161020e578063456f95e6116101c25780635d7b0758116101a75780635d7b0758146104c2578063613ed6bd146104d5578063631b5dfb146104f557600080fd5b8063456f95e61461049c5780635c19a95c146104af57600080fd5b806336bb2a38116101f357806336bb2a3814610439578063395093511461047657806340c10f191461048957600080fd5b806333e39b611461041c5780633644e5151461043157600080fd5b806323b872dd116102655780632d0dd6861161024a5780632d0dd686146103c5578063313ce567146103d857806331c4293d1461040957600080fd5b806323b872dd146103015780632aceb5341461031457600080fd5b806306fdde0314610297578063095ea7b3146102b557806309daa017146102d857806318160ddd146102f9575b600080fd5b61029f6106e0565b6040516102ac9190613529565b60405180910390f35b6102c86102c3366004613321565b610772565b60405190151581526020016102ac565b6102eb6102e636600461334b565b610789565b6040519081526020016102ac565b6002546102eb565b6102c861030f36600461310a565b6107f8565b61038d6103223660046130bc565b6040805160608082018352600080835260208084018290529284018190526001600160a01b03949094168452600682529282902082519384018352546001600160d01b038116845262ffffff600160d01b8204811692850192909252600160e81b9004169082015290565b6040805182516001600160d01b0316815260208084015162ffffff9081169183019190915292820151909216908201526060016102ac565b6102eb6103d33660046134ca565b6108be565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016102ac565b6102eb610417366004613375565b61090a565b61042f61042a3660046130d7565b61097b565b005b6102eb610a01565b61044c6104473660046132e3565b610a10565b6040805182516001600160e01b0316815260209283015163ffffffff1692810192909252016102ac565b6102c8610484366004613321565b610a88565b61042f610497366004613321565b610ac4565b61042f6104aa366004613321565b610ace565b61042f6104bd3660046130bc565b610ad8565b61042f6104d0366004613321565b610ae5565b6104e86104e336600461320f565b610b5d565b6040516102ac91906134e5565b61042f61050336600461310a565b610c79565b6104e8610516366004613262565b610d52565b6102eb6105293660046130bc565b6001600160a01b031660009081526020819052604090205490565b6102eb6105523660046130bc565b610d84565b6104e861056536600461341c565b610da2565b6105996105783660046130bc565b6001600160a01b039081166000908152630100000760205260409020541690565b6040516001600160a01b0390911681526020016102ac565b6104e86105bf36600461345e565b610e85565b61042f6105d2366004613321565b610e95565b61042f6105e53660046131b0565b610f17565b61029f611097565b6102eb6104173660046133e2565b61042f61060e366004613321565b6110a6565b61042f610621366004613321565b610f0d565b6102eb6102e63660046133b8565b6102c8610642366004613321565b6110b0565b61042f61065536600461310a565b611161565b6102c8610668366004613321565b61116c565b61042f61067b366004613146565b611179565b6102eb61068e3660046130d7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105997f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546106ef906136e6565b80601f016020809104026020016040519081016040528092919081815260200182805461071b906136e6565b80156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b5050505050905090565b600061077f3384846112dd565b5060015b92915050565b6001600160a01b0382166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b900490931691830191909152906107f09060018301908542611435565b949350505050565b6000610805848484611461565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108a45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6108b185338584036112dd565b60019150505b9392505050565b604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090610783906008908442611435565b6001600160a01b0383166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b90049093169183019190915290610972906001830190868642611685565b95945050505050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146109f35760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c657200604482015260640161089b565b6109fd82826116bd565b5050565b6000610a0b611793565b905090565b60408051808201909152600080825260208201526001600160a01b038316600090815260066020526040902060010161ffff831662ffffff8110610a5657610a566137aa565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201529392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161077f918590610abf9086906135e9565b6112dd565b6109fd8282611886565b610ac48282611886565b610ae233826116bd565b50565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610ac45760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c657200604482015260640161089b565b60608160008167ffffffffffffffff811115610b7b57610b7b6137c0565b604051908082528060200260200182016040528015610ba4578160200160208202803683370190505b506001600160a01b0387166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b900490931691830191909152929350905b84811015610c6c57610c3d83600101838a8a85818110610c2257610c226137aa565b9050602002016020810190610c3791906134ca565b42611435565b848281518110610c4f57610c4f6137aa565b602090810291909101015280610c648161371b565b915050610c00565b5091979650505050505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610cf15760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c657200604482015260640161089b565b816001600160a01b0316836001600160a01b031614610d43576001600160a01b03828116600090815260016020908152604080832093871683529290522054610d439083908590610abf9085906136b2565b610d4d8282611971565b505050565b6001600160a01b0385166000908152600660205260409020606090610d7a9086868686611b02565b9695505050505050565b6001600160a01b038116600090815260056020526040812054610783565b60608160008167ffffffffffffffff811115610dc057610dc06137c0565b604051908082528060200260200182016040528015610de9578160200160208202803683370190505b50604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915290915060005b83811015610e7a57610e4b600883898985818110610c2257610c226137aa565b838281518110610e5d57610e5d6137aa565b602090810291909101015280610e728161371b565b915050610e2b565b509095945050505050565b6060610972600786868686611b02565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f0d5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c657200604482015260640161089b565b6109fd8282611971565b83421115610f675760405162461bcd60e51b815260206004820181905260248201527f5469636b65742f64656c65676174652d657870697265642d646561646c696e65604482015260640161089b565b60007f00000000000000000000000000000000000000000000000000000000000000008787610f958a611ca1565b6040805160208101959095526001600160a01b039384169085015291166060830152608082015260a0810186905260c0016040516020818303038152906040528051906020012090506000610fe982611cc9565b90506000610ff982878787611d32565b9050886001600160a01b0316816001600160a01b0316146110825760405162461bcd60e51b815260206004820152602160248201527f5469636b65742f64656c65676174652d696e76616c69642d7369676e6174757260448201527f6500000000000000000000000000000000000000000000000000000000000000606482015260840161089b565b61108c89896116bd565b505050505050505050565b6060600480546106ef906136e6565b610f0d8282611886565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561114a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161089b565b61115733858584036112dd565b5060019392505050565b610d4d838383611461565b600061077f338484611461565b834211156111c95760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161089b565b60007f00000000000000000000000000000000000000000000000000000000000000008888886111f88c611ca1565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061125382611cc9565b9050600061126382878787611d32565b9050896001600160a01b0316816001600160a01b0316146112c65760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161089b565b6112d18a8a8a6112dd565b50505050505050505050565b6001600160a01b0383166113585760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161089b565b6001600160a01b0382166113d45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161089b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000808263ffffffff168463ffffffff16116114515783611453565b825b9050610d7a86868386611d5a565b6001600160a01b0383166114dd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161089b565b6001600160a01b0382166115595760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161089b565b611564838383611e73565b6001600160a01b038316600090815260208190526040902054818110156115f35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161089b565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061162a9084906135e9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161167691815260200190565b60405180910390a35b50505050565b6000808263ffffffff168463ffffffff16116116a157836116a3565b825b90506116b28787878487611f06565b979650505050505050565b6001600160a01b038281166000908152602081815260408083205463010000079092529091205490919081169083168114156116f95750505050565b6001600160a01b03848116600090815263010000076020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001691851691909117905561174d818484611fa2565b826001600160a01b0316846001600160a01b03167f4bc154dd35d6a5cb9206482ecb473cdbf2473006d6bce728b9cc0741bcc59ea260405160405180910390a350505050565b60007f00000000000000000000000000000000000000000000000000000000000000004614156117e257507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b0382166118dc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161089b565b6118e860008383611e73565b80600260008282546118fa91906135e9565b90915550506001600160a01b038216600090815260208190526040812080548392906119279084906135e9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166119ed5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161089b565b6119f982600083611e73565b6001600160a01b03821660009081526020819052604090205481811015611a885760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161089b565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611ab79084906136b2565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b606083828114611b7a5760405162461bcd60e51b815260206004820152602360248201527f5469636b65742f73746172742d656e642d74696d65732d6c656e6774682d6d6160448201527f7463680000000000000000000000000000000000000000000000000000000000606482015260840161089b565b6040805160608101825288546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915260008267ffffffffffffffff811115611bcf57611bcf6137c0565b604051908082528060200260200182016040528015611bf8578160200160208202803683370190505b5090504260005b84811015611c9257611c638b600101858c8c85818110611c2157611c216137aa565b9050602002016020810190611c3691906134ca565b8b8b86818110611c4857611c486137aa565b9050602002016020810190611c5d91906134ca565b86611685565b838281518110611c7557611c756137aa565b602090810291909101015280611c8a8161371b565b915050611bff565b50909998505050505050505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b6000610783611cd6611793565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611d4387878787612002565b91509150611d50816120ef565b5095945050505050565b604080518082019091526000808252602082018190529081906040805180820190915260008082526020820152611d9188886122e0565b60208101519194509150611db29063ffffffff908116908890889061236016565b15611dcd57505084516001600160d01b031691506107f09050565b6000611dd98989612431565b6020810151909350909150611dfa9063ffffffff808a16919089906124ae16565b15611e0c5760009450505050506107f0565b611e1e8985838a8c604001518b61257d565b8094508193505050611e39836020015183602001518861274a565b63ffffffff1682600001518460000151611e53919061368a565b611e5d9190613621565b6001600160e01b03169998505050505050505050565b816001600160a01b0316836001600160a01b03161415611e9257505050565b60006001600160a01b03841615611ec357506001600160a01b03808416600090815263010000076020526040902054165b60006001600160a01b03841615611ef457506001600160a01b03808416600090815263010000076020526040902054165b611eff828285611fa2565b5050505050565b6000806000611f158888612431565b91509150600080611f268a8a6122e0565b915091506000611f3c8b8b8487878a8f8e612814565b90506000611f508c8c8588888b8f8f612814565b9050611f65816020015183602001518a61274a565b63ffffffff1682600001518260000151611f7f919061368a565b611f899190613621565b6001600160e01b03169c9b505050505050505050505050565b6001600160a01b03831615611fd257611fbb838261295e565b6001600160a01b038216611fd257611fd281612ab3565b6001600160a01b03821615610d4d57611feb8282612bcc565b6001600160a01b038316610d4d57610d4d81612c03565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561203957506000905060036120e6565b8460ff16601b1415801561205157508460ff16601c14155b1561206257506000905060046120e6565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156120b6573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166120df576000600192509250506120e6565b9150600090505b94509492505050565b600081600481111561210357612103613794565b141561210c5750565b600181600481111561212057612120613794565b141561216e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161089b565b600281600481111561218257612182613794565b14156121d05760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161089b565b60038160048111156121e4576121e4613794565b14156122585760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161089b565b600481600481111561226c5761226c613794565b1415610ae25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161089b565b604080518082019091526000808252602082018190529061230f836020015162ffffff1662ffffff8016612c1e565b9150838262ffffff1662ffffff811061232a5761232a6137aa565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919491935090915050565b60008163ffffffff168463ffffffff161115801561238a57508163ffffffff168363ffffffff1611155b156123a6578263ffffffff168463ffffffff16111590506108b7565b60008263ffffffff168563ffffffff16116123d5576123d063ffffffff8616640100000000613601565b6123dd565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116124155761241063ffffffff8616640100000000613601565b61241d565b8463ffffffff165b64ffffffffff169091111595945050505050565b604080518082019091526000808252602082018190529082602001519150838262ffffff1662ffffff8110612468576124686137aa565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff16602082018190529091506124a75760009150838261232a565b9250929050565b60008163ffffffff168463ffffffff16111580156124d857508163ffffffff168363ffffffff1611155b156124f3578263ffffffff168463ffffffff161090506108b7565b60008263ffffffff168563ffffffff16116125225761251d63ffffffff8616640100000000613601565b61252a565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116125625761255d63ffffffff8616640100000000613601565b61256a565b8463ffffffff165b64ffffffffff1690911095945050505050565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff16106125c8578862ffffff166125e3565b60016125d962ffffff8816846135e9565b6125e391906136b2565b905060005b60026125f483856135e9565b6125fe9190613647565b90508a612610828962ffffff16612c48565b62ffffff1662ffffff8110612627576126276137aa565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff16602082018190529095508061266f576126678260016135e9565b9350506125e8565b8b61267f838a62ffffff16612c54565b62ffffff1662ffffff8110612696576126966137aa565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b909104811660208301529095506000906126db90838116908c908b9061236016565b905080801561270457506127048660200151898c63ffffffff166123609092919063ffffffff16565b1561271057505061273c565b80612727576127206001846136b2565b9350612735565b6127328360016135e9565b94505b50506125e8565b505050965096945050505050565b60008163ffffffff168463ffffffff161115801561277457508163ffffffff168363ffffffff1611155b1561278a5761278383856136c9565b90506108b7565b60008263ffffffff168563ffffffff16116127b9576127b463ffffffff8616640100000000613601565b6127c1565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116127f9576127f463ffffffff8616640100000000613601565b612801565b8463ffffffff165b64ffffffffff169050610d7a81836136b2565b60408051808201909152600080825260208201526128478383896020015163ffffffff166124ae9092919063ffffffff16565b1561286b576128648789600001516001600160d01b031685612c64565b9050612952565b8263ffffffff16876020015163ffffffff16141561288a575085612952565b8263ffffffff16866020015163ffffffff1614156128a9575084612952565b6128c88660200151838563ffffffff166124ae9092919063ffffffff16565b156128ed5750604080518082019091526000815263ffffffff83166020820152612952565b6000806129028b8888888e604001518961257d565b91509150600061291b826020015184602001518761274a565b63ffffffff1683600001518360000151612935919061368a565b61293f9190613621565b905061294c838288612c64565b93505050505b98975050505050505050565b80612967575050565b6001600160a01b03821660009081526006602052604081209080806129cb8461298f87612cdf565b6040518060400160405280601b81526020017f5469636b65742f747761622d6275726e2d6c742d62616c616e6365000000000081525042612d62565b82518754602085015160408601516001600160d01b039093167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b9190921602178755919450925090508015612aab576040805183516001600160e01b0316815260208085015163ffffffff16908201526001600160a01b038816917fdd3e7cd3a260a292b0b3306b2ca62f30a7349619a9d09c58109318774c6b627d910160405180910390a25b505050505050565b80612abb5750565b6000806000612aed6007612ace86612cdf565b6040518060600160405280602c81526020016137d7602c913942612d62565b825160078054602086015160408701516001600160d01b039094167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b919093160291909117905591945092509050801561167f576040805183516001600160e01b0316815260208085015163ffffffff16908201527f3375b905d617084fa6b7531688cc8046feb1f1a0b8ba2273de03c59d8d84416c910160405180910390a150505050565b80612bd5575050565b6001600160a01b03821660009081526006602052604081209080806129cb84612bfd87612cdf565b42612e26565b80612c0b5750565b6000806000612aed6007612bfd86612cdf565b600081612c2d57506000610783565b6108b76001612c3c84866135e9565b612c4691906136b2565b835b60006108b78284613754565b60006108b7612c468460016135e9565b60408051808201909152600080825260208201526040518060400160405280612ca28660200151858663ffffffff1661274a9092919063ffffffff16565b612cb29063ffffffff168661365b565b8651612cbe91906135a9565b6001600160e01b031681526020018363ffffffff1681525090509392505050565b60006001600160d01b03821115612d5e5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203260448201527f3038206269747300000000000000000000000000000000000000000000000000606482015260840161089b565b5090565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825287546001600160d01b0380821680845262ffffff600160d01b840481166020860152600160e81b9093049092169383019390935260009287919089161115612df85760405162461bcd60e51b815260040161089b9190613529565b50612e07886001018287612ecf565b8251999099036001600160d01b03168252909990985095505050505050565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825286546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090612ea2600188018287612ecf565b83519296509094509250612eb790879061357e565b6001600160d01b031684525091959094509092509050565b60408051606081018252600080825260208201819052918101919091526040805180820190915260008082526020820152600080612f0d87876122e0565b9150508463ffffffff16816020015163ffffffff161415612f3657859350915060009050612fad565b6000612f508288600001516001600160d01b031688612c64565b90508088886020015162ffffff1662ffffff8110612f7057612f706137aa565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556000612fa188612fb6565b95509093506001925050505b93509350939050565b60408051606081018252600080825260208083018290529282015290820151612fe69062ffffff90811690612c54565b62ffffff9081166020840152604083015181161015612d5e5760018260400181815161301291906135cb565b62ffffff169052505090565b80356001600160a01b038116811461303557600080fd5b919050565b60008083601f84011261304c57600080fd5b50813567ffffffffffffffff81111561306457600080fd5b6020830191508360208260051b85010111156124a757600080fd5b803563ffffffff8116811461303557600080fd5b803567ffffffffffffffff8116811461303557600080fd5b803560ff8116811461303557600080fd5b6000602082840312156130ce57600080fd5b6108b78261301e565b600080604083850312156130ea57600080fd5b6130f38361301e565b91506131016020840161301e565b90509250929050565b60008060006060848603121561311f57600080fd5b6131288461301e565b92506131366020850161301e565b9150604084013590509250925092565b600080600080600080600060e0888a03121561316157600080fd5b61316a8861301e565b96506131786020890161301e565b95506040880135945060608801359350613194608089016130ab565b925060a0880135915060c0880135905092959891949750929550565b60008060008060008060c087890312156131c957600080fd5b6131d28761301e565b95506131e06020880161301e565b9450604087013593506131f5606088016130ab565b92506080870135915060a087013590509295509295509295565b60008060006040848603121561322457600080fd5b61322d8461301e565b9250602084013567ffffffffffffffff81111561324957600080fd5b6132558682870161303a565b9497909650939450505050565b60008060008060006060868803121561327a57600080fd5b6132838661301e565b9450602086013567ffffffffffffffff808211156132a057600080fd5b6132ac89838a0161303a565b909650945060408801359150808211156132c557600080fd5b506132d28882890161303a565b969995985093965092949392505050565b600080604083850312156132f657600080fd5b6132ff8361301e565b9150602083013561ffff8116811461331657600080fd5b809150509250929050565b6000806040838503121561333457600080fd5b61333d8361301e565b946020939093013593505050565b6000806040838503121561335e57600080fd5b6133678361301e565b91506131016020840161307f565b60008060006060848603121561338a57600080fd5b6133938461301e565b92506133a16020850161307f565b91506133af6040850161307f565b90509250925092565b600080604083850312156133cb57600080fd5b6133d48361301e565b915061310160208401613093565b6000806000606084860312156133f757600080fd5b6134008461301e565b925061340e60208501613093565b91506133af60408501613093565b6000806020838503121561342f57600080fd5b823567ffffffffffffffff81111561344657600080fd5b6134528582860161303a565b90969095509350505050565b6000806000806040858703121561347457600080fd5b843567ffffffffffffffff8082111561348c57600080fd5b6134988883890161303a565b909650945060208701359150808211156134b157600080fd5b506134be8782880161303a565b95989497509550505050565b6000602082840312156134dc57600080fd5b6108b782613093565b6020808252825182820181905260009190848201906040850190845b8181101561351d57835183529284019291840191600101613501565b50909695505050505050565b600060208083528351808285015260005b818110156135565785810183015185820160400152820161353a565b81811115613568576000604083870101525b50601f01601f1916929092016040019392505050565b60006001600160d01b038083168185168083038211156135a0576135a0613768565b01949350505050565b60006001600160e01b038083168185168083038211156135a0576135a0613768565b600062ffffff8083168185168083038211156135a0576135a0613768565b600082198211156135fc576135fc613768565b500190565b600064ffffffffff8083168185168083038211156135a0576135a0613768565b60006001600160e01b038084168061363b5761363b61377e565b92169190910492915050565b6000826136565761365661377e565b500490565b60006001600160e01b038083168185168183048111821515161561368157613681613768565b02949350505050565b60006001600160e01b03838116908316818110156136aa576136aa613768565b039392505050565b6000828210156136c4576136c4613768565b500390565b600063ffffffff838116908316818110156136aa576136aa613768565b600181811c908216806136fa57607f821691505b60208210811415611cc357634e487b7160e01b600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561374d5761374d613768565b5060010190565b6000826137635761376361377e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfe5469636b65742f6275726e2d616d6f756e742d657863656564732d746f74616c2d737570706c792d74776162a26469706673582212202772a0f14c2449c0f6ad1d6298aa78fa0667f14ffa07c5a4155ef8d92945dd9764736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x292 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x68C7FD57 GT PUSH2 0x160 JUMPI DUP1 PUSH4 0x98B16F36 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0xA5F2A152 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xD505ACCF GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x66D JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x680 JUMPI DUP1 PUSH4 0xF77C4791 EQ PUSH2 0x6B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA5F2A152 EQ PUSH2 0x647 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x65A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9DC29FAC GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x613 JUMPI DUP1 PUSH4 0x9ECB0370 EQ PUSH2 0x626 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x634 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x98B16F36 EQ PUSH2 0x5F2 JUMPI DUP1 PUSH4 0x9D9E465C EQ PUSH2 0x600 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8D22EA2A GT PUSH2 0x12F JUMPI DUP1 PUSH4 0x90596DD1 GT PUSH2 0x114 JUMPI DUP1 PUSH4 0x90596DD1 EQ PUSH2 0x5C4 JUMPI DUP1 PUSH4 0x919974DC EQ PUSH2 0x5D7 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x5EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8D22EA2A EQ PUSH2 0x56A JUMPI DUP1 PUSH4 0x8E6D536A EQ PUSH2 0x5B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x68C7FD57 EQ PUSH2 0x508 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x51B JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x544 JUMPI DUP1 PUSH4 0x85BEB5F1 EQ PUSH2 0x557 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E39B61 GT PUSH2 0x20E JUMPI DUP1 PUSH4 0x456F95E6 GT PUSH2 0x1C2 JUMPI DUP1 PUSH4 0x5D7B0758 GT PUSH2 0x1A7 JUMPI DUP1 PUSH4 0x5D7B0758 EQ PUSH2 0x4C2 JUMPI DUP1 PUSH4 0x613ED6BD EQ PUSH2 0x4D5 JUMPI DUP1 PUSH4 0x631B5DFB EQ PUSH2 0x4F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x456F95E6 EQ PUSH2 0x49C JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x4AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x36BB2A38 GT PUSH2 0x1F3 JUMPI DUP1 PUSH4 0x36BB2A38 EQ PUSH2 0x439 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x476 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x489 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E39B61 EQ PUSH2 0x41C JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x431 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x265 JUMPI DUP1 PUSH4 0x2D0DD686 GT PUSH2 0x24A JUMPI DUP1 PUSH4 0x2D0DD686 EQ PUSH2 0x3C5 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x3D8 JUMPI DUP1 PUSH4 0x31C4293D EQ PUSH2 0x409 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x2ACEB534 EQ PUSH2 0x314 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x297 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2B5 JUMPI DUP1 PUSH4 0x9DAA017 EQ PUSH2 0x2D8 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x2F9 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x29F PUSH2 0x6E0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2AC SWAP2 SWAP1 PUSH2 0x3529 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C8 PUSH2 0x2C3 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0x772 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x2E6 CALLDATASIZE PUSH1 0x4 PUSH2 0x334B JUMP JUMPDEST PUSH2 0x789 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AC JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x2EB JUMP JUMPDEST PUSH2 0x2C8 PUSH2 0x30F CALLDATASIZE PUSH1 0x4 PUSH2 0x310A JUMP JUMPDEST PUSH2 0x7F8 JUMP JUMPDEST PUSH2 0x38D PUSH2 0x322 CALLDATASIZE PUSH1 0x4 PUSH2 0x30BC JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP1 DUP3 ADD DUP4 MSTORE PUSH1 0x0 DUP1 DUP4 MSTORE PUSH1 0x20 DUP1 DUP5 ADD DUP3 SWAP1 MSTORE SWAP3 DUP5 ADD DUP2 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 SWAP1 SWAP5 AND DUP5 MSTORE PUSH1 0x6 DUP3 MSTORE SWAP3 DUP3 SWAP1 KECCAK256 DUP3 MLOAD SWAP4 DUP5 ADD DUP4 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP5 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP3 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV AND SWAP1 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 DUP3 ADD MLOAD SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x3D3 CALLDATASIZE PUSH1 0x4 PUSH2 0x34CA JUMP JUMPDEST PUSH2 0x8BE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x417 CALLDATASIZE PUSH1 0x4 PUSH2 0x3375 JUMP JUMPDEST PUSH2 0x90A JUMP JUMPDEST PUSH2 0x42F PUSH2 0x42A CALLDATASIZE PUSH1 0x4 PUSH2 0x30D7 JUMP JUMPDEST PUSH2 0x97B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2EB PUSH2 0xA01 JUMP JUMPDEST PUSH2 0x44C PUSH2 0x447 CALLDATASIZE PUSH1 0x4 PUSH2 0x32E3 JUMP JUMPDEST PUSH2 0xA10 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x2C8 PUSH2 0x484 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0xA88 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x497 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0xAC4 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x4AA CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0xACE JUMP JUMPDEST PUSH2 0x42F PUSH2 0x4BD CALLDATASIZE PUSH1 0x4 PUSH2 0x30BC JUMP JUMPDEST PUSH2 0xAD8 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x4D0 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0xAE5 JUMP JUMPDEST PUSH2 0x4E8 PUSH2 0x4E3 CALLDATASIZE PUSH1 0x4 PUSH2 0x320F JUMP JUMPDEST PUSH2 0xB5D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2AC SWAP2 SWAP1 PUSH2 0x34E5 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x503 CALLDATASIZE PUSH1 0x4 PUSH2 0x310A JUMP JUMPDEST PUSH2 0xC79 JUMP JUMPDEST PUSH2 0x4E8 PUSH2 0x516 CALLDATASIZE PUSH1 0x4 PUSH2 0x3262 JUMP JUMPDEST PUSH2 0xD52 JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x529 CALLDATASIZE PUSH1 0x4 PUSH2 0x30BC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x552 CALLDATASIZE PUSH1 0x4 PUSH2 0x30BC JUMP JUMPDEST PUSH2 0xD84 JUMP JUMPDEST PUSH2 0x4E8 PUSH2 0x565 CALLDATASIZE PUSH1 0x4 PUSH2 0x341C JUMP JUMPDEST PUSH2 0xDA2 JUMP JUMPDEST PUSH2 0x599 PUSH2 0x578 CALLDATASIZE PUSH1 0x4 PUSH2 0x30BC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x4E8 PUSH2 0x5BF CALLDATASIZE PUSH1 0x4 PUSH2 0x345E JUMP JUMPDEST PUSH2 0xE85 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x5D2 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0xE95 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x5E5 CALLDATASIZE PUSH1 0x4 PUSH2 0x31B0 JUMP JUMPDEST PUSH2 0xF17 JUMP JUMPDEST PUSH2 0x29F PUSH2 0x1097 JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x417 CALLDATASIZE PUSH1 0x4 PUSH2 0x33E2 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x60E CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0x10A6 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x621 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0xF0D JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x2E6 CALLDATASIZE PUSH1 0x4 PUSH2 0x33B8 JUMP JUMPDEST PUSH2 0x2C8 PUSH2 0x642 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0x10B0 JUMP JUMPDEST PUSH2 0x42F PUSH2 0x655 CALLDATASIZE PUSH1 0x4 PUSH2 0x310A JUMP JUMPDEST PUSH2 0x1161 JUMP JUMPDEST PUSH2 0x2C8 PUSH2 0x668 CALLDATASIZE PUSH1 0x4 PUSH2 0x3321 JUMP JUMPDEST PUSH2 0x116C JUMP JUMPDEST PUSH2 0x42F PUSH2 0x67B CALLDATASIZE PUSH1 0x4 PUSH2 0x3146 JUMP JUMPDEST PUSH2 0x1179 JUMP JUMPDEST PUSH2 0x2EB PUSH2 0x68E CALLDATASIZE PUSH1 0x4 PUSH2 0x30D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x599 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x6EF SWAP1 PUSH2 0x36E6 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x71B SWAP1 PUSH2 0x36E6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x768 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x73D JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x768 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 0x74B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77F CALLER DUP5 DUP5 PUSH2 0x12DD JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0x7F0 SWAP1 PUSH1 0x1 DUP4 ADD SWAP1 DUP6 TIMESTAMP PUSH2 0x1435 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x805 DUP5 DUP5 DUP5 PUSH2 0x1461 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x8A4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8B1 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x12DD JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x783 SWAP1 PUSH1 0x8 SWAP1 DUP5 TIMESTAMP PUSH2 0x1435 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0x972 SWAP1 PUSH1 0x1 DUP4 ADD SWAP1 DUP7 DUP7 TIMESTAMP PUSH2 0x1685 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x9F3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x9FD DUP3 DUP3 PUSH2 0x16BD JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA0B PUSH2 0x1793 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD PUSH2 0xFFFF DUP4 AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xA56 JUMPI PUSH2 0xA56 PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x77F SWAP2 DUP6 SWAP1 PUSH2 0xABF SWAP1 DUP7 SWAP1 PUSH2 0x35E9 JUMP JUMPDEST PUSH2 0x12DD JUMP JUMPDEST PUSH2 0x9FD DUP3 DUP3 PUSH2 0x1886 JUMP JUMPDEST PUSH2 0xAC4 DUP3 DUP3 PUSH2 0x1886 JUMP JUMPDEST PUSH2 0xAE2 CALLER DUP3 PUSH2 0x16BD JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xAC4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB7B JUMPI PUSH2 0xB7B PUSH2 0x37C0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xBA4 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 SWAP4 POP SWAP1 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0xC6C JUMPI PUSH2 0xC3D DUP4 PUSH1 0x1 ADD DUP4 DUP11 DUP11 DUP6 DUP2 DUP2 LT PUSH2 0xC22 JUMPI PUSH2 0xC22 PUSH2 0x37AA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xC37 SWAP2 SWAP1 PUSH2 0x34CA JUMP JUMPDEST TIMESTAMP PUSH2 0x1435 JUMP JUMPDEST DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xC4F JUMPI PUSH2 0xC4F PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xC64 DUP2 PUSH2 0x371B JUMP JUMPDEST SWAP2 POP POP PUSH2 0xC00 JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xCF1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xD43 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH2 0xD43 SWAP1 DUP4 SWAP1 DUP6 SWAP1 PUSH2 0xABF SWAP1 DUP6 SWAP1 PUSH2 0x36B2 JUMP JUMPDEST PUSH2 0xD4D DUP3 DUP3 PUSH2 0x1971 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x60 SWAP1 PUSH2 0xD7A SWAP1 DUP7 DUP7 DUP7 DUP7 PUSH2 0x1B02 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x783 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xDC0 JUMPI PUSH2 0xDC0 PUSH2 0x37C0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xDE9 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xE7A JUMPI PUSH2 0xE4B PUSH1 0x8 DUP4 DUP10 DUP10 DUP6 DUP2 DUP2 LT PUSH2 0xC22 JUMPI PUSH2 0xC22 PUSH2 0x37AA JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xE5D JUMPI PUSH2 0xE5D PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xE72 DUP2 PUSH2 0x371B JUMP JUMPDEST SWAP2 POP POP PUSH2 0xE2B JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x972 PUSH1 0x7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x1B02 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xF0D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x9FD DUP3 DUP3 PUSH2 0x1971 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0xF67 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F64656C65676174652D657870697265642D646561646C696E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP8 DUP8 PUSH2 0xF95 DUP11 PUSH2 0x1CA1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND SWAP1 DUP6 ADD MSTORE SWAP2 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0xFE9 DUP3 PUSH2 0x1CC9 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xFF9 DUP3 DUP8 DUP8 DUP8 PUSH2 0x1D32 JUMP JUMPDEST SWAP1 POP DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1082 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F64656C65676174652D696E76616C69642D7369676E61747572 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6500000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x108C DUP10 DUP10 PUSH2 0x16BD JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x6EF SWAP1 PUSH2 0x36E6 JUMP JUMPDEST PUSH2 0xF0D DUP3 DUP3 PUSH2 0x1886 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x114A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x1157 CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x12DD JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0xD4D DUP4 DUP4 DUP4 PUSH2 0x1461 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77F CALLER DUP5 DUP5 PUSH2 0x1461 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x11C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0x11F8 DUP13 PUSH2 0x1CA1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0x1253 DUP3 PUSH2 0x1CC9 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1263 DUP3 DUP8 DUP8 DUP8 PUSH2 0x1D32 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x12C6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x12D1 DUP11 DUP11 DUP11 PUSH2 0x12DD JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1358 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x13D4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1451 JUMPI DUP4 PUSH2 0x1453 JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0xD7A DUP7 DUP7 DUP4 DUP7 PUSH2 0x1D5A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x14DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1559 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x1564 DUP4 DUP4 DUP4 PUSH2 0x1E73 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x15F3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x162A SWAP1 DUP5 SWAP1 PUSH2 0x35E9 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1676 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x16A1 JUMPI DUP4 PUSH2 0x16A3 JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0x16B2 DUP8 DUP8 DUP8 DUP5 DUP8 PUSH2 0x1F06 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH4 0x1000007 SWAP1 SWAP3 MSTORE SWAP1 SWAP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x16F9 JUMPI POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 AND SWAP2 DUP6 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x174D DUP2 DUP5 DUP5 PUSH2 0x1FA2 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4BC154DD35D6A5CB9206482ECB473CDBF2473006D6BCE728B9CC0741BCC59EA2 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 CHAINID EQ ISZERO PUSH2 0x17E2 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH32 0x0 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 DUP3 DUP5 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP4 ADD MSTORE CHAINID PUSH1 0x80 DUP4 ADD MSTORE ADDRESS PUSH1 0xA0 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xC0 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x18DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x18E8 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1E73 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x18FA SWAP2 SWAP1 PUSH2 0x35E9 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x1927 SWAP1 DUP5 SWAP1 PUSH2 0x35E9 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x19ED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH2 0x19F9 DUP3 PUSH1 0x0 DUP4 PUSH2 0x1E73 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x1A88 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x1AB7 SWAP1 DUP5 SWAP1 PUSH2 0x36B2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 DUP3 DUP2 EQ PUSH2 0x1B7A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F73746172742D656E642D74696D65732D6C656E6774682D6D61 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7463680000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP9 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1BCF JUMPI PUSH2 0x1BCF PUSH2 0x37C0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1BF8 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x1C92 JUMPI PUSH2 0x1C63 DUP12 PUSH1 0x1 ADD DUP6 DUP13 DUP13 DUP6 DUP2 DUP2 LT PUSH2 0x1C21 JUMPI PUSH2 0x1C21 PUSH2 0x37AA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1C36 SWAP2 SWAP1 PUSH2 0x34CA JUMP JUMPDEST DUP12 DUP12 DUP7 DUP2 DUP2 LT PUSH2 0x1C48 JUMPI PUSH2 0x1C48 PUSH2 0x37AA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1C5D SWAP2 SWAP1 PUSH2 0x34CA JUMP JUMPDEST DUP7 PUSH2 0x1685 JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1C75 JUMPI PUSH2 0x1C75 PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x1C8A DUP2 PUSH2 0x371B JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1BFF JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE SWAP1 JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x783 PUSH2 0x1CD6 PUSH2 0x1793 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x22 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x42 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x62 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1D43 DUP8 DUP8 DUP8 DUP8 PUSH2 0x2002 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1D50 DUP2 PUSH2 0x20EF JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1D91 DUP9 DUP9 PUSH2 0x22E0 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP2 SWAP5 POP SWAP2 POP PUSH2 0x1DB2 SWAP1 PUSH4 0xFFFFFFFF SWAP1 DUP2 AND SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH2 0x2360 AND JUMP JUMPDEST ISZERO PUSH2 0x1DCD JUMPI POP POP DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP2 POP PUSH2 0x7F0 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1DD9 DUP10 DUP10 PUSH2 0x2431 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP1 SWAP4 POP SWAP1 SWAP2 POP PUSH2 0x1DFA SWAP1 PUSH4 0xFFFFFFFF DUP1 DUP11 AND SWAP2 SWAP1 DUP10 SWAP1 PUSH2 0x24AE AND JUMP JUMPDEST ISZERO PUSH2 0x1E0C JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0x7F0 JUMP JUMPDEST PUSH2 0x1E1E DUP10 DUP6 DUP4 DUP11 DUP13 PUSH1 0x40 ADD MLOAD DUP12 PUSH2 0x257D JUMP JUMPDEST DUP1 SWAP5 POP DUP2 SWAP4 POP POP POP PUSH2 0x1E39 DUP4 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP9 PUSH2 0x274A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP5 PUSH1 0x0 ADD MLOAD PUSH2 0x1E53 SWAP2 SWAP1 PUSH2 0x368A JUMP JUMPDEST PUSH2 0x1E5D SWAP2 SWAP1 PUSH2 0x3621 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1E92 JUMPI POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x1EC3 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x1EF4 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND JUMPDEST PUSH2 0x1EFF DUP3 DUP3 DUP6 PUSH2 0x1FA2 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1F15 DUP9 DUP9 PUSH2 0x2431 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 PUSH2 0x1F26 DUP11 DUP11 PUSH2 0x22E0 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x1F3C DUP12 DUP12 DUP5 DUP8 DUP8 DUP11 DUP16 DUP15 PUSH2 0x2814 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1F50 DUP13 DUP13 DUP6 DUP9 DUP9 DUP12 DUP16 DUP16 PUSH2 0x2814 JUMP JUMPDEST SWAP1 POP PUSH2 0x1F65 DUP2 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP11 PUSH2 0x274A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP3 PUSH1 0x0 ADD MLOAD PUSH2 0x1F7F SWAP2 SWAP1 PUSH2 0x368A JUMP JUMPDEST PUSH2 0x1F89 SWAP2 SWAP1 PUSH2 0x3621 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP13 SWAP12 POP POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO PUSH2 0x1FD2 JUMPI PUSH2 0x1FBB DUP4 DUP3 PUSH2 0x295E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1FD2 JUMPI PUSH2 0x1FD2 DUP2 PUSH2 0x2AB3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0xD4D JUMPI PUSH2 0x1FEB DUP3 DUP3 PUSH2 0x2BCC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xD4D JUMPI PUSH2 0xD4D DUP2 PUSH2 0x2C03 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0x2039 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x3 PUSH2 0x20E6 JUMP JUMPDEST DUP5 PUSH1 0xFF AND PUSH1 0x1B EQ ISZERO DUP1 ISZERO PUSH2 0x2051 JUMPI POP DUP5 PUSH1 0xFF AND PUSH1 0x1C EQ ISZERO JUMPDEST ISZERO PUSH2 0x2062 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x4 PUSH2 0x20E6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x20B6 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x20DF JUMPI PUSH1 0x0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0x20E6 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2103 JUMPI PUSH2 0x2103 PUSH2 0x3794 JUMP JUMPDEST EQ ISZERO PUSH2 0x210C JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2120 JUMPI PUSH2 0x2120 PUSH2 0x3794 JUMP JUMPDEST EQ ISZERO PUSH2 0x216E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2182 JUMPI PUSH2 0x2182 PUSH2 0x3794 JUMP JUMPDEST EQ ISZERO PUSH2 0x21D0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x21E4 JUMPI PUSH2 0x21E4 PUSH2 0x3794 JUMP JUMPDEST EQ ISZERO PUSH2 0x2258 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x4 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x226C JUMPI PUSH2 0x226C PUSH2 0x3794 JUMP JUMPDEST EQ ISZERO PUSH2 0xAE2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH2 0x230F DUP4 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP1 AND PUSH2 0x2C1E JUMP JUMPDEST SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x232A JUMPI PUSH2 0x232A PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP5 SWAP2 SWAP4 POP SWAP1 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x238A JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x23A6 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0x8B7 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x23D5 JUMPI PUSH2 0x23D0 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3601 JUMP JUMPDEST PUSH2 0x23DD JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x2415 JUMPI PUSH2 0x2410 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3601 JUMP JUMPDEST PUSH2 0x241D JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP3 PUSH1 0x20 ADD MLOAD SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2468 JUMPI PUSH2 0x2468 PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x24A7 JUMPI PUSH1 0x0 SWAP2 POP DUP4 DUP3 PUSH2 0x232A JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x24D8 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x24F3 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND LT SWAP1 POP PUSH2 0x8B7 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x2522 JUMPI PUSH2 0x251D PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3601 JUMP JUMPDEST PUSH2 0x252A JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x2562 JUMPI PUSH2 0x255D PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3601 JUMP JUMPDEST PUSH2 0x256A JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 LT SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0x25C8 JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0x25E3 JUMP JUMPDEST PUSH1 0x1 PUSH2 0x25D9 PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x35E9 JUMP JUMPDEST PUSH2 0x25E3 SWAP2 SWAP1 PUSH2 0x36B2 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0x25F4 DUP4 DUP6 PUSH2 0x35E9 JUMP JUMPDEST PUSH2 0x25FE SWAP2 SWAP1 PUSH2 0x3647 JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0x2610 DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0x2C48 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2627 JUMPI PUSH2 0x2627 PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0x266F JUMPI PUSH2 0x2667 DUP3 PUSH1 0x1 PUSH2 0x35E9 JUMP JUMPDEST SWAP4 POP POP PUSH2 0x25E8 JUMP JUMPDEST DUP12 PUSH2 0x267F DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0x2C54 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2696 JUMPI PUSH2 0x2696 PUSH2 0x37AA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0x26DB SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0x2360 AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x2704 JUMPI POP PUSH2 0x2704 DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0x2360 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x2710 JUMPI POP POP PUSH2 0x273C JUMP JUMPDEST DUP1 PUSH2 0x2727 JUMPI PUSH2 0x2720 PUSH1 0x1 DUP5 PUSH2 0x36B2 JUMP JUMPDEST SWAP4 POP PUSH2 0x2735 JUMP JUMPDEST PUSH2 0x2732 DUP4 PUSH1 0x1 PUSH2 0x35E9 JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0x25E8 JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x2774 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x278A JUMPI PUSH2 0x2783 DUP4 DUP6 PUSH2 0x36C9 JUMP JUMPDEST SWAP1 POP PUSH2 0x8B7 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x27B9 JUMPI PUSH2 0x27B4 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3601 JUMP JUMPDEST PUSH2 0x27C1 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x27F9 JUMPI PUSH2 0x27F4 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3601 JUMP JUMPDEST PUSH2 0x2801 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH2 0xD7A DUP2 DUP4 PUSH2 0x36B2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2847 DUP4 DUP4 DUP10 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x24AE SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x286B JUMPI PUSH2 0x2864 DUP8 DUP10 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP6 PUSH2 0x2C64 JUMP JUMPDEST SWAP1 POP PUSH2 0x2952 JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x288A JUMPI POP DUP6 PUSH2 0x2952 JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x28A9 JUMPI POP DUP5 PUSH2 0x2952 JUMP JUMPDEST PUSH2 0x28C8 DUP7 PUSH1 0x20 ADD MLOAD DUP4 DUP6 PUSH4 0xFFFFFFFF AND PUSH2 0x24AE SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x28ED JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2952 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x2902 DUP12 DUP9 DUP9 DUP9 DUP15 PUSH1 0x40 ADD MLOAD DUP10 PUSH2 0x257D JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x291B DUP3 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x20 ADD MLOAD DUP8 PUSH2 0x274A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x0 ADD MLOAD DUP4 PUSH1 0x0 ADD MLOAD PUSH2 0x2935 SWAP2 SWAP1 PUSH2 0x368A JUMP JUMPDEST PUSH2 0x293F SWAP2 SWAP1 PUSH2 0x3621 JUMP JUMPDEST SWAP1 POP PUSH2 0x294C DUP4 DUP3 DUP9 PUSH2 0x2C64 JUMP JUMPDEST SWAP4 POP POP POP POP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH2 0x2967 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP1 DUP1 PUSH2 0x29CB DUP5 PUSH2 0x298F DUP8 PUSH2 0x2CDF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1B DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5469636B65742F747761622D6275726E2D6C742D62616C616E63650000000000 DUP2 MSTORE POP TIMESTAMP PUSH2 0x2D62 JUMP JUMPDEST DUP3 MLOAD DUP8 SLOAD PUSH1 0x20 DUP6 ADD MLOAD PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP4 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP3 AND MUL OR DUP8 SSTORE SWAP2 SWAP5 POP SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x2AAB JUMPI PUSH1 0x40 DUP1 MLOAD DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH32 0xDD3E7CD3A260A292B0B3306B2CA62F30A7349619A9D09C58109318774C6B627D SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH2 0x2ABB JUMPI POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x2AED PUSH1 0x7 PUSH2 0x2ACE DUP7 PUSH2 0x2CDF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2C DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x37D7 PUSH1 0x2C SWAP2 CODECOPY TIMESTAMP PUSH2 0x2D62 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x7 DUP1 SLOAD PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x40 DUP8 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP5 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP4 AND MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE SWAP2 SWAP5 POP SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x167F JUMPI PUSH1 0x40 DUP1 MLOAD DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 DUP3 ADD MSTORE PUSH32 0x3375B905D617084FA6B7531688CC8046FEB1F1A0B8BA2273DE03C59D8D84416C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP JUMP JUMPDEST DUP1 PUSH2 0x2BD5 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP1 DUP1 PUSH2 0x29CB DUP5 PUSH2 0x2BFD DUP8 PUSH2 0x2CDF JUMP JUMPDEST TIMESTAMP PUSH2 0x2E26 JUMP JUMPDEST DUP1 PUSH2 0x2C0B JUMPI POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x2AED PUSH1 0x7 PUSH2 0x2BFD DUP7 PUSH2 0x2CDF JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x2C2D JUMPI POP PUSH1 0x0 PUSH2 0x783 JUMP JUMPDEST PUSH2 0x8B7 PUSH1 0x1 PUSH2 0x2C3C DUP5 DUP7 PUSH2 0x35E9 JUMP JUMPDEST PUSH2 0x2C46 SWAP2 SWAP1 PUSH2 0x36B2 JUMP JUMPDEST DUP4 JUMPDEST PUSH1 0x0 PUSH2 0x8B7 DUP3 DUP5 PUSH2 0x3754 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8B7 PUSH2 0x2C46 DUP5 PUSH1 0x1 PUSH2 0x35E9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x2CA2 DUP7 PUSH1 0x20 ADD MLOAD DUP6 DUP7 PUSH4 0xFFFFFFFF AND PUSH2 0x274A SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x2CB2 SWAP1 PUSH4 0xFFFFFFFF AND DUP7 PUSH2 0x365B JUMP JUMPDEST DUP7 MLOAD PUSH2 0x2CBE SWAP2 SWAP1 PUSH2 0x35A9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP3 GT ISZERO PUSH2 0x2D5E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2032 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x3038206269747300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x89B JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP5 DIV DUP2 AND PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x0 SWAP3 DUP8 SWAP2 SWAP1 DUP10 AND GT ISZERO PUSH2 0x2DF8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x89B SWAP2 SWAP1 PUSH2 0x3529 JUMP JUMPDEST POP PUSH2 0x2E07 DUP9 PUSH1 0x1 ADD DUP3 DUP8 PUSH2 0x2ECF JUMP JUMPDEST DUP3 MLOAD SWAP10 SWAP1 SWAP10 SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP3 MSTORE SWAP1 SWAP10 SWAP1 SWAP9 POP SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x2EA2 PUSH1 0x1 DUP9 ADD DUP3 DUP8 PUSH2 0x2ECF JUMP JUMPDEST DUP4 MLOAD SWAP3 SWAP7 POP SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x2EB7 SWAP1 DUP8 SWAP1 PUSH2 0x357E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP5 MSTORE POP SWAP2 SWAP6 SWAP1 SWAP5 POP SWAP1 SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP1 PUSH2 0x2F0D DUP8 DUP8 PUSH2 0x22E0 JUMP JUMPDEST SWAP2 POP POP DUP5 PUSH4 0xFFFFFFFF AND DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x2F36 JUMPI DUP6 SWAP4 POP SWAP2 POP PUSH1 0x0 SWAP1 POP PUSH2 0x2FAD JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F50 DUP3 DUP9 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP9 PUSH2 0x2C64 JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP9 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2F70 JUMPI PUSH2 0x2F70 PUSH2 0x37AA JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE PUSH1 0x0 PUSH2 0x2FA1 DUP9 PUSH2 0x2FB6 JUMP JUMPDEST SWAP6 POP SWAP1 SWAP4 POP PUSH1 0x1 SWAP3 POP POP POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP3 DUP3 ADD MSTORE SWAP1 DUP3 ADD MLOAD PUSH2 0x2FE6 SWAP1 PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP1 PUSH2 0x2C54 JUMP JUMPDEST PUSH3 0xFFFFFF SWAP1 DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD DUP2 AND LT ISZERO PUSH2 0x2D5E JUMPI PUSH1 0x1 DUP3 PUSH1 0x40 ADD DUP2 DUP2 MLOAD PUSH2 0x3012 SWAP2 SWAP1 PUSH2 0x35CB JUMP JUMPDEST PUSH3 0xFFFFFF AND SWAP1 MSTORE POP POP SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x3035 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x304C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3064 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x24A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x3035 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x3035 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x3035 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x30CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x8B7 DUP3 PUSH2 0x301E JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x30EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x30F3 DUP4 PUSH2 0x301E JUMP JUMPDEST SWAP2 POP PUSH2 0x3101 PUSH1 0x20 DUP5 ADD PUSH2 0x301E JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x311F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3128 DUP5 PUSH2 0x301E JUMP JUMPDEST SWAP3 POP PUSH2 0x3136 PUSH1 0x20 DUP6 ADD PUSH2 0x301E JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x3161 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x316A DUP9 PUSH2 0x301E JUMP JUMPDEST SWAP7 POP PUSH2 0x3178 PUSH1 0x20 DUP10 ADD PUSH2 0x301E JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x3194 PUSH1 0x80 DUP10 ADD PUSH2 0x30AB JUMP JUMPDEST SWAP3 POP PUSH1 0xA0 DUP9 ADD CALLDATALOAD SWAP2 POP PUSH1 0xC0 DUP9 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x31C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x31D2 DUP8 PUSH2 0x301E JUMP JUMPDEST SWAP6 POP PUSH2 0x31E0 PUSH1 0x20 DUP9 ADD PUSH2 0x301E JUMP JUMPDEST SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x31F5 PUSH1 0x60 DUP9 ADD PUSH2 0x30AB JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD SWAP2 POP PUSH1 0xA0 DUP8 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3224 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x322D DUP5 PUSH2 0x301E JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3249 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3255 DUP7 DUP3 DUP8 ADD PUSH2 0x303A JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x327A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3283 DUP7 PUSH2 0x301E JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x32A0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x32AC DUP10 DUP4 DUP11 ADD PUSH2 0x303A JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x32C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x32D2 DUP9 DUP3 DUP10 ADD PUSH2 0x303A JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x32F6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x32FF DUP4 PUSH2 0x301E JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x3316 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3334 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x333D DUP4 PUSH2 0x301E JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x335E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3367 DUP4 PUSH2 0x301E JUMP JUMPDEST SWAP2 POP PUSH2 0x3101 PUSH1 0x20 DUP5 ADD PUSH2 0x307F JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x338A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3393 DUP5 PUSH2 0x301E JUMP JUMPDEST SWAP3 POP PUSH2 0x33A1 PUSH1 0x20 DUP6 ADD PUSH2 0x307F JUMP JUMPDEST SWAP2 POP PUSH2 0x33AF PUSH1 0x40 DUP6 ADD PUSH2 0x307F JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x33CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x33D4 DUP4 PUSH2 0x301E JUMP JUMPDEST SWAP2 POP PUSH2 0x3101 PUSH1 0x20 DUP5 ADD PUSH2 0x3093 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x33F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3400 DUP5 PUSH2 0x301E JUMP JUMPDEST SWAP3 POP PUSH2 0x340E PUSH1 0x20 DUP6 ADD PUSH2 0x3093 JUMP JUMPDEST SWAP2 POP PUSH2 0x33AF PUSH1 0x40 DUP6 ADD PUSH2 0x3093 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x342F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3446 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3452 DUP6 DUP3 DUP7 ADD PUSH2 0x303A JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x3474 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x348C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3498 DUP9 DUP4 DUP10 ADD PUSH2 0x303A JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x34B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x34BE DUP8 DUP3 DUP9 ADD PUSH2 0x303A JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x34DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x8B7 DUP3 PUSH2 0x3093 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x351D JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x3501 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3556 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x353A JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x3568 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x35A0 JUMPI PUSH2 0x35A0 PUSH2 0x3768 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x35A0 JUMPI PUSH2 0x35A0 PUSH2 0x3768 JUMP JUMPDEST PUSH1 0x0 PUSH3 0xFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x35A0 JUMPI PUSH2 0x35A0 PUSH2 0x3768 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x35FC JUMPI PUSH2 0x35FC PUSH2 0x3768 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x35A0 JUMPI PUSH2 0x35A0 PUSH2 0x3768 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP5 AND DUP1 PUSH2 0x363B JUMPI PUSH2 0x363B PUSH2 0x377E JUMP JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x3656 JUMPI PUSH2 0x3656 PUSH2 0x377E JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x3681 JUMPI PUSH2 0x3681 PUSH2 0x3768 JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x36AA JUMPI PUSH2 0x36AA PUSH2 0x3768 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x36C4 JUMPI PUSH2 0x36C4 PUSH2 0x3768 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x36AA JUMPI PUSH2 0x36AA PUSH2 0x3768 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x36FA JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1CC3 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x374D JUMPI PUSH2 0x374D PUSH2 0x3768 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x3763 JUMPI PUSH2 0x3763 PUSH2 0x377E JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID SLOAD PUSH10 0x636B65742F6275726E2D PUSH2 0x6D6F PUSH22 0x6E742D657863656564732D746F74616C2D737570706C PUSH26 0x2D74776162A26469706673582212202772A0F14C2449C0F6AD1D PUSH3 0x98AA78 STATICCALL MOD PUSH8 0xF14FFA07C5A4155E 0xF8 0xD9 0x29 GASLIMIT 0xDD SWAP8 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "145:1775:77:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4181:166;;;;;;:::i;:::-;;:::i;:::-;;;9086:14:84;;9079:22;9061:41;;9049:2;9034:18;4181:166:1;9016:92:84;1184:268:77;;;;;;:::i;:::-;;:::i;:::-;;;9259:25:84;;;9247:2;9232:18;1184:268:77;9214:76:84;3172:106:1;3259:12;;3172:106;;4814:478;;;;;;:::i;:::-;;:::i;2268:189:36:-;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:16:36;;;;;;:9;:16;;;;;;2419:31;;;;;;;;-1:-1:-1;;;;;2419:31:36;;;;;-1:-1:-1;;;2419:31:36;;;;;;;;;;;-1:-1:-1;;;2419:31:36;;;;;;;;2268:189;;;;;20452:13:84;;-1:-1:-1;;;;;20448:74:84;20430:93;;20570:4;20558:17;;;20552:24;20595:8;20641:21;;;20619:20;;;20612:51;;;;20711:17;;;20705:24;20701:33;;;20679:20;;;20672:63;20418:2;20403:18;2268:189:36;20385:356:84;4962:307:36;;;;;;:::i;:::-;;:::i;3868:98:28:-;;;21494:4:84;3950:9:28;21482:17:84;21464:36;;21452:2;21437:18;3868:98:28;21419:87:84;1458:460:77;;;;;;:::i;:::-;;:::i;6114:130:36:-;;;;;;:::i;:::-;;:::i;:::-;;2426:113:4;;;:::i;2491:204:36:-;;;;;;:::i;:::-;;:::i;:::-;;;;20974:13:84;;-1:-1:-1;;;;;20970:78:84;20952:97;;21109:4;21097:17;;;21091:24;21117:10;21087:41;21065:20;;;21058:71;;;;20925:18;2491:204:36;20907:228:84;5687:212:1;;;;;;:::i;:::-;;:::i;632:89:77:-;;;;;;:::i;:::-;;:::i;727:123::-;;;;;;:::i;:::-;;:::i;6951:100:36:-;;;;;;:::i;:::-;;:::i;2328:171:28:-;;;;;;:::i;:::-;;:::i;4247:681:36:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3357:312:28:-;;;;;;:::i;:::-;;:::i;3126:282:36:-;;;;;;:::i;:::-;;:::i;3336:125:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3436:18:1;3410:7;3436:18;;;;;;;;;;;;3336:125;2176:126:4;;;;;;:::i;:::-;;:::i;5303:627:36:-;;;;;;:::i;:::-;;:::i;5964:116::-;;;;;;:::i;:::-;-1:-1:-1;;;;;6057:16:36;;;6031:7;6057:16;;;:9;:16;;;;;;;;5964:116;;;;-1:-1:-1;;;;;8217:55:84;;;8199:74;;8187:2;8172:18;5964:116:36;8154:125:84;3442:263:36;;;;;;:::i;:::-;;:::i;2774:171:28:-;;;;;;:::i;:::-;;:::i;6278:639:36:-;;;;;;:::i;:::-;;:::i;2295:102:1:-;;;:::i;3739:474:36:-;;;;;;:::i;404:123:77:-;;;;;;:::i;:::-;;:::i;533:93::-;;;;;;:::i;:::-;;:::i;2729:363:36:-;;;;;;:::i;6386:405:1:-;;;;;;:::i;:::-;;:::i;1009:169:77:-;;;;;;:::i;:::-;;:::i;3664:172:1:-;;;;;;:::i;:::-;;:::i;1489:626:4:-;;;;;;:::i;:::-;;:::i;3894:149:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4009:18:1;;;3983:7;4009:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3894:149;540:44:28;;;;;2084:98:1;2138:13;2170:5;2163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98;:::o;4181:166::-;4264:4;4280:39;666:10:12;4303:7:1;4312:6;4280:8;:39::i;:::-;-1:-1:-1;4336:4:1;4181:166;;;;;:::o;1184:268:77:-;-1:-1:-1;;;;;1313:16:77;;1260:7;1313:16;;;:9;:16;;;;;;;;1359:86;;;;;;;;;-1:-1:-1;;;;;1359:86:77;;;;;-1:-1:-1;;;1359:86:77;;;;;;;;;;;-1:-1:-1;;;1359:86:77;;;;;;;;;;;;1313:16;1359:86;;1380:13;;;;1412:7;1428:15;1359:20;:86::i;:::-;1340:105;1184:268;-1:-1:-1;;;;1184:268:77:o;4814:478:1:-;4950:4;4966:36;4976:6;4984:9;4995:6;4966:9;:36::i;:::-;-1:-1:-1;;;;;5040:19:1;;5013:24;5040:19;;;:11;:19;;;;;;;;666:10:12;5040:33:1;;;;;;;;5091:26;;;;5083:79;;;;-1:-1:-1;;;5083:79:1;;16866:2:84;5083:79:1;;;16848:21:84;16905:2;16885:18;;;16878:30;16944:34;16924:18;;;16917:62;17015:10;16995:18;;;16988:38;17043:19;;5083:79:1;;;;;;;;;5196:57;5205:6;666:10:12;5246:6:1;5227:16;:25;5196:8;:57::i;:::-;5281:4;5274:11;;;4814:478;;;;;;:::o;4962:307:36:-;5074:188;;;;;;;;5112:15;5074:188;-1:-1:-1;;;;;5074:188:36;;;;;-1:-1:-1;;;5074:188:36;;;;;;;;-1:-1:-1;;;5074:188:36;;;;;;;;;;;5036:7;;5074:188;;5112:21;;5199:7;5232:15;5074:20;:188::i;1458:460:77:-;-1:-1:-1;;;;;1644:16:77;;1591:7;1644:16;;;:9;:16;;;;;;;;1690:221;;;;;;;;;-1:-1:-1;;;;;1690:221:77;;;;;-1:-1:-1;;;1690:221:77;;;;;;;;;;;-1:-1:-1;;;1690:221:77;;;;;;;;;;;;1644:16;1690:221;;1740:13;;;;1811:10;1847:8;1881:15;1690:32;:221::i;:::-;1671:240;1458:460;-1:-1:-1;;;;;1458:460:77:o;6114:130:36:-;1039:10:28;-1:-1:-1;;;;;1061:10:28;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:28;;19294:2:84;1031:77:28;;;19276:21:84;19333:2;19313:18;;;19306:30;19372:33;19352:18;;;19345:61;19423:18;;1031:77:28;19266:181:84;1031:77:28;6216:21:36::1;6226:5;6233:3;6216:9;:21::i;:::-;6114:130:::0;;:::o;2426:113:4:-;2486:7;2512:20;:18;:20::i;:::-;2505:27;;2426:113;:::o;2491:204:36:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;2658:16:36;;;;;;:9;:16;;;;;:22;;:30;;;;;;;;;;:::i;:::-;2651:37;;;;;;;;;2658:30;;2651:37;-1:-1:-1;;;;;2651:37:36;;;;-1:-1:-1;;;2651:37:36;;;;;;;;;2491:204;-1:-1:-1;;;2491:204:36:o;5687:212:1:-;666:10:12;5775:4:1;5823:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5823:34:1;;;;;;;;;;5775:4;;5791:80;;5814:7;;5823:47;;5860:10;;5823:47;:::i;:::-;5791:8;:80::i;632:89:77:-;695:19;701:3;706:7;695:5;:19::i;727:123::-;795:19;801:3;806:7;795:5;:19::i;6951:100:36:-;7018:26;7028:10;7040:3;7018:9;:26::i;:::-;6951:100;:::o;2328:171:28:-;1039:10;-1:-1:-1;;;;;1061:10:28;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:28;;19294:2:84;1031:77:28;;;19276:21:84;19333:2;19313:18;;;19306:30;19372:33;19352:18;;;19345:61;19423:18;;1031:77:28;19266:181:84;4247:681:36;4377:16;4426:8;4409:14;4426:8;4480:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4480:21:36;-1:-1:-1;;;;;;4550:16:36;;4512:35;4550:16;;;:9;:16;;;;;;;;4576:59;;;;;;;;;-1:-1:-1;;;;;4576:59:36;;;;;-1:-1:-1;;;4576:59:36;;;;;;;;;;;-1:-1:-1;;;4576:59:36;;;;;;;;;;;;4451:50;;-1:-1:-1;4576:59:36;4646:249;4670:6;4666:1;:10;4646:249;;;4712:172;4750:11;:17;;4785:7;4817:8;;4826:1;4817:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4854:15;4712:20;:172::i;:::-;4697:9;4707:1;4697:12;;;;;;;;:::i;:::-;;;;;;;;;;:187;4678:3;;;;:::i;:::-;;;;4646:249;;;-1:-1:-1;4912:9:36;;4247:681;-1:-1:-1;;;;;;;4247:681:36:o;3357:312:28:-;1039:10;-1:-1:-1;;;;;1061:10:28;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:28;;19294:2:84;1031:77:28;;;19276:21:84;19333:2;19313:18;;;19306:30;19372:33;19352:18;;;19345:61;19423:18;;1031:77:28;19266:181:84;1031:77:28;3534:5:::1;-1:-1:-1::0;;;;;3521:18:28::1;:9;-1:-1:-1::0;;;;;3521:18:28::1;;3517:114;;-1:-1:-1::0;;;;;4009:18:1;;;3983:7;4009:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;3555:65:28::1;::::0;4009:18:1;;:27;;3582:37:28::1;::::0;3612:7;;3582:37:::1;:::i;3555:65::-;3641:21;3647:5;3654:7;3641:5;:21::i;:::-;3357:312:::0;;;:::o;3126:282:36:-;-1:-1:-1;;;;;3360:16:36;;;;;;:9;:16;;;;;3298;;3333:68;;3378:11;;3391:9;;3333:26;:68::i;:::-;3326:75;3126:282;-1:-1:-1;;;;;;3126:282:36:o;2176:126:4:-;-1:-1:-1;;;;;2271:14:4;;2245:7;2271:14;;;:7;:14;;;;;864::13;2271:24:4;773:112:13;5303:627:36;5423:16;5472:8;5455:14;5472:8;5530:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5530:21:36;-1:-1:-1;5562:63:36;;;;;;;;5602:15;5562:63;-1:-1:-1;;;;;5562:63:36;;;;;-1:-1:-1;;;5562:63:36;;;;;;;;-1:-1:-1;;;5562:63:36;;;;;;;;;;;5497:54;;-1:-1:-1;5562:37:36;5636:257;5660:6;5656:1;:10;5636:257;;;5706:176;5744:21;5783:7;5815:8;;5824:1;5815:11;;;;;;;:::i;5706:176::-;5687:13;5701:1;5687:16;;;;;;;;:::i;:::-;;;;;;;;;;:195;5668:3;;;;:::i;:::-;;;;5636:257;;;-1:-1:-1;5910:13:36;;5303:627;-1:-1:-1;;;;;5303:627:36:o;3442:263::-;3596:16;3631:67;3658:15;3675:11;;3688:9;;3631:26;:67::i;2774:171:28:-;1039:10;-1:-1:-1;;;;;1061:10:28;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:28;;19294:2:84;1031:77:28;;;19276:21:84;19333:2;19313:18;;;19306:30;19372:33;19352:18;;;19345:61;19423:18;;1031:77:28;19266:181:84;1031:77:28;2917:21:::1;2923:5;2930:7;2917:5;:21::i;6278:639:36:-:0;6516:9;6497:15;:28;;6489:73;;;;-1:-1:-1;;;6489:73:36;;14167:2:84;6489:73:36;;;14149:21:84;;;14186:18;;;14179:30;14245:34;14225:18;;;14218:62;14297:18;;6489:73:36;14139:182:84;6489:73:36;6573:18;6615;6635:5;6642:12;6656:16;6666:5;6656:9;:16::i;:::-;6604:80;;;;;;9554:25:84;;;;-1:-1:-1;;;;;9676:15:84;;;9656:18;;;9649:43;9728:15;;9708:18;;;9701:43;9760:18;;;9753:34;9803:19;;;9796:35;;;9526:19;;6604:80:36;;;;;;;;;;;;6594:91;;;;;;6573:112;;6696:12;6711:28;6728:10;6711:16;:28::i;:::-;6696:43;;6750:14;6767:31;6781:4;6787:2;6791;6795;6767:13;:31::i;:::-;6750:48;;6826:5;-1:-1:-1;;;;;6816:15:36;:6;-1:-1:-1;;;;;6816:15:36;;6808:61;;;;-1:-1:-1;;;6808:61:36;;18892:2:84;6808:61:36;;;18874:21:84;18931:2;18911:18;;;18904:30;18970:34;18950:18;;;18943:62;19041:3;19021:18;;;19014:31;19062:19;;6808:61:36;18864:223:84;6808:61:36;6880:30;6890:5;6897:12;6880:9;:30::i;:::-;6479:438;;;6278:639;;;;;;:::o;2295:102:1:-;2351:13;2383:7;2376:14;;;;;:::i;404:123:77:-;472:19;478:3;483:7;472:5;:19::i;6386:405:1:-;666:10:12;6479:4:1;6522:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6522:34:1;;;;;;;;;;6574:35;;;;6566:85;;;;-1:-1:-1;;;6566:85:1;;19654:2:84;6566:85:1;;;19636:21:84;19693:2;19673:18;;;19666:30;19732:34;19712:18;;;19705:62;19803:7;19783:18;;;19776:35;19828:19;;6566:85:1;19626:227:84;6566:85:1;6685:67;666:10:12;6708:7:1;6736:15;6717:16;:34;6685:8;:67::i;:::-;-1:-1:-1;6780:4:1;;6386:405;-1:-1:-1;;;6386:405:1:o;1009:169:77:-;1132:39;1142:7;1151:10;1163:7;1132:9;:39::i;3664:172:1:-;3750:4;3766:42;666:10:12;3790:9:1;3801:6;3766:9;:42::i;1489:626:4:-;1724:8;1705:15;:27;;1697:69;;;;-1:-1:-1;;;1697:69:4;;14528:2:84;1697:69:4;;;14510:21:84;14567:2;14547:18;;;14540:30;14606:31;14586:18;;;14579:59;14655:18;;1697:69:4;14500:179:84;1697:69:4;1777:18;1819:16;1837:5;1844:7;1853:5;1860:16;1870:5;1860:9;:16::i;:::-;1808:79;;;;;;10129:25:84;;;;-1:-1:-1;;;;;10251:15:84;;;10231:18;;;10224:43;10303:15;;;;10283:18;;;10276:43;10335:18;;;10328:34;10378:19;;;10371:35;10422:19;;;10415:35;;;10101:19;;1808:79:4;;;;;;;;;;;;1798:90;;;;;;1777:111;;1899:12;1914:28;1931:10;1914:16;:28::i;:::-;1899:43;;1953:14;1970:28;1984:4;1990:1;1993;1996;1970:13;:28::i;:::-;1953:45;;2026:5;-1:-1:-1;;;;;2016:15:4;:6;-1:-1:-1;;;;;2016:15:4;;2008:58;;;;-1:-1:-1;;;2008:58:4;;16507:2:84;2008:58:4;;;16489:21:84;16546:2;16526:18;;;16519:30;16585:32;16565:18;;;16558:60;16635:18;;2008:58:4;16479:180:84;2008:58:4;2077:31;2086:5;2093:7;2102:5;2077:8;:31::i;:::-;1687:428;;;1489:626;;;;;;;:::o;9962:370:1:-;-1:-1:-1;;;;;10093:19:1;;10085:68;;;;-1:-1:-1;;;10085:68:1;;18487:2:84;10085:68:1;;;18469:21:84;18526:2;18506:18;;;18499:30;18565:34;18545:18;;;18538:62;18636:6;18616:18;;;18609:34;18660:19;;10085:68:1;18459:226:84;10085:68:1;-1:-1:-1;;;;;10171:21:1;;10163:68;;;;-1:-1:-1;;;10163:68:1;;13764:2:84;10163:68:1;;;13746:21:84;13803:2;13783:18;;;13776:30;13842:34;13822:18;;;13815:62;13913:4;13893:18;;;13886:32;13935:19;;10163:68:1;13736:224:84;10163:68:1;-1:-1:-1;;;;;10242:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10293:32;;9259:25:84;;;10293:32:1;;9232:18:84;10293:32:1;;;;;;;9962:370;;;:::o;8039:409:57:-;8262:7;8281:19;8317:12;8303:26;;:11;:26;;;:55;;8347:11;8303:55;;;8332:12;8303:55;8281:77;;8375:66;8389:6;8397:15;8414:12;8428;8375:13;:66::i;7265:713:1:-;-1:-1:-1;;;;;7400:20:1;;7392:70;;;;-1:-1:-1;;;7392:70:1;;17677:2:84;7392:70:1;;;17659:21:84;17716:2;17696:18;;;17689:30;17755:34;17735:18;;;17728:62;17826:7;17806:18;;;17799:35;17851:19;;7392:70:1;17649:227:84;7392:70:1;-1:-1:-1;;;;;7480:23:1;;7472:71;;;;-1:-1:-1;;;7472:71:1;;12597:2:84;7472:71:1;;;12579:21:84;12636:2;12616:18;;;12609:30;12675:34;12655:18;;;12648:62;12746:5;12726:18;;;12719:33;12769:19;;7472:71:1;12569:225:84;7472:71:1;7554:47;7575:6;7583:9;7594:6;7554:20;:47::i;:::-;-1:-1:-1;;;;;7636:17:1;;7612:21;7636:17;;;;;;;;;;;7671:23;;;;7663:74;;;;-1:-1:-1;;;7663:74:1;;14886:2:84;7663:74:1;;;14868:21:84;14925:2;14905:18;;;14898:30;14964:34;14944:18;;;14937:62;15035:8;15015:18;;;15008:36;15061:19;;7663:74:1;14858:228:84;7663:74:1;-1:-1:-1;;;;;7771:17:1;;;:9;:17;;;;;;;;;;;7791:22;;;7771:42;;7833:20;;;;;;;;:30;;7807:6;;7771:9;7833:30;;7807:6;;7833:30;:::i;:::-;;;;;;;;7896:9;-1:-1:-1;;;;;7879:35:1;7888:6;-1:-1:-1;;;;;7879:35:1;;7907:6;7879:35;;;;9259:25:84;;9247:2;9232:18;;9214:76;7879:35:1;;;;;;;;7925:46;7382:596;7265:713;;;:::o;5892:466:57:-;6151:7;6170:14;6198:12;6187:23;;:8;:23;;;:49;;6228:8;6187:49;;;6213:12;6187:49;6170:66;;6266:85;6292:6;6300:15;6317:10;6329:7;6338:12;6266:25;:85::i;:::-;6247:104;5892:466;-1:-1:-1;;;;;;;5892:466:57:o;7205:353:36:-;-1:-1:-1;;;;;3436:18:1;;;7271:15:36;3436:18:1;;;;;;;;;;;;7341:9:36;:16;;;;;;;3436:18:1;;7341:16:36;;;;7372:22;;;;7368:59;;;7410:7;;7205:353;;:::o;7368:59::-;-1:-1:-1;;;;;7437:16:36;;;;;;;:9;:16;;;;;:22;;;;;;;;;;;;;7470:44;7484:15;7437:22;7506:7;7470:13;:44::i;:::-;7547:3;-1:-1:-1;;;;;7530:21:36;7540:5;-1:-1:-1;;;;;7530:21:36;;;;;;;;;;;7261:297;;7205:353;;:::o;2990:275:16:-;3043:7;3083:16;3066:13;:33;3062:197;;;-1:-1:-1;3122:24:16;;2990:275::o;3062:197::-;-1:-1:-1;3447:73:16;;;3206:10;3447:73;;;;10720:25:84;;;;3218:12:16;10761:18:84;;;10754:34;3232:15:16;10804:18:84;;;10797:34;3491:13:16;10847:18:84;;;10840:34;3514:4:16;10890:19:84;;;;10883:84;;;;3447:73:16;;;;;;;;;;10692:19:84;;;;3447:73:16;;;3437:84;;;;;;2426:113:4:o;8254:389:1:-;-1:-1:-1;;;;;8337:21:1;;8329:65;;;;-1:-1:-1;;;8329:65:1;;20060:2:84;8329:65:1;;;20042:21:84;20099:2;20079:18;;;20072:30;20138:33;20118:18;;;20111:61;20189:18;;8329:65:1;20032:181:84;8329:65:1;8405:49;8434:1;8438:7;8447:6;8405:20;:49::i;:::-;8481:6;8465:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8497:18:1;;:9;:18;;;;;;;;;;:28;;8519:6;;8497:9;:28;;8519:6;;8497:28;:::i;:::-;;;;-1:-1:-1;;8540:37:1;;9259:25:84;;;-1:-1:-1;;;;;8540:37:1;;;8557:1;;8540:37;;9247:2:84;9232:18;8540:37:1;;;;;;;6114:130:36;;:::o;8963:576:1:-;-1:-1:-1;;;;;9046:21:1;;9038:67;;;;-1:-1:-1;;;9038:67:1;;17275:2:84;9038:67:1;;;17257:21:84;17314:2;17294:18;;;17287:30;17353:34;17333:18;;;17326:62;17424:3;17404:18;;;17397:31;17445:19;;9038:67:1;17247:223:84;9038:67:1;9116:49;9137:7;9154:1;9158:6;9116:20;:49::i;:::-;-1:-1:-1;;;;;9201:18:1;;9176:22;9201:18;;;;;;;;;;;9237:24;;;;9229:71;;;;-1:-1:-1;;;9229:71:1;;13001:2:84;9229:71:1;;;12983:21:84;13040:2;13020:18;;;13013:30;13079:34;13059:18;;;13052:62;13150:4;13130:18;;;13123:32;13172:19;;9229:71:1;12973:224:84;9229:71:1;-1:-1:-1;;;;;9334:18:1;;:9;:18;;;;;;;;;;9355:23;;;9334:44;;9398:12;:22;;9372:6;;9334:9;9398:22;;9372:6;;9398:22;:::i;:::-;;;;-1:-1:-1;;9436:37:1;;9259:25:84;;;9462:1:1;;-1:-1:-1;;;;;9436:37:1;;;;;9247:2:84;9232:18;9436:37:1;;;;;;;3357:312:28;;;:::o;7972:925:36:-;8155:16;8210:11;8246:36;;;8238:84;;;;-1:-1:-1;;;8238:84:36;;18083:2:84;8238:84:36;;;18065:21:84;18122:2;18102:18;;;18095:30;18161:34;18141:18;;;18134:62;18232:5;18212:18;;;18205:33;18255:19;;8238:84:36;18055:225:84;8238:84:36;8333:63;;;;;;;;;;-1:-1:-1;;;;;8333:63:36;;;;;-1:-1:-1;;;8333:63:36;;;;;;;;-1:-1:-1;;;8333:63:36;;;;;;;;;;;:44;8456:16;8442:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8442:31:36;-1:-1:-1;8407:66:36;-1:-1:-1;8516:15:36;8483:23;8543:315;8567:16;8563:1;:20;8543:315;;;8625:222;8675:8;:14;;8707;8746:11;;8758:1;8746:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;8786:9;;8796:1;8786:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;8817:16;8625:32;:222::i;:::-;8604:15;8620:1;8604:18;;;;;;;;:::i;:::-;;;;;;;;;;:243;8585:3;;;;:::i;:::-;;;;8543:315;;;-1:-1:-1;8875:15:36;;7972:925;-1:-1:-1;;;;;;;;;7972:925:36:o;2670:203:4:-;-1:-1:-1;;;;;2790:14:4;;2730:15;2790:14;;;:7;:14;;;;;864::13;;996:1;978:19;;;;864:14;2849:17:4;2747:126;2670:203;;;:::o;4153:165:16:-;4230:7;4256:55;4278:20;:18;:20::i;:::-;4300:10;8683:57:15;;7874:66:84;8683:57:15;;;7862:79:84;7957:11;;;7950:27;;;7993:12;;;7986:28;;;8647:7:15;;8030:12:84;;8683:57:15;;;;;;;;;;;;8673:68;;;;;;8666:75;;8554:194;;;;;7390:270;7513:7;7533:17;7552:18;7574:25;7585:4;7591:1;7594;7597;7574:10;:25::i;:::-;7532:67;;;;7609:18;7621:5;7609:11;:18::i;:::-;-1:-1:-1;7644:9:15;7390:270;-1:-1:-1;;;;;7390:270:15:o;10681:1769:57:-;-1:-1:-1;;;;;;;;;10904:7:57;-1:-1:-1;;;;;;;;;10904:7:57;;;-1:-1:-1;;;;;;;;;;;;;;;;;11094:35:57;11105:6;11113:15;11094:10;:35::i;:::-;11255:20;;;;11062:67;;-1:-1:-1;11062:67:57;-1:-1:-1;11255:51:57;;:24;;;;;11280:11;;11293:12;;11255:24;:51;:::i;:::-;11251:112;;;-1:-1:-1;;11329:23:57;;-1:-1:-1;;;;;11322:30:57;;-1:-1:-1;11322:30:57;;-1:-1:-1;11322:30:57;11251:112;11373:22;11483:35;11494:6;11502:15;11483:10;:35::i;:::-;11639:20;;;;11451:67;;-1:-1:-1;11451:67:57;;-1:-1:-1;11624:50:57;;:14;;;;;11639:20;11661:12;;11624:14;:50;:::i;:::-;11620:89;;;11697:1;11690:8;;;;;;;;11620:89;11797:207;11838:6;11858:15;11887;11916:11;11941:15;:27;;;11982:12;11797:27;:207::i;:::-;11771:233;;;;;;;;12350:93;12387:9;:19;;;12408:10;:20;;;12430:12;12350:36;:93::i;:::-;12309:134;;12329:10;:17;;;12310:9;:16;;;:36;;;;:::i;:::-;12309:134;;;;:::i;:::-;-1:-1:-1;;;;;12290:153:57;;10681:1769;-1:-1:-1;;;;;;;;;10681:1769:57:o;8928:457:36:-;9044:3;-1:-1:-1;;;;;9035:12:36;:5;-1:-1:-1;;;;;9035:12:36;;9031:49;;;8928:457;;;:::o;9031:49::-;9090:21;-1:-1:-1;;;;;9125:19:36;;;9121:82;;-1:-1:-1;;;;;;9176:16:36;;;;;;;:9;:16;;;;;;;9121:82;9213:19;-1:-1:-1;;;;;9246:17:36;;;9242:76;;-1:-1:-1;;;;;;9293:14:36;;;;;;;:9;:14;;;;;;;9242:76;9328:50;9342:13;9357:11;9370:7;9328:13;:50::i;:::-;9021:364;;8928:457;;;:::o;8734:1315:57:-;8993:7;9013:22;9037:41;9082:69;9106:6;9126:15;9082:10;:69::i;:::-;9012:139;;;;9163:22;9187:41;9232:69;9256:6;9276:15;9232:10;:69::i;:::-;9162:139;;;;9312:43;9358:223;9386:6;9406:15;9435:7;9456;9477:15;9506;9535:10;9559:12;9358:14;:223::i;:::-;9312:269;;9592:41;9636:221;9664:6;9684:15;9713:7;9734;9755:15;9784;9813:8;9835:12;9636:14;:221::i;:::-;9592:265;;9952:90;9989:7;:17;;;10008:9;:19;;;10029:12;9952:36;:90::i;:::-;9914:128;;9932:9;:16;;;9915:7;:14;;;:33;;;;:::i;:::-;9914:128;;;;:::i;:::-;-1:-1:-1;;;;;9907:135:57;;8734:1315;-1:-1:-1;;;;;;;;;;;;8734:1315:57:o;9717:657:36:-;-1:-1:-1;;;;;9900:19:36;;;9896:186;;9935:33;9953:5;9960:7;9935:17;:33::i;:::-;-1:-1:-1;;;;;9987:17:36;;9983:89;;10024:33;10049:7;10024:24;:33::i;:::-;-1:-1:-1;;;;;10188:17:36;;;10184:184;;10221:31;10239:3;10244:7;10221:17;:31::i;:::-;-1:-1:-1;;;;;10271:19:36;;10267:91;;10310:33;10335:7;10310:24;:33::i;5654:1603:15:-;5780:7;;6704:66;6691:79;;6687:161;;;-1:-1:-1;6802:1:15;;-1:-1:-1;6806:30:15;6786:51;;6687:161;6861:1;:7;;6866:2;6861:7;;:18;;;;;6872:1;:7;;6877:2;6872:7;;6861:18;6857:100;;;-1:-1:-1;6911:1:15;;-1:-1:-1;6915:30:15;6895:51;;6857:100;7068:24;;;7051:14;7068:24;;;;;;;;;11205:25:84;;;11278:4;11266:17;;11246:18;;;11239:45;;;;11300:18;;;11293:34;;;11343:18;;;11336:34;;;7068:24:15;;11177:19:84;;7068:24:15;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7068:24:15;;-1:-1:-1;;7068:24:15;;;-1:-1:-1;;;;;;;7106:20:15;;7102:101;;7158:1;7162:29;7142:50;;;;;;;7102:101;7221:6;-1:-1:-1;7229:20:15;;-1:-1:-1;5654:1603:15;;;;;;;;:::o;443:631::-;520:20;511:5;:29;;;;;;;;:::i;:::-;;507:561;;;443:631;:::o;507:561::-;616:29;607:5;:38;;;;;;;;:::i;:::-;;603:465;;;661:34;;-1:-1:-1;;;661:34:15;;12244:2:84;661:34:15;;;12226:21:84;12283:2;12263:18;;;12256:30;12322:26;12302:18;;;12295:54;12366:18;;661:34:15;12216:174:84;603:465:15;725:35;716:5;:44;;;;;;;;:::i;:::-;;712:356;;;776:41;;-1:-1:-1;;;776:41:15;;13404:2:84;776:41:15;;;13386:21:84;13443:2;13423:18;;;13416:30;13482:33;13462:18;;;13455:61;13533:18;;776:41:15;13376:181:84;712:356:15;847:30;838:5;:39;;;;;;;;:::i;:::-;;834:234;;;893:44;;-1:-1:-1;;;893:44:15;;15701:2:84;893:44:15;;;15683:21:84;15740:2;15720:18;;;15713:30;15779:34;15759:18;;;15752:62;15850:4;15830:18;;;15823:32;15872:19;;893:44:15;15673:224:84;834:234:15;967:30;958:5;:39;;;;;;;;:::i;:::-;;954:114;;;1013:44;;-1:-1:-1;;;1013:44:15;;16104:2:84;1013:44:15;;;16086:21:84;16143:2;16123:18;;;16116:30;16182:34;16162:18;;;16155:62;16253:4;16233:18;;;16226:32;16275:19;;1013:44:15;16076:224:84;7383:354:57;-1:-1:-1;;;;;;;;;7547:12:57;-1:-1:-1;;;;;;;;;7547:12:57;7626:73;7652:15;:29;;;7626:73;;2065:8;7626:73;;:25;:73::i;:::-;7611:89;;7717:6;7724:5;7717:13;;;;;;;;;:::i;:::-;7710:20;;;;;;;;;7717:13;;7710:20;-1:-1:-1;;;;;7710:20:57;;;;-1:-1:-1;;;7710:20:57;;;;;;;;7383:354;;7710:20;;-1:-1:-1;7383:354:57;;-1:-1:-1;;7383:354:57:o;1658:417:55:-;1765:4;1854:10;1848:16;;:2;:16;;;;:36;;;;;1874:10;1868:16;;:2;:16;;;;1848:36;1844:57;;;1899:2;1893:8;;:2;:8;;;;1886:15;;;;1844:57;1912:17;1937:10;1932:15;;:2;:15;;;:33;;1955:10;;;;1960:5;1955:10;:::i;:::-;1932:33;;;1950:2;1932:33;;;1912:53;;;;1975:17;2000:10;1995:15;;:2;:15;;;:33;;2018:10;;;;2023:5;2018:10;:::i;:::-;1995:33;;;2013:2;1995:33;;;1975:53;;2046:22;;;;;1658:417;-1:-1:-1;;;;;1658:417:55:o;6618:505:57:-;-1:-1:-1;;;;;;;;;6782:12:57;-1:-1:-1;;;;;;;;;6782:12:57;6854:15;:29;;;6846:37;;6900:6;6907:5;6900:13;;;;;;;;;:::i;:::-;6893:20;;;;;;;;;6900:13;;6893:20;-1:-1:-1;;;;;6893:20:57;;;;-1:-1:-1;;;6893:20:57;;;;;;;;;;;;-1:-1:-1;7028:89:57;;7075:1;;-1:-1:-1;7097:6:57;7075:1;7097:9;;7028:89;6618:505;;;;;:::o;811:413:55:-;917:4;1005:10;999:16;;:2;:16;;;;:36;;;;;1025:10;1019:16;;:2;:16;;;;999:36;995:56;;;1049:2;1044:7;;:2;:7;;;1037:14;;;;995:56;1062:17;1087:10;1082:15;;:2;:15;;;:33;;1105:10;;;;1110:5;1105:10;:::i;:::-;1082:33;;;1100:2;1082:33;;;1062:53;;;;1125:17;1150:10;1145:15;;:2;:15;;;:33;;1168:10;;;;1173:5;1168:10;:::i;:::-;1145:33;;;1163:2;1145:33;;;1125:53;;1196:21;;;;811:413;-1:-1:-1;;;;;811:413:55:o;2382:2006:54:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2719:16:54;2738:23;2719:42;;;;2771:17;2817:8;2791:23;:34;;;:114;;2882:23;2791:114;;;;;2866:1;2840:23;;;;:8;:23;:::i;:::-;:27;;;;:::i;:::-;2771:134;;2915:20;2946:1436;3237:1;3213:20;3224:9;3213:8;:20;:::i;:::-;3212:26;;;;:::i;:::-;3197:41;;3266:13;3287:46;3306:12;3320;3287:46;;:18;:46::i;:::-;3266:69;;;;;;;;;:::i;:::-;3253:82;;;;;;;;;3266:69;;3253:82;-1:-1:-1;;;;;3253:82:54;;;;-1:-1:-1;;;3253:82:54;;;;;;;;;;;;-1:-1:-1;3253:82:54;3511:116;;3570:16;:12;3585:1;3570:16;:::i;:::-;3559:27;;3604:8;;;3511:116;3653:13;3674:51;3698:12;3712;3674:51;;:23;:51::i;:::-;3653:74;;;;;;;;;:::i;:::-;3641:86;;;;;;;;;3653:74;;3641:86;-1:-1:-1;;;;;3641:86:54;;;;;-1:-1:-1;;;3641:86:54;;;;;;;;;;;-1:-1:-1;;;3765:39:54;;:23;;;;3789:7;;3798:5;;3765:23;:39;:::i;:::-;3742:62;;3890:15;:58;;;;;3909:39;3921:9;:19;;;3942:5;3909:7;:11;;;;:39;;;;;:::i;:::-;3886:102;;;3968:5;;;;3886:102;4138:15;4133:239;;4185:16;4200:1;4185:12;:16;:::i;:::-;4173:28;;4133:239;;;4341:16;:12;4356:1;4341:16;:::i;:::-;4330:27;;4133:239;2959:1423;;2946:1436;;;2709:1679;;;2382:2006;;;;;;;;;:::o;2486:432:55:-;2600:6;2691:10;2685:16;;:2;:16;;;;:36;;;;;2711:10;2705:16;;:2;:16;;;;2685:36;2681:56;;;2730:7;2735:2;2730;:7;:::i;:::-;2723:14;;;;2681:56;2748:17;2773:10;2768:15;;:2;:15;;;:33;;2791:10;;;;2796:5;2791:10;:::i;:::-;2768:33;;;2786:2;2768:33;;;2748:53;;;;2811:17;2836:10;2831:15;;:2;:15;;;:33;;2854:10;;;;2859:5;2854:10;:::i;:::-;2831:33;;;2849:2;2831:33;;;2811:53;;;-1:-1:-1;2889:21:55;2811:53;2889:9;:21;:::i;13740:1898:57:-;-1:-1:-1;;;;;;;;;;;;;;;;;14287:49:57;14312:16;14330:5;14287:11;:21;;;:24;;;;:49;;;;;:::i;:::-;14283:159;;;14359:72;14376:11;14389:15;:23;;;-1:-1:-1;;;;;14359:72:57;14414:16;14359;:72::i;:::-;14352:79;;;;14283:159;14481:16;14456:41;;:11;:21;;;:41;;;14452:90;;;-1:-1:-1;14520:11:57;14513:18;;14452:90;14581:16;14556:41;;:11;:21;;;:41;;;14552:90;;;-1:-1:-1;14620:11:57;14613:18;;14552:90;14754:49;14774:11;:21;;;14797:5;14754:16;:19;;;;:49;;;;;:::i;:::-;14750:157;;;-1:-1:-1;14826:70:57;;;;;;;;;-1:-1:-1;14826:70:57;;;;;;;;;14819:77;;14750:157;14998:49;15061:48;15122:235;15167:6;15191:16;15225;15259;15293:15;:27;;;15338:5;15122:27;:235::i;:::-;14984:373;;;;15368:19;15453:96;15490:14;:24;;;15516:15;:25;;;15543:5;15453:36;:96::i;:::-;15390:159;;15415:15;:22;;;15391:14;:21;;;:46;;;;:::i;:::-;15390:159;;;;:::i;:::-;15368:181;;15567:64;15584:15;15601:11;15614:16;15567;:64::i;:::-;15560:71;;;;;13740:1898;;;;;;;;;;;:::o;11307:676:36:-;11409:12;11405:49;;11307:676;;:::o;11405:49::-;-1:-1:-1;;;;;11499:14:36;;11464:32;11499:14;;;:9;:14;;;;;;11464:32;;11671:188;11499:14;11738:19;:7;:17;:19::i;:::-;11671:188;;;;;;;;;;;;;;;;;11829:15;11671:23;:188::i;:::-;11870:33;;;;;;;;;;;;-1:-1:-1;;;;;11870:33:36;;;;;;;;;;;-1:-1:-1;;;11870:33:36;;;;;;;;-1:-1:-1;;;11870:33:36;;;;;;;;;;-1:-1:-1;11524:335:36;-1:-1:-1;11524:335:36;-1:-1:-1;11914:63:36;;;;11944:22;;;20974:13:84;;-1:-1:-1;;;;;20970:78:84;20952:97;;21109:4;21097:17;;;21091:24;21117:10;21087:41;21065:20;;;21058:71;-1:-1:-1;;;;;11944:22:36;;;;;20925:18:84;11944:22:36;;;;;;;11914:63;11395:588;;;;11307:676;;:::o;12169:629::-;12243:12;12239:49;;12169:629;:::o;12239:49::-;12312:44;12370:40;12424:12;12449:212;12490:15;12523:19;:7;:17;:19::i;:::-;12449:212;;;;;;;;;;;;;;;;;12631:15;12449:23;:212::i;:::-;12672:40;;:15;:40;;;;;;;;;;-1:-1:-1;;;;;12672:40:36;;;;;;;;;;;-1:-1:-1;;;12672:40:36;;;;;;;;-1:-1:-1;;;12672:40:36;;;;;;;;;;;;;-1:-1:-1;12298:363:36;-1:-1:-1;12298:363:36;-1:-1:-1;12723:69:36;;;;12755:26;;;20974:13:84;;-1:-1:-1;;;;;20970:78:84;20952:97;;21109:4;21097:17;;;21091:24;21117:10;21087:41;21065:20;;;21058:71;12755:26:36;;20925:18:84;12755:26:36;;;;;;;12229:569;;;12169:629;:::o;10557:567::-;10659:12;10655:49;;10557:567;;:::o;10655:49::-;-1:-1:-1;;;;;10749:14:36;;10714:32;10749:14;;;:9;:14;;;;;;10714:32;;10921:79;10749:14;10955:19;:7;:17;:19::i;:::-;10983:15;10921:23;:79::i;12984:515::-;13058:12;13054:49;;12984:515;:::o;13054:49::-;13127:44;13185:46;13245:12;13270:86;13294:15;13311:19;:7;:17;:19::i;1666:262:56:-;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:56;1836:8;;1799:56;1872:49;1905:1;1877:25;1890:12;1877:10;:25;:::i;:::-;:29;;;;:::i;:::-;1908:12;580:129;655:7;681:21;690:12;681:6;:21;:::i;2263:171::-;2367:7;2397:30;2402:10;:6;2411:1;2402:10;:::i;16102:560:57:-;-1:-1:-1;;;;;;;;;;;;;;;;;16424:231:57;;;;;;;;16558:47;16575:12;:22;;;16599:5;16558;:16;;;;:47;;;;;:::i;:::-;16519:87;;;;:15;:87;:::i;:::-;16477:19;;:129;;;;:::i;:::-;-1:-1:-1;;;;;16424:231:57;;;;;16635:5;16424:231;;;;;16405:250;;16102:560;;;;;:::o;1577:195:53:-;1635:7;-1:-1:-1;;;;;1662:27:53;;;1654:79;;;;-1:-1:-1;;;1654:79:53;;15293:2:84;1654:79:53;;;15275:21:84;15332:2;15312:18;;;15305:30;15371:34;15351:18;;;15344:62;15442:9;15422:18;;;15415:37;15469:19;;1654:79:53;15265:229:84;1654:79:53;-1:-1:-1;1758:6:53;1577:195::o;4498:650:57:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4839:56:57;;;;;;;;;;-1:-1:-1;;;;;4839:56:57;;;;;;;-1:-1:-1;;;4839:56:57;;;;;;;;-1:-1:-1;;;4839:56:57;;;;;;;;;;;;;4804:10;;4950:14;;4914:34;;;-1:-1:-1;4914:34:57;4906:59;;;;-1:-1:-1;;;4906:59:57;;;;;;;;:::i;:::-;;5008:56;5018:8;:14;;5034:15;5051:12;5008:9;:56::i;:::-;5098:33;;;;;;-1:-1:-1;;;;;5098:33:57;;;;;4976:88;;-1:-1:-1;4976:88:57;-1:-1:-1;;;;;;4498:650:57:o;3330:532::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3633:56:57;;;;;;;;;;-1:-1:-1;;;;;3633:56:57;;;;;-1:-1:-1;;;3633:56:57;;;;;;;;-1:-1:-1;;;3633:56:57;;;;;;;;;;;3598:10;;3731:56;3633;3741:14;;3633:56;3774:12;3731:9;:56::i;:::-;3822:23;;3699:88;;-1:-1:-1;3699:88:57;;-1:-1:-1;3699:88:57;-1:-1:-1;3822:33:57;;3848:7;;3822:33;:::i;:::-;-1:-1:-1;;;;;3797:58:57;;;-1:-1:-1;3797:14:57;;3330:532;;-1:-1:-1;3330:532:57;;-1:-1:-1;3330:532:57;-1:-1:-1;3330:532:57:o;17234:969::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17551:10:57;17589:45;17638:35;17649:6;17657:15;17638:10;:35::i;:::-;17586:87;;;17759:12;17734:37;;:11;:21;;;:37;;;17730:112;;;17795:15;;-1:-1:-1;17812:11:57;-1:-1:-1;17825:5:57;;-1:-1:-1;17787:44:57;;17730:112;17852:41;17896:114;17926:11;17951:15;:23;;;-1:-1:-1;;;;;17896:114:57;17988:12;17896:16;:114::i;:::-;17852:158;;18061:7;18021:6;18028:15;:29;;;18021:37;;;;;;;;;:::i;:::-;:47;;;;;;;;;-1:-1:-1;;;18021:47:57;-1:-1:-1;;;;;18021:47:57;;;;;;;:37;;:47;;18122:21;18127:15;18122:4;:21::i;:::-;18079:64;-1:-1:-1;18182:7:57;;-1:-1:-1;18191:4:57;;-1:-1:-1;;;17234:969:57;;;;;;;;:::o;18458:866::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;18671:29:57;;;;18647:71;;;;;;;:23;:71::i;:::-;18595:133;;;;:29;;;:133;19181:27;;;;:45;;;19177:108;;;19273:1;19242:15;:27;;:32;;;;;;;:::i;:::-;;;;;-1:-1:-1;;19302:15:57;18458:866::o;14:196:84:-;82:20;;-1:-1:-1;;;;;131:54:84;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:366::-;277:8;287:6;341:3;334:4;326:6;322:17;318:27;308:2;;359:1;356;349:12;308:2;-1:-1:-1;382:20:84;;425:18;414:30;;411:2;;;457:1;454;447:12;411:2;494:4;486:6;482:17;470:29;;554:3;547:4;537:6;534:1;530:14;522:6;518:27;514:38;511:47;508:2;;;571:1;568;561:12;586:163;653:20;;713:10;702:22;;692:33;;682:2;;739:1;736;729:12;754:171;821:20;;881:18;870:30;;860:41;;850:2;;915:1;912;905:12;930:156;996:20;;1056:4;1045:16;;1035:27;;1025:2;;1076:1;1073;1066:12;1091:186;1150:6;1203:2;1191:9;1182:7;1178:23;1174:32;1171:2;;;1219:1;1216;1209:12;1171:2;1242:29;1261:9;1242:29;:::i;1282:260::-;1350:6;1358;1411:2;1399:9;1390:7;1386:23;1382:32;1379:2;;;1427:1;1424;1417:12;1379:2;1450:29;1469:9;1450:29;:::i;:::-;1440:39;;1498:38;1532:2;1521:9;1517:18;1498:38;:::i;:::-;1488:48;;1369:173;;;;;:::o;1547:328::-;1624:6;1632;1640;1693:2;1681:9;1672:7;1668:23;1664:32;1661:2;;;1709:1;1706;1699:12;1661:2;1732:29;1751:9;1732:29;:::i;:::-;1722:39;;1780:38;1814:2;1803:9;1799:18;1780:38;:::i;:::-;1770:48;;1865:2;1854:9;1850:18;1837:32;1827:42;;1651:224;;;;;:::o;1880:606::-;1991:6;1999;2007;2015;2023;2031;2039;2092:3;2080:9;2071:7;2067:23;2063:33;2060:2;;;2109:1;2106;2099:12;2060:2;2132:29;2151:9;2132:29;:::i;:::-;2122:39;;2180:38;2214:2;2203:9;2199:18;2180:38;:::i;:::-;2170:48;;2265:2;2254:9;2250:18;2237:32;2227:42;;2316:2;2305:9;2301:18;2288:32;2278:42;;2339:37;2371:3;2360:9;2356:19;2339:37;:::i;:::-;2329:47;;2423:3;2412:9;2408:19;2395:33;2385:43;;2475:3;2464:9;2460:19;2447:33;2437:43;;2050:436;;;;;;;;;;:::o;2491:537::-;2593:6;2601;2609;2617;2625;2633;2686:3;2674:9;2665:7;2661:23;2657:33;2654:2;;;2703:1;2700;2693:12;2654:2;2726:29;2745:9;2726:29;:::i;:::-;2716:39;;2774:38;2808:2;2797:9;2793:18;2774:38;:::i;:::-;2764:48;;2859:2;2848:9;2844:18;2831:32;2821:42;;2882:36;2914:2;2903:9;2899:18;2882:36;:::i;:::-;2872:46;;2965:3;2954:9;2950:19;2937:33;2927:43;;3017:3;3006:9;3002:19;2989:33;2979:43;;2644:384;;;;;;;;:::o;3033:509::-;3127:6;3135;3143;3196:2;3184:9;3175:7;3171:23;3167:32;3164:2;;;3212:1;3209;3202:12;3164:2;3235:29;3254:9;3235:29;:::i;:::-;3225:39;;3315:2;3304:9;3300:18;3287:32;3342:18;3334:6;3331:30;3328:2;;;3374:1;3371;3364:12;3328:2;3413:69;3474:7;3465:6;3454:9;3450:22;3413:69;:::i;:::-;3154:388;;3501:8;;-1:-1:-1;3387:95:84;;-1:-1:-1;;;;3154:388:84:o;3547:843::-;3676:6;3684;3692;3700;3708;3761:2;3749:9;3740:7;3736:23;3732:32;3729:2;;;3777:1;3774;3767:12;3729:2;3800:29;3819:9;3800:29;:::i;:::-;3790:39;;3880:2;3869:9;3865:18;3852:32;3903:18;3944:2;3936:6;3933:14;3930:2;;;3960:1;3957;3950:12;3930:2;3999:69;4060:7;4051:6;4040:9;4036:22;3999:69;:::i;:::-;4087:8;;-1:-1:-1;3973:95:84;-1:-1:-1;4175:2:84;4160:18;;4147:32;;-1:-1:-1;4191:16:84;;;4188:2;;;4220:1;4217;4210:12;4188:2;;4259:71;4322:7;4311:8;4300:9;4296:24;4259:71;:::i;:::-;3719:671;;;;-1:-1:-1;3719:671:84;;-1:-1:-1;4349:8:84;;4233:97;3719:671;-1:-1:-1;;;3719:671:84:o;4395:346::-;4462:6;4470;4523:2;4511:9;4502:7;4498:23;4494:32;4491:2;;;4539:1;4536;4529:12;4491:2;4562:29;4581:9;4562:29;:::i;:::-;4552:39;;4641:2;4630:9;4626:18;4613:32;4685:6;4678:5;4674:18;4667:5;4664:29;4654:2;;4707:1;4704;4697:12;4654:2;4730:5;4720:15;;;4481:260;;;;;:::o;4746:254::-;4814:6;4822;4875:2;4863:9;4854:7;4850:23;4846:32;4843:2;;;4891:1;4888;4881:12;4843:2;4914:29;4933:9;4914:29;:::i;:::-;4904:39;4990:2;4975:18;;;;4962:32;;-1:-1:-1;;;4833:167:84:o;5005:258::-;5072:6;5080;5133:2;5121:9;5112:7;5108:23;5104:32;5101:2;;;5149:1;5146;5139:12;5101:2;5172:29;5191:9;5172:29;:::i;:::-;5162:39;;5220:37;5253:2;5242:9;5238:18;5220:37;:::i;5268:330::-;5343:6;5351;5359;5412:2;5400:9;5391:7;5387:23;5383:32;5380:2;;;5428:1;5425;5418:12;5380:2;5451:29;5470:9;5451:29;:::i;:::-;5441:39;;5499:37;5532:2;5521:9;5517:18;5499:37;:::i;:::-;5489:47;;5555:37;5588:2;5577:9;5573:18;5555:37;:::i;:::-;5545:47;;5370:228;;;;;:::o;5603:258::-;5670:6;5678;5731:2;5719:9;5710:7;5706:23;5702:32;5699:2;;;5747:1;5744;5737:12;5699:2;5770:29;5789:9;5770:29;:::i;:::-;5760:39;;5818:37;5851:2;5840:9;5836:18;5818:37;:::i;5866:330::-;5941:6;5949;5957;6010:2;5998:9;5989:7;5985:23;5981:32;5978:2;;;6026:1;6023;6016:12;5978:2;6049:29;6068:9;6049:29;:::i;:::-;6039:39;;6097:37;6130:2;6119:9;6115:18;6097:37;:::i;:::-;6087:47;;6153:37;6186:2;6175:9;6171:18;6153:37;:::i;6201:435::-;6286:6;6294;6347:2;6335:9;6326:7;6322:23;6318:32;6315:2;;;6363:1;6360;6353:12;6315:2;6403:9;6390:23;6436:18;6428:6;6425:30;6422:2;;;6468:1;6465;6458:12;6422:2;6507:69;6568:7;6559:6;6548:9;6544:22;6507:69;:::i;:::-;6595:8;;6481:95;;-1:-1:-1;6305:331:84;-1:-1:-1;;;;6305:331:84:o;6641:769::-;6761:6;6769;6777;6785;6838:2;6826:9;6817:7;6813:23;6809:32;6806:2;;;6854:1;6851;6844:12;6806:2;6894:9;6881:23;6923:18;6964:2;6956:6;6953:14;6950:2;;;6980:1;6977;6970:12;6950:2;7019:69;7080:7;7071:6;7060:9;7056:22;7019:69;:::i;:::-;7107:8;;-1:-1:-1;6993:95:84;-1:-1:-1;7195:2:84;7180:18;;7167:32;;-1:-1:-1;7211:16:84;;;7208:2;;;7240:1;7237;7230:12;7208:2;;7279:71;7342:7;7331:8;7320:9;7316:24;7279:71;:::i;:::-;6796:614;;;;-1:-1:-1;7369:8:84;-1:-1:-1;;;;6796:614:84:o;7415:184::-;7473:6;7526:2;7514:9;7505:7;7501:23;7497:32;7494:2;;;7542:1;7539;7532:12;7494:2;7565:28;7583:9;7565:28;:::i;8284:632::-;8455:2;8507:21;;;8577:13;;8480:18;;;8599:22;;;8426:4;;8455:2;8678:15;;;;8652:2;8637:18;;;8426:4;8721:169;8735:6;8732:1;8729:13;8721:169;;;8796:13;;8784:26;;8865:15;;;;8830:12;;;;8757:1;8750:9;8721:169;;;-1:-1:-1;8907:3:84;;8435:481;-1:-1:-1;;;;;;8435:481:84:o;11381:656::-;11493:4;11522:2;11551;11540:9;11533:21;11583:6;11577:13;11626:6;11621:2;11610:9;11606:18;11599:34;11651:1;11661:140;11675:6;11672:1;11669:13;11661:140;;;11770:14;;;11766:23;;11760:30;11736:17;;;11755:2;11732:26;11725:66;11690:10;;11661:140;;;11819:6;11816:1;11813:13;11810:2;;;11889:1;11884:2;11875:6;11864:9;11860:22;11856:31;11849:42;11810:2;-1:-1:-1;11953:2:84;11941:15;-1:-1:-1;;11937:88:84;11922:104;;;;12028:2;11918:113;;11502:535;-1:-1:-1;;;11502:535:84:o;21511:273::-;21551:3;-1:-1:-1;;;;;21660:2:84;21657:1;21653:10;21690:2;21687:1;21683:10;21721:3;21717:2;21713:12;21708:3;21705:21;21702:2;;;21729:18;;:::i;:::-;21765:13;;21559:225;-1:-1:-1;;;;21559:225:84:o;21789:277::-;21829:3;-1:-1:-1;;;;;21942:2:84;21939:1;21935:10;21972:2;21969:1;21965:10;22003:3;21999:2;21995:12;21990:3;21987:21;21984:2;;;22011:18;;:::i;22071:226::-;22110:3;22138:8;22173:2;22170:1;22166:10;22203:2;22200:1;22196:10;22234:3;22230:2;22226:12;22221:3;22218:21;22215:2;;;22242:18;;:::i;22302:128::-;22342:3;22373:1;22369:6;22366:1;22363:13;22360:2;;;22379:18;;:::i;:::-;-1:-1:-1;22415:9:84;;22350:80::o;22435:230::-;22474:3;22502:12;22541:2;22538:1;22534:10;22571:2;22568:1;22564:10;22602:3;22598:2;22594:12;22589:3;22586:21;22583:2;;;22610:18;;:::i;22670:240::-;22710:1;-1:-1:-1;;;;;22821:2:84;22818:1;22814:10;22843:3;22833:2;;22850:18;;:::i;:::-;22888:10;;22884:20;;;;;22716:194;-1:-1:-1;;22716:194:84:o;22915:120::-;22955:1;22981;22971:2;;22986:18;;:::i;:::-;-1:-1:-1;23020:9:84;;22961:74::o;23040:311::-;23080:7;-1:-1:-1;;;;;23197:2:84;23194:1;23190:10;23227:2;23224:1;23220:10;23283:3;23279:2;23275:12;23270:3;23267:21;23260:3;23253:11;23246:19;23242:47;23239:2;;;23292:18;;:::i;:::-;23332:13;;23092:259;-1:-1:-1;;;;23092:259:84:o;23356:270::-;23396:4;-1:-1:-1;;;;;23533:10:84;;;;23503;;23555:12;;;23552:2;;;23570:18;;:::i;:::-;23607:13;;23405:221;-1:-1:-1;;;23405:221:84:o;23631:125::-;23671:4;23699:1;23696;23693:8;23690:2;;;23704:18;;:::i;:::-;-1:-1:-1;23741:9:84;;23680:76::o;23761:221::-;23800:4;23829:10;23889;;;;23859;;23911:12;;;23908:2;;;23926:18;;:::i;23987:437::-;24066:1;24062:12;;;;24109;;;24130:2;;24184:4;24176:6;24172:17;24162:27;;24130:2;24237;24229:6;24226:14;24206:18;24203:38;24200:2;;;-1:-1:-1;;;24271:1:84;24264:88;24375:4;24372:1;24365:15;24403:4;24400:1;24393:15;24429:195;24468:3;24499:66;24492:5;24489:77;24486:2;;;24569:18;;:::i;:::-;-1:-1:-1;24616:1:84;24605:13;;24476:148::o;24629:112::-;24661:1;24687;24677:2;;24692:18;;:::i;:::-;-1:-1:-1;24726:9:84;;24667:74::o;24746:184::-;-1:-1:-1;;;24795:1:84;24788:88;24895:4;24892:1;24885:15;24919:4;24916:1;24909:15;24935:184;-1:-1:-1;;;24984:1:84;24977:88;25084:4;25081:1;25074:15;25108:4;25105:1;25098:15;25124:184;-1:-1:-1;;;25173:1:84;25166:88;25273:4;25270:1;25263:15;25297:4;25294:1;25287:15;25313:184;-1:-1:-1;;;25362:1:84;25355:88;25462:4;25459:1;25452:15;25486:4;25483:1;25476:15;25502:184;-1:-1:-1;;;25551:1:84;25544:88;25651:4;25648:1;25641:15;25675:4;25672:1;25665:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "2878400",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "DOMAIN_SEPARATOR()": "infinite",
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24666",
                "balanceOf(address)": "2608",
                "burn(address,uint256)": "infinite",
                "controller()": "infinite",
                "controllerBurn(address,uint256)": "infinite",
                "controllerBurnFrom(address,address,uint256)": "infinite",
                "controllerDelegateFor(address,address)": "infinite",
                "controllerMint(address,uint256)": "infinite",
                "decimals()": "infinite",
                "decreaseAllowance(address,uint256)": "26999",
                "delegate(address)": "infinite",
                "delegateOf(address)": "2635",
                "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": "infinite",
                "flashLoan(address,uint256)": "infinite",
                "getAccountDetails(address)": "2968",
                "getAverageBalanceBetween(address,uint64,uint64)": "infinite",
                "getAverageBalanceTx(address,uint32,uint32)": "infinite",
                "getAverageBalancesBetween(address,uint64[],uint64[])": "infinite",
                "getAverageTotalSuppliesBetween(uint64[],uint64[])": "infinite",
                "getBalanceAt(address,uint64)": "infinite",
                "getBalanceTx(address,uint32)": "infinite",
                "getBalancesAt(address,uint64[])": "infinite",
                "getTotalSuppliesAt(uint64[])": "infinite",
                "getTotalSupplyAt(uint64)": "infinite",
                "getTwab(address,uint16)": "2951",
                "increaseAllowance(address,uint256)": "27025",
                "mint(address,uint256)": "infinite",
                "mintTwice(address,uint256)": "infinite",
                "name()": "infinite",
                "nonces(address)": "2661",
                "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "infinite",
                "symbol()": "infinite",
                "totalSupply()": "2405",
                "transfer(address,uint256)": "infinite",
                "transferFrom(address,address,uint256)": "infinite",
                "transferTo(address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "DOMAIN_SEPARATOR()": "3644e515",
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "burn(address,uint256)": "9dc29fac",
              "controller()": "f77c4791",
              "controllerBurn(address,uint256)": "90596dd1",
              "controllerBurnFrom(address,address,uint256)": "631b5dfb",
              "controllerDelegateFor(address,address)": "33e39b61",
              "controllerMint(address,uint256)": "5d7b0758",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "delegate(address)": "5c19a95c",
              "delegateOf(address)": "8d22ea2a",
              "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": "919974dc",
              "flashLoan(address,uint256)": "9d9e465c",
              "getAccountDetails(address)": "2aceb534",
              "getAverageBalanceBetween(address,uint64,uint64)": "98b16f36",
              "getAverageBalanceTx(address,uint32,uint32)": "31c4293d",
              "getAverageBalancesBetween(address,uint64[],uint64[])": "68c7fd57",
              "getAverageTotalSuppliesBetween(uint64[],uint64[])": "8e6d536a",
              "getBalanceAt(address,uint64)": "9ecb0370",
              "getBalanceTx(address,uint32)": "09daa017",
              "getBalancesAt(address,uint64[])": "613ed6bd",
              "getTotalSuppliesAt(uint64[])": "85beb5f1",
              "getTotalSupplyAt(uint64)": "2d0dd686",
              "getTwab(address,uint16)": "36bb2a38",
              "increaseAllowance(address,uint256)": "39509351",
              "mint(address,uint256)": "40c10f19",
              "mintTwice(address,uint256)": "456f95e6",
              "name()": "06fdde03",
              "nonces(address)": "7ecebe00",
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "d505accf",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd",
              "transferTo(address,address,uint256)": "a5f2a152"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_symbol\",\"type\":\"string\"},{\"internalType\":\"uint8\",\"name\":\"decimals_\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"_controller\",\"type\":\"address\"}],\"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\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"}],\"name\":\"Delegated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"decimals\",\"type\":\"uint8\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"controller\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"newTotalSupplyTwab\",\"type\":\"tuple\"}],\"name\":\"NewTotalSupplyTwab\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"newTwab\",\"type\":\"tuple\"}],\"name\":\"NewUserTwab\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"decimals\",\"type\":\"uint8\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"controller\",\"type\":\"address\"}],\"name\":\"TicketInitialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"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\":\"address\",\"name\":\"_from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"controller\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurnFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"}],\"name\":\"controllerDelegateFor\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"controllerMint\",\"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\":\"_to\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"}],\"name\":\"delegateOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_newDelegate\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"_v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"_r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_s\",\"type\":\"bytes32\"}],\"name\":\"delegateWithSignature\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"flashLoan\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"}],\"name\":\"getAccountDetails\",\"outputs\":[{\"components\":[{\"internalType\":\"uint208\",\"name\":\"balance\",\"type\":\"uint208\"},{\"internalType\":\"uint24\",\"name\":\"nextTwabIndex\",\"type\":\"uint24\"},{\"internalType\":\"uint24\",\"name\":\"cardinality\",\"type\":\"uint24\"}],\"internalType\":\"struct TwabLib.AccountDetails\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_startTime\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"_endTime\",\"type\":\"uint64\"}],\"name\":\"getAverageBalanceBetween\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"_startTime\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"_endTime\",\"type\":\"uint32\"}],\"name\":\"getAverageBalanceTx\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint64[]\",\"name\":\"_startTimes\",\"type\":\"uint64[]\"},{\"internalType\":\"uint64[]\",\"name\":\"_endTimes\",\"type\":\"uint64[]\"}],\"name\":\"getAverageBalancesBetween\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64[]\",\"name\":\"_startTimes\",\"type\":\"uint64[]\"},{\"internalType\":\"uint64[]\",\"name\":\"_endTimes\",\"type\":\"uint64[]\"}],\"name\":\"getAverageTotalSuppliesBetween\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_target\",\"type\":\"uint64\"}],\"name\":\"getBalanceAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"_target\",\"type\":\"uint32\"}],\"name\":\"getBalanceTx\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint64[]\",\"name\":\"_targets\",\"type\":\"uint64[]\"}],\"name\":\"getBalancesAt\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64[]\",\"name\":\"_targets\",\"type\":\"uint64[]\"}],\"name\":\"getTotalSuppliesAt\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"_target\",\"type\":\"uint64\"}],\"name\":\"getTotalSupplyAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"_index\",\"type\":\"uint16\"}],\"name\":\"getTwab\",\"outputs\":[{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"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\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"mintTwice\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"transferTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"See {IERC20Permit-DOMAIN_SEPARATOR}.\"},\"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}.\"},\"controllerBurn(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over burning\",\"params\":{\"_amount\":\"Amount of tokens to burn\",\"_user\":\"Address of the holder account to burn tokens from\"}},\"controllerBurnFrom(address,address,uint256)\":{\"details\":\"May be overridden to provide more granular control over operator-burning\",\"params\":{\"_amount\":\"Amount of tokens to burn\",\"_operator\":\"Address of the operator performing the burn action via the controller contract\",\"_user\":\"Address of the holder account to burn tokens from\"}},\"controllerDelegateFor(address,address)\":{\"params\":{\"delegate\":\"The new delegate\",\"user\":\"The user for whom to delegate\"}},\"controllerMint(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over minting\",\"params\":{\"_amount\":\"Amount of tokens to mint\",\"_user\":\"Address of the receiver of the minted tokens\"}},\"decimals()\":{\"details\":\"This value should be equal to the decimals of the token used to deposit into the pool.\",\"returns\":{\"_0\":\"uint8 decimals.\"}},\"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`.\"},\"delegate(address)\":{\"details\":\"Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the targetted sender and/or recipient address(s).To reset the delegate, pass the zero address (0x000.000) as `to` parameter.Current delegate address should be different from the new delegate address `to`.\",\"params\":{\"to\":\"Recipient of delegated TWAB.\"}},\"delegateOf(address)\":{\"details\":\"Address of the delegate will be the zero address if `user` has not delegated their tickets.\",\"params\":{\"user\":\"Address of the delegator.\"},\"returns\":{\"_0\":\"Address of the delegate.\"}},\"delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)\":{\"params\":{\"deadline\":\"The timestamp by which this must be submitted\",\"delegate\":\"The new delegate\",\"r\":\"The r portion of the ECDSA sig\",\"s\":\"The s portion of the ECDSA sig\",\"user\":\"The user who is delegating\",\"v\":\"The v portion of the ECDSA sig\"}},\"getAccountDetails(address)\":{\"params\":{\"user\":\"The user for whom to fetch the TWAB context.\"},\"returns\":{\"_0\":\"The TWAB context, which includes { balance, nextTwabIndex, cardinality }\"}},\"getAverageBalanceBetween(address,uint64,uint64)\":{\"params\":{\"endTime\":\"The end time of the time frame.\",\"startTime\":\"The start time of the time frame.\",\"user\":\"The user whose balance is checked.\"},\"returns\":{\"_0\":\"The average balance that the user held during the time frame.\"}},\"getAverageBalancesBetween(address,uint64[],uint64[])\":{\"params\":{\"endTimes\":\"The end time of the time frame.\",\"startTimes\":\"The start time of the time frame.\",\"user\":\"The user whose balance is checked.\"},\"returns\":{\"_0\":\"The average balance that the user held during the time frame.\"}},\"getAverageTotalSuppliesBetween(uint64[],uint64[])\":{\"params\":{\"endTimes\":\"Array of end times.\",\"startTimes\":\"Array of start times.\"},\"returns\":{\"_0\":\"The average total supplies held during the time frame.\"}},\"getBalanceAt(address,uint64)\":{\"params\":{\"timestamp\":\"Timestamp at which we want to retrieve the TWAB balance.\",\"user\":\"Address of the user whose TWAB is being fetched.\"},\"returns\":{\"_0\":\"The TWAB balance at the given timestamp.\"}},\"getBalancesAt(address,uint64[])\":{\"params\":{\"timestamps\":\"Timestamps range at which we want to retrieve the TWAB balances.\",\"user\":\"Address of the user whose TWABs are being fetched.\"},\"returns\":{\"_0\":\"`user` TWAB balances.\"}},\"getTotalSuppliesAt(uint64[])\":{\"params\":{\"timestamps\":\"Timestamps range at which we want to retrieve the total supply TWAB balance.\"},\"returns\":{\"_0\":\"Total supply TWAB balances.\"}},\"getTotalSupplyAt(uint64)\":{\"params\":{\"timestamp\":\"Timestamp at which we want to retrieve the total supply TWAB balance.\"},\"returns\":{\"_0\":\"The total supply TWAB balance at the given timestamp.\"}},\"getTwab(address,uint16)\":{\"params\":{\"index\":\"The index of the TWAB to fetch.\",\"user\":\"The user for whom to fetch the TWAB.\"},\"returns\":{\"_0\":\"The TWAB, which includes the twab amount and the timestamp.\"}},\"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.\"},\"nonces(address)\":{\"details\":\"See {IERC20Permit-nonces}.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"See {IERC20Permit-permit}.\"},\"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`.\"},\"transferTo(address,address,uint256)\":{\"details\":\"we need to use a different function name than `transfer` otherwise it collides with the `transfer` function of the `ERC20` contract\"}},\"version\":1},\"userdoc\":{\"events\":{\"Delegated(address,address)\":{\"notice\":\"Emitted when TWAB balance has been delegated to another user.\"},\"NewTotalSupplyTwab((uint224,uint32))\":{\"notice\":\"Emitted when a new total supply TWAB has been recorded.\"},\"NewUserTwab(address,(uint224,uint32))\":{\"notice\":\"Emitted when a new TWAB has been recorded.\"},\"TicketInitialized(string,string,uint8,address)\":{\"notice\":\"Emitted when ticket is initialized.\"}},\"kind\":\"user\",\"methods\":{\"controller()\":{\"notice\":\"Interface to the contract responsible for controlling mint/burn\"},\"controllerBurn(address,uint256)\":{\"notice\":\"Allows the controller to burn tokens from a user account\"},\"controllerBurnFrom(address,address,uint256)\":{\"notice\":\"Allows an operator via the controller to burn tokens on behalf of a user account\"},\"controllerDelegateFor(address,address)\":{\"notice\":\"Allows the controller to delegate on a users behalf.\"},\"controllerMint(address,uint256)\":{\"notice\":\"Allows the controller to mint tokens for a user account\"},\"decimals()\":{\"notice\":\"Returns the ERC20 controlled token decimals.\"},\"delegate(address)\":{\"notice\":\"Delegate time-weighted average balances to an alternative address.\"},\"delegateOf(address)\":{\"notice\":\"Retrieves the address of the delegate to whom `user` has delegated their tickets.\"},\"delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)\":{\"notice\":\"Allows a user to delegate via signature\"},\"getAccountDetails(address)\":{\"notice\":\"Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\"},\"getAverageBalanceBetween(address,uint64,uint64)\":{\"notice\":\"Retrieves the average balance held by a user for a given time frame.\"},\"getAverageBalancesBetween(address,uint64[],uint64[])\":{\"notice\":\"Retrieves the average balances held by a user for a given time frame.\"},\"getAverageTotalSuppliesBetween(uint64[],uint64[])\":{\"notice\":\"Retrieves the average total supply balance for a set of given time frames.\"},\"getBalanceAt(address,uint64)\":{\"notice\":\"Retrieves `user` TWAB balance.\"},\"getBalancesAt(address,uint64[])\":{\"notice\":\"Retrieves `user` TWAB balances.\"},\"getTotalSuppliesAt(uint64[])\":{\"notice\":\"Retrieves the total supply TWAB balance between the given timestamps range.\"},\"getTotalSupplyAt(uint64)\":{\"notice\":\"Retrieves the total supply TWAB balance at the given timestamp.\"},\"getTwab(address,uint16)\":{\"notice\":\"Gets the TWAB at a specific index for a user.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/TicketHarness.sol\":\"TicketHarness\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\\n * instead returning `false` on failure. This behavior is nonetheless\\n * conventional and does not conflict with the expectations of ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(string memory name_, string memory symbol_) {\\n        _name = name_;\\n        _symbol = symbol_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual override returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual override returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual override returns (uint8) {\\n        return 18;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual override returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual override returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\\n        _transfer(_msgSender(), recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\\n        _approve(_msgSender(), spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual override returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][_msgSender()];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, _msgSender(), currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n        uint256 currentAllowance = _allowances[_msgSender()][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(_msgSender(), spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n}\\n\",\"keccak256\":\"0xb03df8481a954604ad0c9125680893b2e3f7ff770fe470e38b89ac61b84e8072\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Returns the remaining number of tokens that `spender` will be\\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n     * zero by default.\\n     *\\n     * This value changes when {approve} or {transferFrom} are called.\\n     */\\n    function allowance(address owner, address spender) external view returns (uint256);\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n     * that someone may use both the old and the new allowance by unfortunate\\n     * transaction ordering. One possible solution to mitigate this race\\n     * condition is to first reduce the spender's allowance to 0 and set the\\n     * desired value afterwards:\\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address spender, uint256 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` is then deducted from the caller's\\n     * allowance.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\n    /**\\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n     * another (`to`).\\n     *\\n     * Note that `value` may be zero.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n    /**\\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n     * a call to {approve}. `value` is the new allowance.\\n     */\\n    event Approval(address indexed owner, address indexed spender, uint256 value);\\n}\\n\",\"keccak256\":\"0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\n */\\ninterface IERC20Metadata is IERC20 {\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the symbol of the token.\\n     */\\n    function symbol() external view returns (string memory);\\n\\n    /**\\n     * @dev Returns the decimals places of the token.\\n     */\\n    function decimals() external view returns (uint8);\\n}\\n\",\"keccak256\":\"0x83fe24f5c04a56091e50f4a345ff504c8bff658a76d4c43b16878c8f940c53b2\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./draft-IERC20Permit.sol\\\";\\nimport \\\"../ERC20.sol\\\";\\nimport \\\"../../../utils/cryptography/draft-EIP712.sol\\\";\\nimport \\\"../../../utils/cryptography/ECDSA.sol\\\";\\nimport \\\"../../../utils/Counters.sol\\\";\\n\\n/**\\n * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n *\\n * _Available since v3.4._\\n */\\nabstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {\\n    using Counters for Counters.Counter;\\n\\n    mapping(address => Counters.Counter) private _nonces;\\n\\n    // solhint-disable-next-line var-name-mixedcase\\n    bytes32 private immutable _PERMIT_TYPEHASH =\\n        keccak256(\\\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\\\");\\n\\n    /**\\n     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\\\"1\\\"`.\\n     *\\n     * It's a good idea to use the same `name` that is defined as the ERC20 token name.\\n     */\\n    constructor(string memory name) EIP712(name, \\\"1\\\") {}\\n\\n    /**\\n     * @dev See {IERC20Permit-permit}.\\n     */\\n    function permit(\\n        address owner,\\n        address spender,\\n        uint256 value,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) public virtual override {\\n        require(block.timestamp <= deadline, \\\"ERC20Permit: expired deadline\\\");\\n\\n        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));\\n\\n        bytes32 hash = _hashTypedDataV4(structHash);\\n\\n        address signer = ECDSA.recover(hash, v, r, s);\\n        require(signer == owner, \\\"ERC20Permit: invalid signature\\\");\\n\\n        _approve(owner, spender, value);\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-nonces}.\\n     */\\n    function nonces(address owner) public view virtual override returns (uint256) {\\n        return _nonces[owner].current();\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view override returns (bytes32) {\\n        return _domainSeparatorV4();\\n    }\\n\\n    /**\\n     * @dev \\\"Consume a nonce\\\": return the current value and increment.\\n     *\\n     * _Available since v4.1._\\n     */\\n    function _useNonce(address owner) internal virtual returns (uint256 current) {\\n        Counters.Counter storage nonce = _nonces[owner];\\n        current = nonce.current();\\n        nonce.increment();\\n    }\\n}\\n\",\"keccak256\":\"0x7ce4684ee1fac31ee5671df82b30c10bd2ebf88add2f63524ed00618a8486907\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n */\\ninterface IERC20Permit {\\n    /**\\n     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\\n     * given ``owner``'s signed approval.\\n     *\\n     * IMPORTANT: The same issues {IERC20-approve} has related to transaction\\n     * ordering also apply here.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `deadline` must be a timestamp in the future.\\n     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\\n     * over the EIP712-formatted function arguments.\\n     * - the signature must use ``owner``'s current nonce (see {nonces}).\\n     *\\n     * For more information on the signature format, see the\\n     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\\n     * section].\\n     */\\n    function permit(\\n        address owner,\\n        address spender,\\n        uint256 value,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @dev Returns the current nonce for `owner`. This value must be\\n     * included whenever a signature is generated for {permit}.\\n     *\\n     * Every successful call to {permit} increases ``owner``'s nonce by one. This\\n     * prevents a signature from being used multiple times.\\n     */\\n    function nonces(address owner) external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view returns (bytes32);\\n}\\n\",\"keccak256\":\"0x3aab711a5f9a5a5a394191e928cc8258e8a243e855bb0275e7834f9686383277\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n    using Address for address;\\n\\n    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n        }\\n    }\\n\\n    /**\\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\\n     * @param token The token targeted by the call.\\n     * @param data The call data (encoded using abi.encode or one of its variants).\\n     */\\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that\\n        // the target address contains contract code and also asserts for success in the low-level call.\\n\\n        bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x02348b2e4b9f3200c7e3907c5c2661643a6d8520e9f79939fbb9b4005a54894d\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\n\\n    /**\\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n     * `recipient`, forwarding all available gas and reverting on errors.\\n     *\\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n     * imposed by `transfer`, making them unable to receive funds via\\n     * `transfer`. {sendValue} removes this limitation.\\n     *\\n     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n     *\\n     * IMPORTANT: because control is transferred to `recipient`, care must be\\n     * taken to not create reentrancy vulnerabilities. Consider using\\n     * {ReentrancyGuard} or the\\n     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n    }\\n\\n    /**\\n     * @dev Performs a Solidity function call using a low level `call`. A\\n     * plain `call` is an unsafe replacement for a function call: use this\\n     * function instead.\\n     *\\n     * If `target` reverts with a revert reason, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\n     *\\n     * Returns the raw returned data. To convert to the expected return value,\\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n     *\\n     * Requirements:\\n     *\\n     * - `target` must be a contract.\\n     * - calling `target` with `data` must not revert.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but also transferring `value` wei to `target`.\\n     *\\n     * Requirements:\\n     *\\n     * - the calling contract must have an ETH balance of at least `value`.\\n     * - the called Solidity function must be `payable`.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\n            // Look for revert reason and bubble it up if present\\n            if (returndata.length > 0) {\\n                // The easiest way to bubble the revert reason is using memory via assembly\\n\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n    function _msgSender() internal view virtual returns (address) {\\n        return msg.sender;\\n    }\\n\\n    function _msgData() internal view virtual returns (bytes calldata) {\\n        return msg.data;\\n    }\\n}\\n\",\"keccak256\":\"0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Counters.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Counters\\n * @author Matt Condon (@shrugs)\\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\\n *\\n * Include with `using Counters for Counters.Counter;`\\n */\\nlibrary Counters {\\n    struct Counter {\\n        // This variable should never be directly accessed by users of the library: interactions must be restricted to\\n        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\\n        // this feature: see https://github.com/ethereum/solidity/issues/4637\\n        uint256 _value; // default: 0\\n    }\\n\\n    function current(Counter storage counter) internal view returns (uint256) {\\n        return counter._value;\\n    }\\n\\n    function increment(Counter storage counter) internal {\\n        unchecked {\\n            counter._value += 1;\\n        }\\n    }\\n\\n    function decrement(Counter storage counter) internal {\\n        uint256 value = counter._value;\\n        require(value > 0, \\\"Counter: decrement overflow\\\");\\n        unchecked {\\n            counter._value = value - 1;\\n        }\\n    }\\n\\n    function reset(Counter storage counter) internal {\\n        counter._value = 0;\\n    }\\n}\\n\",\"keccak256\":\"0x78450f4e3b722cce467b21e285f72ce5eaf361e9ba9dd2241a413926246773cd\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\\n *\\n * These functions can be used to verify that a message was signed by the holder\\n * of the private keys of a given address.\\n */\\nlibrary ECDSA {\\n    enum RecoverError {\\n        NoError,\\n        InvalidSignature,\\n        InvalidSignatureLength,\\n        InvalidSignatureS,\\n        InvalidSignatureV\\n    }\\n\\n    function _throwError(RecoverError error) private pure {\\n        if (error == RecoverError.NoError) {\\n            return; // no error: do nothing\\n        } else if (error == RecoverError.InvalidSignature) {\\n            revert(\\\"ECDSA: invalid signature\\\");\\n        } else if (error == RecoverError.InvalidSignatureLength) {\\n            revert(\\\"ECDSA: invalid signature length\\\");\\n        } else if (error == RecoverError.InvalidSignatureS) {\\n            revert(\\\"ECDSA: invalid signature 's' value\\\");\\n        } else if (error == RecoverError.InvalidSignatureV) {\\n            revert(\\\"ECDSA: invalid signature 'v' value\\\");\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature` or error string. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {toEthSignedMessageHash} on it.\\n     *\\n     * Documentation for signature generation:\\n     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\\n     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\\n        // Check the signature length\\n        // - case 65: r,s,v signature (standard)\\n        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._\\n        if (signature.length == 65) {\\n            bytes32 r;\\n            bytes32 s;\\n            uint8 v;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                s := mload(add(signature, 0x40))\\n                v := byte(0, mload(add(signature, 0x60)))\\n            }\\n            return tryRecover(hash, v, r, s);\\n        } else if (signature.length == 64) {\\n            bytes32 r;\\n            bytes32 vs;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                vs := mload(add(signature, 0x40))\\n            }\\n            return tryRecover(hash, r, vs);\\n        } else {\\n            return (address(0), RecoverError.InvalidSignatureLength);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature`. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\\n     * this function rejects them by requiring the `s` value to be in the lower\\n     * half order, and the `v` value to be either 27 or 28.\\n     *\\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\\n     * verification to be secure: it is possible to craft signatures that\\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\\n     * this is by receiving a hash of the original message (which may otherwise\\n     * be too long), and then calling {toEthSignedMessageHash} on it.\\n     */\\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, signature);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\\n     *\\n     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address, RecoverError) {\\n        bytes32 s;\\n        uint8 v;\\n        assembly {\\n            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\\n            v := add(shr(255, vs), 27)\\n        }\\n        return tryRecover(hash, v, r, s);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\\n     *\\n     * _Available since v4.2._\\n     */\\n    function recover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, r, vs);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address, RecoverError) {\\n        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\\n        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\\n        // the valid range for s in (301): 0 < s < secp256k1n \\u00f7 2 + 1, and for v in (302): v \\u2208 {27, 28}. Most\\n        // signatures from current libraries generate a unique signature with an s-value in the lower half order.\\n        //\\n        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\\n        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\\n        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\\n        // these malleable signatures as well.\\n        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\\n            return (address(0), RecoverError.InvalidSignatureS);\\n        }\\n        if (v != 27 && v != 28) {\\n            return (address(0), RecoverError.InvalidSignatureV);\\n        }\\n\\n        // If the signature is valid (and not malleable), return the signer address\\n        address signer = ecrecover(hash, v, r, s);\\n        if (signer == address(0)) {\\n            return (address(0), RecoverError.InvalidSignature);\\n        }\\n\\n        return (signer, RecoverError.NoError);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     */\\n    function recover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from a `hash`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {\\n        // 32 is the length in bytes of hash,\\n        // enforced by the type signature above\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n32\\\", hash));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Typed Data, created from a\\n     * `domainSeparator` and a `structHash`. This produces hash corresponding\\n     * to the one signed with the\\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\\n     * JSON-RPC method as part of EIP-712.\\n     *\\n     * See {recover}.\\n     */\\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19\\\\x01\\\", domainSeparator, structHash));\\n    }\\n}\\n\",\"keccak256\":\"0xbc991a1cf357ce19480831a40792c814238a3b5458134703682abd8aa39719fb\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./ECDSA.sol\\\";\\n\\n/**\\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.\\n *\\n * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\\n * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\\n * they need in their contracts using a combination of `abi.encode` and `keccak256`.\\n *\\n * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\\n * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\\n * ({_hashTypedDataV4}).\\n *\\n * The implementation of the domain separator was designed to be as efficient as possible while still properly updating\\n * the chain id to protect against replay attacks on an eventual fork of the chain.\\n *\\n * NOTE: This contract implements the version of the encoding known as \\\"v4\\\", as implemented by the JSON RPC method\\n * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\\n *\\n * _Available since v3.4._\\n */\\nabstract contract EIP712 {\\n    /* solhint-disable var-name-mixedcase */\\n    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to\\n    // invalidate the cached domain separator if the chain id changes.\\n    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;\\n    uint256 private immutable _CACHED_CHAIN_ID;\\n\\n    bytes32 private immutable _HASHED_NAME;\\n    bytes32 private immutable _HASHED_VERSION;\\n    bytes32 private immutable _TYPE_HASH;\\n\\n    /* solhint-enable var-name-mixedcase */\\n\\n    /**\\n     * @dev Initializes the domain separator and parameter caches.\\n     *\\n     * The meaning of `name` and `version` is specified in\\n     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:\\n     *\\n     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\\n     * - `version`: the current major version of the signing domain.\\n     *\\n     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\\n     * contract upgrade].\\n     */\\n    constructor(string memory name, string memory version) {\\n        bytes32 hashedName = keccak256(bytes(name));\\n        bytes32 hashedVersion = keccak256(bytes(version));\\n        bytes32 typeHash = keccak256(\\n            \\\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\\\"\\n        );\\n        _HASHED_NAME = hashedName;\\n        _HASHED_VERSION = hashedVersion;\\n        _CACHED_CHAIN_ID = block.chainid;\\n        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);\\n        _TYPE_HASH = typeHash;\\n    }\\n\\n    /**\\n     * @dev Returns the domain separator for the current chain.\\n     */\\n    function _domainSeparatorV4() internal view returns (bytes32) {\\n        if (block.chainid == _CACHED_CHAIN_ID) {\\n            return _CACHED_DOMAIN_SEPARATOR;\\n        } else {\\n            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);\\n        }\\n    }\\n\\n    function _buildDomainSeparator(\\n        bytes32 typeHash,\\n        bytes32 nameHash,\\n        bytes32 versionHash\\n    ) private view returns (bytes32) {\\n        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));\\n    }\\n\\n    /**\\n     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\\n     * function returns the hash of the fully encoded EIP712 message for this domain.\\n     *\\n     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\\n     *\\n     * ```solidity\\n     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\\n     *     keccak256(\\\"Mail(address to,string contents)\\\"),\\n     *     mailTo,\\n     *     keccak256(bytes(mailContents))\\n     * )));\\n     * address signer = ECDSA.recover(digest, signature);\\n     * ```\\n     */\\n    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {\\n        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);\\n    }\\n}\\n\",\"keccak256\":\"0xba18d725602452307e5b278ed4566616c63792d89f3a0388a6f285428c26e681\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"contracts/ControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\\\";\\n\\nimport \\\"./interfaces/IControlledToken.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 Controlled ERC20 Token\\n * @author PoolTogether Inc Team\\n * @notice  ERC20 Tokens with a controller for minting & burning\\n */\\ncontract ControlledToken is ERC20Permit, IControlledToken {\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice Interface to the contract responsible for controlling mint/burn\\n    address public override immutable controller;\\n\\n    /// @notice ERC20 controlled token decimals.\\n    uint8 private immutable _decimals;\\n\\n    /* ============ Events ============ */\\n\\n    /// @dev Emitted when contract is deployed\\n    event Deployed(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /* ============ Modifiers ============ */\\n\\n    /// @dev Function modifier to ensure that the caller is the controller contract\\n    modifier onlyController() {\\n        require(msg.sender == address(controller), \\\"ControlledToken/only-controller\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /// @notice Deploy the Controlled Token with Token Details and the Controller\\n    /// @param _name The name of the Token\\n    /// @param _symbol The symbol for the Token\\n    /// @param decimals_ The number of decimals for the Token\\n    /// @param _controller Address of the Controller contract for minting & burning\\n    constructor(\\n        string memory _name,\\n        string memory _symbol,\\n        uint8 decimals_,\\n        address _controller\\n    ) ERC20Permit(\\\"PoolTogether ControlledToken\\\") ERC20(_name, _symbol) {\\n        require(address(_controller) != address(0), \\\"ControlledToken/controller-not-zero-address\\\");\\n        controller = _controller;\\n\\n        require(decimals_ > 0, \\\"ControlledToken/decimals-gt-zero\\\");\\n        _decimals = decimals_;\\n\\n        emit Deployed(_name, _symbol, decimals_, _controller);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @notice Allows the controller to mint tokens for a user account\\n    /// @dev May be overridden to provide more granular control over minting\\n    /// @param _user Address of the receiver of the minted tokens\\n    /// @param _amount Amount of tokens to mint\\n    function controllerMint(address _user, uint256 _amount)\\n        external\\n        virtual\\n        override\\n        onlyController\\n    {\\n        _mint(_user, _amount);\\n    }\\n\\n    /// @notice Allows the controller to burn tokens from a user account\\n    /// @dev May be overridden to provide more granular control over burning\\n    /// @param _user Address of the holder account to burn tokens from\\n    /// @param _amount Amount of tokens to burn\\n    function controllerBurn(address _user, uint256 _amount)\\n        external\\n        virtual\\n        override\\n        onlyController\\n    {\\n        _burn(_user, _amount);\\n    }\\n\\n    /// @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n    /// @dev May be overridden to provide more granular control over operator-burning\\n    /// @param _operator Address of the operator performing the burn action via the controller contract\\n    /// @param _user Address of the holder account to burn tokens from\\n    /// @param _amount Amount of tokens to burn\\n    function controllerBurnFrom(\\n        address _operator,\\n        address _user,\\n        uint256 _amount\\n    ) external virtual override onlyController {\\n        if (_operator != _user) {\\n            _approve(_user, _operator, allowance(_user, _operator) - _amount);\\n        }\\n\\n        _burn(_user, _amount);\\n    }\\n\\n    /// @notice Returns the ERC20 controlled token decimals.\\n    /// @dev This value should be equal to the decimals of the token used to deposit into the pool.\\n    /// @return uint8 decimals.\\n    function decimals() public view virtual override returns (uint8) {\\n        return _decimals;\\n    }\\n}\\n\",\"keccak256\":\"0x7dec4c4427ea75702a706e574d17751ca989b2aaea4991380a126b611d95ff9e\",\"license\":\"GPL-3.0\"},\"contracts/Ticket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport \\\"./libraries/ExtendedSafeCastLib.sol\\\";\\nimport \\\"./libraries/TwabLib.sol\\\";\\nimport \\\"./interfaces/ITicket.sol\\\";\\nimport \\\"./ControlledToken.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 Ticket\\n  * @author PoolTogether Inc Team\\n  * @notice The Ticket extends the standard ERC20 and ControlledToken interfaces with time-weighted average balance functionality.\\n            The average balance held by a user between two timestamps can be calculated, as well as the historic balance.  The\\n            historic total supply is available as well as the average total supply between two timestamps.\\n\\n            A user may \\\"delegate\\\" their balance; increasing another user's historic balance while retaining their tokens.\\n*/\\ncontract Ticket is ControlledToken, ITicket {\\n    using SafeERC20 for IERC20;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    // solhint-disable-next-line var-name-mixedcase\\n    bytes32 private immutable _DELEGATE_TYPEHASH =\\n        keccak256(\\\"Delegate(address user,address delegate,uint256 nonce,uint256 deadline)\\\");\\n\\n    /// @notice Record of token holders TWABs for each account.\\n    mapping(address => TwabLib.Account) internal userTwabs;\\n\\n    /// @notice Record of tickets total supply and ring buff parameters used for observation.\\n    TwabLib.Account internal totalSupplyTwab;\\n\\n    /// @notice Mapping of delegates.  Each address can delegate their ticket power to another.\\n    mapping(address => address) internal delegates;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructs Ticket with passed parameters.\\n     * @param _name ERC20 ticket token name.\\n     * @param _symbol ERC20 ticket token symbol.\\n     * @param decimals_ ERC20 ticket token decimals.\\n     * @param _controller ERC20 ticket controller address (ie: Prize Pool address).\\n     */\\n    constructor(\\n        string memory _name,\\n        string memory _symbol,\\n        uint8 decimals_,\\n        address _controller\\n    ) ControlledToken(_name, _symbol, decimals_, _controller) {}\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc ITicket\\n    function getAccountDetails(address _user)\\n        external\\n        view\\n        override\\n        returns (TwabLib.AccountDetails memory)\\n    {\\n        return userTwabs[_user].details;\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getTwab(address _user, uint16 _index)\\n        external\\n        view\\n        override\\n        returns (ObservationLib.Observation memory)\\n    {\\n        return userTwabs[_user].twabs[_index];\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getBalanceAt(address _user, uint64 _target) external view override returns (uint256) {\\n        TwabLib.Account storage account = userTwabs[_user];\\n\\n        return\\n            TwabLib.getBalanceAt(\\n                account.twabs,\\n                account.details,\\n                uint32(_target),\\n                uint32(block.timestamp)\\n            );\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getAverageBalancesBetween(\\n        address _user,\\n        uint64[] calldata _startTimes,\\n        uint64[] calldata _endTimes\\n    ) external view override returns (uint256[] memory) {\\n        return _getAverageBalancesBetween(userTwabs[_user], _startTimes, _endTimes);\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata _startTimes,\\n        uint64[] calldata _endTimes\\n    ) external view override returns (uint256[] memory) {\\n        return _getAverageBalancesBetween(totalSupplyTwab, _startTimes, _endTimes);\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getAverageBalanceBetween(\\n        address _user,\\n        uint64 _startTime,\\n        uint64 _endTime\\n    ) external view override returns (uint256) {\\n        TwabLib.Account storage account = userTwabs[_user];\\n\\n        return\\n            TwabLib.getAverageBalanceBetween(\\n                account.twabs,\\n                account.details,\\n                uint32(_startTime),\\n                uint32(_endTime),\\n                uint32(block.timestamp)\\n            );\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getBalancesAt(address _user, uint64[] calldata _targets)\\n        external\\n        view\\n        override\\n        returns (uint256[] memory)\\n    {\\n        uint256 length = _targets.length;\\n        uint256[] memory _balances = new uint256[](length);\\n\\n        TwabLib.Account storage twabContext = userTwabs[_user];\\n        TwabLib.AccountDetails memory details = twabContext.details;\\n\\n        for (uint256 i = 0; i < length; i++) {\\n            _balances[i] = TwabLib.getBalanceAt(\\n                twabContext.twabs,\\n                details,\\n                uint32(_targets[i]),\\n                uint32(block.timestamp)\\n            );\\n        }\\n\\n        return _balances;\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getTotalSupplyAt(uint64 _target) external view override returns (uint256) {\\n        return\\n            TwabLib.getBalanceAt(\\n                totalSupplyTwab.twabs,\\n                totalSupplyTwab.details,\\n                uint32(_target),\\n                uint32(block.timestamp)\\n            );\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getTotalSuppliesAt(uint64[] calldata _targets)\\n        external\\n        view\\n        override\\n        returns (uint256[] memory)\\n    {\\n        uint256 length = _targets.length;\\n        uint256[] memory totalSupplies = new uint256[](length);\\n\\n        TwabLib.AccountDetails memory details = totalSupplyTwab.details;\\n\\n        for (uint256 i = 0; i < length; i++) {\\n            totalSupplies[i] = TwabLib.getBalanceAt(\\n                totalSupplyTwab.twabs,\\n                details,\\n                uint32(_targets[i]),\\n                uint32(block.timestamp)\\n            );\\n        }\\n\\n        return totalSupplies;\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function delegateOf(address _user) external view override returns (address) {\\n        return delegates[_user];\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function controllerDelegateFor(address _user, address _to) external override onlyController {\\n        _delegate(_user, _to);\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function delegateWithSignature(\\n        address _user,\\n        address _newDelegate,\\n        uint256 _deadline,\\n        uint8 _v,\\n        bytes32 _r,\\n        bytes32 _s\\n    ) external virtual override {\\n        require(block.timestamp <= _deadline, \\\"Ticket/delegate-expired-deadline\\\");\\n\\n        bytes32 structHash = keccak256(abi.encode(_DELEGATE_TYPEHASH, _user, _newDelegate, _useNonce(_user), _deadline));\\n\\n        bytes32 hash = _hashTypedDataV4(structHash);\\n\\n        address signer = ECDSA.recover(hash, _v, _r, _s);\\n        require(signer == _user, \\\"Ticket/delegate-invalid-signature\\\");\\n\\n        _delegate(_user, _newDelegate);\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function delegate(address _to) external virtual override {\\n        _delegate(msg.sender, _to);\\n    }\\n\\n    /// @notice Delegates a users chance to another\\n    /// @param _user The user whose balance should be delegated\\n    /// @param _to The delegate\\n    function _delegate(address _user, address _to) internal {\\n        uint256 balance = balanceOf(_user);\\n        address currentDelegate = delegates[_user];\\n\\n        if (currentDelegate == _to) {\\n            return;\\n        }\\n\\n        delegates[_user] = _to;\\n\\n        _transferTwab(currentDelegate, _to, balance);\\n\\n        emit Delegated(_user, _to);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param _account The user whose balance is checked.\\n     * @param _startTimes The start time of the time frame.\\n     * @param _endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function _getAverageBalancesBetween(\\n        TwabLib.Account storage _account,\\n        uint64[] calldata _startTimes,\\n        uint64[] calldata _endTimes\\n    ) internal view returns (uint256[] memory) {\\n        uint256 startTimesLength = _startTimes.length;\\n        require(startTimesLength == _endTimes.length, \\\"Ticket/start-end-times-length-match\\\");\\n\\n        TwabLib.AccountDetails memory accountDetails = _account.details;\\n\\n        uint256[] memory averageBalances = new uint256[](startTimesLength);\\n        uint32 currentTimestamp = uint32(block.timestamp);\\n\\n        for (uint256 i = 0; i < startTimesLength; i++) {\\n            averageBalances[i] = TwabLib.getAverageBalanceBetween(\\n                _account.twabs,\\n                accountDetails,\\n                uint32(_startTimes[i]),\\n                uint32(_endTimes[i]),\\n                currentTimestamp\\n            );\\n        }\\n\\n        return averageBalances;\\n    }\\n\\n    // @inheritdoc ERC20\\n    function _beforeTokenTransfer(address _from, address _to, uint256 _amount) internal override {\\n        if (_from == _to) {\\n            return;\\n        }\\n\\n        address _fromDelegate;\\n        if (_from != address(0)) {\\n            _fromDelegate = delegates[_from];\\n        }\\n\\n        address _toDelegate;\\n        if (_to != address(0)) {\\n            _toDelegate = delegates[_to];\\n        }\\n\\n        _transferTwab(_fromDelegate, _toDelegate, _amount);\\n    }\\n\\n    /// @notice Transfers the given TWAB balance from one user to another\\n    /// @param _from The user to transfer the balance from.  May be zero in the event of a mint.\\n    /// @param _to The user to transfer the balance to.  May be zero in the event of a burn.\\n    /// @param _amount The balance that is being transferred.\\n    function _transferTwab(address _from, address _to, uint256 _amount) internal {\\n        // If we are transferring tokens from a delegated account to an undelegated account\\n        if (_from != address(0)) {\\n            _decreaseUserTwab(_from, _amount);\\n\\n            if (_to == address(0)) {\\n                _decreaseTotalSupplyTwab(_amount);\\n            }\\n        }\\n\\n        // If we are transferring tokens from an undelegated account to a delegated account\\n        if (_to != address(0)) {\\n            _increaseUserTwab(_to, _amount);\\n\\n            if (_from == address(0)) {\\n                _increaseTotalSupplyTwab(_amount);\\n            }\\n        }\\n    }\\n\\n    /**\\n     * @notice Increase `_to` TWAB balance.\\n     * @param _to Address of the delegate.\\n     * @param _amount Amount of tokens to be added to `_to` TWAB balance.\\n     */\\n    function _increaseUserTwab(\\n        address _to,\\n        uint256 _amount\\n    ) internal {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        TwabLib.Account storage _account = userTwabs[_to];\\n\\n        (\\n            TwabLib.AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        ) = TwabLib.increaseBalance(_account, _amount.toUint208(), uint32(block.timestamp));\\n\\n        _account.details = accountDetails;\\n\\n        if (isNew) {\\n            emit NewUserTwab(_to, twab);\\n        }\\n    }\\n\\n    /**\\n     * @notice Decrease `_to` TWAB balance.\\n     * @param _to Address of the delegate.\\n     * @param _amount Amount of tokens to be added to `_to` TWAB balance.\\n     */\\n    function _decreaseUserTwab(\\n        address _to,\\n        uint256 _amount\\n    ) internal {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        TwabLib.Account storage _account = userTwabs[_to];\\n\\n        (\\n            TwabLib.AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        ) = TwabLib.decreaseBalance(\\n                _account,\\n                _amount.toUint208(),\\n                \\\"Ticket/twab-burn-lt-balance\\\",\\n                uint32(block.timestamp)\\n            );\\n\\n        _account.details = accountDetails;\\n\\n        if (isNew) {\\n            emit NewUserTwab(_to, twab);\\n        }\\n    }\\n\\n    /// @notice Decreases the total supply twab.  Should be called anytime a balance moves from delegated to undelegated\\n    /// @param _amount The amount to decrease the total by\\n    function _decreaseTotalSupplyTwab(uint256 _amount) internal {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        (\\n            TwabLib.AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory tsTwab,\\n            bool tsIsNew\\n        ) = TwabLib.decreaseBalance(\\n                totalSupplyTwab,\\n                _amount.toUint208(),\\n                \\\"Ticket/burn-amount-exceeds-total-supply-twab\\\",\\n                uint32(block.timestamp)\\n            );\\n\\n        totalSupplyTwab.details = accountDetails;\\n\\n        if (tsIsNew) {\\n            emit NewTotalSupplyTwab(tsTwab);\\n        }\\n    }\\n\\n    /// @notice Increases the total supply twab.  Should be called anytime a balance moves from undelegated to delegated\\n    /// @param _amount The amount to increase the total by\\n    function _increaseTotalSupplyTwab(uint256 _amount) internal {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        (\\n            TwabLib.AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory _totalSupply,\\n            bool tsIsNew\\n        ) = TwabLib.increaseBalance(totalSupplyTwab, _amount.toUint208(), uint32(block.timestamp));\\n\\n        totalSupplyTwab.details = accountDetails;\\n\\n        if (tsIsNew) {\\n            emit NewTotalSupplyTwab(_totalSupply);\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x8a28b868583b1e04c4bcd8667b9e06309f94b4e854bcc7cdc7716fc396bd21b8\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"},\"contracts/test/TicketHarness.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"../Ticket.sol\\\";\\n\\ncontract TicketHarness is Ticket {\\n    using SafeCast for uint256;\\n\\n    constructor(\\n        string memory _name,\\n        string memory _symbol,\\n        uint8 decimals_,\\n        address _controller\\n    ) Ticket(_name, _symbol, decimals_, _controller) {}\\n\\n    function flashLoan(address _to, uint256 _amount) external {\\n        _mint(_to, _amount);\\n        _burn(_to, _amount);\\n    }\\n\\n    function burn(address _from, uint256 _amount) external {\\n        _burn(_from, _amount);\\n    }\\n\\n    function mint(address _to, uint256 _amount) external {\\n        _mint(_to, _amount);\\n    }\\n\\n    function mintTwice(address _to, uint256 _amount) external {\\n        _mint(_to, _amount);\\n        _mint(_to, _amount);\\n    }\\n\\n    /// @dev we need to use a different function name than `transfer`\\n    /// otherwise it collides with the `transfer` function of the `ERC20` contract\\n    function transferTo(\\n        address _sender,\\n        address _recipient,\\n        uint256 _amount\\n    ) external {\\n        _transfer(_sender, _recipient, _amount);\\n    }\\n\\n    function getBalanceTx(address _user, uint32 _target) external view returns (uint256) {\\n        TwabLib.Account storage account = userTwabs[_user];\\n\\n        return\\n            TwabLib.getBalanceAt(account.twabs, account.details, _target, uint32(block.timestamp));\\n    }\\n\\n    function getAverageBalanceTx(\\n        address _user,\\n        uint32 _startTime,\\n        uint32 _endTime\\n    ) external view returns (uint256) {\\n        TwabLib.Account storage account = userTwabs[_user];\\n\\n        return\\n            TwabLib.getAverageBalanceBetween(\\n                account.twabs,\\n                account.details,\\n                uint32(_startTime),\\n                uint32(_endTime),\\n                uint32(block.timestamp)\\n            );\\n    }\\n}\\n\",\"keccak256\":\"0xc48d106b280d3293ad63a4c1ecda5f4d448aac2da736c7684277ff9bdaf180c1\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 55,
                "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 61,
                "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 63,
                "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 65,
                "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 67,
                "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 711,
                "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                "label": "_nonces",
                "offset": 0,
                "slot": "5",
                "type": "t_mapping(t_address,t_struct(Counter)2419_storage)"
              },
              {
                "astId": 9973,
                "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                "label": "userTwabs",
                "offset": 0,
                "slot": "6",
                "type": "t_mapping(t_address,t_struct(Account)12882_storage)"
              },
              {
                "astId": 9977,
                "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                "label": "totalSupplyTwab",
                "offset": 0,
                "slot": "7",
                "type": "t_struct(Account)12882_storage"
              },
              {
                "astId": 9982,
                "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                "label": "delegates",
                "offset": 0,
                "slot": "16777223",
                "type": "t_mapping(t_address,t_address)"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(Observation)12454_storage)16777215_storage": {
                "base": "t_struct(Observation)12454_storage",
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation[16777215]",
                "numberOfBytes": "536870880"
              },
              "t_mapping(t_address,t_address)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => address)",
                "numberOfBytes": "32",
                "value": "t_address"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_struct(Account)12882_storage)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => struct TwabLib.Account)",
                "numberOfBytes": "32",
                "value": "t_struct(Account)12882_storage"
              },
              "t_mapping(t_address,t_struct(Counter)2419_storage)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => struct Counters.Counter)",
                "numberOfBytes": "32",
                "value": "t_struct(Counter)2419_storage"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_struct(Account)12882_storage": {
                "encoding": "inplace",
                "label": "struct TwabLib.Account",
                "members": [
                  {
                    "astId": 12876,
                    "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                    "label": "details",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_struct(AccountDetails)12873_storage"
                  },
                  {
                    "astId": 12881,
                    "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                    "label": "twabs",
                    "offset": 0,
                    "slot": "1",
                    "type": "t_array(t_struct(Observation)12454_storage)16777215_storage"
                  }
                ],
                "numberOfBytes": "536870912"
              },
              "t_struct(AccountDetails)12873_storage": {
                "encoding": "inplace",
                "label": "struct TwabLib.AccountDetails",
                "members": [
                  {
                    "astId": 12868,
                    "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                    "label": "balance",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint208"
                  },
                  {
                    "astId": 12870,
                    "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                    "label": "nextTwabIndex",
                    "offset": 26,
                    "slot": "0",
                    "type": "t_uint24"
                  },
                  {
                    "astId": 12872,
                    "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                    "label": "cardinality",
                    "offset": 29,
                    "slot": "0",
                    "type": "t_uint24"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(Counter)2419_storage": {
                "encoding": "inplace",
                "label": "struct Counters.Counter",
                "members": [
                  {
                    "astId": 2418,
                    "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                    "label": "_value",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint256"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(Observation)12454_storage": {
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation",
                "members": [
                  {
                    "astId": 12451,
                    "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                    "label": "amount",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint224"
                  },
                  {
                    "astId": 12453,
                    "contract": "contracts/test/TicketHarness.sol:TicketHarness",
                    "label": "timestamp",
                    "offset": 28,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint208": {
                "encoding": "inplace",
                "label": "uint208",
                "numberOfBytes": "26"
              },
              "t_uint224": {
                "encoding": "inplace",
                "label": "uint224",
                "numberOfBytes": "28"
              },
              "t_uint24": {
                "encoding": "inplace",
                "label": "uint24",
                "numberOfBytes": "3"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              }
            }
          },
          "userdoc": {
            "events": {
              "Delegated(address,address)": {
                "notice": "Emitted when TWAB balance has been delegated to another user."
              },
              "NewTotalSupplyTwab((uint224,uint32))": {
                "notice": "Emitted when a new total supply TWAB has been recorded."
              },
              "NewUserTwab(address,(uint224,uint32))": {
                "notice": "Emitted when a new TWAB has been recorded."
              },
              "TicketInitialized(string,string,uint8,address)": {
                "notice": "Emitted when ticket is initialized."
              }
            },
            "kind": "user",
            "methods": {
              "controller()": {
                "notice": "Interface to the contract responsible for controlling mint/burn"
              },
              "controllerBurn(address,uint256)": {
                "notice": "Allows the controller to burn tokens from a user account"
              },
              "controllerBurnFrom(address,address,uint256)": {
                "notice": "Allows an operator via the controller to burn tokens on behalf of a user account"
              },
              "controllerDelegateFor(address,address)": {
                "notice": "Allows the controller to delegate on a users behalf."
              },
              "controllerMint(address,uint256)": {
                "notice": "Allows the controller to mint tokens for a user account"
              },
              "decimals()": {
                "notice": "Returns the ERC20 controlled token decimals."
              },
              "delegate(address)": {
                "notice": "Delegate time-weighted average balances to an alternative address."
              },
              "delegateOf(address)": {
                "notice": "Retrieves the address of the delegate to whom `user` has delegated their tickets."
              },
              "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": {
                "notice": "Allows a user to delegate via signature"
              },
              "getAccountDetails(address)": {
                "notice": "Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality."
              },
              "getAverageBalanceBetween(address,uint64,uint64)": {
                "notice": "Retrieves the average balance held by a user for a given time frame."
              },
              "getAverageBalancesBetween(address,uint64[],uint64[])": {
                "notice": "Retrieves the average balances held by a user for a given time frame."
              },
              "getAverageTotalSuppliesBetween(uint64[],uint64[])": {
                "notice": "Retrieves the average total supply balance for a set of given time frames."
              },
              "getBalanceAt(address,uint64)": {
                "notice": "Retrieves `user` TWAB balance."
              },
              "getBalancesAt(address,uint64[])": {
                "notice": "Retrieves `user` TWAB balances."
              },
              "getTotalSuppliesAt(uint64[])": {
                "notice": "Retrieves the total supply TWAB balance between the given timestamps range."
              },
              "getTotalSupplyAt(uint64)": {
                "notice": "Retrieves the total supply TWAB balance at the given timestamp."
              },
              "getTwab(address,uint16)": {
                "notice": "Gets the TWAB at a specific index for a user."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/test/TwabLibraryExposed.sol": {
        "TwabLibExposed": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint208",
                      "name": "balance",
                      "type": "uint208"
                    },
                    {
                      "internalType": "uint24",
                      "name": "nextTwabIndex",
                      "type": "uint24"
                    },
                    {
                      "internalType": "uint24",
                      "name": "cardinality",
                      "type": "uint24"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct TwabLib.AccountDetails",
                  "name": "accountDetails",
                  "type": "tuple"
                },
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct ObservationLib.Observation",
                  "name": "twab",
                  "type": "tuple"
                },
                {
                  "indexed": false,
                  "internalType": "bool",
                  "name": "isNew",
                  "type": "bool"
                }
              ],
              "name": "Updated",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "MAX_CARDINALITY",
              "outputs": [
                {
                  "internalType": "uint24",
                  "name": "",
                  "type": "uint24"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                },
                {
                  "internalType": "string",
                  "name": "_revertMessage",
                  "type": "string"
                },
                {
                  "internalType": "uint32",
                  "name": "_currentTime",
                  "type": "uint32"
                }
              ],
              "name": "decreaseBalance",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint208",
                      "name": "balance",
                      "type": "uint208"
                    },
                    {
                      "internalType": "uint24",
                      "name": "nextTwabIndex",
                      "type": "uint24"
                    },
                    {
                      "internalType": "uint24",
                      "name": "cardinality",
                      "type": "uint24"
                    }
                  ],
                  "internalType": "struct TwabLib.AccountDetails",
                  "name": "accountDetails",
                  "type": "tuple"
                },
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct ObservationLib.Observation",
                  "name": "twab",
                  "type": "tuple"
                },
                {
                  "internalType": "bool",
                  "name": "isNew",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "details",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint208",
                      "name": "balance",
                      "type": "uint208"
                    },
                    {
                      "internalType": "uint24",
                      "name": "nextTwabIndex",
                      "type": "uint24"
                    },
                    {
                      "internalType": "uint24",
                      "name": "cardinality",
                      "type": "uint24"
                    }
                  ],
                  "internalType": "struct TwabLib.AccountDetails",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_startTime",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "_endTime",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "_currentTime",
                  "type": "uint32"
                }
              ],
              "name": "getAverageBalanceBetween",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_target",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "_currentTime",
                  "type": "uint32"
                }
              ],
              "name": "getBalanceAt",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                },
                {
                  "internalType": "uint32",
                  "name": "_currentTime",
                  "type": "uint32"
                }
              ],
              "name": "increaseBalance",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint208",
                      "name": "balance",
                      "type": "uint208"
                    },
                    {
                      "internalType": "uint24",
                      "name": "nextTwabIndex",
                      "type": "uint24"
                    },
                    {
                      "internalType": "uint24",
                      "name": "cardinality",
                      "type": "uint24"
                    }
                  ],
                  "internalType": "struct TwabLib.AccountDetails",
                  "name": "accountDetails",
                  "type": "tuple"
                },
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct ObservationLib.Observation",
                  "name": "twab",
                  "type": "tuple"
                },
                {
                  "internalType": "bool",
                  "name": "isNew",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "newestTwab",
              "outputs": [
                {
                  "internalType": "uint24",
                  "name": "index",
                  "type": "uint24"
                },
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct ObservationLib.Observation",
                  "name": "twab",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "oldestTwab",
              "outputs": [
                {
                  "internalType": "uint24",
                  "name": "index",
                  "type": "uint24"
                },
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct ObservationLib.Observation",
                  "name": "twab",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint208",
                      "name": "balance",
                      "type": "uint208"
                    },
                    {
                      "internalType": "uint24",
                      "name": "nextTwabIndex",
                      "type": "uint24"
                    },
                    {
                      "internalType": "uint24",
                      "name": "cardinality",
                      "type": "uint24"
                    }
                  ],
                  "internalType": "struct TwabLib.AccountDetails",
                  "name": "_accountDetails",
                  "type": "tuple"
                }
              ],
              "name": "push",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint208",
                      "name": "balance",
                      "type": "uint208"
                    },
                    {
                      "internalType": "uint24",
                      "name": "nextTwabIndex",
                      "type": "uint24"
                    },
                    {
                      "internalType": "uint24",
                      "name": "cardinality",
                      "type": "uint24"
                    }
                  ],
                  "internalType": "struct TwabLib.AccountDetails",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "twabs",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct ObservationLib.Observation[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc.",
            "kind": "dev",
            "methods": {},
            "title": "TwabLibExposed contract to test TwabLib library",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b506118d4806100206000396000f3fe608060405234801561001057600080fd5b50600436106100be5760003560e01c80637c2014c6116100765780638ca0b7711161005b5780638ca0b771146101ca578063c3c191fd146101df578063ff429279146101f257600080fd5b80637c2014c61461018a5780638200d873146101ac57600080fd5b8063565974d3116100a7578063565974d3146101025780636126af6e1461016157806363ee94761461018257600080fd5b806339095bcb146100c35780633c4e9c1e146100ec575b600080fd5b6100d66100d136600461131f565b610205565b6040516100e39190611593565b60405180910390f35b6100f4610231565b6040516100e392919061162e565b6100d6604080516060810182526000808252602082018190529181019190915250604080516060810182526000546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915290565b61017461016f36600461149e565b610297565b6040519081526020016100e3565b6100f46102ec565b61019d610198366004611399565b61034a565b6040516100e3939291906115c9565b6101b662ffffff81565b60405162ffffff90911681526020016100e3565b6101d2610456565b6040516100e391906114d8565b6101746101ed366004611474565b61054e565b61019d610200366004611448565b610598565b604080516060810182526000808252602082018190529181019190915261022b826106a1565b92915050565b6040805180820190915260008082526020820181905290604080516060810182526000546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915261028f9060019061070a565b915091509091565b60408051606081018252600080546001600160d01b038116835262ffffff600160d01b820481166020850152600160e81b90910416928201929092526102e29060019086868661078a565b90505b9392505050565b6040805180820190915260008082526020820181905290604080516060810182526000546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915261028f906001906107c2565b60408051606081018252600080825260208201819052918101919091526040805180820190915260008082526020820152600061038a600087878761083f565b82516000805460208601516040808801516001600160d01b039095167fffffff000000000000000000000000000000000000000000000000000000000090931692909217600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b91909416029290921790555192955090935091507f883fc20cc248074e2c1dd4a19bf6d2004d023d0be047378761fd6925810f381a90610445908590859085906115c9565b60405180910390a193509350939050565b6000805460609190600160e81b900462ffffff1667ffffffffffffffff81111561048257610482611888565b6040519080825280602002602001820160405280156104c757816020015b60408051808201909152600080825260208201528152602001906001900390816104a05790505b50905060005b81518110156105485760018162ffffff81106104eb576104eb611872565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152825183908390811061052a5761052a611872565b60200260200101819052508080610540906117f9565b9150506104cd565b50919050565b60408051606081018252600080546001600160d01b038116835262ffffff600160d01b820481166020850152600160e81b90910416928201929092526102e5906001908585610926565b6040805160608101825260008082526020820181905291810191909152604080518082019091526000808252602082015260006105d76000868661095e565b82516000805460208601516040808801516001600160d01b039095167fffffff000000000000000000000000000000000000000000000000000000000090931692909217600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b91909416029290921790555192955090935091507f883fc20cc248074e2c1dd4a19bf6d2004d023d0be047378761fd6925810f381a90610692908590859085906115c9565b60405180910390a19250925092565b604080516060810182526000808252602080830182905292820152908201516106d19062ffffff90811690610a07565b62ffffff9081166020840152604083015181161015610706576001826040018181516106fd91906116de565b62ffffff169052505b5090565b6040805180820190915260008082526020820181905290610739836020015162ffffff1662ffffff8016610a1d565b9150838262ffffff1662ffffff811061075457610754611872565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919491935090915050565b6000808263ffffffff168463ffffffff16116107a657836107a8565b825b90506107b78787878487610a45565b979650505050505050565b604080518082019091526000808252602082018190529082602001519150838262ffffff1662ffffff81106107f9576107f9611872565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290915061083857600091508382610754565b9250929050565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825287546001600160d01b0380821680845262ffffff600160d01b840481166020860152600160e81b90930490921693830193909352600092879190891611156108f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ef919061153e565b60405180910390fd5b50610907886001018287610ae1565b8251999099036001600160d01b03168252909990985095505050505050565b6000808263ffffffff168463ffffffff16116109425783610944565b825b905061095286868386610bc8565b9150505b949350505050565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825286546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b90910416918101919091526000906109da600188018287610ae1565b835192965090945092506109ef908790611691565b6001600160d01b031684525091959094509092509050565b60006102e5610a178460016116fc565b83610ce1565b600081610a2c5750600061022b565b6102e56001610a3b84866116fc565b610a1791906117c5565b6000806000610a5488886107c2565b91509150600080610a658a8a61070a565b915091506000610a7b8b8b8487878a8f8e610ced565b90506000610a8f8c8c8588888b8f8f610ced565b9050610aa4816020015183602001518a610e37565b63ffffffff1682600001518260000151610abe919061179d565b610ac89190611734565b6001600160e01b03169c9b505050505050505050505050565b60408051606081018252600080825260208201819052918101919091526040805180820190915260008082526020820152600080610b1f878761070a565b9150508463ffffffff16816020015163ffffffff161415610b4857859350915060009050610bbf565b6000610b628288600001516001600160d01b031688610f0b565b90508088886020015162ffffff1662ffffff8110610b8257610b82611872565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556000610bb3886106a1565b95509093506001925050505b93509350939050565b604080518082019091526000808252602082018190529081906040805180820190915260008082526020820152610bff888861070a565b60208101519194509150610c209063ffffffff9081169088908890610f8616565b15610c3b57505084516001600160d01b031691506109569050565b6000610c4789896107c2565b6020810151909350909150610c689063ffffffff808a169190899061105716565b15610c7a576000945050505050610956565b610c8c8985838a8c604001518b611126565b8094508193505050610ca78360200151836020015188610e37565b63ffffffff1682600001518460000151610cc1919061179d565b610ccb9190611734565b6001600160e01b03169998505050505050505050565b60006102e58284611832565b6040805180820190915260008082526020820152610d208383896020015163ffffffff166110579092919063ffffffff16565b15610d4457610d3d8789600001516001600160d01b031685610f0b565b9050610e2b565b8263ffffffff16876020015163ffffffff161415610d63575085610e2b565b8263ffffffff16866020015163ffffffff161415610d82575084610e2b565b610da18660200151838563ffffffff166110579092919063ffffffff16565b15610dc65750604080518082019091526000815263ffffffff83166020820152610e2b565b600080610ddb8b8888888e6040015189611126565b915091506000610df48260200151846020015187610e37565b63ffffffff1683600001518360000151610e0e919061179d565b610e189190611734565b9050610e25838288610f0b565b93505050505b98975050505050505050565b60008163ffffffff168463ffffffff1611158015610e6157508163ffffffff168363ffffffff1611155b15610e7757610e7083856117dc565b90506102e5565b60008263ffffffff168563ffffffff1611610ea657610ea163ffffffff8616640100000000611714565b610eae565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff1611610ee657610ee163ffffffff8616640100000000611714565b610eee565b8463ffffffff165b64ffffffffff169050610f0181836117c5565b9695505050505050565b60408051808201909152600080825260208201526040518060400160405280610f498660200151858663ffffffff16610e379092919063ffffffff16565b610f599063ffffffff168661176e565b8651610f6591906116bc565b6001600160e01b031681526020018363ffffffff1681525090509392505050565b60008163ffffffff168463ffffffff1611158015610fb057508163ffffffff168363ffffffff1611155b15610fcc578263ffffffff168463ffffffff16111590506102e5565b60008263ffffffff168563ffffffff1611610ffb57610ff663ffffffff8616640100000000611714565b611003565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff161161103b5761103663ffffffff8616640100000000611714565b611043565b8463ffffffff165b64ffffffffff169091111595945050505050565b60008163ffffffff168463ffffffff161115801561108157508163ffffffff168363ffffffff1611155b1561109c578263ffffffff168463ffffffff161090506102e5565b60008263ffffffff168563ffffffff16116110cb576110c663ffffffff8616640100000000611714565b6110d3565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff161161110b5761110663ffffffff8616640100000000611714565b611113565b8463ffffffff165b64ffffffffff1690911095945050505050565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff1610611171578862ffffff1661118c565b600161118262ffffff8816846116fc565b61118c91906117c5565b905060005b600261119d83856116fc565b6111a7919061175a565b90508a6111b9828962ffffff16610ce1565b62ffffff1662ffffff81106111d0576111d0611872565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290955080611218576112108260016116fc565b935050611191565b8b611228838a62ffffff16610a07565b62ffffff1662ffffff811061123f5761123f611872565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b9091048116602083015290955060009061128490838116908c908b90610f8616565b90508080156112ad57506112ad8660200151898c63ffffffff16610f869092919063ffffffff16565b156112b95750506112e5565b806112d0576112c96001846117c5565b93506112de565b6112db8360016116fc565b94505b5050611191565b505050965096945050505050565b803562ffffff8116811461130657600080fd5b919050565b803563ffffffff8116811461130657600080fd5b60006060828403121561133157600080fd5b6040516060810181811067ffffffffffffffff8211171561135457611354611888565b60405282356001600160d01b038116811461136e57600080fd5b815261137c602084016112f3565b602082015261138d604084016112f3565b60408201529392505050565b6000806000606084860312156113ae57600080fd5b8335925060208085013567ffffffffffffffff808211156113ce57600080fd5b818701915087601f8301126113e257600080fd5b8135818111156113f4576113f4611888565b61140684601f19601f84011601611660565b9150808252888482850101111561141c57600080fd5b808484018584013760008482840101525080945050505061143f6040850161130b565b90509250925092565b6000806040838503121561145b57600080fd5b8235915061146b6020840161130b565b90509250929050565b6000806040838503121561148757600080fd5b6114908361130b565b915061146b6020840161130b565b6000806000606084860312156114b357600080fd5b6114bc8461130b565b92506114ca6020850161130b565b915061143f6040850161130b565b602080825282518282018190526000919060409081850190868401855b828110156115315761152184835180516001600160e01b0316825260209081015163ffffffff16910152565b92840192908501906001016114f5565b5091979650505050505050565b600060208083528351808285015260005b8181101561156b5785810183015185820160400152820161154f565b8181111561157d576000604083870101525b50601f01601f1916929092016040019392505050565b6060810161022b828480516001600160d01b0316825260208082015162ffffff9081169184019190915260409182015116910152565b60c081016115ff828680516001600160d01b0316825260208082015162ffffff9081169184019190915260409182015116910152565b83516001600160e01b0316606083015260209093015163ffffffff16608082015290151560a090910152919050565b62ffffff83168152606081016102e5602083018480516001600160e01b0316825260209081015163ffffffff16910152565b604051601f8201601f1916810167ffffffffffffffff8111828210171561168957611689611888565b604052919050565b60006001600160d01b038083168185168083038211156116b3576116b3611846565b01949350505050565b60006001600160e01b038083168185168083038211156116b3576116b3611846565b600062ffffff8083168185168083038211156116b3576116b3611846565b6000821982111561170f5761170f611846565b500190565b600064ffffffffff8083168185168083038211156116b3576116b3611846565b60006001600160e01b038084168061174e5761174e61185c565b92169190910492915050565b6000826117695761176961185c565b500490565b60006001600160e01b038083168185168183048111821515161561179457611794611846565b02949350505050565b60006001600160e01b03838116908316818110156117bd576117bd611846565b039392505050565b6000828210156117d7576117d7611846565b500390565b600063ffffffff838116908316818110156117bd576117bd611846565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561182b5761182b611846565b5060010190565b6000826118415761184161185c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220a62f1f64d7907c4cecdbe9b8530f7d1f04aaf82cc37e9f8ed3a5d8d23b75e3c964736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x18D4 DUP1 PUSH2 0x20 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 0xBE JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7C2014C6 GT PUSH2 0x76 JUMPI DUP1 PUSH4 0x8CA0B771 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x8CA0B771 EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0xC3C191FD EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0xFF429279 EQ PUSH2 0x1F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7C2014C6 EQ PUSH2 0x18A JUMPI DUP1 PUSH4 0x8200D873 EQ PUSH2 0x1AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x565974D3 GT PUSH2 0xA7 JUMPI DUP1 PUSH4 0x565974D3 EQ PUSH2 0x102 JUMPI DUP1 PUSH4 0x6126AF6E EQ PUSH2 0x161 JUMPI DUP1 PUSH4 0x63EE9476 EQ PUSH2 0x182 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x39095BCB EQ PUSH2 0xC3 JUMPI DUP1 PUSH4 0x3C4E9C1E EQ PUSH2 0xEC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD6 PUSH2 0xD1 CALLDATASIZE PUSH1 0x4 PUSH2 0x131F JUMP JUMPDEST PUSH2 0x205 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP2 SWAP1 PUSH2 0x1593 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF4 PUSH2 0x231 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP3 SWAP2 SWAP1 PUSH2 0x162E JUMP JUMPDEST PUSH2 0xD6 PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x16F CALLDATASIZE PUSH1 0x4 PUSH2 0x149E JUMP JUMPDEST PUSH2 0x297 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xF4 PUSH2 0x2EC JUMP JUMPDEST PUSH2 0x19D PUSH2 0x198 CALLDATASIZE PUSH1 0x4 PUSH2 0x1399 JUMP JUMPDEST PUSH2 0x34A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x15C9 JUMP JUMPDEST PUSH2 0x1B6 PUSH3 0xFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0xFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0x1D2 PUSH2 0x456 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP2 SWAP1 PUSH2 0x14D8 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x1ED CALLDATASIZE PUSH1 0x4 PUSH2 0x1474 JUMP JUMPDEST PUSH2 0x54E JUMP JUMPDEST PUSH2 0x19D PUSH2 0x200 CALLDATASIZE PUSH1 0x4 PUSH2 0x1448 JUMP JUMPDEST PUSH2 0x598 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x22B DUP3 PUSH2 0x6A1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x28F SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x70A JUMP JUMPDEST SWAP2 POP SWAP2 POP SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP4 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH2 0x2E2 SWAP1 PUSH1 0x1 SWAP1 DUP7 DUP7 DUP7 PUSH2 0x78A JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x28F SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x7C2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x38A PUSH1 0x0 DUP8 DUP8 DUP8 PUSH2 0x83F JUMP JUMPDEST DUP3 MLOAD PUSH1 0x0 DUP1 SLOAD PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x40 DUP1 DUP9 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP6 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP5 AND MUL SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE MLOAD SWAP3 SWAP6 POP SWAP1 SWAP4 POP SWAP2 POP PUSH32 0x883FC20CC248074E2C1DD4A19BF6D2004D023D0BE047378761FD6925810F381A SWAP1 PUSH2 0x445 SWAP1 DUP6 SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH2 0x15C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP4 POP SWAP4 POP SWAP4 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x60 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV PUSH3 0xFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x482 JUMPI PUSH2 0x482 PUSH2 0x1888 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x4C7 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x4A0 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x548 JUMPI PUSH1 0x1 DUP2 PUSH3 0xFFFFFF DUP2 LT PUSH2 0x4EB JUMPI PUSH2 0x4EB PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE DUP3 MLOAD DUP4 SWAP1 DUP4 SWAP1 DUP2 LT PUSH2 0x52A JUMPI PUSH2 0x52A PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x540 SWAP1 PUSH2 0x17F9 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x4CD JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP4 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH2 0x2E5 SWAP1 PUSH1 0x1 SWAP1 DUP6 DUP6 PUSH2 0x926 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x5D7 PUSH1 0x0 DUP7 DUP7 PUSH2 0x95E JUMP JUMPDEST DUP3 MLOAD PUSH1 0x0 DUP1 SLOAD PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x40 DUP1 DUP9 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP6 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP5 AND MUL SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE MLOAD SWAP3 SWAP6 POP SWAP1 SWAP4 POP SWAP2 POP PUSH32 0x883FC20CC248074E2C1DD4A19BF6D2004D023D0BE047378761FD6925810F381A SWAP1 PUSH2 0x692 SWAP1 DUP6 SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH2 0x15C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP3 DUP3 ADD MSTORE SWAP1 DUP3 ADD MLOAD PUSH2 0x6D1 SWAP1 PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP1 PUSH2 0xA07 JUMP JUMPDEST PUSH3 0xFFFFFF SWAP1 DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD DUP2 AND LT ISZERO PUSH2 0x706 JUMPI PUSH1 0x1 DUP3 PUSH1 0x40 ADD DUP2 DUP2 MLOAD PUSH2 0x6FD SWAP2 SWAP1 PUSH2 0x16DE JUMP JUMPDEST PUSH3 0xFFFFFF AND SWAP1 MSTORE POP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH2 0x739 DUP4 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP1 AND PUSH2 0xA1D JUMP JUMPDEST SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x754 JUMPI PUSH2 0x754 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP5 SWAP2 SWAP4 POP SWAP1 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x7A6 JUMPI DUP4 PUSH2 0x7A8 JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0x7B7 DUP8 DUP8 DUP8 DUP5 DUP8 PUSH2 0xA45 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP3 PUSH1 0x20 ADD MLOAD SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x7F9 JUMPI PUSH2 0x7F9 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x838 JUMPI PUSH1 0x0 SWAP2 POP DUP4 DUP3 PUSH2 0x754 JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP5 DIV DUP2 AND PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x0 SWAP3 DUP8 SWAP2 SWAP1 DUP10 AND GT ISZERO PUSH2 0x8F8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH2 0x907 DUP9 PUSH1 0x1 ADD DUP3 DUP8 PUSH2 0xAE1 JUMP JUMPDEST DUP3 MLOAD SWAP10 SWAP1 SWAP10 SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP3 MSTORE SWAP1 SWAP10 SWAP1 SWAP9 POP SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x942 JUMPI DUP4 PUSH2 0x944 JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0x952 DUP7 DUP7 DUP4 DUP7 PUSH2 0xBC8 JUMP JUMPDEST SWAP2 POP POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x9DA PUSH1 0x1 DUP9 ADD DUP3 DUP8 PUSH2 0xAE1 JUMP JUMPDEST DUP4 MLOAD SWAP3 SWAP7 POP SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x9EF SWAP1 DUP8 SWAP1 PUSH2 0x1691 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP5 MSTORE POP SWAP2 SWAP6 SWAP1 SWAP5 POP SWAP1 SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E5 PUSH2 0xA17 DUP5 PUSH1 0x1 PUSH2 0x16FC JUMP JUMPDEST DUP4 PUSH2 0xCE1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0xA2C JUMPI POP PUSH1 0x0 PUSH2 0x22B JUMP JUMPDEST PUSH2 0x2E5 PUSH1 0x1 PUSH2 0xA3B DUP5 DUP7 PUSH2 0x16FC JUMP JUMPDEST PUSH2 0xA17 SWAP2 SWAP1 PUSH2 0x17C5 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0xA54 DUP9 DUP9 PUSH2 0x7C2 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 PUSH2 0xA65 DUP11 DUP11 PUSH2 0x70A JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0xA7B DUP12 DUP12 DUP5 DUP8 DUP8 DUP11 DUP16 DUP15 PUSH2 0xCED JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xA8F DUP13 DUP13 DUP6 DUP9 DUP9 DUP12 DUP16 DUP16 PUSH2 0xCED JUMP JUMPDEST SWAP1 POP PUSH2 0xAA4 DUP2 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP11 PUSH2 0xE37 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP3 PUSH1 0x0 ADD MLOAD PUSH2 0xABE SWAP2 SWAP1 PUSH2 0x179D JUMP JUMPDEST PUSH2 0xAC8 SWAP2 SWAP1 PUSH2 0x1734 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP13 SWAP12 POP POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP1 PUSH2 0xB1F DUP8 DUP8 PUSH2 0x70A JUMP JUMPDEST SWAP2 POP POP DUP5 PUSH4 0xFFFFFFFF AND DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0xB48 JUMPI DUP6 SWAP4 POP SWAP2 POP PUSH1 0x0 SWAP1 POP PUSH2 0xBBF JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB62 DUP3 DUP9 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP9 PUSH2 0xF0B JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP9 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xB82 JUMPI PUSH2 0xB82 PUSH2 0x1872 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE PUSH1 0x0 PUSH2 0xBB3 DUP9 PUSH2 0x6A1 JUMP JUMPDEST SWAP6 POP SWAP1 SWAP4 POP PUSH1 0x1 SWAP3 POP POP POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xBFF DUP9 DUP9 PUSH2 0x70A JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP2 SWAP5 POP SWAP2 POP PUSH2 0xC20 SWAP1 PUSH4 0xFFFFFFFF SWAP1 DUP2 AND SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH2 0xF86 AND JUMP JUMPDEST ISZERO PUSH2 0xC3B JUMPI POP POP DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP2 POP PUSH2 0x956 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC47 DUP10 DUP10 PUSH2 0x7C2 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP1 SWAP4 POP SWAP1 SWAP2 POP PUSH2 0xC68 SWAP1 PUSH4 0xFFFFFFFF DUP1 DUP11 AND SWAP2 SWAP1 DUP10 SWAP1 PUSH2 0x1057 AND JUMP JUMPDEST ISZERO PUSH2 0xC7A JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0x956 JUMP JUMPDEST PUSH2 0xC8C DUP10 DUP6 DUP4 DUP11 DUP13 PUSH1 0x40 ADD MLOAD DUP12 PUSH2 0x1126 JUMP JUMPDEST DUP1 SWAP5 POP DUP2 SWAP4 POP POP POP PUSH2 0xCA7 DUP4 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP9 PUSH2 0xE37 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP5 PUSH1 0x0 ADD MLOAD PUSH2 0xCC1 SWAP2 SWAP1 PUSH2 0x179D JUMP JUMPDEST PUSH2 0xCCB SWAP2 SWAP1 PUSH2 0x1734 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E5 DUP3 DUP5 PUSH2 0x1832 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xD20 DUP4 DUP4 DUP10 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x1057 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0xD44 JUMPI PUSH2 0xD3D DUP8 DUP10 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP6 PUSH2 0xF0B JUMP JUMPDEST SWAP1 POP PUSH2 0xE2B JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0xD63 JUMPI POP DUP6 PUSH2 0xE2B JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0xD82 JUMPI POP DUP5 PUSH2 0xE2B JUMP JUMPDEST PUSH2 0xDA1 DUP7 PUSH1 0x20 ADD MLOAD DUP4 DUP6 PUSH4 0xFFFFFFFF AND PUSH2 0x1057 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0xDC6 JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xE2B JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xDDB DUP12 DUP9 DUP9 DUP9 DUP15 PUSH1 0x40 ADD MLOAD DUP10 PUSH2 0x1126 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0xDF4 DUP3 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x20 ADD MLOAD DUP8 PUSH2 0xE37 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x0 ADD MLOAD DUP4 PUSH1 0x0 ADD MLOAD PUSH2 0xE0E SWAP2 SWAP1 PUSH2 0x179D JUMP JUMPDEST PUSH2 0xE18 SWAP2 SWAP1 PUSH2 0x1734 JUMP JUMPDEST SWAP1 POP PUSH2 0xE25 DUP4 DUP3 DUP9 PUSH2 0xF0B JUMP JUMPDEST SWAP4 POP POP POP POP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0xE61 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0xE77 JUMPI PUSH2 0xE70 DUP4 DUP6 PUSH2 0x17DC JUMP JUMPDEST SWAP1 POP PUSH2 0x2E5 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0xEA6 JUMPI PUSH2 0xEA1 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0xEAE JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0xEE6 JUMPI PUSH2 0xEE1 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0xEEE JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH2 0xF01 DUP2 DUP4 PUSH2 0x17C5 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0xF49 DUP7 PUSH1 0x20 ADD MLOAD DUP6 DUP7 PUSH4 0xFFFFFFFF AND PUSH2 0xE37 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0xF59 SWAP1 PUSH4 0xFFFFFFFF AND DUP7 PUSH2 0x176E JUMP JUMPDEST DUP7 MLOAD PUSH2 0xF65 SWAP2 SWAP1 PUSH2 0x16BC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0xFB0 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0xFCC JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0x2E5 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0xFFB JUMPI PUSH2 0xFF6 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0x1003 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x103B JUMPI PUSH2 0x1036 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0x1043 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x1081 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x109C JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND LT SWAP1 POP PUSH2 0x2E5 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x10CB JUMPI PUSH2 0x10C6 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0x10D3 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x110B JUMPI PUSH2 0x1106 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0x1113 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 LT SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0x1171 JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0x118C JUMP JUMPDEST PUSH1 0x1 PUSH2 0x1182 PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x16FC JUMP JUMPDEST PUSH2 0x118C SWAP2 SWAP1 PUSH2 0x17C5 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0x119D DUP4 DUP6 PUSH2 0x16FC JUMP JUMPDEST PUSH2 0x11A7 SWAP2 SWAP1 PUSH2 0x175A JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0x11B9 DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0xCE1 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x11D0 JUMPI PUSH2 0x11D0 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0x1218 JUMPI PUSH2 0x1210 DUP3 PUSH1 0x1 PUSH2 0x16FC JUMP JUMPDEST SWAP4 POP POP PUSH2 0x1191 JUMP JUMPDEST DUP12 PUSH2 0x1228 DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0xA07 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x123F JUMPI PUSH2 0x123F PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0x1284 SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0xF86 AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x12AD JUMPI POP PUSH2 0x12AD DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0xF86 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x12B9 JUMPI POP POP PUSH2 0x12E5 JUMP JUMPDEST DUP1 PUSH2 0x12D0 JUMPI PUSH2 0x12C9 PUSH1 0x1 DUP5 PUSH2 0x17C5 JUMP JUMPDEST SWAP4 POP PUSH2 0x12DE JUMP JUMPDEST PUSH2 0x12DB DUP4 PUSH1 0x1 PUSH2 0x16FC JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0x1191 JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH3 0xFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1306 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1306 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1331 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x60 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1354 JUMPI PUSH2 0x1354 PUSH2 0x1888 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x136E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH2 0x137C PUSH1 0x20 DUP5 ADD PUSH2 0x12F3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x138D PUSH1 0x40 DUP5 ADD PUSH2 0x12F3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x13AE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP1 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x13CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x13E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x13F4 JUMPI PUSH2 0x13F4 PUSH2 0x1888 JUMP JUMPDEST PUSH2 0x1406 DUP5 PUSH1 0x1F NOT PUSH1 0x1F DUP5 ADD AND ADD PUSH2 0x1660 JUMP JUMPDEST SWAP2 POP DUP1 DUP3 MSTORE DUP9 DUP5 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x141C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 DUP5 DUP5 ADD DUP6 DUP5 ADD CALLDATACOPY PUSH1 0x0 DUP5 DUP3 DUP5 ADD ADD MSTORE POP DUP1 SWAP5 POP POP POP POP PUSH2 0x143F PUSH1 0x40 DUP6 ADD PUSH2 0x130B JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x145B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x146B PUSH1 0x20 DUP5 ADD PUSH2 0x130B JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1487 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1490 DUP4 PUSH2 0x130B JUMP JUMPDEST SWAP2 POP PUSH2 0x146B PUSH1 0x20 DUP5 ADD PUSH2 0x130B JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x14B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14BC DUP5 PUSH2 0x130B JUMP JUMPDEST SWAP3 POP PUSH2 0x14CA PUSH1 0x20 DUP6 ADD PUSH2 0x130B JUMP JUMPDEST SWAP2 POP PUSH2 0x143F PUSH1 0x40 DUP6 ADD PUSH2 0x130B JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1531 JUMPI PUSH2 0x1521 DUP5 DUP4 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP2 ADD MSTORE JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x14F5 JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x156B JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x154F JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x157D JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 ADD PUSH2 0x22B DUP3 DUP5 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD MLOAD PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP2 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 SWAP2 DUP3 ADD MLOAD AND SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0xC0 DUP2 ADD PUSH2 0x15FF DUP3 DUP7 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD MLOAD PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP2 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 SWAP2 DUP3 ADD MLOAD AND SWAP2 ADD MSTORE JUMP JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x80 DUP3 ADD MSTORE SWAP1 ISZERO ISZERO PUSH1 0xA0 SWAP1 SWAP2 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0xFFFFFF DUP4 AND DUP2 MSTORE PUSH1 0x60 DUP2 ADD PUSH2 0x2E5 PUSH1 0x20 DUP4 ADD DUP5 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1689 JUMPI PUSH2 0x1689 PUSH2 0x1888 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x16B3 JUMPI PUSH2 0x16B3 PUSH2 0x1846 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x16B3 JUMPI PUSH2 0x16B3 PUSH2 0x1846 JUMP JUMPDEST PUSH1 0x0 PUSH3 0xFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x16B3 JUMPI PUSH2 0x16B3 PUSH2 0x1846 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x170F JUMPI PUSH2 0x170F PUSH2 0x1846 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x16B3 JUMPI PUSH2 0x16B3 PUSH2 0x1846 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP5 AND DUP1 PUSH2 0x174E JUMPI PUSH2 0x174E PUSH2 0x185C JUMP JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1769 JUMPI PUSH2 0x1769 PUSH2 0x185C JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1794 JUMPI PUSH2 0x1794 PUSH2 0x1846 JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x17BD JUMPI PUSH2 0x17BD PUSH2 0x1846 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x17D7 JUMPI PUSH2 0x17D7 PUSH2 0x1846 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x17BD JUMPI PUSH2 0x17BD PUSH2 0x1846 JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x182B JUMPI PUSH2 0x182B PUSH2 0x1846 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1841 JUMPI PUSH2 0x1841 PUSH2 0x185C JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA6 0x2F 0x1F PUSH5 0xD7907C4CEC 0xDB 0xE9 0xB8 MSTORE8 0xF PUSH30 0x1F04AAF82CC37E9F8ED3A5D8D23B75E3C964736F6C634300080600330000 ",
              "sourceMap": "227:3014:78:-:0;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@MAX_CARDINALITY_16984": {
                  "entryPoint": null,
                  "id": 16984,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_calculateTwab_13452": {
                  "entryPoint": 3309,
                  "id": 13452,
                  "parameterSlots": 8,
                  "returnSlots": 1
                },
                "@_computeNextTwab_13484": {
                  "entryPoint": 3851,
                  "id": 13484,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_getAverageBalanceBetween_13227": {
                  "entryPoint": 2629,
                  "id": 13227,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@_getBalanceAt_13334": {
                  "entryPoint": 3016,
                  "id": 13334,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@_nextTwab_13559": {
                  "entryPoint": 2785,
                  "id": 13559,
                  "parameterSlots": 3,
                  "returnSlots": 3
                },
                "@binarySearch_12591": {
                  "entryPoint": 4390,
                  "id": 12591,
                  "parameterSlots": 6,
                  "returnSlots": 2
                },
                "@checkedSub_12763": {
                  "entryPoint": 3639,
                  "id": 12763,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@decreaseBalance_12984": {
                  "entryPoint": 2111,
                  "id": 12984,
                  "parameterSlots": 4,
                  "returnSlots": 3
                },
                "@decreaseBalance_17149": {
                  "entryPoint": 842,
                  "id": 17149,
                  "parameterSlots": 3,
                  "returnSlots": 3
                },
                "@details_17013": {
                  "entryPoint": null,
                  "id": 17013,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getAverageBalanceBetween_13022": {
                  "entryPoint": 1930,
                  "id": 13022,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@getAverageBalanceBetween_17172": {
                  "entryPoint": 663,
                  "id": 17172,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getBalanceAt_13138": {
                  "entryPoint": 2342,
                  "id": 13138,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@getBalanceAt_17226": {
                  "entryPoint": 1358,
                  "id": 17226,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseBalance_12929": {
                  "entryPoint": 2398,
                  "id": 12929,
                  "parameterSlots": 3,
                  "returnSlots": 3
                },
                "@increaseBalance_17103": {
                  "entryPoint": 1432,
                  "id": 17103,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "@lt_12650": {
                  "entryPoint": 4183,
                  "id": 12650,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@lte_12705": {
                  "entryPoint": 3974,
                  "id": 12705,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@newestIndex_12830": {
                  "entryPoint": 2589,
                  "id": 12830,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@newestTwab_13103": {
                  "entryPoint": 1802,
                  "id": 13103,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "@newestTwab_17206": {
                  "entryPoint": 561,
                  "id": 17206,
                  "parameterSlots": 0,
                  "returnSlots": 2
                },
                "@nextIndex_12848": {
                  "entryPoint": 2567,
                  "id": 12848,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@oldestTwab_13067": {
                  "entryPoint": 1986,
                  "id": 13067,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "@oldestTwab_17189": {
                  "entryPoint": 748,
                  "id": 17189,
                  "parameterSlots": 0,
                  "returnSlots": 2
                },
                "@push_13598": {
                  "entryPoint": 1697,
                  "id": 13598,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@push_17241": {
                  "entryPoint": 517,
                  "id": 17241,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@twabs_17060": {
                  "entryPoint": 1110,
                  "id": 17060,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@wrap_12781": {
                  "entryPoint": 3297,
                  "id": 12781,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_AccountDetails_$12873_memory_ptr": {
                  "entryPoint": 4895,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256t_string_memory_ptrt_uint32": {
                  "entryPoint": 5017,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_uint256t_uint32": {
                  "entryPoint": 5192,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint32t_uint32": {
                  "entryPoint": 5236,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint32t_uint32t_uint32": {
                  "entryPoint": 5278,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_uint24": {
                  "entryPoint": 4851,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint32": {
                  "entryPoint": 4875,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_struct_AccountDetails": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_struct_Observation": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_array$_t_struct$_Observation_$12454_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Observation_$12454_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5336,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5438,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_AccountDetails_$12873_memory_ptr__to_t_struct$_AccountDetails_$12873_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5523,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_AccountDetails_$12873_memory_ptr_t_struct$_Observation_$12454_memory_ptr_t_bool__to_t_struct$_AccountDetails_$12873_memory_ptr_t_struct$_Observation_$12454_memory_ptr_t_bool__fromStack_reversed": {
                  "entryPoint": 5577,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint24__to_t_uint24__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint24_t_struct$_Observation_$12454_memory_ptr__to_t_uint24_t_struct$_Observation_$12454_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5678,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "allocate_memory": {
                  "entryPoint": 5728,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "checked_add_t_uint208": {
                  "entryPoint": 5777,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint224": {
                  "entryPoint": 5820,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint24": {
                  "entryPoint": 5854,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 5884,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint40": {
                  "entryPoint": 5908,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint224": {
                  "entryPoint": 5940,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 5978,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint224": {
                  "entryPoint": 5998,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint224": {
                  "entryPoint": 6045,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 6085,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 6108,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 6137,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "mod_t_uint256": {
                  "entryPoint": 6194,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 6214,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x12": {
                  "entryPoint": 6236,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 6258,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 6280,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:10301:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "62:113:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "72:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "94:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "81:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "81:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "72:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "153:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "162:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "165:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "155:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "155:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "155:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "123:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "134:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "141:8:84",
                                            "type": "",
                                            "value": "0xffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "130:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "130:20:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "120:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "120:31:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "113:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "113:39:84"
                              },
                              "nodeType": "YulIf",
                              "src": "110:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint24",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "41:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "52:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:161:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "228:115:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "238:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "260:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "247:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "247:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "238:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "321:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "330:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "333:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "323:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "323:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "323:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "289:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "300:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "307:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "296:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "296:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "286:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "286:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "279:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "279:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "276:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "207:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "218:5:84",
                            "type": ""
                          }
                        ],
                        "src": "180:163:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "451:626:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "497:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "506:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "509:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "499:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "499:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "499:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "472:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "481:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "468:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "468:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "493:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "464:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "464:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "461:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "522:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "542:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "536:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "536:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "526:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "554:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "576:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "584:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "572:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "572:15:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "558:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "662:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "664:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "664:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "664:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "605:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "617:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "602:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "602:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "641:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "653:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "638:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "638:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "599:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "599:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "596:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "700:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "704:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "693:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "693:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "693:22:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "724:36:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "750:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "737:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "737:23:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "728:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "858:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "867:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "870:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "860:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "860:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "860:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "782:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "793:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "800:54:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "789:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "789:66:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "779:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "779:77:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "772:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "772:85:84"
                              },
                              "nodeType": "YulIf",
                              "src": "769:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "890:6:84"
                                  },
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "898:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "883:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "883:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "883:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "924:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "932:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "920:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "920:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "959:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "970:2:84",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "955:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "955:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint24",
                                      "nodeType": "YulIdentifier",
                                      "src": "937:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "937:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "913:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "913:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "913:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "995:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1003:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "991:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "991:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1030:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1041:2:84",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1026:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1026:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint24",
                                      "nodeType": "YulIdentifier",
                                      "src": "1008:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1008:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "984:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "984:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "984:62:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1055:16:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "1065:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1055:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_AccountDetails_$12873_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "417:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "428:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "440:6:84",
                            "type": ""
                          }
                        ],
                        "src": "348:729:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1195:850:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1241:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1250:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1253:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1243:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1243:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1243:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1216:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1225:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1212:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1212:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1237:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1208:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1208:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1205:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1266:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1289:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1276:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1276:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1266:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1308:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1318:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1312:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1329:46:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1360:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1371:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1356:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1356:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1343:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1343:32:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1333:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1384:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1394:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1388:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1439:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1448:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1451:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1441:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1441:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1441:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1427:6:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1435:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1424:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1424:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1421:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1464:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1478:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1489:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1474:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1474:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "1468:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1544:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1553:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1556:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1546:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1546:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1546:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "1523:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1527:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1519:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1519:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1534:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1515:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1515:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1508:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1508:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1505:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1569:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "1592:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1579:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1579:16:84"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "1573:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1618:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "1620:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1620:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1620:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1610:2:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1614:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1607:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1607:10:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1604:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1649:125:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "1690:2:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1694:4:84",
                                                "type": "",
                                                "value": "0x1f"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "1686:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1686:13:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1701:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1682:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1682:86:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1770:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1678:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1678:95:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1662:15:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1662:112:84"
                              },
                              "variables": [
                                {
                                  "name": "array",
                                  "nodeType": "YulTypedName",
                                  "src": "1653:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "array",
                                    "nodeType": "YulIdentifier",
                                    "src": "1790:5:84"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1797:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1783:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1783:17:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1783:17:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1846:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1855:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1858:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1848:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1848:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1848:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "1823:2:84"
                                          },
                                          {
                                            "name": "_4",
                                            "nodeType": "YulIdentifier",
                                            "src": "1827:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1819:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1819:11:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1832:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1815:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1815:20:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1837:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1812:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1812:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1809:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "array",
                                        "nodeType": "YulIdentifier",
                                        "src": "1888:5:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1895:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1884:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1884:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "1904:2:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1908:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1900:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1900:11:84"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1913:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldatacopy",
                                  "nodeType": "YulIdentifier",
                                  "src": "1871:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1871:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1871:45:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "array",
                                            "nodeType": "YulIdentifier",
                                            "src": "1940:5:84"
                                          },
                                          {
                                            "name": "_4",
                                            "nodeType": "YulIdentifier",
                                            "src": "1947:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1936:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1936:14:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1952:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1932:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1932:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1957:1:84",
                                    "type": "",
                                    "value": "0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1925:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1925:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1925:34:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1968:15:84",
                              "value": {
                                "name": "array",
                                "nodeType": "YulIdentifier",
                                "src": "1978:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1968:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1992:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2024:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2035:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2020:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2020:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2002:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2002:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1992:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256t_string_memory_ptrt_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1145:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1156:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1168:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1176:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1184:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1082:963:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2136:166:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2182:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2191:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2194:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2184:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2184:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2184:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2157:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2166:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2153:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2153:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2178:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2149:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2149:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2146:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2207:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2230:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2217:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2217:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2207:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2249:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2281:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2292:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2277:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2277:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2259:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2259:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2249:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2094:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2105:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2117:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2125:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2050:252:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2392:171:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2438:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2447:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2450:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2440:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2440:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2440:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2413:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2422:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2409:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2409:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2434:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2405:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2405:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2402:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2463:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2491:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2473:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2473:28:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2463:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2510:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2542:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2553:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2538:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2538:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2520:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2520:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2510:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2350:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2361:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2373:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2381:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2307:256:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2669:227:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2715:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2724:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2727:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2717:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2717:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2717:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2690:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2699:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2686:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2686:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2711:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2682:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2682:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2679:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2740:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2768:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2750:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2750:28:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2740:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2787:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2819:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2830:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2815:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2815:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2797:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2797:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2787:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2843:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2875:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2886:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2871:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2871:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2853:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2853:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2843:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint32t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2619:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2630:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2642:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2650:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2658:6:84",
                            "type": ""
                          }
                        ],
                        "src": "2568:328:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2959:300:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2976:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2991:5:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2985:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2985:12:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2999:54:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2981:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2981:73:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2969:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2969:86:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2969:86:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3064:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3094:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3101:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3090:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3090:16:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3084:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3084:23:84"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "3068:12:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3116:18:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3126:8:84",
                                "type": "",
                                "value": "0xffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3120:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3154:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3159:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3150:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3150:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3170:12:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3184:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3166:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3166:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3143:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3143:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3143:45:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3208:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3213:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3204:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3204:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3234:5:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3241:4:84",
                                                "type": "",
                                                "value": "0x40"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3230:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3230:16:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3224:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3224:23:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3249:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3220:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3220:32:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3197:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3197:56:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3197:56:84"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_AccountDetails",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2943:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2950:3:84",
                            "type": ""
                          }
                        ],
                        "src": "2901:358:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3319:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3336:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "3351:5:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3345:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3345:12:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3359:58:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3341:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3341:77:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3329:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3329:90:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3329:90:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3439:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3444:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3435:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3435:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3465:5:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3472:4:84",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3461:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3461:16:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3455:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3455:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3480:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3451:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3451:40:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3428:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3428:64:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3428:64:84"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_Observation",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3303:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3310:3:84",
                            "type": ""
                          }
                        ],
                        "src": "3264:234:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3714:525:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3724:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3734:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3728:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3745:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3763:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3774:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3759:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3759:18:84"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3749:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3793:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3804:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3786:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3786:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3786:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3816:17:84",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "3827:6:84"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "3820:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3842:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3862:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3856:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3856:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3846:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3885:6:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3893:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3878:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3878:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3878:22:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3909:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3919:2:84",
                                "type": "",
                                "value": "64"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3913:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3930:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3941:9:84"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3952:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3937:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3937:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "3930:3:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3964:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3982:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3990:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3978:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3978:15:84"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3968:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4002:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4011:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4006:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4070:143:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "4120:6:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "4114:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4114:13:84"
                                        },
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4129:3:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_struct_Observation",
                                        "nodeType": "YulIdentifier",
                                        "src": "4084:29:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4084:49:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4084:49:84"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4146:19:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4157:3:84"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4162:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4153:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4153:12:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4146:3:84"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4178:25:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "4192:6:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4200:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4188:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4188:15:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4178:6:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4032:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4035:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4029:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4029:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4043:18:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4045:14:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4054:1:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4057:1:84",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4050:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4050:9:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4045:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4025:3:84",
                                "statements": []
                              },
                              "src": "4021:192:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4222:11:84",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "4230:3:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4222:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_struct$_Observation_$12454_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Observation_$12454_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3683:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3694:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3705:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3503:736:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4365:535:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4375:12:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4385:2:84",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4379:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4403:9:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4414:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4396:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4396:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4396:21:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4426:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4446:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4440:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4440:13:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4430:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4473:9:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4484:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4469:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4469:18:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4489:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4462:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4462:34:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4462:34:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4505:10:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4514:1:84",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4509:1:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4574:90:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4603:9:84"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4614:1:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4599:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4599:17:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4618:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4595:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4595:26:84"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "4637:6:84"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "4645:1:84"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "4633:3:84"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "4633:14:84"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4649:2:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4629:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4629:23:84"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "4623:5:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4623:30:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4588:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4588:66:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4588:66:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4535:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4538:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4532:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4532:13:84"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4546:19:84",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4548:15:84",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4557:1:84"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4560:2:84"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4553:3:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4553:10:84"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4548:1:84"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4528:3:84",
                                "statements": []
                              },
                              "src": "4524:140:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4698:66:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4727:9:84"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4738:6:84"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4723:3:84"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4723:22:84"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4747:2:84",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4719:3:84"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4719:31:84"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4752:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4712:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4712:42:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4712:42:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4679:1:84"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4682:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4676:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4676:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4673:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4773:121:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4789:9:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "4808:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4816:2:84",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4804:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4804:15:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4821:66:84",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4800:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4800:88:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4785:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4785:104:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4891:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4781:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4781:113:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4773:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4334:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4345:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4356:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4244:656:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5072:102:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5082:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5094:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5105:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5090:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5090:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5082:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5150:6:84"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5158:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_AccountDetails",
                                  "nodeType": "YulIdentifier",
                                  "src": "5117:32:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5117:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5117:51:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_AccountDetails_$12873_memory_ptr__to_t_struct$_AccountDetails_$12873_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5041:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5052:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5063:4:84",
                            "type": ""
                          }
                        ],
                        "src": "4905:269:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5456:229:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5466:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5478:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5489:3:84",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5474:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5474:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5466:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5535:6:84"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5543:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_AccountDetails",
                                  "nodeType": "YulIdentifier",
                                  "src": "5502:32:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5502:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5502:51:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5592:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5604:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5615:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5600:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5600:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Observation",
                                  "nodeType": "YulIdentifier",
                                  "src": "5562:29:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5562:57:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5562:57:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5639:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5650:3:84",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5635:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5635:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value2",
                                            "nodeType": "YulIdentifier",
                                            "src": "5670:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "5663:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5663:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "5656:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5656:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5628:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5628:51:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5628:51:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_AccountDetails_$12873_memory_ptr_t_struct$_Observation_$12454_memory_ptr_t_bool__to_t_struct$_AccountDetails_$12873_memory_ptr_t_struct$_Observation_$12454_memory_ptr_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5409:9:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5420:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5428:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5436:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5447:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5179:506:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5789:91:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5799:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5811:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5822:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5807:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5807:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5799:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5841:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5856:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5864:8:84",
                                        "type": "",
                                        "value": "0xffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5852:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5852:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5834:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5834:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5834:40:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint24__to_t_uint24__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5758:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5769:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5780:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5690:190:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6072:157:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6082:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6094:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6105:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6090:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6090:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6082:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6124:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6139:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6147:8:84",
                                        "type": "",
                                        "value": "0xffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6135:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6135:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6117:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6117:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6117:40:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6196:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6208:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6219:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6204:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6204:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Observation",
                                  "nodeType": "YulIdentifier",
                                  "src": "6166:29:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6166:57:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6166:57:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint24_t_struct$_Observation_$12454_memory_ptr__to_t_uint24_t_struct$_Observation_$12454_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6033:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6044:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6052:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6063:4:84",
                            "type": ""
                          }
                        ],
                        "src": "5885:344:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6335:76:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6345:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6357:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6368:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6353:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6353:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6345:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6387:9:84"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6398:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6380:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6380:25:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6380:25:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6304:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6315:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6326:4:84",
                            "type": ""
                          }
                        ],
                        "src": "6234:177:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6461:289:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6471:19:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6487:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6481:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6481:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "6471:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6499:117:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "6521:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "6537:4:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "6543:2:84",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "6533:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "6533:13:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6548:66:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6529:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6529:86:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6517:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6517:99:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "6503:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6691:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "6693:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6693:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6693:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "6634:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6646:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "6631:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6631:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "6670:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "6682:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "6667:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6667:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "6628:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6628:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6625:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6729:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "6733:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6722:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6722:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6722:22:84"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "6441:4:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "6450:6:84",
                            "type": ""
                          }
                        ],
                        "src": "6416:334:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6803:225:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6813:64:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6823:54:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6817:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6886:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6901:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6904:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "6897:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6897:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6890:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6916:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "6931:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6934:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "6927:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6927:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6920:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6971:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "6973:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6973:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6973:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6952:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6961:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6965:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6957:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6957:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6949:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6949:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "6946:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7002:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7013:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7018:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7009:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7009:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7002:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint208",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "6786:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "6789:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "6795:3:84",
                            "type": ""
                          }
                        ],
                        "src": "6755:273:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7081:229:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7091:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7101:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7095:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7168:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7183:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7186:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7179:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7179:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7172:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7198:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7213:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7216:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7209:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7209:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7202:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7253:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7255:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7255:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7255:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7234:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7243:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7247:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7239:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7239:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7231:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7231:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7228:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7284:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7295:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7300:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7291:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7291:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7284:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7064:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7067:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7073:3:84",
                            "type": ""
                          }
                        ],
                        "src": "7033:277:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7362:179:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7372:18:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7382:8:84",
                                "type": "",
                                "value": "0xffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7376:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7399:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7414:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7417:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7410:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7410:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7403:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7429:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7444:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7447:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7440:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7440:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7433:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7484:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7486:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7486:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7486:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7465:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7474:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7478:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7470:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7470:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7462:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7462:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7459:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7515:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7526:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7531:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7522:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7522:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7515:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint24",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7345:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7348:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7354:3:84",
                            "type": ""
                          }
                        ],
                        "src": "7315:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7594:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7621:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7623:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7623:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7623:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7610:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "7617:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "7613:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7613:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7607:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7607:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7604:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7652:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7663:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7666:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7659:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7659:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7652:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7577:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7580:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7586:3:84",
                            "type": ""
                          }
                        ],
                        "src": "7546:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7726:183:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7736:22:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7746:12:84",
                                "type": "",
                                "value": "0xffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7740:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7767:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7782:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7785:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7778:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7778:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7771:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7797:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7812:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7815:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7808:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7808:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7801:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7852:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7854:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7854:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7854:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7833:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7842:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7846:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7838:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7838:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7830:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7830:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "7827:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7883:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7894:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7899:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7890:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7890:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7883:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint40",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7709:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7712:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7718:3:84",
                            "type": ""
                          }
                        ],
                        "src": "7679:230:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7960:194:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7970:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7980:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7974:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8047:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8062:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8065:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8058:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8058:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8051:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8092:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "8094:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8094:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8094:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8087:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8080:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8080:11:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8077:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8123:25:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "x",
                                        "nodeType": "YulIdentifier",
                                        "src": "8136:1:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8139:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8132:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8132:10:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8144:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "8128:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8128:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "8123:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7945:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7948:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "7954:1:84",
                            "type": ""
                          }
                        ],
                        "src": "7914:240:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8205:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8228:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "8230:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8230:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8230:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8225:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8218:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8218:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8215:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8259:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8268:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8271:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "8264:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8264:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "8259:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8190:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8193:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "8199:1:84",
                            "type": ""
                          }
                        ],
                        "src": "8159:120:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8336:259:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8346:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8356:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8350:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8423:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8438:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8441:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8434:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8434:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8427:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8453:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8468:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8471:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8464:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8464:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8457:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8534:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8536:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8536:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8536:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "8504:3:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "8497:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8497:11:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "8490:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8490:19:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8514:3:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "8523:2:84"
                                          },
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "8527:3:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "8519:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8519:12:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "8511:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8511:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8486:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8486:47:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8483:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8565:24:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8580:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8585:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "8576:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8576:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "8565:7:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8315:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8318:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "8324:7:84",
                            "type": ""
                          }
                        ],
                        "src": "8284:311:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8649:221:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8659:68:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8669:58:84",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8663:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8736:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8751:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8754:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8747:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8747:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8740:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8766:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8781:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8784:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8777:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8777:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8770:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8812:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8814:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8814:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8814:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8802:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8807:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8799:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8799:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8796:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8843:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8855:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8860:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8851:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8851:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8843:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8631:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8634:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "8640:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8600:270:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8924:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8946:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8948:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8948:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8948:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8940:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8943:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8937:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8937:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "8934:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8977:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8989:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8992:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8985:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8985:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8977:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8906:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8909:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "8915:4:84",
                            "type": ""
                          }
                        ],
                        "src": "8875:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9053:173:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9063:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9073:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9067:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9092:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9107:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9110:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9103:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9103:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9096:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9122:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9137:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9140:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9133:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9133:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9126:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9168:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9170:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9170:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9170:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9158:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9163:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9155:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9155:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9152:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9199:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9211:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9216:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "9207:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9207:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "9199:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9035:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9038:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "9044:4:84",
                            "type": ""
                          }
                        ],
                        "src": "9005:221:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9278:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9369:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9371:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9371:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9371:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9294:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9301:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "9291:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9291:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9288:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9400:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9411:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9418:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9407:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9407:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "9400:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "9260:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "9270:3:84",
                            "type": ""
                          }
                        ],
                        "src": "9231:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9469:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9492:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "9494:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9494:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9494:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9489:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "9482:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9482:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "9479:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9523:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9532:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9535:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "9528:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9528:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "9523:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9454:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9457:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "9463:1:84",
                            "type": ""
                          }
                        ],
                        "src": "9431:112:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9580:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9597:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9600:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9590:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9590:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9590:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9694:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9697:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9687:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9687:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9687:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9718:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9721:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9711:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9711:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9711:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9548:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9769:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9786:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9789:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9779:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9779:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9779:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9883:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9886:4:84",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9876:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9876:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9876:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9907:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9910:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9900:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9900:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9900:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9737:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9958:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9975:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9978:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9968:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9968:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9968:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10072:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10075:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10065:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10065:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10065:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10096:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10099:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10089:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10089:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10089:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9926:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10147:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10164:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10167:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10157:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10157:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10157:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10261:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10264:4:84",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10254:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10254:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10254:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10285:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10288:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10278:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10278:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10278:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "10115:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_uint24(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_struct$_AccountDetails_$12873_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, 96)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n        mstore(memPtr, value)\n        mstore(add(memPtr, 32), abi_decode_uint24(add(headStart, 32)))\n        mstore(add(memPtr, 64), abi_decode_uint24(add(headStart, 64)))\n        value0 := memPtr\n    }\n    function abi_decode_tuple_t_uint256t_string_memory_ptrt_uint32(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := calldataload(headStart)\n        let _1 := 32\n        let offset := calldataload(add(headStart, _1))\n        let _2 := 0xffffffffffffffff\n        if gt(offset, _2) { revert(0, 0) }\n        let _3 := add(headStart, offset)\n        if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(0, 0) }\n        let _4 := calldataload(_3)\n        if gt(_4, _2) { panic_error_0x41() }\n        let array := allocate_memory(add(and(add(_4, 0x1f), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0), _1))\n        mstore(array, _4)\n        if gt(add(add(_3, _4), _1), dataEnd) { revert(0, 0) }\n        calldatacopy(add(array, _1), add(_3, _1), _4)\n        mstore(add(add(array, _4), _1), 0)\n        value1 := array\n        value2 := abi_decode_uint32(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_uint256t_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := calldataload(headStart)\n        value1 := abi_decode_uint32(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_uint32t_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint32(headStart)\n        value1 := abi_decode_uint32(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_uint32t_uint32t_uint32(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_uint32(headStart)\n        value1 := abi_decode_uint32(add(headStart, 32))\n        value2 := abi_decode_uint32(add(headStart, 64))\n    }\n    function abi_encode_struct_AccountDetails(value, pos)\n    {\n        mstore(pos, and(mload(value), 0xffffffffffffffffffffffffffffffffffffffffffffffffffff))\n        let memberValue0 := mload(add(value, 0x20))\n        let _1 := 0xffffff\n        mstore(add(pos, 0x20), and(memberValue0, _1))\n        mstore(add(pos, 0x40), and(mload(add(value, 0x40)), _1))\n    }\n    function abi_encode_struct_Observation(value, pos)\n    {\n        mstore(pos, and(mload(value), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(pos, 0x20), and(mload(add(value, 0x20)), 0xffffffff))\n    }\n    function abi_encode_tuple_t_array$_t_struct$_Observation_$12454_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Observation_$12454_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        let _2 := 64\n        pos := add(headStart, _2)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            abi_encode_struct_Observation(mload(srcPtr), pos)\n            pos := add(pos, _2)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_struct$_AccountDetails_$12873_memory_ptr__to_t_struct$_AccountDetails_$12873_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        abi_encode_struct_AccountDetails(value0, headStart)\n    }\n    function abi_encode_tuple_t_struct$_AccountDetails_$12873_memory_ptr_t_struct$_Observation_$12454_memory_ptr_t_bool__to_t_struct$_AccountDetails_$12873_memory_ptr_t_struct$_Observation_$12454_memory_ptr_t_bool__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        abi_encode_struct_AccountDetails(value0, headStart)\n        abi_encode_struct_Observation(value1, add(headStart, 96))\n        mstore(add(headStart, 160), iszero(iszero(value2)))\n    }\n    function abi_encode_tuple_t_uint24__to_t_uint24__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffff))\n    }\n    function abi_encode_tuple_t_uint24_t_struct$_Observation_$12454_memory_ptr__to_t_uint24_t_struct$_Observation_$12454_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffff))\n        abi_encode_struct_Observation(value1, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function checked_add_t_uint208(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint224(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint24(x, y) -> sum\n    {\n        let _1 := 0xffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint40(x, y) -> sum\n    {\n        let _1 := 0xffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint224(x, y) -> r\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let y_1 := and(y, _1)\n        if iszero(y_1) { panic_error_0x12() }\n        r := div(and(x, _1), y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function checked_mul_t_uint224(x, y) -> product\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if and(iszero(iszero(x_1)), gt(y_1, div(_1, x_1))) { panic_error_0x11() }\n        product := mul(x_1, y_1)\n    }\n    function checked_sub_t_uint224(x, y) -> diff\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100be5760003560e01c80637c2014c6116100765780638ca0b7711161005b5780638ca0b771146101ca578063c3c191fd146101df578063ff429279146101f257600080fd5b80637c2014c61461018a5780638200d873146101ac57600080fd5b8063565974d3116100a7578063565974d3146101025780636126af6e1461016157806363ee94761461018257600080fd5b806339095bcb146100c35780633c4e9c1e146100ec575b600080fd5b6100d66100d136600461131f565b610205565b6040516100e39190611593565b60405180910390f35b6100f4610231565b6040516100e392919061162e565b6100d6604080516060810182526000808252602082018190529181019190915250604080516060810182526000546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915290565b61017461016f36600461149e565b610297565b6040519081526020016100e3565b6100f46102ec565b61019d610198366004611399565b61034a565b6040516100e3939291906115c9565b6101b662ffffff81565b60405162ffffff90911681526020016100e3565b6101d2610456565b6040516100e391906114d8565b6101746101ed366004611474565b61054e565b61019d610200366004611448565b610598565b604080516060810182526000808252602082018190529181019190915261022b826106a1565b92915050565b6040805180820190915260008082526020820181905290604080516060810182526000546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915261028f9060019061070a565b915091509091565b60408051606081018252600080546001600160d01b038116835262ffffff600160d01b820481166020850152600160e81b90910416928201929092526102e29060019086868661078a565b90505b9392505050565b6040805180820190915260008082526020820181905290604080516060810182526000546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915261028f906001906107c2565b60408051606081018252600080825260208201819052918101919091526040805180820190915260008082526020820152600061038a600087878761083f565b82516000805460208601516040808801516001600160d01b039095167fffffff000000000000000000000000000000000000000000000000000000000090931692909217600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b91909416029290921790555192955090935091507f883fc20cc248074e2c1dd4a19bf6d2004d023d0be047378761fd6925810f381a90610445908590859085906115c9565b60405180910390a193509350939050565b6000805460609190600160e81b900462ffffff1667ffffffffffffffff81111561048257610482611888565b6040519080825280602002602001820160405280156104c757816020015b60408051808201909152600080825260208201528152602001906001900390816104a05790505b50905060005b81518110156105485760018162ffffff81106104eb576104eb611872565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152825183908390811061052a5761052a611872565b60200260200101819052508080610540906117f9565b9150506104cd565b50919050565b60408051606081018252600080546001600160d01b038116835262ffffff600160d01b820481166020850152600160e81b90910416928201929092526102e5906001908585610926565b6040805160608101825260008082526020820181905291810191909152604080518082019091526000808252602082015260006105d76000868661095e565b82516000805460208601516040808801516001600160d01b039095167fffffff000000000000000000000000000000000000000000000000000000000090931692909217600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b91909416029290921790555192955090935091507f883fc20cc248074e2c1dd4a19bf6d2004d023d0be047378761fd6925810f381a90610692908590859085906115c9565b60405180910390a19250925092565b604080516060810182526000808252602080830182905292820152908201516106d19062ffffff90811690610a07565b62ffffff9081166020840152604083015181161015610706576001826040018181516106fd91906116de565b62ffffff169052505b5090565b6040805180820190915260008082526020820181905290610739836020015162ffffff1662ffffff8016610a1d565b9150838262ffffff1662ffffff811061075457610754611872565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919491935090915050565b6000808263ffffffff168463ffffffff16116107a657836107a8565b825b90506107b78787878487610a45565b979650505050505050565b604080518082019091526000808252602082018190529082602001519150838262ffffff1662ffffff81106107f9576107f9611872565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290915061083857600091508382610754565b9250929050565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825287546001600160d01b0380821680845262ffffff600160d01b840481166020860152600160e81b90930490921693830193909352600092879190891611156108f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ef919061153e565b60405180910390fd5b50610907886001018287610ae1565b8251999099036001600160d01b03168252909990985095505050505050565b6000808263ffffffff168463ffffffff16116109425783610944565b825b905061095286868386610bc8565b9150505b949350505050565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825286546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b90910416918101919091526000906109da600188018287610ae1565b835192965090945092506109ef908790611691565b6001600160d01b031684525091959094509092509050565b60006102e5610a178460016116fc565b83610ce1565b600081610a2c5750600061022b565b6102e56001610a3b84866116fc565b610a1791906117c5565b6000806000610a5488886107c2565b91509150600080610a658a8a61070a565b915091506000610a7b8b8b8487878a8f8e610ced565b90506000610a8f8c8c8588888b8f8f610ced565b9050610aa4816020015183602001518a610e37565b63ffffffff1682600001518260000151610abe919061179d565b610ac89190611734565b6001600160e01b03169c9b505050505050505050505050565b60408051606081018252600080825260208201819052918101919091526040805180820190915260008082526020820152600080610b1f878761070a565b9150508463ffffffff16816020015163ffffffff161415610b4857859350915060009050610bbf565b6000610b628288600001516001600160d01b031688610f0b565b90508088886020015162ffffff1662ffffff8110610b8257610b82611872565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556000610bb3886106a1565b95509093506001925050505b93509350939050565b604080518082019091526000808252602082018190529081906040805180820190915260008082526020820152610bff888861070a565b60208101519194509150610c209063ffffffff9081169088908890610f8616565b15610c3b57505084516001600160d01b031691506109569050565b6000610c4789896107c2565b6020810151909350909150610c689063ffffffff808a169190899061105716565b15610c7a576000945050505050610956565b610c8c8985838a8c604001518b611126565b8094508193505050610ca78360200151836020015188610e37565b63ffffffff1682600001518460000151610cc1919061179d565b610ccb9190611734565b6001600160e01b03169998505050505050505050565b60006102e58284611832565b6040805180820190915260008082526020820152610d208383896020015163ffffffff166110579092919063ffffffff16565b15610d4457610d3d8789600001516001600160d01b031685610f0b565b9050610e2b565b8263ffffffff16876020015163ffffffff161415610d63575085610e2b565b8263ffffffff16866020015163ffffffff161415610d82575084610e2b565b610da18660200151838563ffffffff166110579092919063ffffffff16565b15610dc65750604080518082019091526000815263ffffffff83166020820152610e2b565b600080610ddb8b8888888e6040015189611126565b915091506000610df48260200151846020015187610e37565b63ffffffff1683600001518360000151610e0e919061179d565b610e189190611734565b9050610e25838288610f0b565b93505050505b98975050505050505050565b60008163ffffffff168463ffffffff1611158015610e6157508163ffffffff168363ffffffff1611155b15610e7757610e7083856117dc565b90506102e5565b60008263ffffffff168563ffffffff1611610ea657610ea163ffffffff8616640100000000611714565b610eae565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff1611610ee657610ee163ffffffff8616640100000000611714565b610eee565b8463ffffffff165b64ffffffffff169050610f0181836117c5565b9695505050505050565b60408051808201909152600080825260208201526040518060400160405280610f498660200151858663ffffffff16610e379092919063ffffffff16565b610f599063ffffffff168661176e565b8651610f6591906116bc565b6001600160e01b031681526020018363ffffffff1681525090509392505050565b60008163ffffffff168463ffffffff1611158015610fb057508163ffffffff168363ffffffff1611155b15610fcc578263ffffffff168463ffffffff16111590506102e5565b60008263ffffffff168563ffffffff1611610ffb57610ff663ffffffff8616640100000000611714565b611003565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff161161103b5761103663ffffffff8616640100000000611714565b611043565b8463ffffffff165b64ffffffffff169091111595945050505050565b60008163ffffffff168463ffffffff161115801561108157508163ffffffff168363ffffffff1611155b1561109c578263ffffffff168463ffffffff161090506102e5565b60008263ffffffff168563ffffffff16116110cb576110c663ffffffff8616640100000000611714565b6110d3565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff161161110b5761110663ffffffff8616640100000000611714565b611113565b8463ffffffff165b64ffffffffff1690911095945050505050565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff1610611171578862ffffff1661118c565b600161118262ffffff8816846116fc565b61118c91906117c5565b905060005b600261119d83856116fc565b6111a7919061175a565b90508a6111b9828962ffffff16610ce1565b62ffffff1662ffffff81106111d0576111d0611872565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290955080611218576112108260016116fc565b935050611191565b8b611228838a62ffffff16610a07565b62ffffff1662ffffff811061123f5761123f611872565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b9091048116602083015290955060009061128490838116908c908b90610f8616565b90508080156112ad57506112ad8660200151898c63ffffffff16610f869092919063ffffffff16565b156112b95750506112e5565b806112d0576112c96001846117c5565b93506112de565b6112db8360016116fc565b94505b5050611191565b505050965096945050505050565b803562ffffff8116811461130657600080fd5b919050565b803563ffffffff8116811461130657600080fd5b60006060828403121561133157600080fd5b6040516060810181811067ffffffffffffffff8211171561135457611354611888565b60405282356001600160d01b038116811461136e57600080fd5b815261137c602084016112f3565b602082015261138d604084016112f3565b60408201529392505050565b6000806000606084860312156113ae57600080fd5b8335925060208085013567ffffffffffffffff808211156113ce57600080fd5b818701915087601f8301126113e257600080fd5b8135818111156113f4576113f4611888565b61140684601f19601f84011601611660565b9150808252888482850101111561141c57600080fd5b808484018584013760008482840101525080945050505061143f6040850161130b565b90509250925092565b6000806040838503121561145b57600080fd5b8235915061146b6020840161130b565b90509250929050565b6000806040838503121561148757600080fd5b6114908361130b565b915061146b6020840161130b565b6000806000606084860312156114b357600080fd5b6114bc8461130b565b92506114ca6020850161130b565b915061143f6040850161130b565b602080825282518282018190526000919060409081850190868401855b828110156115315761152184835180516001600160e01b0316825260209081015163ffffffff16910152565b92840192908501906001016114f5565b5091979650505050505050565b600060208083528351808285015260005b8181101561156b5785810183015185820160400152820161154f565b8181111561157d576000604083870101525b50601f01601f1916929092016040019392505050565b6060810161022b828480516001600160d01b0316825260208082015162ffffff9081169184019190915260409182015116910152565b60c081016115ff828680516001600160d01b0316825260208082015162ffffff9081169184019190915260409182015116910152565b83516001600160e01b0316606083015260209093015163ffffffff16608082015290151560a090910152919050565b62ffffff83168152606081016102e5602083018480516001600160e01b0316825260209081015163ffffffff16910152565b604051601f8201601f1916810167ffffffffffffffff8111828210171561168957611689611888565b604052919050565b60006001600160d01b038083168185168083038211156116b3576116b3611846565b01949350505050565b60006001600160e01b038083168185168083038211156116b3576116b3611846565b600062ffffff8083168185168083038211156116b3576116b3611846565b6000821982111561170f5761170f611846565b500190565b600064ffffffffff8083168185168083038211156116b3576116b3611846565b60006001600160e01b038084168061174e5761174e61185c565b92169190910492915050565b6000826117695761176961185c565b500490565b60006001600160e01b038083168185168183048111821515161561179457611794611846565b02949350505050565b60006001600160e01b03838116908316818110156117bd576117bd611846565b039392505050565b6000828210156117d7576117d7611846565b500390565b600063ffffffff838116908316818110156117bd576117bd611846565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561182b5761182b611846565b5060010190565b6000826118415761184161185c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220a62f1f64d7907c4cecdbe9b8530f7d1f04aaf82cc37e9f8ed3a5d8d23b75e3c964736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xBE JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7C2014C6 GT PUSH2 0x76 JUMPI DUP1 PUSH4 0x8CA0B771 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x8CA0B771 EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0xC3C191FD EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0xFF429279 EQ PUSH2 0x1F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7C2014C6 EQ PUSH2 0x18A JUMPI DUP1 PUSH4 0x8200D873 EQ PUSH2 0x1AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x565974D3 GT PUSH2 0xA7 JUMPI DUP1 PUSH4 0x565974D3 EQ PUSH2 0x102 JUMPI DUP1 PUSH4 0x6126AF6E EQ PUSH2 0x161 JUMPI DUP1 PUSH4 0x63EE9476 EQ PUSH2 0x182 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x39095BCB EQ PUSH2 0xC3 JUMPI DUP1 PUSH4 0x3C4E9C1E EQ PUSH2 0xEC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD6 PUSH2 0xD1 CALLDATASIZE PUSH1 0x4 PUSH2 0x131F JUMP JUMPDEST PUSH2 0x205 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP2 SWAP1 PUSH2 0x1593 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF4 PUSH2 0x231 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP3 SWAP2 SWAP1 PUSH2 0x162E JUMP JUMPDEST PUSH2 0xD6 PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x16F CALLDATASIZE PUSH1 0x4 PUSH2 0x149E JUMP JUMPDEST PUSH2 0x297 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xF4 PUSH2 0x2EC JUMP JUMPDEST PUSH2 0x19D PUSH2 0x198 CALLDATASIZE PUSH1 0x4 PUSH2 0x1399 JUMP JUMPDEST PUSH2 0x34A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x15C9 JUMP JUMPDEST PUSH2 0x1B6 PUSH3 0xFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0xFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0x1D2 PUSH2 0x456 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP2 SWAP1 PUSH2 0x14D8 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x1ED CALLDATASIZE PUSH1 0x4 PUSH2 0x1474 JUMP JUMPDEST PUSH2 0x54E JUMP JUMPDEST PUSH2 0x19D PUSH2 0x200 CALLDATASIZE PUSH1 0x4 PUSH2 0x1448 JUMP JUMPDEST PUSH2 0x598 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x22B DUP3 PUSH2 0x6A1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x28F SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x70A JUMP JUMPDEST SWAP2 POP SWAP2 POP SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP4 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH2 0x2E2 SWAP1 PUSH1 0x1 SWAP1 DUP7 DUP7 DUP7 PUSH2 0x78A JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x28F SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x7C2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x38A PUSH1 0x0 DUP8 DUP8 DUP8 PUSH2 0x83F JUMP JUMPDEST DUP3 MLOAD PUSH1 0x0 DUP1 SLOAD PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x40 DUP1 DUP9 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP6 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP5 AND MUL SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE MLOAD SWAP3 SWAP6 POP SWAP1 SWAP4 POP SWAP2 POP PUSH32 0x883FC20CC248074E2C1DD4A19BF6D2004D023D0BE047378761FD6925810F381A SWAP1 PUSH2 0x445 SWAP1 DUP6 SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH2 0x15C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP4 POP SWAP4 POP SWAP4 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x60 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV PUSH3 0xFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x482 JUMPI PUSH2 0x482 PUSH2 0x1888 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x4C7 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x4A0 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x548 JUMPI PUSH1 0x1 DUP2 PUSH3 0xFFFFFF DUP2 LT PUSH2 0x4EB JUMPI PUSH2 0x4EB PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE DUP3 MLOAD DUP4 SWAP1 DUP4 SWAP1 DUP2 LT PUSH2 0x52A JUMPI PUSH2 0x52A PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x540 SWAP1 PUSH2 0x17F9 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x4CD JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP4 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH2 0x2E5 SWAP1 PUSH1 0x1 SWAP1 DUP6 DUP6 PUSH2 0x926 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x5D7 PUSH1 0x0 DUP7 DUP7 PUSH2 0x95E JUMP JUMPDEST DUP3 MLOAD PUSH1 0x0 DUP1 SLOAD PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x40 DUP1 DUP9 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP6 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP5 AND MUL SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE MLOAD SWAP3 SWAP6 POP SWAP1 SWAP4 POP SWAP2 POP PUSH32 0x883FC20CC248074E2C1DD4A19BF6D2004D023D0BE047378761FD6925810F381A SWAP1 PUSH2 0x692 SWAP1 DUP6 SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH2 0x15C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP3 DUP3 ADD MSTORE SWAP1 DUP3 ADD MLOAD PUSH2 0x6D1 SWAP1 PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP1 PUSH2 0xA07 JUMP JUMPDEST PUSH3 0xFFFFFF SWAP1 DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD DUP2 AND LT ISZERO PUSH2 0x706 JUMPI PUSH1 0x1 DUP3 PUSH1 0x40 ADD DUP2 DUP2 MLOAD PUSH2 0x6FD SWAP2 SWAP1 PUSH2 0x16DE JUMP JUMPDEST PUSH3 0xFFFFFF AND SWAP1 MSTORE POP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH2 0x739 DUP4 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP1 AND PUSH2 0xA1D JUMP JUMPDEST SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x754 JUMPI PUSH2 0x754 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP5 SWAP2 SWAP4 POP SWAP1 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x7A6 JUMPI DUP4 PUSH2 0x7A8 JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0x7B7 DUP8 DUP8 DUP8 DUP5 DUP8 PUSH2 0xA45 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP3 PUSH1 0x20 ADD MLOAD SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x7F9 JUMPI PUSH2 0x7F9 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x838 JUMPI PUSH1 0x0 SWAP2 POP DUP4 DUP3 PUSH2 0x754 JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP5 DIV DUP2 AND PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x0 SWAP3 DUP8 SWAP2 SWAP1 DUP10 AND GT ISZERO PUSH2 0x8F8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH2 0x907 DUP9 PUSH1 0x1 ADD DUP3 DUP8 PUSH2 0xAE1 JUMP JUMPDEST DUP3 MLOAD SWAP10 SWAP1 SWAP10 SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP3 MSTORE SWAP1 SWAP10 SWAP1 SWAP9 POP SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x942 JUMPI DUP4 PUSH2 0x944 JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0x952 DUP7 DUP7 DUP4 DUP7 PUSH2 0xBC8 JUMP JUMPDEST SWAP2 POP POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x9DA PUSH1 0x1 DUP9 ADD DUP3 DUP8 PUSH2 0xAE1 JUMP JUMPDEST DUP4 MLOAD SWAP3 SWAP7 POP SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x9EF SWAP1 DUP8 SWAP1 PUSH2 0x1691 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP5 MSTORE POP SWAP2 SWAP6 SWAP1 SWAP5 POP SWAP1 SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E5 PUSH2 0xA17 DUP5 PUSH1 0x1 PUSH2 0x16FC JUMP JUMPDEST DUP4 PUSH2 0xCE1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0xA2C JUMPI POP PUSH1 0x0 PUSH2 0x22B JUMP JUMPDEST PUSH2 0x2E5 PUSH1 0x1 PUSH2 0xA3B DUP5 DUP7 PUSH2 0x16FC JUMP JUMPDEST PUSH2 0xA17 SWAP2 SWAP1 PUSH2 0x17C5 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0xA54 DUP9 DUP9 PUSH2 0x7C2 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 PUSH2 0xA65 DUP11 DUP11 PUSH2 0x70A JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0xA7B DUP12 DUP12 DUP5 DUP8 DUP8 DUP11 DUP16 DUP15 PUSH2 0xCED JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xA8F DUP13 DUP13 DUP6 DUP9 DUP9 DUP12 DUP16 DUP16 PUSH2 0xCED JUMP JUMPDEST SWAP1 POP PUSH2 0xAA4 DUP2 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP11 PUSH2 0xE37 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP3 PUSH1 0x0 ADD MLOAD PUSH2 0xABE SWAP2 SWAP1 PUSH2 0x179D JUMP JUMPDEST PUSH2 0xAC8 SWAP2 SWAP1 PUSH2 0x1734 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP13 SWAP12 POP POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP1 PUSH2 0xB1F DUP8 DUP8 PUSH2 0x70A JUMP JUMPDEST SWAP2 POP POP DUP5 PUSH4 0xFFFFFFFF AND DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0xB48 JUMPI DUP6 SWAP4 POP SWAP2 POP PUSH1 0x0 SWAP1 POP PUSH2 0xBBF JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB62 DUP3 DUP9 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP9 PUSH2 0xF0B JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP9 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xB82 JUMPI PUSH2 0xB82 PUSH2 0x1872 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE PUSH1 0x0 PUSH2 0xBB3 DUP9 PUSH2 0x6A1 JUMP JUMPDEST SWAP6 POP SWAP1 SWAP4 POP PUSH1 0x1 SWAP3 POP POP POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xBFF DUP9 DUP9 PUSH2 0x70A JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP2 SWAP5 POP SWAP2 POP PUSH2 0xC20 SWAP1 PUSH4 0xFFFFFFFF SWAP1 DUP2 AND SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH2 0xF86 AND JUMP JUMPDEST ISZERO PUSH2 0xC3B JUMPI POP POP DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP2 POP PUSH2 0x956 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC47 DUP10 DUP10 PUSH2 0x7C2 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP1 SWAP4 POP SWAP1 SWAP2 POP PUSH2 0xC68 SWAP1 PUSH4 0xFFFFFFFF DUP1 DUP11 AND SWAP2 SWAP1 DUP10 SWAP1 PUSH2 0x1057 AND JUMP JUMPDEST ISZERO PUSH2 0xC7A JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0x956 JUMP JUMPDEST PUSH2 0xC8C DUP10 DUP6 DUP4 DUP11 DUP13 PUSH1 0x40 ADD MLOAD DUP12 PUSH2 0x1126 JUMP JUMPDEST DUP1 SWAP5 POP DUP2 SWAP4 POP POP POP PUSH2 0xCA7 DUP4 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP9 PUSH2 0xE37 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP5 PUSH1 0x0 ADD MLOAD PUSH2 0xCC1 SWAP2 SWAP1 PUSH2 0x179D JUMP JUMPDEST PUSH2 0xCCB SWAP2 SWAP1 PUSH2 0x1734 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E5 DUP3 DUP5 PUSH2 0x1832 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xD20 DUP4 DUP4 DUP10 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x1057 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0xD44 JUMPI PUSH2 0xD3D DUP8 DUP10 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP6 PUSH2 0xF0B JUMP JUMPDEST SWAP1 POP PUSH2 0xE2B JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0xD63 JUMPI POP DUP6 PUSH2 0xE2B JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0xD82 JUMPI POP DUP5 PUSH2 0xE2B JUMP JUMPDEST PUSH2 0xDA1 DUP7 PUSH1 0x20 ADD MLOAD DUP4 DUP6 PUSH4 0xFFFFFFFF AND PUSH2 0x1057 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0xDC6 JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xE2B JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xDDB DUP12 DUP9 DUP9 DUP9 DUP15 PUSH1 0x40 ADD MLOAD DUP10 PUSH2 0x1126 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0xDF4 DUP3 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x20 ADD MLOAD DUP8 PUSH2 0xE37 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x0 ADD MLOAD DUP4 PUSH1 0x0 ADD MLOAD PUSH2 0xE0E SWAP2 SWAP1 PUSH2 0x179D JUMP JUMPDEST PUSH2 0xE18 SWAP2 SWAP1 PUSH2 0x1734 JUMP JUMPDEST SWAP1 POP PUSH2 0xE25 DUP4 DUP3 DUP9 PUSH2 0xF0B JUMP JUMPDEST SWAP4 POP POP POP POP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0xE61 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0xE77 JUMPI PUSH2 0xE70 DUP4 DUP6 PUSH2 0x17DC JUMP JUMPDEST SWAP1 POP PUSH2 0x2E5 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0xEA6 JUMPI PUSH2 0xEA1 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0xEAE JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0xEE6 JUMPI PUSH2 0xEE1 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0xEEE JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH2 0xF01 DUP2 DUP4 PUSH2 0x17C5 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0xF49 DUP7 PUSH1 0x20 ADD MLOAD DUP6 DUP7 PUSH4 0xFFFFFFFF AND PUSH2 0xE37 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0xF59 SWAP1 PUSH4 0xFFFFFFFF AND DUP7 PUSH2 0x176E JUMP JUMPDEST DUP7 MLOAD PUSH2 0xF65 SWAP2 SWAP1 PUSH2 0x16BC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0xFB0 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0xFCC JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0x2E5 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0xFFB JUMPI PUSH2 0xFF6 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0x1003 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x103B JUMPI PUSH2 0x1036 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0x1043 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x1081 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x109C JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND LT SWAP1 POP PUSH2 0x2E5 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x10CB JUMPI PUSH2 0x10C6 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0x10D3 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x110B JUMPI PUSH2 0x1106 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0x1113 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 LT SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0x1171 JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0x118C JUMP JUMPDEST PUSH1 0x1 PUSH2 0x1182 PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x16FC JUMP JUMPDEST PUSH2 0x118C SWAP2 SWAP1 PUSH2 0x17C5 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0x119D DUP4 DUP6 PUSH2 0x16FC JUMP JUMPDEST PUSH2 0x11A7 SWAP2 SWAP1 PUSH2 0x175A JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0x11B9 DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0xCE1 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x11D0 JUMPI PUSH2 0x11D0 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0x1218 JUMPI PUSH2 0x1210 DUP3 PUSH1 0x1 PUSH2 0x16FC JUMP JUMPDEST SWAP4 POP POP PUSH2 0x1191 JUMP JUMPDEST DUP12 PUSH2 0x1228 DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0xA07 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x123F JUMPI PUSH2 0x123F PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0x1284 SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0xF86 AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x12AD JUMPI POP PUSH2 0x12AD DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0xF86 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x12B9 JUMPI POP POP PUSH2 0x12E5 JUMP JUMPDEST DUP1 PUSH2 0x12D0 JUMPI PUSH2 0x12C9 PUSH1 0x1 DUP5 PUSH2 0x17C5 JUMP JUMPDEST SWAP4 POP PUSH2 0x12DE JUMP JUMPDEST PUSH2 0x12DB DUP4 PUSH1 0x1 PUSH2 0x16FC JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0x1191 JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH3 0xFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1306 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1306 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1331 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x60 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1354 JUMPI PUSH2 0x1354 PUSH2 0x1888 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x136E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH2 0x137C PUSH1 0x20 DUP5 ADD PUSH2 0x12F3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x138D PUSH1 0x40 DUP5 ADD PUSH2 0x12F3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x13AE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP1 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x13CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x13E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x13F4 JUMPI PUSH2 0x13F4 PUSH2 0x1888 JUMP JUMPDEST PUSH2 0x1406 DUP5 PUSH1 0x1F NOT PUSH1 0x1F DUP5 ADD AND ADD PUSH2 0x1660 JUMP JUMPDEST SWAP2 POP DUP1 DUP3 MSTORE DUP9 DUP5 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x141C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 DUP5 DUP5 ADD DUP6 DUP5 ADD CALLDATACOPY PUSH1 0x0 DUP5 DUP3 DUP5 ADD ADD MSTORE POP DUP1 SWAP5 POP POP POP POP PUSH2 0x143F PUSH1 0x40 DUP6 ADD PUSH2 0x130B JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x145B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x146B PUSH1 0x20 DUP5 ADD PUSH2 0x130B JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1487 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1490 DUP4 PUSH2 0x130B JUMP JUMPDEST SWAP2 POP PUSH2 0x146B PUSH1 0x20 DUP5 ADD PUSH2 0x130B JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x14B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14BC DUP5 PUSH2 0x130B JUMP JUMPDEST SWAP3 POP PUSH2 0x14CA PUSH1 0x20 DUP6 ADD PUSH2 0x130B JUMP JUMPDEST SWAP2 POP PUSH2 0x143F PUSH1 0x40 DUP6 ADD PUSH2 0x130B JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1531 JUMPI PUSH2 0x1521 DUP5 DUP4 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP2 ADD MSTORE JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x14F5 JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x156B JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x154F JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x157D JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 ADD PUSH2 0x22B DUP3 DUP5 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD MLOAD PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP2 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 SWAP2 DUP3 ADD MLOAD AND SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0xC0 DUP2 ADD PUSH2 0x15FF DUP3 DUP7 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD MLOAD PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP2 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 SWAP2 DUP3 ADD MLOAD AND SWAP2 ADD MSTORE JUMP JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x80 DUP3 ADD MSTORE SWAP1 ISZERO ISZERO PUSH1 0xA0 SWAP1 SWAP2 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0xFFFFFF DUP4 AND DUP2 MSTORE PUSH1 0x60 DUP2 ADD PUSH2 0x2E5 PUSH1 0x20 DUP4 ADD DUP5 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1689 JUMPI PUSH2 0x1689 PUSH2 0x1888 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x16B3 JUMPI PUSH2 0x16B3 PUSH2 0x1846 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x16B3 JUMPI PUSH2 0x16B3 PUSH2 0x1846 JUMP JUMPDEST PUSH1 0x0 PUSH3 0xFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x16B3 JUMPI PUSH2 0x16B3 PUSH2 0x1846 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x170F JUMPI PUSH2 0x170F PUSH2 0x1846 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x16B3 JUMPI PUSH2 0x16B3 PUSH2 0x1846 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP5 AND DUP1 PUSH2 0x174E JUMPI PUSH2 0x174E PUSH2 0x185C JUMP JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1769 JUMPI PUSH2 0x1769 PUSH2 0x185C JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1794 JUMPI PUSH2 0x1794 PUSH2 0x1846 JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x17BD JUMPI PUSH2 0x17BD PUSH2 0x1846 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x17D7 JUMPI PUSH2 0x17D7 PUSH2 0x1846 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x17BD JUMPI PUSH2 0x17BD PUSH2 0x1846 JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x182B JUMPI PUSH2 0x182B PUSH2 0x1846 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1841 JUMPI PUSH2 0x1841 PUSH2 0x185C JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA6 0x2F 0x1F PUSH5 0xD7907C4CEC 0xDB 0xE9 0xB8 MSTORE8 0xF PUSH30 0x1F04AAF82CC37E9F8ED3A5D8D23B75E3C964736F6C634300080600330000 ",
              "sourceMap": "227:3014:78:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3071:168;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2668:201;;;:::i;:::-;;;;;;;;:::i;545:112::-;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;628:22:78;;;;;;;;635:7;628:22;-1:-1:-1;;;;;628:22:78;;;;;-1:-1:-1;;;628:22:78;;;;;;;;-1:-1:-1;;;628:22:78;;;;;;;;;;;;545:112;2072:383;;;;;;:::i;:::-;;:::i;:::-;;;6380:25:84;;;6368:2;6353:18;2072:383:78;6335:76:84;2461:201:78;;;:::i;1479:587::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;257:49::-;;298:8;257:49;;;;;5864:8:84;5852:21;;;5834:40;;5822:2;5807:18;257:49:78;5789:91:84;663:353:78;;;:::i;:::-;;;;;;;:::i;2875:190::-;;;;;;:::i;:::-;;:::i;1022:451::-;;;;;;:::i;:::-;;:::i;3071:168::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;3203:29:78;3216:15;3203:12;:29::i;:::-;3196:36;3071:168;-1:-1:-1;;3071:168:78:o;2668:201::-;-1:-1:-1;;;;;;;;;2737:12:78;-1:-1:-1;;;;;;;;;2737:12:78;2812:50;;;;;;;;2831:7;2812:50;-1:-1:-1;;;;;2812:50:78;;;;;-1:-1:-1;;;2812:50:78;;;;;;;;-1:-1:-1;;;2812:50:78;;;;;;;;;;;;;2831:13;;2812:18;:50::i;:::-;2805:57;;;;2668:201;;:::o;2072:383::-;2254:194;;;;;;;;2216:7;2254:194;;-1:-1:-1;;;;;2254:194:78;;;;;-1:-1:-1;;;2254:194:78;;;;;;;;-1:-1:-1;;;2254:194:78;;;;;;;;;;;;;2304:13;;2368:10;2396:8;2422:12;2254:32;:194::i;:::-;2235:213;;2072:383;;;;;;:::o;2461:201::-;-1:-1:-1;;;;;;;;;2530:12:78;-1:-1:-1;;;;;;;;;2530:12:78;2605:50;;;;;;;;2624:7;2605:50;-1:-1:-1;;;;;2605:50:78;;;;;-1:-1:-1;;;2605:50:78;;;;;;;;-1:-1:-1;;;2605:50:78;;;;;;;;;;;;;2624:13;;2605:18;:50::i;1479:587::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1759:10:78;1826:138;1863:7;1892;1914:14;1942:12;1826:23;:138::i;:::-;1975:32;;:7;:32;;;;;;;;;;;-1:-1:-1;;;;;1975:32:78;;;;;;;;;;;-1:-1:-1;;;1975:32:78;;;;;;;;-1:-1:-1;;;1975:32:78;;;;;;;;;;;2023:36;1975:32;;-1:-1:-1;1794:170:78;;-1:-1:-1;1794:170:78;-1:-1:-1;2023:36:78;;;;1975:32;;1794:170;;;;2023:36;:::i;:::-;;;;;;;;1479:587;;;;;;;:::o;663:353::-;750:42;841:27;;703:35;;750:42;-1:-1:-1;;;841:27:78;;;;795:83;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;795:83:78;;;;;;;;;;;;;;;;750:128;;894:9;889:97;913:6;:13;909:1;:17;889:97;;;959:13;973:1;959:16;;;;;;;:::i;:::-;947:28;;;;;;;;;959:16;;947:28;-1:-1:-1;;;;;947:28:78;;;;-1:-1:-1;;;947:28:78;;;;;;;;:9;;;;954:1;;947:9;;;;;;:::i;:::-;;;;;;:28;;;;928:3;;;;;:::i;:::-;;;;889:97;;;-1:-1:-1;1003:6:78;663:353;-1:-1:-1;663:353:78:o;2875:190::-;2983:75;;;;;;;;2957:7;2983:75;;-1:-1:-1;;;;;2983:75:78;;;;;-1:-1:-1;;;2983:75:78;;;;;;;;-1:-1:-1;;;2983:75:78;;;;;;;;;;;;;3004:13;;3036:7;3045:12;2983:20;:75::i;1022:451::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1242:10:78;1309:64;1333:7;1350;1360:12;1309:23;:64::i;:::-;1383:32;;:7;:32;;;;;;;;;;;-1:-1:-1;;;;;1383:32:78;;;;;;;;;;;-1:-1:-1;;;1383:32:78;;;;;;;;-1:-1:-1;;;1383:32:78;;;;;;;;;;;1430:36;1383:32;;-1:-1:-1;1277:96:78;;-1:-1:-1;1277:96:78;-1:-1:-1;1430:36:78;;;;1383:32;;1277:96;;;;1430:36;:::i;:::-;;;;;;;;1022:451;;;;;:::o;18458:866:57:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;18671:29:57;;;;18647:71;;;;;;;:23;:71::i;:::-;18595:133;;;;:29;;;:133;19181:27;;;;:45;;;19177:108;;;19273:1;19242:15;:27;;:32;;;;;;;:::i;:::-;;;;;-1:-1:-1;19177:108:57;-1:-1:-1;19302:15:57;18458:866::o;7383:354::-;-1:-1:-1;;;;;;;;;7547:12:57;-1:-1:-1;;;;;;;;;7547:12:57;7626:73;7652:15;:29;;;7626:73;;2065:8;7626:73;;:25;:73::i;:::-;7611:89;;7717:6;7724:5;7717:13;;;;;;;;;:::i;:::-;7710:20;;;;;;;;;7717:13;;7710:20;-1:-1:-1;;;;;7710:20:57;;;;-1:-1:-1;;;7710:20:57;;;;;;;;7383:354;;7710:20;;-1:-1:-1;7383:354:57;;-1:-1:-1;;7383:354:57:o;5892:466::-;6151:7;6170:14;6198:12;6187:23;;:8;:23;;;:49;;6228:8;6187:49;;;6213:12;6187:49;6170:66;;6266:85;6292:6;6300:15;6317:10;6329:7;6338:12;6266:25;:85::i;:::-;6247:104;5892:466;-1:-1:-1;;;;;;;5892:466:57:o;6618:505::-;-1:-1:-1;;;;;;;;;6782:12:57;-1:-1:-1;;;;;;;;;6782:12:57;6854:15;:29;;;6846:37;;6900:6;6907:5;6900:13;;;;;;;;;:::i;:::-;6893:20;;;;;;;;;6900:13;;6893:20;-1:-1:-1;;;;;6893:20:57;;;;-1:-1:-1;;;6893:20:57;;;;;;;;;;;;-1:-1:-1;7028:89:57;;7075:1;;-1:-1:-1;7097:6:57;7075:1;7097:9;;7028:89;6618:505;;;;;:::o;4498:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4839:56:57;;;;;;;;;;-1:-1:-1;;;;;4839:56:57;;;;;;;-1:-1:-1;;;4839:56:57;;;;;;;;-1:-1:-1;;;4839:56:57;;;;;;;;;;;;;4804:10;;4950:14;;4914:34;;;-1:-1:-1;4914:34:57;4906:59;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5008:56;5018:8;:14;;5034:15;5051:12;5008:9;:56::i;:::-;5098:33;;;;;;-1:-1:-1;;;;;5098:33:57;;;;;4976:88;;-1:-1:-1;4976:88:57;-1:-1:-1;;;;;;4498:650:57:o;8039:409::-;8262:7;8281:19;8317:12;8303:26;;:11;:26;;;:55;;8347:11;8303:55;;;8332:12;8303:55;8281:77;;8375:66;8389:6;8397:15;8414:12;8428;8375:13;:66::i;:::-;8368:73;;;8039:409;;;;;;;:::o;3330:532::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3633:56:57;;;;;;;;;;-1:-1:-1;;;;;3633:56:57;;;;;-1:-1:-1;;;3633:56:57;;;;;;;;-1:-1:-1;;;3633:56:57;;;;;;;;;;;3598:10;;3731:56;3633;3741:14;;3633:56;3774:12;3731:9;:56::i;:::-;3822:23;;3699:88;;-1:-1:-1;3699:88:57;;-1:-1:-1;3699:88:57;-1:-1:-1;3822:33:57;;3848:7;;3822:33;:::i;:::-;-1:-1:-1;;;;;3797:58:57;;;-1:-1:-1;3797:14:57;;3330:532;;-1:-1:-1;3330:532:57;;-1:-1:-1;3330:532:57;-1:-1:-1;3330:532:57:o;2263:171:56:-;2367:7;2397:30;2402:10;:6;2411:1;2402:10;:::i;:::-;2414:12;2397:4;:30::i;1666:262::-;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:56;1836:8;;1799:56;1872:49;1905:1;1877:25;1890:12;1877:10;:25;:::i;:::-;:29;;;;:::i;8734:1315:57:-;8993:7;9013:22;9037:41;9082:69;9106:6;9126:15;9082:10;:69::i;:::-;9012:139;;;;9163:22;9187:41;9232:69;9256:6;9276:15;9232:10;:69::i;:::-;9162:139;;;;9312:43;9358:223;9386:6;9406:15;9435:7;9456;9477:15;9506;9535:10;9559:12;9358:14;:223::i;:::-;9312:269;;9592:41;9636:221;9664:6;9684:15;9713:7;9734;9755:15;9784;9813:8;9835:12;9636:14;:221::i;:::-;9592:265;;9952:90;9989:7;:17;;;10008:9;:19;;;10029:12;9952:36;:90::i;:::-;9914:128;;9932:9;:16;;;9915:7;:14;;;:33;;;;:::i;:::-;9914:128;;;;:::i;:::-;-1:-1:-1;;;;;9907:135:57;;8734:1315;-1:-1:-1;;;;;;;;;;;;8734:1315:57:o;17234:969::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17551:10:57;17589:45;17638:35;17649:6;17657:15;17638:10;:35::i;:::-;17586:87;;;17759:12;17734:37;;:11;:21;;;:37;;;17730:112;;;17795:15;;-1:-1:-1;17812:11:57;-1:-1:-1;17825:5:57;;-1:-1:-1;17787:44:57;;17730:112;17852:41;17896:114;17926:11;17951:15;:23;;;-1:-1:-1;;;;;17896:114:57;17988:12;17896:16;:114::i;:::-;17852:158;;18061:7;18021:6;18028:15;:29;;;18021:37;;;;;;;;;:::i;:::-;:47;;;;;;;;;-1:-1:-1;;;18021:47:57;-1:-1:-1;;;;;18021:47:57;;;;;;;:37;;:47;;18122:21;18127:15;18122:4;:21::i;:::-;18079:64;-1:-1:-1;18182:7:57;;-1:-1:-1;18191:4:57;;-1:-1:-1;;;17234:969:57;;;;;;;;:::o;10681:1769::-;-1:-1:-1;;;;;;;;;10904:7:57;-1:-1:-1;;;;;;;;;10904:7:57;;;-1:-1:-1;;;;;;;;;;;;;;;;;11094:35:57;11105:6;11113:15;11094:10;:35::i;:::-;11255:20;;;;11062:67;;-1:-1:-1;11062:67:57;-1:-1:-1;11255:51:57;;:24;;;;;11280:11;;11293:12;;11255:24;:51;:::i;:::-;11251:112;;;-1:-1:-1;;11329:23:57;;-1:-1:-1;;;;;11322:30:57;;-1:-1:-1;11322:30:57;;-1:-1:-1;11322:30:57;11251:112;11373:22;11483:35;11494:6;11502:15;11483:10;:35::i;:::-;11639:20;;;;11451:67;;-1:-1:-1;11451:67:57;;-1:-1:-1;11624:50:57;;:14;;;;;11639:20;11661:12;;11624:14;:50;:::i;:::-;11620:89;;;11697:1;11690:8;;;;;;;;11620:89;11797:207;11838:6;11858:15;11887;11916:11;11941:15;:27;;;11982:12;11797:27;:207::i;:::-;11771:233;;;;;;;;12350:93;12387:9;:19;;;12408:10;:20;;;12430:12;12350:36;:93::i;:::-;12309:134;;12329:10;:17;;;12310:9;:16;;;:36;;;;:::i;:::-;12309:134;;;;:::i;:::-;-1:-1:-1;;;;;12290:153:57;;10681:1769;-1:-1:-1;;;;;;;;;10681:1769:57:o;580:129:56:-;655:7;681:21;690:12;681:6;:21;:::i;13740:1898:57:-;-1:-1:-1;;;;;;;;;;;;;;;;;14287:49:57;14312:16;14330:5;14287:11;:21;;;:24;;;;:49;;;;;:::i;:::-;14283:159;;;14359:72;14376:11;14389:15;:23;;;-1:-1:-1;;;;;14359:72:57;14414:16;14359;:72::i;:::-;14352:79;;;;14283:159;14481:16;14456:41;;:11;:21;;;:41;;;14452:90;;;-1:-1:-1;14520:11:57;14513:18;;14452:90;14581:16;14556:41;;:11;:21;;;:41;;;14552:90;;;-1:-1:-1;14620:11:57;14613:18;;14552:90;14754:49;14774:11;:21;;;14797:5;14754:16;:19;;;;:49;;;;;:::i;:::-;14750:157;;;-1:-1:-1;14826:70:57;;;;;;;;;-1:-1:-1;14826:70:57;;;;;;;;;14819:77;;14750:157;14998:49;15061:48;15122:235;15167:6;15191:16;15225;15259;15293:15;:27;;;15338:5;15122:27;:235::i;:::-;14984:373;;;;15368:19;15453:96;15490:14;:24;;;15516:15;:25;;;15543:5;15453:36;:96::i;:::-;15390:159;;15415:15;:22;;;15391:14;:21;;;:46;;;;:::i;:::-;15390:159;;;;:::i;:::-;15368:181;;15567:64;15584:15;15601:11;15614:16;15567;:64::i;:::-;15560:71;;;;;13740:1898;;;;;;;;;;;:::o;2486:432:55:-;2600:6;2691:10;2685:16;;:2;:16;;;;:36;;;;;2711:10;2705:16;;:2;:16;;;;2685:36;2681:56;;;2730:7;2735:2;2730;:7;:::i;:::-;2723:14;;;;2681:56;2748:17;2773:10;2768:15;;:2;:15;;;:33;;2791:10;;;;2796:5;2791:10;:::i;:::-;2768:33;;;2786:2;2768:33;;;2748:53;;;;2811:17;2836:10;2831:15;;:2;:15;;;:33;;2854:10;;;;2859:5;2854:10;:::i;:::-;2831:33;;;2849:2;2831:33;;;2811:53;;;-1:-1:-1;2889:21:55;2811:53;2889:9;:21;:::i;:::-;2875:36;2486:432;-1:-1:-1;;;;;;2486:432:55:o;16102:560:57:-;-1:-1:-1;;;;;;;;;;;;;;;;;16424:231:57;;;;;;;;16558:47;16575:12;:22;;;16599:5;16558;:16;;;;:47;;;;;:::i;:::-;16519:87;;;;:15;:87;:::i;:::-;16477:19;;:129;;;;:::i;:::-;-1:-1:-1;;;;;16424:231:57;;;;;16635:5;16424:231;;;;;16405:250;;16102:560;;;;;:::o;1658:417:55:-;1765:4;1854:10;1848:16;;:2;:16;;;;:36;;;;;1874:10;1868:16;;:2;:16;;;;1848:36;1844:57;;;1899:2;1893:8;;:2;:8;;;;1886:15;;;;1844:57;1912:17;1937:10;1932:15;;:2;:15;;;:33;;1955:10;;;;1960:5;1955:10;:::i;:::-;1932:33;;;1950:2;1932:33;;;1912:53;;;;1975:17;2000:10;1995:15;;:2;:15;;;:33;;2018:10;;;;2023:5;2018:10;:::i;:::-;1995:33;;;2013:2;1995:33;;;1975:53;;2046:22;;;;;1658:417;-1:-1:-1;;;;;1658:417:55:o;811:413::-;917:4;1005:10;999:16;;:2;:16;;;;:36;;;;;1025:10;1019:16;;:2;:16;;;;999:36;995:56;;;1049:2;1044:7;;:2;:7;;;1037:14;;;;995:56;1062:17;1087:10;1082:15;;:2;:15;;;:33;;1105:10;;;;1110:5;1105:10;:::i;:::-;1082:33;;;1100:2;1082:33;;;1062:53;;;;1125:17;1150:10;1145:15;;:2;:15;;;:33;;1168:10;;;;1173:5;1168:10;:::i;:::-;1145:33;;;1163:2;1145:33;;;1125:53;;1196:21;;;;811:413;-1:-1:-1;;;;;811:413:55:o;2382:2006:54:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2719:16:54;2738:23;2719:42;;;;2771:17;2817:8;2791:23;:34;;;:114;;2882:23;2791:114;;;;;2866:1;2840:23;;;;:8;:23;:::i;:::-;:27;;;;:::i;:::-;2771:134;;2915:20;2946:1436;3237:1;3213:20;3224:9;3213:8;:20;:::i;:::-;3212:26;;;;:::i;:::-;3197:41;;3266:13;3287:46;3306:12;3320;3287:46;;:18;:46::i;:::-;3266:69;;;;;;;;;:::i;:::-;3253:82;;;;;;;;;3266:69;;3253:82;-1:-1:-1;;;;;3253:82:54;;;;-1:-1:-1;;;3253:82:54;;;;;;;;;;;;-1:-1:-1;3253:82:54;3511:116;;3570:16;:12;3585:1;3570:16;:::i;:::-;3559:27;;3604:8;;;3511:116;3653:13;3674:51;3698:12;3712;3674:51;;:23;:51::i;:::-;3653:74;;;;;;;;;:::i;:::-;3641:86;;;;;;;;;3653:74;;3641:86;-1:-1:-1;;;;;3641:86:54;;;;;-1:-1:-1;;;3641:86:54;;;;;;;;;;;-1:-1:-1;;;3765:39:54;;:23;;;;3789:7;;3798:5;;3765:23;:39;:::i;:::-;3742:62;;3890:15;:58;;;;;3909:39;3921:9;:19;;;3942:5;3909:7;:11;;;;:39;;;;;:::i;:::-;3886:102;;;3968:5;;;;3886:102;4138:15;4133:239;;4185:16;4200:1;4185:12;:16;:::i;:::-;4173:28;;4133:239;;;4341:16;:12;4356:1;4341:16;:::i;:::-;4330:27;;4133:239;2959:1423;;2946:1436;;;2709:1679;;;2382:2006;;;;;;;;;:::o;14:161:84:-;81:20;;141:8;130:20;;120:31;;110:2;;165:1;162;155:12;110:2;62:113;;;:::o;180:163::-;247:20;;307:10;296:22;;286:33;;276:2;;333:1;330;323:12;348:729;440:6;493:2;481:9;472:7;468:23;464:32;461:2;;;509:1;506;499:12;461:2;542;536:9;584:2;576:6;572:15;653:6;641:10;638:22;617:18;605:10;602:34;599:62;596:2;;;664:18;;:::i;:::-;700:2;693:22;737:23;;-1:-1:-1;;;;;789:66:84;;779:77;;769:2;;870:1;867;860:12;769:2;883:21;;937:37;970:2;955:18;;937:37;:::i;:::-;932:2;924:6;920:15;913:62;1008:37;1041:2;1030:9;1026:18;1008:37;:::i;:::-;1003:2;991:15;;984:62;995:6;451:626;-1:-1:-1;;;451:626:84:o;1082:963::-;1168:6;1176;1184;1237:2;1225:9;1216:7;1212:23;1208:32;1205:2;;;1253:1;1250;1243:12;1205:2;1289:9;1276:23;1266:33;;1318:2;1371;1360:9;1356:18;1343:32;1394:18;1435:2;1427:6;1424:14;1421:2;;;1451:1;1448;1441:12;1421:2;1489:6;1478:9;1474:22;1464:32;;1534:7;1527:4;1523:2;1519:13;1515:27;1505:2;;1556:1;1553;1546:12;1505:2;1592;1579:16;1614:2;1610;1607:10;1604:2;;;1620:18;;:::i;:::-;1662:112;1770:2;-1:-1:-1;;1694:4:84;1690:2;1686:13;1682:86;1678:95;1662:112;:::i;:::-;1649:125;;1797:2;1790:5;1783:17;1837:7;1832:2;1827;1823;1819:11;1815:20;1812:33;1809:2;;;1858:1;1855;1848:12;1809:2;1913;1908;1904;1900:11;1895:2;1888:5;1884:14;1871:45;1957:1;1952:2;1947;1940:5;1936:14;1932:23;1925:34;;1978:5;1968:15;;;;;2002:37;2035:2;2024:9;2020:18;2002:37;:::i;:::-;1992:47;;1195:850;;;;;:::o;2050:252::-;2117:6;2125;2178:2;2166:9;2157:7;2153:23;2149:32;2146:2;;;2194:1;2191;2184:12;2146:2;2230:9;2217:23;2207:33;;2259:37;2292:2;2281:9;2277:18;2259:37;:::i;:::-;2249:47;;2136:166;;;;;:::o;2307:256::-;2373:6;2381;2434:2;2422:9;2413:7;2409:23;2405:32;2402:2;;;2450:1;2447;2440:12;2402:2;2473:28;2491:9;2473:28;:::i;:::-;2463:38;;2520:37;2553:2;2542:9;2538:18;2520:37;:::i;2568:328::-;2642:6;2650;2658;2711:2;2699:9;2690:7;2686:23;2682:32;2679:2;;;2727:1;2724;2717:12;2679:2;2750:28;2768:9;2750:28;:::i;:::-;2740:38;;2797:37;2830:2;2819:9;2815:18;2797:37;:::i;:::-;2787:47;;2853:37;2886:2;2875:9;2871:18;2853:37;:::i;3503:736::-;3734:2;3786:21;;;3856:13;;3759:18;;;3878:22;;;3705:4;;3734:2;3919;;3937:18;;;;3978:15;;;3705:4;4021:192;4035:6;4032:1;4029:13;4021:192;;;4084:49;4129:3;4120:6;4114:13;3345:12;;-1:-1:-1;;;;;3341:77:84;3329:90;;3472:4;3461:16;;;3455:23;3480:10;3451:40;3435:14;;3428:64;3319:179;4084:49;4153:12;;;;4188:15;;;;4057:1;4050:9;4021:192;;;-1:-1:-1;4230:3:84;;3714:525;-1:-1:-1;;;;;;;3714:525:84:o;4244:656::-;4356:4;4385:2;4414;4403:9;4396:21;4446:6;4440:13;4489:6;4484:2;4473:9;4469:18;4462:34;4514:1;4524:140;4538:6;4535:1;4532:13;4524:140;;;4633:14;;;4629:23;;4623:30;4599:17;;;4618:2;4595:26;4588:66;4553:10;;4524:140;;;4682:6;4679:1;4676:13;4673:2;;;4752:1;4747:2;4738:6;4727:9;4723:22;4719:31;4712:42;4673:2;-1:-1:-1;4816:2:84;4804:15;-1:-1:-1;;4800:88:84;4785:104;;;;4891:2;4781:113;;4365:535;-1:-1:-1;;;4365:535:84:o;4905:269::-;5105:2;5090:18;;5117:51;5094:9;5150:6;2985:12;;-1:-1:-1;;;;;2981:73:84;2969:86;;3101:4;3090:16;;;3084:23;3126:8;3166:21;;;3150:14;;;3143:45;;;;3241:4;3230:16;;;3224:23;3220:32;3204:14;;3197:56;2959:300;5179:506;5489:3;5474:19;;5502:51;5478:9;5535:6;2985:12;;-1:-1:-1;;;;;2981:73:84;2969:86;;3101:4;3090:16;;;3084:23;3126:8;3166:21;;;3150:14;;;3143:45;;;;3241:4;3230:16;;;3224:23;3220:32;3204:14;;3197:56;2959:300;5502:51;3345:12;;-1:-1:-1;;;;;3341:77:84;5615:2;5600:18;;3329:90;3472:4;3461:16;;;3455:23;3480:10;3451:40;3435:14;;;3428:64;5663:14;;5656:22;5650:3;5635:19;;;5628:51;5456:229;;-1:-1:-1;5456:229:84:o;5885:344::-;6147:8;6135:21;;6117:40;;6105:2;6090:18;;6166:57;6219:2;6204:18;;6196:6;3345:12;;-1:-1:-1;;;;;3341:77:84;3329:90;;3472:4;3461:16;;;3455:23;3480:10;3451:40;3435:14;;3428:64;3319:179;6416:334;6487:2;6481:9;6543:2;6533:13;;-1:-1:-1;;6529:86:84;6517:99;;6646:18;6631:34;;6667:22;;;6628:62;6625:2;;;6693:18;;:::i;:::-;6729:2;6722:22;6461:289;;-1:-1:-1;6461:289:84:o;6755:273::-;6795:3;-1:-1:-1;;;;;6904:2:84;6901:1;6897:10;6934:2;6931:1;6927:10;6965:3;6961:2;6957:12;6952:3;6949:21;6946:2;;;6973:18;;:::i;:::-;7009:13;;6803:225;-1:-1:-1;;;;6803:225:84:o;7033:277::-;7073:3;-1:-1:-1;;;;;7186:2:84;7183:1;7179:10;7216:2;7213:1;7209:10;7247:3;7243:2;7239:12;7234:3;7231:21;7228:2;;;7255:18;;:::i;7315:226::-;7354:3;7382:8;7417:2;7414:1;7410:10;7447:2;7444:1;7440:10;7478:3;7474:2;7470:12;7465:3;7462:21;7459:2;;;7486:18;;:::i;7546:128::-;7586:3;7617:1;7613:6;7610:1;7607:13;7604:2;;;7623:18;;:::i;:::-;-1:-1:-1;7659:9:84;;7594:80::o;7679:230::-;7718:3;7746:12;7785:2;7782:1;7778:10;7815:2;7812:1;7808:10;7846:3;7842:2;7838:12;7833:3;7830:21;7827:2;;;7854:18;;:::i;7914:240::-;7954:1;-1:-1:-1;;;;;8065:2:84;8062:1;8058:10;8087:3;8077:2;;8094:18;;:::i;:::-;8132:10;;8128:20;;;;;7960:194;-1:-1:-1;;7960:194:84:o;8159:120::-;8199:1;8225;8215:2;;8230:18;;:::i;:::-;-1:-1:-1;8264:9:84;;8205:74::o;8284:311::-;8324:7;-1:-1:-1;;;;;8441:2:84;8438:1;8434:10;8471:2;8468:1;8464:10;8527:3;8523:2;8519:12;8514:3;8511:21;8504:3;8497:11;8490:19;8486:47;8483:2;;;8536:18;;:::i;:::-;8576:13;;8336:259;-1:-1:-1;;;;8336:259:84:o;8600:270::-;8640:4;-1:-1:-1;;;;;8777:10:84;;;;8747;;8799:12;;;8796:2;;;8814:18;;:::i;:::-;8851:13;;8649:221;-1:-1:-1;;;8649:221:84:o;8875:125::-;8915:4;8943:1;8940;8937:8;8934:2;;;8948:18;;:::i;:::-;-1:-1:-1;8985:9:84;;8924:76::o;9005:221::-;9044:4;9073:10;9133;;;;9103;;9155:12;;;9152:2;;;9170:18;;:::i;9231:195::-;9270:3;9301:66;9294:5;9291:77;9288:2;;;9371:18;;:::i;:::-;-1:-1:-1;9418:1:84;9407:13;;9278:148::o;9431:112::-;9463:1;9489;9479:2;;9494:18;;:::i;:::-;-1:-1:-1;9528:9:84;;9469:74::o;9548:184::-;-1:-1:-1;;;9597:1:84;9590:88;9697:4;9694:1;9687:15;9721:4;9718:1;9711:15;9737:184;-1:-1:-1;;;9786:1:84;9779:88;9886:4;9883:1;9876:15;9910:4;9907:1;9900:15;9926:184;-1:-1:-1;;;9975:1:84;9968:88;10075:4;10072:1;10065:15;10099:4;10096:1;10089:15;10115:184;-1:-1:-1;;;10164:1:84;10157:88;10264:4;10261:1;10254:15;10288:4;10285:1;10278:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1271200",
                "executionCost": "1322",
                "totalCost": "1272522"
              },
              "external": {
                "MAX_CARDINALITY()": "249",
                "decreaseBalance(uint256,string,uint32)": "infinite",
                "details()": "2697",
                "getAverageBalanceBetween(uint32,uint32,uint32)": "infinite",
                "getBalanceAt(uint32,uint32)": "infinite",
                "increaseBalance(uint256,uint32)": "infinite",
                "newestTwab()": "infinite",
                "oldestTwab()": "7357",
                "push((uint208,uint24,uint24))": "infinite",
                "twabs()": "infinite"
              }
            },
            "methodIdentifiers": {
              "MAX_CARDINALITY()": "8200d873",
              "decreaseBalance(uint256,string,uint32)": "7c2014c6",
              "details()": "565974d3",
              "getAverageBalanceBetween(uint32,uint32,uint32)": "6126af6e",
              "getBalanceAt(uint32,uint32)": "c3c191fd",
              "increaseBalance(uint256,uint32)": "ff429279",
              "newestTwab()": "3c4e9c1e",
              "oldestTwab()": "63ee9476",
              "push((uint208,uint24,uint24))": "39095bcb",
              "twabs()": "8ca0b771"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"components\":[{\"internalType\":\"uint208\",\"name\":\"balance\",\"type\":\"uint208\"},{\"internalType\":\"uint24\",\"name\":\"nextTwabIndex\",\"type\":\"uint24\"},{\"internalType\":\"uint24\",\"name\":\"cardinality\",\"type\":\"uint24\"}],\"indexed\":false,\"internalType\":\"struct TwabLib.AccountDetails\",\"name\":\"accountDetails\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"twab\",\"type\":\"tuple\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"isNew\",\"type\":\"bool\"}],\"name\":\"Updated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"MAX_CARDINALITY\",\"outputs\":[{\"internalType\":\"uint24\",\"name\":\"\",\"type\":\"uint24\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"_revertMessage\",\"type\":\"string\"},{\"internalType\":\"uint32\",\"name\":\"_currentTime\",\"type\":\"uint32\"}],\"name\":\"decreaseBalance\",\"outputs\":[{\"components\":[{\"internalType\":\"uint208\",\"name\":\"balance\",\"type\":\"uint208\"},{\"internalType\":\"uint24\",\"name\":\"nextTwabIndex\",\"type\":\"uint24\"},{\"internalType\":\"uint24\",\"name\":\"cardinality\",\"type\":\"uint24\"}],\"internalType\":\"struct TwabLib.AccountDetails\",\"name\":\"accountDetails\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"twab\",\"type\":\"tuple\"},{\"internalType\":\"bool\",\"name\":\"isNew\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"details\",\"outputs\":[{\"components\":[{\"internalType\":\"uint208\",\"name\":\"balance\",\"type\":\"uint208\"},{\"internalType\":\"uint24\",\"name\":\"nextTwabIndex\",\"type\":\"uint24\"},{\"internalType\":\"uint24\",\"name\":\"cardinality\",\"type\":\"uint24\"}],\"internalType\":\"struct TwabLib.AccountDetails\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_startTime\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"_endTime\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"_currentTime\",\"type\":\"uint32\"}],\"name\":\"getAverageBalanceBetween\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_target\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"_currentTime\",\"type\":\"uint32\"}],\"name\":\"getBalanceAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"_currentTime\",\"type\":\"uint32\"}],\"name\":\"increaseBalance\",\"outputs\":[{\"components\":[{\"internalType\":\"uint208\",\"name\":\"balance\",\"type\":\"uint208\"},{\"internalType\":\"uint24\",\"name\":\"nextTwabIndex\",\"type\":\"uint24\"},{\"internalType\":\"uint24\",\"name\":\"cardinality\",\"type\":\"uint24\"}],\"internalType\":\"struct TwabLib.AccountDetails\",\"name\":\"accountDetails\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"twab\",\"type\":\"tuple\"},{\"internalType\":\"bool\",\"name\":\"isNew\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"newestTwab\",\"outputs\":[{\"internalType\":\"uint24\",\"name\":\"index\",\"type\":\"uint24\"},{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"twab\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"oldestTwab\",\"outputs\":[{\"internalType\":\"uint24\",\"name\":\"index\",\"type\":\"uint24\"},{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"twab\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint208\",\"name\":\"balance\",\"type\":\"uint208\"},{\"internalType\":\"uint24\",\"name\":\"nextTwabIndex\",\"type\":\"uint24\"},{\"internalType\":\"uint24\",\"name\":\"cardinality\",\"type\":\"uint24\"}],\"internalType\":\"struct TwabLib.AccountDetails\",\"name\":\"_accountDetails\",\"type\":\"tuple\"}],\"name\":\"push\",\"outputs\":[{\"components\":[{\"internalType\":\"uint208\",\"name\":\"balance\",\"type\":\"uint208\"},{\"internalType\":\"uint24\",\"name\":\"nextTwabIndex\",\"type\":\"uint24\"},{\"internalType\":\"uint24\",\"name\":\"cardinality\",\"type\":\"uint24\"}],\"internalType\":\"struct TwabLib.AccountDetails\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"twabs\",\"outputs\":[{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"internalType\":\"struct ObservationLib.Observation[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc.\",\"kind\":\"dev\",\"methods\":{},\"title\":\"TwabLibExposed contract to test TwabLib library\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/TwabLibraryExposed.sol\":\"TwabLibExposed\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring buffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"},\"contracts/test/TwabLibraryExposed.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"../libraries/RingBufferLib.sol\\\";\\n\\n/// @title TwabLibExposed contract to test TwabLib library\\n/// @author PoolTogether Inc.\\ncontract TwabLibExposed {\\n    uint24 public constant MAX_CARDINALITY = 16777215;\\n\\n    using TwabLib for ObservationLib.Observation[MAX_CARDINALITY];\\n\\n    TwabLib.Account account;\\n\\n    event Updated(\\n        TwabLib.AccountDetails accountDetails,\\n        ObservationLib.Observation twab,\\n        bool isNew\\n    );\\n\\n    function details() external view returns (TwabLib.AccountDetails memory) {\\n        return account.details;\\n    }\\n\\n    function twabs() external view returns (ObservationLib.Observation[] memory) {\\n        ObservationLib.Observation[] memory _twabs = new ObservationLib.Observation[](\\n            account.details.cardinality\\n        );\\n\\n        for (uint256 i = 0; i < _twabs.length; i++) {\\n            _twabs[i] = account.twabs[i];\\n        }\\n\\n        return _twabs;\\n    }\\n\\n    function increaseBalance(uint256 _amount, uint32 _currentTime)\\n        external\\n        returns (\\n            TwabLib.AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (accountDetails, twab, isNew) = TwabLib.increaseBalance(account, uint208(_amount), _currentTime);\\n        account.details = accountDetails;\\n        emit Updated(accountDetails, twab, isNew);\\n    }\\n\\n    function decreaseBalance(\\n        uint256 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        external\\n        returns (\\n            TwabLib.AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (accountDetails, twab, isNew) = TwabLib.decreaseBalance(\\n            account,\\n            uint208(_amount),\\n            _revertMessage,\\n            _currentTime\\n        );\\n\\n        account.details = accountDetails;\\n\\n        emit Updated(accountDetails, twab, isNew);\\n    }\\n\\n    function getAverageBalanceBetween(\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) external view returns (uint256) {\\n        return\\n            TwabLib.getAverageBalanceBetween(\\n                account.twabs,\\n                account.details,\\n                _startTime,\\n                _endTime,\\n                _currentTime\\n            );\\n    }\\n\\n    function oldestTwab()\\n        external\\n        view\\n        returns (uint24 index, ObservationLib.Observation memory twab)\\n    {\\n        return TwabLib.oldestTwab(account.twabs, account.details);\\n    }\\n\\n    function newestTwab()\\n        external\\n        view\\n        returns (uint24 index, ObservationLib.Observation memory twab)\\n    {\\n        return TwabLib.newestTwab(account.twabs, account.details);\\n    }\\n\\n    function getBalanceAt(uint32 _target, uint32 _currentTime) external view returns (uint256) {\\n        return TwabLib.getBalanceAt(account.twabs, account.details, _target, _currentTime);\\n    }\\n\\n    function push(TwabLib.AccountDetails memory _accountDetails) external pure returns (TwabLib.AccountDetails memory) {\\n        return TwabLib.push(_accountDetails);\\n    }\\n}\\n\",\"keccak256\":\"0x501636946b6a59ee46ba5828bdf5134d4d2ef156fcc7b82396b69627dbf463eb\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 16993,
                "contract": "contracts/test/TwabLibraryExposed.sol:TwabLibExposed",
                "label": "account",
                "offset": 0,
                "slot": "0",
                "type": "t_struct(Account)12882_storage"
              }
            ],
            "types": {
              "t_array(t_struct(Observation)12454_storage)16777215_storage": {
                "base": "t_struct(Observation)12454_storage",
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation[16777215]",
                "numberOfBytes": "536870880"
              },
              "t_struct(Account)12882_storage": {
                "encoding": "inplace",
                "label": "struct TwabLib.Account",
                "members": [
                  {
                    "astId": 12876,
                    "contract": "contracts/test/TwabLibraryExposed.sol:TwabLibExposed",
                    "label": "details",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_struct(AccountDetails)12873_storage"
                  },
                  {
                    "astId": 12881,
                    "contract": "contracts/test/TwabLibraryExposed.sol:TwabLibExposed",
                    "label": "twabs",
                    "offset": 0,
                    "slot": "1",
                    "type": "t_array(t_struct(Observation)12454_storage)16777215_storage"
                  }
                ],
                "numberOfBytes": "536870912"
              },
              "t_struct(AccountDetails)12873_storage": {
                "encoding": "inplace",
                "label": "struct TwabLib.AccountDetails",
                "members": [
                  {
                    "astId": 12868,
                    "contract": "contracts/test/TwabLibraryExposed.sol:TwabLibExposed",
                    "label": "balance",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint208"
                  },
                  {
                    "astId": 12870,
                    "contract": "contracts/test/TwabLibraryExposed.sol:TwabLibExposed",
                    "label": "nextTwabIndex",
                    "offset": 26,
                    "slot": "0",
                    "type": "t_uint24"
                  },
                  {
                    "astId": 12872,
                    "contract": "contracts/test/TwabLibraryExposed.sol:TwabLibExposed",
                    "label": "cardinality",
                    "offset": 29,
                    "slot": "0",
                    "type": "t_uint24"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(Observation)12454_storage": {
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation",
                "members": [
                  {
                    "astId": 12451,
                    "contract": "contracts/test/TwabLibraryExposed.sol:TwabLibExposed",
                    "label": "amount",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint224"
                  },
                  {
                    "astId": 12453,
                    "contract": "contracts/test/TwabLibraryExposed.sol:TwabLibExposed",
                    "label": "timestamp",
                    "offset": 28,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint208": {
                "encoding": "inplace",
                "label": "uint208",
                "numberOfBytes": "26"
              },
              "t_uint224": {
                "encoding": "inplace",
                "label": "uint224",
                "numberOfBytes": "28"
              },
              "t_uint24": {
                "encoding": "inplace",
                "label": "uint24",
                "numberOfBytes": "3"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "contracts/test/YieldSourceStub.sol": {
        "YieldSourceStub": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "addr",
                  "type": "address"
                }
              ],
              "name": "balanceOfToken",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                }
              ],
              "name": "canAwardExternal",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "depositToken",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "redeemToken",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "supplyTokenTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "balanceOfToken(address)": {
                "returns": {
                  "_0": "The underlying balance of asset tokens."
                }
              },
              "depositToken()": {
                "returns": {
                  "_0": "The ERC20 asset token address."
                }
              },
              "redeemToken(uint256)": {
                "params": {
                  "amount": "The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above."
                },
                "returns": {
                  "_0": "The actual amount of interst bearing tokens that were redeemed."
                }
              },
              "supplyTokenTo(uint256,address)": {
                "params": {
                  "amount": "The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.",
                  "to": "The user whose balance will receive the tokens"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "balanceOfToken(address)": "b99152d0",
              "canAwardExternal(address)": "6a3fd4f9",
              "depositToken()": "c89039c5",
              "redeemToken(uint256)": "013054c2",
              "supplyTokenTo(uint256,address)": "87a6eeef"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"addr\",\"type\":\"address\"}],\"name\":\"balanceOfToken\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"}],\"name\":\"canAwardExternal\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"depositToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeemToken\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"supplyTokenTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"balanceOfToken(address)\":{\"returns\":{\"_0\":\"The underlying balance of asset tokens.\"}},\"depositToken()\":{\"returns\":{\"_0\":\"The ERC20 asset token address.\"}},\"redeemToken(uint256)\":{\"params\":{\"amount\":\"The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\"},\"returns\":{\"_0\":\"The actual amount of interst bearing tokens that were redeemed.\"}},\"supplyTokenTo(uint256,address)\":{\"params\":{\"amount\":\"The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\",\"to\":\"The user whose balance will receive the tokens\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"balanceOfToken(address)\":{\"notice\":\"Returns the total balance (in asset tokens).  This includes the deposits and interest.\"},\"depositToken()\":{\"notice\":\"Returns the ERC20 asset token used for deposits.\"},\"redeemToken(uint256)\":{\"notice\":\"Redeems tokens from the yield source.\"},\"supplyTokenTo(uint256,address)\":{\"notice\":\"Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/YieldSourceStub.sol\":\"YieldSourceStub\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.\\n/// @notice Prize Pools subclasses need to implement this interface so that yield can be generated.\\ninterface IYieldSource {\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token address.\\n    function depositToken() external view returns (address);\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens.\\n    function balanceOfToken(address addr) external returns (uint256);\\n\\n    /// @notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\\n    /// @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\\n    /// @param to The user whose balance will receive the tokens\\n    function supplyTokenTo(uint256 amount, address to) external;\\n\\n    /// @notice Redeems tokens from the yield source.\\n    /// @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\\n    /// @return The actual amount of interst bearing tokens that were redeemed.\\n    function redeemToken(uint256 amount) external returns (uint256);\\n}\\n\",\"keccak256\":\"0x659c59f7b0a4cac6ce4c46a8ccec1d8d7ab14aa08451c0d521804fec9ccc95f1\",\"license\":\"GPL-3.0\"},\"contracts/test/YieldSourceStub.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\\\";\\n\\ninterface YieldSourceStub is IYieldSource {\\n    function canAwardExternal(address _externalToken) external view returns (bool);\\n}\\n\",\"keccak256\":\"0x0054ee3da4800546615a2b72370967956823fd712d8b3321119b60f747e08cba\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "balanceOfToken(address)": {
                "notice": "Returns the total balance (in asset tokens).  This includes the deposits and interest."
              },
              "depositToken()": {
                "notice": "Returns the ERC20 asset token used for deposits."
              },
              "redeemToken(uint256)": {
                "notice": "Redeems tokens from the yield source."
              },
              "supplyTokenTo(uint256,address)": {
                "notice": "Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param."
              }
            },
            "version": 1
          }
        }
      },
      "contracts/test/libraries/DrawRingBufferLibHarness.sol": {
        "DrawRingBufferLibHarness": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "uint8",
                  "name": "_cardinality",
                  "type": "uint8"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "inputs": [],
              "name": "MAX_CARDINALITY",
              "outputs": [
                {
                  "internalType": "uint16",
                  "name": "",
                  "type": "uint16"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint32",
                      "name": "lastDrawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "nextIndex",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "cardinality",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct DrawRingBufferLib.Buffer",
                  "name": "_buffer",
                  "type": "tuple"
                },
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                }
              ],
              "name": "_getIndex",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint32",
                      "name": "lastDrawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "nextIndex",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "cardinality",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct DrawRingBufferLib.Buffer",
                  "name": "_buffer",
                  "type": "tuple"
                }
              ],
              "name": "_isInitialized",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint32",
                      "name": "lastDrawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "nextIndex",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "cardinality",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct DrawRingBufferLib.Buffer",
                  "name": "_buffer",
                  "type": "tuple"
                },
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                }
              ],
              "name": "_push",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint32",
                      "name": "lastDrawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "nextIndex",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "cardinality",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct DrawRingBufferLib.Buffer",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc.",
            "kind": "dev",
            "methods": {},
            "title": "Expose the DrawRingBufferLib for unit tests",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_17281": {
                  "entryPoint": null,
                  "id": 17281,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_uint8_fromMemory": {
                  "entryPoint": 89,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:289:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "93:194:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "139:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "148:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "151:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "141:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "141:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "141:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "123:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "110:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "110:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "135:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "106:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "106:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "103:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "164:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "183:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "177:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "177:16:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "168:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "241:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "250:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "253:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "243:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "243:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "243:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "215:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "226:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "233:4:84",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "222:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "222:16:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "212:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "212:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "205:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "205:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "202:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "266:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "276:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "266:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "59:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "70:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "82:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:273:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_uint8_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value0 := value\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b5060405161065238038061065283398101604081905261002f91610059565b6000805463ffffffff60401b191660ff929092166801000000000000000002919091179055610083565b60006020828403121561006b57600080fd5b815160ff8116811461007c57600080fd5b9392505050565b6105c0806100926000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806311f807df1461005157806379ba59ff1461007e5780638200d873146100c0578063f3a94e61146100dc575b600080fd5b61006461005f3660046104a2565b6100ff565b60405163ffffffff90911681526020015b60405180910390f35b61009161008c3660046104a2565b610114565b60408051825163ffffffff90811682526020808501518216908301529282015190921690820152606001610075565b6100c961010081565b60405161ffff9091168152602001610075565b6100ef6100ea366004610486565b61013b565b6040519015158152602001610075565b600061010b8383610146565b90505b92915050565b604080516060810182526000808252602082018190529181019190915261010b838361027b565b600061010e82610366565b600061015183610366565b801561016d5750826000015163ffffffff168263ffffffff1611155b6101be5760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d64726177000000000000000000000000000000000060448201526064015b60405180910390fd5b82516000906101ce90849061052d565b9050836040015163ffffffff168163ffffffff161061022f5760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d647261770000000000000000000000000000000060448201526064016101b5565b600061024f856020015163ffffffff16866040015163ffffffff1661038e565b90506102728163ffffffff168363ffffffff16876040015163ffffffff166103bc565b95945050505050565b60408051606081018252600080825260208201819052918101919091526102a183610366565b15806102c4575082516102b59060016104ee565b63ffffffff168263ffffffff16145b6103105760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e746967000000000000000000000000000060448201526064016101b5565b60405180606001604052808363ffffffff168152602001610345856020015163ffffffff16866040015163ffffffff166103d4565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156103875750815163ffffffff16155b1592915050565b60008161039d5750600061010e565b61010b60016103ac84866104d6565b6103b69190610516565b836103e4565b60006103cc836103ac84876104d6565b949350505050565b600061010b6103b68460016104d6565b600061010b8284610552565b60006060828403121561040257600080fd5b6040516060810181811067ffffffffffffffff8211171561043357634e487b7160e01b600052604160045260246000fd5b6040529050806104428361046d565b81526104506020840161046d565b60208201526104616040840161046d565b60408201525092915050565b803563ffffffff8116811461048157600080fd5b919050565b60006060828403121561049857600080fd5b61010b83836103f0565b600080608083850312156104b557600080fd5b6104bf84846103f0565b91506104cd6060840161046d565b90509250929050565b600082198211156104e9576104e9610574565b500190565b600063ffffffff80831681851680830382111561050d5761050d610574565b01949350505050565b60008282101561052857610528610574565b500390565b600063ffffffff8381169083168181101561054a5761054a610574565b039392505050565b60008261056f57634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220775ca116e9344e45558cd5b5d2dd9513fd6981579d673c4fd3e1e1307ee8f9ca64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x652 CODESIZE SUB DUP1 PUSH2 0x652 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2F SWAP2 PUSH2 0x59 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0x40 SHL NOT AND PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x83 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x7C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x5C0 DUP1 PUSH2 0x92 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 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x11F807DF EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x79BA59FF EQ PUSH2 0x7E JUMPI DUP1 PUSH4 0x8200D873 EQ PUSH2 0xC0 JUMPI DUP1 PUSH4 0xF3A94E61 EQ PUSH2 0xDC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x5F CALLDATASIZE PUSH1 0x4 PUSH2 0x4A2 JUMP JUMPDEST PUSH2 0xFF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x91 PUSH2 0x8C CALLDATASIZE PUSH1 0x4 PUSH2 0x4A2 JUMP JUMPDEST PUSH2 0x114 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD DUP3 AND SWAP1 DUP4 ADD MSTORE SWAP3 DUP3 ADD MLOAD SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x75 JUMP JUMPDEST PUSH2 0xC9 PUSH2 0x100 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x75 JUMP JUMPDEST PUSH2 0xEF PUSH2 0xEA CALLDATASIZE PUSH1 0x4 PUSH2 0x486 JUMP JUMPDEST PUSH2 0x13B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x75 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10B DUP4 DUP4 PUSH2 0x146 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x10B DUP4 DUP4 PUSH2 0x27B JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10E DUP3 PUSH2 0x366 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x151 DUP4 PUSH2 0x366 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x16D JUMPI POP DUP3 PUSH1 0x0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x1BE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6675747572652D647261770000000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x0 SWAP1 PUSH2 0x1CE SWAP1 DUP5 SWAP1 PUSH2 0x52D JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x22F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F657870697265642D6472617700000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1B5 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24F DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x38E JUMP JUMPDEST SWAP1 POP PUSH2 0x272 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x3BC JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x2A1 DUP4 PUSH2 0x366 JUMP JUMPDEST ISZERO DUP1 PUSH2 0x2C4 JUMPI POP DUP3 MLOAD PUSH2 0x2B5 SWAP1 PUSH1 0x1 PUSH2 0x4EE JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND EQ JUMPDEST PUSH2 0x310 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6D7573742D62652D636F6E7469670000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x345 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x3D4 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x0 EQ DUP1 ISZERO PUSH2 0x387 JUMPI POP DUP2 MLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x39D JUMPI POP PUSH1 0x0 PUSH2 0x10E JUMP JUMPDEST PUSH2 0x10B PUSH1 0x1 PUSH2 0x3AC DUP5 DUP7 PUSH2 0x4D6 JUMP JUMPDEST PUSH2 0x3B6 SWAP2 SWAP1 PUSH2 0x516 JUMP JUMPDEST DUP4 PUSH2 0x3E4 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3CC DUP4 PUSH2 0x3AC DUP5 DUP8 PUSH2 0x4D6 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10B PUSH2 0x3B6 DUP5 PUSH1 0x1 PUSH2 0x4D6 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10B DUP3 DUP5 PUSH2 0x552 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x402 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x60 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x433 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 POP DUP1 PUSH2 0x442 DUP4 PUSH2 0x46D JUMP JUMPDEST DUP2 MSTORE PUSH2 0x450 PUSH1 0x20 DUP5 ADD PUSH2 0x46D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x461 PUSH1 0x40 DUP5 ADD PUSH2 0x46D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x481 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x498 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10B DUP4 DUP4 PUSH2 0x3F0 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x80 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4BF DUP5 DUP5 PUSH2 0x3F0 JUMP JUMPDEST SWAP2 POP PUSH2 0x4CD PUSH1 0x60 DUP5 ADD PUSH2 0x46D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x4E9 JUMPI PUSH2 0x4E9 PUSH2 0x574 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x50D JUMPI PUSH2 0x50D PUSH2 0x574 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x528 JUMPI PUSH2 0x528 PUSH2 0x574 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x54A JUMPI PUSH2 0x54A PUSH2 0x574 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x56F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH24 0x5CA116E9344E45558CD5B5D2DD9513FD6981579D673C4FD3 0xE1 0xE1 ADDRESS PUSH31 0xE8F9CA64736F6C634300080600330000000000000000000000000000000000 ",
              "sourceMap": "202:895:80:-:0;;;406:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;448:14;:41;;-1:-1:-1;;;;448:41:80;;;;;;;;;;;;;;202:895;;14:273:84;82:6;135:2;123:9;114:7;110:23;106:32;103:2;;;151:1;148;141:12;103:2;183:9;177:16;233:4;226:5;222:16;215:5;212:27;202:2;;253:1;250;243:12;202:2;276:5;93:194;-1:-1:-1;;;93:194:84:o;:::-;202:895:80;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@MAX_CARDINALITY_17266": {
                  "entryPoint": null,
                  "id": 17266,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_getIndex_17316": {
                  "entryPoint": 255,
                  "id": 17316,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_isInitialized_17330": {
                  "entryPoint": 315,
                  "id": 17330,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_push_17299": {
                  "entryPoint": 276,
                  "id": 17299,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getIndex_12353": {
                  "entryPoint": 326,
                  "id": 12353,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@isInitialized_12246": {
                  "entryPoint": 870,
                  "id": 12246,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@newestIndex_12830": {
                  "entryPoint": 910,
                  "id": 12830,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nextIndex_12848": {
                  "entryPoint": 980,
                  "id": 12848,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@offset_12803": {
                  "entryPoint": 956,
                  "id": 12803,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@push_12290": {
                  "entryPoint": 635,
                  "id": 12290,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@wrap_12781": {
                  "entryPoint": 996,
                  "id": 12781,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_struct_Buffer": {
                  "entryPoint": 1008,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_Buffer_$12224_memory_ptr": {
                  "entryPoint": 1158,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_Buffer_$12224_memory_ptrt_uint32": {
                  "entryPoint": 1186,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_uint32": {
                  "entryPoint": 1133,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Buffer_$12224_memory_ptr__to_t_struct$_Buffer_$12224_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 1238,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint32": {
                  "entryPoint": 1262,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 1302,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 1325,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "mod_t_uint256": {
                  "entryPoint": 1362,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 1396,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:4646:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "77:643:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "121:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "130:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "133:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "123:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "123:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "123:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "98:3:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "103:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "94:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "94:19:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "115:4:84",
                                    "type": "",
                                    "value": "0x60"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "90:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "90:30:84"
                              },
                              "nodeType": "YulIf",
                              "src": "87:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "146:23:84",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "166:2:84",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "160:5:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "160:9:84"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "150:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "178:35:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "200:6:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "208:4:84",
                                    "type": "",
                                    "value": "0x60"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "196:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "196:17:84"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "182:10:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "296:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "317:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "320:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "310:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "310:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "310:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "418:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "421:4:84",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "411:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "411:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "411:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "446:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "449:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "439:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "439:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "439:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "231:10:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "243:18:84",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "228:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "228:34:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "267:10:84"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "279:6:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "264:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "264:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "225:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "225:62:84"
                              },
                              "nodeType": "YulIf",
                              "src": "222:2:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "480:2:84",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "484:10:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "473:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "473:22:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "473:22:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "504:15:84",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "513:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "504:5:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "535:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "561:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "543:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "543:28:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "528:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "528:44:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "528:44:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "592:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "600:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "588:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "588:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "627:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "638:2:84",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "623:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "623:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "605:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "605:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "581:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "581:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "581:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "663:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "671:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "659:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "659:15:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "698:9:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "709:2:84",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "694:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "694:18:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "676:17:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "676:37:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "652:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "652:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "652:62:84"
                            }
                          ]
                        },
                        "name": "abi_decode_struct_Buffer",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "48:9:84",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "59:3:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "67:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:706:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "773:115:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "783:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "805:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "792:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "792:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "783:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "866:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "875:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "878:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "868:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "868:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "868:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "834:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "845:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "852:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "841:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "841:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "831:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "831:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "824:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "824:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "821:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "752:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "763:5:84",
                            "type": ""
                          }
                        ],
                        "src": "725:163:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "988:131:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1034:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1043:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1046:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1036:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1036:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1036:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1009:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1018:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1005:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1005:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1030:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1001:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1001:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "998:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1059:54:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1094:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1105:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_Buffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "1069:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1069:44:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1059:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Buffer_$12224_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "954:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "965:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "977:6:84",
                            "type": ""
                          }
                        ],
                        "src": "893:226:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1235:188:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1282:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1291:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1294:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1284:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1284:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1284:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1256:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1265:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1252:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1252:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1277:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1248:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1248:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1245:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1307:54:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1342:9:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1353:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_Buffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "1317:24:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1317:44:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1307:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1370:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1402:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1413:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1398:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1398:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1380:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1380:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1370:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Buffer_$12224_memory_ptrt_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1193:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1204:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1216:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1224:6:84",
                            "type": ""
                          }
                        ],
                        "src": "1124:299:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1523:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1533:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1545:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1556:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1541:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1541:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1533:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1575:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "1600:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1593:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1593:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "1586:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1586:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1568:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1568:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1568:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1492:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1503:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1514:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1428:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1794:165:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1811:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1822:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1804:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1804:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1804:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1845:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1856:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1841:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1841:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1861:2:84",
                                    "type": "",
                                    "value": "15"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1834:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1834:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1834:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1884:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1895:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1880:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1880:18:84"
                                  },
                                  {
                                    "hexValue": "4452422f6675747572652d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1900:17:84",
                                    "type": "",
                                    "value": "DRB/future-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1873:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1873:45:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1873:45:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1927:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1939:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1950:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1935:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1935:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1927:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1771:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1785:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1620:339:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2138:166:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2155:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2166:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2148:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2148:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2148:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2189:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2200:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2185:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2185:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2205:2:84",
                                    "type": "",
                                    "value": "16"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2178:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2178:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2178:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2228:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2239:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2224:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2224:18:84"
                                  },
                                  {
                                    "hexValue": "4452422f657870697265642d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2244:18:84",
                                    "type": "",
                                    "value": "DRB/expired-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2217:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2217:46:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2217:46:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2272:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2284:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2295:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2280:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2280:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2272:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2115:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2129:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1964:340:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2483:168:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2500:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2511:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2493:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2493:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2493:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2534:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2545:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2530:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2530:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2550:2:84",
                                    "type": "",
                                    "value": "18"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2523:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2523:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2523:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2573:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2584:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2569:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2569:18:84"
                                  },
                                  {
                                    "hexValue": "4452422f6d7573742d62652d636f6e746967",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2589:20:84",
                                    "type": "",
                                    "value": "DRB/must-be-contig"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2562:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2562:48:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2562:48:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2619:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2631:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2642:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2627:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2627:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2619:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2460:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2474:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2309:342:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2807:265:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2817:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2829:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2840:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2825:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2825:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2817:4:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2852:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2862:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2856:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2888:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "2909:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2903:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2903:13:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2918:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2899:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2899:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2881:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2881:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2881:41:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2942:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2953:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2938:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2938:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "2974:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2982:4:84",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2970:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2970:17:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2964:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2964:24:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2990:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2960:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2960:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2931:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2931:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2931:63:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3014:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3025:4:84",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3010:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3010:20:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "3046:6:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3054:4:84",
                                                "type": "",
                                                "value": "0x40"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3042:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3042:17:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3036:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3036:24:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3062:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3032:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3032:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3003:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3003:63:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3003:63:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Buffer_$12224_memory_ptr__to_t_struct$_Buffer_$12224_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2776:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2787:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2798:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2656:416:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3176:89:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3186:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3198:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3209:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3194:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3194:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3186:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3228:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3243:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3251:6:84",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3239:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3239:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3221:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3221:38:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3221:38:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3145:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3156:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3167:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3077:188:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3369:93:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3379:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3391:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3402:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3387:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3387:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3379:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3421:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3436:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3444:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3432:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3432:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3414:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3414:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3414:42:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3338:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3349:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3360:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3270:192:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3515:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3542:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "3544:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3544:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3544:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "3531:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "3538:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "3534:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3534:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3528:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3528:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3525:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3573:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "3584:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "3587:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3580:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3580:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "3573:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "3498:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "3501:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "3507:3:84",
                            "type": ""
                          }
                        ],
                        "src": "3467:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3647:181:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3657:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3667:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3661:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3686:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "3701:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3704:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "3697:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3697:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3690:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3716:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "3731:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3734:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "3727:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3727:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3720:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3771:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "3773:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3773:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3773:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3752:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3761:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3765:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3757:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3757:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3749:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3749:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3746:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3802:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3813:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3818:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3809:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3809:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "3802:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "3630:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "3633:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "3639:3:84",
                            "type": ""
                          }
                        ],
                        "src": "3600:228:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3882:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3904:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "3906:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3906:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3906:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "3898:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "3901:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3895:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3895:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3892:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3935:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "3947:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "3950:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "3943:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3943:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "3935:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "3864:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "3867:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "3873:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3833:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4011:173:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4021:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4031:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4025:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4050:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "4065:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4068:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "4061:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4061:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4054:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4080:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "4095:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4098:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "4091:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4091:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4084:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4126:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "4128:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4128:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4128:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4116:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4121:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4113:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4113:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4110:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4157:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4169:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4174:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "4165:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4165:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "4157:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "3993:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "3996:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "4002:4:84",
                            "type": ""
                          }
                        ],
                        "src": "3963:221:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4227:228:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4258:168:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4279:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4282:77:84",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4272:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4272:88:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4272:88:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4380:1:84",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4383:4:84",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4373:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4373:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4373:15:84"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4408:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4411:4:84",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4401:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4401:15:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4401:15:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "4247:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4240:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4240:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4237:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4435:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "4444:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "4447:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "4440:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4440:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "4435:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "4212:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "4215:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "4221:1:84",
                            "type": ""
                          }
                        ],
                        "src": "4189:266:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4492:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4509:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4512:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4502:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4502:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4502:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4606:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4609:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4599:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4599:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4599:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4630:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4633:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "4623:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4623:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4623:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "4460:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_struct_Buffer(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x60) { revert(0, 0) }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x60)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n        value := memPtr\n        mstore(memPtr, abi_decode_uint32(headStart))\n        mstore(add(memPtr, 32), abi_decode_uint32(add(headStart, 32)))\n        mstore(add(memPtr, 64), abi_decode_uint32(add(headStart, 64)))\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_struct$_Buffer_$12224_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_struct_Buffer(headStart, dataEnd)\n    }\n    function abi_decode_tuple_t_struct$_Buffer_$12224_memory_ptrt_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        value0 := abi_decode_struct_Buffer(headStart, dataEnd)\n        value1 := abi_decode_uint32(add(headStart, 96))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 15)\n        mstore(add(headStart, 64), \"DRB/future-draw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 16)\n        mstore(add(headStart, 64), \"DRB/expired-draw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 18)\n        mstore(add(headStart, 64), \"DRB/must-be-contig\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_Buffer_$12224_memory_ptr__to_t_struct$_Buffer_$12224_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        let _1 := 0xffffffff\n        mstore(headStart, and(mload(value0), _1))\n        mstore(add(headStart, 0x20), and(mload(add(value0, 0x20)), _1))\n        mstore(add(headStart, 0x40), and(mload(add(value0, 0x40)), _1))\n    }\n    function abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffff))\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint32(x, y) -> sum\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b506004361061004c5760003560e01c806311f807df1461005157806379ba59ff1461007e5780638200d873146100c0578063f3a94e61146100dc575b600080fd5b61006461005f3660046104a2565b6100ff565b60405163ffffffff90911681526020015b60405180910390f35b61009161008c3660046104a2565b610114565b60408051825163ffffffff90811682526020808501518216908301529282015190921690820152606001610075565b6100c961010081565b60405161ffff9091168152602001610075565b6100ef6100ea366004610486565b61013b565b6040519015158152602001610075565b600061010b8383610146565b90505b92915050565b604080516060810182526000808252602082018190529181019190915261010b838361027b565b600061010e82610366565b600061015183610366565b801561016d5750826000015163ffffffff168263ffffffff1611155b6101be5760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d64726177000000000000000000000000000000000060448201526064015b60405180910390fd5b82516000906101ce90849061052d565b9050836040015163ffffffff168163ffffffff161061022f5760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d647261770000000000000000000000000000000060448201526064016101b5565b600061024f856020015163ffffffff16866040015163ffffffff1661038e565b90506102728163ffffffff168363ffffffff16876040015163ffffffff166103bc565b95945050505050565b60408051606081018252600080825260208201819052918101919091526102a183610366565b15806102c4575082516102b59060016104ee565b63ffffffff168263ffffffff16145b6103105760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e746967000000000000000000000000000060448201526064016101b5565b60405180606001604052808363ffffffff168152602001610345856020015163ffffffff16866040015163ffffffff166103d4565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156103875750815163ffffffff16155b1592915050565b60008161039d5750600061010e565b61010b60016103ac84866104d6565b6103b69190610516565b836103e4565b60006103cc836103ac84876104d6565b949350505050565b600061010b6103b68460016104d6565b600061010b8284610552565b60006060828403121561040257600080fd5b6040516060810181811067ffffffffffffffff8211171561043357634e487b7160e01b600052604160045260246000fd5b6040529050806104428361046d565b81526104506020840161046d565b60208201526104616040840161046d565b60408201525092915050565b803563ffffffff8116811461048157600080fd5b919050565b60006060828403121561049857600080fd5b61010b83836103f0565b600080608083850312156104b557600080fd5b6104bf84846103f0565b91506104cd6060840161046d565b90509250929050565b600082198211156104e9576104e9610574565b500190565b600063ffffffff80831681851680830382111561050d5761050d610574565b01949350505050565b60008282101561052857610528610574565b500390565b600063ffffffff8381169083168181101561054a5761054a610574565b039392505050565b60008261056f57634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220775ca116e9344e45558cd5b5d2dd9513fd6981579d673c4fd3e1e1307ee8f9ca64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x11F807DF EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x79BA59FF EQ PUSH2 0x7E JUMPI DUP1 PUSH4 0x8200D873 EQ PUSH2 0xC0 JUMPI DUP1 PUSH4 0xF3A94E61 EQ PUSH2 0xDC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x5F CALLDATASIZE PUSH1 0x4 PUSH2 0x4A2 JUMP JUMPDEST PUSH2 0xFF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x91 PUSH2 0x8C CALLDATASIZE PUSH1 0x4 PUSH2 0x4A2 JUMP JUMPDEST PUSH2 0x114 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD DUP3 AND SWAP1 DUP4 ADD MSTORE SWAP3 DUP3 ADD MLOAD SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x75 JUMP JUMPDEST PUSH2 0xC9 PUSH2 0x100 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x75 JUMP JUMPDEST PUSH2 0xEF PUSH2 0xEA CALLDATASIZE PUSH1 0x4 PUSH2 0x486 JUMP JUMPDEST PUSH2 0x13B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x75 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10B DUP4 DUP4 PUSH2 0x146 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x10B DUP4 DUP4 PUSH2 0x27B JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10E DUP3 PUSH2 0x366 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x151 DUP4 PUSH2 0x366 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x16D JUMPI POP DUP3 PUSH1 0x0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x1BE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6675747572652D647261770000000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x0 SWAP1 PUSH2 0x1CE SWAP1 DUP5 SWAP1 PUSH2 0x52D JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x22F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F657870697265642D6472617700000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1B5 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24F DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x38E JUMP JUMPDEST SWAP1 POP PUSH2 0x272 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x3BC JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x2A1 DUP4 PUSH2 0x366 JUMP JUMPDEST ISZERO DUP1 PUSH2 0x2C4 JUMPI POP DUP3 MLOAD PUSH2 0x2B5 SWAP1 PUSH1 0x1 PUSH2 0x4EE JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND EQ JUMPDEST PUSH2 0x310 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6D7573742D62652D636F6E7469670000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x345 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x3D4 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x0 EQ DUP1 ISZERO PUSH2 0x387 JUMPI POP DUP2 MLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x39D JUMPI POP PUSH1 0x0 PUSH2 0x10E JUMP JUMPDEST PUSH2 0x10B PUSH1 0x1 PUSH2 0x3AC DUP5 DUP7 PUSH2 0x4D6 JUMP JUMPDEST PUSH2 0x3B6 SWAP2 SWAP1 PUSH2 0x516 JUMP JUMPDEST DUP4 PUSH2 0x3E4 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3CC DUP4 PUSH2 0x3AC DUP5 DUP8 PUSH2 0x4D6 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10B PUSH2 0x3B6 DUP5 PUSH1 0x1 PUSH2 0x4D6 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10B DUP3 DUP5 PUSH2 0x552 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x402 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x60 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x433 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 POP DUP1 PUSH2 0x442 DUP4 PUSH2 0x46D JUMP JUMPDEST DUP2 MSTORE PUSH2 0x450 PUSH1 0x20 DUP5 ADD PUSH2 0x46D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x461 PUSH1 0x40 DUP5 ADD PUSH2 0x46D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x481 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x498 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10B DUP4 DUP4 PUSH2 0x3F0 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x80 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4BF DUP5 DUP5 PUSH2 0x3F0 JUMP JUMPDEST SWAP2 POP PUSH2 0x4CD PUSH1 0x60 DUP5 ADD PUSH2 0x46D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x4E9 JUMPI PUSH2 0x4E9 PUSH2 0x574 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x50D JUMPI PUSH2 0x50D PUSH2 0x574 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x528 JUMPI PUSH2 0x528 PUSH2 0x574 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x54A JUMPI PUSH2 0x54A PUSH2 0x574 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x56F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH24 0x5CA116E9344E45558CD5B5D2DD9513FD6981579D673C4FD3 0xE1 0xE1 ADDRESS PUSH31 0xE8F9CA64736F6C634300080600330000000000000000000000000000000000 ",
              "sourceMap": "202:895:80:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;728:203;;;;;;:::i;:::-;;:::i;:::-;;;3444:10:84;3432:23;;;3414:42;;3402:2;3387:18;728:203:80;;;;;;;;502:220;;;;;;:::i;:::-;;:::i;:::-;;;;2903:13:84;;2862:10;2899:22;;;2881:41;;2982:4;2970:17;;;2964:24;2960:33;;2938:20;;;2931:63;3042:17;;;3036:24;3032:33;;;3010:20;;;3003:63;2840:2;2825:18;502:220:80;2807:265:84;301:44:80;;342:3;301:44;;;;;3251:6:84;3239:19;;;3221:38;;3209:2;3194:18;301:44:80;3176:89:84;937:158:80;;;;;;:::i;:::-;;:::i;:::-;;;1593:14:84;;1586:22;1568:41;;1556:2;1541:18;937:158:80;1523:92:84;728:203:80;851:6;880:44;907:7;916;880:26;:44::i;:::-;873:51;;728:203;;;;;:::o;502:220::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;675:40:80;698:7;707;675:22;:40::i;937:158::-;1025:4;1048:40;1080:7;1048:31;:40::i;1587:517:52:-;1667:6;1693:22;1707:7;1693:13;:22::i;:::-;:55;;;;;1730:7;:18;;;1719:29;;:7;:29;;;;1693:55;1685:83;;;;-1:-1:-1;;;1685:83:52;;1822:2:84;1685:83:52;;;1804:21:84;1861:2;1841:18;;;1834:30;1900:17;1880:18;;;1873:45;1935:18;;1685:83:52;;;;;;;;;1800:18;;1779;;1800:28;;1821:7;;1800:28;:::i;:::-;1779:49;;1860:7;:19;;;1846:33;;:11;:33;;;1838:62;;;;-1:-1:-1;;;1838:62:52;;2166:2:84;1838:62:52;;;2148:21:84;2205:2;2185:18;;;2178:30;2244:18;2224;;;2217:46;2280:18;;1838:62:52;2138:166:84;1838:62:52;1911:18;1932:65;1958:7;:17;;;1932:65;;1977:7;:19;;;1932:65;;:25;:65::i;:::-;1911:86;;2022:74;2050:10;2022:74;;2063:11;2022:74;;2076:7;:19;;;2022:74;;:20;:74::i;:::-;2008:89;1587:517;-1:-1:-1;;;;;1587:517:52:o;919:438::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;1029:22:52;1043:7;1029:13;:22::i;:::-;1028:23;:60;;;-1:-1:-1;1066:18:52;;:22;;1087:1;1066:22;:::i;:::-;1055:33;;:7;:33;;;1028:60;1020:91;;;;-1:-1:-1;;;1020:91:52;;2511:2:84;1020:91:52;;;2493:21:84;2550:2;2530:18;;;2523:30;2589:20;2569:18;;;2562:48;2627:18;;1020:91:52;2483:168:84;1020:91:52;1141:209;;;;;;;;1178:7;1141:209;;;;;;1221:63;1245:7;:17;;;1221:63;;1264:7;:19;;;1221:63;;:23;:63::i;:::-;1141:209;;;;;;1316:7;:19;;;1141:209;;;;;1122:228;;919:438;;;;:::o;598:151::-;667:4;692:7;:17;;;:22;;713:1;692:22;:49;;;;-1:-1:-1;718:18:52;;:23;;;692:49;690:52;;598:151;-1:-1:-1;;598:151:52:o;1666:262:56:-;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:56;1836:8;;1799:56;1872:49;1905:1;1877:25;1890:12;1877:10;:25;:::i;:::-;:29;;;;:::i;:::-;1908:12;1872:4;:49::i;1186:208::-;1310:7;1336:51;1365:7;1341:21;1350:12;1341:6;:21;:::i;1336:51::-;1329:58;1186:208;-1:-1:-1;;;;1186:208:56:o;2263:171::-;2367:7;2397:30;2402:10;:6;2411:1;2402:10;:::i;580:129::-;655:7;681:21;690:12;681:6;:21;:::i;14:706:84:-;67:5;115:4;103:9;98:3;94:19;90:30;87:2;;;133:1;130;123:12;87:2;166;160:9;208:4;200:6;196:17;279:6;267:10;264:22;243:18;231:10;228:34;225:62;222:2;;;-1:-1:-1;;;317:1:84;310:88;421:4;418:1;411:15;449:4;446:1;439:15;222:2;480;473:22;513:6;-1:-1:-1;513:6:84;543:28;561:9;543:28;:::i;:::-;535:6;528:44;605:37;638:2;627:9;623:18;605:37;:::i;:::-;600:2;592:6;588:15;581:62;676:37;709:2;698:9;694:18;676:37;:::i;:::-;671:2;663:6;659:15;652:62;;77:643;;;;:::o;725:163::-;792:20;;852:10;841:22;;831:33;;821:2;;878:1;875;868:12;821:2;773:115;;;:::o;893:226::-;977:6;1030:2;1018:9;1009:7;1005:23;1001:32;998:2;;;1046:1;1043;1036:12;998:2;1069:44;1105:7;1094:9;1069:44;:::i;1124:299::-;1216:6;1224;1277:3;1265:9;1256:7;1252:23;1248:33;1245:2;;;1294:1;1291;1284:12;1245:2;1317:44;1353:7;1342:9;1317:44;:::i;:::-;1307:54;;1380:37;1413:2;1402:9;1398:18;1380:37;:::i;:::-;1370:47;;1235:188;;;;;:::o;3467:128::-;3507:3;3538:1;3534:6;3531:1;3528:13;3525:2;;;3544:18;;:::i;:::-;-1:-1:-1;3580:9:84;;3515:80::o;3600:228::-;3639:3;3667:10;3704:2;3701:1;3697:10;3734:2;3731:1;3727:10;3765:3;3761:2;3757:12;3752:3;3749:21;3746:2;;;3773:18;;:::i;:::-;3809:13;;3647:181;-1:-1:-1;;;;3647:181:84:o;3833:125::-;3873:4;3901:1;3898;3895:8;3892:2;;;3906:18;;:::i;:::-;-1:-1:-1;3943:9:84;;3882:76::o;3963:221::-;4002:4;4031:10;4091;;;;4061;;4113:12;;;4110:2;;;4128:18;;:::i;:::-;4165:13;;4011:173;-1:-1:-1;;;4011:173:84:o;4189:266::-;4221:1;4247;4237:2;;-1:-1:-1;;;4279:1:84;4272:88;4383:4;4380:1;4373:15;4411:4;4408:1;4401:15;4237:2;-1:-1:-1;4440:9:84;;4227:228::o;4460:184::-;-1:-1:-1;;;4509:1:84;4502:88;4609:4;4606:1;4599:15;4633:4;4630:1;4623:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "294400",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "MAX_CARDINALITY()": "226",
                "_getIndex((uint32,uint32,uint32),uint32)": "infinite",
                "_isInitialized((uint32,uint32,uint32))": "infinite",
                "_push((uint32,uint32,uint32),uint32)": "infinite"
              }
            },
            "methodIdentifiers": {
              "MAX_CARDINALITY()": "8200d873",
              "_getIndex((uint32,uint32,uint32),uint32)": "11f807df",
              "_isInitialized((uint32,uint32,uint32))": "f3a94e61",
              "_push((uint32,uint32,uint32),uint32)": "79ba59ff"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"_cardinality\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"MAX_CARDINALITY\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"\",\"type\":\"uint16\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint32\",\"name\":\"lastDrawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"nextIndex\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"cardinality\",\"type\":\"uint32\"}],\"internalType\":\"struct DrawRingBufferLib.Buffer\",\"name\":\"_buffer\",\"type\":\"tuple\"},{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"}],\"name\":\"_getIndex\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint32\",\"name\":\"lastDrawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"nextIndex\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"cardinality\",\"type\":\"uint32\"}],\"internalType\":\"struct DrawRingBufferLib.Buffer\",\"name\":\"_buffer\",\"type\":\"tuple\"}],\"name\":\"_isInitialized\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint32\",\"name\":\"lastDrawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"nextIndex\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"cardinality\",\"type\":\"uint32\"}],\"internalType\":\"struct DrawRingBufferLib.Buffer\",\"name\":\"_buffer\",\"type\":\"tuple\"},{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"}],\"name\":\"_push\",\"outputs\":[{\"components\":[{\"internalType\":\"uint32\",\"name\":\"lastDrawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"nextIndex\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"cardinality\",\"type\":\"uint32\"}],\"internalType\":\"struct DrawRingBufferLib.Buffer\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc.\",\"kind\":\"dev\",\"methods\":{},\"title\":\"Expose the DrawRingBufferLib for unit tests\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/libraries/DrawRingBufferLibHarness.sol\":\"DrawRingBufferLibHarness\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/test/libraries/DrawRingBufferLibHarness.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../../libraries/DrawRingBufferLib.sol\\\";\\n\\n/**\\n * @title  Expose the DrawRingBufferLib for unit tests\\n * @author PoolTogether Inc.\\n */\\ncontract DrawRingBufferLibHarness {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    uint16 public constant MAX_CARDINALITY = 256;\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    constructor(uint8 _cardinality) {\\n        bufferMetadata.cardinality = _cardinality;\\n    }\\n\\n    function _push(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        external\\n        pure\\n        returns (DrawRingBufferLib.Buffer memory)\\n    {\\n        return DrawRingBufferLib.push(_buffer, _drawId);\\n    }\\n\\n    function _getIndex(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        external\\n        pure\\n        returns (uint32)\\n    {\\n        return DrawRingBufferLib.getIndex(_buffer, _drawId);\\n    }\\n\\n    function _isInitialized(DrawRingBufferLib.Buffer memory _buffer) external pure returns (bool) {\\n        return DrawRingBufferLib.isInitialized(_buffer);\\n    }\\n}\\n\",\"keccak256\":\"0x0c56c058c572c2cc7e0736d555f91065f7b4ffa53d81fd7136025405d0775273\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 17269,
                "contract": "contracts/test/libraries/DrawRingBufferLibHarness.sol:DrawRingBufferLibHarness",
                "label": "bufferMetadata",
                "offset": 0,
                "slot": "0",
                "type": "t_struct(Buffer)12224_storage"
              }
            ],
            "types": {
              "t_struct(Buffer)12224_storage": {
                "encoding": "inplace",
                "label": "struct DrawRingBufferLib.Buffer",
                "members": [
                  {
                    "astId": 12219,
                    "contract": "contracts/test/libraries/DrawRingBufferLibHarness.sol:DrawRingBufferLibHarness",
                    "label": "lastDrawId",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 12221,
                    "contract": "contracts/test/libraries/DrawRingBufferLibHarness.sol:DrawRingBufferLibHarness",
                    "label": "nextIndex",
                    "offset": 4,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 12223,
                    "contract": "contracts/test/libraries/DrawRingBufferLibHarness.sol:DrawRingBufferLibHarness",
                    "label": "cardinality",
                    "offset": 8,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "contracts/test/libraries/ExtendedSafeCastLibHarness.sol": {
        "ExtendedSafeCastLibHarness": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "toUint104",
              "outputs": [
                {
                  "internalType": "uint104",
                  "name": "",
                  "type": "uint104"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "toUint208",
              "outputs": [
                {
                  "internalType": "uint208",
                  "name": "",
                  "type": "uint208"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "toUint224",
              "outputs": [
                {
                  "internalType": "uint224",
                  "name": "",
                  "type": "uint224"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50610324806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c80635bb7986014610046578063839838381461008b578063bb33fe08146100bc575b600080fd5b6100596100543660046102d5565b6100fa565b6040517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b61009e6100993660046102d5565b61010b565b6040516cffffffffffffffffffffffffff9091168152602001610082565b6100cf6100ca3660046102d5565b610116565b60405179ffffffffffffffffffffffffffffffffffffffffffffffffffff9091168152602001610082565b600061010582610121565b92915050565b6000610105826101be565b600061010582610243565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8211156101ba5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203260448201527f323420626974730000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5090565b60006cffffffffffffffffffffffffff8211156101ba5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203160448201527f303420626974730000000000000000000000000000000000000000000000000060648201526084016101b1565b600079ffffffffffffffffffffffffffffffffffffffffffffffffffff8211156101ba5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203260448201527f303820626974730000000000000000000000000000000000000000000000000060648201526084016101b1565b6000602082840312156102e757600080fd5b503591905056fea2646970667358221220baaa181b3cd557fcb1eed5e0626af65cf39b0eb914bfb509607b9ba40837e35864736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x324 DUP1 PUSH2 0x20 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 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x5BB79860 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x83983838 EQ PUSH2 0x8B JUMPI DUP1 PUSH4 0xBB33FE08 EQ PUSH2 0xBC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59 PUSH2 0x54 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D5 JUMP JUMPDEST PUSH2 0xFA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x9E PUSH2 0x99 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D5 JUMP JUMPDEST PUSH2 0x10B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x82 JUMP JUMPDEST PUSH2 0xCF PUSH2 0xCA CALLDATASIZE PUSH1 0x4 PUSH2 0x2D5 JUMP JUMPDEST PUSH2 0x116 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH26 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x82 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x105 DUP3 PUSH2 0x121 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x105 DUP3 PUSH2 0x1BE JUMP JUMPDEST PUSH1 0x0 PUSH2 0x105 DUP3 PUSH2 0x243 JUMP JUMPDEST PUSH1 0x0 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1BA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2032 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x3234206269747300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1BA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2031 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x3034206269747300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1B1 JUMP JUMPDEST PUSH1 0x0 PUSH26 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1BA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2032 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x3038206269747300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1B1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBA 0xAA XOR SHL EXTCODECOPY 0xD5 JUMPI 0xFC 0xB1 0xEE 0xD5 0xE0 PUSH3 0x6AF65C RETURN SWAP12 0xE 0xB9 EQ 0xBF 0xB5 MULMOD PUSH1 0x7B SWAP12 LOG4 ADDMOD CALLDATACOPY 0xE3 PC PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "112:421:81:-:0;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@toUint104_12382": {
                  "entryPoint": 446,
                  "id": 12382,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@toUint104_17349": {
                  "entryPoint": 267,
                  "id": 17349,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@toUint208_12407": {
                  "entryPoint": 579,
                  "id": 12407,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@toUint208_17361": {
                  "entryPoint": 278,
                  "id": 17361,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@toUint224_12432": {
                  "entryPoint": 289,
                  "id": 12432,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@toUint224_17373": {
                  "entryPoint": 250,
                  "id": 17373,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 725,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_5d7f3e1b7e9f9a06fded6b093c6fd1473ca0a14cc4bb683db904e803e2482981__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint104__to_t_uint104__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint208__to_t_uint208__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint224__to_t_uint224__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:2127:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "84:110:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "130:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "142:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "132:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "132:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "132:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "105:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "101:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "101:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "126:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "97:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "97:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "94:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "155:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "178:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "165:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "165:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "155:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "50:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "61:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "73:6:84",
                            "type": ""
                          }
                        ],
                        "src": "14:180:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "373:229:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "390:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "401:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "383:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "383:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "383:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "424:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "435:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "420:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "420:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "440:2:84",
                                    "type": "",
                                    "value": "39"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "413:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "413:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "413:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "463:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "474:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "459:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "459:18:84"
                                  },
                                  {
                                    "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2032",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "479:34:84",
                                    "type": "",
                                    "value": "SafeCast: value doesn't fit in 2"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "452:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "452:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "452:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "534:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "545:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "530:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "530:18:84"
                                  },
                                  {
                                    "hexValue": "30382062697473",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "550:9:84",
                                    "type": "",
                                    "value": "08 bits"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "523:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "523:37:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "523:37:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "569:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "581:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "592:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "577:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "577:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "569:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "350:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "364:4:84",
                            "type": ""
                          }
                        ],
                        "src": "199:403:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "781:229:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "798:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "809:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "791:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "791:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "791:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "832:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "843:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "828:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "828:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "848:2:84",
                                    "type": "",
                                    "value": "39"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "821:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "821:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "821:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "871:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "882:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "867:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "867:18:84"
                                  },
                                  {
                                    "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2031",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "887:34:84",
                                    "type": "",
                                    "value": "SafeCast: value doesn't fit in 1"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "860:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "860:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "860:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "942:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "953:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "938:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "938:18:84"
                                  },
                                  {
                                    "hexValue": "30342062697473",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "958:9:84",
                                    "type": "",
                                    "value": "04 bits"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "931:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "931:37:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "931:37:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "977:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "989:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1000:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "985:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "985:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "977:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_5d7f3e1b7e9f9a06fded6b093c6fd1473ca0a14cc4bb683db904e803e2482981__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "758:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "772:4:84",
                            "type": ""
                          }
                        ],
                        "src": "607:403:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1189:229:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1206:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1217:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1199:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1199:21:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1199:21:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1240:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1251:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1236:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1236:18:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1256:2:84",
                                    "type": "",
                                    "value": "39"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1229:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1229:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1229:30:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1279:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1290:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1275:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1275:18:84"
                                  },
                                  {
                                    "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2032",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1295:34:84",
                                    "type": "",
                                    "value": "SafeCast: value doesn't fit in 2"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1268:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1268:62:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1268:62:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1350:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1361:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1346:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1346:18:84"
                                  },
                                  {
                                    "hexValue": "32342062697473",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1366:9:84",
                                    "type": "",
                                    "value": "24 bits"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1339:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1339:37:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1339:37:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1385:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1397:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1408:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1393:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1393:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1385:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1166:9:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1180:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1015:403:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1524:111:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1534:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1546:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1557:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1542:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1542:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1534:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1576:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "1591:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1599:28:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1587:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1587:41:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1569:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1569:60:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1569:60:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint104__to_t_uint104__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1493:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1504:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1515:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1423:212:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1741:137:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1751:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1763:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1774:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1759:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1759:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1751:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1793:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "1808:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1816:54:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1804:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1804:67:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1786:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1786:86:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1786:86:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint208__to_t_uint208__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1710:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1721:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1732:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1640:238:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1984:141:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1994:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2006:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2017:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2002:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2002:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1994:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2036:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2051:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2059:58:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2047:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2047:71:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2029:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2029:90:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2029:90:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint224__to_t_uint224__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1953:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1964:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1975:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1883:242:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_encode_tuple_t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 39)\n        mstore(add(headStart, 64), \"SafeCast: value doesn't fit in 2\")\n        mstore(add(headStart, 96), \"08 bits\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_5d7f3e1b7e9f9a06fded6b093c6fd1473ca0a14cc4bb683db904e803e2482981__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 39)\n        mstore(add(headStart, 64), \"SafeCast: value doesn't fit in 1\")\n        mstore(add(headStart, 96), \"04 bits\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 39)\n        mstore(add(headStart, 64), \"SafeCast: value doesn't fit in 2\")\n        mstore(add(headStart, 96), \"24 bits\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint104__to_t_uint104__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint208__to_t_uint208__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint224__to_t_uint224__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff))\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100415760003560e01c80635bb7986014610046578063839838381461008b578063bb33fe08146100bc575b600080fd5b6100596100543660046102d5565b6100fa565b6040517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b61009e6100993660046102d5565b61010b565b6040516cffffffffffffffffffffffffff9091168152602001610082565b6100cf6100ca3660046102d5565b610116565b60405179ffffffffffffffffffffffffffffffffffffffffffffffffffff9091168152602001610082565b600061010582610121565b92915050565b6000610105826101be565b600061010582610243565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8211156101ba5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203260448201527f323420626974730000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5090565b60006cffffffffffffffffffffffffff8211156101ba5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203160448201527f303420626974730000000000000000000000000000000000000000000000000060648201526084016101b1565b600079ffffffffffffffffffffffffffffffffffffffffffffffffffff8211156101ba5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203260448201527f303820626974730000000000000000000000000000000000000000000000000060648201526084016101b1565b6000602082840312156102e757600080fd5b503591905056fea2646970667358221220baaa181b3cd557fcb1eed5e0626af65cf39b0eb914bfb509607b9ba40837e35864736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x5BB79860 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x83983838 EQ PUSH2 0x8B JUMPI DUP1 PUSH4 0xBB33FE08 EQ PUSH2 0xBC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59 PUSH2 0x54 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D5 JUMP JUMPDEST PUSH2 0xFA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x9E PUSH2 0x99 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D5 JUMP JUMPDEST PUSH2 0x10B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x82 JUMP JUMPDEST PUSH2 0xCF PUSH2 0xCA CALLDATASIZE PUSH1 0x4 PUSH2 0x2D5 JUMP JUMPDEST PUSH2 0x116 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH26 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x82 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x105 DUP3 PUSH2 0x121 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x105 DUP3 PUSH2 0x1BE JUMP JUMPDEST PUSH1 0x0 PUSH2 0x105 DUP3 PUSH2 0x243 JUMP JUMPDEST PUSH1 0x0 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1BA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2032 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x3234206269747300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1BA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2031 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x3034206269747300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1B1 JUMP JUMPDEST PUSH1 0x0 PUSH26 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1BA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2032 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x3038206269747300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1B1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBA 0xAA XOR SHL EXTCODECOPY 0xD5 JUMPI 0xFC 0xB1 0xEE 0xD5 0xE0 PUSH3 0x6AF65C RETURN SWAP12 0xE 0xB9 EQ 0xBF 0xB5 MULMOD PUSH1 0x7B SWAP12 LOG4 ADDMOD CALLDATACOPY 0xE3 PC PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "112:421:81:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424:107;;;;;;:::i;:::-;;:::i;:::-;;;2059:58:84;2047:71;;;2029:90;;2017:2;2002:18;424:107:81;;;;;;;;198;;;;;;:::i;:::-;;:::i;:::-;;;1599:28:84;1587:41;;;1569:60;;1557:2;1542:18;198:107:81;1524:111:84;311:107:81;;;;;;:::i;:::-;;:::i;:::-;;;1816:54:84;1804:67;;;1786:86;;1774:2;1759:18;311:107:81;1741:137:84;424:107:81;481:7;507:17;:5;:15;:17::i;:::-;500:24;424:107;-1:-1:-1;;424:107:81:o;198:::-;255:7;281:17;:5;:15;:17::i;311:107::-;368:7;394:17;:5;:15;:17::i;2063:195:53:-;2121:7;2158:17;2148:27;;;2140:79;;;;-1:-1:-1;;;2140:79:53;;1217:2:84;2140:79:53;;;1199:21:84;1256:2;1236:18;;;1229:30;1295:34;1275:18;;;1268:62;1366:9;1346:18;;;1339:37;1393:19;;2140:79:53;;;;;;;;;-1:-1:-1;2244:6:53;2063:195::o;1091:::-;1149:7;1186:17;1176:27;;;1168:79;;;;-1:-1:-1;;;1168:79:53;;809:2:84;1168:79:53;;;791:21:84;848:2;828:18;;;821:30;887:34;867:18;;;860:62;958:9;938:18;;;931:37;985:19;;1168:79:53;781:229:84;1577:195:53;1635:7;1672:17;1662:27;;;1654:79;;;;-1:-1:-1;;;1654:79:53;;401:2:84;1654:79:53;;;383:21:84;440:2;420:18;;;413:30;479:34;459:18;;;452:62;550:9;530:18;;;523:37;577:19;;1654:79:53;373:229:84;14:180;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;-1:-1:-1;165:23:84;;84:110;-1:-1:-1;84:110:84:o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "160800",
                "executionCost": "208",
                "totalCost": "161008"
              },
              "external": {
                "toUint104(uint256)": "396",
                "toUint208(uint256)": "418",
                "toUint224(uint256)": "363"
              }
            },
            "methodIdentifiers": {
              "toUint104(uint256)": "83983838",
              "toUint208(uint256)": "bb33fe08",
              "toUint224(uint256)": "5bb79860"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"toUint104\",\"outputs\":[{\"internalType\":\"uint104\",\"name\":\"\",\"type\":\"uint104\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"toUint208\",\"outputs\":[{\"internalType\":\"uint208\",\"name\":\"\",\"type\":\"uint208\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"toUint224\",\"outputs\":[{\"internalType\":\"uint224\",\"name\":\"\",\"type\":\"uint224\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/libraries/ExtendedSafeCastLibHarness.sol\":\"ExtendedSafeCastLibHarness\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"contracts/test/libraries/ExtendedSafeCastLibHarness.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../../libraries/ExtendedSafeCastLib.sol\\\";\\n\\ncontract ExtendedSafeCastLibHarness {\\n    using ExtendedSafeCastLib for uint256;\\n\\n    function toUint104(uint256 value) external pure returns (uint104) {\\n        return value.toUint104();\\n    }\\n\\n    function toUint208(uint256 value) external pure returns (uint208) {\\n        return value.toUint208();\\n    }\\n\\n    function toUint224(uint256 value) external pure returns (uint224) {\\n        return value.toUint224();\\n    }\\n}\\n\",\"keccak256\":\"0x169d088590b98ec7183faac66131801979b4ba5011207fde1193487aa7ead38c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "contracts/test/libraries/ObservationLibHarness.sol": {
        "ObservationLibHarness": {
          "abi": [
            {
              "inputs": [],
              "name": "MAX_CARDINALITY",
              "outputs": [
                {
                  "internalType": "uint24",
                  "name": "",
                  "type": "uint24"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint24",
                  "name": "_observationIndex",
                  "type": "uint24"
                },
                {
                  "internalType": "uint24",
                  "name": "_oldestObservationIndex",
                  "type": "uint24"
                },
                {
                  "internalType": "uint32",
                  "name": "_target",
                  "type": "uint32"
                },
                {
                  "internalType": "uint24",
                  "name": "_cardinality",
                  "type": "uint24"
                },
                {
                  "internalType": "uint32",
                  "name": "_time",
                  "type": "uint32"
                }
              ],
              "name": "binarySearch",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct ObservationLib.Observation",
                  "name": "beforeOrAt",
                  "type": "tuple"
                },
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct ObservationLib.Observation",
                  "name": "atOrAfter",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct ObservationLib.Observation[]",
                  "name": "_observations",
                  "type": "tuple[]"
                }
              ],
              "name": "setObservations",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc.",
            "kind": "dev",
            "methods": {},
            "title": "Time-Weighted Average Balance Library",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50610784806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c80638200d87314610046578063d1f18b6b14610069578063efd911451461008a575b600080fd5b61005062ffffff81565b60405162ffffff90911681526020015b60405180910390f35b61007c6100773660046104f1565b61009f565b60405161006092919061055c565b61009d61009836600461047c565b6100e4565b005b604080518082019091526000808252602082015260408051808201909152600080825260208201526100d660008888888888610141565b915091509550959350505050565b60005b8181101561013c57828282818110610101576101016106b1565b90506040020160008262ffffff811061011c5761011c6106b1565b0161012782826106c7565b5081905061013481610638565b9150506100e7565b505050565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff161061018c578862ffffff166101a7565b600161019d62ffffff8816846105cc565b6101a79190610621565b905060005b60026101b883856105cc565b6101c2919061060d565b90508a6101d4828962ffffff1661036a565b62ffffff1662ffffff81106101eb576101eb6106b1565b604080518082019091529101547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff811682527c0100000000000000000000000000000000000000000000000000000000900463ffffffff166020820181905290955080610261576102598260016105cc565b9350506101ac565b8b610271838a62ffffff1661037d565b62ffffff1662ffffff8110610288576102886106b1565b604080518082019091529101547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8116825263ffffffff7c0100000000000000000000000000000000000000000000000000000000909104811660208301529095506000906102fb90838116908c908b9061039316565b905080801561032457506103248660200151898c63ffffffff166103939092919063ffffffff16565b1561033057505061035c565b8061034757610340600184610621565b9350610355565b6103528360016105cc565b94505b50506101ac565b505050965096945050505050565b60006103768284610671565b9392505050565b600061037661038d8460016105cc565b8361036a565b60008163ffffffff168463ffffffff16111580156103bd57508163ffffffff168363ffffffff1611155b156103d9578263ffffffff168463ffffffff1611159050610376565b60008263ffffffff168563ffffffff16116104085761040363ffffffff86166401000000006105e4565b610410565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116104485761044363ffffffff86166401000000006105e4565b610450565b8463ffffffff165b64ffffffffff169091111595945050505050565b803562ffffff8116811461047757600080fd5b919050565b6000806020838503121561048f57600080fd5b823567ffffffffffffffff808211156104a757600080fd5b818501915085601f8301126104bb57600080fd5b8135818111156104ca57600080fd5b8660208260061b85010111156104df57600080fd5b60209290920196919550909350505050565b600080600080600060a0868803121561050957600080fd5b61051286610464565b945061052060208701610464565b9350604086013561053081610739565b925061053e60608701610464565b9150608086013561054e81610739565b809150509295509295909350565b82517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16815260208084015163ffffffff16908201526080810182517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166040830152602083015163ffffffff166060830152610376565b600082198211156105df576105df610685565b500190565b600064ffffffffff80831681851680830382111561060457610604610685565b01949350505050565b60008261061c5761061c61069b565b500490565b60008282101561063357610633610685565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561066a5761066a610685565b5060010190565b6000826106805761068061069b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b81357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff81168082146106f457600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000091508082845416178355602084013561072d81610739565b60e01b90911617905550565b63ffffffff8116811461074b57600080fd5b5056fea26469706673582212209aa8782ce58e5745dcb9c01bcb4fa98e632b83bf3341fcf11a460c3e5dc4058764736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x784 DUP1 PUSH2 0x20 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 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8200D873 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0xD1F18B6B EQ PUSH2 0x69 JUMPI DUP1 PUSH4 0xEFD91145 EQ PUSH2 0x8A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x50 PUSH3 0xFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0xFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x7C PUSH2 0x77 CALLDATASIZE PUSH1 0x4 PUSH2 0x4F1 JUMP JUMPDEST PUSH2 0x9F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x60 SWAP3 SWAP2 SWAP1 PUSH2 0x55C JUMP JUMPDEST PUSH2 0x9D PUSH2 0x98 CALLDATASIZE PUSH1 0x4 PUSH2 0x47C JUMP JUMPDEST PUSH2 0xE4 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xD6 PUSH1 0x0 DUP9 DUP9 DUP9 DUP9 DUP9 PUSH2 0x141 JUMP JUMPDEST SWAP2 POP SWAP2 POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x13C JUMPI DUP3 DUP3 DUP3 DUP2 DUP2 LT PUSH2 0x101 JUMPI PUSH2 0x101 PUSH2 0x6B1 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MUL ADD PUSH1 0x0 DUP3 PUSH3 0xFFFFFF DUP2 LT PUSH2 0x11C JUMPI PUSH2 0x11C PUSH2 0x6B1 JUMP JUMPDEST ADD PUSH2 0x127 DUP3 DUP3 PUSH2 0x6C7 JUMP JUMPDEST POP DUP2 SWAP1 POP PUSH2 0x134 DUP2 PUSH2 0x638 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xE7 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0x18C JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0x1A7 JUMP JUMPDEST PUSH1 0x1 PUSH2 0x19D PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x5CC JUMP JUMPDEST PUSH2 0x1A7 SWAP2 SWAP1 PUSH2 0x621 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0x1B8 DUP4 DUP6 PUSH2 0x5CC JUMP JUMPDEST PUSH2 0x1C2 SWAP2 SWAP1 PUSH2 0x60D JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0x1D4 DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0x36A JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x1EB JUMPI PUSH2 0x1EB PUSH2 0x6B1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP3 MSTORE PUSH29 0x100000000000000000000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0x261 JUMPI PUSH2 0x259 DUP3 PUSH1 0x1 PUSH2 0x5CC JUMP JUMPDEST SWAP4 POP POP PUSH2 0x1AC JUMP JUMPDEST DUP12 PUSH2 0x271 DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0x37D JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x288 JUMPI PUSH2 0x288 PUSH2 0x6B1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH29 0x100000000000000000000000000000000000000000000000000000000 SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0x2FB SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0x393 AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x324 JUMPI POP PUSH2 0x324 DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0x393 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x330 JUMPI POP POP PUSH2 0x35C JUMP JUMPDEST DUP1 PUSH2 0x347 JUMPI PUSH2 0x340 PUSH1 0x1 DUP5 PUSH2 0x621 JUMP JUMPDEST SWAP4 POP PUSH2 0x355 JUMP JUMPDEST PUSH2 0x352 DUP4 PUSH1 0x1 PUSH2 0x5CC JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0x1AC JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x376 DUP3 DUP5 PUSH2 0x671 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x376 PUSH2 0x38D DUP5 PUSH1 0x1 PUSH2 0x5CC JUMP JUMPDEST DUP4 PUSH2 0x36A JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x3BD JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x3D9 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0x376 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x408 JUMPI PUSH2 0x403 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x5E4 JUMP JUMPDEST PUSH2 0x410 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x448 JUMPI PUSH2 0x443 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x5E4 JUMP JUMPDEST PUSH2 0x450 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH3 0xFFFFFF DUP2 AND DUP2 EQ PUSH2 0x477 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x48F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x4A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x4BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x4CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x6 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x4DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x509 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x512 DUP7 PUSH2 0x464 JUMP JUMPDEST SWAP5 POP PUSH2 0x520 PUSH1 0x20 DUP8 ADD PUSH2 0x464 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x530 DUP2 PUSH2 0x739 JUMP JUMPDEST SWAP3 POP PUSH2 0x53E PUSH1 0x60 DUP8 ADD PUSH2 0x464 JUMP JUMPDEST SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH2 0x54E DUP2 PUSH2 0x739 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST DUP3 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP2 ADD DUP3 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x20 DUP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x376 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x5DF JUMPI PUSH2 0x5DF PUSH2 0x685 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x604 JUMPI PUSH2 0x604 PUSH2 0x685 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x61C JUMPI PUSH2 0x61C PUSH2 0x69B JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x633 JUMPI PUSH2 0x633 PUSH2 0x685 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x66A JUMPI PUSH2 0x66A PUSH2 0x685 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x680 JUMPI PUSH2 0x680 PUSH2 0x69B JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP1 DUP3 EQ PUSH2 0x6F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP2 POP DUP1 DUP3 DUP5 SLOAD AND OR DUP4 SSTORE PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x72D DUP2 PUSH2 0x739 JUMP JUMPDEST PUSH1 0xE0 SHL SWAP1 SWAP2 AND OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x74B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP11 0xA8 PUSH25 0x2CE58E5745DCB9C01BCB4FA98E632B83BF3341FCF11A460C3E 0x5D 0xC4 SDIV DUP8 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "285:1051:82:-:0;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@MAX_CARDINALITY_17382": {
                  "entryPoint": null,
                  "id": 17382,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@binarySearch_12591": {
                  "entryPoint": 321,
                  "id": 12591,
                  "parameterSlots": 6,
                  "returnSlots": 2
                },
                "@binarySearch_17446": {
                  "entryPoint": 159,
                  "id": 17446,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@lte_12705": {
                  "entryPoint": 915,
                  "id": 12705,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@nextIndex_12848": {
                  "entryPoint": 893,
                  "id": 12848,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@setObservations_17416": {
                  "entryPoint": 228,
                  "id": 17416,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@wrap_12781": {
                  "entryPoint": 874,
                  "id": 12781,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_struct$_Observation_$12454_calldata_ptr_$dyn_calldata_ptr": {
                  "entryPoint": 1148,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint24t_uint24t_uint32t_uint24t_uint32": {
                  "entryPoint": 1265,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_uint24": {
                  "entryPoint": 1124,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_struct_Observation": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_struct$_Observation_$12454_memory_ptr_t_struct$_Observation_$12454_memory_ptr__to_t_struct$_Observation_$12454_memory_ptr_t_struct$_Observation_$12454_memory_ptr__fromStack_reversed": {
                  "entryPoint": 1372,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint24__to_t_uint24__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 1484,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint40": {
                  "entryPoint": 1508,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 1549,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 1569,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 1592,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "mod_t_uint256": {
                  "entryPoint": 1649,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 1669,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x12": {
                  "entryPoint": 1691,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 1713,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "update_storage_value_offset_0t_struct$_Observation_$12454_calldata_ptr_to_t_struct$_Observation_$12454_storage": {
                  "entryPoint": 1735,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "validator_revert_uint32": {
                  "entryPoint": 1849,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:4544:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "62:113:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "72:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "94:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "81:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "81:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "72:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "153:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "162:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "165:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "155:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "155:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "155:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "123:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "134:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "141:8:84",
                                            "type": "",
                                            "value": "0xffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "130:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "130:20:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "120:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "120:31:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "113:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "113:39:84"
                              },
                              "nodeType": "YulIf",
                              "src": "110:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint24",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "41:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "52:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:161:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "317:510:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "363:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "372:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "375:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "365:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "365:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "365:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "338:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "347:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "334:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "334:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "359:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "330:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "330:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "327:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "388:37:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "415:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "402:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "402:23:84"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "392:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "434:28:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "444:18:84",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "438:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "489:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "498:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "501:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "491:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "491:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "491:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "477:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "485:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "474:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "474:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "471:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "514:32:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "528:9:84"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "539:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "524:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "524:22:84"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "518:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "594:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "603:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "606:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "596:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "596:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "596:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "573:2:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "577:4:84",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "569:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "569:13:84"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "584:7:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "565:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "565:27:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "558:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "558:35:84"
                              },
                              "nodeType": "YulIf",
                              "src": "555:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "619:30:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "646:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "633:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "633:16:84"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "623:6:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "676:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "685:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "688:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "678:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "678:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "678:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "664:6:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "672:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "661:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "661:14:84"
                              },
                              "nodeType": "YulIf",
                              "src": "658:2:84"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "750:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "759:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "762:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "752:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "752:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "752:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "715:2:84"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "723:1:84",
                                                "type": "",
                                                "value": "6"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "726:6:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "719:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "719:14:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "711:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "711:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "736:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "707:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "707:32:84"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "741:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "704:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "704:45:84"
                              },
                              "nodeType": "YulIf",
                              "src": "701:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "775:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "789:2:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "793:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "785:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "785:11:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "775:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "805:16:84",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "815:6:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "805:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_Observation_$12454_calldata_ptr_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "275:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "286:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "298:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "306:6:84",
                            "type": ""
                          }
                        ],
                        "src": "180:647:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "965:469:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1012:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1021:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1024:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1014:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1014:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1014:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "986:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "995:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "982:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "982:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1007:3:84",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "978:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "978:33:84"
                              },
                              "nodeType": "YulIf",
                              "src": "975:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1037:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1065:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint24",
                                  "nodeType": "YulIdentifier",
                                  "src": "1047:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1047:28:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1037:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1084:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1116:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1127:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1112:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1112:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint24",
                                  "nodeType": "YulIdentifier",
                                  "src": "1094:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1094:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1084:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1140:45:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1170:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1181:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1166:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1166:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1153:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1153:32:84"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1144:5:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1218:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1194:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1194:30:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1194:30:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1233:15:84",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1243:5:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1233:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1257:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1289:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1300:2:84",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1285:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1285:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint24",
                                  "nodeType": "YulIdentifier",
                                  "src": "1267:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1267:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1257:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1313:48:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1345:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1356:3:84",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1341:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1341:19:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1328:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1328:33:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1317:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1394:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1370:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1370:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1370:32:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1411:17:84",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1421:7:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "1411:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint24t_uint24t_uint32t_uint24t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "899:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "910:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "922:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "930:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "938:6:84",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "946:6:84",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "954:6:84",
                            "type": ""
                          }
                        ],
                        "src": "832:602:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1494:179:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1511:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1526:5:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "1520:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1520:12:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1534:58:84",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1516:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1516:77:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1504:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1504:90:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1504:90:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1614:3:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1619:4:84",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1610:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1610:14:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1640:5:84"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1647:4:84",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "1636:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1636:16:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "1630:5:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1630:23:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1655:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1626:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1626:40:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1603:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1603:64:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1603:64:84"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_Observation",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1478:5:84",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "1485:3:84",
                            "type": ""
                          }
                        ],
                        "src": "1439:234:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1927:166:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1937:27:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1949:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1960:3:84",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1945:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1945:19:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1937:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2003:6:84"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2011:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Observation",
                                  "nodeType": "YulIdentifier",
                                  "src": "1973:29:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1973:48:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1973:48:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2060:6:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2072:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2083:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2068:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2068:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Observation",
                                  "nodeType": "YulIdentifier",
                                  "src": "2030:29:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2030:57:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2030:57:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Observation_$12454_memory_ptr_t_struct$_Observation_$12454_memory_ptr__to_t_struct$_Observation_$12454_memory_ptr_t_struct$_Observation_$12454_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1888:9:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1899:6:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1907:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1918:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1678:415:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2197:91:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2207:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2219:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2230:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2215:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2215:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2207:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2249:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2264:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2272:8:84",
                                        "type": "",
                                        "value": "0xffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2260:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2260:21:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2242:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2242:40:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2242:40:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint24__to_t_uint24__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2166:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2177:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2188:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2098:190:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2341:80:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2368:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "2370:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2370:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2370:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "2357:1:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "2364:1:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "2360:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2360:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2354:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2354:13:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2351:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2399:16:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "2410:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "2413:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2406:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2406:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "2399:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "2324:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "2327:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "2333:3:84",
                            "type": ""
                          }
                        ],
                        "src": "2293:128:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2473:183:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2483:22:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2493:12:84",
                                "type": "",
                                "value": "0xffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2487:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2514:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "2529:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2532:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "2525:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2525:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2518:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2544:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "2559:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2562:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "2555:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2555:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2548:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2599:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "2601:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2601:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2601:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2580:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2589:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2593:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2585:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2585:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2577:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2577:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2574:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2630:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2641:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2646:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2637:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2637:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "2630:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint40",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "2456:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "2459:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "2465:3:84",
                            "type": ""
                          }
                        ],
                        "src": "2426:230:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2707:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2730:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "2732:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2732:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2732:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "2727:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2720:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2720:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2717:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2761:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "2770:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "2773:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "2766:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2766:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "2761:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "2692:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "2695:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "2701:1:84",
                            "type": ""
                          }
                        ],
                        "src": "2661:120:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2835:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2857:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "2859:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2859:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2859:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "2851:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "2854:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2848:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2848:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2845:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2888:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "2900:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "2903:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "2896:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2896:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "2888:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "2817:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "2820:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "2826:4:84",
                            "type": ""
                          }
                        ],
                        "src": "2786:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2963:148:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3054:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "3056:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3056:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3056:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2979:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2986:66:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "2976:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2976:77:84"
                              },
                              "nodeType": "YulIf",
                              "src": "2973:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3085:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3096:5:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3103:1:84",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3092:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3092:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "3085:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2945:5:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "2955:3:84",
                            "type": ""
                          }
                        ],
                        "src": "2916:195:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3154:74:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3177:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "3179:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3179:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3179:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "3174:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3167:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3167:9:84"
                              },
                              "nodeType": "YulIf",
                              "src": "3164:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3208:14:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "3217:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "3220:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "3213:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3213:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "3208:1:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "3139:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "3142:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "3148:1:84",
                            "type": ""
                          }
                        ],
                        "src": "3116:112:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3265:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3282:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3285:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3275:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3275:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3275:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3379:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3382:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3372:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3372:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3372:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3403:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3406:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "3396:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3396:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3396:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "3233:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3454:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3471:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3474:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3464:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3464:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3464:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3568:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3571:4:84",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3561:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3561:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3561:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3592:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3595:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "3585:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3585:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3585:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "3422:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3643:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3660:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3663:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3653:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3653:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3653:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3757:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3760:4:84",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3750:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3750:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3750:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3781:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3784:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "3774:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3774:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3774:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "3611:184:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3937:479:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3947:34:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3975:5:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3962:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3962:19:84"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3951:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3990:82:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4004:7:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4013:58:84",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "4000:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4000:72:84"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3994:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4108:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4117:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4120:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4110:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4110:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4110:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4094:7:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4103:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "4091:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4091:15:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4084:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4084:23:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4081:2:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4133:76:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4143:66:84",
                                "type": "",
                                "value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "4137:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "4225:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "slot",
                                                "nodeType": "YulIdentifier",
                                                "src": "4244:4:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sload",
                                              "nodeType": "YulIdentifier",
                                              "src": "4238:5:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4238:11:84"
                                          },
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "4251:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4234:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4234:20:84"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4256:2:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "4231:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4231:28:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4218:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4218:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4218:42:84"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4269:43:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4301:5:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4308:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4297:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4297:14:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4284:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4284:28:84"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "4273:7:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4345:7:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4321:23:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4321:32:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4321:32:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "4369:4:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4378:2:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4390:3:84",
                                                "type": "",
                                                "value": "224"
                                              },
                                              {
                                                "name": "value_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "4395:7:84"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "4386:3:84"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4386:17:84"
                                          },
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "4405:2:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4382:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4382:26:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "4375:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4375:34:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4362:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4362:48:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4362:48:84"
                            }
                          ]
                        },
                        "name": "update_storage_value_offset_0t_struct$_Observation_$12454_calldata_ptr_to_t_struct$_Observation_$12454_storage",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "3920:4:84",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3926:5:84",
                            "type": ""
                          }
                        ],
                        "src": "3800:616:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4465:77:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4520:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4529:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4532:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4522:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4522:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4522:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4488:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4499:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4506:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4495:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4495:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "4485:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4485:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4478:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4478:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "4475:2:84"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4454:5:84",
                            "type": ""
                          }
                        ],
                        "src": "4421:121:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_uint24(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_array$_t_struct$_Observation_$12454_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(6, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_2, 32)\n        value1 := length\n    }\n    function abi_decode_tuple_t_uint24t_uint24t_uint32t_uint24t_uint32(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        value0 := abi_decode_uint24(headStart)\n        value1 := abi_decode_uint24(add(headStart, 32))\n        let value := calldataload(add(headStart, 64))\n        validator_revert_uint32(value)\n        value2 := value\n        value3 := abi_decode_uint24(add(headStart, 96))\n        let value_1 := calldataload(add(headStart, 128))\n        validator_revert_uint32(value_1)\n        value4 := value_1\n    }\n    function abi_encode_struct_Observation(value, pos)\n    {\n        mstore(pos, and(mload(value), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(pos, 0x20), and(mload(add(value, 0x20)), 0xffffffff))\n    }\n    function abi_encode_tuple_t_struct$_Observation_$12454_memory_ptr_t_struct$_Observation_$12454_memory_ptr__to_t_struct$_Observation_$12454_memory_ptr_t_struct$_Observation_$12454_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        abi_encode_struct_Observation(value0, headStart)\n        abi_encode_struct_Observation(value1, add(headStart, 64))\n    }\n    function abi_encode_tuple_t_uint24__to_t_uint24__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint40(x, y) -> sum\n    {\n        let _1 := 0xffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function update_storage_value_offset_0t_struct$_Observation_$12454_calldata_ptr_to_t_struct$_Observation_$12454_storage(slot, value)\n    {\n        let value_1 := calldataload(value)\n        let _1 := and(value_1, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n        if iszero(eq(value_1, _1)) { revert(0, 0) }\n        let _2 := 0xffffffff00000000000000000000000000000000000000000000000000000000\n        sstore(slot, or(and(sload(slot), _2), _1))\n        let value_2 := calldataload(add(value, 32))\n        validator_revert_uint32(value_2)\n        sstore(slot, or(_1, and(shl(224, value_2), _2)))\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100415760003560e01c80638200d87314610046578063d1f18b6b14610069578063efd911451461008a575b600080fd5b61005062ffffff81565b60405162ffffff90911681526020015b60405180910390f35b61007c6100773660046104f1565b61009f565b60405161006092919061055c565b61009d61009836600461047c565b6100e4565b005b604080518082019091526000808252602082015260408051808201909152600080825260208201526100d660008888888888610141565b915091509550959350505050565b60005b8181101561013c57828282818110610101576101016106b1565b90506040020160008262ffffff811061011c5761011c6106b1565b0161012782826106c7565b5081905061013481610638565b9150506100e7565b505050565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff161061018c578862ffffff166101a7565b600161019d62ffffff8816846105cc565b6101a79190610621565b905060005b60026101b883856105cc565b6101c2919061060d565b90508a6101d4828962ffffff1661036a565b62ffffff1662ffffff81106101eb576101eb6106b1565b604080518082019091529101547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff811682527c0100000000000000000000000000000000000000000000000000000000900463ffffffff166020820181905290955080610261576102598260016105cc565b9350506101ac565b8b610271838a62ffffff1661037d565b62ffffff1662ffffff8110610288576102886106b1565b604080518082019091529101547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8116825263ffffffff7c0100000000000000000000000000000000000000000000000000000000909104811660208301529095506000906102fb90838116908c908b9061039316565b905080801561032457506103248660200151898c63ffffffff166103939092919063ffffffff16565b1561033057505061035c565b8061034757610340600184610621565b9350610355565b6103528360016105cc565b94505b50506101ac565b505050965096945050505050565b60006103768284610671565b9392505050565b600061037661038d8460016105cc565b8361036a565b60008163ffffffff168463ffffffff16111580156103bd57508163ffffffff168363ffffffff1611155b156103d9578263ffffffff168463ffffffff1611159050610376565b60008263ffffffff168563ffffffff16116104085761040363ffffffff86166401000000006105e4565b610410565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116104485761044363ffffffff86166401000000006105e4565b610450565b8463ffffffff165b64ffffffffff169091111595945050505050565b803562ffffff8116811461047757600080fd5b919050565b6000806020838503121561048f57600080fd5b823567ffffffffffffffff808211156104a757600080fd5b818501915085601f8301126104bb57600080fd5b8135818111156104ca57600080fd5b8660208260061b85010111156104df57600080fd5b60209290920196919550909350505050565b600080600080600060a0868803121561050957600080fd5b61051286610464565b945061052060208701610464565b9350604086013561053081610739565b925061053e60608701610464565b9150608086013561054e81610739565b809150509295509295909350565b82517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16815260208084015163ffffffff16908201526080810182517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166040830152602083015163ffffffff166060830152610376565b600082198211156105df576105df610685565b500190565b600064ffffffffff80831681851680830382111561060457610604610685565b01949350505050565b60008261061c5761061c61069b565b500490565b60008282101561063357610633610685565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561066a5761066a610685565b5060010190565b6000826106805761068061069b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b81357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff81168082146106f457600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000091508082845416178355602084013561072d81610739565b60e01b90911617905550565b63ffffffff8116811461074b57600080fd5b5056fea26469706673582212209aa8782ce58e5745dcb9c01bcb4fa98e632b83bf3341fcf11a460c3e5dc4058764736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8200D873 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0xD1F18B6B EQ PUSH2 0x69 JUMPI DUP1 PUSH4 0xEFD91145 EQ PUSH2 0x8A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x50 PUSH3 0xFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0xFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x7C PUSH2 0x77 CALLDATASIZE PUSH1 0x4 PUSH2 0x4F1 JUMP JUMPDEST PUSH2 0x9F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x60 SWAP3 SWAP2 SWAP1 PUSH2 0x55C JUMP JUMPDEST PUSH2 0x9D PUSH2 0x98 CALLDATASIZE PUSH1 0x4 PUSH2 0x47C JUMP JUMPDEST PUSH2 0xE4 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xD6 PUSH1 0x0 DUP9 DUP9 DUP9 DUP9 DUP9 PUSH2 0x141 JUMP JUMPDEST SWAP2 POP SWAP2 POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x13C JUMPI DUP3 DUP3 DUP3 DUP2 DUP2 LT PUSH2 0x101 JUMPI PUSH2 0x101 PUSH2 0x6B1 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MUL ADD PUSH1 0x0 DUP3 PUSH3 0xFFFFFF DUP2 LT PUSH2 0x11C JUMPI PUSH2 0x11C PUSH2 0x6B1 JUMP JUMPDEST ADD PUSH2 0x127 DUP3 DUP3 PUSH2 0x6C7 JUMP JUMPDEST POP DUP2 SWAP1 POP PUSH2 0x134 DUP2 PUSH2 0x638 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xE7 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0x18C JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0x1A7 JUMP JUMPDEST PUSH1 0x1 PUSH2 0x19D PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x5CC JUMP JUMPDEST PUSH2 0x1A7 SWAP2 SWAP1 PUSH2 0x621 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0x1B8 DUP4 DUP6 PUSH2 0x5CC JUMP JUMPDEST PUSH2 0x1C2 SWAP2 SWAP1 PUSH2 0x60D JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0x1D4 DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0x36A JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x1EB JUMPI PUSH2 0x1EB PUSH2 0x6B1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP3 MSTORE PUSH29 0x100000000000000000000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0x261 JUMPI PUSH2 0x259 DUP3 PUSH1 0x1 PUSH2 0x5CC JUMP JUMPDEST SWAP4 POP POP PUSH2 0x1AC JUMP JUMPDEST DUP12 PUSH2 0x271 DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0x37D JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x288 JUMPI PUSH2 0x288 PUSH2 0x6B1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH29 0x100000000000000000000000000000000000000000000000000000000 SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0x2FB SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0x393 AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x324 JUMPI POP PUSH2 0x324 DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0x393 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x330 JUMPI POP POP PUSH2 0x35C JUMP JUMPDEST DUP1 PUSH2 0x347 JUMPI PUSH2 0x340 PUSH1 0x1 DUP5 PUSH2 0x621 JUMP JUMPDEST SWAP4 POP PUSH2 0x355 JUMP JUMPDEST PUSH2 0x352 DUP4 PUSH1 0x1 PUSH2 0x5CC JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0x1AC JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x376 DUP3 DUP5 PUSH2 0x671 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x376 PUSH2 0x38D DUP5 PUSH1 0x1 PUSH2 0x5CC JUMP JUMPDEST DUP4 PUSH2 0x36A JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x3BD JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x3D9 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0x376 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x408 JUMPI PUSH2 0x403 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x5E4 JUMP JUMPDEST PUSH2 0x410 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x448 JUMPI PUSH2 0x443 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x5E4 JUMP JUMPDEST PUSH2 0x450 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH3 0xFFFFFF DUP2 AND DUP2 EQ PUSH2 0x477 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x48F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x4A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x4BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x4CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x6 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x4DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x509 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x512 DUP7 PUSH2 0x464 JUMP JUMPDEST SWAP5 POP PUSH2 0x520 PUSH1 0x20 DUP8 ADD PUSH2 0x464 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x530 DUP2 PUSH2 0x739 JUMP JUMPDEST SWAP3 POP PUSH2 0x53E PUSH1 0x60 DUP8 ADD PUSH2 0x464 JUMP JUMPDEST SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH2 0x54E DUP2 PUSH2 0x739 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST DUP3 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP2 ADD DUP3 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x20 DUP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x376 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x5DF JUMPI PUSH2 0x5DF PUSH2 0x685 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x604 JUMPI PUSH2 0x604 PUSH2 0x685 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x61C JUMPI PUSH2 0x61C PUSH2 0x69B JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x633 JUMPI PUSH2 0x633 PUSH2 0x685 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x66A JUMPI PUSH2 0x66A PUSH2 0x685 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x680 JUMPI PUSH2 0x680 PUSH2 0x69B JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP1 DUP3 EQ PUSH2 0x6F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP2 POP DUP1 DUP3 DUP5 SLOAD AND OR DUP4 SSTORE PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x72D DUP2 PUSH2 0x739 JUMP JUMPDEST PUSH1 0xE0 SHL SWAP1 SWAP2 AND OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x74B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP11 0xA8 PUSH25 0x2CE58E5745DCB9C01BCB4FA98E632B83BF3341FCF11A460C3E 0x5D 0xC4 SDIV DUP8 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "285:1051:82:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;373:49;;414:8;373:49;;;;;2272:8:84;2260:21;;;2242:40;;2230:2;2215:18;373:49:82;;;;;;;;720:614;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;501:213::-;;;;;;:::i;:::-;;:::i;:::-;;720:614;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1102:225:82;1147:12;1177:17;1212:23;1253:7;1278:12;1308:5;1102:27;:225::i;:::-;1083:244;;;;720:614;;;;;;;;:::o;501:213::-;603:9;598:110;618:24;;;598:110;;;681:13;;695:1;681:16;;;;;;;:::i;:::-;;;;;;663:12;676:1;663:15;;;;;;;:::i;:::-;;:34;;:15;:34;:::i;:::-;-1:-1:-1;644:3:82;;-1:-1:-1;644:3:82;;;:::i;:::-;;;;598:110;;;;501:213;;:::o;2382:2006:54:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2719:16:54;2738:23;2719:42;;;;2771:17;2817:8;2791:23;:34;;;:114;;2882:23;2791:114;;;;;2866:1;2840:23;;;;:8;:23;:::i;:::-;:27;;;;:::i;:::-;2771:134;;2915:20;2946:1436;3237:1;3213:20;3224:9;3213:8;:20;:::i;:::-;3212:26;;;;:::i;:::-;3197:41;;3266:13;3287:46;3306:12;3320;3287:46;;:18;:46::i;:::-;3266:69;;;;;;;;;:::i;:::-;3253:82;;;;;;;;;3266:69;;3253:82;;;;;;;;;;;;;;;;;;;-1:-1:-1;3253:82:54;3511:116;;3570:16;:12;3585:1;3570:16;:::i;:::-;3559:27;;3604:8;;;3511:116;3653:13;3674:51;3698:12;3712;3674:51;;:23;:51::i;:::-;3653:74;;;;;;;;;:::i;:::-;3641:86;;;;;;;;;3653:74;;3641:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3765:39:54;;:23;;;;3789:7;;3798:5;;3765:23;:39;:::i;:::-;3742:62;;3890:15;:58;;;;;3909:39;3921:9;:19;;;3942:5;3909:7;:11;;;;:39;;;;;:::i;:::-;3886:102;;;3968:5;;;;3886:102;4138:15;4133:239;;4185:16;4200:1;4185:12;:16;:::i;:::-;4173:28;;4133:239;;;4341:16;:12;4356:1;4341:16;:::i;:::-;4330:27;;4133:239;2959:1423;;2946:1436;;;2709:1679;;;2382:2006;;;;;;;;;:::o;580:129:56:-;655:7;681:21;690:12;681:6;:21;:::i;:::-;674:28;580:129;-1:-1:-1;;;580:129:56:o;2263:171::-;2367:7;2397:30;2402:10;:6;2411:1;2402:10;:::i;:::-;2414:12;2397:4;:30::i;1658:417:55:-;1765:4;1854:10;1848:16;;:2;:16;;;;:36;;;;;1874:10;1868:16;;:2;:16;;;;1848:36;1844:57;;;1899:2;1893:8;;:2;:8;;;;1886:15;;;;1844:57;1912:17;1937:10;1932:15;;:2;:15;;;:33;;1955:10;;;;1960:5;1955:10;:::i;:::-;1932:33;;;1950:2;1932:33;;;1912:53;;;;1975:17;2000:10;1995:15;;:2;:15;;;:33;;2018:10;;;;2023:5;2018:10;:::i;:::-;1995:33;;;2013:2;1995:33;;;1975:53;;2046:22;;;;;1658:417;-1:-1:-1;;;;;1658:417:55:o;14:161:84:-;81:20;;141:8;130:20;;120:31;;110:2;;165:1;162;155:12;110:2;62:113;;;:::o;180:647::-;298:6;306;359:2;347:9;338:7;334:23;330:32;327:2;;;375:1;372;365:12;327:2;415:9;402:23;444:18;485:2;477:6;474:14;471:2;;;501:1;498;491:12;471:2;539:6;528:9;524:22;514:32;;584:7;577:4;573:2;569:13;565:27;555:2;;606:1;603;596:12;555:2;646;633:16;672:2;664:6;661:14;658:2;;;688:1;685;678:12;658:2;741:7;736:2;726:6;723:1;719:14;715:2;711:23;707:32;704:45;701:2;;;762:1;759;752:12;701:2;793;785:11;;;;;815:6;;-1:-1:-1;317:510:84;;-1:-1:-1;;;;317:510:84:o;832:602::-;922:6;930;938;946;954;1007:3;995:9;986:7;982:23;978:33;975:2;;;1024:1;1021;1014:12;975:2;1047:28;1065:9;1047:28;:::i;:::-;1037:38;;1094:37;1127:2;1116:9;1112:18;1094:37;:::i;:::-;1084:47;;1181:2;1170:9;1166:18;1153:32;1194:30;1218:5;1194:30;:::i;:::-;1243:5;-1:-1:-1;1267:37:84;1300:2;1285:18;;1267:37;:::i;:::-;1257:47;;1356:3;1345:9;1341:19;1328:33;1370:32;1394:7;1370:32;:::i;:::-;1421:7;1411:17;;;965:469;;;;;;;;:::o;1678:415::-;1520:12;;1534:58;1516:77;1504:90;;1647:4;1636:16;;;1630:23;1655:10;1626:40;1610:14;;;1603:64;1960:3;1945:19;;1520:12;;1534:58;1516:77;2083:2;2068:18;;1504:90;1647:4;1636:16;;1630:23;1655:10;1626:40;1610:14;;;1603:64;2030:57;1494:179;2293:128;2333:3;2364:1;2360:6;2357:1;2354:13;2351:2;;;2370:18;;:::i;:::-;-1:-1:-1;2406:9:84;;2341:80::o;2426:230::-;2465:3;2493:12;2532:2;2529:1;2525:10;2562:2;2559:1;2555:10;2593:3;2589:2;2585:12;2580:3;2577:21;2574:2;;;2601:18;;:::i;:::-;2637:13;;2473:183;-1:-1:-1;;;;2473:183:84:o;2661:120::-;2701:1;2727;2717:2;;2732:18;;:::i;:::-;-1:-1:-1;2766:9:84;;2707:74::o;2786:125::-;2826:4;2854:1;2851;2848:8;2845:2;;;2859:18;;:::i;:::-;-1:-1:-1;2896:9:84;;2835:76::o;2916:195::-;2955:3;2986:66;2979:5;2976:77;2973:2;;;3056:18;;:::i;:::-;-1:-1:-1;3103:1:84;3092:13;;2963:148::o;3116:112::-;3148:1;3174;3164:2;;3179:18;;:::i;:::-;-1:-1:-1;3213:9:84;;3154:74::o;3233:184::-;-1:-1:-1;;;3282:1:84;3275:88;3382:4;3379:1;3372:15;3406:4;3403:1;3396:15;3422:184;-1:-1:-1;;;3471:1:84;3464:88;3571:4;3568:1;3561:15;3595:4;3592:1;3585:15;3611:184;-1:-1:-1;;;3660:1:84;3653:88;3760:4;3757:1;3750:15;3784:4;3781:1;3774:15;3800:616;3975:5;3962:19;4013:58;4004:7;4000:72;4103:2;4094:7;4091:15;4081:2;;4120:1;4117;4110:12;4081:2;4143:66;4133:76;;4256:2;4251;4244:4;4238:11;4234:20;4231:28;4225:4;4218:42;4308:2;4301:5;4297:14;4284:28;4321:32;4345:7;4321:32;:::i;:::-;4390:3;4386:17;4382:26;;;4375:34;4362:48;;-1:-1:-1;3937:479:84:o;4421:121::-;4506:10;4499:5;4495:22;4488:5;4485:33;4475:2;;4532:1;4529;4522:12;4475:2;4465:77;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "384800",
                "executionCost": "424",
                "totalCost": "385224"
              },
              "external": {
                "MAX_CARDINALITY()": "171",
                "binarySearch(uint24,uint24,uint32,uint24,uint32)": "infinite",
                "setObservations((uint224,uint32)[])": "infinite"
              }
            },
            "methodIdentifiers": {
              "MAX_CARDINALITY()": "8200d873",
              "binarySearch(uint24,uint24,uint32,uint24,uint32)": "d1f18b6b",
              "setObservations((uint224,uint32)[])": "efd91145"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"MAX_CARDINALITY\",\"outputs\":[{\"internalType\":\"uint24\",\"name\":\"\",\"type\":\"uint24\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint24\",\"name\":\"_observationIndex\",\"type\":\"uint24\"},{\"internalType\":\"uint24\",\"name\":\"_oldestObservationIndex\",\"type\":\"uint24\"},{\"internalType\":\"uint32\",\"name\":\"_target\",\"type\":\"uint32\"},{\"internalType\":\"uint24\",\"name\":\"_cardinality\",\"type\":\"uint24\"},{\"internalType\":\"uint32\",\"name\":\"_time\",\"type\":\"uint32\"}],\"name\":\"binarySearch\",\"outputs\":[{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"beforeOrAt\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"atOrAfter\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"internalType\":\"struct ObservationLib.Observation[]\",\"name\":\"_observations\",\"type\":\"tuple[]\"}],\"name\":\"setObservations\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc.\",\"kind\":\"dev\",\"methods\":{},\"title\":\"Time-Weighted Average Balance Library\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"MAX_CARDINALITY()\":{\"notice\":\"The maximum number of twab entries\"}},\"notice\":\"This library allows you to efficiently track a user's historic balance.  You can get a\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/libraries/ObservationLibHarness.sol\":\"ObservationLibHarness\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb\",\"license\":\"MIT\"},\"contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"contracts/test/libraries/ObservationLibHarness.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../../libraries/ObservationLib.sol\\\";\\n\\n/// @title Time-Weighted Average Balance Library\\n/// @notice This library allows you to efficiently track a user's historic balance.  You can get a\\n/// @author PoolTogether Inc.\\ncontract ObservationLibHarness {\\n    /// @notice The maximum number of twab entries\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    ObservationLib.Observation[MAX_CARDINALITY] observations;\\n\\n    function setObservations(ObservationLib.Observation[] calldata _observations) external {\\n        for (uint256 i = 0; i < _observations.length; i++) {\\n            observations[i] = _observations[i];\\n        }\\n    }\\n\\n    function binarySearch(\\n        uint24 _observationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    )\\n        external\\n        view\\n        returns (\\n            ObservationLib.Observation memory beforeOrAt,\\n            ObservationLib.Observation memory atOrAfter\\n        )\\n    {\\n        return\\n            ObservationLib.binarySearch(\\n                observations,\\n                _observationIndex,\\n                _oldestObservationIndex,\\n                _target,\\n                _cardinality,\\n                _time\\n            );\\n    }\\n}\\n\",\"keccak256\":\"0x349eb2a713adbe570df3e31fed8aee3873b0a627bc0d32446c0a9d7f516c1f61\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 17387,
                "contract": "contracts/test/libraries/ObservationLibHarness.sol:ObservationLibHarness",
                "label": "observations",
                "offset": 0,
                "slot": "0",
                "type": "t_array(t_struct(Observation)12454_storage)16777215_storage"
              }
            ],
            "types": {
              "t_array(t_struct(Observation)12454_storage)16777215_storage": {
                "base": "t_struct(Observation)12454_storage",
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation[16777215]",
                "numberOfBytes": "536870880"
              },
              "t_struct(Observation)12454_storage": {
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation",
                "members": [
                  {
                    "astId": 12451,
                    "contract": "contracts/test/libraries/ObservationLibHarness.sol:ObservationLibHarness",
                    "label": "amount",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint224"
                  },
                  {
                    "astId": 12453,
                    "contract": "contracts/test/libraries/ObservationLibHarness.sol:ObservationLibHarness",
                    "label": "timestamp",
                    "offset": 28,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint224": {
                "encoding": "inplace",
                "label": "uint224",
                "numberOfBytes": "28"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "MAX_CARDINALITY()": {
                "notice": "The maximum number of twab entries"
              }
            },
            "notice": "This library allows you to efficiently track a user's historic balance.  You can get a",
            "version": 1
          }
        }
      },
      "contracts/test/libraries/OverflowSafeComparatorLibHarness.sol": {
        "OverflowSafeComparatorLibHarness": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_a",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "_b",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "_timestamp",
                  "type": "uint256"
                }
              ],
              "name": "checkedSub",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_a",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "_b",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "_timestamp",
                  "type": "uint32"
                }
              ],
              "name": "ltHarness",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_a",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "_b",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "_timestamp",
                  "type": "uint32"
                }
              ],
              "name": "lteHarness",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b506104c1806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c80631d8367f4146100465780634fd7cca31461006e578063f48e6b7514610081575b600080fd5b6100596100543660046103b4565b6100a9565b60405190151581526020015b60405180910390f35b61005961007c3660046103b4565b6100cb565b61009461008f366004610388565b6100e3565b60405163ffffffff9091168152602001610065565b60006100c163ffffffff80861690859085906100fb16565b90505b9392505050565b60006100c163ffffffff80861690859085906101ca16565b60006100c163ffffffff808616908590859061029b16565b60008163ffffffff168463ffffffff161115801561012557508163ffffffff168363ffffffff1611155b15610140578263ffffffff168463ffffffff161090506100c4565b60008263ffffffff168563ffffffff161161016f5761016a63ffffffff86166401000000006103f7565b610177565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116101af576101aa63ffffffff86166401000000006103f7565b6101b7565b8463ffffffff165b64ffffffffff1690911095945050505050565b60008163ffffffff168463ffffffff16111580156101f457508163ffffffff168363ffffffff1611155b15610210578263ffffffff168463ffffffff16111590506100c4565b60008263ffffffff168563ffffffff161161023f5761023a63ffffffff86166401000000006103f7565b610247565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff161161027f5761027a63ffffffff86166401000000006103f7565b610287565b8463ffffffff165b64ffffffffff169091111595945050505050565b60008163ffffffff168463ffffffff16111580156102c557508163ffffffff168363ffffffff1611155b156102db576102d48385610437565b90506100c4565b60008263ffffffff168563ffffffff161161030a5761030563ffffffff86166401000000006103f7565b610312565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff161161034a5761034563ffffffff86166401000000006103f7565b610352565b8463ffffffff165b64ffffffffff1690506103658183610420565b9695505050505050565b803563ffffffff8116811461038357600080fd5b919050565b60008060006060848603121561039d57600080fd5b505081359360208301359350604090920135919050565b6000806000606084860312156103c957600080fd5b6103d28461036f565b92506103e06020850161036f565b91506103ee6040850161036f565b90509250925092565b600064ffffffffff8083168185168083038211156104175761041761045c565b01949350505050565b6000828210156104325761043261045c565b500390565b600063ffffffff838116908316818110156104545761045461045c565b039392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220c63831d8e3d0e6adf874a4258989f99e7742cf93b872b94239618f8e4d77b51964736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4C1 DUP1 PUSH2 0x20 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 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1D8367F4 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x4FD7CCA3 EQ PUSH2 0x6E JUMPI DUP1 PUSH4 0xF48E6B75 EQ PUSH2 0x81 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59 PUSH2 0x54 CALLDATASIZE PUSH1 0x4 PUSH2 0x3B4 JUMP JUMPDEST PUSH2 0xA9 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x59 PUSH2 0x7C CALLDATASIZE PUSH1 0x4 PUSH2 0x3B4 JUMP JUMPDEST PUSH2 0xCB JUMP JUMPDEST PUSH2 0x94 PUSH2 0x8F CALLDATASIZE PUSH1 0x4 PUSH2 0x388 JUMP JUMPDEST PUSH2 0xE3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x65 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC1 PUSH4 0xFFFFFFFF DUP1 DUP7 AND SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH2 0xFB AND JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC1 PUSH4 0xFFFFFFFF DUP1 DUP7 AND SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH2 0x1CA AND JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC1 PUSH4 0xFFFFFFFF DUP1 DUP7 AND SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH2 0x29B AND JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x125 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x140 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND LT SWAP1 POP PUSH2 0xC4 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x16F JUMPI PUSH2 0x16A PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3F7 JUMP JUMPDEST PUSH2 0x177 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1AF JUMPI PUSH2 0x1AA PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3F7 JUMP JUMPDEST PUSH2 0x1B7 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 LT SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x1F4 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x210 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0xC4 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x23F JUMPI PUSH2 0x23A PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3F7 JUMP JUMPDEST PUSH2 0x247 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x27F JUMPI PUSH2 0x27A PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3F7 JUMP JUMPDEST PUSH2 0x287 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x2C5 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x2DB JUMPI PUSH2 0x2D4 DUP4 DUP6 PUSH2 0x437 JUMP JUMPDEST SWAP1 POP PUSH2 0xC4 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x30A JUMPI PUSH2 0x305 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3F7 JUMP JUMPDEST PUSH2 0x312 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x34A JUMPI PUSH2 0x345 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3F7 JUMP JUMPDEST PUSH2 0x352 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH2 0x365 DUP2 DUP4 PUSH2 0x420 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x383 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x39D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP POP DUP2 CALLDATALOAD SWAP4 PUSH1 0x20 DUP4 ADD CALLDATALOAD SWAP4 POP PUSH1 0x40 SWAP1 SWAP3 ADD CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3D2 DUP5 PUSH2 0x36F JUMP JUMPDEST SWAP3 POP PUSH2 0x3E0 PUSH1 0x20 DUP6 ADD PUSH2 0x36F JUMP JUMPDEST SWAP2 POP PUSH2 0x3EE PUSH1 0x40 DUP6 ADD PUSH2 0x36F JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x417 JUMPI PUSH2 0x417 PUSH2 0x45C JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x432 JUMPI PUSH2 0x432 PUSH2 0x45C JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x454 JUMPI PUSH2 0x454 PUSH2 0x45C JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC6 CODESIZE BALANCE 0xD8 0xE3 0xD0 0xE6 0xAD 0xF8 PUSH21 0xA4258989F99E7742CF93B872B94239618F8E4D77B5 NOT PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "118:643:83:-:0;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@checkedSub_12763": {
                  "entryPoint": 667,
                  "id": 12763,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@checkedSub_17516": {
                  "entryPoint": 227,
                  "id": 17516,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@ltHarness_17471": {
                  "entryPoint": 169,
                  "id": 17471,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@lt_12650": {
                  "entryPoint": 251,
                  "id": 12650,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@lteHarness_17489": {
                  "entryPoint": 203,
                  "id": 17489,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@lte_12705": {
                  "entryPoint": 458,
                  "id": 12705,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256t_uint256t_uint256": {
                  "entryPoint": 904,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_uint32t_uint32t_uint32": {
                  "entryPoint": 948,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_uint32": {
                  "entryPoint": 879,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint40": {
                  "entryPoint": 1015,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 1056,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 1079,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 1116,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:2002:84",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:84",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "62:115:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "72:29:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "94:6:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "81:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "81:20:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "72:5:84"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "155:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "164:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "167:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "157:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "157:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "157:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "123:5:84"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "134:5:84"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "141:10:84",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "130:3:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "130:22:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "120:2:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "120:33:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "113:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "113:41:84"
                              },
                              "nodeType": "YulIf",
                              "src": "110:2:84"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "41:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "52:5:84",
                            "type": ""
                          }
                        ],
                        "src": "14:163:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "286:212:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "332:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "341:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "344:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "334:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "334:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "334:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "307:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "316:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "303:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "303:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "328:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "299:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "299:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "296:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "357:33:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "380:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "367:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "367:23:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "357:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "399:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "426:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "437:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "422:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "422:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "409:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "409:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "399:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "450:42:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "477:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "488:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "473:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "473:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "460:12:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "460:32:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "450:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256t_uint256t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "236:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "247:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "259:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "267:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "275:6:84",
                            "type": ""
                          }
                        ],
                        "src": "182:316:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "604:227:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "650:16:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "659:1:84",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "662:1:84",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "652:6:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "652:12:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "652:12:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "625:7:84"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "634:9:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "621:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "621:23:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "646:2:84",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "617:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "617:32:84"
                              },
                              "nodeType": "YulIf",
                              "src": "614:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "675:38:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "703:9:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "685:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "685:28:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "675:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "722:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "754:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "765:2:84",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "750:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "750:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "732:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "732:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "722:6:84"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "778:47:84",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "810:9:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "821:2:84",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "806:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "806:18:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:17:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:37:84"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "778:6:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint32t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "554:9:84",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "565:7:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "577:6:84",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "585:6:84",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "593:6:84",
                            "type": ""
                          }
                        ],
                        "src": "503:328:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "931:92:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "941:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "953:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "964:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "949:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "949:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "941:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "983:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "1008:6:84"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1001:6:84"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1001:14:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "994:6:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "994:22:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "976:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "976:41:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "976:41:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "900:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "911:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "922:4:84",
                            "type": ""
                          }
                        ],
                        "src": "836:187:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1127:93:84",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1137:26:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1149:9:84"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1160:2:84",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1145:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1145:18:84"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1137:4:84"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1179:9:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "1194:6:84"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1202:10:84",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1190:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1190:23:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:42:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1172:42:84"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1096:9:84",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1107:6:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1118:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1028:192:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1272:183:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1282:22:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1292:12:84",
                                "type": "",
                                "value": "0xffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1286:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1313:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "1328:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1331:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "1324:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1324:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1317:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1343:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "1358:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1361:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "1354:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1354:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1347:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1398:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "1400:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1400:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1400:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1379:3:84"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1388:2:84"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1392:3:84"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1384:3:84"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1384:12:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1376:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1376:21:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1373:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1429:20:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1440:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1445:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1436:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1436:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "1429:3:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint40",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "1255:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "1258:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "1264:3:84",
                            "type": ""
                          }
                        ],
                        "src": "1225:230:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1509:76:84",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1531:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "1533:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1533:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1533:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "1525:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "1528:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1522:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1522:8:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1519:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1562:17:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "1574:1:84"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "1577:1:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1570:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1570:9:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "1562:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "1491:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "1494:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "1500:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1460:125:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1638:173:84",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1648:20:84",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1658:10:84",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1652:2:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1677:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "1692:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1695:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "1688:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1688:10:84"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1681:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1707:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "1722:1:84"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1725:2:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "1718:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1718:10:84"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1711:3:84",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1753:22:84",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "1755:16:84"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1755:18:84"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1755:18:84"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1743:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1748:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1740:2:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1740:12:84"
                              },
                              "nodeType": "YulIf",
                              "src": "1737:2:84"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1784:21:84",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1796:3:84"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1801:3:84"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1792:3:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1792:13:84"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "1784:4:84"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "1620:1:84",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "1623:1:84",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "1629:4:84",
                            "type": ""
                          }
                        ],
                        "src": "1590:221:84"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1848:152:84",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1865:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1868:77:84",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1858:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1858:88:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1858:88:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1962:1:84",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1965:4:84",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1955:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1955:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1955:15:84"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1986:1:84",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1989:4:84",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "1979:6:84"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1979:15:84"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1979:15:84"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "1816:184:84"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := calldataload(headStart)\n        value1 := calldataload(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_uint32t_uint32t_uint32(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_uint32(headStart)\n        value1 := abi_decode_uint32(add(headStart, 32))\n        value2 := abi_decode_uint32(add(headStart, 64))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function checked_add_t_uint40(x, y) -> sum\n    {\n        let _1 := 0xffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n}",
                  "id": 84,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100415760003560e01c80631d8367f4146100465780634fd7cca31461006e578063f48e6b7514610081575b600080fd5b6100596100543660046103b4565b6100a9565b60405190151581526020015b60405180910390f35b61005961007c3660046103b4565b6100cb565b61009461008f366004610388565b6100e3565b60405163ffffffff9091168152602001610065565b60006100c163ffffffff80861690859085906100fb16565b90505b9392505050565b60006100c163ffffffff80861690859085906101ca16565b60006100c163ffffffff808616908590859061029b16565b60008163ffffffff168463ffffffff161115801561012557508163ffffffff168363ffffffff1611155b15610140578263ffffffff168463ffffffff161090506100c4565b60008263ffffffff168563ffffffff161161016f5761016a63ffffffff86166401000000006103f7565b610177565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116101af576101aa63ffffffff86166401000000006103f7565b6101b7565b8463ffffffff165b64ffffffffff1690911095945050505050565b60008163ffffffff168463ffffffff16111580156101f457508163ffffffff168363ffffffff1611155b15610210578263ffffffff168463ffffffff16111590506100c4565b60008263ffffffff168563ffffffff161161023f5761023a63ffffffff86166401000000006103f7565b610247565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff161161027f5761027a63ffffffff86166401000000006103f7565b610287565b8463ffffffff165b64ffffffffff169091111595945050505050565b60008163ffffffff168463ffffffff16111580156102c557508163ffffffff168363ffffffff1611155b156102db576102d48385610437565b90506100c4565b60008263ffffffff168563ffffffff161161030a5761030563ffffffff86166401000000006103f7565b610312565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff161161034a5761034563ffffffff86166401000000006103f7565b610352565b8463ffffffff165b64ffffffffff1690506103658183610420565b9695505050505050565b803563ffffffff8116811461038357600080fd5b919050565b60008060006060848603121561039d57600080fd5b505081359360208301359350604090920135919050565b6000806000606084860312156103c957600080fd5b6103d28461036f565b92506103e06020850161036f565b91506103ee6040850161036f565b90509250925092565b600064ffffffffff8083168185168083038211156104175761041761045c565b01949350505050565b6000828210156104325761043261045c565b500390565b600063ffffffff838116908316818110156104545761045461045c565b039392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220c63831d8e3d0e6adf874a4258989f99e7742cf93b872b94239618f8e4d77b51964736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1D8367F4 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x4FD7CCA3 EQ PUSH2 0x6E JUMPI DUP1 PUSH4 0xF48E6B75 EQ PUSH2 0x81 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59 PUSH2 0x54 CALLDATASIZE PUSH1 0x4 PUSH2 0x3B4 JUMP JUMPDEST PUSH2 0xA9 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x59 PUSH2 0x7C CALLDATASIZE PUSH1 0x4 PUSH2 0x3B4 JUMP JUMPDEST PUSH2 0xCB JUMP JUMPDEST PUSH2 0x94 PUSH2 0x8F CALLDATASIZE PUSH1 0x4 PUSH2 0x388 JUMP JUMPDEST PUSH2 0xE3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x65 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC1 PUSH4 0xFFFFFFFF DUP1 DUP7 AND SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH2 0xFB AND JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC1 PUSH4 0xFFFFFFFF DUP1 DUP7 AND SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH2 0x1CA AND JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC1 PUSH4 0xFFFFFFFF DUP1 DUP7 AND SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH2 0x29B AND JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x125 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x140 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND LT SWAP1 POP PUSH2 0xC4 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x16F JUMPI PUSH2 0x16A PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3F7 JUMP JUMPDEST PUSH2 0x177 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1AF JUMPI PUSH2 0x1AA PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3F7 JUMP JUMPDEST PUSH2 0x1B7 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 LT SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x1F4 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x210 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0xC4 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x23F JUMPI PUSH2 0x23A PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3F7 JUMP JUMPDEST PUSH2 0x247 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x27F JUMPI PUSH2 0x27A PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3F7 JUMP JUMPDEST PUSH2 0x287 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x2C5 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x2DB JUMPI PUSH2 0x2D4 DUP4 DUP6 PUSH2 0x437 JUMP JUMPDEST SWAP1 POP PUSH2 0xC4 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x30A JUMPI PUSH2 0x305 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3F7 JUMP JUMPDEST PUSH2 0x312 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x34A JUMPI PUSH2 0x345 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3F7 JUMP JUMPDEST PUSH2 0x352 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH2 0x365 DUP2 DUP4 PUSH2 0x420 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x383 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x39D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP POP DUP2 CALLDATALOAD SWAP4 PUSH1 0x20 DUP4 ADD CALLDATALOAD SWAP4 POP PUSH1 0x40 SWAP1 SWAP3 ADD CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3D2 DUP5 PUSH2 0x36F JUMP JUMPDEST SWAP3 POP PUSH2 0x3E0 PUSH1 0x20 DUP6 ADD PUSH2 0x36F JUMP JUMPDEST SWAP2 POP PUSH2 0x3EE PUSH1 0x40 DUP6 ADD PUSH2 0x36F JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x417 JUMPI PUSH2 0x417 PUSH2 0x45C JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x432 JUMPI PUSH2 0x432 PUSH2 0x45C JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x454 JUMPI PUSH2 0x454 PUSH2 0x45C JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC6 CODESIZE BALANCE 0xD8 0xE3 0xD0 0xE6 0xAD 0xF8 PUSH21 0xA4258989F99E7742CF93B872B94239618F8E4D77B5 NOT PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "118:643:83:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215:164;;;;;;:::i;:::-;;:::i;:::-;;;1001:14:84;;994:22;976:41;;964:2;949:18;215:164:83;;;;;;;;385:166;;;;;;:::i;:::-;;:::i;557:202::-;;;;;;:::i;:::-;;:::i;:::-;;;1202:10:84;1190:23;;;1172:42;;1160:2;1145:18;557:202:83;1127:93:84;215:164:83;328:4;351:21;:5;;;;;357:2;;361:10;;351:5;:21;:::i;:::-;344:28;;215:164;;;;;;:::o;385:166::-;499:4;522:22;:6;;;;;529:2;;533:10;;522:6;:22;:::i;557:202::-;674:6;699:53;:21;;;;;728:2;;740:10;;699:21;:53;:::i;811:413:55:-;917:4;1005:10;999:16;;:2;:16;;;;:36;;;;;1025:10;1019:16;;:2;:16;;;;999:36;995:56;;;1049:2;1044:7;;:2;:7;;;1037:14;;;;995:56;1062:17;1087:10;1082:15;;:2;:15;;;:33;;1105:10;;;;1110:5;1105:10;:::i;:::-;1082:33;;;1100:2;1082:33;;;1062:53;;;;1125:17;1150:10;1145:15;;:2;:15;;;:33;;1168:10;;;;1173:5;1168:10;:::i;:::-;1145:33;;;1163:2;1145:33;;;1125:53;;1196:21;;;;811:413;-1:-1:-1;;;;;811:413:55:o;1658:417::-;1765:4;1854:10;1848:16;;:2;:16;;;;:36;;;;;1874:10;1868:16;;:2;:16;;;;1848:36;1844:57;;;1899:2;1893:8;;:2;:8;;;;1886:15;;;;1844:57;1912:17;1937:10;1932:15;;:2;:15;;;:33;;1955:10;;;;1960:5;1955:10;:::i;:::-;1932:33;;;1950:2;1932:33;;;1912:53;;;;1975:17;2000:10;1995:15;;:2;:15;;;:33;;2018:10;;;;2023:5;2018:10;:::i;:::-;1995:33;;;2013:2;1995:33;;;1975:53;;2046:22;;;;;1658:417;-1:-1:-1;;;;;1658:417:55:o;2486:432::-;2600:6;2691:10;2685:16;;:2;:16;;;;:36;;;;;2711:10;2705:16;;:2;:16;;;;2685:36;2681:56;;;2730:7;2735:2;2730;:7;:::i;:::-;2723:14;;;;2681:56;2748:17;2773:10;2768:15;;:2;:15;;;:33;;2791:10;;;;2796:5;2791:10;:::i;:::-;2768:33;;;2786:2;2768:33;;;2748:53;;;;2811:17;2836:10;2831:15;;:2;:15;;;:33;;2854:10;;;;2859:5;2854:10;:::i;:::-;2831:33;;;2849:2;2831:33;;;2811:53;;;-1:-1:-1;2889:21:55;2811:53;2889:9;:21;:::i;:::-;2875:36;2486:432;-1:-1:-1;;;;;;2486:432:55:o;14:163:84:-;81:20;;141:10;130:22;;120:33;;110:2;;167:1;164;157:12;110:2;62:115;;;:::o;182:316::-;259:6;267;275;328:2;316:9;307:7;303:23;299:32;296:2;;;344:1;341;334:12;296:2;-1:-1:-1;;367:23:84;;;437:2;422:18;;409:32;;-1:-1:-1;488:2:84;473:18;;;460:32;;286:212;-1:-1:-1;286:212:84:o;503:328::-;577:6;585;593;646:2;634:9;625:7;621:23;617:32;614:2;;;662:1;659;652:12;614:2;685:28;703:9;685:28;:::i;:::-;675:38;;732:37;765:2;754:9;750:18;732:37;:::i;:::-;722:47;;788:37;821:2;810:9;806:18;788:37;:::i;:::-;778:47;;604:227;;;;;:::o;1225:230::-;1264:3;1292:12;1331:2;1328:1;1324:10;1361:2;1358:1;1354:10;1392:3;1388:2;1384:12;1379:3;1376:21;1373:2;;;1400:18;;:::i;:::-;1436:13;;1272:183;-1:-1:-1;;;;1272:183:84:o;1460:125::-;1500:4;1528:1;1525;1522:8;1519:2;;;1533:18;;:::i;:::-;-1:-1:-1;1570:9:84;;1509:76::o;1590:221::-;1629:4;1658:10;1718;;;;1688;;1740:12;;;1737:2;;;1755:18;;:::i;:::-;1792:13;;1638:173;-1:-1:-1;;;1638:173:84:o;1816:184::-;1868:77;1865:1;1858:88;1965:4;1962:1;1955:15;1989:4;1986:1;1979:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "243400",
                "executionCost": "287",
                "totalCost": "243687"
              },
              "external": {
                "checkedSub(uint256,uint256,uint256)": "infinite",
                "ltHarness(uint32,uint32,uint32)": "infinite",
                "lteHarness(uint32,uint32,uint32)": "infinite"
              }
            },
            "methodIdentifiers": {
              "checkedSub(uint256,uint256,uint256)": "f48e6b75",
              "ltHarness(uint32,uint32,uint32)": "1d8367f4",
              "lteHarness(uint32,uint32,uint32)": "4fd7cca3"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_a\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_b\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_timestamp\",\"type\":\"uint256\"}],\"name\":\"checkedSub\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_a\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"_b\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"_timestamp\",\"type\":\"uint32\"}],\"name\":\"ltHarness\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_a\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"_b\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"_timestamp\",\"type\":\"uint32\"}],\"name\":\"lteHarness\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/libraries/OverflowSafeComparatorLibHarness.sol\":\"OverflowSafeComparatorLibHarness\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"contracts/test/libraries/OverflowSafeComparatorLibHarness.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../../libraries/OverflowSafeComparatorLib.sol\\\";\\n\\ncontract OverflowSafeComparatorLibHarness {\\n    using OverflowSafeComparatorLib for uint32;\\n\\n    function ltHarness(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) external pure returns (bool) {\\n        return _a.lt(_b, _timestamp);\\n    }\\n\\n    function lteHarness(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) external pure returns (bool) {\\n        return _a.lte(_b, _timestamp);\\n    }\\n\\n    function checkedSub(\\n        uint256 _a,\\n        uint256 _b,\\n        uint256 _timestamp\\n    ) external pure returns (uint32) {\\n        return uint32(_a).checkedSub(uint32(_b), uint32(_timestamp));\\n    }\\n}\\n\",\"keccak256\":\"0xadc45ee4d020f11bff6a5dc0fc36093fe376689ac052dad7dd268d948306d749\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      }
    },
    "sources": {
      "@openzeppelin/contracts/security/ReentrancyGuard.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/security/ReentrancyGuard.sol",
          "exportedSymbols": {
            "ReentrancyGuard": [
              39
            ]
          },
          "id": 40,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:0"
            },
            {
              "abstract": true,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 2,
                "nodeType": "StructuredDocumentation",
                "src": "58:750:0",
                "text": " @dev Contract module that helps prevent reentrant calls to a function.\n Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n available, which can be applied to functions to make sure there are no nested\n (reentrant) calls to them.\n Note that because there is a single `nonReentrant` guard, functions marked as\n `nonReentrant` may not call one another. This can be worked around by making\n those functions `private`, and then adding `external` `nonReentrant` entry\n points to them.\n TIP: If you would like to learn more about reentrancy and alternative ways\n to protect against it, check out our blog post\n https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]."
              },
              "fullyImplemented": true,
              "id": 39,
              "linearizedBaseContracts": [
                39
              ],
              "name": "ReentrancyGuard",
              "nameLocation": "827:15:0",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": true,
                  "id": 5,
                  "mutability": "constant",
                  "name": "_NOT_ENTERED",
                  "nameLocation": "1622:12:0",
                  "nodeType": "VariableDeclaration",
                  "scope": 39,
                  "src": "1597:41:0",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 3,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1597:7:0",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": {
                    "hexValue": "31",
                    "id": 4,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1637:1:0",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_1_by_1",
                      "typeString": "int_const 1"
                    },
                    "value": "1"
                  },
                  "visibility": "private"
                },
                {
                  "constant": true,
                  "id": 8,
                  "mutability": "constant",
                  "name": "_ENTERED",
                  "nameLocation": "1669:8:0",
                  "nodeType": "VariableDeclaration",
                  "scope": 39,
                  "src": "1644:37:0",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 6,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1644:7:0",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": {
                    "hexValue": "32",
                    "id": 7,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1680:1:0",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_2_by_1",
                      "typeString": "int_const 2"
                    },
                    "value": "2"
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 10,
                  "mutability": "mutable",
                  "name": "_status",
                  "nameLocation": "1704:7:0",
                  "nodeType": "VariableDeclaration",
                  "scope": 39,
                  "src": "1688:23:0",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 9,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1688:7:0",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 17,
                    "nodeType": "Block",
                    "src": "1732:39:0",
                    "statements": [
                      {
                        "expression": {
                          "id": 15,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 13,
                            "name": "_status",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10,
                            "src": "1742:7:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14,
                            "name": "_NOT_ENTERED",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5,
                            "src": "1752:12:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1742:22:0",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 16,
                        "nodeType": "ExpressionStatement",
                        "src": "1742:22:0"
                      }
                    ]
                  },
                  "id": 18,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1729:2:0"
                  },
                  "returnParameters": {
                    "id": 12,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1732:0:0"
                  },
                  "scope": 39,
                  "src": "1718:53:0",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 37,
                    "nodeType": "Block",
                    "src": "2170:421:0",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 24,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 22,
                                "name": "_status",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10,
                                "src": "2259:7:0",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "id": 23,
                                "name": "_ENTERED",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8,
                                "src": "2270:8:0",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2259:19:0",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5265656e7472616e637947756172643a207265656e7472616e742063616c6c",
                              "id": 25,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2280:33:0",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619",
                                "typeString": "literal_string \"ReentrancyGuard: reentrant call\""
                              },
                              "value": "ReentrancyGuard: reentrant call"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619",
                                "typeString": "literal_string \"ReentrancyGuard: reentrant call\""
                              }
                            ],
                            "id": 21,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2251:7:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 26,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2251:63:0",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 27,
                        "nodeType": "ExpressionStatement",
                        "src": "2251:63:0"
                      },
                      {
                        "expression": {
                          "id": 30,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 28,
                            "name": "_status",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10,
                            "src": "2389:7:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 29,
                            "name": "_ENTERED",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8,
                            "src": "2399:8:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2389:18:0",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 31,
                        "nodeType": "ExpressionStatement",
                        "src": "2389:18:0"
                      },
                      {
                        "id": 32,
                        "nodeType": "PlaceholderStatement",
                        "src": "2418:1:0"
                      },
                      {
                        "expression": {
                          "id": 35,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 33,
                            "name": "_status",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10,
                            "src": "2562:7:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 34,
                            "name": "_NOT_ENTERED",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5,
                            "src": "2572:12:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2562:22:0",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 36,
                        "nodeType": "ExpressionStatement",
                        "src": "2562:22:0"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 19,
                    "nodeType": "StructuredDocumentation",
                    "src": "1777:364:0",
                    "text": " @dev Prevents a contract from calling itself, directly or indirectly.\n Calling a `nonReentrant` function from another `nonReentrant`\n function is not supported. It is possible to prevent this from happening\n by making the `nonReentrant` function external, and make it call a\n `private` function that does the actual work."
                  },
                  "id": 38,
                  "name": "nonReentrant",
                  "nameLocation": "2155:12:0",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 20,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2167:2:0"
                  },
                  "src": "2146:445:0",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 40,
              "src": "809:1784:0",
              "usedErrors": []
            }
          ],
          "src": "33:2561:0"
        },
        "id": 0
      },
      "@openzeppelin/contracts/token/ERC20/ERC20.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/ERC20.sol",
          "exportedSymbols": {
            "Context": [
              2413
            ],
            "ERC20": [
              585
            ],
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ]
          },
          "id": 586,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 41,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:1"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "./IERC20.sol",
              "id": 42,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 586,
              "sourceUnit": 664,
              "src": "58:22:1",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol",
              "file": "./extensions/IERC20Metadata.sol",
              "id": 43,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 586,
              "sourceUnit": 689,
              "src": "81:41:1",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Context.sol",
              "file": "../../utils/Context.sol",
              "id": 44,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 586,
              "sourceUnit": 2414,
              "src": "123:33:1",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 46,
                    "name": "Context",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2413,
                    "src": "1349:7:1"
                  },
                  "id": 47,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1349:7:1"
                },
                {
                  "baseName": {
                    "id": 48,
                    "name": "IERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 663,
                    "src": "1358:6:1"
                  },
                  "id": 49,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1358:6:1"
                },
                {
                  "baseName": {
                    "id": 50,
                    "name": "IERC20Metadata",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 688,
                    "src": "1366:14:1"
                  },
                  "id": 51,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1366:14:1"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 45,
                "nodeType": "StructuredDocumentation",
                "src": "158:1172:1",
                "text": " @dev Implementation of the {IERC20} interface.\n This implementation is agnostic to the way tokens are created. This means\n that a supply mechanism has to be added in a derived contract using {_mint}.\n For a generic mechanism see {ERC20PresetMinterPauser}.\n TIP: For a detailed writeup see our guide\n https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\n to implement supply mechanisms].\n We have followed general OpenZeppelin Contracts guidelines: functions revert\n instead returning `false` on failure. This behavior is nonetheless\n conventional and does not conflict with the expectations of ERC20\n applications.\n Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n This allows applications to reconstruct the allowance for all accounts just\n by listening to said events. Other implementations of the EIP may not emit\n these events, as it isn't required by the specification.\n Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n functions have been added to mitigate the well-known issues around setting\n allowances. See {IERC20-approve}."
              },
              "fullyImplemented": true,
              "id": 585,
              "linearizedBaseContracts": [
                585,
                688,
                663,
                2413
              ],
              "name": "ERC20",
              "nameLocation": "1340:5:1",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 55,
                  "mutability": "mutable",
                  "name": "_balances",
                  "nameLocation": "1423:9:1",
                  "nodeType": "VariableDeclaration",
                  "scope": 585,
                  "src": "1387:45:1",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                    "typeString": "mapping(address => uint256)"
                  },
                  "typeName": {
                    "id": 54,
                    "keyType": {
                      "id": 52,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1395:7:1",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1387:27:1",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                      "typeString": "mapping(address => uint256)"
                    },
                    "valueType": {
                      "id": 53,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "1406:7:1",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 61,
                  "mutability": "mutable",
                  "name": "_allowances",
                  "nameLocation": "1495:11:1",
                  "nodeType": "VariableDeclaration",
                  "scope": 585,
                  "src": "1439:67:1",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                    "typeString": "mapping(address => mapping(address => uint256))"
                  },
                  "typeName": {
                    "id": 60,
                    "keyType": {
                      "id": 56,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1447:7:1",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1439:47:1",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                      "typeString": "mapping(address => mapping(address => uint256))"
                    },
                    "valueType": {
                      "id": 59,
                      "keyType": {
                        "id": 57,
                        "name": "address",
                        "nodeType": "ElementaryTypeName",
                        "src": "1466:7:1",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        }
                      },
                      "nodeType": "Mapping",
                      "src": "1458:27:1",
                      "typeDescriptions": {
                        "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                        "typeString": "mapping(address => uint256)"
                      },
                      "valueType": {
                        "id": 58,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1477:7:1",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 63,
                  "mutability": "mutable",
                  "name": "_totalSupply",
                  "nameLocation": "1529:12:1",
                  "nodeType": "VariableDeclaration",
                  "scope": 585,
                  "src": "1513:28:1",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 62,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1513:7:1",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 65,
                  "mutability": "mutable",
                  "name": "_name",
                  "nameLocation": "1563:5:1",
                  "nodeType": "VariableDeclaration",
                  "scope": 585,
                  "src": "1548:20:1",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 64,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1548:6:1",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 67,
                  "mutability": "mutable",
                  "name": "_symbol",
                  "nameLocation": "1589:7:1",
                  "nodeType": "VariableDeclaration",
                  "scope": 585,
                  "src": "1574:22:1",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 66,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1574:6:1",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 83,
                    "nodeType": "Block",
                    "src": "1962:57:1",
                    "statements": [
                      {
                        "expression": {
                          "id": 77,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 75,
                            "name": "_name",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 65,
                            "src": "1972:5:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_storage",
                              "typeString": "string storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 76,
                            "name": "name_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 70,
                            "src": "1980:5:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "src": "1972:13:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "id": 78,
                        "nodeType": "ExpressionStatement",
                        "src": "1972:13:1"
                      },
                      {
                        "expression": {
                          "id": 81,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 79,
                            "name": "_symbol",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 67,
                            "src": "1995:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_storage",
                              "typeString": "string storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 80,
                            "name": "symbol_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 72,
                            "src": "2005:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "src": "1995:17:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "id": 82,
                        "nodeType": "ExpressionStatement",
                        "src": "1995:17:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 68,
                    "nodeType": "StructuredDocumentation",
                    "src": "1603:298:1",
                    "text": " @dev Sets the values for {name} and {symbol}.\n The default value of {decimals} is 18. To select a different value for\n {decimals} you should overload it.\n All two of these values are immutable: they can only be set once during\n construction."
                  },
                  "id": 84,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 73,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 70,
                        "mutability": "mutable",
                        "name": "name_",
                        "nameLocation": "1932:5:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 84,
                        "src": "1918:19:1",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 69,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1918:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 72,
                        "mutability": "mutable",
                        "name": "symbol_",
                        "nameLocation": "1953:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 84,
                        "src": "1939:21:1",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 71,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1939:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1917:44:1"
                  },
                  "returnParameters": {
                    "id": 74,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1962:0:1"
                  },
                  "scope": 585,
                  "src": "1906:113:1",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    675
                  ],
                  "body": {
                    "id": 93,
                    "nodeType": "Block",
                    "src": "2153:29:1",
                    "statements": [
                      {
                        "expression": {
                          "id": 91,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 65,
                          "src": "2170:5:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "functionReturnParameters": 90,
                        "id": 92,
                        "nodeType": "Return",
                        "src": "2163:12:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 85,
                    "nodeType": "StructuredDocumentation",
                    "src": "2025:54:1",
                    "text": " @dev Returns the name of the token."
                  },
                  "functionSelector": "06fdde03",
                  "id": 94,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "name",
                  "nameLocation": "2093:4:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 87,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2120:8:1"
                  },
                  "parameters": {
                    "id": 86,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2097:2:1"
                  },
                  "returnParameters": {
                    "id": 90,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 89,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 94,
                        "src": "2138:13:1",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 88,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2138:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2137:15:1"
                  },
                  "scope": 585,
                  "src": "2084:98:1",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    681
                  ],
                  "body": {
                    "id": 103,
                    "nodeType": "Block",
                    "src": "2366:31:1",
                    "statements": [
                      {
                        "expression": {
                          "id": 101,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 67,
                          "src": "2383:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "functionReturnParameters": 100,
                        "id": 102,
                        "nodeType": "Return",
                        "src": "2376:14:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 95,
                    "nodeType": "StructuredDocumentation",
                    "src": "2188:102:1",
                    "text": " @dev Returns the symbol of the token, usually a shorter version of the\n name."
                  },
                  "functionSelector": "95d89b41",
                  "id": 104,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "symbol",
                  "nameLocation": "2304:6:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 97,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2333:8:1"
                  },
                  "parameters": {
                    "id": 96,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2310:2:1"
                  },
                  "returnParameters": {
                    "id": 100,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 99,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 104,
                        "src": "2351:13:1",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 98,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2351:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2350:15:1"
                  },
                  "scope": 585,
                  "src": "2295:102:1",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    687
                  ],
                  "body": {
                    "id": 113,
                    "nodeType": "Block",
                    "src": "3086:26:1",
                    "statements": [
                      {
                        "expression": {
                          "hexValue": "3138",
                          "id": 111,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "3103:2:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_18_by_1",
                            "typeString": "int_const 18"
                          },
                          "value": "18"
                        },
                        "functionReturnParameters": 110,
                        "id": 112,
                        "nodeType": "Return",
                        "src": "3096:9:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 105,
                    "nodeType": "StructuredDocumentation",
                    "src": "2403:613:1",
                    "text": " @dev Returns the number of decimals used to get its user representation.\n For example, if `decimals` equals `2`, a balance of `505` tokens should\n be displayed to a user as `5.05` (`505 / 10 ** 2`).\n Tokens usually opt for a value of 18, imitating the relationship between\n Ether and Wei. This is the value {ERC20} uses, unless this function is\n overridden;\n NOTE: This information is only used for _display_ purposes: it in\n no way affects any of the arithmetic of the contract, including\n {IERC20-balanceOf} and {IERC20-transfer}."
                  },
                  "functionSelector": "313ce567",
                  "id": 114,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decimals",
                  "nameLocation": "3030:8:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 107,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3061:8:1"
                  },
                  "parameters": {
                    "id": 106,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3038:2:1"
                  },
                  "returnParameters": {
                    "id": 110,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 109,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 114,
                        "src": "3079:5:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 108,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3079:5:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3078:7:1"
                  },
                  "scope": 585,
                  "src": "3021:91:1",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    594
                  ],
                  "body": {
                    "id": 123,
                    "nodeType": "Block",
                    "src": "3242:36:1",
                    "statements": [
                      {
                        "expression": {
                          "id": 121,
                          "name": "_totalSupply",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 63,
                          "src": "3259:12:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 120,
                        "id": 122,
                        "nodeType": "Return",
                        "src": "3252:19:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 115,
                    "nodeType": "StructuredDocumentation",
                    "src": "3118:49:1",
                    "text": " @dev See {IERC20-totalSupply}."
                  },
                  "functionSelector": "18160ddd",
                  "id": 124,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "totalSupply",
                  "nameLocation": "3181:11:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 117,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3215:8:1"
                  },
                  "parameters": {
                    "id": 116,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3192:2:1"
                  },
                  "returnParameters": {
                    "id": 120,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 119,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 124,
                        "src": "3233:7:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 118,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3233:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3232:9:1"
                  },
                  "scope": 585,
                  "src": "3172:106:1",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    602
                  ],
                  "body": {
                    "id": 137,
                    "nodeType": "Block",
                    "src": "3419:42:1",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 133,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 55,
                            "src": "3436:9:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 135,
                          "indexExpression": {
                            "id": 134,
                            "name": "account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 127,
                            "src": "3446:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "3436:18:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 132,
                        "id": 136,
                        "nodeType": "Return",
                        "src": "3429:25:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 125,
                    "nodeType": "StructuredDocumentation",
                    "src": "3284:47:1",
                    "text": " @dev See {IERC20-balanceOf}."
                  },
                  "functionSelector": "70a08231",
                  "id": 138,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOf",
                  "nameLocation": "3345:9:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 129,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3392:8:1"
                  },
                  "parameters": {
                    "id": 128,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 127,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "3363:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 138,
                        "src": "3355:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 126,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3355:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3354:17:1"
                  },
                  "returnParameters": {
                    "id": 132,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 131,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 138,
                        "src": "3410:7:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 130,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3410:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3409:9:1"
                  },
                  "scope": 585,
                  "src": "3336:125:1",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    612
                  ],
                  "body": {
                    "id": 158,
                    "nodeType": "Block",
                    "src": "3756:80:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 150,
                                "name": "_msgSender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2403,
                                "src": "3776:10:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                  "typeString": "function () view returns (address)"
                                }
                              },
                              "id": 151,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3776:12:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 152,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 141,
                              "src": "3790:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 153,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 143,
                              "src": "3801:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 149,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 389,
                            "src": "3766:9:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 154,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3766:42:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 155,
                        "nodeType": "ExpressionStatement",
                        "src": "3766:42:1"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 156,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "3825:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 148,
                        "id": 157,
                        "nodeType": "Return",
                        "src": "3818:11:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 139,
                    "nodeType": "StructuredDocumentation",
                    "src": "3467:192:1",
                    "text": " @dev See {IERC20-transfer}.\n Requirements:\n - `recipient` cannot be the zero address.\n - the caller must have a balance of at least `amount`."
                  },
                  "functionSelector": "a9059cbb",
                  "id": 159,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transfer",
                  "nameLocation": "3673:8:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 145,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3732:8:1"
                  },
                  "parameters": {
                    "id": 144,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 141,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "3690:9:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 159,
                        "src": "3682:17:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 140,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3682:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 143,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "3709:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 159,
                        "src": "3701:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 142,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3701:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3681:35:1"
                  },
                  "returnParameters": {
                    "id": 148,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 147,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 159,
                        "src": "3750:4:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 146,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3750:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3749:6:1"
                  },
                  "scope": 585,
                  "src": "3664:172:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    622
                  ],
                  "body": {
                    "id": 176,
                    "nodeType": "Block",
                    "src": "3992:51:1",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 170,
                              "name": "_allowances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 61,
                              "src": "4009:11:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(address => uint256))"
                              }
                            },
                            "id": 172,
                            "indexExpression": {
                              "id": 171,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 162,
                              "src": "4021:5:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "4009:18:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 174,
                          "indexExpression": {
                            "id": 173,
                            "name": "spender",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 164,
                            "src": "4028:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "4009:27:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 169,
                        "id": 175,
                        "nodeType": "Return",
                        "src": "4002:34:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 160,
                    "nodeType": "StructuredDocumentation",
                    "src": "3842:47:1",
                    "text": " @dev See {IERC20-allowance}."
                  },
                  "functionSelector": "dd62ed3e",
                  "id": 177,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "allowance",
                  "nameLocation": "3903:9:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 166,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3965:8:1"
                  },
                  "parameters": {
                    "id": 165,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 162,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "3921:5:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 177,
                        "src": "3913:13:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 161,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3913:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 164,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "3936:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 177,
                        "src": "3928:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 163,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3928:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3912:32:1"
                  },
                  "returnParameters": {
                    "id": 169,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 168,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 177,
                        "src": "3983:7:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 167,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3983:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3982:9:1"
                  },
                  "scope": 585,
                  "src": "3894:149:1",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    632
                  ],
                  "body": {
                    "id": 197,
                    "nodeType": "Block",
                    "src": "4270:77:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 189,
                                "name": "_msgSender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2403,
                                "src": "4289:10:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                  "typeString": "function () view returns (address)"
                                }
                              },
                              "id": 190,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4289:12:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 191,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 180,
                              "src": "4303:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 192,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 182,
                              "src": "4312:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 188,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 562,
                            "src": "4280:8:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 193,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4280:39:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 194,
                        "nodeType": "ExpressionStatement",
                        "src": "4280:39:1"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 195,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "4336:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 187,
                        "id": 196,
                        "nodeType": "Return",
                        "src": "4329:11:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 178,
                    "nodeType": "StructuredDocumentation",
                    "src": "4049:127:1",
                    "text": " @dev See {IERC20-approve}.\n Requirements:\n - `spender` cannot be the zero address."
                  },
                  "functionSelector": "095ea7b3",
                  "id": 198,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "approve",
                  "nameLocation": "4190:7:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 184,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4246:8:1"
                  },
                  "parameters": {
                    "id": 183,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 180,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "4206:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 198,
                        "src": "4198:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 179,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4198:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 182,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "4223:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 198,
                        "src": "4215:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 181,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4215:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4197:33:1"
                  },
                  "returnParameters": {
                    "id": 187,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 186,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 198,
                        "src": "4264:4:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 185,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4264:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4263:6:1"
                  },
                  "scope": 585,
                  "src": "4181:166:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    644
                  ],
                  "body": {
                    "id": 245,
                    "nodeType": "Block",
                    "src": "4956:336:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 212,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 201,
                              "src": "4976:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 213,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 203,
                              "src": "4984:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 214,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 205,
                              "src": "4995:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 211,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 389,
                            "src": "4966:9:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 215,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4966:36:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 216,
                        "nodeType": "ExpressionStatement",
                        "src": "4966:36:1"
                      },
                      {
                        "assignments": [
                          218
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 218,
                            "mutability": "mutable",
                            "name": "currentAllowance",
                            "nameLocation": "5021:16:1",
                            "nodeType": "VariableDeclaration",
                            "scope": 245,
                            "src": "5013:24:1",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 217,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5013:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 225,
                        "initialValue": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 219,
                              "name": "_allowances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 61,
                              "src": "5040:11:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(address => uint256))"
                              }
                            },
                            "id": 221,
                            "indexExpression": {
                              "id": 220,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 201,
                              "src": "5052:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "5040:19:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 224,
                          "indexExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 222,
                              "name": "_msgSender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2403,
                              "src": "5060:10:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                "typeString": "function () view returns (address)"
                              }
                            },
                            "id": 223,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "5060:12:1",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "5040:33:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5013:60:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 229,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 227,
                                "name": "currentAllowance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 218,
                                "src": "5091:16:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 228,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 205,
                                "src": "5111:6:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "5091:26:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365",
                              "id": 230,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5119:42:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds allowance\""
                              },
                              "value": "ERC20: transfer amount exceeds allowance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds allowance\""
                              }
                            ],
                            "id": 226,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5083:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 231,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5083:79:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 232,
                        "nodeType": "ExpressionStatement",
                        "src": "5083:79:1"
                      },
                      {
                        "id": 242,
                        "nodeType": "UncheckedBlock",
                        "src": "5172:92:1",
                        "statements": [
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "id": 234,
                                  "name": "sender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 201,
                                  "src": "5205:6:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 235,
                                    "name": "_msgSender",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2403,
                                    "src": "5213:10:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                      "typeString": "function () view returns (address)"
                                    }
                                  },
                                  "id": 236,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "5213:12:1",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 239,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 237,
                                    "name": "currentAllowance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 218,
                                    "src": "5227:16:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "-",
                                  "rightExpression": {
                                    "id": 238,
                                    "name": "amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 205,
                                    "src": "5246:6:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "5227:25:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 233,
                                "name": "_approve",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 562,
                                "src": "5196:8:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                  "typeString": "function (address,address,uint256)"
                                }
                              },
                              "id": 240,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5196:57:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 241,
                            "nodeType": "ExpressionStatement",
                            "src": "5196:57:1"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 243,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "5281:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 210,
                        "id": 244,
                        "nodeType": "Return",
                        "src": "5274:11:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 199,
                    "nodeType": "StructuredDocumentation",
                    "src": "4353:456:1",
                    "text": " @dev See {IERC20-transferFrom}.\n Emits an {Approval} event indicating the updated allowance. This is not\n required by the EIP. See the note at the beginning of {ERC20}.\n Requirements:\n - `sender` and `recipient` cannot be the zero address.\n - `sender` must have a balance of at least `amount`.\n - the caller must have allowance for ``sender``'s tokens of at least\n `amount`."
                  },
                  "functionSelector": "23b872dd",
                  "id": 246,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferFrom",
                  "nameLocation": "4823:12:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 207,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4932:8:1"
                  },
                  "parameters": {
                    "id": 206,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 201,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "4853:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 246,
                        "src": "4845:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 200,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4845:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 203,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "4877:9:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 246,
                        "src": "4869:17:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 202,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4869:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 205,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "4904:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 246,
                        "src": "4896:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 204,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4896:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4835:81:1"
                  },
                  "returnParameters": {
                    "id": 210,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 209,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 246,
                        "src": "4950:4:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 208,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4950:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4949:6:1"
                  },
                  "scope": 585,
                  "src": "4814:478:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 272,
                    "nodeType": "Block",
                    "src": "5781:118:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 257,
                                "name": "_msgSender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2403,
                                "src": "5800:10:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                  "typeString": "function () view returns (address)"
                                }
                              },
                              "id": 258,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5800:12:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 259,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 249,
                              "src": "5814:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 267,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "baseExpression": {
                                  "baseExpression": {
                                    "id": 260,
                                    "name": "_allowances",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 61,
                                    "src": "5823:11:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                      "typeString": "mapping(address => mapping(address => uint256))"
                                    }
                                  },
                                  "id": 263,
                                  "indexExpression": {
                                    "arguments": [],
                                    "expression": {
                                      "argumentTypes": [],
                                      "id": 261,
                                      "name": "_msgSender",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2403,
                                      "src": "5835:10:1",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                        "typeString": "function () view returns (address)"
                                      }
                                    },
                                    "id": 262,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "5835:12:1",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "5823:25:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                    "typeString": "mapping(address => uint256)"
                                  }
                                },
                                "id": 265,
                                "indexExpression": {
                                  "id": 264,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 249,
                                  "src": "5849:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "5823:34:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "id": 266,
                                "name": "addedValue",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 251,
                                "src": "5860:10:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "5823:47:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 256,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 562,
                            "src": "5791:8:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 268,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5791:80:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 269,
                        "nodeType": "ExpressionStatement",
                        "src": "5791:80:1"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 270,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "5888:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 255,
                        "id": 271,
                        "nodeType": "Return",
                        "src": "5881:11:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 247,
                    "nodeType": "StructuredDocumentation",
                    "src": "5298:384:1",
                    "text": " @dev Atomically increases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address."
                  },
                  "functionSelector": "39509351",
                  "id": 273,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "increaseAllowance",
                  "nameLocation": "5696:17:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 252,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 249,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "5722:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 273,
                        "src": "5714:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 248,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5714:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 251,
                        "mutability": "mutable",
                        "name": "addedValue",
                        "nameLocation": "5739:10:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 273,
                        "src": "5731:18:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 250,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5731:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5713:37:1"
                  },
                  "returnParameters": {
                    "id": 255,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 254,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 273,
                        "src": "5775:4:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 253,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5775:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5774:6:1"
                  },
                  "scope": 585,
                  "src": "5687:212:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 311,
                    "nodeType": "Block",
                    "src": "6485:306:1",
                    "statements": [
                      {
                        "assignments": [
                          284
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 284,
                            "mutability": "mutable",
                            "name": "currentAllowance",
                            "nameLocation": "6503:16:1",
                            "nodeType": "VariableDeclaration",
                            "scope": 311,
                            "src": "6495:24:1",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 283,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "6495:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 291,
                        "initialValue": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 285,
                              "name": "_allowances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 61,
                              "src": "6522:11:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(address => uint256))"
                              }
                            },
                            "id": 288,
                            "indexExpression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 286,
                                "name": "_msgSender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2403,
                                "src": "6534:10:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                  "typeString": "function () view returns (address)"
                                }
                              },
                              "id": 287,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6534:12:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "6522:25:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 290,
                          "indexExpression": {
                            "id": 289,
                            "name": "spender",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 276,
                            "src": "6548:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "6522:34:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6495:61:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 295,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 293,
                                "name": "currentAllowance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 284,
                                "src": "6574:16:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 294,
                                "name": "subtractedValue",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 278,
                                "src": "6594:15:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "6574:35:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f",
                              "id": 296,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6611:39:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
                                "typeString": "literal_string \"ERC20: decreased allowance below zero\""
                              },
                              "value": "ERC20: decreased allowance below zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
                                "typeString": "literal_string \"ERC20: decreased allowance below zero\""
                              }
                            ],
                            "id": 292,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6566:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 297,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6566:85:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 298,
                        "nodeType": "ExpressionStatement",
                        "src": "6566:85:1"
                      },
                      {
                        "id": 308,
                        "nodeType": "UncheckedBlock",
                        "src": "6661:102:1",
                        "statements": [
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 300,
                                    "name": "_msgSender",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2403,
                                    "src": "6694:10:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                      "typeString": "function () view returns (address)"
                                    }
                                  },
                                  "id": 301,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "6694:12:1",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 302,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 276,
                                  "src": "6708:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 305,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 303,
                                    "name": "currentAllowance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 284,
                                    "src": "6717:16:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "-",
                                  "rightExpression": {
                                    "id": 304,
                                    "name": "subtractedValue",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 278,
                                    "src": "6736:15:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "6717:34:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 299,
                                "name": "_approve",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 562,
                                "src": "6685:8:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                  "typeString": "function (address,address,uint256)"
                                }
                              },
                              "id": 306,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6685:67:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 307,
                            "nodeType": "ExpressionStatement",
                            "src": "6685:67:1"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 309,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "6780:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 282,
                        "id": 310,
                        "nodeType": "Return",
                        "src": "6773:11:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 274,
                    "nodeType": "StructuredDocumentation",
                    "src": "5905:476:1",
                    "text": " @dev Atomically decreases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address.\n - `spender` must have allowance for the caller of at least\n `subtractedValue`."
                  },
                  "functionSelector": "a457c2d7",
                  "id": 312,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decreaseAllowance",
                  "nameLocation": "6395:17:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 279,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 276,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "6421:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 312,
                        "src": "6413:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 275,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6413:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 278,
                        "mutability": "mutable",
                        "name": "subtractedValue",
                        "nameLocation": "6438:15:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 312,
                        "src": "6430:23:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 277,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6430:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6412:42:1"
                  },
                  "returnParameters": {
                    "id": 282,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 281,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 312,
                        "src": "6479:4:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 280,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "6479:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6478:6:1"
                  },
                  "scope": 585,
                  "src": "6386:405:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 388,
                    "nodeType": "Block",
                    "src": "7382:596:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 328,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 323,
                                "name": "sender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 315,
                                "src": "7400:6:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 326,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "7418:1:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 325,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "7410:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 324,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7410:7:1",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 327,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7410:10:1",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "7400:20:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373",
                              "id": 329,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7422:39:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
                                "typeString": "literal_string \"ERC20: transfer from the zero address\""
                              },
                              "value": "ERC20: transfer from the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
                                "typeString": "literal_string \"ERC20: transfer from the zero address\""
                              }
                            ],
                            "id": 322,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7392:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 330,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7392:70:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 331,
                        "nodeType": "ExpressionStatement",
                        "src": "7392:70:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 338,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 333,
                                "name": "recipient",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 317,
                                "src": "7480:9:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 336,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "7501:1:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 335,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "7493:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 334,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7493:7:1",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 337,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7493:10:1",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "7480:23:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472657373",
                              "id": 339,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7505:37:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
                                "typeString": "literal_string \"ERC20: transfer to the zero address\""
                              },
                              "value": "ERC20: transfer to the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
                                "typeString": "literal_string \"ERC20: transfer to the zero address\""
                              }
                            ],
                            "id": 332,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7472:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 340,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7472:71:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 341,
                        "nodeType": "ExpressionStatement",
                        "src": "7472:71:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 343,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 315,
                              "src": "7575:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 344,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 317,
                              "src": "7583:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 345,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 319,
                              "src": "7594:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 342,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 573,
                            "src": "7554:20:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 346,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7554:47:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 347,
                        "nodeType": "ExpressionStatement",
                        "src": "7554:47:1"
                      },
                      {
                        "assignments": [
                          349
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 349,
                            "mutability": "mutable",
                            "name": "senderBalance",
                            "nameLocation": "7620:13:1",
                            "nodeType": "VariableDeclaration",
                            "scope": 388,
                            "src": "7612:21:1",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 348,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7612:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 353,
                        "initialValue": {
                          "baseExpression": {
                            "id": 350,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 55,
                            "src": "7636:9:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 352,
                          "indexExpression": {
                            "id": 351,
                            "name": "sender",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 315,
                            "src": "7646:6:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "7636:17:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7612:41:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 357,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 355,
                                "name": "senderBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 349,
                                "src": "7671:13:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 356,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 319,
                                "src": "7688:6:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7671:23:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365",
                              "id": 358,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7696:40:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds balance\""
                              },
                              "value": "ERC20: transfer amount exceeds balance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds balance\""
                              }
                            ],
                            "id": 354,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7663:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 359,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7663:74:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 360,
                        "nodeType": "ExpressionStatement",
                        "src": "7663:74:1"
                      },
                      {
                        "id": 369,
                        "nodeType": "UncheckedBlock",
                        "src": "7747:77:1",
                        "statements": [
                          {
                            "expression": {
                              "id": 367,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "baseExpression": {
                                  "id": 361,
                                  "name": "_balances",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 55,
                                  "src": "7771:9:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                    "typeString": "mapping(address => uint256)"
                                  }
                                },
                                "id": 363,
                                "indexExpression": {
                                  "id": 362,
                                  "name": "sender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 315,
                                  "src": "7781:6:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "nodeType": "IndexAccess",
                                "src": "7771:17:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 366,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 364,
                                  "name": "senderBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 349,
                                  "src": "7791:13:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 365,
                                  "name": "amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 319,
                                  "src": "7807:6:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "7791:22:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7771:42:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 368,
                            "nodeType": "ExpressionStatement",
                            "src": "7771:42:1"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "id": 374,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 370,
                              "name": "_balances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 55,
                              "src": "7833:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 372,
                            "indexExpression": {
                              "id": 371,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 317,
                              "src": "7843:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "7833:20:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 373,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 319,
                            "src": "7857:6:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "7833:30:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 375,
                        "nodeType": "ExpressionStatement",
                        "src": "7833:30:1"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 377,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 315,
                              "src": "7888:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 378,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 317,
                              "src": "7896:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 379,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 319,
                              "src": "7907:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 376,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 653,
                            "src": "7879:8:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 380,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7879:35:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 381,
                        "nodeType": "EmitStatement",
                        "src": "7874:40:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 383,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 315,
                              "src": "7945:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 384,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 317,
                              "src": "7953:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 385,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 319,
                              "src": "7964:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 382,
                            "name": "_afterTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 584,
                            "src": "7925:19:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 386,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7925:46:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 387,
                        "nodeType": "ExpressionStatement",
                        "src": "7925:46:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 313,
                    "nodeType": "StructuredDocumentation",
                    "src": "6797:463:1",
                    "text": " @dev Moves `amount` of tokens from `sender` to `recipient`.\n This internal function is equivalent to {transfer}, and can be used to\n e.g. implement automatic token fees, slashing mechanisms, etc.\n Emits a {Transfer} event.\n Requirements:\n - `sender` cannot be the zero address.\n - `recipient` cannot be the zero address.\n - `sender` must have a balance of at least `amount`."
                  },
                  "id": 389,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_transfer",
                  "nameLocation": "7274:9:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 320,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 315,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "7301:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 389,
                        "src": "7293:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 314,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7293:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 317,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "7325:9:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 389,
                        "src": "7317:17:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 316,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7317:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 319,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "7352:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 389,
                        "src": "7344:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 318,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7344:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7283:81:1"
                  },
                  "returnParameters": {
                    "id": 321,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7382:0:1"
                  },
                  "scope": 585,
                  "src": "7265:713:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 444,
                    "nodeType": "Block",
                    "src": "8319:324:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 403,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 398,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 392,
                                "src": "8337:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 401,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "8356:1:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 400,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "8348:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 399,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "8348:7:1",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 402,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "8348:10:1",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "8337:21:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                              "id": 404,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8360:33:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
                                "typeString": "literal_string \"ERC20: mint to the zero address\""
                              },
                              "value": "ERC20: mint to the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
                                "typeString": "literal_string \"ERC20: mint to the zero address\""
                              }
                            ],
                            "id": 397,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8329:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 405,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8329:65:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 406,
                        "nodeType": "ExpressionStatement",
                        "src": "8329:65:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 410,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8434:1:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 409,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8426:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 408,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8426:7:1",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 411,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8426:10:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 412,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 392,
                              "src": "8438:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 413,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 394,
                              "src": "8447:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 407,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 573,
                            "src": "8405:20:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 414,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8405:49:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 415,
                        "nodeType": "ExpressionStatement",
                        "src": "8405:49:1"
                      },
                      {
                        "expression": {
                          "id": 418,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 416,
                            "name": "_totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 63,
                            "src": "8465:12:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 417,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 394,
                            "src": "8481:6:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8465:22:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 419,
                        "nodeType": "ExpressionStatement",
                        "src": "8465:22:1"
                      },
                      {
                        "expression": {
                          "id": 424,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 420,
                              "name": "_balances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 55,
                              "src": "8497:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 422,
                            "indexExpression": {
                              "id": 421,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 392,
                              "src": "8507:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "8497:18:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 423,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 394,
                            "src": "8519:6:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8497:28:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 425,
                        "nodeType": "ExpressionStatement",
                        "src": "8497:28:1"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 429,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8557:1:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 428,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8549:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 427,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8549:7:1",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 430,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8549:10:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 431,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 392,
                              "src": "8561:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 432,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 394,
                              "src": "8570:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 426,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 653,
                            "src": "8540:8:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 433,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8540:37:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 434,
                        "nodeType": "EmitStatement",
                        "src": "8535:42:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 438,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8616:1:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 437,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8608:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 436,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8608:7:1",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 439,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8608:10:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 440,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 392,
                              "src": "8620:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 441,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 394,
                              "src": "8629:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 435,
                            "name": "_afterTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 584,
                            "src": "8588:19:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 442,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8588:48:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 443,
                        "nodeType": "ExpressionStatement",
                        "src": "8588:48:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 390,
                    "nodeType": "StructuredDocumentation",
                    "src": "7984:265:1",
                    "text": "@dev Creates `amount` tokens and assigns them to `account`, increasing\n the total supply.\n Emits a {Transfer} event with `from` set to the zero address.\n Requirements:\n - `account` cannot be the zero address."
                  },
                  "id": 445,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_mint",
                  "nameLocation": "8263:5:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 395,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 392,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "8277:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 445,
                        "src": "8269:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 391,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8269:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 394,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "8294:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 445,
                        "src": "8286:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 393,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8286:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8268:33:1"
                  },
                  "returnParameters": {
                    "id": 396,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8319:0:1"
                  },
                  "scope": 585,
                  "src": "8254:389:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 516,
                    "nodeType": "Block",
                    "src": "9028:511:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 459,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 454,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 448,
                                "src": "9046:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 457,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9065:1:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 456,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9057:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 455,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9057:7:1",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 458,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9057:10:1",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "9046:21:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f2061646472657373",
                              "id": 460,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9069:35:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
                                "typeString": "literal_string \"ERC20: burn from the zero address\""
                              },
                              "value": "ERC20: burn from the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
                                "typeString": "literal_string \"ERC20: burn from the zero address\""
                              }
                            ],
                            "id": 453,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9038:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 461,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9038:67:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 462,
                        "nodeType": "ExpressionStatement",
                        "src": "9038:67:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 464,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 448,
                              "src": "9137:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 467,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9154:1:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 466,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9146:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 465,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9146:7:1",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 468,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9146:10:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 469,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 450,
                              "src": "9158:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 463,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 573,
                            "src": "9116:20:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 470,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9116:49:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 471,
                        "nodeType": "ExpressionStatement",
                        "src": "9116:49:1"
                      },
                      {
                        "assignments": [
                          473
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 473,
                            "mutability": "mutable",
                            "name": "accountBalance",
                            "nameLocation": "9184:14:1",
                            "nodeType": "VariableDeclaration",
                            "scope": 516,
                            "src": "9176:22:1",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 472,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "9176:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 477,
                        "initialValue": {
                          "baseExpression": {
                            "id": 474,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 55,
                            "src": "9201:9:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 476,
                          "indexExpression": {
                            "id": 475,
                            "name": "account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 448,
                            "src": "9211:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "9201:18:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9176:43:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 481,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 479,
                                "name": "accountBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 473,
                                "src": "9237:14:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 480,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 450,
                                "src": "9255:6:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "9237:24:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365",
                              "id": 482,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9263:36:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
                                "typeString": "literal_string \"ERC20: burn amount exceeds balance\""
                              },
                              "value": "ERC20: burn amount exceeds balance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
                                "typeString": "literal_string \"ERC20: burn amount exceeds balance\""
                              }
                            ],
                            "id": 478,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9229:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 483,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9229:71:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 484,
                        "nodeType": "ExpressionStatement",
                        "src": "9229:71:1"
                      },
                      {
                        "id": 493,
                        "nodeType": "UncheckedBlock",
                        "src": "9310:79:1",
                        "statements": [
                          {
                            "expression": {
                              "id": 491,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "baseExpression": {
                                  "id": 485,
                                  "name": "_balances",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 55,
                                  "src": "9334:9:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                    "typeString": "mapping(address => uint256)"
                                  }
                                },
                                "id": 487,
                                "indexExpression": {
                                  "id": 486,
                                  "name": "account",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 448,
                                  "src": "9344:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "nodeType": "IndexAccess",
                                "src": "9334:18:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 490,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 488,
                                  "name": "accountBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 473,
                                  "src": "9355:14:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 489,
                                  "name": "amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 450,
                                  "src": "9372:6:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "9355:23:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "9334:44:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 492,
                            "nodeType": "ExpressionStatement",
                            "src": "9334:44:1"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "id": 496,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 494,
                            "name": "_totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 63,
                            "src": "9398:12:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "-=",
                          "rightHandSide": {
                            "id": 495,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 450,
                            "src": "9414:6:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "9398:22:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 497,
                        "nodeType": "ExpressionStatement",
                        "src": "9398:22:1"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 499,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 448,
                              "src": "9445:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 502,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9462:1:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 501,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9454:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 500,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9454:7:1",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 503,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9454:10:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 504,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 450,
                              "src": "9466:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 498,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 653,
                            "src": "9436:8:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 505,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9436:37:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 506,
                        "nodeType": "EmitStatement",
                        "src": "9431:42:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 508,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 448,
                              "src": "9504:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 511,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9521:1:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 510,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9513:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 509,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9513:7:1",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 512,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9513:10:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 513,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 450,
                              "src": "9525:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 507,
                            "name": "_afterTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 584,
                            "src": "9484:19:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 514,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9484:48:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 515,
                        "nodeType": "ExpressionStatement",
                        "src": "9484:48:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 446,
                    "nodeType": "StructuredDocumentation",
                    "src": "8649:309:1",
                    "text": " @dev Destroys `amount` tokens from `account`, reducing the\n total supply.\n Emits a {Transfer} event with `to` set to the zero address.\n Requirements:\n - `account` cannot be the zero address.\n - `account` must have at least `amount` tokens."
                  },
                  "id": 517,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_burn",
                  "nameLocation": "8972:5:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 451,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 448,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "8986:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 517,
                        "src": "8978:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 447,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8978:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 450,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "9003:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 517,
                        "src": "8995:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 449,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8995:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8977:33:1"
                  },
                  "returnParameters": {
                    "id": 452,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9028:0:1"
                  },
                  "scope": 585,
                  "src": "8963:576:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 561,
                    "nodeType": "Block",
                    "src": "10075:257:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 533,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 528,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 520,
                                "src": "10093:5:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 531,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "10110:1:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 530,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10102:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 529,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10102:7:1",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 532,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10102:10:1",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "10093:19:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373",
                              "id": 534,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10114:38:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
                                "typeString": "literal_string \"ERC20: approve from the zero address\""
                              },
                              "value": "ERC20: approve from the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
                                "typeString": "literal_string \"ERC20: approve from the zero address\""
                              }
                            ],
                            "id": 527,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10085:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 535,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10085:68:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 536,
                        "nodeType": "ExpressionStatement",
                        "src": "10085:68:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 543,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 538,
                                "name": "spender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 522,
                                "src": "10171:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 541,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "10190:1:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 540,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10182:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 539,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10182:7:1",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 542,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10182:10:1",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "10171:21:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a20617070726f766520746f20746865207a65726f2061646472657373",
                              "id": 544,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10194:36:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
                                "typeString": "literal_string \"ERC20: approve to the zero address\""
                              },
                              "value": "ERC20: approve to the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
                                "typeString": "literal_string \"ERC20: approve to the zero address\""
                              }
                            ],
                            "id": 537,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10163:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 545,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10163:68:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 546,
                        "nodeType": "ExpressionStatement",
                        "src": "10163:68:1"
                      },
                      {
                        "expression": {
                          "id": 553,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "baseExpression": {
                                "id": 547,
                                "name": "_allowances",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 61,
                                "src": "10242:11:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                  "typeString": "mapping(address => mapping(address => uint256))"
                                }
                              },
                              "id": 550,
                              "indexExpression": {
                                "id": 548,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 520,
                                "src": "10254:5:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "10242:18:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 551,
                            "indexExpression": {
                              "id": 549,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 522,
                              "src": "10261:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "10242:27:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 552,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 524,
                            "src": "10272:6:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "10242:36:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 554,
                        "nodeType": "ExpressionStatement",
                        "src": "10242:36:1"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 556,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 520,
                              "src": "10302:5:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 557,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 522,
                              "src": "10309:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 558,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 524,
                              "src": "10318:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 555,
                            "name": "Approval",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 662,
                            "src": "10293:8:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 559,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10293:32:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 560,
                        "nodeType": "EmitStatement",
                        "src": "10288:37:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 518,
                    "nodeType": "StructuredDocumentation",
                    "src": "9545:412:1",
                    "text": " @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n This internal function is equivalent to `approve`, and can be used to\n e.g. set automatic allowances for certain subsystems, etc.\n Emits an {Approval} event.\n Requirements:\n - `owner` cannot be the zero address.\n - `spender` cannot be the zero address."
                  },
                  "id": 562,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_approve",
                  "nameLocation": "9971:8:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 525,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 520,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "9997:5:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 562,
                        "src": "9989:13:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 519,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9989:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 522,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "10020:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 562,
                        "src": "10012:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 521,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10012:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 524,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "10045:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 562,
                        "src": "10037:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 523,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10037:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9979:78:1"
                  },
                  "returnParameters": {
                    "id": 526,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10075:0:1"
                  },
                  "scope": 585,
                  "src": "9962:370:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 572,
                    "nodeType": "Block",
                    "src": "11035:2:1",
                    "statements": []
                  },
                  "documentation": {
                    "id": 563,
                    "nodeType": "StructuredDocumentation",
                    "src": "10338:573:1",
                    "text": " @dev Hook that is called before any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n will be transferred to `to`.\n - when `from` is zero, `amount` tokens will be minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."
                  },
                  "id": 573,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_beforeTokenTransfer",
                  "nameLocation": "10925:20:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 570,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 565,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "10963:4:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 573,
                        "src": "10955:12:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 564,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10955:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 567,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "10985:2:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 573,
                        "src": "10977:10:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 566,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10977:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 569,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "11005:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 573,
                        "src": "10997:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 568,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10997:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10945:72:1"
                  },
                  "returnParameters": {
                    "id": 571,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11035:0:1"
                  },
                  "scope": 585,
                  "src": "10916:121:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 583,
                    "nodeType": "Block",
                    "src": "11743:2:1",
                    "statements": []
                  },
                  "documentation": {
                    "id": 574,
                    "nodeType": "StructuredDocumentation",
                    "src": "11043:577:1",
                    "text": " @dev Hook that is called after any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n has been transferred to `to`.\n - when `from` is zero, `amount` tokens have been minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."
                  },
                  "id": 584,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_afterTokenTransfer",
                  "nameLocation": "11634:19:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 581,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 576,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "11671:4:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 584,
                        "src": "11663:12:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 575,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11663:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 578,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "11693:2:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 584,
                        "src": "11685:10:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 577,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11685:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 580,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "11713:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 584,
                        "src": "11705:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 579,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11705:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11653:72:1"
                  },
                  "returnParameters": {
                    "id": 582,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11743:0:1"
                  },
                  "scope": 585,
                  "src": "11625:120:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 586,
              "src": "1331:10416:1",
              "usedErrors": []
            }
          ],
          "src": "33:11715:1"
        },
        "id": 1
      },
      "@openzeppelin/contracts/token/ERC20/IERC20.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
          "exportedSymbols": {
            "IERC20": [
              663
            ]
          },
          "id": 664,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 587,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:2"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 588,
                "nodeType": "StructuredDocumentation",
                "src": "58:70:2",
                "text": " @dev Interface of the ERC20 standard as defined in the EIP."
              },
              "fullyImplemented": false,
              "id": 663,
              "linearizedBaseContracts": [
                663
              ],
              "name": "IERC20",
              "nameLocation": "139:6:2",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 589,
                    "nodeType": "StructuredDocumentation",
                    "src": "152:66:2",
                    "text": " @dev Returns the amount of tokens in existence."
                  },
                  "functionSelector": "18160ddd",
                  "id": 594,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "totalSupply",
                  "nameLocation": "232:11:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 590,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "243:2:2"
                  },
                  "returnParameters": {
                    "id": 593,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 592,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 594,
                        "src": "269:7:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 591,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "269:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "268:9:2"
                  },
                  "scope": 663,
                  "src": "223:55:2",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 595,
                    "nodeType": "StructuredDocumentation",
                    "src": "284:72:2",
                    "text": " @dev Returns the amount of tokens owned by `account`."
                  },
                  "functionSelector": "70a08231",
                  "id": 602,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOf",
                  "nameLocation": "370:9:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 598,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 597,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "388:7:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 602,
                        "src": "380:15:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 596,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "380:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "379:17:2"
                  },
                  "returnParameters": {
                    "id": 601,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 600,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 602,
                        "src": "420:7:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 599,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "420:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "419:9:2"
                  },
                  "scope": 663,
                  "src": "361:68:2",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 603,
                    "nodeType": "StructuredDocumentation",
                    "src": "435:209:2",
                    "text": " @dev Moves `amount` tokens from the caller's account to `recipient`.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."
                  },
                  "functionSelector": "a9059cbb",
                  "id": 612,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transfer",
                  "nameLocation": "658:8:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 608,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 605,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "675:9:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 612,
                        "src": "667:17:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 604,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "667:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 607,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "694:6:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 612,
                        "src": "686:14:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 606,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "686:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "666:35:2"
                  },
                  "returnParameters": {
                    "id": 611,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 610,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 612,
                        "src": "720:4:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 609,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "720:4:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "719:6:2"
                  },
                  "scope": 663,
                  "src": "649:77:2",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 613,
                    "nodeType": "StructuredDocumentation",
                    "src": "732:264:2",
                    "text": " @dev Returns the remaining number of tokens that `spender` will be\n allowed to spend on behalf of `owner` through {transferFrom}. This is\n zero by default.\n This value changes when {approve} or {transferFrom} are called."
                  },
                  "functionSelector": "dd62ed3e",
                  "id": 622,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "allowance",
                  "nameLocation": "1010:9:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 618,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 615,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1028:5:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 622,
                        "src": "1020:13:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 614,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1020:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 617,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1043:7:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 622,
                        "src": "1035:15:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 616,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1035:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1019:32:2"
                  },
                  "returnParameters": {
                    "id": 621,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 620,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 622,
                        "src": "1075:7:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 619,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1075:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1074:9:2"
                  },
                  "scope": 663,
                  "src": "1001:83:2",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 623,
                    "nodeType": "StructuredDocumentation",
                    "src": "1090:642:2",
                    "text": " @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\n IMPORTANT: Beware that changing an allowance with this method brings the risk\n that someone may use both the old and the new allowance by unfortunate\n transaction ordering. One possible solution to mitigate this race\n condition is to first reduce the spender's allowance to 0 and set the\n desired value afterwards:\n https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n Emits an {Approval} event."
                  },
                  "functionSelector": "095ea7b3",
                  "id": 632,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "approve",
                  "nameLocation": "1746:7:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 628,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 625,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1762:7:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 632,
                        "src": "1754:15:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 624,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1754:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 627,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1779:6:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 632,
                        "src": "1771:14:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 626,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1771:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1753:33:2"
                  },
                  "returnParameters": {
                    "id": 631,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 630,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 632,
                        "src": "1805:4:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 629,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1805:4:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1804:6:2"
                  },
                  "scope": 663,
                  "src": "1737:74:2",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 633,
                    "nodeType": "StructuredDocumentation",
                    "src": "1817:296:2",
                    "text": " @dev Moves `amount` tokens from `sender` to `recipient` using the\n allowance mechanism. `amount` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."
                  },
                  "functionSelector": "23b872dd",
                  "id": 644,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferFrom",
                  "nameLocation": "2127:12:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 640,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 635,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "2157:6:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 644,
                        "src": "2149:14:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 634,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2149:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 637,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "2181:9:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 644,
                        "src": "2173:17:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 636,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2173:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 639,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2208:6:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 644,
                        "src": "2200:14:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 638,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2200:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2139:81:2"
                  },
                  "returnParameters": {
                    "id": 643,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 642,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 644,
                        "src": "2239:4:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 641,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2239:4:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2238:6:2"
                  },
                  "scope": 663,
                  "src": "2118:127:2",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 645,
                    "nodeType": "StructuredDocumentation",
                    "src": "2251:158:2",
                    "text": " @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero."
                  },
                  "id": 653,
                  "name": "Transfer",
                  "nameLocation": "2420:8:2",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 652,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 647,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "2445:4:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 653,
                        "src": "2429:20:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 646,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2429:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 649,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2467:2:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 653,
                        "src": "2451:18:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 648,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2451:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 651,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2479:5:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 653,
                        "src": "2471:13:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 650,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2471:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2428:57:2"
                  },
                  "src": "2414:72:2"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 654,
                    "nodeType": "StructuredDocumentation",
                    "src": "2492:148:2",
                    "text": " @dev Emitted when the allowance of a `spender` for an `owner` is set by\n a call to {approve}. `value` is the new allowance."
                  },
                  "id": 662,
                  "name": "Approval",
                  "nameLocation": "2651:8:2",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 661,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 656,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "2676:5:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 662,
                        "src": "2660:21:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 655,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2660:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 658,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "2699:7:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 662,
                        "src": "2683:23:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 657,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2683:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 660,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2716:5:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 662,
                        "src": "2708:13:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 659,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2708:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2659:63:2"
                  },
                  "src": "2645:78:2"
                }
              ],
              "scope": 664,
              "src": "129:2596:2",
              "usedErrors": []
            }
          ],
          "src": "33:2693:2"
        },
        "id": 2
      },
      "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol",
          "exportedSymbols": {
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ]
          },
          "id": 689,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 665,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:3"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "../IERC20.sol",
              "id": 666,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 689,
              "sourceUnit": 664,
              "src": "58:23:3",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 668,
                    "name": "IERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 663,
                    "src": "228:6:3"
                  },
                  "id": 669,
                  "nodeType": "InheritanceSpecifier",
                  "src": "228:6:3"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 667,
                "nodeType": "StructuredDocumentation",
                "src": "83:116:3",
                "text": " @dev Interface for the optional metadata functions from the ERC20 standard.\n _Available since v4.1._"
              },
              "fullyImplemented": false,
              "id": 688,
              "linearizedBaseContracts": [
                688,
                663
              ],
              "name": "IERC20Metadata",
              "nameLocation": "210:14:3",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 670,
                    "nodeType": "StructuredDocumentation",
                    "src": "241:54:3",
                    "text": " @dev Returns the name of the token."
                  },
                  "functionSelector": "06fdde03",
                  "id": 675,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "name",
                  "nameLocation": "309:4:3",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 671,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "313:2:3"
                  },
                  "returnParameters": {
                    "id": 674,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 673,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 675,
                        "src": "339:13:3",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 672,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "339:6:3",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "338:15:3"
                  },
                  "scope": 688,
                  "src": "300:54:3",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 676,
                    "nodeType": "StructuredDocumentation",
                    "src": "360:56:3",
                    "text": " @dev Returns the symbol of the token."
                  },
                  "functionSelector": "95d89b41",
                  "id": 681,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "symbol",
                  "nameLocation": "430:6:3",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 677,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "436:2:3"
                  },
                  "returnParameters": {
                    "id": 680,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 679,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 681,
                        "src": "462:13:3",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 678,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "462:6:3",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "461:15:3"
                  },
                  "scope": 688,
                  "src": "421:56:3",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 682,
                    "nodeType": "StructuredDocumentation",
                    "src": "483:65:3",
                    "text": " @dev Returns the decimals places of the token."
                  },
                  "functionSelector": "313ce567",
                  "id": 687,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decimals",
                  "nameLocation": "562:8:3",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 683,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "570:2:3"
                  },
                  "returnParameters": {
                    "id": 686,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 685,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 687,
                        "src": "596:5:3",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 684,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "596:5:3",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "595:7:3"
                  },
                  "scope": 688,
                  "src": "553:50:3",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 689,
              "src": "200:405:3",
              "usedErrors": []
            }
          ],
          "src": "33:573:3"
        },
        "id": 3
      },
      "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol",
          "exportedSymbols": {
            "Context": [
              2413
            ],
            "Counters": [
              2487
            ],
            "ECDSA": [
              3057
            ],
            "EIP712": [
              3195
            ],
            "ERC20": [
              585
            ],
            "ERC20Permit": [
              857
            ],
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ],
            "IERC20Permit": [
              893
            ]
          },
          "id": 858,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 690,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:4"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol",
              "file": "./draft-IERC20Permit.sol",
              "id": 691,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 858,
              "sourceUnit": 894,
              "src": "58:34:4",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/ERC20.sol",
              "file": "../ERC20.sol",
              "id": 692,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 858,
              "sourceUnit": 586,
              "src": "93:22:4",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol",
              "file": "../../../utils/cryptography/draft-EIP712.sol",
              "id": 693,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 858,
              "sourceUnit": 3196,
              "src": "116:54:4",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/cryptography/ECDSA.sol",
              "file": "../../../utils/cryptography/ECDSA.sol",
              "id": 694,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 858,
              "sourceUnit": 3058,
              "src": "171:47:4",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Counters.sol",
              "file": "../../../utils/Counters.sol",
              "id": 695,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 858,
              "sourceUnit": 2488,
              "src": "219:37:4",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 697,
                    "name": "ERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 585,
                    "src": "809:5:4"
                  },
                  "id": 698,
                  "nodeType": "InheritanceSpecifier",
                  "src": "809:5:4"
                },
                {
                  "baseName": {
                    "id": 699,
                    "name": "IERC20Permit",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 893,
                    "src": "816:12:4"
                  },
                  "id": 700,
                  "nodeType": "InheritanceSpecifier",
                  "src": "816:12:4"
                },
                {
                  "baseName": {
                    "id": 701,
                    "name": "EIP712",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3195,
                    "src": "830:6:4"
                  },
                  "id": 702,
                  "nodeType": "InheritanceSpecifier",
                  "src": "830:6:4"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 696,
                "nodeType": "StructuredDocumentation",
                "src": "258:517:4",
                "text": " @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\n https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\n Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\n presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\n need to send a transaction, and thus is not required to hold Ether at all.\n _Available since v3.4._"
              },
              "fullyImplemented": false,
              "id": 857,
              "linearizedBaseContracts": [
                857,
                3195,
                893,
                585,
                688,
                663,
                2413
              ],
              "name": "ERC20Permit",
              "nameLocation": "794:11:4",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 706,
                  "libraryName": {
                    "id": 703,
                    "name": "Counters",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2487,
                    "src": "849:8:4"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "843:36:4",
                  "typeName": {
                    "id": 705,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 704,
                      "name": "Counters.Counter",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 2419,
                      "src": "862:16:4"
                    },
                    "referencedDeclaration": 2419,
                    "src": "862:16:4",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                      "typeString": "struct Counters.Counter"
                    }
                  }
                },
                {
                  "constant": false,
                  "id": 711,
                  "mutability": "mutable",
                  "name": "_nonces",
                  "nameLocation": "930:7:4",
                  "nodeType": "VariableDeclaration",
                  "scope": 857,
                  "src": "885:52:4",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Counter_$2419_storage_$",
                    "typeString": "mapping(address => struct Counters.Counter)"
                  },
                  "typeName": {
                    "id": 710,
                    "keyType": {
                      "id": 707,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "893:7:4",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "885:36:4",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Counter_$2419_storage_$",
                      "typeString": "mapping(address => struct Counters.Counter)"
                    },
                    "valueType": {
                      "id": 709,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 708,
                        "name": "Counters.Counter",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 2419,
                        "src": "904:16:4"
                      },
                      "referencedDeclaration": 2419,
                      "src": "904:16:4",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                        "typeString": "struct Counters.Counter"
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 716,
                  "mutability": "immutable",
                  "name": "_PERMIT_TYPEHASH",
                  "nameLocation": "1022:16:4",
                  "nodeType": "VariableDeclaration",
                  "scope": 857,
                  "src": "996:148:4",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 712,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "996:7:4",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": {
                    "arguments": [
                      {
                        "hexValue": "5065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529",
                        "id": 714,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "string",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "1059:84:4",
                        "typeDescriptions": {
                          "typeIdentifier": "t_stringliteral_6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9",
                          "typeString": "literal_string \"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\""
                        },
                        "value": "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_stringliteral_6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9",
                          "typeString": "literal_string \"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\""
                        }
                      ],
                      "id": 713,
                      "name": "keccak256",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": -8,
                      "src": "1049:9:4",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                        "typeString": "function (bytes memory) pure returns (bytes32)"
                      }
                    },
                    "id": 715,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "1049:95:4",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 726,
                    "nodeType": "Block",
                    "src": "1426:2:4",
                    "statements": []
                  },
                  "documentation": {
                    "id": 717,
                    "nodeType": "StructuredDocumentation",
                    "src": "1151:220:4",
                    "text": " @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`.\n It's a good idea to use the same `name` that is defined as the ERC20 token name."
                  },
                  "id": 727,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 722,
                          "name": "name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 719,
                          "src": "1415:4:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "hexValue": "31",
                          "id": 723,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "string",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1421:3:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6",
                            "typeString": "literal_string \"1\""
                          },
                          "value": "1"
                        }
                      ],
                      "id": 724,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 721,
                        "name": "EIP712",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3195,
                        "src": "1408:6:4"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1408:17:4"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 720,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 719,
                        "mutability": "mutable",
                        "name": "name",
                        "nameLocation": "1402:4:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 727,
                        "src": "1388:18:4",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 718,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1388:6:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1387:20:4"
                  },
                  "returnParameters": {
                    "id": 725,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1426:0:4"
                  },
                  "scope": 857,
                  "src": "1376:52:4",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    878
                  ],
                  "body": {
                    "id": 799,
                    "nodeType": "Block",
                    "src": "1687:428:4",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 750,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 747,
                                  "name": "block",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -4,
                                  "src": "1705:5:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_block",
                                    "typeString": "block"
                                  }
                                },
                                "id": 748,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "src": "1705:15:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 749,
                                "name": "deadline",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 736,
                                "src": "1724:8:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1705:27:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332305065726d69743a206578706972656420646561646c696e65",
                              "id": 751,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1734:31:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd",
                                "typeString": "literal_string \"ERC20Permit: expired deadline\""
                              },
                              "value": "ERC20Permit: expired deadline"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd",
                                "typeString": "literal_string \"ERC20Permit: expired deadline\""
                              }
                            ],
                            "id": 746,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1697:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 752,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1697:69:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 753,
                        "nodeType": "ExpressionStatement",
                        "src": "1697:69:4"
                      },
                      {
                        "assignments": [
                          755
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 755,
                            "mutability": "mutable",
                            "name": "structHash",
                            "nameLocation": "1785:10:4",
                            "nodeType": "VariableDeclaration",
                            "scope": 799,
                            "src": "1777:18:4",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 754,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "1777:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 769,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 759,
                                  "name": "_PERMIT_TYPEHASH",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 716,
                                  "src": "1819:16:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "id": 760,
                                  "name": "owner",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 730,
                                  "src": "1837:5:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 761,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 732,
                                  "src": "1844:7:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 762,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 734,
                                  "src": "1853:5:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                {
                                  "arguments": [
                                    {
                                      "id": 764,
                                      "name": "owner",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 730,
                                      "src": "1870:5:4",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    ],
                                    "id": 763,
                                    "name": "_useNonce",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 856,
                                    "src": "1860:9:4",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$",
                                      "typeString": "function (address) returns (uint256)"
                                    }
                                  },
                                  "id": 765,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1860:16:4",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                {
                                  "id": 766,
                                  "name": "deadline",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 736,
                                  "src": "1878:8:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "expression": {
                                  "id": 757,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "1808:3:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 758,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encode",
                                "nodeType": "MemberAccess",
                                "src": "1808:10:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 767,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1808:79:4",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 756,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "1798:9:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 768,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1798:90:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1777:111:4"
                      },
                      {
                        "assignments": [
                          771
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 771,
                            "mutability": "mutable",
                            "name": "hash",
                            "nameLocation": "1907:4:4",
                            "nodeType": "VariableDeclaration",
                            "scope": 799,
                            "src": "1899:12:4",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 770,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "1899:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 775,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 773,
                              "name": "structHash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 755,
                              "src": "1931:10:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 772,
                            "name": "_hashTypedDataV4",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3194,
                            "src": "1914:16:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$",
                              "typeString": "function (bytes32) view returns (bytes32)"
                            }
                          },
                          "id": 774,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1914:28:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1899:43:4"
                      },
                      {
                        "assignments": [
                          777
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 777,
                            "mutability": "mutable",
                            "name": "signer",
                            "nameLocation": "1961:6:4",
                            "nodeType": "VariableDeclaration",
                            "scope": 799,
                            "src": "1953:14:4",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 776,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "1953:7:4",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 785,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 780,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 771,
                              "src": "1984:4:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 781,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 738,
                              "src": "1990:1:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 782,
                              "name": "r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 740,
                              "src": "1993:1:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 783,
                              "name": "s",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 742,
                              "src": "1996:1:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "expression": {
                              "id": 778,
                              "name": "ECDSA",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3057,
                              "src": "1970:5:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ECDSA_$3057_$",
                                "typeString": "type(library ECDSA)"
                              }
                            },
                            "id": 779,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "recover",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3019,
                            "src": "1970:13:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$",
                              "typeString": "function (bytes32,uint8,bytes32,bytes32) pure returns (address)"
                            }
                          },
                          "id": 784,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1970:28:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1953:45:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 789,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 787,
                                "name": "signer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 777,
                                "src": "2016:6:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 788,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 730,
                                "src": "2026:5:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2016:15:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332305065726d69743a20696e76616c6964207369676e6174757265",
                              "id": 790,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2033:32:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124",
                                "typeString": "literal_string \"ERC20Permit: invalid signature\""
                              },
                              "value": "ERC20Permit: invalid signature"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124",
                                "typeString": "literal_string \"ERC20Permit: invalid signature\""
                              }
                            ],
                            "id": 786,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2008:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 791,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2008:58:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 792,
                        "nodeType": "ExpressionStatement",
                        "src": "2008:58:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 794,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 730,
                              "src": "2086:5:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 795,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 732,
                              "src": "2093:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 796,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 734,
                              "src": "2102:5:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 793,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 562,
                            "src": "2077:8:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 797,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2077:31:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 798,
                        "nodeType": "ExpressionStatement",
                        "src": "2077:31:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 728,
                    "nodeType": "StructuredDocumentation",
                    "src": "1434:50:4",
                    "text": " @dev See {IERC20Permit-permit}."
                  },
                  "functionSelector": "d505accf",
                  "id": 800,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "permit",
                  "nameLocation": "1498:6:4",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 744,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1678:8:4"
                  },
                  "parameters": {
                    "id": 743,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 730,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1522:5:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "1514:13:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 729,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1514:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 732,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1545:7:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "1537:15:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 731,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1537:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 734,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1570:5:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "1562:13:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 733,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1562:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 736,
                        "mutability": "mutable",
                        "name": "deadline",
                        "nameLocation": "1593:8:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "1585:16:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 735,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1585:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 738,
                        "mutability": "mutable",
                        "name": "v",
                        "nameLocation": "1617:1:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "1611:7:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 737,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1611:5:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 740,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "1636:1:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "1628:9:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 739,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1628:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 742,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "1655:1:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "1647:9:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 741,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1647:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1504:158:4"
                  },
                  "returnParameters": {
                    "id": 745,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1687:0:4"
                  },
                  "scope": 857,
                  "src": "1489:626:4",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    886
                  ],
                  "body": {
                    "id": 815,
                    "nodeType": "Block",
                    "src": "2254:48:4",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "baseExpression": {
                                "id": 809,
                                "name": "_nonces",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 711,
                                "src": "2271:7:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Counter_$2419_storage_$",
                                  "typeString": "mapping(address => struct Counters.Counter storage ref)"
                                }
                              },
                              "id": 811,
                              "indexExpression": {
                                "id": 810,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 803,
                                "src": "2279:5:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "2271:14:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Counter_$2419_storage",
                                "typeString": "struct Counters.Counter storage ref"
                              }
                            },
                            "id": 812,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "current",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 2431,
                            "src": "2271:22:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Counter_$2419_storage_ptr_$returns$_t_uint256_$bound_to$_t_struct$_Counter_$2419_storage_ptr_$",
                              "typeString": "function (struct Counters.Counter storage pointer) view returns (uint256)"
                            }
                          },
                          "id": 813,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2271:24:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 808,
                        "id": 814,
                        "nodeType": "Return",
                        "src": "2264:31:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 801,
                    "nodeType": "StructuredDocumentation",
                    "src": "2121:50:4",
                    "text": " @dev See {IERC20Permit-nonces}."
                  },
                  "functionSelector": "7ecebe00",
                  "id": 816,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "nonces",
                  "nameLocation": "2185:6:4",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 805,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2227:8:4"
                  },
                  "parameters": {
                    "id": 804,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 803,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "2200:5:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 816,
                        "src": "2192:13:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 802,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2192:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2191:15:4"
                  },
                  "returnParameters": {
                    "id": 808,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 807,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 816,
                        "src": "2245:7:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 806,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2245:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2244:9:4"
                  },
                  "scope": 857,
                  "src": "2176:126:4",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    892
                  ],
                  "body": {
                    "id": 826,
                    "nodeType": "Block",
                    "src": "2495:44:4",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 823,
                            "name": "_domainSeparatorV4",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3151,
                            "src": "2512:18:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_bytes32_$",
                              "typeString": "function () view returns (bytes32)"
                            }
                          },
                          "id": 824,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2512:20:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 822,
                        "id": 825,
                        "nodeType": "Return",
                        "src": "2505:27:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 817,
                    "nodeType": "StructuredDocumentation",
                    "src": "2308:60:4",
                    "text": " @dev See {IERC20Permit-DOMAIN_SEPARATOR}."
                  },
                  "functionSelector": "3644e515",
                  "id": 827,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "DOMAIN_SEPARATOR",
                  "nameLocation": "2435:16:4",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 819,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2468:8:4"
                  },
                  "parameters": {
                    "id": 818,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2451:2:4"
                  },
                  "returnParameters": {
                    "id": 822,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 821,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 827,
                        "src": "2486:7:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 820,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2486:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2485:9:4"
                  },
                  "scope": 857,
                  "src": "2426:113:4",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 855,
                    "nodeType": "Block",
                    "src": "2747:126:4",
                    "statements": [
                      {
                        "assignments": [
                          839
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 839,
                            "mutability": "mutable",
                            "name": "nonce",
                            "nameLocation": "2782:5:4",
                            "nodeType": "VariableDeclaration",
                            "scope": 855,
                            "src": "2757:30:4",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                              "typeString": "struct Counters.Counter"
                            },
                            "typeName": {
                              "id": 838,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 837,
                                "name": "Counters.Counter",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 2419,
                                "src": "2757:16:4"
                              },
                              "referencedDeclaration": 2419,
                              "src": "2757:16:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                                "typeString": "struct Counters.Counter"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 843,
                        "initialValue": {
                          "baseExpression": {
                            "id": 840,
                            "name": "_nonces",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 711,
                            "src": "2790:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Counter_$2419_storage_$",
                              "typeString": "mapping(address => struct Counters.Counter storage ref)"
                            }
                          },
                          "id": 842,
                          "indexExpression": {
                            "id": 841,
                            "name": "owner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 830,
                            "src": "2798:5:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "2790:14:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Counter_$2419_storage",
                            "typeString": "struct Counters.Counter storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2757:47:4"
                      },
                      {
                        "expression": {
                          "id": 848,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 844,
                            "name": "current",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 833,
                            "src": "2814:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "expression": {
                                "id": 845,
                                "name": "nonce",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 839,
                                "src": "2824:5:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                                  "typeString": "struct Counters.Counter storage pointer"
                                }
                              },
                              "id": 846,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "current",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 2431,
                              "src": "2824:13:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_struct$_Counter_$2419_storage_ptr_$returns$_t_uint256_$bound_to$_t_struct$_Counter_$2419_storage_ptr_$",
                                "typeString": "function (struct Counters.Counter storage pointer) view returns (uint256)"
                              }
                            },
                            "id": 847,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "2824:15:4",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2814:25:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 849,
                        "nodeType": "ExpressionStatement",
                        "src": "2814:25:4"
                      },
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 850,
                              "name": "nonce",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 839,
                              "src": "2849:5:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                                "typeString": "struct Counters.Counter storage pointer"
                              }
                            },
                            "id": 852,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "increment",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 2445,
                            "src": "2849:15:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Counter_$2419_storage_ptr_$returns$__$bound_to$_t_struct$_Counter_$2419_storage_ptr_$",
                              "typeString": "function (struct Counters.Counter storage pointer)"
                            }
                          },
                          "id": 853,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2849:17:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 854,
                        "nodeType": "ExpressionStatement",
                        "src": "2849:17:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 828,
                    "nodeType": "StructuredDocumentation",
                    "src": "2545:120:4",
                    "text": " @dev \"Consume a nonce\": return the current value and increment.\n _Available since v4.1._"
                  },
                  "id": 856,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_useNonce",
                  "nameLocation": "2679:9:4",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 831,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 830,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "2697:5:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 856,
                        "src": "2689:13:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 829,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2689:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2688:15:4"
                  },
                  "returnParameters": {
                    "id": 834,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 833,
                        "mutability": "mutable",
                        "name": "current",
                        "nameLocation": "2738:7:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 856,
                        "src": "2730:15:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 832,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2730:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2729:17:4"
                  },
                  "scope": 857,
                  "src": "2670:203:4",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 858,
              "src": "776:2099:4",
              "usedErrors": []
            }
          ],
          "src": "33:2843:4"
        },
        "id": 4
      },
      "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol",
          "exportedSymbols": {
            "IERC20Permit": [
              893
            ]
          },
          "id": 894,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 859,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:5"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 860,
                "nodeType": "StructuredDocumentation",
                "src": "58:480:5",
                "text": " @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\n https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\n Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\n presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n need to send a transaction, and thus is not required to hold Ether at all."
              },
              "fullyImplemented": false,
              "id": 893,
              "linearizedBaseContracts": [
                893
              ],
              "name": "IERC20Permit",
              "nameLocation": "549:12:5",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 861,
                    "nodeType": "StructuredDocumentation",
                    "src": "568:792:5",
                    "text": " @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n given ``owner``'s signed approval.\n IMPORTANT: The same issues {IERC20-approve} has related to transaction\n ordering also apply here.\n Emits an {Approval} event.\n Requirements:\n - `spender` cannot be the zero address.\n - `deadline` must be a timestamp in the future.\n - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n over the EIP712-formatted function arguments.\n - the signature must use ``owner``'s current nonce (see {nonces}).\n For more information on the signature format, see the\n https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n section]."
                  },
                  "functionSelector": "d505accf",
                  "id": 878,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "permit",
                  "nameLocation": "1374:6:5",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 876,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 863,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1398:5:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 878,
                        "src": "1390:13:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 862,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1390:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 865,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1421:7:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 878,
                        "src": "1413:15:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 864,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1413:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 867,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1446:5:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 878,
                        "src": "1438:13:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 866,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1438:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 869,
                        "mutability": "mutable",
                        "name": "deadline",
                        "nameLocation": "1469:8:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 878,
                        "src": "1461:16:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 868,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1461:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 871,
                        "mutability": "mutable",
                        "name": "v",
                        "nameLocation": "1493:1:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 878,
                        "src": "1487:7:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 870,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1487:5:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 873,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "1512:1:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 878,
                        "src": "1504:9:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 872,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1504:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 875,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "1531:1:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 878,
                        "src": "1523:9:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 874,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1523:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1380:158:5"
                  },
                  "returnParameters": {
                    "id": 877,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1547:0:5"
                  },
                  "scope": 893,
                  "src": "1365:183:5",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 879,
                    "nodeType": "StructuredDocumentation",
                    "src": "1554:294:5",
                    "text": " @dev Returns the current nonce for `owner`. This value must be\n included whenever a signature is generated for {permit}.\n Every successful call to {permit} increases ``owner``'s nonce by one. This\n prevents a signature from being used multiple times."
                  },
                  "functionSelector": "7ecebe00",
                  "id": 886,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "nonces",
                  "nameLocation": "1862:6:5",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 882,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 881,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1877:5:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 886,
                        "src": "1869:13:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 880,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1869:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1868:15:5"
                  },
                  "returnParameters": {
                    "id": 885,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 884,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 886,
                        "src": "1907:7:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 883,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1907:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1906:9:5"
                  },
                  "scope": 893,
                  "src": "1853:63:5",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 887,
                    "nodeType": "StructuredDocumentation",
                    "src": "1922:128:5",
                    "text": " @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}."
                  },
                  "functionSelector": "3644e515",
                  "id": 892,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "DOMAIN_SEPARATOR",
                  "nameLocation": "2117:16:5",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 888,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2133:2:5"
                  },
                  "returnParameters": {
                    "id": 891,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 890,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 892,
                        "src": "2159:7:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 889,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2159:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2158:9:5"
                  },
                  "scope": 893,
                  "src": "2108:60:5",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 894,
              "src": "539:1631:5",
              "usedErrors": []
            }
          ],
          "src": "33:2138:5"
        },
        "id": 5
      },
      "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "IERC20": [
              663
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 1118,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 895,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:6"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "../IERC20.sol",
              "id": 896,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1118,
              "sourceUnit": 664,
              "src": "58:23:6",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Address.sol",
              "file": "../../../utils/Address.sol",
              "id": 897,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1118,
              "sourceUnit": 2392,
              "src": "82:36:6",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 898,
                "nodeType": "StructuredDocumentation",
                "src": "120:457:6",
                "text": " @title SafeERC20\n @dev Wrappers around ERC20 operations that throw on failure (when the token\n contract returns false). Tokens that return no value (and instead revert or\n throw on failure) are also supported, non-reverting calls are assumed to be\n successful.\n To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\n which allows you to call the safe operations as `token.safeTransfer(...)`, etc."
              },
              "fullyImplemented": true,
              "id": 1117,
              "linearizedBaseContracts": [
                1117
              ],
              "name": "SafeERC20",
              "nameLocation": "586:9:6",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 901,
                  "libraryName": {
                    "id": 899,
                    "name": "Address",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2391,
                    "src": "608:7:6"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "602:26:6",
                  "typeName": {
                    "id": 900,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "620:7:6",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  }
                },
                {
                  "body": {
                    "id": 923,
                    "nodeType": "Block",
                    "src": "736:103:6",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 912,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 904,
                              "src": "766:5:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 915,
                                      "name": "token",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 904,
                                      "src": "796:5:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IERC20_$663",
                                        "typeString": "contract IERC20"
                                      }
                                    },
                                    "id": 916,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "transfer",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 612,
                                    "src": "796:14:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                                      "typeString": "function (address,uint256) external returns (bool)"
                                    }
                                  },
                                  "id": 917,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "796:23:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                },
                                {
                                  "id": 918,
                                  "name": "to",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 906,
                                  "src": "821:2:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 919,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 908,
                                  "src": "825:5:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "expression": {
                                  "id": 913,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "773:3:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 914,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodeWithSelector",
                                "nodeType": "MemberAccess",
                                "src": "773:22:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function (bytes4) pure returns (bytes memory)"
                                }
                              },
                              "id": 920,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "773:58:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 911,
                            "name": "_callOptionalReturn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1116,
                            "src": "746:19:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_bytes_memory_ptr_$returns$__$",
                              "typeString": "function (contract IERC20,bytes memory)"
                            }
                          },
                          "id": 921,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "746:86:6",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 922,
                        "nodeType": "ExpressionStatement",
                        "src": "746:86:6"
                      }
                    ]
                  },
                  "id": 924,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeTransfer",
                  "nameLocation": "643:12:6",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 909,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 904,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "672:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 924,
                        "src": "665:12:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 903,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 902,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "665:6:6"
                          },
                          "referencedDeclaration": 663,
                          "src": "665:6:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 906,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "695:2:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 924,
                        "src": "687:10:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 905,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "687:7:6",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 908,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "715:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 924,
                        "src": "707:13:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 907,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "707:7:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "655:71:6"
                  },
                  "returnParameters": {
                    "id": 910,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "736:0:6"
                  },
                  "scope": 1117,
                  "src": "634:205:6",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 949,
                    "nodeType": "Block",
                    "src": "973:113:6",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 937,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 927,
                              "src": "1003:5:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 940,
                                      "name": "token",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 927,
                                      "src": "1033:5:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IERC20_$663",
                                        "typeString": "contract IERC20"
                                      }
                                    },
                                    "id": 941,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "transferFrom",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 644,
                                    "src": "1033:18:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$",
                                      "typeString": "function (address,address,uint256) external returns (bool)"
                                    }
                                  },
                                  "id": 942,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "1033:27:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                },
                                {
                                  "id": 943,
                                  "name": "from",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 929,
                                  "src": "1062:4:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 944,
                                  "name": "to",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 931,
                                  "src": "1068:2:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 945,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 933,
                                  "src": "1072:5:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "expression": {
                                  "id": 938,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "1010:3:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 939,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodeWithSelector",
                                "nodeType": "MemberAccess",
                                "src": "1010:22:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function (bytes4) pure returns (bytes memory)"
                                }
                              },
                              "id": 946,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1010:68:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 936,
                            "name": "_callOptionalReturn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1116,
                            "src": "983:19:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_bytes_memory_ptr_$returns$__$",
                              "typeString": "function (contract IERC20,bytes memory)"
                            }
                          },
                          "id": 947,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "983:96:6",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 948,
                        "nodeType": "ExpressionStatement",
                        "src": "983:96:6"
                      }
                    ]
                  },
                  "id": 950,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeTransferFrom",
                  "nameLocation": "854:16:6",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 934,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 927,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "887:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 950,
                        "src": "880:12:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 926,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 925,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "880:6:6"
                          },
                          "referencedDeclaration": 663,
                          "src": "880:6:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 929,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "910:4:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 950,
                        "src": "902:12:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 928,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "902:7:6",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 931,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "932:2:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 950,
                        "src": "924:10:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 930,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "924:7:6",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 933,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "952:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 950,
                        "src": "944:13:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 932,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "944:7:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "870:93:6"
                  },
                  "returnParameters": {
                    "id": 935,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "973:0:6"
                  },
                  "scope": 1117,
                  "src": "845:241:6",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 993,
                    "nodeType": "Block",
                    "src": "1452:497:6",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 977,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "components": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 964,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 962,
                                      "name": "value",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 958,
                                      "src": "1701:5:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "==",
                                    "rightExpression": {
                                      "hexValue": "30",
                                      "id": 963,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "1710:1:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    },
                                    "src": "1701:10:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  }
                                ],
                                "id": 965,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "1700:12:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "||",
                              "rightExpression": {
                                "components": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 975,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "id": 970,
                                              "name": "this",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": -28,
                                              "src": "1741:4:6",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_contract$_SafeERC20_$1117",
                                                "typeString": "library SafeERC20"
                                              }
                                            }
                                          ],
                                          "expression": {
                                            "argumentTypes": [
                                              {
                                                "typeIdentifier": "t_contract$_SafeERC20_$1117",
                                                "typeString": "library SafeERC20"
                                              }
                                            ],
                                            "id": 969,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "lValueRequested": false,
                                            "nodeType": "ElementaryTypeNameExpression",
                                            "src": "1733:7:6",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_address_$",
                                              "typeString": "type(address)"
                                            },
                                            "typeName": {
                                              "id": 968,
                                              "name": "address",
                                              "nodeType": "ElementaryTypeName",
                                              "src": "1733:7:6",
                                              "typeDescriptions": {}
                                            }
                                          },
                                          "id": 971,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "kind": "typeConversion",
                                          "lValueRequested": false,
                                          "names": [],
                                          "nodeType": "FunctionCall",
                                          "src": "1733:13:6",
                                          "tryCall": false,
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        },
                                        {
                                          "id": 972,
                                          "name": "spender",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 956,
                                          "src": "1748:7:6",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          },
                                          {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        ],
                                        "expression": {
                                          "id": 966,
                                          "name": "token",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 954,
                                          "src": "1717:5:6",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_contract$_IERC20_$663",
                                            "typeString": "contract IERC20"
                                          }
                                        },
                                        "id": 967,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "allowance",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 622,
                                        "src": "1717:15:6",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$",
                                          "typeString": "function (address,address) view external returns (uint256)"
                                        }
                                      },
                                      "id": 973,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "1717:39:6",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "==",
                                    "rightExpression": {
                                      "hexValue": "30",
                                      "id": 974,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "1760:1:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    },
                                    "src": "1717:44:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  }
                                ],
                                "id": 976,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "1716:46:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "1700:62:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365",
                              "id": 978,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1776:56:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_ef945ddb1bfdc0da870feb4560d868b047642b4ac7f2fb7f8b7c51cb4a411e25",
                                "typeString": "literal_string \"SafeERC20: approve from non-zero to non-zero allowance\""
                              },
                              "value": "SafeERC20: approve from non-zero to non-zero allowance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_ef945ddb1bfdc0da870feb4560d868b047642b4ac7f2fb7f8b7c51cb4a411e25",
                                "typeString": "literal_string \"SafeERC20: approve from non-zero to non-zero allowance\""
                              }
                            ],
                            "id": 961,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1679:7:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 979,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1679:163:6",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 980,
                        "nodeType": "ExpressionStatement",
                        "src": "1679:163:6"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 982,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 954,
                              "src": "1872:5:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 985,
                                      "name": "token",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 954,
                                      "src": "1902:5:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IERC20_$663",
                                        "typeString": "contract IERC20"
                                      }
                                    },
                                    "id": 986,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "approve",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 632,
                                    "src": "1902:13:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                                      "typeString": "function (address,uint256) external returns (bool)"
                                    }
                                  },
                                  "id": 987,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "1902:22:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                },
                                {
                                  "id": 988,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 956,
                                  "src": "1926:7:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 989,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 958,
                                  "src": "1935:5:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "expression": {
                                  "id": 983,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "1879:3:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 984,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodeWithSelector",
                                "nodeType": "MemberAccess",
                                "src": "1879:22:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function (bytes4) pure returns (bytes memory)"
                                }
                              },
                              "id": 990,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1879:62:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 981,
                            "name": "_callOptionalReturn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1116,
                            "src": "1852:19:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_bytes_memory_ptr_$returns$__$",
                              "typeString": "function (contract IERC20,bytes memory)"
                            }
                          },
                          "id": 991,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1852:90:6",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 992,
                        "nodeType": "ExpressionStatement",
                        "src": "1852:90:6"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 951,
                    "nodeType": "StructuredDocumentation",
                    "src": "1092:249:6",
                    "text": " @dev Deprecated. This function has issues similar to the ones found in\n {IERC20-approve}, and its usage is discouraged.\n Whenever possible, use {safeIncreaseAllowance} and\n {safeDecreaseAllowance} instead."
                  },
                  "id": 994,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeApprove",
                  "nameLocation": "1355:11:6",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 959,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 954,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "1383:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 994,
                        "src": "1376:12:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 953,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 952,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "1376:6:6"
                          },
                          "referencedDeclaration": 663,
                          "src": "1376:6:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 956,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1406:7:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 994,
                        "src": "1398:15:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 955,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1398:7:6",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 958,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1431:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 994,
                        "src": "1423:13:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 957,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1423:7:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1366:76:6"
                  },
                  "returnParameters": {
                    "id": 960,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1452:0:6"
                  },
                  "scope": 1117,
                  "src": "1346:603:6",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1029,
                    "nodeType": "Block",
                    "src": "2071:194:6",
                    "statements": [
                      {
                        "assignments": [
                          1005
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1005,
                            "mutability": "mutable",
                            "name": "newAllowance",
                            "nameLocation": "2089:12:6",
                            "nodeType": "VariableDeclaration",
                            "scope": 1029,
                            "src": "2081:20:6",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 1004,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2081:7:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1016,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1015,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "id": 1010,
                                    "name": "this",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -28,
                                    "src": "2128:4:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_SafeERC20_$1117",
                                      "typeString": "library SafeERC20"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_SafeERC20_$1117",
                                      "typeString": "library SafeERC20"
                                    }
                                  ],
                                  "id": 1009,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2120:7:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 1008,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2120:7:6",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 1011,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2120:13:6",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              {
                                "id": 1012,
                                "name": "spender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 999,
                                "src": "2135:7:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              ],
                              "expression": {
                                "id": 1006,
                                "name": "token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 997,
                                "src": "2104:5:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_IERC20_$663",
                                  "typeString": "contract IERC20"
                                }
                              },
                              "id": 1007,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "allowance",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 622,
                              "src": "2104:15:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$",
                                "typeString": "function (address,address) view external returns (uint256)"
                              }
                            },
                            "id": 1013,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "2104:39:6",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "+",
                          "rightExpression": {
                            "id": 1014,
                            "name": "value",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1001,
                            "src": "2146:5:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2104:47:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2081:70:6"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1018,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 997,
                              "src": "2181:5:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 1021,
                                      "name": "token",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 997,
                                      "src": "2211:5:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IERC20_$663",
                                        "typeString": "contract IERC20"
                                      }
                                    },
                                    "id": 1022,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "approve",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 632,
                                    "src": "2211:13:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                                      "typeString": "function (address,uint256) external returns (bool)"
                                    }
                                  },
                                  "id": 1023,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "2211:22:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                },
                                {
                                  "id": 1024,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 999,
                                  "src": "2235:7:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1025,
                                  "name": "newAllowance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1005,
                                  "src": "2244:12:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "expression": {
                                  "id": 1019,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "2188:3:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 1020,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodeWithSelector",
                                "nodeType": "MemberAccess",
                                "src": "2188:22:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function (bytes4) pure returns (bytes memory)"
                                }
                              },
                              "id": 1026,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2188:69:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 1017,
                            "name": "_callOptionalReturn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1116,
                            "src": "2161:19:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_bytes_memory_ptr_$returns$__$",
                              "typeString": "function (contract IERC20,bytes memory)"
                            }
                          },
                          "id": 1027,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2161:97:6",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1028,
                        "nodeType": "ExpressionStatement",
                        "src": "2161:97:6"
                      }
                    ]
                  },
                  "id": 1030,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeIncreaseAllowance",
                  "nameLocation": "1964:21:6",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1002,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 997,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "2002:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1030,
                        "src": "1995:12:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 996,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 995,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "1995:6:6"
                          },
                          "referencedDeclaration": 663,
                          "src": "1995:6:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 999,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "2025:7:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1030,
                        "src": "2017:15:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 998,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2017:7:6",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1001,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2050:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1030,
                        "src": "2042:13:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1000,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2042:7:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1985:76:6"
                  },
                  "returnParameters": {
                    "id": 1003,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2071:0:6"
                  },
                  "scope": 1117,
                  "src": "1955:310:6",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1077,
                    "nodeType": "Block",
                    "src": "2387:370:6",
                    "statements": [
                      {
                        "id": 1076,
                        "nodeType": "UncheckedBlock",
                        "src": "2397:354:6",
                        "statements": [
                          {
                            "assignments": [
                              1041
                            ],
                            "declarations": [
                              {
                                "constant": false,
                                "id": 1041,
                                "mutability": "mutable",
                                "name": "oldAllowance",
                                "nameLocation": "2429:12:6",
                                "nodeType": "VariableDeclaration",
                                "scope": 1076,
                                "src": "2421:20:6",
                                "stateVariable": false,
                                "storageLocation": "default",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "typeName": {
                                  "id": 1040,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2421:7:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "visibility": "internal"
                              }
                            ],
                            "id": 1050,
                            "initialValue": {
                              "arguments": [
                                {
                                  "arguments": [
                                    {
                                      "id": 1046,
                                      "name": "this",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -28,
                                      "src": "2468:4:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_SafeERC20_$1117",
                                        "typeString": "library SafeERC20"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_SafeERC20_$1117",
                                        "typeString": "library SafeERC20"
                                      }
                                    ],
                                    "id": 1045,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "2460:7:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 1044,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2460:7:6",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 1047,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2460:13:6",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1048,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1035,
                                  "src": "2475:7:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "expression": {
                                  "id": 1042,
                                  "name": "token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1033,
                                  "src": "2444:5:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IERC20_$663",
                                    "typeString": "contract IERC20"
                                  }
                                },
                                "id": 1043,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "allowance",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 622,
                                "src": "2444:15:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$",
                                  "typeString": "function (address,address) view external returns (uint256)"
                                }
                              },
                              "id": 1049,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2444:39:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "VariableDeclarationStatement",
                            "src": "2421:62:6"
                          },
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 1054,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 1052,
                                    "name": "oldAllowance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1041,
                                    "src": "2505:12:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": ">=",
                                  "rightExpression": {
                                    "id": 1053,
                                    "name": "value",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1037,
                                    "src": "2521:5:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "2505:21:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                {
                                  "hexValue": "5361666545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f",
                                  "id": 1055,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "string",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "2528:43:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_stringliteral_2c3af60974a758b7e72e108c9bf0943ecc9e4f2e8af4695da5f52fbf57a63d3a",
                                    "typeString": "literal_string \"SafeERC20: decreased allowance below zero\""
                                  },
                                  "value": "SafeERC20: decreased allowance below zero"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  },
                                  {
                                    "typeIdentifier": "t_stringliteral_2c3af60974a758b7e72e108c9bf0943ecc9e4f2e8af4695da5f52fbf57a63d3a",
                                    "typeString": "literal_string \"SafeERC20: decreased allowance below zero\""
                                  }
                                ],
                                "id": 1051,
                                "name": "require",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  -18,
                                  -18
                                ],
                                "referencedDeclaration": -18,
                                "src": "2497:7:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                  "typeString": "function (bool,string memory) pure"
                                }
                              },
                              "id": 1056,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2497:75:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 1057,
                            "nodeType": "ExpressionStatement",
                            "src": "2497:75:6"
                          },
                          {
                            "assignments": [
                              1059
                            ],
                            "declarations": [
                              {
                                "constant": false,
                                "id": 1059,
                                "mutability": "mutable",
                                "name": "newAllowance",
                                "nameLocation": "2594:12:6",
                                "nodeType": "VariableDeclaration",
                                "scope": 1076,
                                "src": "2586:20:6",
                                "stateVariable": false,
                                "storageLocation": "default",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "typeName": {
                                  "id": 1058,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2586:7:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "visibility": "internal"
                              }
                            ],
                            "id": 1063,
                            "initialValue": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 1062,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1060,
                                "name": "oldAllowance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1041,
                                "src": "2609:12:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "id": 1061,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1037,
                                "src": "2624:5:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2609:20:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "VariableDeclarationStatement",
                            "src": "2586:43:6"
                          },
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "id": 1065,
                                  "name": "token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1033,
                                  "src": "2663:5:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IERC20_$663",
                                    "typeString": "contract IERC20"
                                  }
                                },
                                {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "expression": {
                                          "id": 1068,
                                          "name": "token",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 1033,
                                          "src": "2693:5:6",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_contract$_IERC20_$663",
                                            "typeString": "contract IERC20"
                                          }
                                        },
                                        "id": 1069,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "approve",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 632,
                                        "src": "2693:13:6",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                                          "typeString": "function (address,uint256) external returns (bool)"
                                        }
                                      },
                                      "id": 1070,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "selector",
                                      "nodeType": "MemberAccess",
                                      "src": "2693:22:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes4",
                                        "typeString": "bytes4"
                                      }
                                    },
                                    {
                                      "id": 1071,
                                      "name": "spender",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1035,
                                      "src": "2717:7:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    {
                                      "id": 1072,
                                      "name": "newAllowance",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1059,
                                      "src": "2726:12:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_bytes4",
                                        "typeString": "bytes4"
                                      },
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      },
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "expression": {
                                      "id": 1066,
                                      "name": "abi",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -1,
                                      "src": "2670:3:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_abi",
                                        "typeString": "abi"
                                      }
                                    },
                                    "id": 1067,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "encodeWithSelector",
                                    "nodeType": "MemberAccess",
                                    "src": "2670:22:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                                      "typeString": "function (bytes4) pure returns (bytes memory)"
                                    }
                                  },
                                  "id": 1073,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2670:69:6",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IERC20_$663",
                                    "typeString": "contract IERC20"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                ],
                                "id": 1064,
                                "name": "_callOptionalReturn",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1116,
                                "src": "2643:19:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_bytes_memory_ptr_$returns$__$",
                                  "typeString": "function (contract IERC20,bytes memory)"
                                }
                              },
                              "id": 1074,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2643:97:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 1075,
                            "nodeType": "ExpressionStatement",
                            "src": "2643:97:6"
                          }
                        ]
                      }
                    ]
                  },
                  "id": 1078,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeDecreaseAllowance",
                  "nameLocation": "2280:21:6",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1038,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1033,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "2318:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1078,
                        "src": "2311:12:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 1032,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1031,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "2311:6:6"
                          },
                          "referencedDeclaration": 663,
                          "src": "2311:6:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1035,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "2341:7:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1078,
                        "src": "2333:15:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1034,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2333:7:6",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1037,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2366:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1078,
                        "src": "2358:13:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1036,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2358:7:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2301:76:6"
                  },
                  "returnParameters": {
                    "id": 1039,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2387:0:6"
                  },
                  "scope": 1117,
                  "src": "2271:486:6",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1115,
                    "nodeType": "Block",
                    "src": "3210:636:6",
                    "statements": [
                      {
                        "assignments": [
                          1088
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1088,
                            "mutability": "mutable",
                            "name": "returndata",
                            "nameLocation": "3572:10:6",
                            "nodeType": "VariableDeclaration",
                            "scope": 1115,
                            "src": "3559:23:6",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 1087,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "3559:5:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1097,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1094,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1084,
                              "src": "3613:4:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "hexValue": "5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564",
                              "id": 1095,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3619:34:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_47fb62c2c272651d2f0f342bac006756b8ba07f21cc5cb87e0fbb9d50c0c585b",
                                "typeString": "literal_string \"SafeERC20: low-level call failed\""
                              },
                              "value": "SafeERC20: low-level call failed"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_47fb62c2c272651d2f0f342bac006756b8ba07f21cc5cb87e0fbb9d50c0c585b",
                                "typeString": "literal_string \"SafeERC20: low-level call failed\""
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 1091,
                                  "name": "token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1082,
                                  "src": "3593:5:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IERC20_$663",
                                    "typeString": "contract IERC20"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IERC20_$663",
                                    "typeString": "contract IERC20"
                                  }
                                ],
                                "id": 1090,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3585:7:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 1089,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3585:7:6",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 1092,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3585:14:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "id": 1093,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "functionCall",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 2185,
                            "src": "3585:27:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$bound_to$_t_address_$",
                              "typeString": "function (address,bytes memory,string memory) returns (bytes memory)"
                            }
                          },
                          "id": 1096,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3585:69:6",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3559:95:6"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1101,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 1098,
                              "name": "returndata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1088,
                              "src": "3668:10:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 1099,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "3668:17:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 1100,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3688:1:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3668:21:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 1114,
                        "nodeType": "IfStatement",
                        "src": "3664:176:6",
                        "trueBody": {
                          "id": 1113,
                          "nodeType": "Block",
                          "src": "3691:149:6",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "id": 1105,
                                        "name": "returndata",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 1088,
                                        "src": "3763:10:6",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes memory"
                                        }
                                      },
                                      {
                                        "components": [
                                          {
                                            "id": 1107,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "lValueRequested": false,
                                            "nodeType": "ElementaryTypeNameExpression",
                                            "src": "3776:4:6",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_bool_$",
                                              "typeString": "type(bool)"
                                            },
                                            "typeName": {
                                              "id": 1106,
                                              "name": "bool",
                                              "nodeType": "ElementaryTypeName",
                                              "src": "3776:4:6",
                                              "typeDescriptions": {}
                                            }
                                          }
                                        ],
                                        "id": 1108,
                                        "isConstant": false,
                                        "isInlineArray": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "TupleExpression",
                                        "src": "3775:6:6",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_bool_$",
                                          "typeString": "type(bool)"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes memory"
                                        },
                                        {
                                          "typeIdentifier": "t_type$_t_bool_$",
                                          "typeString": "type(bool)"
                                        }
                                      ],
                                      "expression": {
                                        "id": 1103,
                                        "name": "abi",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": -1,
                                        "src": "3752:3:6",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_magic_abi",
                                          "typeString": "abi"
                                        }
                                      },
                                      "id": 1104,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "memberName": "decode",
                                      "nodeType": "MemberAccess",
                                      "src": "3752:10:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_abidecode_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 1109,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "3752:30:6",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564",
                                    "id": 1110,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3784:44:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd",
                                      "typeString": "literal_string \"SafeERC20: ERC20 operation did not succeed\""
                                    },
                                    "value": "SafeERC20: ERC20 operation did not succeed"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    {
                                      "typeIdentifier": "t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd",
                                      "typeString": "literal_string \"SafeERC20: ERC20 operation did not succeed\""
                                    }
                                  ],
                                  "id": 1102,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "3744:7:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 1111,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3744:85:6",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 1112,
                              "nodeType": "ExpressionStatement",
                              "src": "3744:85:6"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1079,
                    "nodeType": "StructuredDocumentation",
                    "src": "2763:372:6",
                    "text": " @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n on the return value: the return value is optional (but if data is returned, it must not be false).\n @param token The token targeted by the call.\n @param data The call data (encoded using abi.encode or one of its variants)."
                  },
                  "id": 1116,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_callOptionalReturn",
                  "nameLocation": "3149:19:6",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1085,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1082,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "3176:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1116,
                        "src": "3169:12:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 1081,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1080,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "3169:6:6"
                          },
                          "referencedDeclaration": 663,
                          "src": "3169:6:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1084,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "3196:4:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1116,
                        "src": "3183:17:6",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1083,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3183:5:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3168:33:6"
                  },
                  "returnParameters": {
                    "id": 1086,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3210:0:6"
                  },
                  "scope": 1117,
                  "src": "3140:706:6",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "private"
                }
              ],
              "scope": 1118,
              "src": "578:3270:6",
              "usedErrors": []
            }
          ],
          "src": "33:3816:6"
        },
        "id": 6
      },
      "@openzeppelin/contracts/token/ERC721/ERC721.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC721/ERC721.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "Context": [
              2413
            ],
            "ERC165": [
              3219
            ],
            "ERC721": [
              1933
            ],
            "IERC165": [
              3433
            ],
            "IERC721": [
              2049
            ],
            "IERC721Metadata": [
              2094
            ],
            "IERC721Receiver": [
              2067
            ],
            "Strings": [
              2690
            ]
          },
          "id": 1934,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1119,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:7"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721.sol",
              "file": "./IERC721.sol",
              "id": 1120,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1934,
              "sourceUnit": 2050,
              "src": "58:23:7",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol",
              "file": "./IERC721Receiver.sol",
              "id": 1121,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1934,
              "sourceUnit": 2068,
              "src": "82:31:7",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol",
              "file": "./extensions/IERC721Metadata.sol",
              "id": 1122,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1934,
              "sourceUnit": 2095,
              "src": "114:42:7",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Address.sol",
              "file": "../../utils/Address.sol",
              "id": 1123,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1934,
              "sourceUnit": 2392,
              "src": "157:33:7",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Context.sol",
              "file": "../../utils/Context.sol",
              "id": 1124,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1934,
              "sourceUnit": 2414,
              "src": "191:33:7",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Strings.sol",
              "file": "../../utils/Strings.sol",
              "id": 1125,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1934,
              "sourceUnit": 2691,
              "src": "225:33:7",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/introspection/ERC165.sol",
              "file": "../../utils/introspection/ERC165.sol",
              "id": 1126,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1934,
              "sourceUnit": 3220,
              "src": "259:46:7",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 1128,
                    "name": "Context",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2413,
                    "src": "573:7:7"
                  },
                  "id": 1129,
                  "nodeType": "InheritanceSpecifier",
                  "src": "573:7:7"
                },
                {
                  "baseName": {
                    "id": 1130,
                    "name": "ERC165",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3219,
                    "src": "582:6:7"
                  },
                  "id": 1131,
                  "nodeType": "InheritanceSpecifier",
                  "src": "582:6:7"
                },
                {
                  "baseName": {
                    "id": 1132,
                    "name": "IERC721",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2049,
                    "src": "590:7:7"
                  },
                  "id": 1133,
                  "nodeType": "InheritanceSpecifier",
                  "src": "590:7:7"
                },
                {
                  "baseName": {
                    "id": 1134,
                    "name": "IERC721Metadata",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2094,
                    "src": "599:15:7"
                  },
                  "id": 1135,
                  "nodeType": "InheritanceSpecifier",
                  "src": "599:15:7"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 1127,
                "nodeType": "StructuredDocumentation",
                "src": "307:246:7",
                "text": " @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including\n the Metadata extension, but not including the Enumerable extension, which is available separately as\n {ERC721Enumerable}."
              },
              "fullyImplemented": true,
              "id": 1933,
              "linearizedBaseContracts": [
                1933,
                2094,
                2049,
                3219,
                3433,
                2413
              ],
              "name": "ERC721",
              "nameLocation": "563:6:7",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 1138,
                  "libraryName": {
                    "id": 1136,
                    "name": "Address",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2391,
                    "src": "627:7:7"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "621:26:7",
                  "typeName": {
                    "id": 1137,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "639:7:7",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  }
                },
                {
                  "id": 1141,
                  "libraryName": {
                    "id": 1139,
                    "name": "Strings",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2690,
                    "src": "658:7:7"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "652:26:7",
                  "typeName": {
                    "id": 1140,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "670:7:7",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "constant": false,
                  "id": 1143,
                  "mutability": "mutable",
                  "name": "_name",
                  "nameLocation": "717:5:7",
                  "nodeType": "VariableDeclaration",
                  "scope": 1933,
                  "src": "702:20:7",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1142,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "702:6:7",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 1145,
                  "mutability": "mutable",
                  "name": "_symbol",
                  "nameLocation": "764:7:7",
                  "nodeType": "VariableDeclaration",
                  "scope": 1933,
                  "src": "749:22:7",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1144,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "749:6:7",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 1149,
                  "mutability": "mutable",
                  "name": "_owners",
                  "nameLocation": "860:7:7",
                  "nodeType": "VariableDeclaration",
                  "scope": 1933,
                  "src": "824:43:7",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_uint256_$_t_address_$",
                    "typeString": "mapping(uint256 => address)"
                  },
                  "typeName": {
                    "id": 1148,
                    "keyType": {
                      "id": 1146,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "832:7:7",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "824:27:7",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_uint256_$_t_address_$",
                      "typeString": "mapping(uint256 => address)"
                    },
                    "valueType": {
                      "id": 1147,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "843:7:7",
                      "stateMutability": "nonpayable",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 1153,
                  "mutability": "mutable",
                  "name": "_balances",
                  "nameLocation": "954:9:7",
                  "nodeType": "VariableDeclaration",
                  "scope": 1933,
                  "src": "918:45:7",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                    "typeString": "mapping(address => uint256)"
                  },
                  "typeName": {
                    "id": 1152,
                    "keyType": {
                      "id": 1150,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "926:7:7",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "918:27:7",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                      "typeString": "mapping(address => uint256)"
                    },
                    "valueType": {
                      "id": 1151,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "937:7:7",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 1157,
                  "mutability": "mutable",
                  "name": "_tokenApprovals",
                  "nameLocation": "1055:15:7",
                  "nodeType": "VariableDeclaration",
                  "scope": 1933,
                  "src": "1019:51:7",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_uint256_$_t_address_$",
                    "typeString": "mapping(uint256 => address)"
                  },
                  "typeName": {
                    "id": 1156,
                    "keyType": {
                      "id": 1154,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "1027:7:7",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1019:27:7",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_uint256_$_t_address_$",
                      "typeString": "mapping(uint256 => address)"
                    },
                    "valueType": {
                      "id": 1155,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1038:7:7",
                      "stateMutability": "nonpayable",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 1163,
                  "mutability": "mutable",
                  "name": "_operatorApprovals",
                  "nameLocation": "1178:18:7",
                  "nodeType": "VariableDeclaration",
                  "scope": 1933,
                  "src": "1125:71:7",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$",
                    "typeString": "mapping(address => mapping(address => bool))"
                  },
                  "typeName": {
                    "id": 1162,
                    "keyType": {
                      "id": 1158,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1133:7:7",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1125:44:7",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$",
                      "typeString": "mapping(address => mapping(address => bool))"
                    },
                    "valueType": {
                      "id": 1161,
                      "keyType": {
                        "id": 1159,
                        "name": "address",
                        "nodeType": "ElementaryTypeName",
                        "src": "1152:7:7",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        }
                      },
                      "nodeType": "Mapping",
                      "src": "1144:24:7",
                      "typeDescriptions": {
                        "typeIdentifier": "t_mapping$_t_address_$_t_bool_$",
                        "typeString": "mapping(address => bool)"
                      },
                      "valueType": {
                        "id": 1160,
                        "name": "bool",
                        "nodeType": "ElementaryTypeName",
                        "src": "1163:4:7",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 1179,
                    "nodeType": "Block",
                    "src": "1372:57:7",
                    "statements": [
                      {
                        "expression": {
                          "id": 1173,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 1171,
                            "name": "_name",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1143,
                            "src": "1382:5:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_storage",
                              "typeString": "string storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 1172,
                            "name": "name_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1166,
                            "src": "1390:5:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "src": "1382:13:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "id": 1174,
                        "nodeType": "ExpressionStatement",
                        "src": "1382:13:7"
                      },
                      {
                        "expression": {
                          "id": 1177,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 1175,
                            "name": "_symbol",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1145,
                            "src": "1405:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_storage",
                              "typeString": "string storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 1176,
                            "name": "symbol_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1168,
                            "src": "1415:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "src": "1405:17:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "id": 1178,
                        "nodeType": "ExpressionStatement",
                        "src": "1405:17:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1164,
                    "nodeType": "StructuredDocumentation",
                    "src": "1203:108:7",
                    "text": " @dev Initializes the contract by setting a `name` and a `symbol` to the token collection."
                  },
                  "id": 1180,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1169,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1166,
                        "mutability": "mutable",
                        "name": "name_",
                        "nameLocation": "1342:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1180,
                        "src": "1328:19:7",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1165,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1328:6:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1168,
                        "mutability": "mutable",
                        "name": "symbol_",
                        "nameLocation": "1363:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1180,
                        "src": "1349:21:7",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1167,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1349:6:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1327:44:7"
                  },
                  "returnParameters": {
                    "id": 1170,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1372:0:7"
                  },
                  "scope": 1933,
                  "src": "1316:113:7",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    3218,
                    3432
                  ],
                  "body": {
                    "id": 1210,
                    "nodeType": "Block",
                    "src": "1604:192:7",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 1208,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "id": 1203,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "commonType": {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              },
                              "id": 1196,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1191,
                                "name": "interfaceId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1183,
                                "src": "1633:11:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 1193,
                                      "name": "IERC721",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2049,
                                      "src": "1653:7:7",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_IERC721_$2049_$",
                                        "typeString": "type(contract IERC721)"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_contract$_IERC721_$2049_$",
                                        "typeString": "type(contract IERC721)"
                                      }
                                    ],
                                    "id": 1192,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1648:4:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 1194,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1648:13:7",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_contract$_IERC721_$2049",
                                    "typeString": "type(contract IERC721)"
                                  }
                                },
                                "id": 1195,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "interfaceId",
                                "nodeType": "MemberAccess",
                                "src": "1648:25:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              },
                              "src": "1633:40:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "||",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              },
                              "id": 1202,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1197,
                                "name": "interfaceId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1183,
                                "src": "1689:11:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 1199,
                                      "name": "IERC721Metadata",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2094,
                                      "src": "1709:15:7",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_IERC721Metadata_$2094_$",
                                        "typeString": "type(contract IERC721Metadata)"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_contract$_IERC721Metadata_$2094_$",
                                        "typeString": "type(contract IERC721Metadata)"
                                      }
                                    ],
                                    "id": 1198,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1704:4:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 1200,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1704:21:7",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_contract$_IERC721Metadata_$2094",
                                    "typeString": "type(contract IERC721Metadata)"
                                  }
                                },
                                "id": 1201,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "interfaceId",
                                "nodeType": "MemberAccess",
                                "src": "1704:33:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              },
                              "src": "1689:48:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "src": "1633:104:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "||",
                          "rightExpression": {
                            "arguments": [
                              {
                                "id": 1206,
                                "name": "interfaceId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1183,
                                "src": "1777:11:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              ],
                              "expression": {
                                "id": 1204,
                                "name": "super",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -25,
                                "src": "1753:5:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_super$_ERC721_$1933_$",
                                  "typeString": "type(contract super ERC721)"
                                }
                              },
                              "id": 1205,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "supportsInterface",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 3218,
                              "src": "1753:23:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_bytes4_$returns$_t_bool_$",
                                "typeString": "function (bytes4) view returns (bool)"
                              }
                            },
                            "id": 1207,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "1753:36:7",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "1633:156:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 1190,
                        "id": 1209,
                        "nodeType": "Return",
                        "src": "1614:175:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1181,
                    "nodeType": "StructuredDocumentation",
                    "src": "1435:56:7",
                    "text": " @dev See {IERC165-supportsInterface}."
                  },
                  "functionSelector": "01ffc9a7",
                  "id": 1211,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supportsInterface",
                  "nameLocation": "1505:17:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 1187,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [
                      {
                        "id": 1185,
                        "name": "ERC165",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3219,
                        "src": "1572:6:7"
                      },
                      {
                        "id": 1186,
                        "name": "IERC165",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3433,
                        "src": "1580:7:7"
                      }
                    ],
                    "src": "1563:25:7"
                  },
                  "parameters": {
                    "id": 1184,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1183,
                        "mutability": "mutable",
                        "name": "interfaceId",
                        "nameLocation": "1530:11:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1211,
                        "src": "1523:18:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 1182,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "1523:6:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1522:20:7"
                  },
                  "returnParameters": {
                    "id": 1190,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1189,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1211,
                        "src": "1598:4:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1188,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1598:4:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1597:6:7"
                  },
                  "scope": 1933,
                  "src": "1496:300:7",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    1974
                  ],
                  "body": {
                    "id": 1234,
                    "nodeType": "Block",
                    "src": "1936:124:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 1226,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1221,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1214,
                                "src": "1954:5:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 1224,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1971:1:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 1223,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1963:7:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 1222,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1963:7:7",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 1225,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1963:10:7",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1954:19:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373",
                              "id": 1227,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1975:44:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
                                "typeString": "literal_string \"ERC721: balance query for the zero address\""
                              },
                              "value": "ERC721: balance query for the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
                                "typeString": "literal_string \"ERC721: balance query for the zero address\""
                              }
                            ],
                            "id": 1220,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1946:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1228,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1946:74:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1229,
                        "nodeType": "ExpressionStatement",
                        "src": "1946:74:7"
                      },
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 1230,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1153,
                            "src": "2037:9:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 1232,
                          "indexExpression": {
                            "id": 1231,
                            "name": "owner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1214,
                            "src": "2047:5:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "2037:16:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 1219,
                        "id": 1233,
                        "nodeType": "Return",
                        "src": "2030:23:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1212,
                    "nodeType": "StructuredDocumentation",
                    "src": "1802:48:7",
                    "text": " @dev See {IERC721-balanceOf}."
                  },
                  "functionSelector": "70a08231",
                  "id": 1235,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOf",
                  "nameLocation": "1864:9:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 1216,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1909:8:7"
                  },
                  "parameters": {
                    "id": 1215,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1214,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1882:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1235,
                        "src": "1874:13:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1213,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1874:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1873:15:7"
                  },
                  "returnParameters": {
                    "id": 1219,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1218,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1235,
                        "src": "1927:7:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1217,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1927:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1926:9:7"
                  },
                  "scope": 1933,
                  "src": "1855:205:7",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    1982
                  ],
                  "body": {
                    "id": 1262,
                    "nodeType": "Block",
                    "src": "2198:154:7",
                    "statements": [
                      {
                        "assignments": [
                          1245
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1245,
                            "mutability": "mutable",
                            "name": "owner",
                            "nameLocation": "2216:5:7",
                            "nodeType": "VariableDeclaration",
                            "scope": 1262,
                            "src": "2208:13:7",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 1244,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "2208:7:7",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1249,
                        "initialValue": {
                          "baseExpression": {
                            "id": 1246,
                            "name": "_owners",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1149,
                            "src": "2224:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_uint256_$_t_address_$",
                              "typeString": "mapping(uint256 => address)"
                            }
                          },
                          "id": 1248,
                          "indexExpression": {
                            "id": 1247,
                            "name": "tokenId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1238,
                            "src": "2232:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "2224:16:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2208:32:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 1256,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1251,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1245,
                                "src": "2258:5:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 1254,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2275:1:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 1253,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2267:7:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 1252,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2267:7:7",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 1255,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2267:10:7",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2258:19:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e",
                              "id": 1257,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2279:43:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
                                "typeString": "literal_string \"ERC721: owner query for nonexistent token\""
                              },
                              "value": "ERC721: owner query for nonexistent token"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
                                "typeString": "literal_string \"ERC721: owner query for nonexistent token\""
                              }
                            ],
                            "id": 1250,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2250:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1258,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2250:73:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1259,
                        "nodeType": "ExpressionStatement",
                        "src": "2250:73:7"
                      },
                      {
                        "expression": {
                          "id": 1260,
                          "name": "owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 1245,
                          "src": "2340:5:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 1243,
                        "id": 1261,
                        "nodeType": "Return",
                        "src": "2333:12:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1236,
                    "nodeType": "StructuredDocumentation",
                    "src": "2066:46:7",
                    "text": " @dev See {IERC721-ownerOf}."
                  },
                  "functionSelector": "6352211e",
                  "id": 1263,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "ownerOf",
                  "nameLocation": "2126:7:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 1240,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2171:8:7"
                  },
                  "parameters": {
                    "id": 1239,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1238,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "2142:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1263,
                        "src": "2134:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1237,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2134:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2133:17:7"
                  },
                  "returnParameters": {
                    "id": 1243,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1242,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1263,
                        "src": "2189:7:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1241,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2189:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2188:9:7"
                  },
                  "scope": 1933,
                  "src": "2117:235:7",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    2079
                  ],
                  "body": {
                    "id": 1272,
                    "nodeType": "Block",
                    "src": "2483:29:7",
                    "statements": [
                      {
                        "expression": {
                          "id": 1270,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 1143,
                          "src": "2500:5:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "functionReturnParameters": 1269,
                        "id": 1271,
                        "nodeType": "Return",
                        "src": "2493:12:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1264,
                    "nodeType": "StructuredDocumentation",
                    "src": "2358:51:7",
                    "text": " @dev See {IERC721Metadata-name}."
                  },
                  "functionSelector": "06fdde03",
                  "id": 1273,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "name",
                  "nameLocation": "2423:4:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 1266,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2450:8:7"
                  },
                  "parameters": {
                    "id": 1265,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2427:2:7"
                  },
                  "returnParameters": {
                    "id": 1269,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1268,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1273,
                        "src": "2468:13:7",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1267,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2468:6:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2467:15:7"
                  },
                  "scope": 1933,
                  "src": "2414:98:7",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    2085
                  ],
                  "body": {
                    "id": 1282,
                    "nodeType": "Block",
                    "src": "2647:31:7",
                    "statements": [
                      {
                        "expression": {
                          "id": 1280,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 1145,
                          "src": "2664:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "functionReturnParameters": 1279,
                        "id": 1281,
                        "nodeType": "Return",
                        "src": "2657:14:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1274,
                    "nodeType": "StructuredDocumentation",
                    "src": "2518:53:7",
                    "text": " @dev See {IERC721Metadata-symbol}."
                  },
                  "functionSelector": "95d89b41",
                  "id": 1283,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "symbol",
                  "nameLocation": "2585:6:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 1276,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2614:8:7"
                  },
                  "parameters": {
                    "id": 1275,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2591:2:7"
                  },
                  "returnParameters": {
                    "id": 1279,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1278,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1283,
                        "src": "2632:13:7",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1277,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2632:6:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2631:15:7"
                  },
                  "scope": 1933,
                  "src": "2576:102:7",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    2093
                  ],
                  "body": {
                    "id": 1324,
                    "nodeType": "Block",
                    "src": "2832:241:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 1294,
                                  "name": "tokenId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1286,
                                  "src": "2858:7:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 1293,
                                "name": "_exists",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1573,
                                "src": "2850:7:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_bool_$",
                                  "typeString": "function (uint256) view returns (bool)"
                                }
                              },
                              "id": 1295,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2850:16:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e",
                              "id": 1296,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2868:49:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
                                "typeString": "literal_string \"ERC721Metadata: URI query for nonexistent token\""
                              },
                              "value": "ERC721Metadata: URI query for nonexistent token"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
                                "typeString": "literal_string \"ERC721Metadata: URI query for nonexistent token\""
                              }
                            ],
                            "id": 1292,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2842:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1297,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2842:76:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1298,
                        "nodeType": "ExpressionStatement",
                        "src": "2842:76:7"
                      },
                      {
                        "assignments": [
                          1300
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1300,
                            "mutability": "mutable",
                            "name": "baseURI",
                            "nameLocation": "2943:7:7",
                            "nodeType": "VariableDeclaration",
                            "scope": 1324,
                            "src": "2929:21:7",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string"
                            },
                            "typeName": {
                              "id": 1299,
                              "name": "string",
                              "nodeType": "ElementaryTypeName",
                              "src": "2929:6:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_storage_ptr",
                                "typeString": "string"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1303,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 1301,
                            "name": "_baseURI",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1334,
                            "src": "2953:8:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_string_memory_ptr_$",
                              "typeString": "function () view returns (string memory)"
                            }
                          },
                          "id": 1302,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2953:10:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2929:34:7"
                      },
                      {
                        "expression": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 1310,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 1306,
                                    "name": "baseURI",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1300,
                                    "src": "2986:7:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_string_memory_ptr",
                                      "typeString": "string memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_string_memory_ptr",
                                      "typeString": "string memory"
                                    }
                                  ],
                                  "id": 1305,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2980:5:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_bytes_storage_ptr_$",
                                    "typeString": "type(bytes storage pointer)"
                                  },
                                  "typeName": {
                                    "id": 1304,
                                    "name": "bytes",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2980:5:7",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 1307,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2980:14:7",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              },
                              "id": 1308,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "2980:21:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "hexValue": "30",
                              "id": 1309,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3004:1:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "src": "2980:25:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "hexValue": "",
                            "id": 1321,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "string",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3064:2:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
                              "typeString": "literal_string \"\""
                            },
                            "value": ""
                          },
                          "id": 1322,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "2980:86:7",
                          "trueExpression": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "id": 1315,
                                    "name": "baseURI",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1300,
                                    "src": "3032:7:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_string_memory_ptr",
                                      "typeString": "string memory"
                                    }
                                  },
                                  {
                                    "arguments": [],
                                    "expression": {
                                      "argumentTypes": [],
                                      "expression": {
                                        "id": 1316,
                                        "name": "tokenId",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 1286,
                                        "src": "3041:7:7",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "id": 1317,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "toString",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 2572,
                                      "src": "3041:16:7",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$bound_to$_t_uint256_$",
                                        "typeString": "function (uint256) pure returns (string memory)"
                                      }
                                    },
                                    "id": 1318,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "3041:18:7",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_string_memory_ptr",
                                      "typeString": "string memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_string_memory_ptr",
                                      "typeString": "string memory"
                                    },
                                    {
                                      "typeIdentifier": "t_string_memory_ptr",
                                      "typeString": "string memory"
                                    }
                                  ],
                                  "expression": {
                                    "id": 1313,
                                    "name": "abi",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -1,
                                    "src": "3015:3:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_abi",
                                      "typeString": "abi"
                                    }
                                  },
                                  "id": 1314,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "encodePacked",
                                  "nodeType": "MemberAccess",
                                  "src": "3015:16:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                    "typeString": "function () pure returns (bytes memory)"
                                  }
                                },
                                "id": 1319,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3015:45:7",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              ],
                              "id": 1312,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "3008:6:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_string_storage_ptr_$",
                                "typeString": "type(string storage pointer)"
                              },
                              "typeName": {
                                "id": 1311,
                                "name": "string",
                                "nodeType": "ElementaryTypeName",
                                "src": "3008:6:7",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 1320,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3008:53:7",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        "functionReturnParameters": 1291,
                        "id": 1323,
                        "nodeType": "Return",
                        "src": "2973:93:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1284,
                    "nodeType": "StructuredDocumentation",
                    "src": "2684:55:7",
                    "text": " @dev See {IERC721Metadata-tokenURI}."
                  },
                  "functionSelector": "c87b56dd",
                  "id": 1325,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tokenURI",
                  "nameLocation": "2753:8:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 1288,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2799:8:7"
                  },
                  "parameters": {
                    "id": 1287,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1286,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "2770:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1325,
                        "src": "2762:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1285,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2762:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2761:17:7"
                  },
                  "returnParameters": {
                    "id": 1291,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1290,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1325,
                        "src": "2817:13:7",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1289,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2817:6:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2816:15:7"
                  },
                  "scope": 1933,
                  "src": "2744:329:7",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 1333,
                    "nodeType": "Block",
                    "src": "3380:26:7",
                    "statements": [
                      {
                        "expression": {
                          "hexValue": "",
                          "id": 1331,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "string",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "3397:2:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
                            "typeString": "literal_string \"\""
                          },
                          "value": ""
                        },
                        "functionReturnParameters": 1330,
                        "id": 1332,
                        "nodeType": "Return",
                        "src": "3390:9:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1326,
                    "nodeType": "StructuredDocumentation",
                    "src": "3079:230:7",
                    "text": " @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\n token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n by default, can be overriden in child contracts."
                  },
                  "id": 1334,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_baseURI",
                  "nameLocation": "3323:8:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1327,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3331:2:7"
                  },
                  "returnParameters": {
                    "id": 1330,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1329,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1334,
                        "src": "3365:13:7",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1328,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "3365:6:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3364:15:7"
                  },
                  "scope": 1933,
                  "src": "3314:92:7",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    2010
                  ],
                  "body": {
                    "id": 1376,
                    "nodeType": "Block",
                    "src": "3533:331:7",
                    "statements": [
                      {
                        "assignments": [
                          1344
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1344,
                            "mutability": "mutable",
                            "name": "owner",
                            "nameLocation": "3551:5:7",
                            "nodeType": "VariableDeclaration",
                            "scope": 1376,
                            "src": "3543:13:7",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 1343,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "3543:7:7",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1349,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1347,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1339,
                              "src": "3574:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 1345,
                              "name": "ERC721",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1933,
                              "src": "3559:6:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ERC721_$1933_$",
                                "typeString": "type(contract ERC721)"
                              }
                            },
                            "id": 1346,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "ownerOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1263,
                            "src": "3559:14:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_address_$",
                              "typeString": "function (uint256) view returns (address)"
                            }
                          },
                          "id": 1348,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3559:23:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3543:39:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 1353,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1351,
                                "name": "to",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1337,
                                "src": "3600:2:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "id": 1352,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1344,
                                "src": "3606:5:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "3600:11:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e6572",
                              "id": 1354,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3613:35:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
                                "typeString": "literal_string \"ERC721: approval to current owner\""
                              },
                              "value": "ERC721: approval to current owner"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
                                "typeString": "literal_string \"ERC721: approval to current owner\""
                              }
                            ],
                            "id": 1350,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3592:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1355,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3592:57:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1356,
                        "nodeType": "ExpressionStatement",
                        "src": "3592:57:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 1367,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 1361,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 1358,
                                    "name": "_msgSender",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2403,
                                    "src": "3681:10:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                      "typeString": "function () view returns (address)"
                                    }
                                  },
                                  "id": 1359,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3681:12:7",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "id": 1360,
                                  "name": "owner",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1344,
                                  "src": "3697:5:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "3681:21:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "||",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "id": 1363,
                                    "name": "owner",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1344,
                                    "src": "3723:5:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "arguments": [],
                                    "expression": {
                                      "argumentTypes": [],
                                      "id": 1364,
                                      "name": "_msgSender",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2403,
                                      "src": "3730:10:7",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                        "typeString": "function () view returns (address)"
                                      }
                                    },
                                    "id": 1365,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "3730:12:7",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  ],
                                  "id": 1362,
                                  "name": "isApprovedForAll",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1450,
                                  "src": "3706:16:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$_t_address_$_t_address_$returns$_t_bool_$",
                                    "typeString": "function (address,address) view returns (bool)"
                                  }
                                },
                                "id": 1366,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3706:37:7",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "3681:62:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c",
                              "id": 1368,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3757:58:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
                                "typeString": "literal_string \"ERC721: approve caller is not owner nor approved for all\""
                              },
                              "value": "ERC721: approve caller is not owner nor approved for all"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
                                "typeString": "literal_string \"ERC721: approve caller is not owner nor approved for all\""
                              }
                            ],
                            "id": 1357,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3660:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1369,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3660:165:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1370,
                        "nodeType": "ExpressionStatement",
                        "src": "3660:165:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1372,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1337,
                              "src": "3845:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1373,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1339,
                              "src": "3849:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1371,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1859,
                            "src": "3836:8:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 1374,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3836:21:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1375,
                        "nodeType": "ExpressionStatement",
                        "src": "3836:21:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1335,
                    "nodeType": "StructuredDocumentation",
                    "src": "3412:46:7",
                    "text": " @dev See {IERC721-approve}."
                  },
                  "functionSelector": "095ea7b3",
                  "id": 1377,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "approve",
                  "nameLocation": "3472:7:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 1341,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3524:8:7"
                  },
                  "parameters": {
                    "id": 1340,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1337,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "3488:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1377,
                        "src": "3480:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1336,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3480:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1339,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "3500:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1377,
                        "src": "3492:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1338,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3492:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3479:29:7"
                  },
                  "returnParameters": {
                    "id": 1342,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3533:0:7"
                  },
                  "scope": 1933,
                  "src": "3463:401:7",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    2018
                  ],
                  "body": {
                    "id": 1397,
                    "nodeType": "Block",
                    "src": "4010:132:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 1388,
                                  "name": "tokenId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1380,
                                  "src": "4036:7:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 1387,
                                "name": "_exists",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1573,
                                "src": "4028:7:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_bool_$",
                                  "typeString": "function (uint256) view returns (bool)"
                                }
                              },
                              "id": 1389,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4028:16:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e",
                              "id": 1390,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4046:46:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
                                "typeString": "literal_string \"ERC721: approved query for nonexistent token\""
                              },
                              "value": "ERC721: approved query for nonexistent token"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
                                "typeString": "literal_string \"ERC721: approved query for nonexistent token\""
                              }
                            ],
                            "id": 1386,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4020:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1391,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4020:73:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1392,
                        "nodeType": "ExpressionStatement",
                        "src": "4020:73:7"
                      },
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 1393,
                            "name": "_tokenApprovals",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1157,
                            "src": "4111:15:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_uint256_$_t_address_$",
                              "typeString": "mapping(uint256 => address)"
                            }
                          },
                          "id": 1395,
                          "indexExpression": {
                            "id": 1394,
                            "name": "tokenId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1380,
                            "src": "4127:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "4111:24:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 1385,
                        "id": 1396,
                        "nodeType": "Return",
                        "src": "4104:31:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1378,
                    "nodeType": "StructuredDocumentation",
                    "src": "3870:50:7",
                    "text": " @dev See {IERC721-getApproved}."
                  },
                  "functionSelector": "081812fc",
                  "id": 1398,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getApproved",
                  "nameLocation": "3934:11:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 1382,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3983:8:7"
                  },
                  "parameters": {
                    "id": 1381,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1380,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "3954:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1398,
                        "src": "3946:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1379,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3946:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3945:17:7"
                  },
                  "returnParameters": {
                    "id": 1385,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1384,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1398,
                        "src": "4001:7:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1383,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4001:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4000:9:7"
                  },
                  "scope": 1933,
                  "src": "3925:217:7",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    2026
                  ],
                  "body": {
                    "id": 1431,
                    "nodeType": "Block",
                    "src": "4293:206:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 1411,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1408,
                                "name": "operator",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1401,
                                "src": "4311:8:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "id": 1409,
                                  "name": "_msgSender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2403,
                                  "src": "4323:10:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                    "typeString": "function () view returns (address)"
                                  }
                                },
                                "id": 1410,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4323:12:7",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "4311:24:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
                              "id": 1412,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4337:27:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
                                "typeString": "literal_string \"ERC721: approve to caller\""
                              },
                              "value": "ERC721: approve to caller"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
                                "typeString": "literal_string \"ERC721: approve to caller\""
                              }
                            ],
                            "id": 1407,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4303:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1413,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4303:62:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1414,
                        "nodeType": "ExpressionStatement",
                        "src": "4303:62:7"
                      },
                      {
                        "expression": {
                          "id": 1422,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "baseExpression": {
                                "id": 1415,
                                "name": "_operatorApprovals",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1163,
                                "src": "4376:18:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$",
                                  "typeString": "mapping(address => mapping(address => bool))"
                                }
                              },
                              "id": 1419,
                              "indexExpression": {
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "id": 1416,
                                  "name": "_msgSender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2403,
                                  "src": "4395:10:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                    "typeString": "function () view returns (address)"
                                  }
                                },
                                "id": 1417,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4395:12:7",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "4376:32:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_bool_$",
                                "typeString": "mapping(address => bool)"
                              }
                            },
                            "id": 1420,
                            "indexExpression": {
                              "id": 1418,
                              "name": "operator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1401,
                              "src": "4409:8:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "4376:42:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 1421,
                            "name": "approved",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1403,
                            "src": "4421:8:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "4376:53:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 1423,
                        "nodeType": "ExpressionStatement",
                        "src": "4376:53:7"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 1425,
                                "name": "_msgSender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2403,
                                "src": "4459:10:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                  "typeString": "function () view returns (address)"
                                }
                              },
                              "id": 1426,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4459:12:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1427,
                              "name": "operator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1401,
                              "src": "4473:8:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1428,
                              "name": "approved",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1403,
                              "src": "4483:8:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            ],
                            "id": 1424,
                            "name": "ApprovalForAll",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1966,
                            "src": "4444:14:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_bool_$returns$__$",
                              "typeString": "function (address,address,bool)"
                            }
                          },
                          "id": 1429,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4444:48:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1430,
                        "nodeType": "EmitStatement",
                        "src": "4439:53:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1399,
                    "nodeType": "StructuredDocumentation",
                    "src": "4148:56:7",
                    "text": " @dev See {IERC721-setApprovalForAll}."
                  },
                  "functionSelector": "a22cb465",
                  "id": 1432,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setApprovalForAll",
                  "nameLocation": "4218:17:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 1405,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4284:8:7"
                  },
                  "parameters": {
                    "id": 1404,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1401,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "4244:8:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1432,
                        "src": "4236:16:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1400,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4236:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1403,
                        "mutability": "mutable",
                        "name": "approved",
                        "nameLocation": "4259:8:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1432,
                        "src": "4254:13:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1402,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4254:4:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4235:33:7"
                  },
                  "returnParameters": {
                    "id": 1406,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4293:0:7"
                  },
                  "scope": 1933,
                  "src": "4209:290:7",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    2036
                  ],
                  "body": {
                    "id": 1449,
                    "nodeType": "Block",
                    "src": "4668:59:7",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 1443,
                              "name": "_operatorApprovals",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1163,
                              "src": "4685:18:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$",
                                "typeString": "mapping(address => mapping(address => bool))"
                              }
                            },
                            "id": 1445,
                            "indexExpression": {
                              "id": 1444,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1435,
                              "src": "4704:5:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "4685:25:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_bool_$",
                              "typeString": "mapping(address => bool)"
                            }
                          },
                          "id": 1447,
                          "indexExpression": {
                            "id": 1446,
                            "name": "operator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1437,
                            "src": "4711:8:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "4685:35:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 1442,
                        "id": 1448,
                        "nodeType": "Return",
                        "src": "4678:42:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1433,
                    "nodeType": "StructuredDocumentation",
                    "src": "4505:55:7",
                    "text": " @dev See {IERC721-isApprovedForAll}."
                  },
                  "functionSelector": "e985e9c5",
                  "id": 1450,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isApprovedForAll",
                  "nameLocation": "4574:16:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 1439,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4644:8:7"
                  },
                  "parameters": {
                    "id": 1438,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1435,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "4599:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1450,
                        "src": "4591:13:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1434,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4591:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1437,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "4614:8:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1450,
                        "src": "4606:16:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1436,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4606:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4590:33:7"
                  },
                  "returnParameters": {
                    "id": 1442,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1441,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1450,
                        "src": "4662:4:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1440,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4662:4:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4661:6:7"
                  },
                  "scope": 1933,
                  "src": "4565:162:7",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    2002
                  ],
                  "body": {
                    "id": 1476,
                    "nodeType": "Block",
                    "src": "4908:211:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 1463,
                                    "name": "_msgSender",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2403,
                                    "src": "4997:10:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                      "typeString": "function () view returns (address)"
                                    }
                                  },
                                  "id": 1464,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "4997:12:7",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1465,
                                  "name": "tokenId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1457,
                                  "src": "5011:7:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 1462,
                                "name": "_isApprovedOrOwner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1614,
                                "src": "4978:18:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint256_$returns$_t_bool_$",
                                  "typeString": "function (address,uint256) view returns (bool)"
                                }
                              },
                              "id": 1466,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4978:41:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564",
                              "id": 1467,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5021:51:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
                                "typeString": "literal_string \"ERC721: transfer caller is not owner nor approved\""
                              },
                              "value": "ERC721: transfer caller is not owner nor approved"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
                                "typeString": "literal_string \"ERC721: transfer caller is not owner nor approved\""
                              }
                            ],
                            "id": 1461,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4970:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1468,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4970:103:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1469,
                        "nodeType": "ExpressionStatement",
                        "src": "4970:103:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1471,
                              "name": "from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1453,
                              "src": "5094:4:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1472,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1455,
                              "src": "5100:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1473,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1457,
                              "src": "5104:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1470,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1835,
                            "src": "5084:9:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 1474,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5084:28:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1475,
                        "nodeType": "ExpressionStatement",
                        "src": "5084:28:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1451,
                    "nodeType": "StructuredDocumentation",
                    "src": "4733:51:7",
                    "text": " @dev See {IERC721-transferFrom}."
                  },
                  "functionSelector": "23b872dd",
                  "id": 1477,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferFrom",
                  "nameLocation": "4798:12:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 1459,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4899:8:7"
                  },
                  "parameters": {
                    "id": 1458,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1453,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "4828:4:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1477,
                        "src": "4820:12:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1452,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4820:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1455,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "4850:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1477,
                        "src": "4842:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1454,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4842:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1457,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "4870:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1477,
                        "src": "4862:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1456,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4862:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4810:73:7"
                  },
                  "returnParameters": {
                    "id": 1460,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4908:0:7"
                  },
                  "scope": 1933,
                  "src": "4789:330:7",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    1992
                  ],
                  "body": {
                    "id": 1495,
                    "nodeType": "Block",
                    "src": "5308:56:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1489,
                              "name": "from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1480,
                              "src": "5335:4:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1490,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1482,
                              "src": "5341:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1491,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1484,
                              "src": "5345:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "hexValue": "",
                              "id": 1492,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5354:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
                                "typeString": "literal_string \"\""
                              },
                              "value": ""
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
                                "typeString": "literal_string \"\""
                              }
                            ],
                            "id": 1488,
                            "name": "safeTransferFrom",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1496,
                              1526
                            ],
                            "referencedDeclaration": 1526,
                            "src": "5318:16:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$",
                              "typeString": "function (address,address,uint256,bytes memory)"
                            }
                          },
                          "id": 1493,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5318:39:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1494,
                        "nodeType": "ExpressionStatement",
                        "src": "5318:39:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1478,
                    "nodeType": "StructuredDocumentation",
                    "src": "5125:55:7",
                    "text": " @dev See {IERC721-safeTransferFrom}."
                  },
                  "functionSelector": "42842e0e",
                  "id": 1496,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeTransferFrom",
                  "nameLocation": "5194:16:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 1486,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5299:8:7"
                  },
                  "parameters": {
                    "id": 1485,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1480,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "5228:4:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1496,
                        "src": "5220:12:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1479,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5220:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1482,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "5250:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1496,
                        "src": "5242:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1481,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5242:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1484,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "5270:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1496,
                        "src": "5262:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1483,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5262:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5210:73:7"
                  },
                  "returnParameters": {
                    "id": 1487,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5308:0:7"
                  },
                  "scope": 1933,
                  "src": "5185:179:7",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    2048
                  ],
                  "body": {
                    "id": 1525,
                    "nodeType": "Block",
                    "src": "5581:169:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 1511,
                                    "name": "_msgSender",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2403,
                                    "src": "5618:10:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                      "typeString": "function () view returns (address)"
                                    }
                                  },
                                  "id": 1512,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "5618:12:7",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1513,
                                  "name": "tokenId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1503,
                                  "src": "5632:7:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 1510,
                                "name": "_isApprovedOrOwner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1614,
                                "src": "5599:18:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint256_$returns$_t_bool_$",
                                  "typeString": "function (address,uint256) view returns (bool)"
                                }
                              },
                              "id": 1514,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5599:41:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564",
                              "id": 1515,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5642:51:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
                                "typeString": "literal_string \"ERC721: transfer caller is not owner nor approved\""
                              },
                              "value": "ERC721: transfer caller is not owner nor approved"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
                                "typeString": "literal_string \"ERC721: transfer caller is not owner nor approved\""
                              }
                            ],
                            "id": 1509,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5591:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1516,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5591:103:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1517,
                        "nodeType": "ExpressionStatement",
                        "src": "5591:103:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1519,
                              "name": "from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1499,
                              "src": "5718:4:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1520,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1501,
                              "src": "5724:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1521,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1503,
                              "src": "5728:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 1522,
                              "name": "_data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1505,
                              "src": "5737:5:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 1518,
                            "name": "_safeTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1555,
                            "src": "5704:13:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$",
                              "typeString": "function (address,address,uint256,bytes memory)"
                            }
                          },
                          "id": 1523,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5704:39:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1524,
                        "nodeType": "ExpressionStatement",
                        "src": "5704:39:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1497,
                    "nodeType": "StructuredDocumentation",
                    "src": "5370:55:7",
                    "text": " @dev See {IERC721-safeTransferFrom}."
                  },
                  "functionSelector": "b88d4fde",
                  "id": 1526,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeTransferFrom",
                  "nameLocation": "5439:16:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 1507,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5572:8:7"
                  },
                  "parameters": {
                    "id": 1506,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1499,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "5473:4:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1526,
                        "src": "5465:12:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1498,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5465:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1501,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "5495:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1526,
                        "src": "5487:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1500,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5487:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1503,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "5515:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1526,
                        "src": "5507:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1502,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5507:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1505,
                        "mutability": "mutable",
                        "name": "_data",
                        "nameLocation": "5545:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1526,
                        "src": "5532:18:7",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1504,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5532:5:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5455:101:7"
                  },
                  "returnParameters": {
                    "id": 1508,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5581:0:7"
                  },
                  "scope": 1933,
                  "src": "5430:320:7",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 1554,
                    "nodeType": "Block",
                    "src": "6753:166:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1539,
                              "name": "from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1529,
                              "src": "6773:4:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1540,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1531,
                              "src": "6779:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1541,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1533,
                              "src": "6783:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1538,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1835,
                            "src": "6763:9:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 1542,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6763:28:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1543,
                        "nodeType": "ExpressionStatement",
                        "src": "6763:28:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 1546,
                                  "name": "from",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1529,
                                  "src": "6832:4:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1547,
                                  "name": "to",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1531,
                                  "src": "6838:2:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1548,
                                  "name": "tokenId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1533,
                                  "src": "6842:7:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                {
                                  "id": 1549,
                                  "name": "_data",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1535,
                                  "src": "6851:5:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                ],
                                "id": 1545,
                                "name": "_checkOnERC721Received",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1921,
                                "src": "6809:22:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$",
                                  "typeString": "function (address,address,uint256,bytes memory) returns (bool)"
                                }
                              },
                              "id": 1550,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6809:48:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572",
                              "id": 1551,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6859:52:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
                                "typeString": "literal_string \"ERC721: transfer to non ERC721Receiver implementer\""
                              },
                              "value": "ERC721: transfer to non ERC721Receiver implementer"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
                                "typeString": "literal_string \"ERC721: transfer to non ERC721Receiver implementer\""
                              }
                            ],
                            "id": 1544,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6801:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1552,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6801:111:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1553,
                        "nodeType": "ExpressionStatement",
                        "src": "6801:111:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1527,
                    "nodeType": "StructuredDocumentation",
                    "src": "5756:851:7",
                    "text": " @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n are aware of the ERC721 protocol to prevent tokens from being forever locked.\n `_data` is additional data, it has no specified format and it is sent in call to `to`.\n This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.\n implement alternative mechanisms to perform token transfer, such as signature-based.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must exist and be owned by `from`.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n Emits a {Transfer} event."
                  },
                  "id": 1555,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_safeTransfer",
                  "nameLocation": "6621:13:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1536,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1529,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "6652:4:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1555,
                        "src": "6644:12:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1528,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6644:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1531,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "6674:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1555,
                        "src": "6666:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1530,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6666:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1533,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "6694:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1555,
                        "src": "6686:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1532,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6686:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1535,
                        "mutability": "mutable",
                        "name": "_data",
                        "nameLocation": "6724:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1555,
                        "src": "6711:18:7",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1534,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "6711:5:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6634:101:7"
                  },
                  "returnParameters": {
                    "id": 1537,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6753:0:7"
                  },
                  "scope": 1933,
                  "src": "6612:307:7",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1572,
                    "nodeType": "Block",
                    "src": "7293:54:7",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 1570,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "baseExpression": {
                              "id": 1563,
                              "name": "_owners",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1149,
                              "src": "7310:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_uint256_$_t_address_$",
                                "typeString": "mapping(uint256 => address)"
                              }
                            },
                            "id": 1565,
                            "indexExpression": {
                              "id": 1564,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1558,
                              "src": "7318:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "7310:16:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 1568,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7338:1:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                }
                              ],
                              "id": 1567,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "7330:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 1566,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "7330:7:7",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 1569,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "7330:10:7",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "7310:30:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 1562,
                        "id": 1571,
                        "nodeType": "Return",
                        "src": "7303:37:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1556,
                    "nodeType": "StructuredDocumentation",
                    "src": "6925:292:7",
                    "text": " @dev Returns whether `tokenId` exists.\n Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.\n Tokens start existing when they are minted (`_mint`),\n and stop existing when they are burned (`_burn`)."
                  },
                  "id": 1573,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_exists",
                  "nameLocation": "7231:7:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1559,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1558,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "7247:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1573,
                        "src": "7239:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1557,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7239:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7238:17:7"
                  },
                  "returnParameters": {
                    "id": 1562,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1561,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1573,
                        "src": "7287:4:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1560,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "7287:4:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7286:6:7"
                  },
                  "scope": 1933,
                  "src": "7222:125:7",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1613,
                    "nodeType": "Block",
                    "src": "7604:245:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 1585,
                                  "name": "tokenId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1578,
                                  "src": "7630:7:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 1584,
                                "name": "_exists",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1573,
                                "src": "7622:7:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_bool_$",
                                  "typeString": "function (uint256) view returns (bool)"
                                }
                              },
                              "id": 1586,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "7622:16:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e",
                              "id": 1587,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7640:46:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
                                "typeString": "literal_string \"ERC721: operator query for nonexistent token\""
                              },
                              "value": "ERC721: operator query for nonexistent token"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
                                "typeString": "literal_string \"ERC721: operator query for nonexistent token\""
                              }
                            ],
                            "id": 1583,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7614:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1588,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7614:73:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1589,
                        "nodeType": "ExpressionStatement",
                        "src": "7614:73:7"
                      },
                      {
                        "assignments": [
                          1591
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1591,
                            "mutability": "mutable",
                            "name": "owner",
                            "nameLocation": "7705:5:7",
                            "nodeType": "VariableDeclaration",
                            "scope": 1613,
                            "src": "7697:13:7",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 1590,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "7697:7:7",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1596,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1594,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1578,
                              "src": "7728:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 1592,
                              "name": "ERC721",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1933,
                              "src": "7713:6:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ERC721_$1933_$",
                                "typeString": "type(contract ERC721)"
                              }
                            },
                            "id": 1593,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "ownerOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1263,
                            "src": "7713:14:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_address_$",
                              "typeString": "function (uint256) view returns (address)"
                            }
                          },
                          "id": 1595,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7713:23:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7697:39:7"
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 1610,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "id": 1605,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  "id": 1599,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 1597,
                                    "name": "spender",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1576,
                                    "src": "7754:7:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "==",
                                  "rightExpression": {
                                    "id": 1598,
                                    "name": "owner",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1591,
                                    "src": "7765:5:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "src": "7754:16:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "||",
                                "rightExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  "id": 1604,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "arguments": [
                                      {
                                        "id": 1601,
                                        "name": "tokenId",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 1578,
                                        "src": "7786:7:7",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      ],
                                      "id": 1600,
                                      "name": "getApproved",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1398,
                                      "src": "7774:11:7",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_address_$",
                                        "typeString": "function (uint256) view returns (address)"
                                      }
                                    },
                                    "id": 1602,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "7774:20:7",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "==",
                                  "rightExpression": {
                                    "id": 1603,
                                    "name": "spender",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1576,
                                    "src": "7798:7:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "src": "7774:31:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "src": "7754:51:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "||",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "id": 1607,
                                    "name": "owner",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1591,
                                    "src": "7826:5:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 1608,
                                    "name": "spender",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1576,
                                    "src": "7833:7:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  ],
                                  "id": 1606,
                                  "name": "isApprovedForAll",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1450,
                                  "src": "7809:16:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$_t_address_$_t_address_$returns$_t_bool_$",
                                    "typeString": "function (address,address) view returns (bool)"
                                  }
                                },
                                "id": 1609,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7809:32:7",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "7754:87:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "id": 1611,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "7753:89:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 1582,
                        "id": 1612,
                        "nodeType": "Return",
                        "src": "7746:96:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1574,
                    "nodeType": "StructuredDocumentation",
                    "src": "7353:147:7",
                    "text": " @dev Returns whether `spender` is allowed to manage `tokenId`.\n Requirements:\n - `tokenId` must exist."
                  },
                  "id": 1614,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_isApprovedOrOwner",
                  "nameLocation": "7514:18:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1579,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1576,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "7541:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1614,
                        "src": "7533:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1575,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7533:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1578,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "7558:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1614,
                        "src": "7550:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1577,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7550:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7532:34:7"
                  },
                  "returnParameters": {
                    "id": 1582,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1581,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1614,
                        "src": "7598:4:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1580,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "7598:4:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7597:6:7"
                  },
                  "scope": 1933,
                  "src": "7505:344:7",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1628,
                    "nodeType": "Block",
                    "src": "8244:43:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1623,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1617,
                              "src": "8264:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1624,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1619,
                              "src": "8268:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "hexValue": "",
                              "id": 1625,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8277:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
                                "typeString": "literal_string \"\""
                              },
                              "value": ""
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
                                "typeString": "literal_string \"\""
                              }
                            ],
                            "id": 1622,
                            "name": "_safeMint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1629,
                              1658
                            ],
                            "referencedDeclaration": 1658,
                            "src": "8254:9:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$",
                              "typeString": "function (address,uint256,bytes memory)"
                            }
                          },
                          "id": 1626,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8254:26:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1627,
                        "nodeType": "ExpressionStatement",
                        "src": "8254:26:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1615,
                    "nodeType": "StructuredDocumentation",
                    "src": "7855:319:7",
                    "text": " @dev Safely mints `tokenId` and transfers it to `to`.\n Requirements:\n - `tokenId` must not exist.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n Emits a {Transfer} event."
                  },
                  "id": 1629,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_safeMint",
                  "nameLocation": "8188:9:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1620,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1617,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "8206:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1629,
                        "src": "8198:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1616,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8198:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1619,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "8218:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1629,
                        "src": "8210:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1618,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8210:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8197:29:7"
                  },
                  "returnParameters": {
                    "id": 1621,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8244:0:7"
                  },
                  "scope": 1933,
                  "src": "8179:108:7",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1657,
                    "nodeType": "Block",
                    "src": "8623:196:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1640,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1632,
                              "src": "8639:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1641,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1634,
                              "src": "8643:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1639,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1715,
                            "src": "8633:5:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 1642,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8633:18:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1643,
                        "nodeType": "ExpressionStatement",
                        "src": "8633:18:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "arguments": [
                                    {
                                      "hexValue": "30",
                                      "id": 1648,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "8713:1:7",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      }
                                    ],
                                    "id": 1647,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "8705:7:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 1646,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "8705:7:7",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 1649,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "8705:10:7",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1650,
                                  "name": "to",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1632,
                                  "src": "8717:2:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1651,
                                  "name": "tokenId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1634,
                                  "src": "8721:7:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                {
                                  "id": 1652,
                                  "name": "_data",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1636,
                                  "src": "8730:5:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                ],
                                "id": 1645,
                                "name": "_checkOnERC721Received",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1921,
                                "src": "8682:22:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$",
                                  "typeString": "function (address,address,uint256,bytes memory) returns (bool)"
                                }
                              },
                              "id": 1653,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8682:54:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572",
                              "id": 1654,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8750:52:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
                                "typeString": "literal_string \"ERC721: transfer to non ERC721Receiver implementer\""
                              },
                              "value": "ERC721: transfer to non ERC721Receiver implementer"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
                                "typeString": "literal_string \"ERC721: transfer to non ERC721Receiver implementer\""
                              }
                            ],
                            "id": 1644,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8661:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1655,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8661:151:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1656,
                        "nodeType": "ExpressionStatement",
                        "src": "8661:151:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1630,
                    "nodeType": "StructuredDocumentation",
                    "src": "8293:210:7",
                    "text": " @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is\n forwarded in {IERC721Receiver-onERC721Received} to contract recipients."
                  },
                  "id": 1658,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_safeMint",
                  "nameLocation": "8517:9:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1637,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1632,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "8544:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1658,
                        "src": "8536:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1631,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8536:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1634,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "8564:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1658,
                        "src": "8556:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1633,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8556:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1636,
                        "mutability": "mutable",
                        "name": "_data",
                        "nameLocation": "8594:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1658,
                        "src": "8581:18:7",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1635,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "8581:5:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8526:79:7"
                  },
                  "returnParameters": {
                    "id": 1638,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8623:0:7"
                  },
                  "scope": 1933,
                  "src": "8508:311:7",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1714,
                    "nodeType": "Block",
                    "src": "9202:311:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 1672,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1667,
                                "name": "to",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1661,
                                "src": "9220:2:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 1670,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9234:1:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 1669,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9226:7:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 1668,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9226:7:7",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 1671,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9226:10:7",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "9220:16:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
                              "id": 1673,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9238:34:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
                                "typeString": "literal_string \"ERC721: mint to the zero address\""
                              },
                              "value": "ERC721: mint to the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
                                "typeString": "literal_string \"ERC721: mint to the zero address\""
                              }
                            ],
                            "id": 1666,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9212:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1674,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9212:61:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1675,
                        "nodeType": "ExpressionStatement",
                        "src": "9212:61:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1680,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "UnaryOperation",
                              "operator": "!",
                              "prefix": true,
                              "src": "9291:17:7",
                              "subExpression": {
                                "arguments": [
                                  {
                                    "id": 1678,
                                    "name": "tokenId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1663,
                                    "src": "9300:7:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 1677,
                                  "name": "_exists",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1573,
                                  "src": "9292:7:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_bool_$",
                                    "typeString": "function (uint256) view returns (bool)"
                                  }
                                },
                                "id": 1679,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9292:16:7",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
                              "id": 1681,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9310:30:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
                                "typeString": "literal_string \"ERC721: token already minted\""
                              },
                              "value": "ERC721: token already minted"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
                                "typeString": "literal_string \"ERC721: token already minted\""
                              }
                            ],
                            "id": 1676,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9283:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1682,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9283:58:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1683,
                        "nodeType": "ExpressionStatement",
                        "src": "9283:58:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 1687,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9381:1:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 1686,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9373:7:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 1685,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9373:7:7",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 1688,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9373:10:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1689,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1661,
                              "src": "9385:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1690,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1663,
                              "src": "9389:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1684,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1932,
                            "src": "9352:20:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 1691,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9352:45:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1692,
                        "nodeType": "ExpressionStatement",
                        "src": "9352:45:7"
                      },
                      {
                        "expression": {
                          "id": 1697,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 1693,
                              "name": "_balances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1153,
                              "src": "9408:9:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 1695,
                            "indexExpression": {
                              "id": 1694,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1661,
                              "src": "9418:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "9408:13:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "hexValue": "31",
                            "id": 1696,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "9425:1:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "src": "9408:18:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 1698,
                        "nodeType": "ExpressionStatement",
                        "src": "9408:18:7"
                      },
                      {
                        "expression": {
                          "id": 1703,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 1699,
                              "name": "_owners",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1149,
                              "src": "9436:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_uint256_$_t_address_$",
                                "typeString": "mapping(uint256 => address)"
                              }
                            },
                            "id": 1701,
                            "indexExpression": {
                              "id": 1700,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1663,
                              "src": "9444:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "9436:16:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 1702,
                            "name": "to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1661,
                            "src": "9455:2:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "9436:21:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 1704,
                        "nodeType": "ExpressionStatement",
                        "src": "9436:21:7"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 1708,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9490:1:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 1707,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9482:7:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 1706,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9482:7:7",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 1709,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9482:10:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1710,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1661,
                              "src": "9494:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1711,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1663,
                              "src": "9498:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1705,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1948,
                            "src": "9473:8:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 1712,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9473:33:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1713,
                        "nodeType": "EmitStatement",
                        "src": "9468:38:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1659,
                    "nodeType": "StructuredDocumentation",
                    "src": "8825:311:7",
                    "text": " @dev Mints `tokenId` and transfers it to `to`.\n WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible\n Requirements:\n - `tokenId` must not exist.\n - `to` cannot be the zero address.\n Emits a {Transfer} event."
                  },
                  "id": 1715,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_mint",
                  "nameLocation": "9150:5:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1664,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1661,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "9164:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1715,
                        "src": "9156:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1660,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9156:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1663,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "9176:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1715,
                        "src": "9168:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1662,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9168:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9155:29:7"
                  },
                  "returnParameters": {
                    "id": 1665,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9202:0:7"
                  },
                  "scope": 1933,
                  "src": "9141:372:7",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1765,
                    "nodeType": "Block",
                    "src": "9779:299:7",
                    "statements": [
                      {
                        "assignments": [
                          1722
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1722,
                            "mutability": "mutable",
                            "name": "owner",
                            "nameLocation": "9797:5:7",
                            "nodeType": "VariableDeclaration",
                            "scope": 1765,
                            "src": "9789:13:7",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 1721,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "9789:7:7",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1727,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1725,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1718,
                              "src": "9820:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 1723,
                              "name": "ERC721",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1933,
                              "src": "9805:6:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ERC721_$1933_$",
                                "typeString": "type(contract ERC721)"
                              }
                            },
                            "id": 1724,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "ownerOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1263,
                            "src": "9805:14:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_address_$",
                              "typeString": "function (uint256) view returns (address)"
                            }
                          },
                          "id": 1726,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9805:23:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9789:39:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1729,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1722,
                              "src": "9860:5:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 1732,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9875:1:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 1731,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9867:7:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 1730,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9867:7:7",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 1733,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9867:10:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1734,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1718,
                              "src": "9879:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1728,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1932,
                            "src": "9839:20:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 1735,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9839:48:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1736,
                        "nodeType": "ExpressionStatement",
                        "src": "9839:48:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 1740,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9942:1:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 1739,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9934:7:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 1738,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9934:7:7",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 1741,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9934:10:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1742,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1718,
                              "src": "9946:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1737,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1859,
                            "src": "9925:8:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 1743,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9925:29:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1744,
                        "nodeType": "ExpressionStatement",
                        "src": "9925:29:7"
                      },
                      {
                        "expression": {
                          "id": 1749,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 1745,
                              "name": "_balances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1153,
                              "src": "9965:9:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 1747,
                            "indexExpression": {
                              "id": 1746,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1722,
                              "src": "9975:5:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "9965:16:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "-=",
                          "rightHandSide": {
                            "hexValue": "31",
                            "id": 1748,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "9985:1:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "src": "9965:21:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 1750,
                        "nodeType": "ExpressionStatement",
                        "src": "9965:21:7"
                      },
                      {
                        "expression": {
                          "id": 1754,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "delete",
                          "prefix": true,
                          "src": "9996:23:7",
                          "subExpression": {
                            "baseExpression": {
                              "id": 1751,
                              "name": "_owners",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1149,
                              "src": "10003:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_uint256_$_t_address_$",
                                "typeString": "mapping(uint256 => address)"
                              }
                            },
                            "id": 1753,
                            "indexExpression": {
                              "id": 1752,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1718,
                              "src": "10011:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "10003:16:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1755,
                        "nodeType": "ExpressionStatement",
                        "src": "9996:23:7"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 1757,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1722,
                              "src": "10044:5:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 1760,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "10059:1:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 1759,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "10051:7:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 1758,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "10051:7:7",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 1761,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10051:10:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1762,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1718,
                              "src": "10063:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1756,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1948,
                            "src": "10035:8:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 1763,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10035:36:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1764,
                        "nodeType": "EmitStatement",
                        "src": "10030:41:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1716,
                    "nodeType": "StructuredDocumentation",
                    "src": "9519:206:7",
                    "text": " @dev Destroys `tokenId`.\n The approval is cleared when the token is burned.\n Requirements:\n - `tokenId` must exist.\n Emits a {Transfer} event."
                  },
                  "id": 1766,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_burn",
                  "nameLocation": "9739:5:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1719,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1718,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "9753:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1766,
                        "src": "9745:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1717,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9745:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9744:17:7"
                  },
                  "returnParameters": {
                    "id": 1720,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9779:0:7"
                  },
                  "scope": 1933,
                  "src": "9730:348:7",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1834,
                    "nodeType": "Block",
                    "src": "10511:451:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 1782,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 1779,
                                    "name": "tokenId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1773,
                                    "src": "10544:7:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "expression": {
                                    "id": 1777,
                                    "name": "ERC721",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1933,
                                    "src": "10529:6:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_ERC721_$1933_$",
                                      "typeString": "type(contract ERC721)"
                                    }
                                  },
                                  "id": 1778,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "ownerOf",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 1263,
                                  "src": "10529:14:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_address_$",
                                    "typeString": "function (uint256) view returns (address)"
                                  }
                                },
                                "id": 1780,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10529:23:7",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 1781,
                                "name": "from",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1769,
                                "src": "10556:4:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "10529:31:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e",
                              "id": 1783,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10562:43:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950",
                                "typeString": "literal_string \"ERC721: transfer of token that is not own\""
                              },
                              "value": "ERC721: transfer of token that is not own"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950",
                                "typeString": "literal_string \"ERC721: transfer of token that is not own\""
                              }
                            ],
                            "id": 1776,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10521:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1784,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10521:85:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1785,
                        "nodeType": "ExpressionStatement",
                        "src": "10521:85:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 1792,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1787,
                                "name": "to",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1771,
                                "src": "10624:2:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 1790,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "10638:1:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 1789,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10630:7:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 1788,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10630:7:7",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 1791,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10630:10:7",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "10624:16:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f2061646472657373",
                              "id": 1793,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10642:38:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
                                "typeString": "literal_string \"ERC721: transfer to the zero address\""
                              },
                              "value": "ERC721: transfer to the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
                                "typeString": "literal_string \"ERC721: transfer to the zero address\""
                              }
                            ],
                            "id": 1786,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10616:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1794,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10616:65:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1795,
                        "nodeType": "ExpressionStatement",
                        "src": "10616:65:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1797,
                              "name": "from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1769,
                              "src": "10713:4:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1798,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1771,
                              "src": "10719:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1799,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1773,
                              "src": "10723:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1796,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1932,
                            "src": "10692:20:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 1800,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10692:39:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1801,
                        "nodeType": "ExpressionStatement",
                        "src": "10692:39:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 1805,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "10810:1:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 1804,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "10802:7:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 1803,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "10802:7:7",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 1806,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10802:10:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1807,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1773,
                              "src": "10814:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1802,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1859,
                            "src": "10793:8:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 1808,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10793:29:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1809,
                        "nodeType": "ExpressionStatement",
                        "src": "10793:29:7"
                      },
                      {
                        "expression": {
                          "id": 1814,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 1810,
                              "name": "_balances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1153,
                              "src": "10833:9:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 1812,
                            "indexExpression": {
                              "id": 1811,
                              "name": "from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1769,
                              "src": "10843:4:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "10833:15:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "-=",
                          "rightHandSide": {
                            "hexValue": "31",
                            "id": 1813,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "10852:1:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "src": "10833:20:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 1815,
                        "nodeType": "ExpressionStatement",
                        "src": "10833:20:7"
                      },
                      {
                        "expression": {
                          "id": 1820,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 1816,
                              "name": "_balances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1153,
                              "src": "10863:9:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 1818,
                            "indexExpression": {
                              "id": 1817,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1771,
                              "src": "10873:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "10863:13:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "hexValue": "31",
                            "id": 1819,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "10880:1:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "src": "10863:18:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 1821,
                        "nodeType": "ExpressionStatement",
                        "src": "10863:18:7"
                      },
                      {
                        "expression": {
                          "id": 1826,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 1822,
                              "name": "_owners",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1149,
                              "src": "10891:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_uint256_$_t_address_$",
                                "typeString": "mapping(uint256 => address)"
                              }
                            },
                            "id": 1824,
                            "indexExpression": {
                              "id": 1823,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1773,
                              "src": "10899:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "10891:16:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 1825,
                            "name": "to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1771,
                            "src": "10910:2:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "10891:21:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 1827,
                        "nodeType": "ExpressionStatement",
                        "src": "10891:21:7"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 1829,
                              "name": "from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1769,
                              "src": "10937:4:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1830,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1771,
                              "src": "10943:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1831,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1773,
                              "src": "10947:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1828,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1948,
                            "src": "10928:8:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 1832,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10928:27:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1833,
                        "nodeType": "EmitStatement",
                        "src": "10923:32:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1767,
                    "nodeType": "StructuredDocumentation",
                    "src": "10084:313:7",
                    "text": " @dev Transfers `tokenId` from `from` to `to`.\n  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.\n Requirements:\n - `to` cannot be the zero address.\n - `tokenId` token must be owned by `from`.\n Emits a {Transfer} event."
                  },
                  "id": 1835,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_transfer",
                  "nameLocation": "10411:9:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1774,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1769,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "10438:4:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1835,
                        "src": "10430:12:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1768,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10430:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1771,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "10460:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1835,
                        "src": "10452:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1770,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10452:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1773,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "10480:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1835,
                        "src": "10472:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1772,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10472:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10420:73:7"
                  },
                  "returnParameters": {
                    "id": 1775,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10511:0:7"
                  },
                  "scope": 1933,
                  "src": "10402:560:7",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1858,
                    "nodeType": "Block",
                    "src": "11137:107:7",
                    "statements": [
                      {
                        "expression": {
                          "id": 1847,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 1843,
                              "name": "_tokenApprovals",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1157,
                              "src": "11147:15:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_uint256_$_t_address_$",
                                "typeString": "mapping(uint256 => address)"
                              }
                            },
                            "id": 1845,
                            "indexExpression": {
                              "id": 1844,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1840,
                              "src": "11163:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "11147:24:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 1846,
                            "name": "to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1838,
                            "src": "11174:2:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "11147:29:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 1848,
                        "nodeType": "ExpressionStatement",
                        "src": "11147:29:7"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 1852,
                                  "name": "tokenId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1840,
                                  "src": "11215:7:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "expression": {
                                  "id": 1850,
                                  "name": "ERC721",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1933,
                                  "src": "11200:6:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_contract$_ERC721_$1933_$",
                                    "typeString": "type(contract ERC721)"
                                  }
                                },
                                "id": 1851,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "ownerOf",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 1263,
                                "src": "11200:14:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_address_$",
                                  "typeString": "function (uint256) view returns (address)"
                                }
                              },
                              "id": 1853,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11200:23:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1854,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1838,
                              "src": "11225:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1855,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1840,
                              "src": "11229:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1849,
                            "name": "Approval",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1957,
                            "src": "11191:8:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 1856,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11191:46:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1857,
                        "nodeType": "EmitStatement",
                        "src": "11186:51:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1836,
                    "nodeType": "StructuredDocumentation",
                    "src": "10968:100:7",
                    "text": " @dev Approve `to` to operate on `tokenId`\n Emits a {Approval} event."
                  },
                  "id": 1859,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_approve",
                  "nameLocation": "11082:8:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1841,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1838,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "11099:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1859,
                        "src": "11091:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1837,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11091:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1840,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "11111:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1859,
                        "src": "11103:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1839,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11103:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11090:29:7"
                  },
                  "returnParameters": {
                    "id": 1842,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11137:0:7"
                  },
                  "scope": 1933,
                  "src": "11073:171:7",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1920,
                    "nodeType": "Block",
                    "src": "11953:622:7",
                    "statements": [
                      {
                        "condition": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 1873,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1864,
                              "src": "11967:2:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "id": 1874,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "isContract",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 2114,
                            "src": "11967:13:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$bound_to$_t_address_$",
                              "typeString": "function (address) view returns (bool)"
                            }
                          },
                          "id": 1875,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11967:15:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 1918,
                          "nodeType": "Block",
                          "src": "12533:36:7",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "74727565",
                                "id": 1916,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "bool",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "12554:4:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "value": "true"
                              },
                              "functionReturnParameters": 1872,
                              "id": 1917,
                              "nodeType": "Return",
                              "src": "12547:11:7"
                            }
                          ]
                        },
                        "id": 1919,
                        "nodeType": "IfStatement",
                        "src": "11963:606:7",
                        "trueBody": {
                          "id": 1915,
                          "nodeType": "Block",
                          "src": "11984:543:7",
                          "statements": [
                            {
                              "clauses": [
                                {
                                  "block": {
                                    "id": 1895,
                                    "nodeType": "Block",
                                    "src": "12099:91:7",
                                    "statements": [
                                      {
                                        "expression": {
                                          "commonType": {
                                            "typeIdentifier": "t_bytes4",
                                            "typeString": "bytes4"
                                          },
                                          "id": 1893,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "id": 1889,
                                            "name": "retval",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 1887,
                                            "src": "12124:6:7",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_bytes4",
                                              "typeString": "bytes4"
                                            }
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": "==",
                                          "rightExpression": {
                                            "expression": {
                                              "expression": {
                                                "id": 1890,
                                                "name": "IERC721Receiver",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 2067,
                                                "src": "12134:15:7",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_type$_t_contract$_IERC721Receiver_$2067_$",
                                                  "typeString": "type(contract IERC721Receiver)"
                                                }
                                              },
                                              "id": 1891,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": true,
                                              "lValueRequested": false,
                                              "memberName": "onERC721Received",
                                              "nodeType": "MemberAccess",
                                              "referencedDeclaration": 2066,
                                              "src": "12134:32:7",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$returns$_t_bytes4_$",
                                                "typeString": "function IERC721Receiver.onERC721Received(address,address,uint256,bytes calldata) returns (bytes4)"
                                              }
                                            },
                                            "id": 1892,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "lValueRequested": false,
                                            "memberName": "selector",
                                            "nodeType": "MemberAccess",
                                            "src": "12134:41:7",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_bytes4",
                                              "typeString": "bytes4"
                                            }
                                          },
                                          "src": "12124:51:7",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_bool",
                                            "typeString": "bool"
                                          }
                                        },
                                        "functionReturnParameters": 1872,
                                        "id": 1894,
                                        "nodeType": "Return",
                                        "src": "12117:58:7"
                                      }
                                    ]
                                  },
                                  "errorName": "",
                                  "id": 1896,
                                  "nodeType": "TryCatchClause",
                                  "parameters": {
                                    "id": 1888,
                                    "nodeType": "ParameterList",
                                    "parameters": [
                                      {
                                        "constant": false,
                                        "id": 1887,
                                        "mutability": "mutable",
                                        "name": "retval",
                                        "nameLocation": "12091:6:7",
                                        "nodeType": "VariableDeclaration",
                                        "scope": 1896,
                                        "src": "12084:13:7",
                                        "stateVariable": false,
                                        "storageLocation": "default",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bytes4",
                                          "typeString": "bytes4"
                                        },
                                        "typeName": {
                                          "id": 1886,
                                          "name": "bytes4",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "12084:6:7",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_bytes4",
                                            "typeString": "bytes4"
                                          }
                                        },
                                        "visibility": "internal"
                                      }
                                    ],
                                    "src": "12083:15:7"
                                  },
                                  "src": "12075:115:7"
                                },
                                {
                                  "block": {
                                    "id": 1912,
                                    "nodeType": "Block",
                                    "src": "12219:298:7",
                                    "statements": [
                                      {
                                        "condition": {
                                          "commonType": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          },
                                          "id": 1903,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "expression": {
                                              "id": 1900,
                                              "name": "reason",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 1898,
                                              "src": "12241:6:7",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_bytes_memory_ptr",
                                                "typeString": "bytes memory"
                                              }
                                            },
                                            "id": 1901,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "memberName": "length",
                                            "nodeType": "MemberAccess",
                                            "src": "12241:13:7",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": "==",
                                          "rightExpression": {
                                            "hexValue": "30",
                                            "id": 1902,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "number",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "12258:1:7",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_rational_0_by_1",
                                              "typeString": "int_const 0"
                                            },
                                            "value": "0"
                                          },
                                          "src": "12241:18:7",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_bool",
                                            "typeString": "bool"
                                          }
                                        },
                                        "falseBody": {
                                          "id": 1910,
                                          "nodeType": "Block",
                                          "src": "12368:135:7",
                                          "statements": [
                                            {
                                              "AST": {
                                                "nodeType": "YulBlock",
                                                "src": "12399:86:7",
                                                "statements": [
                                                  {
                                                    "expression": {
                                                      "arguments": [
                                                        {
                                                          "arguments": [
                                                            {
                                                              "kind": "number",
                                                              "nodeType": "YulLiteral",
                                                              "src": "12436:2:7",
                                                              "type": "",
                                                              "value": "32"
                                                            },
                                                            {
                                                              "name": "reason",
                                                              "nodeType": "YulIdentifier",
                                                              "src": "12440:6:7"
                                                            }
                                                          ],
                                                          "functionName": {
                                                            "name": "add",
                                                            "nodeType": "YulIdentifier",
                                                            "src": "12432:3:7"
                                                          },
                                                          "nodeType": "YulFunctionCall",
                                                          "src": "12432:15:7"
                                                        },
                                                        {
                                                          "arguments": [
                                                            {
                                                              "name": "reason",
                                                              "nodeType": "YulIdentifier",
                                                              "src": "12455:6:7"
                                                            }
                                                          ],
                                                          "functionName": {
                                                            "name": "mload",
                                                            "nodeType": "YulIdentifier",
                                                            "src": "12449:5:7"
                                                          },
                                                          "nodeType": "YulFunctionCall",
                                                          "src": "12449:13:7"
                                                        }
                                                      ],
                                                      "functionName": {
                                                        "name": "revert",
                                                        "nodeType": "YulIdentifier",
                                                        "src": "12425:6:7"
                                                      },
                                                      "nodeType": "YulFunctionCall",
                                                      "src": "12425:38:7"
                                                    },
                                                    "nodeType": "YulExpressionStatement",
                                                    "src": "12425:38:7"
                                                  }
                                                ]
                                              },
                                              "evmVersion": "berlin",
                                              "externalReferences": [
                                                {
                                                  "declaration": 1898,
                                                  "isOffset": false,
                                                  "isSlot": false,
                                                  "src": "12440:6:7",
                                                  "valueSize": 1
                                                },
                                                {
                                                  "declaration": 1898,
                                                  "isOffset": false,
                                                  "isSlot": false,
                                                  "src": "12455:6:7",
                                                  "valueSize": 1
                                                }
                                              ],
                                              "id": 1909,
                                              "nodeType": "InlineAssembly",
                                              "src": "12390:95:7"
                                            }
                                          ]
                                        },
                                        "id": 1911,
                                        "nodeType": "IfStatement",
                                        "src": "12237:266:7",
                                        "trueBody": {
                                          "id": 1908,
                                          "nodeType": "Block",
                                          "src": "12261:101:7",
                                          "statements": [
                                            {
                                              "expression": {
                                                "arguments": [
                                                  {
                                                    "hexValue": "4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572",
                                                    "id": 1905,
                                                    "isConstant": false,
                                                    "isLValue": false,
                                                    "isPure": true,
                                                    "kind": "string",
                                                    "lValueRequested": false,
                                                    "nodeType": "Literal",
                                                    "src": "12290:52:7",
                                                    "typeDescriptions": {
                                                      "typeIdentifier": "t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
                                                      "typeString": "literal_string \"ERC721: transfer to non ERC721Receiver implementer\""
                                                    },
                                                    "value": "ERC721: transfer to non ERC721Receiver implementer"
                                                  }
                                                ],
                                                "expression": {
                                                  "argumentTypes": [
                                                    {
                                                      "typeIdentifier": "t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
                                                      "typeString": "literal_string \"ERC721: transfer to non ERC721Receiver implementer\""
                                                    }
                                                  ],
                                                  "id": 1904,
                                                  "name": "revert",
                                                  "nodeType": "Identifier",
                                                  "overloadedDeclarations": [
                                                    -19,
                                                    -19
                                                  ],
                                                  "referencedDeclaration": -19,
                                                  "src": "12283:6:7",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                                    "typeString": "function (string memory) pure"
                                                  }
                                                },
                                                "id": 1906,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": false,
                                                "kind": "functionCall",
                                                "lValueRequested": false,
                                                "names": [],
                                                "nodeType": "FunctionCall",
                                                "src": "12283:60:7",
                                                "tryCall": false,
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_tuple$__$",
                                                  "typeString": "tuple()"
                                                }
                                              },
                                              "id": 1907,
                                              "nodeType": "ExpressionStatement",
                                              "src": "12283:60:7"
                                            }
                                          ]
                                        }
                                      }
                                    ]
                                  },
                                  "errorName": "",
                                  "id": 1913,
                                  "nodeType": "TryCatchClause",
                                  "parameters": {
                                    "id": 1899,
                                    "nodeType": "ParameterList",
                                    "parameters": [
                                      {
                                        "constant": false,
                                        "id": 1898,
                                        "mutability": "mutable",
                                        "name": "reason",
                                        "nameLocation": "12211:6:7",
                                        "nodeType": "VariableDeclaration",
                                        "scope": 1913,
                                        "src": "12198:19:7",
                                        "stateVariable": false,
                                        "storageLocation": "memory",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes"
                                        },
                                        "typeName": {
                                          "id": 1897,
                                          "name": "bytes",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "12198:5:7",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_bytes_storage_ptr",
                                            "typeString": "bytes"
                                          }
                                        },
                                        "visibility": "internal"
                                      }
                                    ],
                                    "src": "12197:21:7"
                                  },
                                  "src": "12191:326:7"
                                }
                              ],
                              "externalCall": {
                                "arguments": [
                                  {
                                    "arguments": [],
                                    "expression": {
                                      "argumentTypes": [],
                                      "id": 1880,
                                      "name": "_msgSender",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2403,
                                      "src": "12039:10:7",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                        "typeString": "function () view returns (address)"
                                      }
                                    },
                                    "id": 1881,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "12039:12:7",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 1882,
                                    "name": "from",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1862,
                                    "src": "12053:4:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 1883,
                                    "name": "tokenId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1866,
                                    "src": "12059:7:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  {
                                    "id": 1884,
                                    "name": "_data",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1868,
                                    "src": "12068:5:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes_memory_ptr",
                                      "typeString": "bytes memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    {
                                      "typeIdentifier": "t_bytes_memory_ptr",
                                      "typeString": "bytes memory"
                                    }
                                  ],
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 1877,
                                        "name": "to",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 1864,
                                        "src": "12018:2:7",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      ],
                                      "id": 1876,
                                      "name": "IERC721Receiver",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2067,
                                      "src": "12002:15:7",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_IERC721Receiver_$2067_$",
                                        "typeString": "type(contract IERC721Receiver)"
                                      }
                                    },
                                    "id": 1878,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "12002:19:7",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IERC721Receiver_$2067",
                                      "typeString": "contract IERC721Receiver"
                                    }
                                  },
                                  "id": 1879,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "onERC721Received",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 2066,
                                  "src": "12002:36:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bytes4_$",
                                    "typeString": "function (address,address,uint256,bytes memory) external returns (bytes4)"
                                  }
                                },
                                "id": 1885,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "12002:72:7",
                                "tryCall": true,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              },
                              "id": 1914,
                              "nodeType": "TryStatement",
                              "src": "11998:519:7"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1860,
                    "nodeType": "StructuredDocumentation",
                    "src": "11250:542:7",
                    "text": " @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.\n The call is not executed if the target address is not a contract.\n @param from address representing the previous owner of the given token ID\n @param to target address that will receive the tokens\n @param tokenId uint256 ID of the token to be transferred\n @param _data bytes optional data to send along with the call\n @return bool whether the call correctly returned the expected magic value"
                  },
                  "id": 1921,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_checkOnERC721Received",
                  "nameLocation": "11806:22:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1869,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1862,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "11846:4:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1921,
                        "src": "11838:12:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1861,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11838:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1864,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "11868:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1921,
                        "src": "11860:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1863,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11860:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1866,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "11888:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1921,
                        "src": "11880:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1865,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11880:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1868,
                        "mutability": "mutable",
                        "name": "_data",
                        "nameLocation": "11918:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1921,
                        "src": "11905:18:7",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1867,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "11905:5:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11828:101:7"
                  },
                  "returnParameters": {
                    "id": 1872,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1871,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1921,
                        "src": "11947:4:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1870,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "11947:4:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11946:6:7"
                  },
                  "scope": 1933,
                  "src": "11797:778:7",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 1931,
                    "nodeType": "Block",
                    "src": "13251:2:7",
                    "statements": []
                  },
                  "documentation": {
                    "id": 1922,
                    "nodeType": "StructuredDocumentation",
                    "src": "12581:545:7",
                    "text": " @dev Hook that is called before any token transfer. This includes minting\n and burning.\n Calling conditions:\n - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be\n transferred to `to`.\n - When `from` is zero, `tokenId` will be minted for `to`.\n - When `to` is zero, ``from``'s `tokenId` will be burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."
                  },
                  "id": 1932,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_beforeTokenTransfer",
                  "nameLocation": "13140:20:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1929,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1924,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "13178:4:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1932,
                        "src": "13170:12:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1923,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "13170:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1926,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "13200:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1932,
                        "src": "13192:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1925,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "13192:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1928,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "13220:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1932,
                        "src": "13212:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1927,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13212:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13160:73:7"
                  },
                  "returnParameters": {
                    "id": 1930,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13251:0:7"
                  },
                  "scope": 1933,
                  "src": "13131:122:7",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 1934,
              "src": "554:12701:7",
              "usedErrors": []
            }
          ],
          "src": "33:13223:7"
        },
        "id": 7
      },
      "@openzeppelin/contracts/token/ERC721/IERC721.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721.sol",
          "exportedSymbols": {
            "IERC165": [
              3433
            ],
            "IERC721": [
              2049
            ]
          },
          "id": 2050,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1935,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:8"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/introspection/IERC165.sol",
              "file": "../../utils/introspection/IERC165.sol",
              "id": 1936,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 2050,
              "sourceUnit": 3434,
              "src": "58:47:8",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 1938,
                    "name": "IERC165",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3433,
                    "src": "196:7:8"
                  },
                  "id": 1939,
                  "nodeType": "InheritanceSpecifier",
                  "src": "196:7:8"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 1937,
                "nodeType": "StructuredDocumentation",
                "src": "107:67:8",
                "text": " @dev Required interface of an ERC721 compliant contract."
              },
              "fullyImplemented": false,
              "id": 2049,
              "linearizedBaseContracts": [
                2049,
                3433
              ],
              "name": "IERC721",
              "nameLocation": "185:7:8",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 1940,
                    "nodeType": "StructuredDocumentation",
                    "src": "210:88:8",
                    "text": " @dev Emitted when `tokenId` token is transferred from `from` to `to`."
                  },
                  "id": 1948,
                  "name": "Transfer",
                  "nameLocation": "309:8:8",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 1947,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1942,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "334:4:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1948,
                        "src": "318:20:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1941,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "318:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1944,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "356:2:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1948,
                        "src": "340:18:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1943,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "340:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1946,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "376:7:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1948,
                        "src": "360:23:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1945,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "360:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "317:67:8"
                  },
                  "src": "303:82:8"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 1949,
                    "nodeType": "StructuredDocumentation",
                    "src": "391:94:8",
                    "text": " @dev Emitted when `owner` enables `approved` to manage the `tokenId` token."
                  },
                  "id": 1957,
                  "name": "Approval",
                  "nameLocation": "496:8:8",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 1956,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1951,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "521:5:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1957,
                        "src": "505:21:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1950,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "505:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1953,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "approved",
                        "nameLocation": "544:8:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1957,
                        "src": "528:24:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1952,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "528:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1955,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "570:7:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1957,
                        "src": "554:23:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1954,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "554:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "504:74:8"
                  },
                  "src": "490:89:8"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 1958,
                    "nodeType": "StructuredDocumentation",
                    "src": "585:117:8",
                    "text": " @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."
                  },
                  "id": 1966,
                  "name": "ApprovalForAll",
                  "nameLocation": "713:14:8",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 1965,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1960,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "744:5:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1966,
                        "src": "728:21:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1959,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "728:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1962,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "767:8:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1966,
                        "src": "751:24:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1961,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "751:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1964,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "approved",
                        "nameLocation": "782:8:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1966,
                        "src": "777:13:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1963,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "777:4:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "727:64:8"
                  },
                  "src": "707:85:8"
                },
                {
                  "documentation": {
                    "id": 1967,
                    "nodeType": "StructuredDocumentation",
                    "src": "798:76:8",
                    "text": " @dev Returns the number of tokens in ``owner``'s account."
                  },
                  "functionSelector": "70a08231",
                  "id": 1974,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOf",
                  "nameLocation": "888:9:8",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1970,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1969,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "906:5:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1974,
                        "src": "898:13:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1968,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "898:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "897:15:8"
                  },
                  "returnParameters": {
                    "id": 1973,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1972,
                        "mutability": "mutable",
                        "name": "balance",
                        "nameLocation": "944:7:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1974,
                        "src": "936:15:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1971,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "936:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "935:17:8"
                  },
                  "scope": 2049,
                  "src": "879:74:8",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1975,
                    "nodeType": "StructuredDocumentation",
                    "src": "959:131:8",
                    "text": " @dev Returns the owner of the `tokenId` token.\n Requirements:\n - `tokenId` must exist."
                  },
                  "functionSelector": "6352211e",
                  "id": 1982,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "ownerOf",
                  "nameLocation": "1104:7:8",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1978,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1977,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "1120:7:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1982,
                        "src": "1112:15:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1976,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1112:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1111:17:8"
                  },
                  "returnParameters": {
                    "id": 1981,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1980,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1160:5:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1982,
                        "src": "1152:13:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1979,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1152:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1151:15:8"
                  },
                  "scope": 2049,
                  "src": "1095:72:8",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1983,
                    "nodeType": "StructuredDocumentation",
                    "src": "1173:690:8",
                    "text": " @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n are aware of the ERC721 protocol to prevent tokens from being forever locked.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must exist and be owned by `from`.\n - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n Emits a {Transfer} event."
                  },
                  "functionSelector": "42842e0e",
                  "id": 1992,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeTransferFrom",
                  "nameLocation": "1877:16:8",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1990,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1985,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "1911:4:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1992,
                        "src": "1903:12:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1984,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1903:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1987,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1933:2:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1992,
                        "src": "1925:10:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1986,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1925:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1989,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "1953:7:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1992,
                        "src": "1945:15:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1988,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1945:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1893:73:8"
                  },
                  "returnParameters": {
                    "id": 1991,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1975:0:8"
                  },
                  "scope": 2049,
                  "src": "1868:108:8",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1993,
                    "nodeType": "StructuredDocumentation",
                    "src": "1982:504:8",
                    "text": " @dev Transfers `tokenId` token from `from` to `to`.\n WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must be owned by `from`.\n - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n Emits a {Transfer} event."
                  },
                  "functionSelector": "23b872dd",
                  "id": 2002,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferFrom",
                  "nameLocation": "2500:12:8",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2000,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1995,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "2530:4:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 2002,
                        "src": "2522:12:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1994,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2522:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1997,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2552:2:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 2002,
                        "src": "2544:10:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1996,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2544:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1999,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "2572:7:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 2002,
                        "src": "2564:15:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1998,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2564:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2512:73:8"
                  },
                  "returnParameters": {
                    "id": 2001,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2594:0:8"
                  },
                  "scope": 2049,
                  "src": "2491:104:8",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 2003,
                    "nodeType": "StructuredDocumentation",
                    "src": "2601:452:8",
                    "text": " @dev Gives permission to `to` to transfer `tokenId` token to another account.\n The approval is cleared when the token is transferred.\n Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n Requirements:\n - The caller must own the token or be an approved operator.\n - `tokenId` must exist.\n Emits an {Approval} event."
                  },
                  "functionSelector": "095ea7b3",
                  "id": 2010,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "approve",
                  "nameLocation": "3067:7:8",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2008,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2005,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "3083:2:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 2010,
                        "src": "3075:10:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2004,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3075:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2007,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "3095:7:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 2010,
                        "src": "3087:15:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2006,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3087:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3074:29:8"
                  },
                  "returnParameters": {
                    "id": 2009,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3112:0:8"
                  },
                  "scope": 2049,
                  "src": "3058:55:8",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 2011,
                    "nodeType": "StructuredDocumentation",
                    "src": "3119:139:8",
                    "text": " @dev Returns the account approved for `tokenId` token.\n Requirements:\n - `tokenId` must exist."
                  },
                  "functionSelector": "081812fc",
                  "id": 2018,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getApproved",
                  "nameLocation": "3272:11:8",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2014,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2013,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "3292:7:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 2018,
                        "src": "3284:15:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2012,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3284:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3283:17:8"
                  },
                  "returnParameters": {
                    "id": 2017,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2016,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "3332:8:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 2018,
                        "src": "3324:16:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2015,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3324:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3323:18:8"
                  },
                  "scope": 2049,
                  "src": "3263:79:8",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 2019,
                    "nodeType": "StructuredDocumentation",
                    "src": "3348:309:8",
                    "text": " @dev Approve or remove `operator` as an operator for the caller.\n Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n Requirements:\n - The `operator` cannot be the caller.\n Emits an {ApprovalForAll} event."
                  },
                  "functionSelector": "a22cb465",
                  "id": 2026,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setApprovalForAll",
                  "nameLocation": "3671:17:8",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2024,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2021,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "3697:8:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 2026,
                        "src": "3689:16:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2020,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3689:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2023,
                        "mutability": "mutable",
                        "name": "_approved",
                        "nameLocation": "3712:9:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 2026,
                        "src": "3707:14:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 2022,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3707:4:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3688:34:8"
                  },
                  "returnParameters": {
                    "id": 2025,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3731:0:8"
                  },
                  "scope": 2049,
                  "src": "3662:70:8",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 2027,
                    "nodeType": "StructuredDocumentation",
                    "src": "3738:138:8",
                    "text": " @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n See {setApprovalForAll}"
                  },
                  "functionSelector": "e985e9c5",
                  "id": 2036,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isApprovedForAll",
                  "nameLocation": "3890:16:8",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2032,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2029,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "3915:5:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 2036,
                        "src": "3907:13:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2028,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3907:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2031,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "3930:8:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 2036,
                        "src": "3922:16:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2030,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3922:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3906:33:8"
                  },
                  "returnParameters": {
                    "id": 2035,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2034,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2036,
                        "src": "3963:4:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 2033,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3963:4:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3962:6:8"
                  },
                  "scope": 2049,
                  "src": "3881:88:8",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 2037,
                    "nodeType": "StructuredDocumentation",
                    "src": "3975:556:8",
                    "text": " @dev Safely transfers `tokenId` token from `from` to `to`.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must exist and be owned by `from`.\n - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n Emits a {Transfer} event."
                  },
                  "functionSelector": "b88d4fde",
                  "id": 2048,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeTransferFrom",
                  "nameLocation": "4545:16:8",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2046,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2039,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "4579:4:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 2048,
                        "src": "4571:12:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2038,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4571:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2041,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "4601:2:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 2048,
                        "src": "4593:10:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2040,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4593:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2043,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "4621:7:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 2048,
                        "src": "4613:15:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2042,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4613:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2045,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "4653:4:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 2048,
                        "src": "4638:19:8",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2044,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4638:5:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4561:102:8"
                  },
                  "returnParameters": {
                    "id": 2047,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4672:0:8"
                  },
                  "scope": 2049,
                  "src": "4536:137:8",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 2050,
              "src": "175:4500:8",
              "usedErrors": []
            }
          ],
          "src": "33:4643:8"
        },
        "id": 8
      },
      "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol",
          "exportedSymbols": {
            "IERC721Receiver": [
              2067
            ]
          },
          "id": 2068,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2051,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:9"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 2052,
                "nodeType": "StructuredDocumentation",
                "src": "58:152:9",
                "text": " @title ERC721 token receiver interface\n @dev Interface for any contract that wants to support safeTransfers\n from ERC721 asset contracts."
              },
              "fullyImplemented": false,
              "id": 2067,
              "linearizedBaseContracts": [
                2067
              ],
              "name": "IERC721Receiver",
              "nameLocation": "221:15:9",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 2053,
                    "nodeType": "StructuredDocumentation",
                    "src": "243:485:9",
                    "text": " @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n by `operator` from `from`, this function is called.\n It must return its Solidity selector to confirm the token transfer.\n If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\n The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`."
                  },
                  "functionSelector": "150b7a02",
                  "id": 2066,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "onERC721Received",
                  "nameLocation": "742:16:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2062,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2055,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "776:8:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 2066,
                        "src": "768:16:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2054,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "768:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2057,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "802:4:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 2066,
                        "src": "794:12:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2056,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "794:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2059,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "824:7:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 2066,
                        "src": "816:15:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2058,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "816:7:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2061,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "856:4:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 2066,
                        "src": "841:19:9",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2060,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "841:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "758:108:9"
                  },
                  "returnParameters": {
                    "id": 2065,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2064,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2066,
                        "src": "885:6:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 2063,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "885:6:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "884:8:9"
                  },
                  "scope": 2067,
                  "src": "733:160:9",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 2068,
              "src": "211:684:9",
              "usedErrors": []
            }
          ],
          "src": "33:863:9"
        },
        "id": 9
      },
      "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol",
          "exportedSymbols": {
            "IERC165": [
              3433
            ],
            "IERC721": [
              2049
            ],
            "IERC721Metadata": [
              2094
            ]
          },
          "id": 2095,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2069,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:10"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721.sol",
              "file": "../IERC721.sol",
              "id": 2070,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 2095,
              "sourceUnit": 2050,
              "src": "58:24:10",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 2072,
                    "name": "IERC721",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2049,
                    "src": "247:7:10"
                  },
                  "id": 2073,
                  "nodeType": "InheritanceSpecifier",
                  "src": "247:7:10"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 2071,
                "nodeType": "StructuredDocumentation",
                "src": "84:133:10",
                "text": " @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n @dev See https://eips.ethereum.org/EIPS/eip-721"
              },
              "fullyImplemented": false,
              "id": 2094,
              "linearizedBaseContracts": [
                2094,
                2049,
                3433
              ],
              "name": "IERC721Metadata",
              "nameLocation": "228:15:10",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 2074,
                    "nodeType": "StructuredDocumentation",
                    "src": "261:58:10",
                    "text": " @dev Returns the token collection name."
                  },
                  "functionSelector": "06fdde03",
                  "id": 2079,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "name",
                  "nameLocation": "333:4:10",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2075,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "337:2:10"
                  },
                  "returnParameters": {
                    "id": 2078,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2077,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2079,
                        "src": "363:13:10",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2076,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "363:6:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "362:15:10"
                  },
                  "scope": 2094,
                  "src": "324:54:10",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 2080,
                    "nodeType": "StructuredDocumentation",
                    "src": "384:60:10",
                    "text": " @dev Returns the token collection symbol."
                  },
                  "functionSelector": "95d89b41",
                  "id": 2085,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "symbol",
                  "nameLocation": "458:6:10",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2081,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "464:2:10"
                  },
                  "returnParameters": {
                    "id": 2084,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2083,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2085,
                        "src": "490:13:10",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2082,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "490:6:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "489:15:10"
                  },
                  "scope": 2094,
                  "src": "449:56:10",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 2086,
                    "nodeType": "StructuredDocumentation",
                    "src": "511:90:10",
                    "text": " @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token."
                  },
                  "functionSelector": "c87b56dd",
                  "id": 2093,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tokenURI",
                  "nameLocation": "615:8:10",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2089,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2088,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "632:7:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 2093,
                        "src": "624:15:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2087,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "624:7:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "623:17:10"
                  },
                  "returnParameters": {
                    "id": 2092,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2091,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2093,
                        "src": "664:13:10",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2090,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "664:6:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "663:15:10"
                  },
                  "scope": 2094,
                  "src": "606:73:10",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 2095,
              "src": "218:463:10",
              "usedErrors": []
            }
          ],
          "src": "33:649:10"
        },
        "id": 10
      },
      "@openzeppelin/contracts/utils/Address.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/Address.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ]
          },
          "id": 2392,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2096,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:11"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 2097,
                "nodeType": "StructuredDocumentation",
                "src": "58:67:11",
                "text": " @dev Collection of functions related to the address type"
              },
              "fullyImplemented": true,
              "id": 2391,
              "linearizedBaseContracts": [
                2391
              ],
              "name": "Address",
              "nameLocation": "134:7:11",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 2113,
                    "nodeType": "Block",
                    "src": "784:311:11",
                    "statements": [
                      {
                        "assignments": [
                          2106
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2106,
                            "mutability": "mutable",
                            "name": "size",
                            "nameLocation": "989:4:11",
                            "nodeType": "VariableDeclaration",
                            "scope": 2113,
                            "src": "981:12:11",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 2105,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "981:7:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2107,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "981:12:11"
                      },
                      {
                        "AST": {
                          "nodeType": "YulBlock",
                          "src": "1012:52:11",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1026:28:11",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "account",
                                    "nodeType": "YulIdentifier",
                                    "src": "1046:7:11"
                                  }
                                ],
                                "functionName": {
                                  "name": "extcodesize",
                                  "nodeType": "YulIdentifier",
                                  "src": "1034:11:11"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1034:20:11"
                              },
                              "variableNames": [
                                {
                                  "name": "size",
                                  "nodeType": "YulIdentifier",
                                  "src": "1026:4:11"
                                }
                              ]
                            }
                          ]
                        },
                        "evmVersion": "berlin",
                        "externalReferences": [
                          {
                            "declaration": 2100,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "1046:7:11",
                            "valueSize": 1
                          },
                          {
                            "declaration": 2106,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "1026:4:11",
                            "valueSize": 1
                          }
                        ],
                        "id": 2108,
                        "nodeType": "InlineAssembly",
                        "src": "1003:61:11"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2111,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2109,
                            "name": "size",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2106,
                            "src": "1080:4:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 2110,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1087:1:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1080:8:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 2104,
                        "id": 2112,
                        "nodeType": "Return",
                        "src": "1073:15:11"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2098,
                    "nodeType": "StructuredDocumentation",
                    "src": "148:565:11",
                    "text": " @dev Returns true if `account` is a contract.\n [IMPORTANT]\n ====\n It is unsafe to assume that an address for which this function returns\n false is an externally-owned account (EOA) and not a contract.\n Among others, `isContract` will return false for the following\n types of addresses:\n  - an externally-owned account\n  - a contract in construction\n  - an address where a contract will be created\n  - an address where a contract lived, but was destroyed\n ===="
                  },
                  "id": 2114,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isContract",
                  "nameLocation": "727:10:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2101,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2100,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "746:7:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2114,
                        "src": "738:15:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2099,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "738:7:11",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "737:17:11"
                  },
                  "returnParameters": {
                    "id": 2104,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2103,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2114,
                        "src": "778:4:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 2102,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "778:4:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "777:6:11"
                  },
                  "scope": 2391,
                  "src": "718:377:11",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2147,
                    "nodeType": "Block",
                    "src": "2083:241:11",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2129,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2125,
                                      "name": "this",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -28,
                                      "src": "2109:4:11",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_Address_$2391",
                                        "typeString": "library Address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_Address_$2391",
                                        "typeString": "library Address"
                                      }
                                    ],
                                    "id": 2124,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "2101:7:11",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 2123,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2101:7:11",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 2126,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2101:13:11",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "id": 2127,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "balance",
                                "nodeType": "MemberAccess",
                                "src": "2101:21:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 2128,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2119,
                                "src": "2126:6:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2101:31:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a20696e73756666696369656e742062616c616e6365",
                              "id": 2130,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2134:31:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9",
                                "typeString": "literal_string \"Address: insufficient balance\""
                              },
                              "value": "Address: insufficient balance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9",
                                "typeString": "literal_string \"Address: insufficient balance\""
                              }
                            ],
                            "id": 2122,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2093:7:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2131,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2093:73:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2132,
                        "nodeType": "ExpressionStatement",
                        "src": "2093:73:11"
                      },
                      {
                        "assignments": [
                          2134,
                          null
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2134,
                            "mutability": "mutable",
                            "name": "success",
                            "nameLocation": "2183:7:11",
                            "nodeType": "VariableDeclaration",
                            "scope": 2147,
                            "src": "2178:12:11",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 2133,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "2178:4:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          null
                        ],
                        "id": 2141,
                        "initialValue": {
                          "arguments": [
                            {
                              "hexValue": "",
                              "id": 2139,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2226:2:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
                                "typeString": "literal_string \"\""
                              },
                              "value": ""
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
                                "typeString": "literal_string \"\""
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
                                  "typeString": "literal_string \"\""
                                }
                              ],
                              "expression": {
                                "id": 2135,
                                "name": "recipient",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2117,
                                "src": "2196:9:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address_payable",
                                  "typeString": "address payable"
                                }
                              },
                              "id": 2136,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "call",
                              "nodeType": "MemberAccess",
                              "src": "2196:14:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$",
                                "typeString": "function (bytes memory) payable returns (bool,bytes memory)"
                              }
                            },
                            "id": 2138,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "names": [
                              "value"
                            ],
                            "nodeType": "FunctionCallOptions",
                            "options": [
                              {
                                "id": 2137,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2119,
                                "src": "2218:6:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "src": "2196:29:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value",
                              "typeString": "function (bytes memory) payable returns (bool,bytes memory)"
                            }
                          },
                          "id": 2140,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2196:33:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2177:52:11"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2143,
                              "name": "success",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2134,
                              "src": "2247:7:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564",
                              "id": 2144,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2256:60:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae",
                                "typeString": "literal_string \"Address: unable to send value, recipient may have reverted\""
                              },
                              "value": "Address: unable to send value, recipient may have reverted"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae",
                                "typeString": "literal_string \"Address: unable to send value, recipient may have reverted\""
                              }
                            ],
                            "id": 2142,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2239:7:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2145,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2239:78:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2146,
                        "nodeType": "ExpressionStatement",
                        "src": "2239:78:11"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2115,
                    "nodeType": "StructuredDocumentation",
                    "src": "1101:906:11",
                    "text": " @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n `recipient`, forwarding all available gas and reverting on errors.\n https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n of certain opcodes, possibly making contracts go over the 2300 gas limit\n imposed by `transfer`, making them unable to receive funds via\n `transfer`. {sendValue} removes this limitation.\n https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n IMPORTANT: because control is transferred to `recipient`, care must be\n taken to not create reentrancy vulnerabilities. Consider using\n {ReentrancyGuard} or the\n https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]."
                  },
                  "id": 2148,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "sendValue",
                  "nameLocation": "2021:9:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2120,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2117,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "2047:9:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2148,
                        "src": "2031:25:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address_payable",
                          "typeString": "address payable"
                        },
                        "typeName": {
                          "id": 2116,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2031:15:11",
                          "stateMutability": "payable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address_payable",
                            "typeString": "address payable"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2119,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2066:6:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2148,
                        "src": "2058:14:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2118,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2058:7:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2030:43:11"
                  },
                  "returnParameters": {
                    "id": 2121,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2083:0:11"
                  },
                  "scope": 2391,
                  "src": "2012:312:11",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2164,
                    "nodeType": "Block",
                    "src": "3155:84:11",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2159,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2151,
                              "src": "3185:6:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 2160,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2153,
                              "src": "3193:4:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "hexValue": "416464726573733a206c6f772d6c6576656c2063616c6c206661696c6564",
                              "id": 2161,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3199:32:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df",
                                "typeString": "literal_string \"Address: low-level call failed\""
                              },
                              "value": "Address: low-level call failed"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df",
                                "typeString": "literal_string \"Address: low-level call failed\""
                              }
                            ],
                            "id": 2158,
                            "name": "functionCall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              2165,
                              2185
                            ],
                            "referencedDeclaration": 2185,
                            "src": "3172:12:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (address,bytes memory,string memory) returns (bytes memory)"
                            }
                          },
                          "id": 2162,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3172:60:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 2157,
                        "id": 2163,
                        "nodeType": "Return",
                        "src": "3165:67:11"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2149,
                    "nodeType": "StructuredDocumentation",
                    "src": "2330:731:11",
                    "text": " @dev Performs a Solidity function call using a low level `call`. A\n plain `call` is an unsafe replacement for a function call: use this\n function instead.\n If `target` reverts with a revert reason, it is bubbled up by this\n function (like regular Solidity function calls).\n Returns the raw returned data. To convert to the expected return value,\n use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n Requirements:\n - `target` must be a contract.\n - calling `target` with `data` must not revert.\n _Available since v3.1._"
                  },
                  "id": 2165,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionCall",
                  "nameLocation": "3075:12:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2154,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2151,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "3096:6:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2165,
                        "src": "3088:14:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2150,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3088:7:11",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2153,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "3117:4:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2165,
                        "src": "3104:17:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2152,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3104:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3087:35:11"
                  },
                  "returnParameters": {
                    "id": 2157,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2156,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2165,
                        "src": "3141:12:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2155,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3141:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3140:14:11"
                  },
                  "scope": 2391,
                  "src": "3066:173:11",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2184,
                    "nodeType": "Block",
                    "src": "3608:76:11",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2178,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2168,
                              "src": "3647:6:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 2179,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2170,
                              "src": "3655:4:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "hexValue": "30",
                              "id": 2180,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3661:1:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            {
                              "id": 2181,
                              "name": "errorMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2172,
                              "src": "3664:12:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            ],
                            "id": 2177,
                            "name": "functionCallWithValue",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              2205,
                              2255
                            ],
                            "referencedDeclaration": 2255,
                            "src": "3625:21:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (address,bytes memory,uint256,string memory) returns (bytes memory)"
                            }
                          },
                          "id": 2182,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3625:52:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 2176,
                        "id": 2183,
                        "nodeType": "Return",
                        "src": "3618:59:11"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2166,
                    "nodeType": "StructuredDocumentation",
                    "src": "3245:211:11",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"
                  },
                  "id": 2185,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionCall",
                  "nameLocation": "3470:12:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2173,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2168,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "3500:6:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2185,
                        "src": "3492:14:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2167,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3492:7:11",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2170,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "3529:4:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2185,
                        "src": "3516:17:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2169,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3516:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2172,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "3557:12:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2185,
                        "src": "3543:26:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2171,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "3543:6:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3482:93:11"
                  },
                  "returnParameters": {
                    "id": 2176,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2175,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2185,
                        "src": "3594:12:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2174,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3594:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3593:14:11"
                  },
                  "scope": 2391,
                  "src": "3461:223:11",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2204,
                    "nodeType": "Block",
                    "src": "4189:111:11",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2198,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2188,
                              "src": "4228:6:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 2199,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2190,
                              "src": "4236:4:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "id": 2200,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2192,
                              "src": "4242:5:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "hexValue": "416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564",
                              "id": 2201,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4249:43:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc",
                                "typeString": "literal_string \"Address: low-level call with value failed\""
                              },
                              "value": "Address: low-level call with value failed"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc",
                                "typeString": "literal_string \"Address: low-level call with value failed\""
                              }
                            ],
                            "id": 2197,
                            "name": "functionCallWithValue",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              2205,
                              2255
                            ],
                            "referencedDeclaration": 2255,
                            "src": "4206:21:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (address,bytes memory,uint256,string memory) returns (bytes memory)"
                            }
                          },
                          "id": 2202,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4206:87:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 2196,
                        "id": 2203,
                        "nodeType": "Return",
                        "src": "4199:94:11"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2186,
                    "nodeType": "StructuredDocumentation",
                    "src": "3690:351:11",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but also transferring `value` wei to `target`.\n Requirements:\n - the calling contract must have an ETH balance of at least `value`.\n - the called Solidity function must be `payable`.\n _Available since v3.1._"
                  },
                  "id": 2205,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionCallWithValue",
                  "nameLocation": "4055:21:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2193,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2188,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "4094:6:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2205,
                        "src": "4086:14:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2187,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4086:7:11",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2190,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "4123:4:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2205,
                        "src": "4110:17:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2189,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4110:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2192,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "4145:5:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2205,
                        "src": "4137:13:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2191,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4137:7:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4076:80:11"
                  },
                  "returnParameters": {
                    "id": 2196,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2195,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2205,
                        "src": "4175:12:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2194,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4175:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4174:14:11"
                  },
                  "scope": 2391,
                  "src": "4046:254:11",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2254,
                    "nodeType": "Block",
                    "src": "4727:320:11",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2226,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2222,
                                      "name": "this",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -28,
                                      "src": "4753:4:11",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_Address_$2391",
                                        "typeString": "library Address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_Address_$2391",
                                        "typeString": "library Address"
                                      }
                                    ],
                                    "id": 2221,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "4745:7:11",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 2220,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "4745:7:11",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 2223,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "4745:13:11",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "id": 2224,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "balance",
                                "nodeType": "MemberAccess",
                                "src": "4745:21:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 2225,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2212,
                                "src": "4770:5:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "4745:30:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c",
                              "id": 2227,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4777:40:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c",
                                "typeString": "literal_string \"Address: insufficient balance for call\""
                              },
                              "value": "Address: insufficient balance for call"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c",
                                "typeString": "literal_string \"Address: insufficient balance for call\""
                              }
                            ],
                            "id": 2219,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4737:7:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2228,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4737:81:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2229,
                        "nodeType": "ExpressionStatement",
                        "src": "4737:81:11"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 2232,
                                  "name": "target",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2208,
                                  "src": "4847:6:11",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 2231,
                                "name": "isContract",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2114,
                                "src": "4836:10:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                  "typeString": "function (address) view returns (bool)"
                                }
                              },
                              "id": 2233,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4836:18:11",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                              "id": 2234,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4856:31:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad",
                                "typeString": "literal_string \"Address: call to non-contract\""
                              },
                              "value": "Address: call to non-contract"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad",
                                "typeString": "literal_string \"Address: call to non-contract\""
                              }
                            ],
                            "id": 2230,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4828:7:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2235,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4828:60:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2236,
                        "nodeType": "ExpressionStatement",
                        "src": "4828:60:11"
                      },
                      {
                        "assignments": [
                          2238,
                          2240
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2238,
                            "mutability": "mutable",
                            "name": "success",
                            "nameLocation": "4905:7:11",
                            "nodeType": "VariableDeclaration",
                            "scope": 2254,
                            "src": "4900:12:11",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 2237,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "4900:4:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 2240,
                            "mutability": "mutable",
                            "name": "returndata",
                            "nameLocation": "4927:10:11",
                            "nodeType": "VariableDeclaration",
                            "scope": 2254,
                            "src": "4914:23:11",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 2239,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "4914:5:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2247,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2245,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2210,
                              "src": "4967:4:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              ],
                              "expression": {
                                "id": 2241,
                                "name": "target",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2208,
                                "src": "4941:6:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 2242,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "call",
                              "nodeType": "MemberAccess",
                              "src": "4941:11:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$",
                                "typeString": "function (bytes memory) payable returns (bool,bytes memory)"
                              }
                            },
                            "id": 2244,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "names": [
                              "value"
                            ],
                            "nodeType": "FunctionCallOptions",
                            "options": [
                              {
                                "id": 2243,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2212,
                                "src": "4960:5:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "src": "4941:25:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value",
                              "typeString": "function (bytes memory) payable returns (bool,bytes memory)"
                            }
                          },
                          "id": 2246,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4941:31:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4899:73:11"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2249,
                              "name": "success",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2238,
                              "src": "5006:7:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "id": 2250,
                              "name": "returndata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2240,
                              "src": "5015:10:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "id": 2251,
                              "name": "errorMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2214,
                              "src": "5027:12:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            ],
                            "id": 2248,
                            "name": "verifyCallResult",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2390,
                            "src": "4989:16:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (bool,bytes memory,string memory) pure returns (bytes memory)"
                            }
                          },
                          "id": 2252,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4989:51:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 2218,
                        "id": 2253,
                        "nodeType": "Return",
                        "src": "4982:58:11"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2206,
                    "nodeType": "StructuredDocumentation",
                    "src": "4306:237:11",
                    "text": " @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n with `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"
                  },
                  "id": 2255,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionCallWithValue",
                  "nameLocation": "4557:21:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2215,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2208,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "4596:6:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2255,
                        "src": "4588:14:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2207,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4588:7:11",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2210,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "4625:4:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2255,
                        "src": "4612:17:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2209,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4612:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2212,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "4647:5:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2255,
                        "src": "4639:13:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2211,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4639:7:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2214,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "4676:12:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2255,
                        "src": "4662:26:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2213,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "4662:6:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4578:116:11"
                  },
                  "returnParameters": {
                    "id": 2218,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2217,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2255,
                        "src": "4713:12:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2216,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4713:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4712:14:11"
                  },
                  "scope": 2391,
                  "src": "4548:499:11",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2271,
                    "nodeType": "Block",
                    "src": "5324:97:11",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2266,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2258,
                              "src": "5360:6:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 2267,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2260,
                              "src": "5368:4:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "hexValue": "416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564",
                              "id": 2268,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5374:39:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0",
                                "typeString": "literal_string \"Address: low-level static call failed\""
                              },
                              "value": "Address: low-level static call failed"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0",
                                "typeString": "literal_string \"Address: low-level static call failed\""
                              }
                            ],
                            "id": 2265,
                            "name": "functionStaticCall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              2272,
                              2307
                            ],
                            "referencedDeclaration": 2307,
                            "src": "5341:18:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (address,bytes memory,string memory) view returns (bytes memory)"
                            }
                          },
                          "id": 2269,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5341:73:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 2264,
                        "id": 2270,
                        "nodeType": "Return",
                        "src": "5334:80:11"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2256,
                    "nodeType": "StructuredDocumentation",
                    "src": "5053:166:11",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"
                  },
                  "id": 2272,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionStaticCall",
                  "nameLocation": "5233:18:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2261,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2258,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "5260:6:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2272,
                        "src": "5252:14:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2257,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5252:7:11",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2260,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "5281:4:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2272,
                        "src": "5268:17:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2259,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5268:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5251:35:11"
                  },
                  "returnParameters": {
                    "id": 2264,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2263,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2272,
                        "src": "5310:12:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2262,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5310:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5309:14:11"
                  },
                  "scope": 2391,
                  "src": "5224:197:11",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2306,
                    "nodeType": "Block",
                    "src": "5763:228:11",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 2286,
                                  "name": "target",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2275,
                                  "src": "5792:6:11",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 2285,
                                "name": "isContract",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2114,
                                "src": "5781:10:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                  "typeString": "function (address) view returns (bool)"
                                }
                              },
                              "id": 2287,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5781:18:11",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a207374617469632063616c6c20746f206e6f6e2d636f6e7472616374",
                              "id": 2288,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5801:38:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c79cc78e4f16ce3933a42b84c73868f93bb4a59c031a0acf576679de98c608a9",
                                "typeString": "literal_string \"Address: static call to non-contract\""
                              },
                              "value": "Address: static call to non-contract"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c79cc78e4f16ce3933a42b84c73868f93bb4a59c031a0acf576679de98c608a9",
                                "typeString": "literal_string \"Address: static call to non-contract\""
                              }
                            ],
                            "id": 2284,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5773:7:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2289,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5773:67:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2290,
                        "nodeType": "ExpressionStatement",
                        "src": "5773:67:11"
                      },
                      {
                        "assignments": [
                          2292,
                          2294
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2292,
                            "mutability": "mutable",
                            "name": "success",
                            "nameLocation": "5857:7:11",
                            "nodeType": "VariableDeclaration",
                            "scope": 2306,
                            "src": "5852:12:11",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 2291,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "5852:4:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 2294,
                            "mutability": "mutable",
                            "name": "returndata",
                            "nameLocation": "5879:10:11",
                            "nodeType": "VariableDeclaration",
                            "scope": 2306,
                            "src": "5866:23:11",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 2293,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "5866:5:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2299,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2297,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2277,
                              "src": "5911:4:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "expression": {
                              "id": 2295,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2275,
                              "src": "5893:6:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "id": 2296,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "staticcall",
                            "nodeType": "MemberAccess",
                            "src": "5893:17:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$",
                              "typeString": "function (bytes memory) view returns (bool,bytes memory)"
                            }
                          },
                          "id": 2298,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5893:23:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5851:65:11"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2301,
                              "name": "success",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2292,
                              "src": "5950:7:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "id": 2302,
                              "name": "returndata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2294,
                              "src": "5959:10:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "id": 2303,
                              "name": "errorMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2279,
                              "src": "5971:12:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            ],
                            "id": 2300,
                            "name": "verifyCallResult",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2390,
                            "src": "5933:16:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (bool,bytes memory,string memory) pure returns (bytes memory)"
                            }
                          },
                          "id": 2304,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5933:51:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 2283,
                        "id": 2305,
                        "nodeType": "Return",
                        "src": "5926:58:11"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2273,
                    "nodeType": "StructuredDocumentation",
                    "src": "5427:173:11",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"
                  },
                  "id": 2307,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionStaticCall",
                  "nameLocation": "5614:18:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2280,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2275,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "5650:6:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2307,
                        "src": "5642:14:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2274,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5642:7:11",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2277,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "5679:4:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2307,
                        "src": "5666:17:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2276,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5666:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2279,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "5707:12:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2307,
                        "src": "5693:26:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2278,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "5693:6:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5632:93:11"
                  },
                  "returnParameters": {
                    "id": 2283,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2282,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2307,
                        "src": "5749:12:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2281,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5749:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5748:14:11"
                  },
                  "scope": 2391,
                  "src": "5605:386:11",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2323,
                    "nodeType": "Block",
                    "src": "6267:101:11",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2318,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2310,
                              "src": "6305:6:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 2319,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2312,
                              "src": "6313:4:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "hexValue": "416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564",
                              "id": 2320,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6319:41:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398",
                                "typeString": "literal_string \"Address: low-level delegate call failed\""
                              },
                              "value": "Address: low-level delegate call failed"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398",
                                "typeString": "literal_string \"Address: low-level delegate call failed\""
                              }
                            ],
                            "id": 2317,
                            "name": "functionDelegateCall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              2324,
                              2359
                            ],
                            "referencedDeclaration": 2359,
                            "src": "6284:20:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (address,bytes memory,string memory) returns (bytes memory)"
                            }
                          },
                          "id": 2321,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6284:77:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 2316,
                        "id": 2322,
                        "nodeType": "Return",
                        "src": "6277:84:11"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2308,
                    "nodeType": "StructuredDocumentation",
                    "src": "5997:168:11",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"
                  },
                  "id": 2324,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionDelegateCall",
                  "nameLocation": "6179:20:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2313,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2310,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "6208:6:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2324,
                        "src": "6200:14:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2309,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6200:7:11",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2312,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "6229:4:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2324,
                        "src": "6216:17:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2311,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "6216:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6199:35:11"
                  },
                  "returnParameters": {
                    "id": 2316,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2315,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2324,
                        "src": "6253:12:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2314,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "6253:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6252:14:11"
                  },
                  "scope": 2391,
                  "src": "6170:198:11",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2358,
                    "nodeType": "Block",
                    "src": "6709:232:11",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 2338,
                                  "name": "target",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2327,
                                  "src": "6738:6:11",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 2337,
                                "name": "isContract",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2114,
                                "src": "6727:10:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                  "typeString": "function (address) view returns (bool)"
                                }
                              },
                              "id": 2339,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6727:18:11",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6e7472616374",
                              "id": 2340,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6747:40:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520",
                                "typeString": "literal_string \"Address: delegate call to non-contract\""
                              },
                              "value": "Address: delegate call to non-contract"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520",
                                "typeString": "literal_string \"Address: delegate call to non-contract\""
                              }
                            ],
                            "id": 2336,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6719:7:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2341,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6719:69:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2342,
                        "nodeType": "ExpressionStatement",
                        "src": "6719:69:11"
                      },
                      {
                        "assignments": [
                          2344,
                          2346
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2344,
                            "mutability": "mutable",
                            "name": "success",
                            "nameLocation": "6805:7:11",
                            "nodeType": "VariableDeclaration",
                            "scope": 2358,
                            "src": "6800:12:11",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 2343,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "6800:4:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 2346,
                            "mutability": "mutable",
                            "name": "returndata",
                            "nameLocation": "6827:10:11",
                            "nodeType": "VariableDeclaration",
                            "scope": 2358,
                            "src": "6814:23:11",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 2345,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "6814:5:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2351,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2349,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2329,
                              "src": "6861:4:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "expression": {
                              "id": 2347,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2327,
                              "src": "6841:6:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "id": 2348,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "delegatecall",
                            "nodeType": "MemberAccess",
                            "src": "6841:19:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$",
                              "typeString": "function (bytes memory) returns (bool,bytes memory)"
                            }
                          },
                          "id": 2350,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6841:25:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6799:67:11"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2353,
                              "name": "success",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2344,
                              "src": "6900:7:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "id": 2354,
                              "name": "returndata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2346,
                              "src": "6909:10:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "id": 2355,
                              "name": "errorMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2331,
                              "src": "6921:12:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            ],
                            "id": 2352,
                            "name": "verifyCallResult",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2390,
                            "src": "6883:16:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (bool,bytes memory,string memory) pure returns (bytes memory)"
                            }
                          },
                          "id": 2356,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6883:51:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 2335,
                        "id": 2357,
                        "nodeType": "Return",
                        "src": "6876:58:11"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2325,
                    "nodeType": "StructuredDocumentation",
                    "src": "6374:175:11",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"
                  },
                  "id": 2359,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionDelegateCall",
                  "nameLocation": "6563:20:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2332,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2327,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "6601:6:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2359,
                        "src": "6593:14:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2326,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6593:7:11",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2329,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "6630:4:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2359,
                        "src": "6617:17:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2328,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "6617:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2331,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "6658:12:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2359,
                        "src": "6644:26:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2330,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "6644:6:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6583:93:11"
                  },
                  "returnParameters": {
                    "id": 2335,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2334,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2359,
                        "src": "6695:12:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2333,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "6695:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6694:14:11"
                  },
                  "scope": 2391,
                  "src": "6554:387:11",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2389,
                    "nodeType": "Block",
                    "src": "7321:532:11",
                    "statements": [
                      {
                        "condition": {
                          "id": 2371,
                          "name": "success",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 2362,
                          "src": "7335:7:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 2387,
                          "nodeType": "Block",
                          "src": "7392:455:11",
                          "statements": [
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 2378,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 2375,
                                    "name": "returndata",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2364,
                                    "src": "7476:10:11",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes_memory_ptr",
                                      "typeString": "bytes memory"
                                    }
                                  },
                                  "id": 2376,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "length",
                                  "nodeType": "MemberAccess",
                                  "src": "7476:17:11",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 2377,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "7496:1:11",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "7476:21:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 2385,
                                "nodeType": "Block",
                                "src": "7784:53:11",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 2382,
                                          "name": "errorMessage",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 2366,
                                          "src": "7809:12:11",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_string_memory_ptr",
                                            "typeString": "string memory"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_string_memory_ptr",
                                            "typeString": "string memory"
                                          }
                                        ],
                                        "id": 2381,
                                        "name": "revert",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [
                                          -19,
                                          -19
                                        ],
                                        "referencedDeclaration": -19,
                                        "src": "7802:6:11",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                          "typeString": "function (string memory) pure"
                                        }
                                      },
                                      "id": 2383,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "7802:20:11",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 2384,
                                    "nodeType": "ExpressionStatement",
                                    "src": "7802:20:11"
                                  }
                                ]
                              },
                              "id": 2386,
                              "nodeType": "IfStatement",
                              "src": "7472:365:11",
                              "trueBody": {
                                "id": 2380,
                                "nodeType": "Block",
                                "src": "7499:279:11",
                                "statements": [
                                  {
                                    "AST": {
                                      "nodeType": "YulBlock",
                                      "src": "7619:145:11",
                                      "statements": [
                                        {
                                          "nodeType": "YulVariableDeclaration",
                                          "src": "7641:40:11",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "returndata",
                                                "nodeType": "YulIdentifier",
                                                "src": "7670:10:11"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mload",
                                              "nodeType": "YulIdentifier",
                                              "src": "7664:5:11"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7664:17:11"
                                          },
                                          "variables": [
                                            {
                                              "name": "returndata_size",
                                              "nodeType": "YulTypedName",
                                              "src": "7645:15:11",
                                              "type": ""
                                            }
                                          ]
                                        },
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "7713:2:11",
                                                    "type": "",
                                                    "value": "32"
                                                  },
                                                  {
                                                    "name": "returndata",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "7717:10:11"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "7709:3:11"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "7709:19:11"
                                              },
                                              {
                                                "name": "returndata_size",
                                                "nodeType": "YulIdentifier",
                                                "src": "7730:15:11"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "7702:6:11"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7702:44:11"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "7702:44:11"
                                        }
                                      ]
                                    },
                                    "evmVersion": "berlin",
                                    "externalReferences": [
                                      {
                                        "declaration": 2364,
                                        "isOffset": false,
                                        "isSlot": false,
                                        "src": "7670:10:11",
                                        "valueSize": 1
                                      },
                                      {
                                        "declaration": 2364,
                                        "isOffset": false,
                                        "isSlot": false,
                                        "src": "7717:10:11",
                                        "valueSize": 1
                                      }
                                    ],
                                    "id": 2379,
                                    "nodeType": "InlineAssembly",
                                    "src": "7610:154:11"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "id": 2388,
                        "nodeType": "IfStatement",
                        "src": "7331:516:11",
                        "trueBody": {
                          "id": 2374,
                          "nodeType": "Block",
                          "src": "7344:42:11",
                          "statements": [
                            {
                              "expression": {
                                "id": 2372,
                                "name": "returndata",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2364,
                                "src": "7365:10:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              },
                              "functionReturnParameters": 2370,
                              "id": 2373,
                              "nodeType": "Return",
                              "src": "7358:17:11"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2360,
                    "nodeType": "StructuredDocumentation",
                    "src": "6947:209:11",
                    "text": " @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\n revert reason using the provided one.\n _Available since v4.3._"
                  },
                  "id": 2390,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "verifyCallResult",
                  "nameLocation": "7170:16:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2367,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2362,
                        "mutability": "mutable",
                        "name": "success",
                        "nameLocation": "7201:7:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2390,
                        "src": "7196:12:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 2361,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "7196:4:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2364,
                        "mutability": "mutable",
                        "name": "returndata",
                        "nameLocation": "7231:10:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2390,
                        "src": "7218:23:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2363,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "7218:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2366,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "7265:12:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 2390,
                        "src": "7251:26:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2365,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "7251:6:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7186:97:11"
                  },
                  "returnParameters": {
                    "id": 2370,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2369,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2390,
                        "src": "7307:12:11",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2368,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "7307:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7306:14:11"
                  },
                  "scope": 2391,
                  "src": "7161:692:11",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 2392,
              "src": "126:7729:11",
              "usedErrors": []
            }
          ],
          "src": "33:7823:11"
        },
        "id": 11
      },
      "@openzeppelin/contracts/utils/Context.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/Context.sol",
          "exportedSymbols": {
            "Context": [
              2413
            ]
          },
          "id": 2414,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2393,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:12"
            },
            {
              "abstract": true,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 2394,
                "nodeType": "StructuredDocumentation",
                "src": "58:496:12",
                "text": " @dev Provides information about the current execution context, including the\n sender of the transaction and its data. While these are generally available\n via msg.sender and msg.data, they should not be accessed in such a direct\n manner, since when dealing with meta-transactions the account sending and\n paying for execution may not be the actual sender (as far as an application\n is concerned).\n This contract is only required for intermediate, library-like contracts."
              },
              "fullyImplemented": true,
              "id": 2413,
              "linearizedBaseContracts": [
                2413
              ],
              "name": "Context",
              "nameLocation": "573:7:12",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 2402,
                    "nodeType": "Block",
                    "src": "649:34:12",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 2399,
                            "name": "msg",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -15,
                            "src": "666:3:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_magic_message",
                              "typeString": "msg"
                            }
                          },
                          "id": 2400,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "sender",
                          "nodeType": "MemberAccess",
                          "src": "666:10:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 2398,
                        "id": 2401,
                        "nodeType": "Return",
                        "src": "659:17:12"
                      }
                    ]
                  },
                  "id": 2403,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_msgSender",
                  "nameLocation": "596:10:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2395,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "606:2:12"
                  },
                  "returnParameters": {
                    "id": 2398,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2397,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2403,
                        "src": "640:7:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2396,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "640:7:12",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "639:9:12"
                  },
                  "scope": 2413,
                  "src": "587:96:12",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2411,
                    "nodeType": "Block",
                    "src": "756:32:12",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 2408,
                            "name": "msg",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -15,
                            "src": "773:3:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_magic_message",
                              "typeString": "msg"
                            }
                          },
                          "id": 2409,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "data",
                          "nodeType": "MemberAccess",
                          "src": "773:8:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_calldata_ptr",
                            "typeString": "bytes calldata"
                          }
                        },
                        "functionReturnParameters": 2407,
                        "id": 2410,
                        "nodeType": "Return",
                        "src": "766:15:12"
                      }
                    ]
                  },
                  "id": 2412,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_msgData",
                  "nameLocation": "698:8:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2404,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "706:2:12"
                  },
                  "returnParameters": {
                    "id": 2407,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2406,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2412,
                        "src": "740:14:12",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2405,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "740:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "739:16:12"
                  },
                  "scope": 2413,
                  "src": "689:99:12",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 2414,
              "src": "555:235:12",
              "usedErrors": []
            }
          ],
          "src": "33:758:12"
        },
        "id": 12
      },
      "@openzeppelin/contracts/utils/Counters.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/Counters.sol",
          "exportedSymbols": {
            "Counters": [
              2487
            ]
          },
          "id": 2488,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2415,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:13"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 2416,
                "nodeType": "StructuredDocumentation",
                "src": "58:311:13",
                "text": " @title Counters\n @author Matt Condon (@shrugs)\n @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\n of elements in a mapping, issuing ERC721 ids, or counting request ids.\n Include with `using Counters for Counters.Counter;`"
              },
              "fullyImplemented": true,
              "id": 2487,
              "linearizedBaseContracts": [
                2487
              ],
              "name": "Counters",
              "nameLocation": "378:8:13",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "Counters.Counter",
                  "id": 2419,
                  "members": [
                    {
                      "constant": false,
                      "id": 2418,
                      "mutability": "mutable",
                      "name": "_value",
                      "nameLocation": "740:6:13",
                      "nodeType": "VariableDeclaration",
                      "scope": 2419,
                      "src": "732:14:13",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 2417,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "732:7:13",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Counter",
                  "nameLocation": "400:7:13",
                  "nodeType": "StructDefinition",
                  "scope": 2487,
                  "src": "393:374:13",
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 2430,
                    "nodeType": "Block",
                    "src": "847:38:13",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 2427,
                            "name": "counter",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2422,
                            "src": "864:7:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                              "typeString": "struct Counters.Counter storage pointer"
                            }
                          },
                          "id": 2428,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_value",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 2418,
                          "src": "864:14:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 2426,
                        "id": 2429,
                        "nodeType": "Return",
                        "src": "857:21:13"
                      }
                    ]
                  },
                  "id": 2431,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "current",
                  "nameLocation": "782:7:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2423,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2422,
                        "mutability": "mutable",
                        "name": "counter",
                        "nameLocation": "806:7:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2431,
                        "src": "790:23:13",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                          "typeString": "struct Counters.Counter"
                        },
                        "typeName": {
                          "id": 2421,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 2420,
                            "name": "Counter",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 2419,
                            "src": "790:7:13"
                          },
                          "referencedDeclaration": 2419,
                          "src": "790:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                            "typeString": "struct Counters.Counter"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "789:25:13"
                  },
                  "returnParameters": {
                    "id": 2426,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2425,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2431,
                        "src": "838:7:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2424,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "838:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "837:9:13"
                  },
                  "scope": 2487,
                  "src": "773:112:13",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2444,
                    "nodeType": "Block",
                    "src": "944:70:13",
                    "statements": [
                      {
                        "id": 2443,
                        "nodeType": "UncheckedBlock",
                        "src": "954:54:13",
                        "statements": [
                          {
                            "expression": {
                              "id": 2441,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "expression": {
                                  "id": 2437,
                                  "name": "counter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2434,
                                  "src": "978:7:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                                    "typeString": "struct Counters.Counter storage pointer"
                                  }
                                },
                                "id": 2439,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "memberName": "_value",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 2418,
                                "src": "978:14:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "+=",
                              "rightHandSide": {
                                "hexValue": "31",
                                "id": 2440,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "996:1:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "978:19:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 2442,
                            "nodeType": "ExpressionStatement",
                            "src": "978:19:13"
                          }
                        ]
                      }
                    ]
                  },
                  "id": 2445,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "increment",
                  "nameLocation": "900:9:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2435,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2434,
                        "mutability": "mutable",
                        "name": "counter",
                        "nameLocation": "926:7:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2445,
                        "src": "910:23:13",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                          "typeString": "struct Counters.Counter"
                        },
                        "typeName": {
                          "id": 2433,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 2432,
                            "name": "Counter",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 2419,
                            "src": "910:7:13"
                          },
                          "referencedDeclaration": 2419,
                          "src": "910:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                            "typeString": "struct Counters.Counter"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "909:25:13"
                  },
                  "returnParameters": {
                    "id": 2436,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "944:0:13"
                  },
                  "scope": 2487,
                  "src": "891:123:13",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2472,
                    "nodeType": "Block",
                    "src": "1073:176:13",
                    "statements": [
                      {
                        "assignments": [
                          2452
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2452,
                            "mutability": "mutable",
                            "name": "value",
                            "nameLocation": "1091:5:13",
                            "nodeType": "VariableDeclaration",
                            "scope": 2472,
                            "src": "1083:13:13",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 2451,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1083:7:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2455,
                        "initialValue": {
                          "expression": {
                            "id": 2453,
                            "name": "counter",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2448,
                            "src": "1099:7:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                              "typeString": "struct Counters.Counter storage pointer"
                            }
                          },
                          "id": 2454,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_value",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 2418,
                          "src": "1099:14:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1083:30:13"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2459,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2457,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2452,
                                "src": "1131:5:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 2458,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1139:1:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "1131:9:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "436f756e7465723a2064656372656d656e74206f766572666c6f77",
                              "id": 2460,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1142:29:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_1dfd0d5389474d871b8e8929aab9d4def041f55f90f625754fb5f9a9ba08af6f",
                                "typeString": "literal_string \"Counter: decrement overflow\""
                              },
                              "value": "Counter: decrement overflow"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_1dfd0d5389474d871b8e8929aab9d4def041f55f90f625754fb5f9a9ba08af6f",
                                "typeString": "literal_string \"Counter: decrement overflow\""
                              }
                            ],
                            "id": 2456,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1123:7:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2461,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1123:49:13",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2462,
                        "nodeType": "ExpressionStatement",
                        "src": "1123:49:13"
                      },
                      {
                        "id": 2471,
                        "nodeType": "UncheckedBlock",
                        "src": "1182:61:13",
                        "statements": [
                          {
                            "expression": {
                              "id": 2469,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "expression": {
                                  "id": 2463,
                                  "name": "counter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2448,
                                  "src": "1206:7:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                                    "typeString": "struct Counters.Counter storage pointer"
                                  }
                                },
                                "id": 2465,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "memberName": "_value",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 2418,
                                "src": "1206:14:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 2468,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 2466,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2452,
                                  "src": "1223:5:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "hexValue": "31",
                                  "id": 2467,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "1231:1:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_1_by_1",
                                    "typeString": "int_const 1"
                                  },
                                  "value": "1"
                                },
                                "src": "1223:9:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1206:26:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 2470,
                            "nodeType": "ExpressionStatement",
                            "src": "1206:26:13"
                          }
                        ]
                      }
                    ]
                  },
                  "id": 2473,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decrement",
                  "nameLocation": "1029:9:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2449,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2448,
                        "mutability": "mutable",
                        "name": "counter",
                        "nameLocation": "1055:7:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2473,
                        "src": "1039:23:13",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                          "typeString": "struct Counters.Counter"
                        },
                        "typeName": {
                          "id": 2447,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 2446,
                            "name": "Counter",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 2419,
                            "src": "1039:7:13"
                          },
                          "referencedDeclaration": 2419,
                          "src": "1039:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                            "typeString": "struct Counters.Counter"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1038:25:13"
                  },
                  "returnParameters": {
                    "id": 2450,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1073:0:13"
                  },
                  "scope": 2487,
                  "src": "1020:229:13",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2485,
                    "nodeType": "Block",
                    "src": "1304:35:13",
                    "statements": [
                      {
                        "expression": {
                          "id": 2483,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 2479,
                              "name": "counter",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2476,
                              "src": "1314:7:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                                "typeString": "struct Counters.Counter storage pointer"
                              }
                            },
                            "id": 2481,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "_value",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 2418,
                            "src": "1314:14:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "hexValue": "30",
                            "id": 2482,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1331:1:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1314:18:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 2484,
                        "nodeType": "ExpressionStatement",
                        "src": "1314:18:13"
                      }
                    ]
                  },
                  "id": 2486,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "reset",
                  "nameLocation": "1264:5:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2477,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2476,
                        "mutability": "mutable",
                        "name": "counter",
                        "nameLocation": "1286:7:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2486,
                        "src": "1270:23:13",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                          "typeString": "struct Counters.Counter"
                        },
                        "typeName": {
                          "id": 2475,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 2474,
                            "name": "Counter",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 2419,
                            "src": "1270:7:13"
                          },
                          "referencedDeclaration": 2419,
                          "src": "1270:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Counter_$2419_storage_ptr",
                            "typeString": "struct Counters.Counter"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1269:25:13"
                  },
                  "returnParameters": {
                    "id": 2478,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1304:0:13"
                  },
                  "scope": 2487,
                  "src": "1255:84:13",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 2488,
              "src": "370:971:13",
              "usedErrors": []
            }
          ],
          "src": "33:1309:13"
        },
        "id": 13
      },
      "@openzeppelin/contracts/utils/Strings.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/Strings.sol",
          "exportedSymbols": {
            "Strings": [
              2690
            ]
          },
          "id": 2691,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2489,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:14"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 2490,
                "nodeType": "StructuredDocumentation",
                "src": "58:34:14",
                "text": " @dev String operations."
              },
              "fullyImplemented": true,
              "id": 2690,
              "linearizedBaseContracts": [
                2690
              ],
              "name": "Strings",
              "nameLocation": "101:7:14",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": true,
                  "id": 2493,
                  "mutability": "constant",
                  "name": "_HEX_SYMBOLS",
                  "nameLocation": "140:12:14",
                  "nodeType": "VariableDeclaration",
                  "scope": 2690,
                  "src": "115:58:14",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes16",
                    "typeString": "bytes16"
                  },
                  "typeName": {
                    "id": 2491,
                    "name": "bytes16",
                    "nodeType": "ElementaryTypeName",
                    "src": "115:7:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes16",
                      "typeString": "bytes16"
                    }
                  },
                  "value": {
                    "hexValue": "30313233343536373839616263646566",
                    "id": 2492,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "155:18:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_cb29997ed99ead0db59ce4d12b7d3723198c827273e5796737c926d78019c39f",
                      "typeString": "literal_string \"0123456789abcdef\""
                    },
                    "value": "0123456789abcdef"
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 2571,
                    "nodeType": "Block",
                    "src": "346:632:14",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2503,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2501,
                            "name": "value",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2496,
                            "src": "548:5:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 2502,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "557:1:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "548:10:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2507,
                        "nodeType": "IfStatement",
                        "src": "544:51:14",
                        "trueBody": {
                          "id": 2506,
                          "nodeType": "Block",
                          "src": "560:35:14",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 2504,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "string",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "581:3:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d",
                                  "typeString": "literal_string \"0\""
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 2500,
                              "id": 2505,
                              "nodeType": "Return",
                              "src": "574:10:14"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          2509
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2509,
                            "mutability": "mutable",
                            "name": "temp",
                            "nameLocation": "612:4:14",
                            "nodeType": "VariableDeclaration",
                            "scope": 2571,
                            "src": "604:12:14",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 2508,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "604:7:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2511,
                        "initialValue": {
                          "id": 2510,
                          "name": "value",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 2496,
                          "src": "619:5:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "604:20:14"
                      },
                      {
                        "assignments": [
                          2513
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2513,
                            "mutability": "mutable",
                            "name": "digits",
                            "nameLocation": "642:6:14",
                            "nodeType": "VariableDeclaration",
                            "scope": 2571,
                            "src": "634:14:14",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 2512,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "634:7:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2514,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "634:14:14"
                      },
                      {
                        "body": {
                          "id": 2525,
                          "nodeType": "Block",
                          "src": "676:57:14",
                          "statements": [
                            {
                              "expression": {
                                "id": 2519,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "++",
                                "prefix": false,
                                "src": "690:8:14",
                                "subExpression": {
                                  "id": 2518,
                                  "name": "digits",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2513,
                                  "src": "690:6:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 2520,
                              "nodeType": "ExpressionStatement",
                              "src": "690:8:14"
                            },
                            {
                              "expression": {
                                "id": 2523,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 2521,
                                  "name": "temp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2509,
                                  "src": "712:4:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "/=",
                                "rightHandSide": {
                                  "hexValue": "3130",
                                  "id": 2522,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "720:2:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_10_by_1",
                                    "typeString": "int_const 10"
                                  },
                                  "value": "10"
                                },
                                "src": "712:10:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 2524,
                              "nodeType": "ExpressionStatement",
                              "src": "712:10:14"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2517,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2515,
                            "name": "temp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2509,
                            "src": "665:4:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 2516,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "673:1:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "665:9:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2526,
                        "nodeType": "WhileStatement",
                        "src": "658:75:14"
                      },
                      {
                        "assignments": [
                          2528
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2528,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "755:6:14",
                            "nodeType": "VariableDeclaration",
                            "scope": 2571,
                            "src": "742:19:14",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 2527,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "742:5:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2533,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2531,
                              "name": "digits",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2513,
                              "src": "774:6:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2530,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "764:9:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (bytes memory)"
                            },
                            "typeName": {
                              "id": 2529,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "768:5:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            }
                          },
                          "id": 2532,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "764:17:14",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "742:39:14"
                      },
                      {
                        "body": {
                          "id": 2564,
                          "nodeType": "Block",
                          "src": "810:131:14",
                          "statements": [
                            {
                              "expression": {
                                "id": 2539,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 2537,
                                  "name": "digits",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2513,
                                  "src": "824:6:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "-=",
                                "rightHandSide": {
                                  "hexValue": "31",
                                  "id": 2538,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "834:1:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_1_by_1",
                                    "typeString": "int_const 1"
                                  },
                                  "value": "1"
                                },
                                "src": "824:11:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 2540,
                              "nodeType": "ExpressionStatement",
                              "src": "824:11:14"
                            },
                            {
                              "expression": {
                                "id": 2558,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 2541,
                                    "name": "buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2528,
                                    "src": "849:6:14",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes_memory_ptr",
                                      "typeString": "bytes memory"
                                    }
                                  },
                                  "id": 2543,
                                  "indexExpression": {
                                    "id": 2542,
                                    "name": "digits",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2513,
                                    "src": "856:6:14",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "849:14:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes1",
                                    "typeString": "bytes1"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "arguments": [
                                        {
                                          "commonType": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          },
                                          "id": 2555,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "hexValue": "3438",
                                            "id": 2548,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "number",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "879:2:14",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_rational_48_by_1",
                                              "typeString": "int_const 48"
                                            },
                                            "value": "48"
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": "+",
                                          "rightExpression": {
                                            "arguments": [
                                              {
                                                "commonType": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                },
                                                "id": 2553,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": false,
                                                "lValueRequested": false,
                                                "leftExpression": {
                                                  "id": 2551,
                                                  "name": "value",
                                                  "nodeType": "Identifier",
                                                  "overloadedDeclarations": [],
                                                  "referencedDeclaration": 2496,
                                                  "src": "892:5:14",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_uint256",
                                                    "typeString": "uint256"
                                                  }
                                                },
                                                "nodeType": "BinaryOperation",
                                                "operator": "%",
                                                "rightExpression": {
                                                  "hexValue": "3130",
                                                  "id": 2552,
                                                  "isConstant": false,
                                                  "isLValue": false,
                                                  "isPure": true,
                                                  "kind": "number",
                                                  "lValueRequested": false,
                                                  "nodeType": "Literal",
                                                  "src": "900:2:14",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_rational_10_by_1",
                                                    "typeString": "int_const 10"
                                                  },
                                                  "value": "10"
                                                },
                                                "src": "892:10:14",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              }
                                            ],
                                            "expression": {
                                              "argumentTypes": [
                                                {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              ],
                                              "id": 2550,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": true,
                                              "lValueRequested": false,
                                              "nodeType": "ElementaryTypeNameExpression",
                                              "src": "884:7:14",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_type$_t_uint256_$",
                                                "typeString": "type(uint256)"
                                              },
                                              "typeName": {
                                                "id": 2549,
                                                "name": "uint256",
                                                "nodeType": "ElementaryTypeName",
                                                "src": "884:7:14",
                                                "typeDescriptions": {}
                                              }
                                            },
                                            "id": 2554,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "kind": "typeConversion",
                                            "lValueRequested": false,
                                            "names": [],
                                            "nodeType": "FunctionCall",
                                            "src": "884:19:14",
                                            "tryCall": false,
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "src": "879:24:14",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 2547,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "873:5:14",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint8_$",
                                          "typeString": "type(uint8)"
                                        },
                                        "typeName": {
                                          "id": 2546,
                                          "name": "uint8",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "873:5:14",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 2556,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "873:31:14",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    ],
                                    "id": 2545,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "866:6:14",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_bytes1_$",
                                      "typeString": "type(bytes1)"
                                    },
                                    "typeName": {
                                      "id": 2544,
                                      "name": "bytes1",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "866:6:14",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 2557,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "866:39:14",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes1",
                                    "typeString": "bytes1"
                                  }
                                },
                                "src": "849:56:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes1",
                                  "typeString": "bytes1"
                                }
                              },
                              "id": 2559,
                              "nodeType": "ExpressionStatement",
                              "src": "849:56:14"
                            },
                            {
                              "expression": {
                                "id": 2562,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 2560,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2496,
                                  "src": "919:5:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "/=",
                                "rightHandSide": {
                                  "hexValue": "3130",
                                  "id": 2561,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "928:2:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_10_by_1",
                                    "typeString": "int_const 10"
                                  },
                                  "value": "10"
                                },
                                "src": "919:11:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 2563,
                              "nodeType": "ExpressionStatement",
                              "src": "919:11:14"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2536,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2534,
                            "name": "value",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2496,
                            "src": "798:5:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 2535,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "807:1:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "798:10:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2565,
                        "nodeType": "WhileStatement",
                        "src": "791:150:14"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2568,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2528,
                              "src": "964:6:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2567,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "957:6:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_string_storage_ptr_$",
                              "typeString": "type(string storage pointer)"
                            },
                            "typeName": {
                              "id": 2566,
                              "name": "string",
                              "nodeType": "ElementaryTypeName",
                              "src": "957:6:14",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2569,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "957:14:14",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        "functionReturnParameters": 2500,
                        "id": 2570,
                        "nodeType": "Return",
                        "src": "950:21:14"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2494,
                    "nodeType": "StructuredDocumentation",
                    "src": "180:90:14",
                    "text": " @dev Converts a `uint256` to its ASCII `string` decimal representation."
                  },
                  "id": 2572,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toString",
                  "nameLocation": "284:8:14",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2497,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2496,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "301:5:14",
                        "nodeType": "VariableDeclaration",
                        "scope": 2572,
                        "src": "293:13:14",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2495,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "293:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "292:15:14"
                  },
                  "returnParameters": {
                    "id": 2500,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2499,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2572,
                        "src": "331:13:14",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2498,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "331:6:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "330:15:14"
                  },
                  "scope": 2690,
                  "src": "275:703:14",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2612,
                    "nodeType": "Block",
                    "src": "1157:255:14",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2582,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2580,
                            "name": "value",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2575,
                            "src": "1171:5:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 2581,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1180:1:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1171:10:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2586,
                        "nodeType": "IfStatement",
                        "src": "1167:54:14",
                        "trueBody": {
                          "id": 2585,
                          "nodeType": "Block",
                          "src": "1183:38:14",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30783030",
                                "id": 2583,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "string",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1204:6:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_stringliteral_27489e20a0060b723a1748bdff5e44570ee9fae64141728105692eac6031e8a4",
                                  "typeString": "literal_string \"0x00\""
                                },
                                "value": "0x00"
                              },
                              "functionReturnParameters": 2579,
                              "id": 2584,
                              "nodeType": "Return",
                              "src": "1197:13:14"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          2588
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2588,
                            "mutability": "mutable",
                            "name": "temp",
                            "nameLocation": "1238:4:14",
                            "nodeType": "VariableDeclaration",
                            "scope": 2612,
                            "src": "1230:12:14",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 2587,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1230:7:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2590,
                        "initialValue": {
                          "id": 2589,
                          "name": "value",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 2575,
                          "src": "1245:5:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1230:20:14"
                      },
                      {
                        "assignments": [
                          2592
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2592,
                            "mutability": "mutable",
                            "name": "length",
                            "nameLocation": "1268:6:14",
                            "nodeType": "VariableDeclaration",
                            "scope": 2612,
                            "src": "1260:14:14",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 2591,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1260:7:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2594,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 2593,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1277:1:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1260:18:14"
                      },
                      {
                        "body": {
                          "id": 2605,
                          "nodeType": "Block",
                          "src": "1306:57:14",
                          "statements": [
                            {
                              "expression": {
                                "id": 2599,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "++",
                                "prefix": false,
                                "src": "1320:8:14",
                                "subExpression": {
                                  "id": 2598,
                                  "name": "length",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2592,
                                  "src": "1320:6:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 2600,
                              "nodeType": "ExpressionStatement",
                              "src": "1320:8:14"
                            },
                            {
                              "expression": {
                                "id": 2603,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 2601,
                                  "name": "temp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2588,
                                  "src": "1342:4:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": ">>=",
                                "rightHandSide": {
                                  "hexValue": "38",
                                  "id": 2602,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "1351:1:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_8_by_1",
                                    "typeString": "int_const 8"
                                  },
                                  "value": "8"
                                },
                                "src": "1342:10:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 2604,
                              "nodeType": "ExpressionStatement",
                              "src": "1342:10:14"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2597,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2595,
                            "name": "temp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2588,
                            "src": "1295:4:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 2596,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1303:1:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1295:9:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2606,
                        "nodeType": "WhileStatement",
                        "src": "1288:75:14"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2608,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2575,
                              "src": "1391:5:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 2609,
                              "name": "length",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2592,
                              "src": "1398:6:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2607,
                            "name": "toHexString",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              2613,
                              2689
                            ],
                            "referencedDeclaration": 2689,
                            "src": "1379:11:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$",
                              "typeString": "function (uint256,uint256) pure returns (string memory)"
                            }
                          },
                          "id": 2610,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1379:26:14",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        "functionReturnParameters": 2579,
                        "id": 2611,
                        "nodeType": "Return",
                        "src": "1372:33:14"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2573,
                    "nodeType": "StructuredDocumentation",
                    "src": "984:94:14",
                    "text": " @dev Converts a `uint256` to its ASCII `string` hexadecimal representation."
                  },
                  "id": 2613,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toHexString",
                  "nameLocation": "1092:11:14",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2576,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2575,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1112:5:14",
                        "nodeType": "VariableDeclaration",
                        "scope": 2613,
                        "src": "1104:13:14",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2574,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1104:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1103:15:14"
                  },
                  "returnParameters": {
                    "id": 2579,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2578,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2613,
                        "src": "1142:13:14",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2577,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1142:6:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1141:15:14"
                  },
                  "scope": 2690,
                  "src": "1083:329:14",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2688,
                    "nodeType": "Block",
                    "src": "1625:351:14",
                    "statements": [
                      {
                        "assignments": [
                          2624
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2624,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "1648:6:14",
                            "nodeType": "VariableDeclaration",
                            "scope": 2688,
                            "src": "1635:19:14",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 2623,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "1635:5:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2633,
                        "initialValue": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2631,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 2629,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "hexValue": "32",
                                  "id": 2627,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "1667:1:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_2_by_1",
                                    "typeString": "int_const 2"
                                  },
                                  "value": "2"
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "*",
                                "rightExpression": {
                                  "id": 2628,
                                  "name": "length",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2618,
                                  "src": "1671:6:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "1667:10:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "hexValue": "32",
                                "id": 2630,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1680:1:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "src": "1667:14:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2626,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "1657:9:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (bytes memory)"
                            },
                            "typeName": {
                              "id": 2625,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "1661:5:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            }
                          },
                          "id": 2632,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1657:25:14",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1635:47:14"
                      },
                      {
                        "expression": {
                          "id": 2638,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 2634,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2624,
                              "src": "1692:6:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 2636,
                            "indexExpression": {
                              "hexValue": "30",
                              "id": 2635,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1699:1:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "1692:9:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes1",
                              "typeString": "bytes1"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "hexValue": "30",
                            "id": 2637,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "string",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1704:3:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d",
                              "typeString": "literal_string \"0\""
                            },
                            "value": "0"
                          },
                          "src": "1692:15:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes1",
                            "typeString": "bytes1"
                          }
                        },
                        "id": 2639,
                        "nodeType": "ExpressionStatement",
                        "src": "1692:15:14"
                      },
                      {
                        "expression": {
                          "id": 2644,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 2640,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2624,
                              "src": "1717:6:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 2642,
                            "indexExpression": {
                              "hexValue": "31",
                              "id": 2641,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1724:1:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "1717:9:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes1",
                              "typeString": "bytes1"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "hexValue": "78",
                            "id": 2643,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "string",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1729:3:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83",
                              "typeString": "literal_string \"x\""
                            },
                            "value": "x"
                          },
                          "src": "1717:15:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes1",
                            "typeString": "bytes1"
                          }
                        },
                        "id": 2645,
                        "nodeType": "ExpressionStatement",
                        "src": "1717:15:14"
                      },
                      {
                        "body": {
                          "id": 2674,
                          "nodeType": "Block",
                          "src": "1787:87:14",
                          "statements": [
                            {
                              "expression": {
                                "id": 2668,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 2660,
                                    "name": "buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2624,
                                    "src": "1801:6:14",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes_memory_ptr",
                                      "typeString": "bytes memory"
                                    }
                                  },
                                  "id": 2662,
                                  "indexExpression": {
                                    "id": 2661,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2647,
                                    "src": "1808:1:14",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "1801:9:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes1",
                                    "typeString": "bytes1"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 2663,
                                    "name": "_HEX_SYMBOLS",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2493,
                                    "src": "1813:12:14",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes16",
                                      "typeString": "bytes16"
                                    }
                                  },
                                  "id": 2667,
                                  "indexExpression": {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 2666,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 2664,
                                      "name": "value",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2616,
                                      "src": "1826:5:14",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "&",
                                    "rightExpression": {
                                      "hexValue": "307866",
                                      "id": 2665,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "1834:3:14",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_15_by_1",
                                        "typeString": "int_const 15"
                                      },
                                      "value": "0xf"
                                    },
                                    "src": "1826:11:14",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "1813:25:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes1",
                                    "typeString": "bytes1"
                                  }
                                },
                                "src": "1801:37:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes1",
                                  "typeString": "bytes1"
                                }
                              },
                              "id": 2669,
                              "nodeType": "ExpressionStatement",
                              "src": "1801:37:14"
                            },
                            {
                              "expression": {
                                "id": 2672,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 2670,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2616,
                                  "src": "1852:5:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": ">>=",
                                "rightHandSide": {
                                  "hexValue": "34",
                                  "id": 2671,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "1862:1:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_4_by_1",
                                    "typeString": "int_const 4"
                                  },
                                  "value": "4"
                                },
                                "src": "1852:11:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 2673,
                              "nodeType": "ExpressionStatement",
                              "src": "1852:11:14"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2656,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2654,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2647,
                            "src": "1775:1:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "31",
                            "id": 2655,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1779:1:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "src": "1775:5:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2675,
                        "initializationExpression": {
                          "assignments": [
                            2647
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 2647,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "1755:1:14",
                              "nodeType": "VariableDeclaration",
                              "scope": 2675,
                              "src": "1747:9:14",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 2646,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "1747:7:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 2653,
                          "initialValue": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 2652,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2650,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 2648,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1759:1:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "*",
                              "rightExpression": {
                                "id": 2649,
                                "name": "length",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2618,
                                "src": "1763:6:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1759:10:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "hexValue": "31",
                              "id": 2651,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1772:1:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "src": "1759:14:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "1747:26:14"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 2658,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "--",
                            "prefix": true,
                            "src": "1782:3:14",
                            "subExpression": {
                              "id": 2657,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2647,
                              "src": "1784:1:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 2659,
                          "nodeType": "ExpressionStatement",
                          "src": "1782:3:14"
                        },
                        "nodeType": "ForStatement",
                        "src": "1742:132:14"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2679,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2677,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2616,
                                "src": "1891:5:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 2678,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1900:1:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "1891:10:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "537472696e67733a20686578206c656e67746820696e73756666696369656e74",
                              "id": 2680,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1903:34:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2",
                                "typeString": "literal_string \"Strings: hex length insufficient\""
                              },
                              "value": "Strings: hex length insufficient"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2",
                                "typeString": "literal_string \"Strings: hex length insufficient\""
                              }
                            ],
                            "id": 2676,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1883:7:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2681,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1883:55:14",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2682,
                        "nodeType": "ExpressionStatement",
                        "src": "1883:55:14"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2685,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2624,
                              "src": "1962:6:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2684,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1955:6:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_string_storage_ptr_$",
                              "typeString": "type(string storage pointer)"
                            },
                            "typeName": {
                              "id": 2683,
                              "name": "string",
                              "nodeType": "ElementaryTypeName",
                              "src": "1955:6:14",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2686,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1955:14:14",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        "functionReturnParameters": 2622,
                        "id": 2687,
                        "nodeType": "Return",
                        "src": "1948:21:14"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2614,
                    "nodeType": "StructuredDocumentation",
                    "src": "1418:112:14",
                    "text": " @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length."
                  },
                  "id": 2689,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toHexString",
                  "nameLocation": "1544:11:14",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2619,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2616,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1564:5:14",
                        "nodeType": "VariableDeclaration",
                        "scope": 2689,
                        "src": "1556:13:14",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2615,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1556:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2618,
                        "mutability": "mutable",
                        "name": "length",
                        "nameLocation": "1579:6:14",
                        "nodeType": "VariableDeclaration",
                        "scope": 2689,
                        "src": "1571:14:14",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2617,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1571:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1555:31:14"
                  },
                  "returnParameters": {
                    "id": 2622,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2621,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2689,
                        "src": "1610:13:14",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2620,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1610:6:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1609:15:14"
                  },
                  "scope": 2690,
                  "src": "1535:441:14",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 2691,
              "src": "93:1885:14",
              "usedErrors": []
            }
          ],
          "src": "33:1946:14"
        },
        "id": 14
      },
      "@openzeppelin/contracts/utils/cryptography/ECDSA.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/cryptography/ECDSA.sol",
          "exportedSymbols": {
            "ECDSA": [
              3057
            ]
          },
          "id": 3058,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2692,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:15"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 2693,
                "nodeType": "StructuredDocumentation",
                "src": "58:205:15",
                "text": " @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n These functions can be used to verify that a message was signed by the holder\n of the private keys of a given address."
              },
              "fullyImplemented": true,
              "id": 3057,
              "linearizedBaseContracts": [
                3057
              ],
              "name": "ECDSA",
              "nameLocation": "272:5:15",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "ECDSA.RecoverError",
                  "id": 2699,
                  "members": [
                    {
                      "id": 2694,
                      "name": "NoError",
                      "nameLocation": "312:7:15",
                      "nodeType": "EnumValue",
                      "src": "312:7:15"
                    },
                    {
                      "id": 2695,
                      "name": "InvalidSignature",
                      "nameLocation": "329:16:15",
                      "nodeType": "EnumValue",
                      "src": "329:16:15"
                    },
                    {
                      "id": 2696,
                      "name": "InvalidSignatureLength",
                      "nameLocation": "355:22:15",
                      "nodeType": "EnumValue",
                      "src": "355:22:15"
                    },
                    {
                      "id": 2697,
                      "name": "InvalidSignatureS",
                      "nameLocation": "387:17:15",
                      "nodeType": "EnumValue",
                      "src": "387:17:15"
                    },
                    {
                      "id": 2698,
                      "name": "InvalidSignatureV",
                      "nameLocation": "414:17:15",
                      "nodeType": "EnumValue",
                      "src": "414:17:15"
                    }
                  ],
                  "name": "RecoverError",
                  "nameLocation": "289:12:15",
                  "nodeType": "EnumDefinition",
                  "src": "284:153:15"
                },
                {
                  "body": {
                    "id": 2752,
                    "nodeType": "Block",
                    "src": "497:577:15",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_enum$_RecoverError_$2699",
                            "typeString": "enum ECDSA.RecoverError"
                          },
                          "id": 2708,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2705,
                            "name": "error",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2702,
                            "src": "511:5:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_enum$_RecoverError_$2699",
                              "typeString": "enum ECDSA.RecoverError"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "expression": {
                              "id": 2706,
                              "name": "RecoverError",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2699,
                              "src": "520:12:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_enum$_RecoverError_$2699_$",
                                "typeString": "type(enum ECDSA.RecoverError)"
                              }
                            },
                            "id": 2707,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "NoError",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 2694,
                            "src": "520:20:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_enum$_RecoverError_$2699",
                              "typeString": "enum ECDSA.RecoverError"
                            }
                          },
                          "src": "511:29:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_enum$_RecoverError_$2699",
                              "typeString": "enum ECDSA.RecoverError"
                            },
                            "id": 2714,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 2711,
                              "name": "error",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2702,
                              "src": "607:5:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2699",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "==",
                            "rightExpression": {
                              "expression": {
                                "id": 2712,
                                "name": "RecoverError",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2699,
                                "src": "616:12:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_enum$_RecoverError_$2699_$",
                                  "typeString": "type(enum ECDSA.RecoverError)"
                                }
                              },
                              "id": 2713,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "InvalidSignature",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 2695,
                              "src": "616:29:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2699",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            },
                            "src": "607:38:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseBody": {
                            "condition": {
                              "commonType": {
                                "typeIdentifier": "t_enum$_RecoverError_$2699",
                                "typeString": "enum ECDSA.RecoverError"
                              },
                              "id": 2723,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2720,
                                "name": "error",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2702,
                                "src": "716:5:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_enum$_RecoverError_$2699",
                                  "typeString": "enum ECDSA.RecoverError"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 2721,
                                  "name": "RecoverError",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2699,
                                  "src": "725:12:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_enum$_RecoverError_$2699_$",
                                    "typeString": "type(enum ECDSA.RecoverError)"
                                  }
                                },
                                "id": 2722,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "InvalidSignatureLength",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 2696,
                                "src": "725:35:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_enum$_RecoverError_$2699",
                                  "typeString": "enum ECDSA.RecoverError"
                                }
                              },
                              "src": "716:44:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "falseBody": {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_enum$_RecoverError_$2699",
                                  "typeString": "enum ECDSA.RecoverError"
                                },
                                "id": 2732,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 2729,
                                  "name": "error",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2702,
                                  "src": "838:5:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_enum$_RecoverError_$2699",
                                    "typeString": "enum ECDSA.RecoverError"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "expression": {
                                    "id": 2730,
                                    "name": "RecoverError",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2699,
                                    "src": "847:12:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_enum$_RecoverError_$2699_$",
                                      "typeString": "type(enum ECDSA.RecoverError)"
                                    }
                                  },
                                  "id": 2731,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "InvalidSignatureS",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 2697,
                                  "src": "847:30:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_enum$_RecoverError_$2699",
                                    "typeString": "enum ECDSA.RecoverError"
                                  }
                                },
                                "src": "838:39:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "condition": {
                                  "commonType": {
                                    "typeIdentifier": "t_enum$_RecoverError_$2699",
                                    "typeString": "enum ECDSA.RecoverError"
                                  },
                                  "id": 2741,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 2738,
                                    "name": "error",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2702,
                                    "src": "958:5:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_enum$_RecoverError_$2699",
                                      "typeString": "enum ECDSA.RecoverError"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "==",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 2739,
                                      "name": "RecoverError",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2699,
                                      "src": "967:12:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_enum$_RecoverError_$2699_$",
                                        "typeString": "type(enum ECDSA.RecoverError)"
                                      }
                                    },
                                    "id": 2740,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "InvalidSignatureV",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 2698,
                                    "src": "967:30:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_enum$_RecoverError_$2699",
                                      "typeString": "enum ECDSA.RecoverError"
                                    }
                                  },
                                  "src": "958:39:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "id": 2747,
                                "nodeType": "IfStatement",
                                "src": "954:114:15",
                                "trueBody": {
                                  "id": 2746,
                                  "nodeType": "Block",
                                  "src": "999:69:15",
                                  "statements": [
                                    {
                                      "expression": {
                                        "arguments": [
                                          {
                                            "hexValue": "45434453413a20696e76616c6964207369676e6174757265202776272076616c7565",
                                            "id": 2743,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "string",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "1020:36:15",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4",
                                              "typeString": "literal_string \"ECDSA: invalid signature 'v' value\""
                                            },
                                            "value": "ECDSA: invalid signature 'v' value"
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4",
                                              "typeString": "literal_string \"ECDSA: invalid signature 'v' value\""
                                            }
                                          ],
                                          "id": 2742,
                                          "name": "revert",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [
                                            -19,
                                            -19
                                          ],
                                          "referencedDeclaration": -19,
                                          "src": "1013:6:15",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                            "typeString": "function (string memory) pure"
                                          }
                                        },
                                        "id": 2744,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "1013:44:15",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_tuple$__$",
                                          "typeString": "tuple()"
                                        }
                                      },
                                      "id": 2745,
                                      "nodeType": "ExpressionStatement",
                                      "src": "1013:44:15"
                                    }
                                  ]
                                }
                              },
                              "id": 2748,
                              "nodeType": "IfStatement",
                              "src": "834:234:15",
                              "trueBody": {
                                "id": 2737,
                                "nodeType": "Block",
                                "src": "879:69:15",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "hexValue": "45434453413a20696e76616c6964207369676e6174757265202773272076616c7565",
                                          "id": 2734,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "string",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "900:36:15",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd",
                                            "typeString": "literal_string \"ECDSA: invalid signature 's' value\""
                                          },
                                          "value": "ECDSA: invalid signature 's' value"
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd",
                                            "typeString": "literal_string \"ECDSA: invalid signature 's' value\""
                                          }
                                        ],
                                        "id": 2733,
                                        "name": "revert",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [
                                          -19,
                                          -19
                                        ],
                                        "referencedDeclaration": -19,
                                        "src": "893:6:15",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                          "typeString": "function (string memory) pure"
                                        }
                                      },
                                      "id": 2735,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "893:44:15",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 2736,
                                    "nodeType": "ExpressionStatement",
                                    "src": "893:44:15"
                                  }
                                ]
                              }
                            },
                            "id": 2749,
                            "nodeType": "IfStatement",
                            "src": "712:356:15",
                            "trueBody": {
                              "id": 2728,
                              "nodeType": "Block",
                              "src": "762:66:15",
                              "statements": [
                                {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "hexValue": "45434453413a20696e76616c6964207369676e6174757265206c656e677468",
                                        "id": 2725,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "string",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "783:33:15",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77",
                                          "typeString": "literal_string \"ECDSA: invalid signature length\""
                                        },
                                        "value": "ECDSA: invalid signature length"
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77",
                                          "typeString": "literal_string \"ECDSA: invalid signature length\""
                                        }
                                      ],
                                      "id": 2724,
                                      "name": "revert",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [
                                        -19,
                                        -19
                                      ],
                                      "referencedDeclaration": -19,
                                      "src": "776:6:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                        "typeString": "function (string memory) pure"
                                      }
                                    },
                                    "id": 2726,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "776:41:15",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_tuple$__$",
                                      "typeString": "tuple()"
                                    }
                                  },
                                  "id": 2727,
                                  "nodeType": "ExpressionStatement",
                                  "src": "776:41:15"
                                }
                              ]
                            }
                          },
                          "id": 2750,
                          "nodeType": "IfStatement",
                          "src": "603:465:15",
                          "trueBody": {
                            "id": 2719,
                            "nodeType": "Block",
                            "src": "647:59:15",
                            "statements": [
                              {
                                "expression": {
                                  "arguments": [
                                    {
                                      "hexValue": "45434453413a20696e76616c6964207369676e6174757265",
                                      "id": 2716,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "string",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "668:26:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be",
                                        "typeString": "literal_string \"ECDSA: invalid signature\""
                                      },
                                      "value": "ECDSA: invalid signature"
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be",
                                        "typeString": "literal_string \"ECDSA: invalid signature\""
                                      }
                                    ],
                                    "id": 2715,
                                    "name": "revert",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [
                                      -19,
                                      -19
                                    ],
                                    "referencedDeclaration": -19,
                                    "src": "661:6:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                      "typeString": "function (string memory) pure"
                                    }
                                  },
                                  "id": 2717,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "661:34:15",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$__$",
                                    "typeString": "tuple()"
                                  }
                                },
                                "id": 2718,
                                "nodeType": "ExpressionStatement",
                                "src": "661:34:15"
                              }
                            ]
                          }
                        },
                        "id": 2751,
                        "nodeType": "IfStatement",
                        "src": "507:561:15",
                        "trueBody": {
                          "id": 2710,
                          "nodeType": "Block",
                          "src": "542:55:15",
                          "statements": [
                            {
                              "functionReturnParameters": 2704,
                              "id": 2709,
                              "nodeType": "Return",
                              "src": "556:7:15"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "id": 2753,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_throwError",
                  "nameLocation": "452:11:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2703,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2702,
                        "mutability": "mutable",
                        "name": "error",
                        "nameLocation": "477:5:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2753,
                        "src": "464:18:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_enum$_RecoverError_$2699",
                          "typeString": "enum ECDSA.RecoverError"
                        },
                        "typeName": {
                          "id": 2701,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 2700,
                            "name": "RecoverError",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 2699,
                            "src": "464:12:15"
                          },
                          "referencedDeclaration": 2699,
                          "src": "464:12:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_enum$_RecoverError_$2699",
                            "typeString": "enum ECDSA.RecoverError"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "463:20:15"
                  },
                  "returnParameters": {
                    "id": 2704,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "497:0:15"
                  },
                  "scope": 3057,
                  "src": "443:631:15",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 2817,
                    "nodeType": "Block",
                    "src": "2242:1175:15",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2769,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 2766,
                              "name": "signature",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2758,
                              "src": "2449:9:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 2767,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "2449:16:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "3635",
                            "id": 2768,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2469:2:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_65_by_1",
                              "typeString": "int_const 65"
                            },
                            "value": "65"
                          },
                          "src": "2449:22:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 2791,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "expression": {
                                "id": 2788,
                                "name": "signature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2758,
                                "src": "2931:9:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              },
                              "id": 2789,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "2931:16:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "==",
                            "rightExpression": {
                              "hexValue": "3634",
                              "id": 2790,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2951:2:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_64_by_1",
                                "typeString": "int_const 64"
                              },
                              "value": "64"
                            },
                            "src": "2931:22:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseBody": {
                            "id": 2814,
                            "nodeType": "Block",
                            "src": "3330:81:15",
                            "statements": [
                              {
                                "expression": {
                                  "components": [
                                    {
                                      "arguments": [
                                        {
                                          "hexValue": "30",
                                          "id": 2808,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "3360:1:15",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_rational_0_by_1",
                                            "typeString": "int_const 0"
                                          },
                                          "value": "0"
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_rational_0_by_1",
                                            "typeString": "int_const 0"
                                          }
                                        ],
                                        "id": 2807,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "3352:7:15",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_address_$",
                                          "typeString": "type(address)"
                                        },
                                        "typeName": {
                                          "id": 2806,
                                          "name": "address",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "3352:7:15",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 2809,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "3352:10:15",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    {
                                      "expression": {
                                        "id": 2810,
                                        "name": "RecoverError",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 2699,
                                        "src": "3364:12:15",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_enum$_RecoverError_$2699_$",
                                          "typeString": "type(enum ECDSA.RecoverError)"
                                        }
                                      },
                                      "id": 2811,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "memberName": "InvalidSignatureLength",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 2696,
                                      "src": "3364:35:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_enum$_RecoverError_$2699",
                                        "typeString": "enum ECDSA.RecoverError"
                                      }
                                    }
                                  ],
                                  "id": 2812,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "3351:49:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2699_$",
                                    "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                  }
                                },
                                "functionReturnParameters": 2765,
                                "id": 2813,
                                "nodeType": "Return",
                                "src": "3344:56:15"
                              }
                            ]
                          },
                          "id": 2815,
                          "nodeType": "IfStatement",
                          "src": "2927:484:15",
                          "trueBody": {
                            "id": 2805,
                            "nodeType": "Block",
                            "src": "2955:369:15",
                            "statements": [
                              {
                                "assignments": [
                                  2793
                                ],
                                "declarations": [
                                  {
                                    "constant": false,
                                    "id": 2793,
                                    "mutability": "mutable",
                                    "name": "r",
                                    "nameLocation": "2977:1:15",
                                    "nodeType": "VariableDeclaration",
                                    "scope": 2805,
                                    "src": "2969:9:15",
                                    "stateVariable": false,
                                    "storageLocation": "default",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    "typeName": {
                                      "id": 2792,
                                      "name": "bytes32",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2969:7:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    "visibility": "internal"
                                  }
                                ],
                                "id": 2794,
                                "nodeType": "VariableDeclarationStatement",
                                "src": "2969:9:15"
                              },
                              {
                                "assignments": [
                                  2796
                                ],
                                "declarations": [
                                  {
                                    "constant": false,
                                    "id": 2796,
                                    "mutability": "mutable",
                                    "name": "vs",
                                    "nameLocation": "3000:2:15",
                                    "nodeType": "VariableDeclaration",
                                    "scope": 2805,
                                    "src": "2992:10:15",
                                    "stateVariable": false,
                                    "storageLocation": "default",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    "typeName": {
                                      "id": 2795,
                                      "name": "bytes32",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2992:7:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    "visibility": "internal"
                                  }
                                ],
                                "id": 2797,
                                "nodeType": "VariableDeclarationStatement",
                                "src": "2992:10:15"
                              },
                              {
                                "AST": {
                                  "nodeType": "YulBlock",
                                  "src": "3156:114:15",
                                  "statements": [
                                    {
                                      "nodeType": "YulAssignment",
                                      "src": "3174:32:15",
                                      "value": {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "signature",
                                                "nodeType": "YulIdentifier",
                                                "src": "3189:9:15"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3200:4:15",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3185:3:15"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3185:20:15"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3179:5:15"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3179:27:15"
                                      },
                                      "variableNames": [
                                        {
                                          "name": "r",
                                          "nodeType": "YulIdentifier",
                                          "src": "3174:1:15"
                                        }
                                      ]
                                    },
                                    {
                                      "nodeType": "YulAssignment",
                                      "src": "3223:33:15",
                                      "value": {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "signature",
                                                "nodeType": "YulIdentifier",
                                                "src": "3239:9:15"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3250:4:15",
                                                "type": "",
                                                "value": "0x40"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3235:3:15"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3235:20:15"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3229:5:15"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3229:27:15"
                                      },
                                      "variableNames": [
                                        {
                                          "name": "vs",
                                          "nodeType": "YulIdentifier",
                                          "src": "3223:2:15"
                                        }
                                      ]
                                    }
                                  ]
                                },
                                "evmVersion": "berlin",
                                "externalReferences": [
                                  {
                                    "declaration": 2793,
                                    "isOffset": false,
                                    "isSlot": false,
                                    "src": "3174:1:15",
                                    "valueSize": 1
                                  },
                                  {
                                    "declaration": 2758,
                                    "isOffset": false,
                                    "isSlot": false,
                                    "src": "3189:9:15",
                                    "valueSize": 1
                                  },
                                  {
                                    "declaration": 2758,
                                    "isOffset": false,
                                    "isSlot": false,
                                    "src": "3239:9:15",
                                    "valueSize": 1
                                  },
                                  {
                                    "declaration": 2796,
                                    "isOffset": false,
                                    "isSlot": false,
                                    "src": "3223:2:15",
                                    "valueSize": 1
                                  }
                                ],
                                "id": 2798,
                                "nodeType": "InlineAssembly",
                                "src": "3147:123:15"
                              },
                              {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2800,
                                      "name": "hash",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2756,
                                      "src": "3301:4:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    {
                                      "id": 2801,
                                      "name": "r",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2793,
                                      "src": "3307:1:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    {
                                      "id": 2802,
                                      "name": "vs",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2796,
                                      "src": "3310:2:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      },
                                      {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      },
                                      {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    ],
                                    "id": 2799,
                                    "name": "tryRecover",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [
                                      2818,
                                      2875,
                                      2986
                                    ],
                                    "referencedDeclaration": 2875,
                                    "src": "3290:10:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$2699_$",
                                      "typeString": "function (bytes32,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"
                                    }
                                  },
                                  "id": 2803,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3290:23:15",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2699_$",
                                    "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                  }
                                },
                                "functionReturnParameters": 2765,
                                "id": 2804,
                                "nodeType": "Return",
                                "src": "3283:30:15"
                              }
                            ]
                          }
                        },
                        "id": 2816,
                        "nodeType": "IfStatement",
                        "src": "2445:966:15",
                        "trueBody": {
                          "id": 2787,
                          "nodeType": "Block",
                          "src": "2473:448:15",
                          "statements": [
                            {
                              "assignments": [
                                2771
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 2771,
                                  "mutability": "mutable",
                                  "name": "r",
                                  "nameLocation": "2495:1:15",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 2787,
                                  "src": "2487:9:15",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  "typeName": {
                                    "id": 2770,
                                    "name": "bytes32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2487:7:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 2772,
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2487:9:15"
                            },
                            {
                              "assignments": [
                                2774
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 2774,
                                  "mutability": "mutable",
                                  "name": "s",
                                  "nameLocation": "2518:1:15",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 2787,
                                  "src": "2510:9:15",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  "typeName": {
                                    "id": 2773,
                                    "name": "bytes32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2510:7:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 2775,
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2510:9:15"
                            },
                            {
                              "assignments": [
                                2777
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 2777,
                                  "mutability": "mutable",
                                  "name": "v",
                                  "nameLocation": "2539:1:15",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 2787,
                                  "src": "2533:7:15",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  },
                                  "typeName": {
                                    "id": 2776,
                                    "name": "uint8",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2533:5:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 2778,
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2533:7:15"
                            },
                            {
                              "AST": {
                                "nodeType": "YulBlock",
                                "src": "2694:171:15",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2712:32:15",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "signature",
                                              "nodeType": "YulIdentifier",
                                              "src": "2727:9:15"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2738:4:15",
                                              "type": "",
                                              "value": "0x20"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "2723:3:15"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2723:20:15"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "2717:5:15"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2717:27:15"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "r",
                                        "nodeType": "YulIdentifier",
                                        "src": "2712:1:15"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2761:32:15",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "signature",
                                              "nodeType": "YulIdentifier",
                                              "src": "2776:9:15"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2787:4:15",
                                              "type": "",
                                              "value": "0x40"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "2772:3:15"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2772:20:15"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "2766:5:15"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2766:27:15"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "s",
                                        "nodeType": "YulIdentifier",
                                        "src": "2761:1:15"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2810:41:15",
                                    "value": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2820:1:15",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "signature",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2833:9:15"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "2844:4:15",
                                                  "type": "",
                                                  "value": "0x60"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "2829:3:15"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "2829:20:15"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "2823:5:15"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2823:27:15"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "byte",
                                        "nodeType": "YulIdentifier",
                                        "src": "2815:4:15"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2815:36:15"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "v",
                                        "nodeType": "YulIdentifier",
                                        "src": "2810:1:15"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "evmVersion": "berlin",
                              "externalReferences": [
                                {
                                  "declaration": 2771,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2712:1:15",
                                  "valueSize": 1
                                },
                                {
                                  "declaration": 2774,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2761:1:15",
                                  "valueSize": 1
                                },
                                {
                                  "declaration": 2758,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2727:9:15",
                                  "valueSize": 1
                                },
                                {
                                  "declaration": 2758,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2776:9:15",
                                  "valueSize": 1
                                },
                                {
                                  "declaration": 2758,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2833:9:15",
                                  "valueSize": 1
                                },
                                {
                                  "declaration": 2777,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2810:1:15",
                                  "valueSize": 1
                                }
                              ],
                              "id": 2779,
                              "nodeType": "InlineAssembly",
                              "src": "2685:180:15"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 2781,
                                    "name": "hash",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2756,
                                    "src": "2896:4:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  {
                                    "id": 2782,
                                    "name": "v",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2777,
                                    "src": "2902:1:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  {
                                    "id": 2783,
                                    "name": "r",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2771,
                                    "src": "2905:1:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  {
                                    "id": 2784,
                                    "name": "s",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2774,
                                    "src": "2908:1:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    },
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  ],
                                  "id": 2780,
                                  "name": "tryRecover",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    2818,
                                    2875,
                                    2986
                                  ],
                                  "referencedDeclaration": 2986,
                                  "src": "2885:10:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$2699_$",
                                    "typeString": "function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"
                                  }
                                },
                                "id": 2785,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2885:25:15",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2699_$",
                                  "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                }
                              },
                              "functionReturnParameters": 2765,
                              "id": 2786,
                              "nodeType": "Return",
                              "src": "2878:32:15"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2754,
                    "nodeType": "StructuredDocumentation",
                    "src": "1080:1053:15",
                    "text": " @dev Returns the address that signed a hashed message (`hash`) with\n `signature` or error string. This address can then be used for verification purposes.\n The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n this function rejects them by requiring the `s` value to be in the lower\n half order, and the `v` value to be either 27 or 28.\n IMPORTANT: `hash` _must_ be the result of a hash operation for the\n verification to be secure: it is possible to craft signatures that\n recover to arbitrary addresses for non-hashed data. A safe way to ensure\n this is by receiving a hash of the original message (which may otherwise\n be too long), and then calling {toEthSignedMessageHash} on it.\n Documentation for signature generation:\n - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\n _Available since v4.3._"
                  },
                  "id": 2818,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tryRecover",
                  "nameLocation": "2147:10:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2759,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2756,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "2166:4:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2818,
                        "src": "2158:12:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2755,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2158:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2758,
                        "mutability": "mutable",
                        "name": "signature",
                        "nameLocation": "2185:9:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2818,
                        "src": "2172:22:15",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2757,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2172:5:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2157:38:15"
                  },
                  "returnParameters": {
                    "id": 2765,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2761,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2818,
                        "src": "2219:7:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2760,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2219:7:15",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2764,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2818,
                        "src": "2228:12:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_enum$_RecoverError_$2699",
                          "typeString": "enum ECDSA.RecoverError"
                        },
                        "typeName": {
                          "id": 2763,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 2762,
                            "name": "RecoverError",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 2699,
                            "src": "2228:12:15"
                          },
                          "referencedDeclaration": 2699,
                          "src": "2228:12:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_enum$_RecoverError_$2699",
                            "typeString": "enum ECDSA.RecoverError"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2218:23:15"
                  },
                  "scope": 3057,
                  "src": "2138:1279:15",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2844,
                    "nodeType": "Block",
                    "src": "4290:140:15",
                    "statements": [
                      {
                        "assignments": [
                          2829,
                          2832
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2829,
                            "mutability": "mutable",
                            "name": "recovered",
                            "nameLocation": "4309:9:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 2844,
                            "src": "4301:17:15",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 2828,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "4301:7:15",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 2832,
                            "mutability": "mutable",
                            "name": "error",
                            "nameLocation": "4333:5:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 2844,
                            "src": "4320:18:15",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_enum$_RecoverError_$2699",
                              "typeString": "enum ECDSA.RecoverError"
                            },
                            "typeName": {
                              "id": 2831,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 2830,
                                "name": "RecoverError",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 2699,
                                "src": "4320:12:15"
                              },
                              "referencedDeclaration": 2699,
                              "src": "4320:12:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2699",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2837,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2834,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2821,
                              "src": "4353:4:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2835,
                              "name": "signature",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2823,
                              "src": "4359:9:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2833,
                            "name": "tryRecover",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              2818,
                              2875,
                              2986
                            ],
                            "referencedDeclaration": 2818,
                            "src": "4342:10:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$_t_enum$_RecoverError_$2699_$",
                              "typeString": "function (bytes32,bytes memory) pure returns (address,enum ECDSA.RecoverError)"
                            }
                          },
                          "id": 2836,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4342:27:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2699_$",
                            "typeString": "tuple(address,enum ECDSA.RecoverError)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4300:69:15"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2839,
                              "name": "error",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2832,
                              "src": "4391:5:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2699",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_enum$_RecoverError_$2699",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            ],
                            "id": 2838,
                            "name": "_throwError",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2753,
                            "src": "4379:11:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_enum$_RecoverError_$2699_$returns$__$",
                              "typeString": "function (enum ECDSA.RecoverError) pure"
                            }
                          },
                          "id": 2840,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4379:18:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2841,
                        "nodeType": "ExpressionStatement",
                        "src": "4379:18:15"
                      },
                      {
                        "expression": {
                          "id": 2842,
                          "name": "recovered",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 2829,
                          "src": "4414:9:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 2827,
                        "id": 2843,
                        "nodeType": "Return",
                        "src": "4407:16:15"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2819,
                    "nodeType": "StructuredDocumentation",
                    "src": "3423:775:15",
                    "text": " @dev Returns the address that signed a hashed message (`hash`) with\n `signature`. This address can then be used for verification purposes.\n The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n this function rejects them by requiring the `s` value to be in the lower\n half order, and the `v` value to be either 27 or 28.\n IMPORTANT: `hash` _must_ be the result of a hash operation for the\n verification to be secure: it is possible to craft signatures that\n recover to arbitrary addresses for non-hashed data. A safe way to ensure\n this is by receiving a hash of the original message (which may otherwise\n be too long), and then calling {toEthSignedMessageHash} on it."
                  },
                  "id": 2845,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "recover",
                  "nameLocation": "4212:7:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2824,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2821,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "4228:4:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2845,
                        "src": "4220:12:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2820,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4220:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2823,
                        "mutability": "mutable",
                        "name": "signature",
                        "nameLocation": "4247:9:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2845,
                        "src": "4234:22:15",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2822,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4234:5:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4219:38:15"
                  },
                  "returnParameters": {
                    "id": 2827,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2826,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2845,
                        "src": "4281:7:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2825,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4281:7:15",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4280:9:15"
                  },
                  "scope": 3057,
                  "src": "4203:227:15",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2874,
                    "nodeType": "Block",
                    "src": "4817:246:15",
                    "statements": [
                      {
                        "assignments": [
                          2861
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2861,
                            "mutability": "mutable",
                            "name": "s",
                            "nameLocation": "4835:1:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 2874,
                            "src": "4827:9:15",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 2860,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "4827:7:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2862,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4827:9:15"
                      },
                      {
                        "assignments": [
                          2864
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2864,
                            "mutability": "mutable",
                            "name": "v",
                            "nameLocation": "4852:1:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 2874,
                            "src": "4846:7:15",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 2863,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "4846:5:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2865,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4846:7:15"
                      },
                      {
                        "AST": {
                          "nodeType": "YulBlock",
                          "src": "4872:143:15",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4886:80:15",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "vs",
                                    "nodeType": "YulIdentifier",
                                    "src": "4895:2:15"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4899:66:15",
                                    "type": "",
                                    "value": "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "4891:3:15"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4891:75:15"
                              },
                              "variableNames": [
                                {
                                  "name": "s",
                                  "nodeType": "YulIdentifier",
                                  "src": "4886:1:15"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4979:26:15",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4992:3:15",
                                        "type": "",
                                        "value": "255"
                                      },
                                      {
                                        "name": "vs",
                                        "nodeType": "YulIdentifier",
                                        "src": "4997:2:15"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shr",
                                      "nodeType": "YulIdentifier",
                                      "src": "4988:3:15"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4988:12:15"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5002:2:15",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4984:3:15"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4984:21:15"
                              },
                              "variableNames": [
                                {
                                  "name": "v",
                                  "nodeType": "YulIdentifier",
                                  "src": "4979:1:15"
                                }
                              ]
                            }
                          ]
                        },
                        "evmVersion": "berlin",
                        "externalReferences": [
                          {
                            "declaration": 2861,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "4886:1:15",
                            "valueSize": 1
                          },
                          {
                            "declaration": 2864,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "4979:1:15",
                            "valueSize": 1
                          },
                          {
                            "declaration": 2852,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "4895:2:15",
                            "valueSize": 1
                          },
                          {
                            "declaration": 2852,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "4997:2:15",
                            "valueSize": 1
                          }
                        ],
                        "id": 2866,
                        "nodeType": "InlineAssembly",
                        "src": "4863:152:15"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2868,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2848,
                              "src": "5042:4:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2869,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2864,
                              "src": "5048:1:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 2870,
                              "name": "r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2850,
                              "src": "5051:1:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2871,
                              "name": "s",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2861,
                              "src": "5054:1:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 2867,
                            "name": "tryRecover",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              2818,
                              2875,
                              2986
                            ],
                            "referencedDeclaration": 2986,
                            "src": "5031:10:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$2699_$",
                              "typeString": "function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"
                            }
                          },
                          "id": 2872,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5031:25:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2699_$",
                            "typeString": "tuple(address,enum ECDSA.RecoverError)"
                          }
                        },
                        "functionReturnParameters": 2859,
                        "id": 2873,
                        "nodeType": "Return",
                        "src": "5024:32:15"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2846,
                    "nodeType": "StructuredDocumentation",
                    "src": "4436:243:15",
                    "text": " @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\n _Available since v4.3._"
                  },
                  "id": 2875,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tryRecover",
                  "nameLocation": "4693:10:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2853,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2848,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "4721:4:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2875,
                        "src": "4713:12:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2847,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4713:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2850,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "4743:1:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2875,
                        "src": "4735:9:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2849,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4735:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2852,
                        "mutability": "mutable",
                        "name": "vs",
                        "nameLocation": "4762:2:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2875,
                        "src": "4754:10:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2851,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4754:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4703:67:15"
                  },
                  "returnParameters": {
                    "id": 2859,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2855,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2875,
                        "src": "4794:7:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2854,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4794:7:15",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2858,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2875,
                        "src": "4803:12:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_enum$_RecoverError_$2699",
                          "typeString": "enum ECDSA.RecoverError"
                        },
                        "typeName": {
                          "id": 2857,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 2856,
                            "name": "RecoverError",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 2699,
                            "src": "4803:12:15"
                          },
                          "referencedDeclaration": 2699,
                          "src": "4803:12:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_enum$_RecoverError_$2699",
                            "typeString": "enum ECDSA.RecoverError"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4793:23:15"
                  },
                  "scope": 3057,
                  "src": "4684:379:15",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2904,
                    "nodeType": "Block",
                    "src": "5344:136:15",
                    "statements": [
                      {
                        "assignments": [
                          2888,
                          2891
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2888,
                            "mutability": "mutable",
                            "name": "recovered",
                            "nameLocation": "5363:9:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 2904,
                            "src": "5355:17:15",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 2887,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "5355:7:15",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 2891,
                            "mutability": "mutable",
                            "name": "error",
                            "nameLocation": "5387:5:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 2904,
                            "src": "5374:18:15",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_enum$_RecoverError_$2699",
                              "typeString": "enum ECDSA.RecoverError"
                            },
                            "typeName": {
                              "id": 2890,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 2889,
                                "name": "RecoverError",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 2699,
                                "src": "5374:12:15"
                              },
                              "referencedDeclaration": 2699,
                              "src": "5374:12:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2699",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2897,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2893,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2878,
                              "src": "5407:4:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2894,
                              "name": "r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2880,
                              "src": "5413:1:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2895,
                              "name": "vs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2882,
                              "src": "5416:2:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 2892,
                            "name": "tryRecover",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              2818,
                              2875,
                              2986
                            ],
                            "referencedDeclaration": 2875,
                            "src": "5396:10:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$2699_$",
                              "typeString": "function (bytes32,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"
                            }
                          },
                          "id": 2896,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5396:23:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2699_$",
                            "typeString": "tuple(address,enum ECDSA.RecoverError)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5354:65:15"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2899,
                              "name": "error",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2891,
                              "src": "5441:5:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2699",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_enum$_RecoverError_$2699",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            ],
                            "id": 2898,
                            "name": "_throwError",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2753,
                            "src": "5429:11:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_enum$_RecoverError_$2699_$returns$__$",
                              "typeString": "function (enum ECDSA.RecoverError) pure"
                            }
                          },
                          "id": 2900,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5429:18:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2901,
                        "nodeType": "ExpressionStatement",
                        "src": "5429:18:15"
                      },
                      {
                        "expression": {
                          "id": 2902,
                          "name": "recovered",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 2888,
                          "src": "5464:9:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 2886,
                        "id": 2903,
                        "nodeType": "Return",
                        "src": "5457:16:15"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2876,
                    "nodeType": "StructuredDocumentation",
                    "src": "5069:154:15",
                    "text": " @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n _Available since v4.2._"
                  },
                  "id": 2905,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "recover",
                  "nameLocation": "5237:7:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2883,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2878,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "5262:4:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2905,
                        "src": "5254:12:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2877,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5254:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2880,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "5284:1:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2905,
                        "src": "5276:9:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2879,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5276:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2882,
                        "mutability": "mutable",
                        "name": "vs",
                        "nameLocation": "5303:2:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2905,
                        "src": "5295:10:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2881,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5295:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5244:67:15"
                  },
                  "returnParameters": {
                    "id": 2886,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2885,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2905,
                        "src": "5335:7:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2884,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5335:7:15",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5334:9:15"
                  },
                  "scope": 3057,
                  "src": "5228:252:15",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2985,
                    "nodeType": "Block",
                    "src": "5803:1454:15",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2927,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "id": 2924,
                                "name": "s",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2914,
                                "src": "6699:1:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              ],
                              "id": 2923,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "6691:7:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint256_$",
                                "typeString": "type(uint256)"
                              },
                              "typeName": {
                                "id": 2922,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "6691:7:15",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 2925,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "6691:10:15",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "307837464646464646464646464646464646464646464646464646464646464646463544353736453733353741343530314444464539324634363638314232304130",
                            "id": 2926,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "6704:66:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_57896044618658097711785492504343953926418782139537452191302581570759080747168_by_1",
                              "typeString": "int_const 5789...(69 digits omitted)...7168"
                            },
                            "value": "0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0"
                          },
                          "src": "6691:79:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2937,
                        "nodeType": "IfStatement",
                        "src": "6687:161:15",
                        "trueBody": {
                          "id": 2936,
                          "nodeType": "Block",
                          "src": "6772:76:15",
                          "statements": [
                            {
                              "expression": {
                                "components": [
                                  {
                                    "arguments": [
                                      {
                                        "hexValue": "30",
                                        "id": 2930,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "6802:1:15",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        },
                                        "value": "0"
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        }
                                      ],
                                      "id": 2929,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "6794:7:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      },
                                      "typeName": {
                                        "id": 2928,
                                        "name": "address",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "6794:7:15",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 2931,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6794:10:15",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 2932,
                                      "name": "RecoverError",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2699,
                                      "src": "6806:12:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_enum$_RecoverError_$2699_$",
                                        "typeString": "type(enum ECDSA.RecoverError)"
                                      }
                                    },
                                    "id": 2933,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "InvalidSignatureS",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 2697,
                                    "src": "6806:30:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_enum$_RecoverError_$2699",
                                      "typeString": "enum ECDSA.RecoverError"
                                    }
                                  }
                                ],
                                "id": 2934,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "6793:44:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2699_$",
                                  "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                }
                              },
                              "functionReturnParameters": 2921,
                              "id": 2935,
                              "nodeType": "Return",
                              "src": "6786:51:15"
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 2944,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "id": 2940,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 2938,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2910,
                              "src": "6861:1:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "!=",
                            "rightExpression": {
                              "hexValue": "3237",
                              "id": 2939,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6866:2:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_27_by_1",
                                "typeString": "int_const 27"
                              },
                              "value": "27"
                            },
                            "src": "6861:7:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "id": 2943,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 2941,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2910,
                              "src": "6872:1:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "!=",
                            "rightExpression": {
                              "hexValue": "3238",
                              "id": 2942,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6877:2:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_28_by_1",
                                "typeString": "int_const 28"
                              },
                              "value": "28"
                            },
                            "src": "6872:7:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "6861:18:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2954,
                        "nodeType": "IfStatement",
                        "src": "6857:100:15",
                        "trueBody": {
                          "id": 2953,
                          "nodeType": "Block",
                          "src": "6881:76:15",
                          "statements": [
                            {
                              "expression": {
                                "components": [
                                  {
                                    "arguments": [
                                      {
                                        "hexValue": "30",
                                        "id": 2947,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "6911:1:15",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        },
                                        "value": "0"
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        }
                                      ],
                                      "id": 2946,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "6903:7:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      },
                                      "typeName": {
                                        "id": 2945,
                                        "name": "address",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "6903:7:15",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 2948,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6903:10:15",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 2949,
                                      "name": "RecoverError",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2699,
                                      "src": "6915:12:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_enum$_RecoverError_$2699_$",
                                        "typeString": "type(enum ECDSA.RecoverError)"
                                      }
                                    },
                                    "id": 2950,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "InvalidSignatureV",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 2698,
                                    "src": "6915:30:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_enum$_RecoverError_$2699",
                                      "typeString": "enum ECDSA.RecoverError"
                                    }
                                  }
                                ],
                                "id": 2951,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "6902:44:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2699_$",
                                  "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                }
                              },
                              "functionReturnParameters": 2921,
                              "id": 2952,
                              "nodeType": "Return",
                              "src": "6895:51:15"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          2956
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2956,
                            "mutability": "mutable",
                            "name": "signer",
                            "nameLocation": "7059:6:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 2985,
                            "src": "7051:14:15",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 2955,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "7051:7:15",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2963,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2958,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2908,
                              "src": "7078:4:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2959,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2910,
                              "src": "7084:1:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 2960,
                              "name": "r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2912,
                              "src": "7087:1:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2961,
                              "name": "s",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2914,
                              "src": "7090:1:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 2957,
                            "name": "ecrecover",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -6,
                            "src": "7068:9:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_ecrecover_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$",
                              "typeString": "function (bytes32,uint8,bytes32,bytes32) pure returns (address)"
                            }
                          },
                          "id": 2962,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7068:24:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7051:41:15"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 2969,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2964,
                            "name": "signer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2956,
                            "src": "7106:6:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 2967,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7124:1:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                }
                              ],
                              "id": 2966,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "7116:7:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 2965,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "7116:7:15",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 2968,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "7116:10:15",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "7106:20:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2979,
                        "nodeType": "IfStatement",
                        "src": "7102:101:15",
                        "trueBody": {
                          "id": 2978,
                          "nodeType": "Block",
                          "src": "7128:75:15",
                          "statements": [
                            {
                              "expression": {
                                "components": [
                                  {
                                    "arguments": [
                                      {
                                        "hexValue": "30",
                                        "id": 2972,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "7158:1:15",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        },
                                        "value": "0"
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        }
                                      ],
                                      "id": 2971,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "7150:7:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      },
                                      "typeName": {
                                        "id": 2970,
                                        "name": "address",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "7150:7:15",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 2973,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "7150:10:15",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 2974,
                                      "name": "RecoverError",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2699,
                                      "src": "7162:12:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_enum$_RecoverError_$2699_$",
                                        "typeString": "type(enum ECDSA.RecoverError)"
                                      }
                                    },
                                    "id": 2975,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "InvalidSignature",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 2695,
                                    "src": "7162:29:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_enum$_RecoverError_$2699",
                                      "typeString": "enum ECDSA.RecoverError"
                                    }
                                  }
                                ],
                                "id": 2976,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "7149:43:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2699_$",
                                  "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                }
                              },
                              "functionReturnParameters": 2921,
                              "id": 2977,
                              "nodeType": "Return",
                              "src": "7142:50:15"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "id": 2980,
                              "name": "signer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2956,
                              "src": "7221:6:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "id": 2981,
                                "name": "RecoverError",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2699,
                                "src": "7229:12:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_enum$_RecoverError_$2699_$",
                                  "typeString": "type(enum ECDSA.RecoverError)"
                                }
                              },
                              "id": 2982,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "NoError",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 2694,
                              "src": "7229:20:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2699",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            }
                          ],
                          "id": 2983,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "7220:30:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2699_$",
                            "typeString": "tuple(address,enum ECDSA.RecoverError)"
                          }
                        },
                        "functionReturnParameters": 2921,
                        "id": 2984,
                        "nodeType": "Return",
                        "src": "7213:37:15"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2906,
                    "nodeType": "StructuredDocumentation",
                    "src": "5486:163:15",
                    "text": " @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n `r` and `s` signature fields separately.\n _Available since v4.3._"
                  },
                  "id": 2986,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tryRecover",
                  "nameLocation": "5663:10:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2915,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2908,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "5691:4:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2986,
                        "src": "5683:12:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2907,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5683:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2910,
                        "mutability": "mutable",
                        "name": "v",
                        "nameLocation": "5711:1:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2986,
                        "src": "5705:7:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 2909,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "5705:5:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2912,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "5730:1:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2986,
                        "src": "5722:9:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2911,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5722:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2914,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "5749:1:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2986,
                        "src": "5741:9:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2913,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5741:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5673:83:15"
                  },
                  "returnParameters": {
                    "id": 2921,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2917,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2986,
                        "src": "5780:7:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2916,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5780:7:15",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2920,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2986,
                        "src": "5789:12:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_enum$_RecoverError_$2699",
                          "typeString": "enum ECDSA.RecoverError"
                        },
                        "typeName": {
                          "id": 2919,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 2918,
                            "name": "RecoverError",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 2699,
                            "src": "5789:12:15"
                          },
                          "referencedDeclaration": 2699,
                          "src": "5789:12:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_enum$_RecoverError_$2699",
                            "typeString": "enum ECDSA.RecoverError"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5779:23:15"
                  },
                  "scope": 3057,
                  "src": "5654:1603:15",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3018,
                    "nodeType": "Block",
                    "src": "7522:138:15",
                    "statements": [
                      {
                        "assignments": [
                          3001,
                          3004
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3001,
                            "mutability": "mutable",
                            "name": "recovered",
                            "nameLocation": "7541:9:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 3018,
                            "src": "7533:17:15",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 3000,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "7533:7:15",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 3004,
                            "mutability": "mutable",
                            "name": "error",
                            "nameLocation": "7565:5:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 3018,
                            "src": "7552:18:15",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_enum$_RecoverError_$2699",
                              "typeString": "enum ECDSA.RecoverError"
                            },
                            "typeName": {
                              "id": 3003,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 3002,
                                "name": "RecoverError",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 2699,
                                "src": "7552:12:15"
                              },
                              "referencedDeclaration": 2699,
                              "src": "7552:12:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2699",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3011,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 3006,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2989,
                              "src": "7585:4:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 3007,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2991,
                              "src": "7591:1:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 3008,
                              "name": "r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2993,
                              "src": "7594:1:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 3009,
                              "name": "s",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2995,
                              "src": "7597:1:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 3005,
                            "name": "tryRecover",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              2818,
                              2875,
                              2986
                            ],
                            "referencedDeclaration": 2986,
                            "src": "7574:10:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$2699_$",
                              "typeString": "function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"
                            }
                          },
                          "id": 3010,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7574:25:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2699_$",
                            "typeString": "tuple(address,enum ECDSA.RecoverError)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7532:67:15"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3013,
                              "name": "error",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3004,
                              "src": "7621:5:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2699",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_enum$_RecoverError_$2699",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            ],
                            "id": 3012,
                            "name": "_throwError",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2753,
                            "src": "7609:11:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_enum$_RecoverError_$2699_$returns$__$",
                              "typeString": "function (enum ECDSA.RecoverError) pure"
                            }
                          },
                          "id": 3014,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7609:18:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3015,
                        "nodeType": "ExpressionStatement",
                        "src": "7609:18:15"
                      },
                      {
                        "expression": {
                          "id": 3016,
                          "name": "recovered",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3001,
                          "src": "7644:9:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 2999,
                        "id": 3017,
                        "nodeType": "Return",
                        "src": "7637:16:15"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2987,
                    "nodeType": "StructuredDocumentation",
                    "src": "7263:122:15",
                    "text": " @dev Overload of {ECDSA-recover} that receives the `v`,\n `r` and `s` signature fields separately."
                  },
                  "id": 3019,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "recover",
                  "nameLocation": "7399:7:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2996,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2989,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "7424:4:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 3019,
                        "src": "7416:12:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2988,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "7416:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2991,
                        "mutability": "mutable",
                        "name": "v",
                        "nameLocation": "7444:1:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 3019,
                        "src": "7438:7:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 2990,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "7438:5:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2993,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "7463:1:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 3019,
                        "src": "7455:9:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2992,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "7455:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2995,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "7482:1:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 3019,
                        "src": "7474:9:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2994,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "7474:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7406:83:15"
                  },
                  "returnParameters": {
                    "id": 2999,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2998,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3019,
                        "src": "7513:7:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2997,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7513:7:15",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7512:9:15"
                  },
                  "scope": 3057,
                  "src": "7390:270:15",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3035,
                    "nodeType": "Block",
                    "src": "8028:187:15",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "19457468657265756d205369676e6564204d6573736167653a0a3332",
                                  "id": 3030,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "string",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8166:34:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_stringliteral_178a2411ab6fbc1ba11064408972259c558d0e82fd48b0aba3ad81d14f065e73",
                                    "typeString": "literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a3332\""
                                  },
                                  "value": "\u0019Ethereum Signed Message:\n32"
                                },
                                {
                                  "id": 3031,
                                  "name": "hash",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3022,
                                  "src": "8202:4:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_stringliteral_178a2411ab6fbc1ba11064408972259c558d0e82fd48b0aba3ad81d14f065e73",
                                    "typeString": "literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a3332\""
                                  },
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                ],
                                "expression": {
                                  "id": 3028,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "8149:3:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 3029,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "8149:16:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 3032,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8149:58:15",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 3027,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "8139:9:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 3033,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8139:69:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 3026,
                        "id": 3034,
                        "nodeType": "Return",
                        "src": "8132:76:15"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3020,
                    "nodeType": "StructuredDocumentation",
                    "src": "7666:279:15",
                    "text": " @dev Returns an Ethereum Signed Message, created from a `hash`. This\n produces hash corresponding to the one signed with the\n https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n JSON-RPC method as part of EIP-191.\n See {recover}."
                  },
                  "id": 3036,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toEthSignedMessageHash",
                  "nameLocation": "7959:22:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3023,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3022,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "7990:4:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 3036,
                        "src": "7982:12:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3021,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "7982:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7981:14:15"
                  },
                  "returnParameters": {
                    "id": 3026,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3025,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3036,
                        "src": "8019:7:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3024,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8019:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8018:9:15"
                  },
                  "scope": 3057,
                  "src": "7950:265:15",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3055,
                    "nodeType": "Block",
                    "src": "8656:92:15",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "1901",
                                  "id": 3049,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "string",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8700:10:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541",
                                    "typeString": "literal_string hex\"1901\""
                                  },
                                  "value": "\u0019\u0001"
                                },
                                {
                                  "id": 3050,
                                  "name": "domainSeparator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3039,
                                  "src": "8712:15:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "id": 3051,
                                  "name": "structHash",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3041,
                                  "src": "8729:10:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541",
                                    "typeString": "literal_string hex\"1901\""
                                  },
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                ],
                                "expression": {
                                  "id": 3047,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "8683:3:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 3048,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "8683:16:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 3052,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8683:57:15",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 3046,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "8673:9:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 3053,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8673:68:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 3045,
                        "id": 3054,
                        "nodeType": "Return",
                        "src": "8666:75:15"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3037,
                    "nodeType": "StructuredDocumentation",
                    "src": "8221:328:15",
                    "text": " @dev Returns an Ethereum Signed Typed Data, created from a\n `domainSeparator` and a `structHash`. This produces hash corresponding\n to the one signed with the\n https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\n JSON-RPC method as part of EIP-712.\n See {recover}."
                  },
                  "id": 3056,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toTypedDataHash",
                  "nameLocation": "8563:15:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3042,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3039,
                        "mutability": "mutable",
                        "name": "domainSeparator",
                        "nameLocation": "8587:15:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 3056,
                        "src": "8579:23:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3038,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8579:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3041,
                        "mutability": "mutable",
                        "name": "structHash",
                        "nameLocation": "8612:10:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 3056,
                        "src": "8604:18:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3040,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8604:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8578:45:15"
                  },
                  "returnParameters": {
                    "id": 3045,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3044,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3056,
                        "src": "8647:7:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3043,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8647:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8646:9:15"
                  },
                  "scope": 3057,
                  "src": "8554:194:15",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 3058,
              "src": "264:8486:15",
              "usedErrors": []
            }
          ],
          "src": "33:8718:15"
        },
        "id": 15
      },
      "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol",
          "exportedSymbols": {
            "ECDSA": [
              3057
            ],
            "EIP712": [
              3195
            ]
          },
          "id": 3196,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3059,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:16"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/cryptography/ECDSA.sol",
              "file": "./ECDSA.sol",
              "id": 3060,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 3196,
              "sourceUnit": 3058,
              "src": "58:21:16",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 3061,
                "nodeType": "StructuredDocumentation",
                "src": "81:1142:16",
                "text": " @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.\n The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\n thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\n they need in their contracts using a combination of `abi.encode` and `keccak256`.\n This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\n scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\n ({_hashTypedDataV4}).\n The implementation of the domain separator was designed to be as efficient as possible while still properly updating\n the chain id to protect against replay attacks on an eventual fork of the chain.\n NOTE: This contract implements the version of the encoding known as \"v4\", as implemented by the JSON RPC method\n https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\n _Available since v3.4._"
              },
              "fullyImplemented": true,
              "id": 3195,
              "linearizedBaseContracts": [
                3195
              ],
              "name": "EIP712",
              "nameLocation": "1242:6:16",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 3063,
                  "mutability": "immutable",
                  "name": "_CACHED_DOMAIN_SEPARATOR",
                  "nameLocation": "1518:24:16",
                  "nodeType": "VariableDeclaration",
                  "scope": 3195,
                  "src": "1492:50:16",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3062,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1492:7:16",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 3065,
                  "mutability": "immutable",
                  "name": "_CACHED_CHAIN_ID",
                  "nameLocation": "1574:16:16",
                  "nodeType": "VariableDeclaration",
                  "scope": 3195,
                  "src": "1548:42:16",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 3064,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1548:7:16",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 3067,
                  "mutability": "immutable",
                  "name": "_HASHED_NAME",
                  "nameLocation": "1623:12:16",
                  "nodeType": "VariableDeclaration",
                  "scope": 3195,
                  "src": "1597:38:16",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3066,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1597:7:16",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 3069,
                  "mutability": "immutable",
                  "name": "_HASHED_VERSION",
                  "nameLocation": "1667:15:16",
                  "nodeType": "VariableDeclaration",
                  "scope": 3195,
                  "src": "1641:41:16",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3068,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1641:7:16",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 3071,
                  "mutability": "immutable",
                  "name": "_TYPE_HASH",
                  "nameLocation": "1714:10:16",
                  "nodeType": "VariableDeclaration",
                  "scope": 3195,
                  "src": "1688:36:16",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3070,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1688:7:16",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 3128,
                    "nodeType": "Block",
                    "src": "2395:509:16",
                    "statements": [
                      {
                        "assignments": [
                          3080
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3080,
                            "mutability": "mutable",
                            "name": "hashedName",
                            "nameLocation": "2413:10:16",
                            "nodeType": "VariableDeclaration",
                            "scope": 3128,
                            "src": "2405:18:16",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 3079,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2405:7:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3087,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 3084,
                                  "name": "name",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3074,
                                  "src": "2442:4:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                ],
                                "id": 3083,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2436:5:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_bytes_storage_ptr_$",
                                  "typeString": "type(bytes storage pointer)"
                                },
                                "typeName": {
                                  "id": 3082,
                                  "name": "bytes",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2436:5:16",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 3085,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2436:11:16",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 3081,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "2426:9:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 3086,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2426:22:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2405:43:16"
                      },
                      {
                        "assignments": [
                          3089
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3089,
                            "mutability": "mutable",
                            "name": "hashedVersion",
                            "nameLocation": "2466:13:16",
                            "nodeType": "VariableDeclaration",
                            "scope": 3128,
                            "src": "2458:21:16",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 3088,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2458:7:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3096,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 3093,
                                  "name": "version",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3076,
                                  "src": "2498:7:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                ],
                                "id": 3092,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2492:5:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_bytes_storage_ptr_$",
                                  "typeString": "type(bytes storage pointer)"
                                },
                                "typeName": {
                                  "id": 3091,
                                  "name": "bytes",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2492:5:16",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 3094,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2492:14:16",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 3090,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "2482:9:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 3095,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2482:25:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2458:49:16"
                      },
                      {
                        "assignments": [
                          3098
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3098,
                            "mutability": "mutable",
                            "name": "typeHash",
                            "nameLocation": "2525:8:16",
                            "nodeType": "VariableDeclaration",
                            "scope": 3128,
                            "src": "2517:16:16",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 3097,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2517:7:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3102,
                        "initialValue": {
                          "arguments": [
                            {
                              "hexValue": "454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429",
                              "id": 3100,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2559:84:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f",
                                "typeString": "literal_string \"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\""
                              },
                              "value": "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_stringliteral_8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f",
                                "typeString": "literal_string \"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\""
                              }
                            ],
                            "id": 3099,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "2536:9:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 3101,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2536:117:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2517:136:16"
                      },
                      {
                        "expression": {
                          "id": 3105,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3103,
                            "name": "_HASHED_NAME",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3067,
                            "src": "2663:12:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 3104,
                            "name": "hashedName",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3080,
                            "src": "2678:10:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "src": "2663:25:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "id": 3106,
                        "nodeType": "ExpressionStatement",
                        "src": "2663:25:16"
                      },
                      {
                        "expression": {
                          "id": 3109,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3107,
                            "name": "_HASHED_VERSION",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3069,
                            "src": "2698:15:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 3108,
                            "name": "hashedVersion",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3089,
                            "src": "2716:13:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "src": "2698:31:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "id": 3110,
                        "nodeType": "ExpressionStatement",
                        "src": "2698:31:16"
                      },
                      {
                        "expression": {
                          "id": 3114,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3111,
                            "name": "_CACHED_CHAIN_ID",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3065,
                            "src": "2739:16:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "expression": {
                              "id": 3112,
                              "name": "block",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -4,
                              "src": "2758:5:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_block",
                                "typeString": "block"
                              }
                            },
                            "id": 3113,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "chainid",
                            "nodeType": "MemberAccess",
                            "src": "2758:13:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2739:32:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 3115,
                        "nodeType": "ExpressionStatement",
                        "src": "2739:32:16"
                      },
                      {
                        "expression": {
                          "id": 3122,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3116,
                            "name": "_CACHED_DOMAIN_SEPARATOR",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3063,
                            "src": "2781:24:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 3118,
                                "name": "typeHash",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3098,
                                "src": "2830:8:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              },
                              {
                                "id": 3119,
                                "name": "hashedName",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3080,
                                "src": "2840:10:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              },
                              {
                                "id": 3120,
                                "name": "hashedVersion",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3089,
                                "src": "2852:13:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                },
                                {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                },
                                {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              ],
                              "id": 3117,
                              "name": "_buildDomainSeparator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3178,
                              "src": "2808:21:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$",
                                "typeString": "function (bytes32,bytes32,bytes32) view returns (bytes32)"
                              }
                            },
                            "id": 3121,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "2808:58:16",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "src": "2781:85:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "id": 3123,
                        "nodeType": "ExpressionStatement",
                        "src": "2781:85:16"
                      },
                      {
                        "expression": {
                          "id": 3126,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3124,
                            "name": "_TYPE_HASH",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3071,
                            "src": "2876:10:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 3125,
                            "name": "typeHash",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3098,
                            "src": "2889:8:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "src": "2876:21:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "id": 3127,
                        "nodeType": "ExpressionStatement",
                        "src": "2876:21:16"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3072,
                    "nodeType": "StructuredDocumentation",
                    "src": "1776:559:16",
                    "text": " @dev Initializes the domain separator and parameter caches.\n The meaning of `name` and `version` is specified in\n https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:\n - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\n - `version`: the current major version of the signing domain.\n NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\n contract upgrade]."
                  },
                  "id": 3129,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3077,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3074,
                        "mutability": "mutable",
                        "name": "name",
                        "nameLocation": "2366:4:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 3129,
                        "src": "2352:18:16",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 3073,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2352:6:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3076,
                        "mutability": "mutable",
                        "name": "version",
                        "nameLocation": "2386:7:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 3129,
                        "src": "2372:21:16",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 3075,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2372:6:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2351:43:16"
                  },
                  "returnParameters": {
                    "id": 3078,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2395:0:16"
                  },
                  "scope": 3195,
                  "src": "2340:564:16",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3150,
                    "nodeType": "Block",
                    "src": "3052:213:16",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 3138,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 3135,
                              "name": "block",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -4,
                              "src": "3066:5:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_block",
                                "typeString": "block"
                              }
                            },
                            "id": 3136,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "chainid",
                            "nodeType": "MemberAccess",
                            "src": "3066:13:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 3137,
                            "name": "_CACHED_CHAIN_ID",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3065,
                            "src": "3083:16:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "3066:33:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 3148,
                          "nodeType": "Block",
                          "src": "3163:96:16",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 3143,
                                    "name": "_TYPE_HASH",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3071,
                                    "src": "3206:10:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  {
                                    "id": 3144,
                                    "name": "_HASHED_NAME",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3067,
                                    "src": "3218:12:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  {
                                    "id": 3145,
                                    "name": "_HASHED_VERSION",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3069,
                                    "src": "3232:15:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  ],
                                  "id": 3142,
                                  "name": "_buildDomainSeparator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3178,
                                  "src": "3184:21:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$",
                                    "typeString": "function (bytes32,bytes32,bytes32) view returns (bytes32)"
                                  }
                                },
                                "id": 3146,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3184:64:16",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              },
                              "functionReturnParameters": 3134,
                              "id": 3147,
                              "nodeType": "Return",
                              "src": "3177:71:16"
                            }
                          ]
                        },
                        "id": 3149,
                        "nodeType": "IfStatement",
                        "src": "3062:197:16",
                        "trueBody": {
                          "id": 3141,
                          "nodeType": "Block",
                          "src": "3101:56:16",
                          "statements": [
                            {
                              "expression": {
                                "id": 3139,
                                "name": "_CACHED_DOMAIN_SEPARATOR",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3063,
                                "src": "3122:24:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              },
                              "functionReturnParameters": 3134,
                              "id": 3140,
                              "nodeType": "Return",
                              "src": "3115:31:16"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3130,
                    "nodeType": "StructuredDocumentation",
                    "src": "2910:75:16",
                    "text": " @dev Returns the domain separator for the current chain."
                  },
                  "id": 3151,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_domainSeparatorV4",
                  "nameLocation": "2999:18:16",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3131,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3017:2:16"
                  },
                  "returnParameters": {
                    "id": 3134,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3133,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3151,
                        "src": "3043:7:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3132,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3043:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3042:9:16"
                  },
                  "scope": 3195,
                  "src": "2990:275:16",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3177,
                    "nodeType": "Block",
                    "src": "3420:108:16",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 3165,
                                  "name": "typeHash",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3153,
                                  "src": "3458:8:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "id": 3166,
                                  "name": "nameHash",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3155,
                                  "src": "3468:8:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "id": 3167,
                                  "name": "versionHash",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3157,
                                  "src": "3478:11:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "expression": {
                                    "id": 3168,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "3491:5:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 3169,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "chainid",
                                  "nodeType": "MemberAccess",
                                  "src": "3491:13:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                {
                                  "arguments": [
                                    {
                                      "id": 3172,
                                      "name": "this",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -28,
                                      "src": "3514:4:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_EIP712_$3195",
                                        "typeString": "contract EIP712"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_EIP712_$3195",
                                        "typeString": "contract EIP712"
                                      }
                                    ],
                                    "id": 3171,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "3506:7:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 3170,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "3506:7:16",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 3173,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3506:13:16",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "expression": {
                                  "id": 3163,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "3447:3:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 3164,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encode",
                                "nodeType": "MemberAccess",
                                "src": "3447:10:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 3174,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3447:73:16",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 3162,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "3437:9:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 3175,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3437:84:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 3161,
                        "id": 3176,
                        "nodeType": "Return",
                        "src": "3430:91:16"
                      }
                    ]
                  },
                  "id": 3178,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_buildDomainSeparator",
                  "nameLocation": "3280:21:16",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3158,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3153,
                        "mutability": "mutable",
                        "name": "typeHash",
                        "nameLocation": "3319:8:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 3178,
                        "src": "3311:16:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3152,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3311:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3155,
                        "mutability": "mutable",
                        "name": "nameHash",
                        "nameLocation": "3345:8:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 3178,
                        "src": "3337:16:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3154,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3337:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3157,
                        "mutability": "mutable",
                        "name": "versionHash",
                        "nameLocation": "3371:11:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 3178,
                        "src": "3363:19:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3156,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3363:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3301:87:16"
                  },
                  "returnParameters": {
                    "id": 3161,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3160,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3178,
                        "src": "3411:7:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3159,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3411:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3410:9:16"
                  },
                  "scope": 3195,
                  "src": "3271:257:16",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 3193,
                    "nodeType": "Block",
                    "src": "4239:79:16",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 3188,
                                "name": "_domainSeparatorV4",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3151,
                                "src": "4278:18:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bytes32_$",
                                  "typeString": "function () view returns (bytes32)"
                                }
                              },
                              "id": 3189,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4278:20:16",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 3190,
                              "name": "structHash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3181,
                              "src": "4300:10:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "expression": {
                              "id": 3186,
                              "name": "ECDSA",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3057,
                              "src": "4256:5:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ECDSA_$3057_$",
                                "typeString": "type(library ECDSA)"
                              }
                            },
                            "id": 3187,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toTypedDataHash",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3056,
                            "src": "4256:21:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$",
                              "typeString": "function (bytes32,bytes32) pure returns (bytes32)"
                            }
                          },
                          "id": 3191,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4256:55:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 3185,
                        "id": 3192,
                        "nodeType": "Return",
                        "src": "4249:62:16"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3179,
                    "nodeType": "StructuredDocumentation",
                    "src": "3534:614:16",
                    "text": " @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\n function returns the hash of the fully encoded EIP712 message for this domain.\n This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\n ```solidity\n bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\n     keccak256(\"Mail(address to,string contents)\"),\n     mailTo,\n     keccak256(bytes(mailContents))\n )));\n address signer = ECDSA.recover(digest, signature);\n ```"
                  },
                  "id": 3194,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_hashTypedDataV4",
                  "nameLocation": "4162:16:16",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3182,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3181,
                        "mutability": "mutable",
                        "name": "structHash",
                        "nameLocation": "4187:10:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 3194,
                        "src": "4179:18:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3180,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4179:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4178:20:16"
                  },
                  "returnParameters": {
                    "id": 3185,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3184,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3194,
                        "src": "4230:7:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3183,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4230:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4229:9:16"
                  },
                  "scope": 3195,
                  "src": "4153:165:16",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 3196,
              "src": "1224:3096:16",
              "usedErrors": []
            }
          ],
          "src": "33:4288:16"
        },
        "id": 16
      },
      "@openzeppelin/contracts/utils/introspection/ERC165.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/introspection/ERC165.sol",
          "exportedSymbols": {
            "ERC165": [
              3219
            ],
            "IERC165": [
              3433
            ]
          },
          "id": 3220,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3197,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:17"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/introspection/IERC165.sol",
              "file": "./IERC165.sol",
              "id": 3198,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 3220,
              "sourceUnit": 3434,
              "src": "58:23:17",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 3200,
                    "name": "IERC165",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3433,
                    "src": "688:7:17"
                  },
                  "id": 3201,
                  "nodeType": "InheritanceSpecifier",
                  "src": "688:7:17"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 3199,
                "nodeType": "StructuredDocumentation",
                "src": "83:576:17",
                "text": " @dev Implementation of the {IERC165} interface.\n Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n for the additional interface id that will be supported. For example:\n ```solidity\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n }\n ```\n Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation."
              },
              "fullyImplemented": true,
              "id": 3219,
              "linearizedBaseContracts": [
                3219,
                3433
              ],
              "name": "ERC165",
              "nameLocation": "678:6:17",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "baseFunctions": [
                    3432
                  ],
                  "body": {
                    "id": 3217,
                    "nodeType": "Block",
                    "src": "854:64:17",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          },
                          "id": 3215,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 3210,
                            "name": "interfaceId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3204,
                            "src": "871:11:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes4",
                              "typeString": "bytes4"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "expression": {
                              "arguments": [
                                {
                                  "id": 3212,
                                  "name": "IERC165",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3433,
                                  "src": "891:7:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_contract$_IERC165_$3433_$",
                                    "typeString": "type(contract IERC165)"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_type$_t_contract$_IERC165_$3433_$",
                                    "typeString": "type(contract IERC165)"
                                  }
                                ],
                                "id": 3211,
                                "name": "type",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -27,
                                "src": "886:4:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                  "typeString": "function () pure"
                                }
                              },
                              "id": 3213,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "886:13:17",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_meta_type_t_contract$_IERC165_$3433",
                                "typeString": "type(contract IERC165)"
                              }
                            },
                            "id": 3214,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "interfaceId",
                            "nodeType": "MemberAccess",
                            "src": "886:25:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes4",
                              "typeString": "bytes4"
                            }
                          },
                          "src": "871:40:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 3209,
                        "id": 3216,
                        "nodeType": "Return",
                        "src": "864:47:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3202,
                    "nodeType": "StructuredDocumentation",
                    "src": "702:56:17",
                    "text": " @dev See {IERC165-supportsInterface}."
                  },
                  "functionSelector": "01ffc9a7",
                  "id": 3218,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supportsInterface",
                  "nameLocation": "772:17:17",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3206,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "830:8:17"
                  },
                  "parameters": {
                    "id": 3205,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3204,
                        "mutability": "mutable",
                        "name": "interfaceId",
                        "nameLocation": "797:11:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 3218,
                        "src": "790:18:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 3203,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "790:6:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "789:20:17"
                  },
                  "returnParameters": {
                    "id": 3209,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3208,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3218,
                        "src": "848:4:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3207,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "848:4:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "847:6:17"
                  },
                  "scope": 3219,
                  "src": "763:155:17",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                }
              ],
              "scope": 3220,
              "src": "660:260:17",
              "usedErrors": []
            }
          ],
          "src": "33:888:17"
        },
        "id": 17
      },
      "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol",
          "exportedSymbols": {
            "ERC165Checker": [
              3421
            ],
            "IERC165": [
              3433
            ]
          },
          "id": 3422,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3221,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:18"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/introspection/IERC165.sol",
              "file": "./IERC165.sol",
              "id": 3222,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 3422,
              "sourceUnit": 3434,
              "src": "58:23:18",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 3223,
                "nodeType": "StructuredDocumentation",
                "src": "83:277:18",
                "text": " @dev Library used to query support of an interface declared via {IERC165}.\n Note that these functions return the actual result of the query: they do not\n `revert` if an interface is not supported. It is up to the caller to decide\n what to do in these cases."
              },
              "fullyImplemented": true,
              "id": 3421,
              "linearizedBaseContracts": [
                3421
              ],
              "name": "ERC165Checker",
              "nameLocation": "369:13:18",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": true,
                  "id": 3226,
                  "mutability": "constant",
                  "name": "_INTERFACE_ID_INVALID",
                  "nameLocation": "487:21:18",
                  "nodeType": "VariableDeclaration",
                  "scope": 3421,
                  "src": "463:58:18",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes4",
                    "typeString": "bytes4"
                  },
                  "typeName": {
                    "id": 3224,
                    "name": "bytes4",
                    "nodeType": "ElementaryTypeName",
                    "src": "463:6:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes4",
                      "typeString": "bytes4"
                    }
                  },
                  "value": {
                    "hexValue": "30786666666666666666",
                    "id": 3225,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "511:10:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_4294967295_by_1",
                      "typeString": "int_const 4294967295"
                    },
                    "value": "0xffffffff"
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 3248,
                    "nodeType": "Block",
                    "src": "686:341:18",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 3246,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "id": 3235,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3229,
                                "src": "912:7:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 3237,
                                      "name": "IERC165",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 3433,
                                      "src": "926:7:18",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_IERC165_$3433_$",
                                        "typeString": "type(contract IERC165)"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_contract$_IERC165_$3433_$",
                                        "typeString": "type(contract IERC165)"
                                      }
                                    ],
                                    "id": 3236,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "921:4:18",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 3238,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "921:13:18",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_contract$_IERC165_$3433",
                                    "typeString": "type(contract IERC165)"
                                  }
                                },
                                "id": 3239,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "interfaceId",
                                "nodeType": "MemberAccess",
                                "src": "921:25:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              ],
                              "id": 3234,
                              "name": "_supportsERC165Interface",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3420,
                              "src": "887:24:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$",
                                "typeString": "function (address,bytes4) view returns (bool)"
                              }
                            },
                            "id": 3240,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "887:60:18",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "id": 3245,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "!",
                            "prefix": true,
                            "src": "963:57:18",
                            "subExpression": {
                              "arguments": [
                                {
                                  "id": 3242,
                                  "name": "account",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3229,
                                  "src": "989:7:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 3243,
                                  "name": "_INTERFACE_ID_INVALID",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3226,
                                  "src": "998:21:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                ],
                                "id": 3241,
                                "name": "_supportsERC165Interface",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3420,
                                "src": "964:24:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$",
                                  "typeString": "function (address,bytes4) view returns (bool)"
                                }
                              },
                              "id": 3244,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "964:56:18",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "887:133:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 3233,
                        "id": 3247,
                        "nodeType": "Return",
                        "src": "868:152:18"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3227,
                    "nodeType": "StructuredDocumentation",
                    "src": "528:83:18",
                    "text": " @dev Returns true if `account` supports the {IERC165} interface,"
                  },
                  "id": 3249,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supportsERC165",
                  "nameLocation": "625:14:18",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3230,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3229,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "648:7:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 3249,
                        "src": "640:15:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3228,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "640:7:18",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "639:17:18"
                  },
                  "returnParameters": {
                    "id": 3233,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3232,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3249,
                        "src": "680:4:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3231,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "680:4:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "679:6:18"
                  },
                  "scope": 3421,
                  "src": "616:411:18",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3268,
                    "nodeType": "Block",
                    "src": "1338:181:18",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 3266,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "id": 3260,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3252,
                                "src": "1454:7:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              ],
                              "id": 3259,
                              "name": "supportsERC165",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3249,
                              "src": "1439:14:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                "typeString": "function (address) view returns (bool)"
                              }
                            },
                            "id": 3261,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "1439:23:18",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "arguments": [
                              {
                                "id": 3263,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3252,
                                "src": "1491:7:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              {
                                "id": 3264,
                                "name": "interfaceId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3254,
                                "src": "1500:11:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              ],
                              "id": 3262,
                              "name": "_supportsERC165Interface",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3420,
                              "src": "1466:24:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$",
                                "typeString": "function (address,bytes4) view returns (bool)"
                              }
                            },
                            "id": 3265,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "1466:46:18",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "1439:73:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 3258,
                        "id": 3267,
                        "nodeType": "Return",
                        "src": "1432:80:18"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3250,
                    "nodeType": "StructuredDocumentation",
                    "src": "1033:207:18",
                    "text": " @dev Returns true if `account` supports the interface defined by\n `interfaceId`. Support for {IERC165} itself is queried automatically.\n See {IERC165-supportsInterface}."
                  },
                  "id": 3269,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supportsInterface",
                  "nameLocation": "1254:17:18",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3255,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3252,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "1280:7:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 3269,
                        "src": "1272:15:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3251,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1272:7:18",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3254,
                        "mutability": "mutable",
                        "name": "interfaceId",
                        "nameLocation": "1296:11:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 3269,
                        "src": "1289:18:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 3253,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "1289:6:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1271:37:18"
                  },
                  "returnParameters": {
                    "id": 3258,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3257,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3269,
                        "src": "1332:4:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3256,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1332:4:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1331:6:18"
                  },
                  "scope": 3421,
                  "src": "1245:274:18",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3324,
                    "nodeType": "Block",
                    "src": "2049:552:18",
                    "statements": [
                      {
                        "assignments": [
                          3285
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3285,
                            "mutability": "mutable",
                            "name": "interfaceIdsSupported",
                            "nameLocation": "2172:21:18",
                            "nodeType": "VariableDeclaration",
                            "scope": 3324,
                            "src": "2158:35:18",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_bool_$dyn_memory_ptr",
                              "typeString": "bool[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 3283,
                                "name": "bool",
                                "nodeType": "ElementaryTypeName",
                                "src": "2158:4:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 3284,
                              "nodeType": "ArrayTypeName",
                              "src": "2158:6:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bool_$dyn_storage_ptr",
                                "typeString": "bool[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3292,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 3289,
                                "name": "interfaceIds",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3275,
                                "src": "2207:12:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                                  "typeString": "bytes4[] memory"
                                }
                              },
                              "id": 3290,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "2207:19:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 3288,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "2196:10:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bool_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (bool[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 3286,
                                "name": "bool",
                                "nodeType": "ElementaryTypeName",
                                "src": "2200:4:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 3287,
                              "nodeType": "ArrayTypeName",
                              "src": "2200:6:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bool_$dyn_storage_ptr",
                                "typeString": "bool[]"
                              }
                            }
                          },
                          "id": 3291,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2196:31:18",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bool_$dyn_memory_ptr",
                            "typeString": "bool[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2158:69:18"
                      },
                      {
                        "condition": {
                          "arguments": [
                            {
                              "id": 3294,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3272,
                              "src": "2299:7:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 3293,
                            "name": "supportsERC165",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3249,
                            "src": "2284:14:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                              "typeString": "function (address) view returns (bool)"
                            }
                          },
                          "id": 3295,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2284:23:18",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 3321,
                        "nodeType": "IfStatement",
                        "src": "2280:276:18",
                        "trueBody": {
                          "id": 3320,
                          "nodeType": "Block",
                          "src": "2309:247:18",
                          "statements": [
                            {
                              "body": {
                                "id": 3318,
                                "nodeType": "Block",
                                "src": "2436:110:18",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 3316,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 3307,
                                          "name": "interfaceIdsSupported",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 3285,
                                          "src": "2454:21:18",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_bool_$dyn_memory_ptr",
                                            "typeString": "bool[] memory"
                                          }
                                        },
                                        "id": 3309,
                                        "indexExpression": {
                                          "id": 3308,
                                          "name": "i",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 3297,
                                          "src": "2476:1:18",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "2454:24:18",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bool",
                                          "typeString": "bool"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "arguments": [
                                          {
                                            "id": 3311,
                                            "name": "account",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 3272,
                                            "src": "2506:7:18",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_address",
                                              "typeString": "address"
                                            }
                                          },
                                          {
                                            "baseExpression": {
                                              "id": 3312,
                                              "name": "interfaceIds",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 3275,
                                              "src": "2515:12:18",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                                                "typeString": "bytes4[] memory"
                                              }
                                            },
                                            "id": 3314,
                                            "indexExpression": {
                                              "id": 3313,
                                              "name": "i",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 3297,
                                              "src": "2528:1:18",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "2515:15:18",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_bytes4",
                                              "typeString": "bytes4"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_address",
                                              "typeString": "address"
                                            },
                                            {
                                              "typeIdentifier": "t_bytes4",
                                              "typeString": "bytes4"
                                            }
                                          ],
                                          "id": 3310,
                                          "name": "_supportsERC165Interface",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 3420,
                                          "src": "2481:24:18",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$",
                                            "typeString": "function (address,bytes4) view returns (bool)"
                                          }
                                        },
                                        "id": 3315,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "2481:50:18",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bool",
                                          "typeString": "bool"
                                        }
                                      },
                                      "src": "2454:77:18",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "id": 3317,
                                    "nodeType": "ExpressionStatement",
                                    "src": "2454:77:18"
                                  }
                                ]
                              },
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 3303,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3300,
                                  "name": "i",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3297,
                                  "src": "2406:1:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<",
                                "rightExpression": {
                                  "expression": {
                                    "id": 3301,
                                    "name": "interfaceIds",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3275,
                                    "src": "2410:12:18",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                                      "typeString": "bytes4[] memory"
                                    }
                                  },
                                  "id": 3302,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "length",
                                  "nodeType": "MemberAccess",
                                  "src": "2410:19:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "2406:23:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 3319,
                              "initializationExpression": {
                                "assignments": [
                                  3297
                                ],
                                "declarations": [
                                  {
                                    "constant": false,
                                    "id": 3297,
                                    "mutability": "mutable",
                                    "name": "i",
                                    "nameLocation": "2399:1:18",
                                    "nodeType": "VariableDeclaration",
                                    "scope": 3319,
                                    "src": "2391:9:18",
                                    "stateVariable": false,
                                    "storageLocation": "default",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "typeName": {
                                      "id": 3296,
                                      "name": "uint256",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2391:7:18",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "visibility": "internal"
                                  }
                                ],
                                "id": 3299,
                                "initialValue": {
                                  "hexValue": "30",
                                  "id": 3298,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "2403:1:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "nodeType": "VariableDeclarationStatement",
                                "src": "2391:13:18"
                              },
                              "loopExpression": {
                                "expression": {
                                  "id": 3305,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "UnaryOperation",
                                  "operator": "++",
                                  "prefix": false,
                                  "src": "2431:3:18",
                                  "subExpression": {
                                    "id": 3304,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3297,
                                    "src": "2431:1:18",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 3306,
                                "nodeType": "ExpressionStatement",
                                "src": "2431:3:18"
                              },
                              "nodeType": "ForStatement",
                              "src": "2386:160:18"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 3322,
                          "name": "interfaceIdsSupported",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3285,
                          "src": "2573:21:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bool_$dyn_memory_ptr",
                            "typeString": "bool[] memory"
                          }
                        },
                        "functionReturnParameters": 3280,
                        "id": 3323,
                        "nodeType": "Return",
                        "src": "2566:28:18"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3270,
                    "nodeType": "StructuredDocumentation",
                    "src": "1525:374:18",
                    "text": " @dev Returns a boolean array where each value corresponds to the\n interfaces passed in and whether they're supported or not. This allows\n you to batch check interfaces for a contract where your expectation\n is that some interfaces may not be supported.\n See {IERC165-supportsInterface}.\n _Available since v3.4._"
                  },
                  "id": 3325,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getSupportedInterfaces",
                  "nameLocation": "1913:22:18",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3276,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3272,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "1944:7:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 3325,
                        "src": "1936:15:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3271,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1936:7:18",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3275,
                        "mutability": "mutable",
                        "name": "interfaceIds",
                        "nameLocation": "1969:12:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 3325,
                        "src": "1953:28:18",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                          "typeString": "bytes4[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 3273,
                            "name": "bytes4",
                            "nodeType": "ElementaryTypeName",
                            "src": "1953:6:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes4",
                              "typeString": "bytes4"
                            }
                          },
                          "id": 3274,
                          "nodeType": "ArrayTypeName",
                          "src": "1953:8:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes4_$dyn_storage_ptr",
                            "typeString": "bytes4[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1935:47:18"
                  },
                  "returnParameters": {
                    "id": 3280,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3279,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3325,
                        "src": "2030:13:18",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bool_$dyn_memory_ptr",
                          "typeString": "bool[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 3277,
                            "name": "bool",
                            "nodeType": "ElementaryTypeName",
                            "src": "2030:4:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "id": 3278,
                          "nodeType": "ArrayTypeName",
                          "src": "2030:6:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bool_$dyn_storage_ptr",
                            "typeString": "bool[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2029:15:18"
                  },
                  "scope": 3421,
                  "src": "1904:697:18",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3370,
                    "nodeType": "Block",
                    "src": "3043:429:18",
                    "statements": [
                      {
                        "condition": {
                          "id": 3339,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "!",
                          "prefix": true,
                          "src": "3099:24:18",
                          "subExpression": {
                            "arguments": [
                              {
                                "id": 3337,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3328,
                                "src": "3115:7:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              ],
                              "id": 3336,
                              "name": "supportsERC165",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3249,
                              "src": "3100:14:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                "typeString": "function (address) view returns (bool)"
                              }
                            },
                            "id": 3338,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3100:23:18",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 3343,
                        "nodeType": "IfStatement",
                        "src": "3095:67:18",
                        "trueBody": {
                          "id": 3342,
                          "nodeType": "Block",
                          "src": "3125:37:18",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "66616c7365",
                                "id": 3340,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "bool",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3146:5:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "value": "false"
                              },
                              "functionReturnParameters": 3335,
                              "id": 3341,
                              "nodeType": "Return",
                              "src": "3139:12:18"
                            }
                          ]
                        }
                      },
                      {
                        "body": {
                          "id": 3366,
                          "nodeType": "Block",
                          "src": "3282:126:18",
                          "statements": [
                            {
                              "condition": {
                                "id": 3361,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "!",
                                "prefix": true,
                                "src": "3300:51:18",
                                "subExpression": {
                                  "arguments": [
                                    {
                                      "id": 3356,
                                      "name": "account",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 3328,
                                      "src": "3326:7:18",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 3357,
                                        "name": "interfaceIds",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 3331,
                                        "src": "3335:12:18",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                                          "typeString": "bytes4[] memory"
                                        }
                                      },
                                      "id": 3359,
                                      "indexExpression": {
                                        "id": 3358,
                                        "name": "i",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 3345,
                                        "src": "3348:1:18",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "3335:15:18",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes4",
                                        "typeString": "bytes4"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      },
                                      {
                                        "typeIdentifier": "t_bytes4",
                                        "typeString": "bytes4"
                                      }
                                    ],
                                    "id": 3355,
                                    "name": "_supportsERC165Interface",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3420,
                                    "src": "3301:24:18",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$",
                                      "typeString": "function (address,bytes4) view returns (bool)"
                                    }
                                  },
                                  "id": 3360,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3301:50:18",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 3365,
                              "nodeType": "IfStatement",
                              "src": "3296:102:18",
                              "trueBody": {
                                "id": 3364,
                                "nodeType": "Block",
                                "src": "3353:45:18",
                                "statements": [
                                  {
                                    "expression": {
                                      "hexValue": "66616c7365",
                                      "id": 3362,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "bool",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "3378:5:18",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      },
                                      "value": "false"
                                    },
                                    "functionReturnParameters": 3335,
                                    "id": 3363,
                                    "nodeType": "Return",
                                    "src": "3371:12:18"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 3351,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 3348,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3345,
                            "src": "3252:1:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 3349,
                              "name": "interfaceIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3331,
                              "src": "3256:12:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                                "typeString": "bytes4[] memory"
                              }
                            },
                            "id": 3350,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "3256:19:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "3252:23:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 3367,
                        "initializationExpression": {
                          "assignments": [
                            3345
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 3345,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "3245:1:18",
                              "nodeType": "VariableDeclaration",
                              "scope": 3367,
                              "src": "3237:9:18",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 3344,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "3237:7:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 3347,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 3346,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3249:1:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "3237:13:18"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 3353,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "3277:3:18",
                            "subExpression": {
                              "id": 3352,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3345,
                              "src": "3277:1:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 3354,
                          "nodeType": "ExpressionStatement",
                          "src": "3277:3:18"
                        },
                        "nodeType": "ForStatement",
                        "src": "3232:176:18"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 3368,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "3461:4:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 3335,
                        "id": 3369,
                        "nodeType": "Return",
                        "src": "3454:11:18"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3326,
                    "nodeType": "StructuredDocumentation",
                    "src": "2607:324:18",
                    "text": " @dev Returns true if `account` supports all the interfaces defined in\n `interfaceIds`. Support for {IERC165} itself is queried automatically.\n Batch-querying can lead to gas savings by skipping repeated checks for\n {IERC165} support.\n See {IERC165-supportsInterface}."
                  },
                  "id": 3371,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supportsAllInterfaces",
                  "nameLocation": "2945:21:18",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3332,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3328,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "2975:7:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 3371,
                        "src": "2967:15:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3327,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2967:7:18",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3331,
                        "mutability": "mutable",
                        "name": "interfaceIds",
                        "nameLocation": "3000:12:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 3371,
                        "src": "2984:28:18",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                          "typeString": "bytes4[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 3329,
                            "name": "bytes4",
                            "nodeType": "ElementaryTypeName",
                            "src": "2984:6:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes4",
                              "typeString": "bytes4"
                            }
                          },
                          "id": 3330,
                          "nodeType": "ArrayTypeName",
                          "src": "2984:8:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes4_$dyn_storage_ptr",
                            "typeString": "bytes4[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2966:47:18"
                  },
                  "returnParameters": {
                    "id": 3335,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3334,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3371,
                        "src": "3037:4:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3333,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3037:4:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3036:6:18"
                  },
                  "scope": 3421,
                  "src": "2936:536:18",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3419,
                    "nodeType": "Block",
                    "src": "4234:310:18",
                    "statements": [
                      {
                        "assignments": [
                          3382
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3382,
                            "mutability": "mutable",
                            "name": "encodedParams",
                            "nameLocation": "4257:13:18",
                            "nodeType": "VariableDeclaration",
                            "scope": 3419,
                            "src": "4244:26:18",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 3381,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "4244:5:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3390,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 3385,
                                  "name": "IERC165",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3433,
                                  "src": "4296:7:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_contract$_IERC165_$3433_$",
                                    "typeString": "type(contract IERC165)"
                                  }
                                },
                                "id": 3386,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "supportsInterface",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 3432,
                                "src": "4296:25:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_declaration_view$_t_bytes4_$returns$_t_bool_$",
                                  "typeString": "function IERC165.supportsInterface(bytes4) view returns (bool)"
                                }
                              },
                              "id": 3387,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "selector",
                              "nodeType": "MemberAccess",
                              "src": "4296:34:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              }
                            },
                            {
                              "id": 3388,
                              "name": "interfaceId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3376,
                              "src": "4332:11:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              },
                              {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              }
                            ],
                            "expression": {
                              "id": 3383,
                              "name": "abi",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -1,
                              "src": "4273:3:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_abi",
                                "typeString": "abi"
                              }
                            },
                            "id": 3384,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "encodeWithSelector",
                            "nodeType": "MemberAccess",
                            "src": "4273:22:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (bytes4) pure returns (bytes memory)"
                            }
                          },
                          "id": 3389,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4273:71:18",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4244:100:18"
                      },
                      {
                        "assignments": [
                          3392,
                          3394
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3392,
                            "mutability": "mutable",
                            "name": "success",
                            "nameLocation": "4360:7:18",
                            "nodeType": "VariableDeclaration",
                            "scope": 3419,
                            "src": "4355:12:18",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 3391,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "4355:4:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 3394,
                            "mutability": "mutable",
                            "name": "result",
                            "nameLocation": "4382:6:18",
                            "nodeType": "VariableDeclaration",
                            "scope": 3419,
                            "src": "4369:19:18",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 3393,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "4369:5:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3401,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 3399,
                              "name": "encodedParams",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3382,
                              "src": "4423:13:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              ],
                              "expression": {
                                "id": 3395,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3374,
                                "src": "4392:7:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 3396,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "staticcall",
                              "nodeType": "MemberAccess",
                              "src": "4392:18:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$",
                                "typeString": "function (bytes memory) view returns (bool,bytes memory)"
                              }
                            },
                            "id": 3398,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "names": [
                              "gas"
                            ],
                            "nodeType": "FunctionCallOptions",
                            "options": [
                              {
                                "hexValue": "3330303030",
                                "id": 3397,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4416:5:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_30000_by_1",
                                  "typeString": "int_const 30000"
                                },
                                "value": "30000"
                              }
                            ],
                            "src": "4392:30:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$gas",
                              "typeString": "function (bytes memory) view returns (bool,bytes memory)"
                            }
                          },
                          "id": 3400,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4392:45:18",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4354:83:18"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 3405,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 3402,
                              "name": "result",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3394,
                              "src": "4451:6:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 3403,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "4451:13:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "hexValue": "3332",
                            "id": 3404,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4467:2:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_32_by_1",
                              "typeString": "int_const 32"
                            },
                            "value": "32"
                          },
                          "src": "4451:18:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 3408,
                        "nodeType": "IfStatement",
                        "src": "4447:36:18",
                        "trueBody": {
                          "expression": {
                            "hexValue": "66616c7365",
                            "id": 3406,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "bool",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4478:5:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "value": "false"
                          },
                          "functionReturnParameters": 3380,
                          "id": 3407,
                          "nodeType": "Return",
                          "src": "4471:12:18"
                        }
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 3417,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 3409,
                            "name": "success",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3392,
                            "src": "4500:7:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "arguments": [
                              {
                                "id": 3412,
                                "name": "result",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3394,
                                "src": "4522:6:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              },
                              {
                                "components": [
                                  {
                                    "id": 3414,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "4531:4:18",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_bool_$",
                                      "typeString": "type(bool)"
                                    },
                                    "typeName": {
                                      "id": 3413,
                                      "name": "bool",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "4531:4:18",
                                      "typeDescriptions": {}
                                    }
                                  }
                                ],
                                "id": 3415,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "4530:6:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_bool_$",
                                  "typeString": "type(bool)"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                },
                                {
                                  "typeIdentifier": "t_type$_t_bool_$",
                                  "typeString": "type(bool)"
                                }
                              ],
                              "expression": {
                                "id": 3410,
                                "name": "abi",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -1,
                                "src": "4511:3:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_abi",
                                  "typeString": "abi"
                                }
                              },
                              "id": 3411,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "decode",
                              "nodeType": "MemberAccess",
                              "src": "4511:10:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_abidecode_pure$__$returns$__$",
                                "typeString": "function () pure"
                              }
                            },
                            "id": 3416,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "4511:26:18",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "4500:37:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 3380,
                        "id": 3418,
                        "nodeType": "Return",
                        "src": "4493:44:18"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3372,
                    "nodeType": "StructuredDocumentation",
                    "src": "3478:652:18",
                    "text": " @notice Query if a contract implements an interface, does not check ERC165 support\n @param account The address of the contract to query for support of an interface\n @param interfaceId The interface identifier, as specified in ERC-165\n @return true if the contract at account indicates support of the interface with\n identifier interfaceId, false otherwise\n @dev Assumes that account contains a contract that supports ERC165, otherwise\n the behavior of this method is undefined. This precondition can be checked\n with {supportsERC165}.\n Interface identification is specified in ERC-165."
                  },
                  "id": 3420,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_supportsERC165Interface",
                  "nameLocation": "4144:24:18",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3377,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3374,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "4177:7:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 3420,
                        "src": "4169:15:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3373,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4169:7:18",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3376,
                        "mutability": "mutable",
                        "name": "interfaceId",
                        "nameLocation": "4193:11:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 3420,
                        "src": "4186:18:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 3375,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "4186:6:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4168:37:18"
                  },
                  "returnParameters": {
                    "id": 3380,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3379,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3420,
                        "src": "4228:4:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3378,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4228:4:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4227:6:18"
                  },
                  "scope": 3421,
                  "src": "4135:409:18",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "private"
                }
              ],
              "scope": 3422,
              "src": "361:4185:18",
              "usedErrors": []
            }
          ],
          "src": "33:4514:18"
        },
        "id": 18
      },
      "@openzeppelin/contracts/utils/introspection/IERC165.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/introspection/IERC165.sol",
          "exportedSymbols": {
            "IERC165": [
              3433
            ]
          },
          "id": 3434,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3423,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:19"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 3424,
                "nodeType": "StructuredDocumentation",
                "src": "58:279:19",
                "text": " @dev Interface of the ERC165 standard, as defined in the\n https://eips.ethereum.org/EIPS/eip-165[EIP].\n Implementers can declare support of contract interfaces, which can then be\n queried by others ({ERC165Checker}).\n For an implementation, see {ERC165}."
              },
              "fullyImplemented": false,
              "id": 3433,
              "linearizedBaseContracts": [
                3433
              ],
              "name": "IERC165",
              "nameLocation": "348:7:19",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 3425,
                    "nodeType": "StructuredDocumentation",
                    "src": "362:340:19",
                    "text": " @dev Returns true if this contract implements the interface defined by\n `interfaceId`. See the corresponding\n https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n to learn more about how these ids are created.\n This function call must use less than 30 000 gas."
                  },
                  "functionSelector": "01ffc9a7",
                  "id": 3432,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supportsInterface",
                  "nameLocation": "716:17:19",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3428,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3427,
                        "mutability": "mutable",
                        "name": "interfaceId",
                        "nameLocation": "741:11:19",
                        "nodeType": "VariableDeclaration",
                        "scope": 3432,
                        "src": "734:18:19",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 3426,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "734:6:19",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "733:20:19"
                  },
                  "returnParameters": {
                    "id": 3431,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3430,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3432,
                        "src": "777:4:19",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3429,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "777:4:19",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "776:6:19"
                  },
                  "scope": 3433,
                  "src": "707:76:19",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 3434,
              "src": "338:447:19",
              "usedErrors": []
            }
          ],
          "src": "33:753:19"
        },
        "id": 19
      },
      "@openzeppelin/contracts/utils/math/SafeCast.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/math/SafeCast.sol",
          "exportedSymbols": {
            "SafeCast": [
              3826
            ]
          },
          "id": 3827,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3435,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:23:20"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 3436,
                "nodeType": "StructuredDocumentation",
                "src": "58:709:20",
                "text": " @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\n checks.\n Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n easily result in undesired exploitation or bugs, since developers usually\n assume that overflows raise errors. `SafeCast` restores this intuition by\n reverting the transaction when such an operation overflows.\n Using this library instead of the unchecked operations eliminates an entire\n class of bugs, so it's recommended to use it always.\n Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\n all math on `uint256` and `int256` and then downcasting."
              },
              "fullyImplemented": true,
              "id": 3826,
              "linearizedBaseContracts": [
                3826
              ],
              "name": "SafeCast",
              "nameLocation": "776:8:20",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 3460,
                    "nodeType": "Block",
                    "src": "1142:126:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3451,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3445,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3439,
                                "src": "1160:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 3448,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "1174:7:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint224_$",
                                        "typeString": "type(uint224)"
                                      },
                                      "typeName": {
                                        "id": 3447,
                                        "name": "uint224",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "1174:7:20",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint224_$",
                                        "typeString": "type(uint224)"
                                      }
                                    ],
                                    "id": 3446,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1169:4:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 3449,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1169:13:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint224",
                                    "typeString": "type(uint224)"
                                  }
                                },
                                "id": 3450,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "1169:17:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "src": "1160:26:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203232342062697473",
                              "id": 3452,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1188:41:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 224 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 224 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 224 bits\""
                              }
                            ],
                            "id": 3444,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1152:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3453,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1152:78:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3454,
                        "nodeType": "ExpressionStatement",
                        "src": "1152:78:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3457,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3439,
                              "src": "1255:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 3456,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1247:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint224_$",
                              "typeString": "type(uint224)"
                            },
                            "typeName": {
                              "id": 3455,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "1247:7:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3458,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1247:14:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 3443,
                        "id": 3459,
                        "nodeType": "Return",
                        "src": "1240:21:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3437,
                    "nodeType": "StructuredDocumentation",
                    "src": "791:280:20",
                    "text": " @dev Returns the downcasted uint224 from uint256, reverting on\n overflow (when the input is greater than largest uint224).\n Counterpart to Solidity's `uint224` operator.\n Requirements:\n - input must fit into 224 bits"
                  },
                  "id": 3461,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint224",
                  "nameLocation": "1085:9:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3440,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3439,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1103:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3461,
                        "src": "1095:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3438,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1095:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1094:15:20"
                  },
                  "returnParameters": {
                    "id": 3443,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3442,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3461,
                        "src": "1133:7:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 3441,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "1133:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1132:9:20"
                  },
                  "scope": 3826,
                  "src": "1076:192:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3485,
                    "nodeType": "Block",
                    "src": "1625:126:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3476,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3470,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3464,
                                "src": "1643:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 3473,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "1657:7:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint128_$",
                                        "typeString": "type(uint128)"
                                      },
                                      "typeName": {
                                        "id": 3472,
                                        "name": "uint128",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "1657:7:20",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint128_$",
                                        "typeString": "type(uint128)"
                                      }
                                    ],
                                    "id": 3471,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1652:4:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 3474,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1652:13:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint128",
                                    "typeString": "type(uint128)"
                                  }
                                },
                                "id": 3475,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "1652:17:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint128",
                                  "typeString": "uint128"
                                }
                              },
                              "src": "1643:26:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203132382062697473",
                              "id": 3477,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1671:41:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_47a1e201974f94d3d1a31c8b08ae18c6966c758bdcd4400020012b98cc55426c",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 128 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 128 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_47a1e201974f94d3d1a31c8b08ae18c6966c758bdcd4400020012b98cc55426c",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 128 bits\""
                              }
                            ],
                            "id": 3469,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1635:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3478,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1635:78:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3479,
                        "nodeType": "ExpressionStatement",
                        "src": "1635:78:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3482,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3464,
                              "src": "1738:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 3481,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1730:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint128_$",
                              "typeString": "type(uint128)"
                            },
                            "typeName": {
                              "id": 3480,
                              "name": "uint128",
                              "nodeType": "ElementaryTypeName",
                              "src": "1730:7:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3483,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1730:14:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint128",
                            "typeString": "uint128"
                          }
                        },
                        "functionReturnParameters": 3468,
                        "id": 3484,
                        "nodeType": "Return",
                        "src": "1723:21:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3462,
                    "nodeType": "StructuredDocumentation",
                    "src": "1274:280:20",
                    "text": " @dev Returns the downcasted uint128 from uint256, reverting on\n overflow (when the input is greater than largest uint128).\n Counterpart to Solidity's `uint128` operator.\n Requirements:\n - input must fit into 128 bits"
                  },
                  "id": 3486,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint128",
                  "nameLocation": "1568:9:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3465,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3464,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1586:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3486,
                        "src": "1578:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3463,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1578:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1577:15:20"
                  },
                  "returnParameters": {
                    "id": 3468,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3467,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3486,
                        "src": "1616:7:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint128",
                          "typeString": "uint128"
                        },
                        "typeName": {
                          "id": 3466,
                          "name": "uint128",
                          "nodeType": "ElementaryTypeName",
                          "src": "1616:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint128",
                            "typeString": "uint128"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1615:9:20"
                  },
                  "scope": 3826,
                  "src": "1559:192:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3510,
                    "nodeType": "Block",
                    "src": "2102:123:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3501,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3495,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3489,
                                "src": "2120:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 3498,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "2134:6:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint96_$",
                                        "typeString": "type(uint96)"
                                      },
                                      "typeName": {
                                        "id": 3497,
                                        "name": "uint96",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "2134:6:20",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint96_$",
                                        "typeString": "type(uint96)"
                                      }
                                    ],
                                    "id": 3496,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "2129:4:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 3499,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2129:12:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint96",
                                    "typeString": "type(uint96)"
                                  }
                                },
                                "id": 3500,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "2129:16:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint96",
                                  "typeString": "uint96"
                                }
                              },
                              "src": "2120:25:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2039362062697473",
                              "id": 3502,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2147:40:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_06d20189090e973729391526269baef79c35dd621633195648e5f8309eef9e19",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 96 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 96 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_06d20189090e973729391526269baef79c35dd621633195648e5f8309eef9e19",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 96 bits\""
                              }
                            ],
                            "id": 3494,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2112:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3503,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2112:76:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3504,
                        "nodeType": "ExpressionStatement",
                        "src": "2112:76:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3507,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3489,
                              "src": "2212:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 3506,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2205:6:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint96_$",
                              "typeString": "type(uint96)"
                            },
                            "typeName": {
                              "id": 3505,
                              "name": "uint96",
                              "nodeType": "ElementaryTypeName",
                              "src": "2205:6:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3508,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2205:13:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "functionReturnParameters": 3493,
                        "id": 3509,
                        "nodeType": "Return",
                        "src": "2198:20:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3487,
                    "nodeType": "StructuredDocumentation",
                    "src": "1757:276:20",
                    "text": " @dev Returns the downcasted uint96 from uint256, reverting on\n overflow (when the input is greater than largest uint96).\n Counterpart to Solidity's `uint96` operator.\n Requirements:\n - input must fit into 96 bits"
                  },
                  "id": 3511,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint96",
                  "nameLocation": "2047:8:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3490,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3489,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2064:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3511,
                        "src": "2056:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3488,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2056:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2055:15:20"
                  },
                  "returnParameters": {
                    "id": 3493,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3492,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3511,
                        "src": "2094:6:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 3491,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "2094:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2093:8:20"
                  },
                  "scope": 3826,
                  "src": "2038:187:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3535,
                    "nodeType": "Block",
                    "src": "2576:123:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3526,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3520,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3514,
                                "src": "2594:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 3523,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "2608:6:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint64_$",
                                        "typeString": "type(uint64)"
                                      },
                                      "typeName": {
                                        "id": 3522,
                                        "name": "uint64",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "2608:6:20",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint64_$",
                                        "typeString": "type(uint64)"
                                      }
                                    ],
                                    "id": 3521,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "2603:4:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 3524,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2603:12:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint64",
                                    "typeString": "type(uint64)"
                                  }
                                },
                                "id": 3525,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "2603:16:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "src": "2594:25:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2036342062697473",
                              "id": 3527,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2621:40:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_93ae0c6bf6ffaece591a770b1865daa9f65157e541970aa9d8dc5f89a9490939",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 64 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 64 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_93ae0c6bf6ffaece591a770b1865daa9f65157e541970aa9d8dc5f89a9490939",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 64 bits\""
                              }
                            ],
                            "id": 3519,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2586:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3528,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2586:76:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3529,
                        "nodeType": "ExpressionStatement",
                        "src": "2586:76:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3532,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3514,
                              "src": "2686:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 3531,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2679:6:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint64_$",
                              "typeString": "type(uint64)"
                            },
                            "typeName": {
                              "id": 3530,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "2679:6:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3533,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2679:13:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 3518,
                        "id": 3534,
                        "nodeType": "Return",
                        "src": "2672:20:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3512,
                    "nodeType": "StructuredDocumentation",
                    "src": "2231:276:20",
                    "text": " @dev Returns the downcasted uint64 from uint256, reverting on\n overflow (when the input is greater than largest uint64).\n Counterpart to Solidity's `uint64` operator.\n Requirements:\n - input must fit into 64 bits"
                  },
                  "id": 3536,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint64",
                  "nameLocation": "2521:8:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3515,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3514,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2538:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3536,
                        "src": "2530:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3513,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2530:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2529:15:20"
                  },
                  "returnParameters": {
                    "id": 3518,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3517,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3536,
                        "src": "2568:6:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 3516,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2568:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2567:8:20"
                  },
                  "scope": 3826,
                  "src": "2512:187:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3560,
                    "nodeType": "Block",
                    "src": "3050:123:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3551,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3545,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3539,
                                "src": "3068:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 3548,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "3082:6:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint32_$",
                                        "typeString": "type(uint32)"
                                      },
                                      "typeName": {
                                        "id": 3547,
                                        "name": "uint32",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "3082:6:20",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint32_$",
                                        "typeString": "type(uint32)"
                                      }
                                    ],
                                    "id": 3546,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "3077:4:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 3549,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3077:12:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint32",
                                    "typeString": "type(uint32)"
                                  }
                                },
                                "id": 3550,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "3077:16:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "3068:25:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2033322062697473",
                              "id": 3552,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3095:40:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 32 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 32 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 32 bits\""
                              }
                            ],
                            "id": 3544,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3060:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3553,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3060:76:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3554,
                        "nodeType": "ExpressionStatement",
                        "src": "3060:76:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3557,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3539,
                              "src": "3160:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 3556,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "3153:6:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 3555,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "3153:6:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3558,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3153:13:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 3543,
                        "id": 3559,
                        "nodeType": "Return",
                        "src": "3146:20:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3537,
                    "nodeType": "StructuredDocumentation",
                    "src": "2705:276:20",
                    "text": " @dev Returns the downcasted uint32 from uint256, reverting on\n overflow (when the input is greater than largest uint32).\n Counterpart to Solidity's `uint32` operator.\n Requirements:\n - input must fit into 32 bits"
                  },
                  "id": 3561,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint32",
                  "nameLocation": "2995:8:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3540,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3539,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "3012:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3561,
                        "src": "3004:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3538,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3004:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3003:15:20"
                  },
                  "returnParameters": {
                    "id": 3543,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3542,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3561,
                        "src": "3042:6:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3541,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3042:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3041:8:20"
                  },
                  "scope": 3826,
                  "src": "2986:187:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3585,
                    "nodeType": "Block",
                    "src": "3524:123:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3576,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3570,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3564,
                                "src": "3542:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 3573,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "3556:6:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint16_$",
                                        "typeString": "type(uint16)"
                                      },
                                      "typeName": {
                                        "id": 3572,
                                        "name": "uint16",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "3556:6:20",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint16_$",
                                        "typeString": "type(uint16)"
                                      }
                                    ],
                                    "id": 3571,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "3551:4:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 3574,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3551:12:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint16",
                                    "typeString": "type(uint16)"
                                  }
                                },
                                "id": 3575,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "3551:16:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint16",
                                  "typeString": "uint16"
                                }
                              },
                              "src": "3542:25:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2031362062697473",
                              "id": 3577,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3569:40:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_13d3a66f9e0e5c92bbe7743bcd3bdb4695009d5f3a96e5ff49718d715b484033",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 16 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 16 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_13d3a66f9e0e5c92bbe7743bcd3bdb4695009d5f3a96e5ff49718d715b484033",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 16 bits\""
                              }
                            ],
                            "id": 3569,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3534:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3578,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3534:76:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3579,
                        "nodeType": "ExpressionStatement",
                        "src": "3534:76:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3582,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3564,
                              "src": "3634:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 3581,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "3627:6:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint16_$",
                              "typeString": "type(uint16)"
                            },
                            "typeName": {
                              "id": 3580,
                              "name": "uint16",
                              "nodeType": "ElementaryTypeName",
                              "src": "3627:6:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3583,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3627:13:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "functionReturnParameters": 3568,
                        "id": 3584,
                        "nodeType": "Return",
                        "src": "3620:20:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3562,
                    "nodeType": "StructuredDocumentation",
                    "src": "3179:276:20",
                    "text": " @dev Returns the downcasted uint16 from uint256, reverting on\n overflow (when the input is greater than largest uint16).\n Counterpart to Solidity's `uint16` operator.\n Requirements:\n - input must fit into 16 bits"
                  },
                  "id": 3586,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint16",
                  "nameLocation": "3469:8:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3565,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3564,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "3486:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3586,
                        "src": "3478:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3563,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3478:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3477:15:20"
                  },
                  "returnParameters": {
                    "id": 3568,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3567,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3586,
                        "src": "3516:6:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        },
                        "typeName": {
                          "id": 3566,
                          "name": "uint16",
                          "nodeType": "ElementaryTypeName",
                          "src": "3516:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3515:8:20"
                  },
                  "scope": 3826,
                  "src": "3460:187:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3610,
                    "nodeType": "Block",
                    "src": "3993:120:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3601,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3595,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3589,
                                "src": "4011:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 3598,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "4025:5:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint8_$",
                                        "typeString": "type(uint8)"
                                      },
                                      "typeName": {
                                        "id": 3597,
                                        "name": "uint8",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "4025:5:20",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint8_$",
                                        "typeString": "type(uint8)"
                                      }
                                    ],
                                    "id": 3596,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "4020:4:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 3599,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "4020:11:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint8",
                                    "typeString": "type(uint8)"
                                  }
                                },
                                "id": 3600,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "4020:15:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "src": "4011:24:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e20382062697473",
                              "id": 3602,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4037:39:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2610961ba53259047cd57c60366c5ad0b8aabf5eb4132487619b736715a740d1",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 8 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 8 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2610961ba53259047cd57c60366c5ad0b8aabf5eb4132487619b736715a740d1",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 8 bits\""
                              }
                            ],
                            "id": 3594,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4003:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3603,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4003:74:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3604,
                        "nodeType": "ExpressionStatement",
                        "src": "4003:74:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3607,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3589,
                              "src": "4100:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 3606,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "4094:5:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint8_$",
                              "typeString": "type(uint8)"
                            },
                            "typeName": {
                              "id": 3605,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "4094:5:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3608,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4094:12:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 3593,
                        "id": 3609,
                        "nodeType": "Return",
                        "src": "4087:19:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3587,
                    "nodeType": "StructuredDocumentation",
                    "src": "3653:273:20",
                    "text": " @dev Returns the downcasted uint8 from uint256, reverting on\n overflow (when the input is greater than largest uint8).\n Counterpart to Solidity's `uint8` operator.\n Requirements:\n - input must fit into 8 bits."
                  },
                  "id": 3611,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint8",
                  "nameLocation": "3940:7:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3590,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3589,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "3956:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3611,
                        "src": "3948:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3588,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3948:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3947:15:20"
                  },
                  "returnParameters": {
                    "id": 3593,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3592,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3611,
                        "src": "3986:5:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 3591,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3986:5:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3985:7:20"
                  },
                  "scope": 3826,
                  "src": "3931:182:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3631,
                    "nodeType": "Block",
                    "src": "4349:103:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              },
                              "id": 3622,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3620,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3614,
                                "src": "4367:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 3621,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4376:1:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "4367:10:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c7565206d75737420626520706f736974697665",
                              "id": 3623,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4379:34:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_74e6d3a4204092bea305532ded31d3763fc378e46be3884a93ceff08a0761807",
                                "typeString": "literal_string \"SafeCast: value must be positive\""
                              },
                              "value": "SafeCast: value must be positive"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_74e6d3a4204092bea305532ded31d3763fc378e46be3884a93ceff08a0761807",
                                "typeString": "literal_string \"SafeCast: value must be positive\""
                              }
                            ],
                            "id": 3619,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4359:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3624,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4359:55:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3625,
                        "nodeType": "ExpressionStatement",
                        "src": "4359:55:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3628,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3614,
                              "src": "4439:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 3627,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "4431:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint256_$",
                              "typeString": "type(uint256)"
                            },
                            "typeName": {
                              "id": 3626,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4431:7:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3629,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4431:14:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 3618,
                        "id": 3630,
                        "nodeType": "Return",
                        "src": "4424:21:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3612,
                    "nodeType": "StructuredDocumentation",
                    "src": "4119:160:20",
                    "text": " @dev Converts a signed int256 into an unsigned uint256.\n Requirements:\n - input must be greater than or equal to 0."
                  },
                  "id": 3632,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint256",
                  "nameLocation": "4293:9:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3615,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3614,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "4310:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3632,
                        "src": "4303:12:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 3613,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4303:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4302:14:20"
                  },
                  "returnParameters": {
                    "id": 3618,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3617,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3632,
                        "src": "4340:7:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3616,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4340:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4339:9:20"
                  },
                  "scope": 3826,
                  "src": "4284:168:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3664,
                    "nodeType": "Block",
                    "src": "4876:153:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 3655,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3647,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3641,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3635,
                                  "src": "4894:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3644,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "4908:6:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int128_$",
                                          "typeString": "type(int128)"
                                        },
                                        "typeName": {
                                          "id": 3643,
                                          "name": "int128",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "4908:6:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int128_$",
                                          "typeString": "type(int128)"
                                        }
                                      ],
                                      "id": 3642,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "4903:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3645,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "4903:12:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int128",
                                      "typeString": "type(int128)"
                                    }
                                  },
                                  "id": 3646,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "min",
                                  "nodeType": "MemberAccess",
                                  "src": "4903:16:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int128",
                                    "typeString": "int128"
                                  }
                                },
                                "src": "4894:25:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3654,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3648,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3635,
                                  "src": "4923:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3651,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "4937:6:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int128_$",
                                          "typeString": "type(int128)"
                                        },
                                        "typeName": {
                                          "id": 3650,
                                          "name": "int128",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "4937:6:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int128_$",
                                          "typeString": "type(int128)"
                                        }
                                      ],
                                      "id": 3649,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "4932:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3652,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "4932:12:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int128",
                                      "typeString": "type(int128)"
                                    }
                                  },
                                  "id": 3653,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "4932:16:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int128",
                                    "typeString": "int128"
                                  }
                                },
                                "src": "4923:25:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "4894:54:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203132382062697473",
                              "id": 3656,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4950:41:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_47a1e201974f94d3d1a31c8b08ae18c6966c758bdcd4400020012b98cc55426c",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 128 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 128 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_47a1e201974f94d3d1a31c8b08ae18c6966c758bdcd4400020012b98cc55426c",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 128 bits\""
                              }
                            ],
                            "id": 3640,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4886:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3657,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4886:106:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3658,
                        "nodeType": "ExpressionStatement",
                        "src": "4886:106:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3661,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3635,
                              "src": "5016:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 3660,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "5009:6:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int128_$",
                              "typeString": "type(int128)"
                            },
                            "typeName": {
                              "id": 3659,
                              "name": "int128",
                              "nodeType": "ElementaryTypeName",
                              "src": "5009:6:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3662,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5009:13:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int128",
                            "typeString": "int128"
                          }
                        },
                        "functionReturnParameters": 3639,
                        "id": 3663,
                        "nodeType": "Return",
                        "src": "5002:20:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3633,
                    "nodeType": "StructuredDocumentation",
                    "src": "4458:350:20",
                    "text": " @dev Returns the downcasted int128 from int256, reverting on\n overflow (when the input is less than smallest int128 or\n greater than largest int128).\n Counterpart to Solidity's `int128` operator.\n Requirements:\n - input must fit into 128 bits\n _Available since v3.1._"
                  },
                  "id": 3665,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt128",
                  "nameLocation": "4822:8:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3636,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3635,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "4838:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3665,
                        "src": "4831:12:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 3634,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4831:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4830:14:20"
                  },
                  "returnParameters": {
                    "id": 3639,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3638,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3665,
                        "src": "4868:6:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int128",
                          "typeString": "int128"
                        },
                        "typeName": {
                          "id": 3637,
                          "name": "int128",
                          "nodeType": "ElementaryTypeName",
                          "src": "4868:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int128",
                            "typeString": "int128"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4867:8:20"
                  },
                  "scope": 3826,
                  "src": "4813:216:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3697,
                    "nodeType": "Block",
                    "src": "5446:149:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 3688,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3680,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3674,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3668,
                                  "src": "5464:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3677,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "5478:5:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int64_$",
                                          "typeString": "type(int64)"
                                        },
                                        "typeName": {
                                          "id": 3676,
                                          "name": "int64",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "5478:5:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int64_$",
                                          "typeString": "type(int64)"
                                        }
                                      ],
                                      "id": 3675,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "5473:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3678,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "5473:11:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int64",
                                      "typeString": "type(int64)"
                                    }
                                  },
                                  "id": 3679,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "min",
                                  "nodeType": "MemberAccess",
                                  "src": "5473:15:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int64",
                                    "typeString": "int64"
                                  }
                                },
                                "src": "5464:24:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3687,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3681,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3668,
                                  "src": "5492:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3684,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "5506:5:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int64_$",
                                          "typeString": "type(int64)"
                                        },
                                        "typeName": {
                                          "id": 3683,
                                          "name": "int64",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "5506:5:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int64_$",
                                          "typeString": "type(int64)"
                                        }
                                      ],
                                      "id": 3682,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "5501:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3685,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "5501:11:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int64",
                                      "typeString": "type(int64)"
                                    }
                                  },
                                  "id": 3686,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "5501:15:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int64",
                                    "typeString": "int64"
                                  }
                                },
                                "src": "5492:24:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "5464:52:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2036342062697473",
                              "id": 3689,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5518:40:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_93ae0c6bf6ffaece591a770b1865daa9f65157e541970aa9d8dc5f89a9490939",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 64 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 64 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_93ae0c6bf6ffaece591a770b1865daa9f65157e541970aa9d8dc5f89a9490939",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 64 bits\""
                              }
                            ],
                            "id": 3673,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5456:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3690,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5456:103:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3691,
                        "nodeType": "ExpressionStatement",
                        "src": "5456:103:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3694,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3668,
                              "src": "5582:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 3693,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "5576:5:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int64_$",
                              "typeString": "type(int64)"
                            },
                            "typeName": {
                              "id": 3692,
                              "name": "int64",
                              "nodeType": "ElementaryTypeName",
                              "src": "5576:5:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3695,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5576:12:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int64",
                            "typeString": "int64"
                          }
                        },
                        "functionReturnParameters": 3672,
                        "id": 3696,
                        "nodeType": "Return",
                        "src": "5569:19:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3666,
                    "nodeType": "StructuredDocumentation",
                    "src": "5035:345:20",
                    "text": " @dev Returns the downcasted int64 from int256, reverting on\n overflow (when the input is less than smallest int64 or\n greater than largest int64).\n Counterpart to Solidity's `int64` operator.\n Requirements:\n - input must fit into 64 bits\n _Available since v3.1._"
                  },
                  "id": 3698,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt64",
                  "nameLocation": "5394:7:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3669,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3668,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "5409:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3698,
                        "src": "5402:12:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 3667,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5402:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5401:14:20"
                  },
                  "returnParameters": {
                    "id": 3672,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3671,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3698,
                        "src": "5439:5:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int64",
                          "typeString": "int64"
                        },
                        "typeName": {
                          "id": 3670,
                          "name": "int64",
                          "nodeType": "ElementaryTypeName",
                          "src": "5439:5:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int64",
                            "typeString": "int64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5438:7:20"
                  },
                  "scope": 3826,
                  "src": "5385:210:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3730,
                    "nodeType": "Block",
                    "src": "6012:149:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 3721,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3713,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3707,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3701,
                                  "src": "6030:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3710,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "6044:5:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int32_$",
                                          "typeString": "type(int32)"
                                        },
                                        "typeName": {
                                          "id": 3709,
                                          "name": "int32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "6044:5:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int32_$",
                                          "typeString": "type(int32)"
                                        }
                                      ],
                                      "id": 3708,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "6039:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3711,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6039:11:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int32",
                                      "typeString": "type(int32)"
                                    }
                                  },
                                  "id": 3712,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "min",
                                  "nodeType": "MemberAccess",
                                  "src": "6039:15:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int32",
                                    "typeString": "int32"
                                  }
                                },
                                "src": "6030:24:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3720,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3714,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3701,
                                  "src": "6058:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3717,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "6072:5:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int32_$",
                                          "typeString": "type(int32)"
                                        },
                                        "typeName": {
                                          "id": 3716,
                                          "name": "int32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "6072:5:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int32_$",
                                          "typeString": "type(int32)"
                                        }
                                      ],
                                      "id": 3715,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "6067:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3718,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6067:11:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int32",
                                      "typeString": "type(int32)"
                                    }
                                  },
                                  "id": 3719,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "6067:15:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int32",
                                    "typeString": "int32"
                                  }
                                },
                                "src": "6058:24:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "6030:52:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2033322062697473",
                              "id": 3722,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6084:40:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 32 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 32 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 32 bits\""
                              }
                            ],
                            "id": 3706,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6022:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3723,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6022:103:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3724,
                        "nodeType": "ExpressionStatement",
                        "src": "6022:103:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3727,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3701,
                              "src": "6148:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 3726,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "6142:5:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int32_$",
                              "typeString": "type(int32)"
                            },
                            "typeName": {
                              "id": 3725,
                              "name": "int32",
                              "nodeType": "ElementaryTypeName",
                              "src": "6142:5:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3728,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6142:12:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int32",
                            "typeString": "int32"
                          }
                        },
                        "functionReturnParameters": 3705,
                        "id": 3729,
                        "nodeType": "Return",
                        "src": "6135:19:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3699,
                    "nodeType": "StructuredDocumentation",
                    "src": "5601:345:20",
                    "text": " @dev Returns the downcasted int32 from int256, reverting on\n overflow (when the input is less than smallest int32 or\n greater than largest int32).\n Counterpart to Solidity's `int32` operator.\n Requirements:\n - input must fit into 32 bits\n _Available since v3.1._"
                  },
                  "id": 3731,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt32",
                  "nameLocation": "5960:7:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3702,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3701,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "5975:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3731,
                        "src": "5968:12:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 3700,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5968:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5967:14:20"
                  },
                  "returnParameters": {
                    "id": 3705,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3704,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3731,
                        "src": "6005:5:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int32",
                          "typeString": "int32"
                        },
                        "typeName": {
                          "id": 3703,
                          "name": "int32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6005:5:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int32",
                            "typeString": "int32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6004:7:20"
                  },
                  "scope": 3826,
                  "src": "5951:210:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3763,
                    "nodeType": "Block",
                    "src": "6578:149:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 3754,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3746,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3740,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3734,
                                  "src": "6596:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3743,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "6610:5:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int16_$",
                                          "typeString": "type(int16)"
                                        },
                                        "typeName": {
                                          "id": 3742,
                                          "name": "int16",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "6610:5:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int16_$",
                                          "typeString": "type(int16)"
                                        }
                                      ],
                                      "id": 3741,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "6605:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3744,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6605:11:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int16",
                                      "typeString": "type(int16)"
                                    }
                                  },
                                  "id": 3745,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "min",
                                  "nodeType": "MemberAccess",
                                  "src": "6605:15:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int16",
                                    "typeString": "int16"
                                  }
                                },
                                "src": "6596:24:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3753,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3747,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3734,
                                  "src": "6624:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3750,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "6638:5:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int16_$",
                                          "typeString": "type(int16)"
                                        },
                                        "typeName": {
                                          "id": 3749,
                                          "name": "int16",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "6638:5:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int16_$",
                                          "typeString": "type(int16)"
                                        }
                                      ],
                                      "id": 3748,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "6633:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3751,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6633:11:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int16",
                                      "typeString": "type(int16)"
                                    }
                                  },
                                  "id": 3752,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "6633:15:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int16",
                                    "typeString": "int16"
                                  }
                                },
                                "src": "6624:24:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "6596:52:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2031362062697473",
                              "id": 3755,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6650:40:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_13d3a66f9e0e5c92bbe7743bcd3bdb4695009d5f3a96e5ff49718d715b484033",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 16 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 16 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_13d3a66f9e0e5c92bbe7743bcd3bdb4695009d5f3a96e5ff49718d715b484033",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 16 bits\""
                              }
                            ],
                            "id": 3739,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6588:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3756,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6588:103:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3757,
                        "nodeType": "ExpressionStatement",
                        "src": "6588:103:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3760,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3734,
                              "src": "6714:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 3759,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "6708:5:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int16_$",
                              "typeString": "type(int16)"
                            },
                            "typeName": {
                              "id": 3758,
                              "name": "int16",
                              "nodeType": "ElementaryTypeName",
                              "src": "6708:5:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3761,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6708:12:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int16",
                            "typeString": "int16"
                          }
                        },
                        "functionReturnParameters": 3738,
                        "id": 3762,
                        "nodeType": "Return",
                        "src": "6701:19:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3732,
                    "nodeType": "StructuredDocumentation",
                    "src": "6167:345:20",
                    "text": " @dev Returns the downcasted int16 from int256, reverting on\n overflow (when the input is less than smallest int16 or\n greater than largest int16).\n Counterpart to Solidity's `int16` operator.\n Requirements:\n - input must fit into 16 bits\n _Available since v3.1._"
                  },
                  "id": 3764,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt16",
                  "nameLocation": "6526:7:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3735,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3734,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "6541:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3764,
                        "src": "6534:12:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 3733,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6534:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6533:14:20"
                  },
                  "returnParameters": {
                    "id": 3738,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3737,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3764,
                        "src": "6571:5:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int16",
                          "typeString": "int16"
                        },
                        "typeName": {
                          "id": 3736,
                          "name": "int16",
                          "nodeType": "ElementaryTypeName",
                          "src": "6571:5:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int16",
                            "typeString": "int16"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6570:7:20"
                  },
                  "scope": 3826,
                  "src": "6517:210:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3796,
                    "nodeType": "Block",
                    "src": "7138:145:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 3787,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3779,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3773,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3767,
                                  "src": "7156:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3776,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "7170:4:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int8_$",
                                          "typeString": "type(int8)"
                                        },
                                        "typeName": {
                                          "id": 3775,
                                          "name": "int8",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "7170:4:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int8_$",
                                          "typeString": "type(int8)"
                                        }
                                      ],
                                      "id": 3774,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "7165:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3777,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "7165:10:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int8",
                                      "typeString": "type(int8)"
                                    }
                                  },
                                  "id": 3778,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "min",
                                  "nodeType": "MemberAccess",
                                  "src": "7165:14:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int8",
                                    "typeString": "int8"
                                  }
                                },
                                "src": "7156:23:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3786,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3780,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3767,
                                  "src": "7183:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3783,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "7197:4:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int8_$",
                                          "typeString": "type(int8)"
                                        },
                                        "typeName": {
                                          "id": 3782,
                                          "name": "int8",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "7197:4:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int8_$",
                                          "typeString": "type(int8)"
                                        }
                                      ],
                                      "id": 3781,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "7192:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3784,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "7192:10:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int8",
                                      "typeString": "type(int8)"
                                    }
                                  },
                                  "id": 3785,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "7192:14:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int8",
                                    "typeString": "int8"
                                  }
                                },
                                "src": "7183:23:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "7156:50:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e20382062697473",
                              "id": 3788,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7208:39:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2610961ba53259047cd57c60366c5ad0b8aabf5eb4132487619b736715a740d1",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 8 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 8 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2610961ba53259047cd57c60366c5ad0b8aabf5eb4132487619b736715a740d1",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 8 bits\""
                              }
                            ],
                            "id": 3772,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7148:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3789,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7148:100:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3790,
                        "nodeType": "ExpressionStatement",
                        "src": "7148:100:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3793,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3767,
                              "src": "7270:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 3792,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "7265:4:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int8_$",
                              "typeString": "type(int8)"
                            },
                            "typeName": {
                              "id": 3791,
                              "name": "int8",
                              "nodeType": "ElementaryTypeName",
                              "src": "7265:4:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3794,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7265:11:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int8",
                            "typeString": "int8"
                          }
                        },
                        "functionReturnParameters": 3771,
                        "id": 3795,
                        "nodeType": "Return",
                        "src": "7258:18:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3765,
                    "nodeType": "StructuredDocumentation",
                    "src": "6733:341:20",
                    "text": " @dev Returns the downcasted int8 from int256, reverting on\n overflow (when the input is less than smallest int8 or\n greater than largest int8).\n Counterpart to Solidity's `int8` operator.\n Requirements:\n - input must fit into 8 bits.\n _Available since v3.1._"
                  },
                  "id": 3797,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt8",
                  "nameLocation": "7088:6:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3768,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3767,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "7102:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3797,
                        "src": "7095:12:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 3766,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7095:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7094:14:20"
                  },
                  "returnParameters": {
                    "id": 3771,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3770,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3797,
                        "src": "7132:4:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int8",
                          "typeString": "int8"
                        },
                        "typeName": {
                          "id": 3769,
                          "name": "int8",
                          "nodeType": "ElementaryTypeName",
                          "src": "7132:4:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int8",
                            "typeString": "int8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7131:6:20"
                  },
                  "scope": 3826,
                  "src": "7079:204:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3824,
                    "nodeType": "Block",
                    "src": "7523:233:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3815,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3806,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3800,
                                "src": "7640:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 3811,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "nodeType": "ElementaryTypeNameExpression",
                                          "src": "7662:6:20",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_int256_$",
                                            "typeString": "type(int256)"
                                          },
                                          "typeName": {
                                            "id": 3810,
                                            "name": "int256",
                                            "nodeType": "ElementaryTypeName",
                                            "src": "7662:6:20",
                                            "typeDescriptions": {}
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_type$_t_int256_$",
                                            "typeString": "type(int256)"
                                          }
                                        ],
                                        "id": 3809,
                                        "name": "type",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": -27,
                                        "src": "7657:4:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                          "typeString": "function () pure"
                                        }
                                      },
                                      "id": 3812,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "7657:12:20",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_meta_type_t_int256",
                                        "typeString": "type(int256)"
                                      }
                                    },
                                    "id": 3813,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "max",
                                    "nodeType": "MemberAccess",
                                    "src": "7657:16:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_int256",
                                      "typeString": "int256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_int256",
                                      "typeString": "int256"
                                    }
                                  ],
                                  "id": 3808,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "7649:7:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  },
                                  "typeName": {
                                    "id": 3807,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7649:7:20",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 3814,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7649:25:20",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7640:34:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e20616e20696e74323536",
                              "id": 3816,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7676:42:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_d70dcf21692b3c91b4c5fbb89ed57f464aa42efbe5b0ea96c4acb7c080144227",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in an int256\""
                              },
                              "value": "SafeCast: value doesn't fit in an int256"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_d70dcf21692b3c91b4c5fbb89ed57f464aa42efbe5b0ea96c4acb7c080144227",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in an int256\""
                              }
                            ],
                            "id": 3805,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7632:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3817,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7632:87:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3818,
                        "nodeType": "ExpressionStatement",
                        "src": "7632:87:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3821,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3800,
                              "src": "7743:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 3820,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "7736:6:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int256_$",
                              "typeString": "type(int256)"
                            },
                            "typeName": {
                              "id": 3819,
                              "name": "int256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7736:6:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3822,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7736:13:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "functionReturnParameters": 3804,
                        "id": 3823,
                        "nodeType": "Return",
                        "src": "7729:20:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3798,
                    "nodeType": "StructuredDocumentation",
                    "src": "7289:165:20",
                    "text": " @dev Converts an unsigned uint256 into a signed int256.\n Requirements:\n - input must be less than or equal to maxInt256."
                  },
                  "id": 3825,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt256",
                  "nameLocation": "7468:8:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3801,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3800,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "7485:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3825,
                        "src": "7477:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3799,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7477:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7476:15:20"
                  },
                  "returnParameters": {
                    "id": 3804,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3803,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3825,
                        "src": "7515:6:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 3802,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7515:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7514:8:20"
                  },
                  "scope": 3826,
                  "src": "7459:297:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 3827,
              "src": "768:6990:20",
              "usedErrors": []
            }
          ],
          "src": "33:7726:20"
        },
        "id": 20
      },
      "@pooltogether/owner-manager-contracts/contracts/Manageable.sol": {
        "ast": {
          "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
          "exportedSymbols": {
            "Manageable": [
              3931
            ],
            "Ownable": [
              4086
            ]
          },
          "id": 3932,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3828,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:23:21"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "file": "./Ownable.sol",
              "id": 3829,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 3932,
              "sourceUnit": 4087,
              "src": "62:23:21",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 3831,
                    "name": "Ownable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 4086,
                    "src": "933:7:21"
                  },
                  "id": 3832,
                  "nodeType": "InheritanceSpecifier",
                  "src": "933:7:21"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 3830,
                "nodeType": "StructuredDocumentation",
                "src": "87:813:21",
                "text": " @title Abstract manageable contract that can be inherited by other contracts\n @notice Contract module based on Ownable which provides a basic access control mechanism, where\n there is an owner and a manager that can be granted exclusive access to specific functions.\n By default, the owner is the deployer of the contract.\n The owner account is set through a two steps process.\n      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\n      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\n The manager account needs to be set using {setManager}.\n This module is used through inheritance. It will make available the modifier\n `onlyManager`, which can be applied to your functions to restrict their use to\n the manager."
              },
              "fullyImplemented": false,
              "id": 3931,
              "linearizedBaseContracts": [
                3931,
                4086
              ],
              "name": "Manageable",
              "nameLocation": "919:10:21",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 3834,
                  "mutability": "mutable",
                  "name": "_manager",
                  "nameLocation": "963:8:21",
                  "nodeType": "VariableDeclaration",
                  "scope": 3931,
                  "src": "947:24:21",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 3833,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "947:7:21",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 3835,
                    "nodeType": "StructuredDocumentation",
                    "src": "978:173:21",
                    "text": " @dev Emitted when `_manager` has been changed.\n @param previousManager previous `_manager` address.\n @param newManager new `_manager` address."
                  },
                  "id": 3841,
                  "name": "ManagerTransferred",
                  "nameLocation": "1162:18:21",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3840,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3837,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "previousManager",
                        "nameLocation": "1197:15:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3841,
                        "src": "1181:31:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3836,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1181:7:21",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3839,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newManager",
                        "nameLocation": "1230:10:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3841,
                        "src": "1214:26:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3838,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1214:7:21",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1180:61:21"
                  },
                  "src": "1156:86:21"
                },
                {
                  "body": {
                    "id": 3849,
                    "nodeType": "Block",
                    "src": "1460:32:21",
                    "statements": [
                      {
                        "expression": {
                          "id": 3847,
                          "name": "_manager",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3834,
                          "src": "1477:8:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 3846,
                        "id": 3848,
                        "nodeType": "Return",
                        "src": "1470:15:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3842,
                    "nodeType": "StructuredDocumentation",
                    "src": "1304:94:21",
                    "text": " @notice Gets current `_manager`.\n @return Current `_manager` address."
                  },
                  "functionSelector": "481c6a75",
                  "id": 3850,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "manager",
                  "nameLocation": "1412:7:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3843,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1419:2:21"
                  },
                  "returnParameters": {
                    "id": 3846,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3845,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3850,
                        "src": "1451:7:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3844,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1451:7:21",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1450:9:21"
                  },
                  "scope": 3931,
                  "src": "1403:89:21",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 3864,
                    "nodeType": "Block",
                    "src": "1819:48:21",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3861,
                              "name": "_newManager",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3853,
                              "src": "1848:11:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 3860,
                            "name": "_setManager",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3896,
                            "src": "1836:11:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$_t_bool_$",
                              "typeString": "function (address) returns (bool)"
                            }
                          },
                          "id": 3862,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1836:24:21",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 3859,
                        "id": 3863,
                        "nodeType": "Return",
                        "src": "1829:31:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3851,
                    "nodeType": "StructuredDocumentation",
                    "src": "1498:241:21",
                    "text": " @notice Set or change of manager.\n @dev Throws if called by any account other than the owner.\n @param _newManager New _manager address.\n @return Boolean to indicate if the operation was successful or not."
                  },
                  "functionSelector": "d0ebdbe7",
                  "id": 3865,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 3856,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 3855,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "1794:9:21"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1794:9:21"
                    }
                  ],
                  "name": "setManager",
                  "nameLocation": "1753:10:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3854,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3853,
                        "mutability": "mutable",
                        "name": "_newManager",
                        "nameLocation": "1772:11:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3865,
                        "src": "1764:19:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3852,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1764:7:21",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1763:21:21"
                  },
                  "returnParameters": {
                    "id": 3859,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3858,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3865,
                        "src": "1813:4:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3857,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1813:4:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1812:6:21"
                  },
                  "scope": 3931,
                  "src": "1744:123:21",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 3895,
                    "nodeType": "Block",
                    "src": "2174:261:21",
                    "statements": [
                      {
                        "assignments": [
                          3874
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3874,
                            "mutability": "mutable",
                            "name": "_previousManager",
                            "nameLocation": "2192:16:21",
                            "nodeType": "VariableDeclaration",
                            "scope": 3895,
                            "src": "2184:24:21",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 3873,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "2184:7:21",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3876,
                        "initialValue": {
                          "id": 3875,
                          "name": "_manager",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3834,
                          "src": "2211:8:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2184:35:21"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 3880,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3878,
                                "name": "_newManager",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3868,
                                "src": "2238:11:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "id": 3879,
                                "name": "_previousManager",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3874,
                                "src": "2253:16:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2238:31:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472657373",
                              "id": 3881,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2271:37:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32",
                                "typeString": "literal_string \"Manageable/existing-manager-address\""
                              },
                              "value": "Manageable/existing-manager-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32",
                                "typeString": "literal_string \"Manageable/existing-manager-address\""
                              }
                            ],
                            "id": 3877,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2230:7:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3882,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2230:79:21",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3883,
                        "nodeType": "ExpressionStatement",
                        "src": "2230:79:21"
                      },
                      {
                        "expression": {
                          "id": 3886,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3884,
                            "name": "_manager",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3834,
                            "src": "2320:8:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 3885,
                            "name": "_newManager",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3868,
                            "src": "2331:11:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "2320:22:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 3887,
                        "nodeType": "ExpressionStatement",
                        "src": "2320:22:21"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 3889,
                              "name": "_previousManager",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3874,
                              "src": "2377:16:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 3890,
                              "name": "_newManager",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3868,
                              "src": "2395:11:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 3888,
                            "name": "ManagerTransferred",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3841,
                            "src": "2358:18:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 3891,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2358:49:21",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3892,
                        "nodeType": "EmitStatement",
                        "src": "2353:54:21"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 3893,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "2424:4:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 3872,
                        "id": 3894,
                        "nodeType": "Return",
                        "src": "2417:11:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3866,
                    "nodeType": "StructuredDocumentation",
                    "src": "1929:175:21",
                    "text": " @notice Set or change of manager.\n @param _newManager New _manager address.\n @return Boolean to indicate if the operation was successful or not."
                  },
                  "id": 3896,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setManager",
                  "nameLocation": "2118:11:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3869,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3868,
                        "mutability": "mutable",
                        "name": "_newManager",
                        "nameLocation": "2138:11:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3896,
                        "src": "2130:19:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3867,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2130:7:21",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2129:21:21"
                  },
                  "returnParameters": {
                    "id": 3872,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3871,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3896,
                        "src": "2168:4:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3870,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2168:4:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2167:6:21"
                  },
                  "scope": 3931,
                  "src": "2109:326:21",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 3909,
                    "nodeType": "Block",
                    "src": "2604:93:21",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 3904,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "id": 3900,
                                  "name": "manager",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3850,
                                  "src": "2622:7:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                    "typeString": "function () view returns (address)"
                                  }
                                },
                                "id": 3901,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2622:9:21",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 3902,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "2635:3:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 3903,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "2635:10:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2622:23:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e61676572",
                              "id": 3905,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2647:31:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_781c54ee483ba928cbb64c052f134c6ba48222415b5ff16d687a605ab640168f",
                                "typeString": "literal_string \"Manageable/caller-not-manager\""
                              },
                              "value": "Manageable/caller-not-manager"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_781c54ee483ba928cbb64c052f134c6ba48222415b5ff16d687a605ab640168f",
                                "typeString": "literal_string \"Manageable/caller-not-manager\""
                              }
                            ],
                            "id": 3899,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2614:7:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3906,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2614:65:21",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3907,
                        "nodeType": "ExpressionStatement",
                        "src": "2614:65:21"
                      },
                      {
                        "id": 3908,
                        "nodeType": "PlaceholderStatement",
                        "src": "2689:1:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3897,
                    "nodeType": "StructuredDocumentation",
                    "src": "2497:79:21",
                    "text": " @dev Throws if called by any account other than the manager."
                  },
                  "id": 3910,
                  "name": "onlyManager",
                  "nameLocation": "2590:11:21",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 3898,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2601:2:21"
                  },
                  "src": "2581:116:21",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3929,
                    "nodeType": "Block",
                    "src": "2830:127:21",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 3924,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 3918,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 3914,
                                    "name": "manager",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3850,
                                    "src": "2848:7:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                      "typeString": "function () view returns (address)"
                                    }
                                  },
                                  "id": 3915,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2848:9:21",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "expression": {
                                    "id": 3916,
                                    "name": "msg",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -15,
                                    "src": "2861:3:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_message",
                                      "typeString": "msg"
                                    }
                                  },
                                  "id": 3917,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "sender",
                                  "nodeType": "MemberAccess",
                                  "src": "2861:10:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "2848:23:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "||",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 3923,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 3919,
                                    "name": "owner",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3970,
                                    "src": "2875:5:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                      "typeString": "function () view returns (address)"
                                    }
                                  },
                                  "id": 3920,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2875:7:21",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "expression": {
                                    "id": 3921,
                                    "name": "msg",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -15,
                                    "src": "2886:3:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_message",
                                      "typeString": "msg"
                                    }
                                  },
                                  "id": 3922,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "sender",
                                  "nodeType": "MemberAccess",
                                  "src": "2886:10:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "2875:21:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "2848:48:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f722d6f776e6572",
                              "id": 3925,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2898:40:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308",
                                "typeString": "literal_string \"Manageable/caller-not-manager-or-owner\""
                              },
                              "value": "Manageable/caller-not-manager-or-owner"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308",
                                "typeString": "literal_string \"Manageable/caller-not-manager-or-owner\""
                              }
                            ],
                            "id": 3913,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2840:7:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3926,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2840:99:21",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3927,
                        "nodeType": "ExpressionStatement",
                        "src": "2840:99:21"
                      },
                      {
                        "id": 3928,
                        "nodeType": "PlaceholderStatement",
                        "src": "2949:1:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3911,
                    "nodeType": "StructuredDocumentation",
                    "src": "2703:92:21",
                    "text": " @dev Throws if called by any account other than the manager or the owner."
                  },
                  "id": 3930,
                  "name": "onlyManagerOrOwner",
                  "nameLocation": "2809:18:21",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 3912,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2827:2:21"
                  },
                  "src": "2800:157:21",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 3932,
              "src": "901:2058:21",
              "usedErrors": []
            }
          ],
          "src": "37:2923:21"
        },
        "id": 21
      },
      "@pooltogether/owner-manager-contracts/contracts/Ownable.sol": {
        "ast": {
          "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
          "exportedSymbols": {
            "Ownable": [
              4086
            ]
          },
          "id": 4087,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3933,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:23:22"
            },
            {
              "abstract": true,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 3934,
                "nodeType": "StructuredDocumentation",
                "src": "62:791:22",
                "text": " @title Abstract ownable contract that can be inherited by other contracts\n @notice Contract module which provides a basic access control mechanism, where\n there is an account (an owner) that can be granted exclusive access to\n specific functions.\n By default, the owner is the deployer of the contract.\n The owner account is set through a two steps process.\n      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\n      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\n The manager account needs to be set using {setManager}.\n This module is used through inheritance. It will make available the modifier\n `onlyOwner`, which can be applied to your functions to restrict their use to\n the owner."
              },
              "fullyImplemented": true,
              "id": 4086,
              "linearizedBaseContracts": [
                4086
              ],
              "name": "Ownable",
              "nameLocation": "872:7:22",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 3936,
                  "mutability": "mutable",
                  "name": "_owner",
                  "nameLocation": "902:6:22",
                  "nodeType": "VariableDeclaration",
                  "scope": 4086,
                  "src": "886:22:22",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 3935,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "886:7:22",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 3938,
                  "mutability": "mutable",
                  "name": "_pendingOwner",
                  "nameLocation": "930:13:22",
                  "nodeType": "VariableDeclaration",
                  "scope": 4086,
                  "src": "914:29:22",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 3937,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "914:7:22",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 3939,
                    "nodeType": "StructuredDocumentation",
                    "src": "950:126:22",
                    "text": " @dev Emitted when `_pendingOwner` has been changed.\n @param pendingOwner new `_pendingOwner` address."
                  },
                  "id": 3943,
                  "name": "OwnershipOffered",
                  "nameLocation": "1087:16:22",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3942,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3941,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "pendingOwner",
                        "nameLocation": "1120:12:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 3943,
                        "src": "1104:28:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3940,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1104:7:22",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1103:30:22"
                  },
                  "src": "1081:53:22"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 3944,
                    "nodeType": "StructuredDocumentation",
                    "src": "1140:163:22",
                    "text": " @dev Emitted when `_owner` has been changed.\n @param previousOwner previous `_owner` address.\n @param newOwner new `_owner` address."
                  },
                  "id": 3950,
                  "name": "OwnershipTransferred",
                  "nameLocation": "1314:20:22",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3949,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3946,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "previousOwner",
                        "nameLocation": "1351:13:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 3950,
                        "src": "1335:29:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3945,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1335:7:22",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3948,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newOwner",
                        "nameLocation": "1382:8:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 3950,
                        "src": "1366:24:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3947,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1366:7:22",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1334:57:22"
                  },
                  "src": "1308:84:22"
                },
                {
                  "body": {
                    "id": 3960,
                    "nodeType": "Block",
                    "src": "1638:41:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3957,
                              "name": "_initialOwner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3953,
                              "src": "1658:13:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 3956,
                            "name": "_setOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4058,
                            "src": "1648:9:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 3958,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1648:24:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3959,
                        "nodeType": "ExpressionStatement",
                        "src": "1648:24:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3951,
                    "nodeType": "StructuredDocumentation",
                    "src": "1442:156:22",
                    "text": " @notice Initializes the contract setting `_initialOwner` as the initial owner.\n @param _initialOwner Initial owner of the contract."
                  },
                  "id": 3961,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3954,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3953,
                        "mutability": "mutable",
                        "name": "_initialOwner",
                        "nameLocation": "1623:13:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 3961,
                        "src": "1615:21:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3952,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1615:7:22",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1614:23:22"
                  },
                  "returnParameters": {
                    "id": 3955,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1638:0:22"
                  },
                  "scope": 4086,
                  "src": "1603:76:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3969,
                    "nodeType": "Block",
                    "src": "1869:30:22",
                    "statements": [
                      {
                        "expression": {
                          "id": 3967,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3936,
                          "src": "1886:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 3966,
                        "id": 3968,
                        "nodeType": "Return",
                        "src": "1879:13:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3962,
                    "nodeType": "StructuredDocumentation",
                    "src": "1741:68:22",
                    "text": " @notice Returns the address of the current owner."
                  },
                  "functionSelector": "8da5cb5b",
                  "id": 3970,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "owner",
                  "nameLocation": "1823:5:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3963,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1828:2:22"
                  },
                  "returnParameters": {
                    "id": 3966,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3965,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3970,
                        "src": "1860:7:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3964,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1860:7:22",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1859:9:22"
                  },
                  "scope": 4086,
                  "src": "1814:85:22",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 3978,
                    "nodeType": "Block",
                    "src": "2078:37:22",
                    "statements": [
                      {
                        "expression": {
                          "id": 3976,
                          "name": "_pendingOwner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3938,
                          "src": "2095:13:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 3975,
                        "id": 3977,
                        "nodeType": "Return",
                        "src": "2088:20:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3971,
                    "nodeType": "StructuredDocumentation",
                    "src": "1905:104:22",
                    "text": " @notice Gets current `_pendingOwner`.\n @return Current `_pendingOwner` address."
                  },
                  "functionSelector": "e30c3978",
                  "id": 3979,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "pendingOwner",
                  "nameLocation": "2023:12:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3972,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2035:2:22"
                  },
                  "returnParameters": {
                    "id": 3975,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3974,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3979,
                        "src": "2069:7:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3973,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2069:7:22",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2068:9:22"
                  },
                  "scope": 4086,
                  "src": "2014:101:22",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 3992,
                    "nodeType": "Block",
                    "src": "2564:38:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 3988,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "2592:1:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 3987,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2584:7:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 3986,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2584:7:22",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 3989,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2584:10:22",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 3985,
                            "name": "_setOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4058,
                            "src": "2574:9:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 3990,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2574:21:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3991,
                        "nodeType": "ExpressionStatement",
                        "src": "2574:21:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3980,
                    "nodeType": "StructuredDocumentation",
                    "src": "2121:382:22",
                    "text": " @notice Renounce ownership of the contract.\n @dev Leaves the contract without owner. It will not be possible to call\n `onlyOwner` functions anymore. Can only be called by the current owner.\n NOTE: Renouncing ownership will leave the contract without an owner,\n thereby removing any functionality that is only available to the owner."
                  },
                  "functionSelector": "715018a6",
                  "id": 3993,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 3983,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 3982,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "2554:9:22"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2554:9:22"
                    }
                  ],
                  "name": "renounceOwnership",
                  "nameLocation": "2517:17:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3981,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2534:2:22"
                  },
                  "returnParameters": {
                    "id": 3984,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2564:0:22"
                  },
                  "scope": 4086,
                  "src": "2508:94:22",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 4019,
                    "nodeType": "Block",
                    "src": "2816:169:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4007,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4002,
                                "name": "_newOwner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3996,
                                "src": "2834:9:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4005,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2855:1:22",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 4004,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2847:7:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4003,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2847:7:22",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4006,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2847:10:22",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2834:23:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d61646472657373",
                              "id": 4008,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2859:39:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4",
                                "typeString": "literal_string \"Ownable/pendingOwner-not-zero-address\""
                              },
                              "value": "Ownable/pendingOwner-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4",
                                "typeString": "literal_string \"Ownable/pendingOwner-not-zero-address\""
                              }
                            ],
                            "id": 4001,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2826:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4009,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2826:73:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4010,
                        "nodeType": "ExpressionStatement",
                        "src": "2826:73:22"
                      },
                      {
                        "expression": {
                          "id": 4013,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4011,
                            "name": "_pendingOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3938,
                            "src": "2910:13:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4012,
                            "name": "_newOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3996,
                            "src": "2926:9:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "2910:25:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 4014,
                        "nodeType": "ExpressionStatement",
                        "src": "2910:25:22"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 4016,
                              "name": "_newOwner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3996,
                              "src": "2968:9:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 4015,
                            "name": "OwnershipOffered",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3943,
                            "src": "2951:16:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 4017,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2951:27:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4018,
                        "nodeType": "EmitStatement",
                        "src": "2946:32:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3994,
                    "nodeType": "StructuredDocumentation",
                    "src": "2608:138:22",
                    "text": " @notice Allows current owner to set the `_pendingOwner` address.\n @param _newOwner Address to transfer ownership to."
                  },
                  "functionSelector": "f2fde38b",
                  "id": 4020,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 3999,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 3998,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "2806:9:22"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2806:9:22"
                    }
                  ],
                  "name": "transferOwnership",
                  "nameLocation": "2760:17:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3997,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3996,
                        "mutability": "mutable",
                        "name": "_newOwner",
                        "nameLocation": "2786:9:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 4020,
                        "src": "2778:17:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3995,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2778:7:22",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2777:19:22"
                  },
                  "returnParameters": {
                    "id": 4000,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2816:0:22"
                  },
                  "scope": 4086,
                  "src": "2751:234:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 4037,
                    "nodeType": "Block",
                    "src": "3199:77:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4027,
                              "name": "_pendingOwner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3938,
                              "src": "3219:13:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 4026,
                            "name": "_setOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4058,
                            "src": "3209:9:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 4028,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3209:24:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4029,
                        "nodeType": "ExpressionStatement",
                        "src": "3209:24:22"
                      },
                      {
                        "expression": {
                          "id": 4035,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4030,
                            "name": "_pendingOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3938,
                            "src": "3243:13:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 4033,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3267:1:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                }
                              ],
                              "id": 4032,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "3259:7:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 4031,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "3259:7:22",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 4034,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3259:10:22",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "3243:26:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 4036,
                        "nodeType": "ExpressionStatement",
                        "src": "3243:26:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4021,
                    "nodeType": "StructuredDocumentation",
                    "src": "2991:151:22",
                    "text": " @notice Allows the `_pendingOwner` address to finalize the transfer.\n @dev This function is only callable by the `_pendingOwner`."
                  },
                  "functionSelector": "4e71e0c8",
                  "id": 4038,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 4024,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4023,
                        "name": "onlyPendingOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4085,
                        "src": "3182:16:22"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3182:16:22"
                    }
                  ],
                  "name": "claimOwnership",
                  "nameLocation": "3156:14:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4022,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3170:2:22"
                  },
                  "returnParameters": {
                    "id": 4025,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3199:0:22"
                  },
                  "scope": 4086,
                  "src": "3147:129:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 4057,
                    "nodeType": "Block",
                    "src": "3516:128:22",
                    "statements": [
                      {
                        "assignments": [
                          4045
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4045,
                            "mutability": "mutable",
                            "name": "_oldOwner",
                            "nameLocation": "3534:9:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 4057,
                            "src": "3526:17:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 4044,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "3526:7:22",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4047,
                        "initialValue": {
                          "id": 4046,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3936,
                          "src": "3546:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3526:26:22"
                      },
                      {
                        "expression": {
                          "id": 4050,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4048,
                            "name": "_owner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3936,
                            "src": "3562:6:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4049,
                            "name": "_newOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4041,
                            "src": "3571:9:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "3562:18:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 4051,
                        "nodeType": "ExpressionStatement",
                        "src": "3562:18:22"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 4053,
                              "name": "_oldOwner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4045,
                              "src": "3616:9:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4054,
                              "name": "_newOwner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4041,
                              "src": "3627:9:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 4052,
                            "name": "OwnershipTransferred",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3950,
                            "src": "3595:20:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 4055,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3595:42:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4056,
                        "nodeType": "EmitStatement",
                        "src": "3590:47:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4039,
                    "nodeType": "StructuredDocumentation",
                    "src": "3338:127:22",
                    "text": " @notice Internal function to set the `_owner` of the contract.\n @param _newOwner New `_owner` address."
                  },
                  "id": 4058,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setOwner",
                  "nameLocation": "3479:9:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4042,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4041,
                        "mutability": "mutable",
                        "name": "_newOwner",
                        "nameLocation": "3497:9:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 4058,
                        "src": "3489:17:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4040,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3489:7:22",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3488:19:22"
                  },
                  "returnParameters": {
                    "id": 4043,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3516:0:22"
                  },
                  "scope": 4086,
                  "src": "3470:174:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 4071,
                    "nodeType": "Block",
                    "src": "3809:86:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4066,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "id": 4062,
                                  "name": "owner",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3970,
                                  "src": "3827:5:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                    "typeString": "function () view returns (address)"
                                  }
                                },
                                "id": 4063,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3827:7:22",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 4064,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "3838:3:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 4065,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "3838:10:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "3827:21:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                              "id": 4067,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3850:26:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14",
                                "typeString": "literal_string \"Ownable/caller-not-owner\""
                              },
                              "value": "Ownable/caller-not-owner"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14",
                                "typeString": "literal_string \"Ownable/caller-not-owner\""
                              }
                            ],
                            "id": 4061,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3819:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4068,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3819:58:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4069,
                        "nodeType": "ExpressionStatement",
                        "src": "3819:58:22"
                      },
                      {
                        "id": 4070,
                        "nodeType": "PlaceholderStatement",
                        "src": "3887:1:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4059,
                    "nodeType": "StructuredDocumentation",
                    "src": "3706:77:22",
                    "text": " @dev Throws if called by any account other than the owner."
                  },
                  "id": 4072,
                  "name": "onlyOwner",
                  "nameLocation": "3797:9:22",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 4060,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3806:2:22"
                  },
                  "src": "3788:107:22",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4084,
                    "nodeType": "Block",
                    "src": "4018:99:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4079,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 4076,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "4036:3:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 4077,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "4036:10:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 4078,
                                "name": "_pendingOwner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3938,
                                "src": "4050:13:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "4036:27:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                              "id": 4080,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4065:33:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396",
                                "typeString": "literal_string \"Ownable/caller-not-pendingOwner\""
                              },
                              "value": "Ownable/caller-not-pendingOwner"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396",
                                "typeString": "literal_string \"Ownable/caller-not-pendingOwner\""
                              }
                            ],
                            "id": 4075,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4028:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4081,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4028:71:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4082,
                        "nodeType": "ExpressionStatement",
                        "src": "4028:71:22"
                      },
                      {
                        "id": 4083,
                        "nodeType": "PlaceholderStatement",
                        "src": "4109:1:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4073,
                    "nodeType": "StructuredDocumentation",
                    "src": "3901:84:22",
                    "text": " @dev Throws if called by any account other than the `pendingOwner`."
                  },
                  "id": 4085,
                  "name": "onlyPendingOwner",
                  "nameLocation": "3999:16:22",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 4074,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4015:2:22"
                  },
                  "src": "3990:127:22",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 4087,
              "src": "854:3265:22",
              "usedErrors": []
            }
          ],
          "src": "37:4083:22"
        },
        "id": 22
      },
      "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol": {
        "ast": {
          "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
          "exportedSymbols": {
            "RNGInterface": [
              4142
            ]
          },
          "id": 4143,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 4088,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:23"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 4089,
                "nodeType": "StructuredDocumentation",
                "src": "61:180:23",
                "text": " @title Random Number Generator Interface\n @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)"
              },
              "fullyImplemented": false,
              "id": 4142,
              "linearizedBaseContracts": [
                4142
              ],
              "name": "RNGInterface",
              "nameLocation": "252:12:23",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 4090,
                    "nodeType": "StructuredDocumentation",
                    "src": "269:251:23",
                    "text": " @notice Emitted when a new request for a random number has been submitted\n @param requestId The indexed ID of the request used to get the results of the RNG service\n @param sender The indexed address of the sender of the request"
                  },
                  "id": 4096,
                  "name": "RandomNumberRequested",
                  "nameLocation": "529:21:23",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 4095,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4092,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "566:9:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4096,
                        "src": "551:24:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4091,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "551:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4094,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "593:6:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4096,
                        "src": "577:22:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4093,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "577:7:23",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "550:50:23"
                  },
                  "src": "523:78:23"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 4097,
                    "nodeType": "StructuredDocumentation",
                    "src": "605:266:23",
                    "text": " @notice Emitted when an existing request for a random number has been completed\n @param requestId The indexed ID of the request used to get the results of the RNG service\n @param randomNumber The random number produced by the 3rd-party service"
                  },
                  "id": 4103,
                  "name": "RandomNumberCompleted",
                  "nameLocation": "880:21:23",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 4102,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4099,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "917:9:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4103,
                        "src": "902:24:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4098,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "902:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4101,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "randomNumber",
                        "nameLocation": "936:12:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4103,
                        "src": "928:20:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4100,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "928:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "901:48:23"
                  },
                  "src": "874:76:23"
                },
                {
                  "documentation": {
                    "id": 4104,
                    "nodeType": "StructuredDocumentation",
                    "src": "954:139:23",
                    "text": " @notice Gets the last request id used by the RNG service\n @return requestId The last request id used in the last request"
                  },
                  "functionSelector": "19c2b4c3",
                  "id": 4109,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRequestId",
                  "nameLocation": "1105:16:23",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4105,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1121:2:23"
                  },
                  "returnParameters": {
                    "id": 4108,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4107,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "1154:9:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4109,
                        "src": "1147:16:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4106,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1147:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1146:18:23"
                  },
                  "scope": 4142,
                  "src": "1096:69:23",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 4110,
                    "nodeType": "StructuredDocumentation",
                    "src": "1169:221:23",
                    "text": " @notice Gets the Fee for making a Request against an RNG service\n @return feeToken The address of the token that is used to pay fees\n @return requestFee The fee required to be paid to make a request"
                  },
                  "functionSelector": "0d37b537",
                  "id": 4117,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRequestFee",
                  "nameLocation": "1402:13:23",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4111,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1415:2:23"
                  },
                  "returnParameters": {
                    "id": 4116,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4113,
                        "mutability": "mutable",
                        "name": "feeToken",
                        "nameLocation": "1449:8:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4117,
                        "src": "1441:16:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4112,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1441:7:23",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4115,
                        "mutability": "mutable",
                        "name": "requestFee",
                        "nameLocation": "1467:10:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4117,
                        "src": "1459:18:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4114,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1459:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1440:38:23"
                  },
                  "scope": 4142,
                  "src": "1393:86:23",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 4118,
                    "nodeType": "StructuredDocumentation",
                    "src": "1483:574:23",
                    "text": " @notice Sends a request for a random number to the 3rd-party service\n @dev Some services will complete the request immediately, others may have a time-delay\n @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\n @return requestId The ID of the request used to get the results of the RNG service\n @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.\n The calling contract should \"lock\" all activity until the result is available via the `requestId`"
                  },
                  "functionSelector": "8678a7b2",
                  "id": 4125,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "requestRandomNumber",
                  "nameLocation": "2069:19:23",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4119,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2088:2:23"
                  },
                  "returnParameters": {
                    "id": 4124,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4121,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "2116:9:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4125,
                        "src": "2109:16:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4120,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2109:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4123,
                        "mutability": "mutable",
                        "name": "lockBlock",
                        "nameLocation": "2134:9:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4125,
                        "src": "2127:16:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4122,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2127:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2108:36:23"
                  },
                  "scope": 4142,
                  "src": "2060:85:23",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 4126,
                    "nodeType": "StructuredDocumentation",
                    "src": "2149:383:23",
                    "text": " @notice Checks if the request for randomness from the 3rd-party service has completed\n @dev For time-delayed requests, this function is used to check/confirm completion\n @param requestId The ID of the request used to get the results of the RNG service\n @return isCompleted True if the request has completed and a random number is available, false otherwise"
                  },
                  "functionSelector": "3a19b9bc",
                  "id": 4133,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRequestComplete",
                  "nameLocation": "2544:17:23",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4129,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4128,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "2569:9:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4133,
                        "src": "2562:16:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4127,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2562:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2561:18:23"
                  },
                  "returnParameters": {
                    "id": 4132,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4131,
                        "mutability": "mutable",
                        "name": "isCompleted",
                        "nameLocation": "2608:11:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4133,
                        "src": "2603:16:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 4130,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2603:4:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2602:18:23"
                  },
                  "scope": 4142,
                  "src": "2535:86:23",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 4134,
                    "nodeType": "StructuredDocumentation",
                    "src": "2625:207:23",
                    "text": " @notice Gets the random number produced by the 3rd-party service\n @param requestId The ID of the request used to get the results of the RNG service\n @return randomNum The random number"
                  },
                  "functionSelector": "9d2a5f98",
                  "id": 4141,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "randomNumber",
                  "nameLocation": "2844:12:23",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4137,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4136,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "2864:9:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4141,
                        "src": "2857:16:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4135,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2857:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2856:18:23"
                  },
                  "returnParameters": {
                    "id": 4140,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4139,
                        "mutability": "mutable",
                        "name": "randomNum",
                        "nameLocation": "2901:9:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4141,
                        "src": "2893:17:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4138,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2893:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2892:19:23"
                  },
                  "scope": 4142,
                  "src": "2835:77:23",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 4143,
              "src": "242:2672:23",
              "usedErrors": []
            }
          ],
          "src": "37:2878:23"
        },
        "id": 23
      },
      "@pooltogether/yield-source-interface/contracts/IYieldSource.sol": {
        "ast": {
          "absolutePath": "@pooltogether/yield-source-interface/contracts/IYieldSource.sol",
          "exportedSymbols": {
            "IYieldSource": [
              4176
            ]
          },
          "id": 4177,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 4144,
              "literals": [
                "solidity",
                ">=",
                "0.6",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:24:24"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 4145,
                "nodeType": "StructuredDocumentation",
                "src": "63:211:24",
                "text": "@title Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.\n @notice Prize Pools subclasses need to implement this interface so that yield can be generated."
              },
              "fullyImplemented": false,
              "id": 4176,
              "linearizedBaseContracts": [
                4176
              ],
              "name": "IYieldSource",
              "nameLocation": "284:12:24",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 4146,
                    "nodeType": "StructuredDocumentation",
                    "src": "303:107:24",
                    "text": "@notice Returns the ERC20 asset token used for deposits.\n @return The ERC20 asset token address."
                  },
                  "functionSelector": "c89039c5",
                  "id": 4151,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "depositToken",
                  "nameLocation": "424:12:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4147,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "436:2:24"
                  },
                  "returnParameters": {
                    "id": 4150,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4149,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4151,
                        "src": "462:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4148,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "462:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "461:9:24"
                  },
                  "scope": 4176,
                  "src": "415:56:24",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 4152,
                    "nodeType": "StructuredDocumentation",
                    "src": "477:154:24",
                    "text": "@notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n @return The underlying balance of asset tokens."
                  },
                  "functionSelector": "b99152d0",
                  "id": 4159,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOfToken",
                  "nameLocation": "645:14:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4155,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4154,
                        "mutability": "mutable",
                        "name": "addr",
                        "nameLocation": "668:4:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 4159,
                        "src": "660:12:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4153,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "660:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "659:14:24"
                  },
                  "returnParameters": {
                    "id": 4158,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4157,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4159,
                        "src": "692:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4156,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "692:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "691:9:24"
                  },
                  "scope": 4176,
                  "src": "636:65:24",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 4160,
                    "nodeType": "StructuredDocumentation",
                    "src": "707:296:24",
                    "text": "@notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\n @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\n @param to The user whose balance will receive the tokens"
                  },
                  "functionSelector": "87a6eeef",
                  "id": 4167,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supplyTokenTo",
                  "nameLocation": "1017:13:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4165,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4162,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1039:6:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 4167,
                        "src": "1031:14:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4161,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1031:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4164,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1055:2:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 4167,
                        "src": "1047:10:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4163,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1047:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1030:28:24"
                  },
                  "returnParameters": {
                    "id": 4166,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1067:0:24"
                  },
                  "scope": 4176,
                  "src": "1008:60:24",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 4168,
                    "nodeType": "StructuredDocumentation",
                    "src": "1074:234:24",
                    "text": "@notice Redeems tokens from the yield source.\n @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\n @return The actual amount of interst bearing tokens that were redeemed."
                  },
                  "functionSelector": "013054c2",
                  "id": 4175,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "redeemToken",
                  "nameLocation": "1322:11:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4171,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4170,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1342:6:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 4175,
                        "src": "1334:14:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4169,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1334:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1333:16:24"
                  },
                  "returnParameters": {
                    "id": 4174,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4173,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4175,
                        "src": "1368:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4172,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1368:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1367:9:24"
                  },
                  "scope": 4176,
                  "src": "1313:64:24",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 4177,
              "src": "274:1105:24",
              "usedErrors": []
            }
          ],
          "src": "37:1343:24"
        },
        "id": 24
      },
      "@pooltogether/yield-source-interface/contracts/test/ERC20.sol": {
        "ast": {
          "absolutePath": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol",
          "exportedSymbols": {
            "ERC20": [
              4734
            ]
          },
          "id": 4735,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 4178,
              "literals": [
                "solidity",
                ">=",
                "0.6",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:24:25"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 4179,
                "nodeType": "StructuredDocumentation",
                "src": "59:1199:25",
                "text": " NOTE: Copied from OpenZeppelin\n @dev Implementation of the {IERC20} interface.\n This implementation is agnostic to the way tokens are created. This means\n that a supply mechanism has to be added in a derived contract using {_mint}.\n For a generic mechanism see {ERC20PresetMinterPauser}.\n TIP: For a detailed writeup see our guide\n https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\n to implement supply mechanisms].\n We have followed general OpenZeppelin guidelines: functions revert instead\n of returning `false` on failure. This behavior is nonetheless conventional\n and does not conflict with the expectations of ERC20 applications.\n Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n This allows applications to reconstruct the allowance for all accounts just\n by listening to said events. Other implementations of the EIP may not emit\n these events, as it isn't required by the specification.\n Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n functions have been added to mitigate the well-known issues around setting\n allowances. See {IERC20-approve}."
              },
              "fullyImplemented": true,
              "id": 4734,
              "linearizedBaseContracts": [
                4734
              ],
              "name": "ERC20",
              "nameLocation": "1268:5:25",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 4183,
                  "mutability": "mutable",
                  "name": "_balances",
                  "nameLocation": "1316:9:25",
                  "nodeType": "VariableDeclaration",
                  "scope": 4734,
                  "src": "1280:45:25",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                    "typeString": "mapping(address => uint256)"
                  },
                  "typeName": {
                    "id": 4182,
                    "keyType": {
                      "id": 4180,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1288:7:25",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1280:27:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                      "typeString": "mapping(address => uint256)"
                    },
                    "valueType": {
                      "id": 4181,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "1299:7:25",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 4189,
                  "mutability": "mutable",
                  "name": "_allowances",
                  "nameLocation": "1388:11:25",
                  "nodeType": "VariableDeclaration",
                  "scope": 4734,
                  "src": "1332:67:25",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                    "typeString": "mapping(address => mapping(address => uint256))"
                  },
                  "typeName": {
                    "id": 4188,
                    "keyType": {
                      "id": 4184,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1340:7:25",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1332:47:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                      "typeString": "mapping(address => mapping(address => uint256))"
                    },
                    "valueType": {
                      "id": 4187,
                      "keyType": {
                        "id": 4185,
                        "name": "address",
                        "nodeType": "ElementaryTypeName",
                        "src": "1359:7:25",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        }
                      },
                      "nodeType": "Mapping",
                      "src": "1351:27:25",
                      "typeDescriptions": {
                        "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                        "typeString": "mapping(address => uint256)"
                      },
                      "valueType": {
                        "id": 4186,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1370:7:25",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 4191,
                  "mutability": "mutable",
                  "name": "_totalSupply",
                  "nameLocation": "1422:12:25",
                  "nodeType": "VariableDeclaration",
                  "scope": 4734,
                  "src": "1406:28:25",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 4190,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1406:7:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 4193,
                  "mutability": "mutable",
                  "name": "_name",
                  "nameLocation": "1456:5:25",
                  "nodeType": "VariableDeclaration",
                  "scope": 4734,
                  "src": "1441:20:25",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 4192,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1441:6:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 4195,
                  "mutability": "mutable",
                  "name": "_symbol",
                  "nameLocation": "1482:7:25",
                  "nodeType": "VariableDeclaration",
                  "scope": 4734,
                  "src": "1467:22:25",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 4194,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1467:6:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 4197,
                  "mutability": "mutable",
                  "name": "_decimals",
                  "nameLocation": "1509:9:25",
                  "nodeType": "VariableDeclaration",
                  "scope": 4734,
                  "src": "1495:23:25",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint8",
                    "typeString": "uint8"
                  },
                  "typeName": {
                    "id": 4196,
                    "name": "uint8",
                    "nodeType": "ElementaryTypeName",
                    "src": "1495:5:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 4198,
                    "nodeType": "StructuredDocumentation",
                    "src": "1525:158:25",
                    "text": " @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero."
                  },
                  "id": 4206,
                  "name": "Transfer",
                  "nameLocation": "1694:8:25",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 4205,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4200,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "1719:4:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4206,
                        "src": "1703:20:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4199,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1703:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4202,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1741:2:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4206,
                        "src": "1725:18:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4201,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1725:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4204,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1753:5:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4206,
                        "src": "1745:13:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4203,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1745:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1702:57:25"
                  },
                  "src": "1688:72:25"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 4207,
                    "nodeType": "StructuredDocumentation",
                    "src": "1766:148:25",
                    "text": " @dev Emitted when the allowance of a `spender` for an `owner` is set by\n a call to {approve}. `value` is the new allowance."
                  },
                  "id": 4215,
                  "name": "Approval",
                  "nameLocation": "1925:8:25",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 4214,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4209,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1950:5:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4215,
                        "src": "1934:21:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4208,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1934:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4211,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1973:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4215,
                        "src": "1957:23:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4210,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1957:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4213,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1990:5:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4215,
                        "src": "1982:13:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4212,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1982:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1933:63:25"
                  },
                  "src": "1919:78:25"
                },
                {
                  "body": {
                    "id": 4237,
                    "nodeType": "Block",
                    "src": "2409:88:25",
                    "statements": [
                      {
                        "expression": {
                          "id": 4227,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4225,
                            "name": "_name",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4193,
                            "src": "2419:5:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_storage",
                              "typeString": "string storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4226,
                            "name": "name_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4218,
                            "src": "2427:5:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "src": "2419:13:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "id": 4228,
                        "nodeType": "ExpressionStatement",
                        "src": "2419:13:25"
                      },
                      {
                        "expression": {
                          "id": 4231,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4229,
                            "name": "_symbol",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4195,
                            "src": "2442:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_storage",
                              "typeString": "string storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4230,
                            "name": "symbol_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4220,
                            "src": "2452:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "src": "2442:17:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "id": 4232,
                        "nodeType": "ExpressionStatement",
                        "src": "2442:17:25"
                      },
                      {
                        "expression": {
                          "id": 4235,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4233,
                            "name": "_decimals",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4197,
                            "src": "2469:9:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4234,
                            "name": "decimals_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4222,
                            "src": "2481:9:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "2469:21:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "id": 4236,
                        "nodeType": "ExpressionStatement",
                        "src": "2469:21:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4216,
                    "nodeType": "StructuredDocumentation",
                    "src": "2003:298:25",
                    "text": " @dev Sets the values for {name} and {symbol}.\n The default value of {decimals} is 18. To select a different value for\n {decimals} you should overload it.\n All two of these values are immutable: they can only be set once during\n construction."
                  },
                  "id": 4238,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4223,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4218,
                        "mutability": "mutable",
                        "name": "name_",
                        "nameLocation": "2341:5:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4238,
                        "src": "2327:19:25",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 4217,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2327:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4220,
                        "mutability": "mutable",
                        "name": "symbol_",
                        "nameLocation": "2370:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4238,
                        "src": "2356:21:25",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 4219,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2356:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4222,
                        "mutability": "mutable",
                        "name": "decimals_",
                        "nameLocation": "2393:9:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4238,
                        "src": "2387:15:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 4221,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "2387:5:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2317:91:25"
                  },
                  "returnParameters": {
                    "id": 4224,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2409:0:25"
                  },
                  "scope": 4734,
                  "src": "2306:191:25",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4246,
                    "nodeType": "Block",
                    "src": "2622:29:25",
                    "statements": [
                      {
                        "expression": {
                          "id": 4244,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4193,
                          "src": "2639:5:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "functionReturnParameters": 4243,
                        "id": 4245,
                        "nodeType": "Return",
                        "src": "2632:12:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4239,
                    "nodeType": "StructuredDocumentation",
                    "src": "2503:54:25",
                    "text": " @dev Returns the name of the token."
                  },
                  "functionSelector": "06fdde03",
                  "id": 4247,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "name",
                  "nameLocation": "2571:4:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4240,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2575:2:25"
                  },
                  "returnParameters": {
                    "id": 4243,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4242,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4247,
                        "src": "2607:13:25",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 4241,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2607:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2606:15:25"
                  },
                  "scope": 4734,
                  "src": "2562:89:25",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4255,
                    "nodeType": "Block",
                    "src": "2826:31:25",
                    "statements": [
                      {
                        "expression": {
                          "id": 4253,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4195,
                          "src": "2843:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "functionReturnParameters": 4252,
                        "id": 4254,
                        "nodeType": "Return",
                        "src": "2836:14:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4248,
                    "nodeType": "StructuredDocumentation",
                    "src": "2657:102:25",
                    "text": " @dev Returns the symbol of the token, usually a shorter version of the\n name."
                  },
                  "functionSelector": "95d89b41",
                  "id": 4256,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "symbol",
                  "nameLocation": "2773:6:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4249,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2779:2:25"
                  },
                  "returnParameters": {
                    "id": 4252,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4251,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4256,
                        "src": "2811:13:25",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 4250,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2811:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2810:15:25"
                  },
                  "scope": 4734,
                  "src": "2764:93:25",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4264,
                    "nodeType": "Block",
                    "src": "3537:33:25",
                    "statements": [
                      {
                        "expression": {
                          "id": 4262,
                          "name": "_decimals",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4197,
                          "src": "3554:9:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 4261,
                        "id": 4263,
                        "nodeType": "Return",
                        "src": "3547:16:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4257,
                    "nodeType": "StructuredDocumentation",
                    "src": "2863:613:25",
                    "text": " @dev Returns the number of decimals used to get its user representation.\n For example, if `decimals` equals `2`, a balance of `505` tokens should\n be displayed to a user as `5,05` (`505 / 10 ** 2`).\n Tokens usually opt for a value of 18, imitating the relationship between\n Ether and Wei. This is the value {ERC20} uses, unless this function is\n overridden;\n NOTE: This information is only used for _display_ purposes: it in\n no way affects any of the arithmetic of the contract, including\n {IERC20-balanceOf} and {IERC20-transfer}."
                  },
                  "functionSelector": "313ce567",
                  "id": 4265,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decimals",
                  "nameLocation": "3490:8:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4258,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3498:2:25"
                  },
                  "returnParameters": {
                    "id": 4261,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4260,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4265,
                        "src": "3530:5:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 4259,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3530:5:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3529:7:25"
                  },
                  "scope": 4734,
                  "src": "3481:89:25",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4273,
                    "nodeType": "Block",
                    "src": "3691:36:25",
                    "statements": [
                      {
                        "expression": {
                          "id": 4271,
                          "name": "_totalSupply",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4191,
                          "src": "3708:12:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 4270,
                        "id": 4272,
                        "nodeType": "Return",
                        "src": "3701:19:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4266,
                    "nodeType": "StructuredDocumentation",
                    "src": "3576:49:25",
                    "text": " @dev See {IERC20-totalSupply}."
                  },
                  "functionSelector": "18160ddd",
                  "id": 4274,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "totalSupply",
                  "nameLocation": "3639:11:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4267,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3650:2:25"
                  },
                  "returnParameters": {
                    "id": 4270,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4269,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4274,
                        "src": "3682:7:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4268,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3682:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3681:9:25"
                  },
                  "scope": 4734,
                  "src": "3630:97:25",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4286,
                    "nodeType": "Block",
                    "src": "3859:42:25",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 4282,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4183,
                            "src": "3876:9:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 4284,
                          "indexExpression": {
                            "id": 4283,
                            "name": "account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4277,
                            "src": "3886:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "3876:18:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 4281,
                        "id": 4285,
                        "nodeType": "Return",
                        "src": "3869:25:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4275,
                    "nodeType": "StructuredDocumentation",
                    "src": "3733:47:25",
                    "text": " @dev See {IERC20-balanceOf}."
                  },
                  "functionSelector": "70a08231",
                  "id": 4287,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOf",
                  "nameLocation": "3794:9:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4278,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4277,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "3812:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4287,
                        "src": "3804:15:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4276,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3804:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3803:17:25"
                  },
                  "returnParameters": {
                    "id": 4281,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4280,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4287,
                        "src": "3850:7:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4279,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3850:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3849:9:25"
                  },
                  "scope": 4734,
                  "src": "3785:116:25",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4306,
                    "nodeType": "Block",
                    "src": "4187:78:25",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4298,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "4207:3:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 4299,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "4207:10:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4300,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4290,
                              "src": "4219:9:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4301,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4292,
                              "src": "4230:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4297,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4534,
                            "src": "4197:9:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4302,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4197:40:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4303,
                        "nodeType": "ExpressionStatement",
                        "src": "4197:40:25"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 4304,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "4254:4:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 4296,
                        "id": 4305,
                        "nodeType": "Return",
                        "src": "4247:11:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4288,
                    "nodeType": "StructuredDocumentation",
                    "src": "3907:192:25",
                    "text": " @dev See {IERC20-transfer}.\n Requirements:\n - `recipient` cannot be the zero address.\n - the caller must have a balance of at least `amount`."
                  },
                  "functionSelector": "a9059cbb",
                  "id": 4307,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transfer",
                  "nameLocation": "4113:8:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4293,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4290,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "4130:9:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4307,
                        "src": "4122:17:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4289,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4122:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4292,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "4149:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4307,
                        "src": "4141:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4291,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4141:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4121:35:25"
                  },
                  "returnParameters": {
                    "id": 4296,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4295,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4307,
                        "src": "4181:4:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 4294,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4181:4:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4180:6:25"
                  },
                  "scope": 4734,
                  "src": "4104:161:25",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4323,
                    "nodeType": "Block",
                    "src": "4412:51:25",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 4317,
                              "name": "_allowances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4189,
                              "src": "4429:11:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(address => uint256))"
                              }
                            },
                            "id": 4319,
                            "indexExpression": {
                              "id": 4318,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4310,
                              "src": "4441:5:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "4429:18:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 4321,
                          "indexExpression": {
                            "id": 4320,
                            "name": "spender",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4312,
                            "src": "4448:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "4429:27:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 4316,
                        "id": 4322,
                        "nodeType": "Return",
                        "src": "4422:34:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4308,
                    "nodeType": "StructuredDocumentation",
                    "src": "4271:47:25",
                    "text": " @dev See {IERC20-allowance}."
                  },
                  "functionSelector": "dd62ed3e",
                  "id": 4324,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "allowance",
                  "nameLocation": "4332:9:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4313,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4310,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "4350:5:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4324,
                        "src": "4342:13:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4309,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4342:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4312,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "4365:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4324,
                        "src": "4357:15:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4311,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4357:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4341:32:25"
                  },
                  "returnParameters": {
                    "id": 4316,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4315,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4324,
                        "src": "4403:7:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4314,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4403:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4402:9:25"
                  },
                  "scope": 4734,
                  "src": "4323:140:25",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4343,
                    "nodeType": "Block",
                    "src": "4681:75:25",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4335,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "4700:3:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 4336,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "4700:10:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4337,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4327,
                              "src": "4712:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4338,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4329,
                              "src": "4721:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4334,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4707,
                            "src": "4691:8:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4339,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4691:37:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4340,
                        "nodeType": "ExpressionStatement",
                        "src": "4691:37:25"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 4341,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "4745:4:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 4333,
                        "id": 4342,
                        "nodeType": "Return",
                        "src": "4738:11:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4325,
                    "nodeType": "StructuredDocumentation",
                    "src": "4469:127:25",
                    "text": " @dev See {IERC20-approve}.\n Requirements:\n - `spender` cannot be the zero address."
                  },
                  "functionSelector": "095ea7b3",
                  "id": 4344,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "approve",
                  "nameLocation": "4610:7:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4330,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4327,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "4626:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4344,
                        "src": "4618:15:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4326,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4618:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4329,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "4643:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4344,
                        "src": "4635:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4328,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4635:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4617:33:25"
                  },
                  "returnParameters": {
                    "id": 4333,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4332,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4344,
                        "src": "4675:4:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 4331,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4675:4:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4674:6:25"
                  },
                  "scope": 4734,
                  "src": "4601:155:25",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4390,
                    "nodeType": "Block",
                    "src": "5356:332:25",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4357,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4347,
                              "src": "5376:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4358,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4349,
                              "src": "5384:9:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4359,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4351,
                              "src": "5395:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4356,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4534,
                            "src": "5366:9:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4360,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5366:36:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4361,
                        "nodeType": "ExpressionStatement",
                        "src": "5366:36:25"
                      },
                      {
                        "assignments": [
                          4363
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4363,
                            "mutability": "mutable",
                            "name": "currentAllowance",
                            "nameLocation": "5421:16:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 4390,
                            "src": "5413:24:25",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4362,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5413:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4370,
                        "initialValue": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 4364,
                              "name": "_allowances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4189,
                              "src": "5440:11:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(address => uint256))"
                              }
                            },
                            "id": 4366,
                            "indexExpression": {
                              "id": 4365,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4347,
                              "src": "5452:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "5440:19:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 4369,
                          "indexExpression": {
                            "expression": {
                              "id": 4367,
                              "name": "msg",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -15,
                              "src": "5460:3:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_message",
                                "typeString": "msg"
                              }
                            },
                            "id": 4368,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "sender",
                            "nodeType": "MemberAccess",
                            "src": "5460:10:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "5440:31:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5413:58:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 4374,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4372,
                                "name": "currentAllowance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4363,
                                "src": "5489:16:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 4373,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4351,
                                "src": "5509:6:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "5489:26:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365",
                              "id": 4375,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5517:42:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds allowance\""
                              },
                              "value": "ERC20: transfer amount exceeds allowance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds allowance\""
                              }
                            ],
                            "id": 4371,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5481:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4376,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5481:79:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4377,
                        "nodeType": "ExpressionStatement",
                        "src": "5481:79:25"
                      },
                      {
                        "id": 4387,
                        "nodeType": "UncheckedBlock",
                        "src": "5570:90:25",
                        "statements": [
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "id": 4379,
                                  "name": "sender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4347,
                                  "src": "5603:6:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "expression": {
                                    "id": 4380,
                                    "name": "msg",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -15,
                                    "src": "5611:3:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_message",
                                      "typeString": "msg"
                                    }
                                  },
                                  "id": 4381,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "sender",
                                  "nodeType": "MemberAccess",
                                  "src": "5611:10:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 4384,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 4382,
                                    "name": "currentAllowance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4363,
                                    "src": "5623:16:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "-",
                                  "rightExpression": {
                                    "id": 4383,
                                    "name": "amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4351,
                                    "src": "5642:6:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "5623:25:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 4378,
                                "name": "_approve",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4707,
                                "src": "5594:8:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                  "typeString": "function (address,address,uint256)"
                                }
                              },
                              "id": 4385,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5594:55:25",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 4386,
                            "nodeType": "ExpressionStatement",
                            "src": "5594:55:25"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 4388,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "5677:4:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 4355,
                        "id": 4389,
                        "nodeType": "Return",
                        "src": "5670:11:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4345,
                    "nodeType": "StructuredDocumentation",
                    "src": "4762:456:25",
                    "text": " @dev See {IERC20-transferFrom}.\n Emits an {Approval} event indicating the updated allowance. This is not\n required by the EIP. See the note at the beginning of {ERC20}.\n Requirements:\n - `sender` and `recipient` cannot be the zero address.\n - `sender` must have a balance of at least `amount`.\n - the caller must have allowance for ``sender``'s tokens of at least\n `amount`."
                  },
                  "functionSelector": "23b872dd",
                  "id": 4391,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferFrom",
                  "nameLocation": "5232:12:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4352,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4347,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "5262:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4391,
                        "src": "5254:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4346,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5254:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4349,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "5286:9:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4391,
                        "src": "5278:17:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4348,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5278:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4351,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "5313:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4391,
                        "src": "5305:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4350,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5305:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5244:81:25"
                  },
                  "returnParameters": {
                    "id": 4355,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4354,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4391,
                        "src": "5350:4:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 4353,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5350:4:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5349:6:25"
                  },
                  "scope": 4734,
                  "src": "5223:465:25",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4417,
                    "nodeType": "Block",
                    "src": "6177:114:25",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4402,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "6196:3:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 4403,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "6196:10:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4404,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4394,
                              "src": "6208:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 4412,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "baseExpression": {
                                  "baseExpression": {
                                    "id": 4405,
                                    "name": "_allowances",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4189,
                                    "src": "6217:11:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                      "typeString": "mapping(address => mapping(address => uint256))"
                                    }
                                  },
                                  "id": 4408,
                                  "indexExpression": {
                                    "expression": {
                                      "id": 4406,
                                      "name": "msg",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -15,
                                      "src": "6229:3:25",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_message",
                                        "typeString": "msg"
                                      }
                                    },
                                    "id": 4407,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "sender",
                                    "nodeType": "MemberAccess",
                                    "src": "6229:10:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "6217:23:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                    "typeString": "mapping(address => uint256)"
                                  }
                                },
                                "id": 4410,
                                "indexExpression": {
                                  "id": 4409,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4394,
                                  "src": "6241:7:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "6217:32:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "id": 4411,
                                "name": "addedValue",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4396,
                                "src": "6252:10:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "6217:45:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4401,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4707,
                            "src": "6187:8:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4413,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6187:76:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4414,
                        "nodeType": "ExpressionStatement",
                        "src": "6187:76:25"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 4415,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "6280:4:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 4400,
                        "id": 4416,
                        "nodeType": "Return",
                        "src": "6273:11:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4392,
                    "nodeType": "StructuredDocumentation",
                    "src": "5694:384:25",
                    "text": " @dev Atomically increases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address."
                  },
                  "functionSelector": "39509351",
                  "id": 4418,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "increaseAllowance",
                  "nameLocation": "6092:17:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4397,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4394,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "6118:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4418,
                        "src": "6110:15:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4393,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6110:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4396,
                        "mutability": "mutable",
                        "name": "addedValue",
                        "nameLocation": "6135:10:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4418,
                        "src": "6127:18:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4395,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6127:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6109:37:25"
                  },
                  "returnParameters": {
                    "id": 4400,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4399,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4418,
                        "src": "6171:4:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 4398,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "6171:4:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6170:6:25"
                  },
                  "scope": 4734,
                  "src": "6083:208:25",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4456,
                    "nodeType": "Block",
                    "src": "6905:302:25",
                    "statements": [
                      {
                        "assignments": [
                          4429
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4429,
                            "mutability": "mutable",
                            "name": "currentAllowance",
                            "nameLocation": "6923:16:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 4456,
                            "src": "6915:24:25",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4428,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "6915:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4436,
                        "initialValue": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 4430,
                              "name": "_allowances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4189,
                              "src": "6942:11:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(address => uint256))"
                              }
                            },
                            "id": 4433,
                            "indexExpression": {
                              "expression": {
                                "id": 4431,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "6954:3:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 4432,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "6954:10:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "6942:23:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 4435,
                          "indexExpression": {
                            "id": 4434,
                            "name": "spender",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4421,
                            "src": "6966:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "6942:32:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6915:59:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 4440,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4438,
                                "name": "currentAllowance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4429,
                                "src": "6992:16:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 4439,
                                "name": "subtractedValue",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4423,
                                "src": "7012:15:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "6992:35:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f",
                              "id": 4441,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7029:39:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
                                "typeString": "literal_string \"ERC20: decreased allowance below zero\""
                              },
                              "value": "ERC20: decreased allowance below zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
                                "typeString": "literal_string \"ERC20: decreased allowance below zero\""
                              }
                            ],
                            "id": 4437,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6984:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4442,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6984:85:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4443,
                        "nodeType": "ExpressionStatement",
                        "src": "6984:85:25"
                      },
                      {
                        "id": 4453,
                        "nodeType": "UncheckedBlock",
                        "src": "7079:100:25",
                        "statements": [
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 4445,
                                    "name": "msg",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -15,
                                    "src": "7112:3:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_message",
                                      "typeString": "msg"
                                    }
                                  },
                                  "id": 4446,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "sender",
                                  "nodeType": "MemberAccess",
                                  "src": "7112:10:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 4447,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4421,
                                  "src": "7124:7:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 4450,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 4448,
                                    "name": "currentAllowance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4429,
                                    "src": "7133:16:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "-",
                                  "rightExpression": {
                                    "id": 4449,
                                    "name": "subtractedValue",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4423,
                                    "src": "7152:15:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "7133:34:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 4444,
                                "name": "_approve",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4707,
                                "src": "7103:8:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                  "typeString": "function (address,address,uint256)"
                                }
                              },
                              "id": 4451,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "7103:65:25",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 4452,
                            "nodeType": "ExpressionStatement",
                            "src": "7103:65:25"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 4454,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "7196:4:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 4427,
                        "id": 4455,
                        "nodeType": "Return",
                        "src": "7189:11:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4419,
                    "nodeType": "StructuredDocumentation",
                    "src": "6297:476:25",
                    "text": " @dev Atomically decreases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address.\n - `spender` must have allowance for the caller of at least\n `subtractedValue`."
                  },
                  "functionSelector": "a457c2d7",
                  "id": 4457,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decreaseAllowance",
                  "nameLocation": "6787:17:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4424,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4421,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "6813:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4457,
                        "src": "6805:15:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4420,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6805:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4423,
                        "mutability": "mutable",
                        "name": "subtractedValue",
                        "nameLocation": "6830:15:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4457,
                        "src": "6822:23:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4422,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6822:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6804:42:25"
                  },
                  "returnParameters": {
                    "id": 4427,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4426,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4457,
                        "src": "6895:4:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 4425,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "6895:4:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6894:6:25"
                  },
                  "scope": 4734,
                  "src": "6778:429:25",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4533,
                    "nodeType": "Block",
                    "src": "7798:596:25",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4473,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4468,
                                "name": "sender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4460,
                                "src": "7816:6:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4471,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "7834:1:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 4470,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "7826:7:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4469,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7826:7:25",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4472,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7826:10:25",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "7816:20:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373",
                              "id": 4474,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7838:39:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
                                "typeString": "literal_string \"ERC20: transfer from the zero address\""
                              },
                              "value": "ERC20: transfer from the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
                                "typeString": "literal_string \"ERC20: transfer from the zero address\""
                              }
                            ],
                            "id": 4467,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7808:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4475,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7808:70:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4476,
                        "nodeType": "ExpressionStatement",
                        "src": "7808:70:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4483,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4478,
                                "name": "recipient",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4462,
                                "src": "7896:9:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4481,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "7917:1:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 4480,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "7909:7:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4479,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7909:7:25",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4482,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7909:10:25",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "7896:23:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472657373",
                              "id": 4484,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7921:37:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
                                "typeString": "literal_string \"ERC20: transfer to the zero address\""
                              },
                              "value": "ERC20: transfer to the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
                                "typeString": "literal_string \"ERC20: transfer to the zero address\""
                              }
                            ],
                            "id": 4477,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7888:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4485,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7888:71:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4486,
                        "nodeType": "ExpressionStatement",
                        "src": "7888:71:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4488,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4460,
                              "src": "7991:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4489,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4462,
                              "src": "7999:9:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4490,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4464,
                              "src": "8010:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4487,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4718,
                            "src": "7970:20:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4491,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7970:47:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4492,
                        "nodeType": "ExpressionStatement",
                        "src": "7970:47:25"
                      },
                      {
                        "assignments": [
                          4494
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4494,
                            "mutability": "mutable",
                            "name": "senderBalance",
                            "nameLocation": "8036:13:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 4533,
                            "src": "8028:21:25",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4493,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8028:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4498,
                        "initialValue": {
                          "baseExpression": {
                            "id": 4495,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4183,
                            "src": "8052:9:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 4497,
                          "indexExpression": {
                            "id": 4496,
                            "name": "sender",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4460,
                            "src": "8062:6:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "8052:17:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8028:41:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 4502,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4500,
                                "name": "senderBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4494,
                                "src": "8087:13:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 4501,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4464,
                                "src": "8104:6:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "8087:23:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365",
                              "id": 4503,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8112:40:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds balance\""
                              },
                              "value": "ERC20: transfer amount exceeds balance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds balance\""
                              }
                            ],
                            "id": 4499,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8079:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4504,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8079:74:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4505,
                        "nodeType": "ExpressionStatement",
                        "src": "8079:74:25"
                      },
                      {
                        "id": 4514,
                        "nodeType": "UncheckedBlock",
                        "src": "8163:77:25",
                        "statements": [
                          {
                            "expression": {
                              "id": 4512,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "baseExpression": {
                                  "id": 4506,
                                  "name": "_balances",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4183,
                                  "src": "8187:9:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                    "typeString": "mapping(address => uint256)"
                                  }
                                },
                                "id": 4508,
                                "indexExpression": {
                                  "id": 4507,
                                  "name": "sender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4460,
                                  "src": "8197:6:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "nodeType": "IndexAccess",
                                "src": "8187:17:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 4511,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 4509,
                                  "name": "senderBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4494,
                                  "src": "8207:13:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 4510,
                                  "name": "amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4464,
                                  "src": "8223:6:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "8207:22:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "8187:42:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 4513,
                            "nodeType": "ExpressionStatement",
                            "src": "8187:42:25"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "id": 4519,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 4515,
                              "name": "_balances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4183,
                              "src": "8249:9:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 4517,
                            "indexExpression": {
                              "id": 4516,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4462,
                              "src": "8259:9:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "8249:20:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 4518,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4464,
                            "src": "8273:6:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8249:30:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 4520,
                        "nodeType": "ExpressionStatement",
                        "src": "8249:30:25"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 4522,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4460,
                              "src": "8304:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4523,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4462,
                              "src": "8312:9:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4524,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4464,
                              "src": "8323:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4521,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4206,
                            "src": "8295:8:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4525,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8295:35:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4526,
                        "nodeType": "EmitStatement",
                        "src": "8290:40:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4528,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4460,
                              "src": "8361:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4529,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4462,
                              "src": "8369:9:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4530,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4464,
                              "src": "8380:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4527,
                            "name": "_afterTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4729,
                            "src": "8341:19:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4531,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8341:46:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4532,
                        "nodeType": "ExpressionStatement",
                        "src": "8341:46:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4458,
                    "nodeType": "StructuredDocumentation",
                    "src": "7213:463:25",
                    "text": " @dev Moves `amount` of tokens from `sender` to `recipient`.\n This internal function is equivalent to {transfer}, and can be used to\n e.g. implement automatic token fees, slashing mechanisms, etc.\n Emits a {Transfer} event.\n Requirements:\n - `sender` cannot be the zero address.\n - `recipient` cannot be the zero address.\n - `sender` must have a balance of at least `amount`."
                  },
                  "id": 4534,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_transfer",
                  "nameLocation": "7690:9:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4465,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4460,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "7717:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4534,
                        "src": "7709:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4459,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7709:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4462,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "7741:9:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4534,
                        "src": "7733:17:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4461,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7733:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4464,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "7768:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4534,
                        "src": "7760:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4463,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7760:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7699:81:25"
                  },
                  "returnParameters": {
                    "id": 4466,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7798:0:25"
                  },
                  "scope": 4734,
                  "src": "7681:713:25",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4589,
                    "nodeType": "Block",
                    "src": "8735:324:25",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4548,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4543,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4537,
                                "src": "8753:7:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4546,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "8772:1:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 4545,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "8764:7:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4544,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "8764:7:25",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4547,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "8764:10:25",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "8753:21:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                              "id": 4549,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8776:33:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
                                "typeString": "literal_string \"ERC20: mint to the zero address\""
                              },
                              "value": "ERC20: mint to the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
                                "typeString": "literal_string \"ERC20: mint to the zero address\""
                              }
                            ],
                            "id": 4542,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8745:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4550,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8745:65:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4551,
                        "nodeType": "ExpressionStatement",
                        "src": "8745:65:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 4555,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8850:1:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 4554,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8842:7:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4553,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8842:7:25",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4556,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8842:10:25",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4557,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4537,
                              "src": "8854:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4558,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4539,
                              "src": "8863:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4552,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4718,
                            "src": "8821:20:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4559,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8821:49:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4560,
                        "nodeType": "ExpressionStatement",
                        "src": "8821:49:25"
                      },
                      {
                        "expression": {
                          "id": 4563,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4561,
                            "name": "_totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4191,
                            "src": "8881:12:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 4562,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4539,
                            "src": "8897:6:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8881:22:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 4564,
                        "nodeType": "ExpressionStatement",
                        "src": "8881:22:25"
                      },
                      {
                        "expression": {
                          "id": 4569,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 4565,
                              "name": "_balances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4183,
                              "src": "8913:9:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 4567,
                            "indexExpression": {
                              "id": 4566,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4537,
                              "src": "8923:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "8913:18:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 4568,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4539,
                            "src": "8935:6:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8913:28:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 4570,
                        "nodeType": "ExpressionStatement",
                        "src": "8913:28:25"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 4574,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8973:1:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 4573,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8965:7:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4572,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8965:7:25",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4575,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8965:10:25",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4576,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4537,
                              "src": "8977:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4577,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4539,
                              "src": "8986:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4571,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4206,
                            "src": "8956:8:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4578,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8956:37:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4579,
                        "nodeType": "EmitStatement",
                        "src": "8951:42:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 4583,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9032:1:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 4582,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9024:7:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4581,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9024:7:25",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4584,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9024:10:25",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4585,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4537,
                              "src": "9036:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4586,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4539,
                              "src": "9045:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4580,
                            "name": "_afterTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4729,
                            "src": "9004:19:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4587,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9004:48:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4588,
                        "nodeType": "ExpressionStatement",
                        "src": "9004:48:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4535,
                    "nodeType": "StructuredDocumentation",
                    "src": "8400:265:25",
                    "text": "@dev Creates `amount` tokens and assigns them to `account`, increasing\n the total supply.\n Emits a {Transfer} event with `from` set to the zero address.\n Requirements:\n - `account` cannot be the zero address."
                  },
                  "id": 4590,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_mint",
                  "nameLocation": "8679:5:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4540,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4537,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "8693:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4590,
                        "src": "8685:15:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4536,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8685:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4539,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "8710:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4590,
                        "src": "8702:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4538,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8702:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8684:33:25"
                  },
                  "returnParameters": {
                    "id": 4541,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8735:0:25"
                  },
                  "scope": 4734,
                  "src": "8670:389:25",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4661,
                    "nodeType": "Block",
                    "src": "9444:511:25",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4604,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4599,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4593,
                                "src": "9462:7:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4602,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9481:1:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 4601,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9473:7:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4600,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9473:7:25",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4603,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9473:10:25",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "9462:21:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f2061646472657373",
                              "id": 4605,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9485:35:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
                                "typeString": "literal_string \"ERC20: burn from the zero address\""
                              },
                              "value": "ERC20: burn from the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
                                "typeString": "literal_string \"ERC20: burn from the zero address\""
                              }
                            ],
                            "id": 4598,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9454:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4606,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9454:67:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4607,
                        "nodeType": "ExpressionStatement",
                        "src": "9454:67:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4609,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4593,
                              "src": "9553:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 4612,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9570:1:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 4611,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9562:7:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4610,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9562:7:25",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4613,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9562:10:25",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4614,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4595,
                              "src": "9574:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4608,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4718,
                            "src": "9532:20:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4615,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9532:49:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4616,
                        "nodeType": "ExpressionStatement",
                        "src": "9532:49:25"
                      },
                      {
                        "assignments": [
                          4618
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4618,
                            "mutability": "mutable",
                            "name": "accountBalance",
                            "nameLocation": "9600:14:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 4661,
                            "src": "9592:22:25",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4617,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "9592:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4622,
                        "initialValue": {
                          "baseExpression": {
                            "id": 4619,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4183,
                            "src": "9617:9:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 4621,
                          "indexExpression": {
                            "id": 4620,
                            "name": "account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4593,
                            "src": "9627:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "9617:18:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9592:43:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 4626,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4624,
                                "name": "accountBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4618,
                                "src": "9653:14:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 4625,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4595,
                                "src": "9671:6:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "9653:24:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365",
                              "id": 4627,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9679:36:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
                                "typeString": "literal_string \"ERC20: burn amount exceeds balance\""
                              },
                              "value": "ERC20: burn amount exceeds balance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
                                "typeString": "literal_string \"ERC20: burn amount exceeds balance\""
                              }
                            ],
                            "id": 4623,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9645:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4628,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9645:71:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4629,
                        "nodeType": "ExpressionStatement",
                        "src": "9645:71:25"
                      },
                      {
                        "id": 4638,
                        "nodeType": "UncheckedBlock",
                        "src": "9726:79:25",
                        "statements": [
                          {
                            "expression": {
                              "id": 4636,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "baseExpression": {
                                  "id": 4630,
                                  "name": "_balances",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4183,
                                  "src": "9750:9:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                    "typeString": "mapping(address => uint256)"
                                  }
                                },
                                "id": 4632,
                                "indexExpression": {
                                  "id": 4631,
                                  "name": "account",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4593,
                                  "src": "9760:7:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "nodeType": "IndexAccess",
                                "src": "9750:18:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 4635,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 4633,
                                  "name": "accountBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4618,
                                  "src": "9771:14:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 4634,
                                  "name": "amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4595,
                                  "src": "9788:6:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "9771:23:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "9750:44:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 4637,
                            "nodeType": "ExpressionStatement",
                            "src": "9750:44:25"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "id": 4641,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4639,
                            "name": "_totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4191,
                            "src": "9814:12:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "-=",
                          "rightHandSide": {
                            "id": 4640,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4595,
                            "src": "9830:6:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "9814:22:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 4642,
                        "nodeType": "ExpressionStatement",
                        "src": "9814:22:25"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 4644,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4593,
                              "src": "9861:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 4647,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9878:1:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 4646,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9870:7:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4645,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9870:7:25",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4648,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9870:10:25",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4649,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4595,
                              "src": "9882:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4643,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4206,
                            "src": "9852:8:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4650,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9852:37:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4651,
                        "nodeType": "EmitStatement",
                        "src": "9847:42:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4653,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4593,
                              "src": "9920:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 4656,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9937:1:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 4655,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9929:7:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4654,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9929:7:25",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4657,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9929:10:25",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4658,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4595,
                              "src": "9941:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4652,
                            "name": "_afterTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4729,
                            "src": "9900:19:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4659,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9900:48:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4660,
                        "nodeType": "ExpressionStatement",
                        "src": "9900:48:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4591,
                    "nodeType": "StructuredDocumentation",
                    "src": "9065:309:25",
                    "text": " @dev Destroys `amount` tokens from `account`, reducing the\n total supply.\n Emits a {Transfer} event with `to` set to the zero address.\n Requirements:\n - `account` cannot be the zero address.\n - `account` must have at least `amount` tokens."
                  },
                  "id": 4662,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_burn",
                  "nameLocation": "9388:5:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4596,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4593,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "9402:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4662,
                        "src": "9394:15:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4592,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9394:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4595,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "9419:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4662,
                        "src": "9411:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4594,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9411:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9393:33:25"
                  },
                  "returnParameters": {
                    "id": 4597,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9444:0:25"
                  },
                  "scope": 4734,
                  "src": "9379:576:25",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4706,
                    "nodeType": "Block",
                    "src": "10491:257:25",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4678,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4673,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4665,
                                "src": "10509:5:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4676,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "10526:1:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 4675,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10518:7:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4674,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10518:7:25",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4677,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10518:10:25",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "10509:19:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373",
                              "id": 4679,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10530:38:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
                                "typeString": "literal_string \"ERC20: approve from the zero address\""
                              },
                              "value": "ERC20: approve from the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
                                "typeString": "literal_string \"ERC20: approve from the zero address\""
                              }
                            ],
                            "id": 4672,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10501:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4680,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10501:68:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4681,
                        "nodeType": "ExpressionStatement",
                        "src": "10501:68:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4688,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4683,
                                "name": "spender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4667,
                                "src": "10587:7:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4686,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "10606:1:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 4685,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10598:7:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4684,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10598:7:25",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4687,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10598:10:25",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "10587:21:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a20617070726f766520746f20746865207a65726f2061646472657373",
                              "id": 4689,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10610:36:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
                                "typeString": "literal_string \"ERC20: approve to the zero address\""
                              },
                              "value": "ERC20: approve to the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
                                "typeString": "literal_string \"ERC20: approve to the zero address\""
                              }
                            ],
                            "id": 4682,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10579:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4690,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10579:68:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4691,
                        "nodeType": "ExpressionStatement",
                        "src": "10579:68:25"
                      },
                      {
                        "expression": {
                          "id": 4698,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "baseExpression": {
                                "id": 4692,
                                "name": "_allowances",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4189,
                                "src": "10658:11:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                  "typeString": "mapping(address => mapping(address => uint256))"
                                }
                              },
                              "id": 4695,
                              "indexExpression": {
                                "id": 4693,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4665,
                                "src": "10670:5:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "10658:18:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 4696,
                            "indexExpression": {
                              "id": 4694,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4667,
                              "src": "10677:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "10658:27:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4697,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4669,
                            "src": "10688:6:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "10658:36:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 4699,
                        "nodeType": "ExpressionStatement",
                        "src": "10658:36:25"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 4701,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4665,
                              "src": "10718:5:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4702,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4667,
                              "src": "10725:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4703,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4669,
                              "src": "10734:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4700,
                            "name": "Approval",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4215,
                            "src": "10709:8:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4704,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10709:32:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4705,
                        "nodeType": "EmitStatement",
                        "src": "10704:37:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4663,
                    "nodeType": "StructuredDocumentation",
                    "src": "9961:412:25",
                    "text": " @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n This internal function is equivalent to `approve`, and can be used to\n e.g. set automatic allowances for certain subsystems, etc.\n Emits an {Approval} event.\n Requirements:\n - `owner` cannot be the zero address.\n - `spender` cannot be the zero address."
                  },
                  "id": 4707,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_approve",
                  "nameLocation": "10387:8:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4670,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4665,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "10413:5:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4707,
                        "src": "10405:13:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4664,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10405:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4667,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "10436:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4707,
                        "src": "10428:15:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4666,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10428:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4669,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "10461:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4707,
                        "src": "10453:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4668,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10453:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10395:78:25"
                  },
                  "returnParameters": {
                    "id": 4671,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10491:0:25"
                  },
                  "scope": 4734,
                  "src": "10378:370:25",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4717,
                    "nodeType": "Block",
                    "src": "11451:2:25",
                    "statements": []
                  },
                  "documentation": {
                    "id": 4708,
                    "nodeType": "StructuredDocumentation",
                    "src": "10754:573:25",
                    "text": " @dev Hook that is called before any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n will be transferred to `to`.\n - when `from` is zero, `amount` tokens will be minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."
                  },
                  "id": 4718,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_beforeTokenTransfer",
                  "nameLocation": "11341:20:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4715,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4710,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "11379:4:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4718,
                        "src": "11371:12:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4709,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11371:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4712,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "11401:2:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4718,
                        "src": "11393:10:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4711,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11393:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4714,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "11421:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4718,
                        "src": "11413:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4713,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11413:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11361:72:25"
                  },
                  "returnParameters": {
                    "id": 4716,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11451:0:25"
                  },
                  "scope": 4734,
                  "src": "11332:121:25",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4728,
                    "nodeType": "Block",
                    "src": "12159:2:25",
                    "statements": []
                  },
                  "documentation": {
                    "id": 4719,
                    "nodeType": "StructuredDocumentation",
                    "src": "11459:577:25",
                    "text": " @dev Hook that is called after any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n has been transferred to `to`.\n - when `from` is zero, `amount` tokens have been minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."
                  },
                  "id": 4729,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_afterTokenTransfer",
                  "nameLocation": "12050:19:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4726,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4721,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "12087:4:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4729,
                        "src": "12079:12:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4720,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "12079:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4723,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "12109:2:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4729,
                        "src": "12101:10:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4722,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "12101:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4725,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "12129:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 4729,
                        "src": "12121:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4724,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12121:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12069:72:25"
                  },
                  "returnParameters": {
                    "id": 4727,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "12159:0:25"
                  },
                  "scope": 4734,
                  "src": "12041:120:25",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 4733,
                  "mutability": "mutable",
                  "name": "__gap",
                  "nameLocation": "12187:5:25",
                  "nodeType": "VariableDeclaration",
                  "scope": 4734,
                  "src": "12167:25:25",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_uint256_$45_storage",
                    "typeString": "uint256[45]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 4730,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "12167:7:25",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "id": 4732,
                    "length": {
                      "hexValue": "3435",
                      "id": 4731,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "kind": "number",
                      "lValueRequested": false,
                      "nodeType": "Literal",
                      "src": "12175:2:25",
                      "typeDescriptions": {
                        "typeIdentifier": "t_rational_45_by_1",
                        "typeString": "int_const 45"
                      },
                      "value": "45"
                    },
                    "nodeType": "ArrayTypeName",
                    "src": "12167:11:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_uint256_$45_storage_ptr",
                      "typeString": "uint256[45]"
                    }
                  },
                  "visibility": "private"
                }
              ],
              "scope": 4735,
              "src": "1259:10936:25",
              "usedErrors": []
            }
          ],
          "src": "33:12163:25"
        },
        "id": 25
      },
      "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol": {
        "ast": {
          "absolutePath": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol",
          "exportedSymbols": {
            "ERC20": [
              4734
            ],
            "ERC20Mintable": [
              4807
            ]
          },
          "id": 4808,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 4736,
              "literals": [
                "solidity",
                ">=",
                "0.6",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:24:26"
            },
            {
              "absolutePath": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol",
              "file": "./ERC20.sol",
              "id": 4737,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4808,
              "sourceUnit": 4735,
              "src": "63:21:26",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 4739,
                    "name": "ERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 4734,
                    "src": "342:5:26"
                  },
                  "id": 4740,
                  "nodeType": "InheritanceSpecifier",
                  "src": "342:5:26"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 4738,
                "nodeType": "StructuredDocumentation",
                "src": "86:229:26",
                "text": " @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\n which have permission to mint (create) new tokens as they see fit.\n At construction, the deployer of the contract is the only minter."
              },
              "fullyImplemented": true,
              "id": 4807,
              "linearizedBaseContracts": [
                4807,
                4734
              ],
              "name": "ERC20Mintable",
              "nameLocation": "325:13:26",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 4754,
                    "nodeType": "Block",
                    "src": "490:2:26",
                    "statements": []
                  },
                  "id": 4755,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 4749,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4742,
                          "src": "463:5:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 4750,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4744,
                          "src": "470:7:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 4751,
                          "name": "_decimals",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4746,
                          "src": "479:9:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        }
                      ],
                      "id": 4752,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 4748,
                        "name": "ERC20",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4734,
                        "src": "457:5:26"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "457:32:26"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4747,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4742,
                        "mutability": "mutable",
                        "name": "_name",
                        "nameLocation": "389:5:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 4755,
                        "src": "375:19:26",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 4741,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "375:6:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4744,
                        "mutability": "mutable",
                        "name": "_symbol",
                        "nameLocation": "418:7:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 4755,
                        "src": "404:21:26",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 4743,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "404:6:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4746,
                        "mutability": "mutable",
                        "name": "_decimals",
                        "nameLocation": "441:9:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 4755,
                        "src": "435:15:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 4745,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "435:5:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "365:91:26"
                  },
                  "returnParameters": {
                    "id": 4753,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "490:0:26"
                  },
                  "scope": 4807,
                  "src": "354:138:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4772,
                    "nodeType": "Block",
                    "src": "697:60:26",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4766,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4758,
                              "src": "713:7:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4767,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4760,
                              "src": "722:6:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4765,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4590,
                            "src": "707:5:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 4768,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "707:22:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4769,
                        "nodeType": "ExpressionStatement",
                        "src": "707:22:26"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 4770,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "746:4:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 4764,
                        "id": 4771,
                        "nodeType": "Return",
                        "src": "739:11:26"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4756,
                    "nodeType": "StructuredDocumentation",
                    "src": "498:125:26",
                    "text": " @dev See {ERC20-_mint}.\n Requirements:\n - the caller must have the {MinterRole}."
                  },
                  "functionSelector": "40c10f19",
                  "id": 4773,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mint",
                  "nameLocation": "637:4:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4761,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4758,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "650:7:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 4773,
                        "src": "642:15:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4757,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "642:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4760,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "667:6:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 4773,
                        "src": "659:14:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4759,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "659:7:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "641:33:26"
                  },
                  "returnParameters": {
                    "id": 4764,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4763,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4773,
                        "src": "691:4:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 4762,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "691:4:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "690:6:26"
                  },
                  "scope": 4807,
                  "src": "628:129:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4789,
                    "nodeType": "Block",
                    "src": "832:60:26",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4783,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4775,
                              "src": "848:7:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4784,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4777,
                              "src": "857:6:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4782,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4662,
                            "src": "842:5:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 4785,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "842:22:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4786,
                        "nodeType": "ExpressionStatement",
                        "src": "842:22:26"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 4787,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "881:4:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 4781,
                        "id": 4788,
                        "nodeType": "Return",
                        "src": "874:11:26"
                      }
                    ]
                  },
                  "functionSelector": "9dc29fac",
                  "id": 4790,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "burn",
                  "nameLocation": "772:4:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4778,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4775,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "785:7:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 4790,
                        "src": "777:15:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4774,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "777:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4777,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "802:6:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 4790,
                        "src": "794:14:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4776,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "794:7:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "776:33:26"
                  },
                  "returnParameters": {
                    "id": 4781,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4780,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4790,
                        "src": "826:4:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 4779,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "826:4:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "825:6:26"
                  },
                  "scope": 4807,
                  "src": "763:129:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4805,
                    "nodeType": "Block",
                    "src": "1001:44:26",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4800,
                              "name": "from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4792,
                              "src": "1021:4:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4801,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4794,
                              "src": "1027:2:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4802,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4796,
                              "src": "1031:6:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4799,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4534,
                            "src": "1011:9:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4803,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1011:27:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4804,
                        "nodeType": "ExpressionStatement",
                        "src": "1011:27:26"
                      }
                    ]
                  },
                  "functionSelector": "1c9c7903",
                  "id": 4806,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "masterTransfer",
                  "nameLocation": "907:14:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4797,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4792,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "939:4:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 4806,
                        "src": "931:12:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4791,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "931:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4794,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "961:2:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 4806,
                        "src": "953:10:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4793,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "953:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4796,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "981:6:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 4806,
                        "src": "973:14:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4795,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "973:7:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "921:72:26"
                  },
                  "returnParameters": {
                    "id": 4798,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1001:0:26"
                  },
                  "scope": 4807,
                  "src": "898:147:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                }
              ],
              "scope": 4808,
              "src": "316:731:26",
              "usedErrors": []
            }
          ],
          "src": "37:1011:26"
        },
        "id": 26
      },
      "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol": {
        "ast": {
          "absolutePath": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol",
          "exportedSymbols": {
            "ERC20": [
              4734
            ],
            "ERC20Mintable": [
              4807
            ],
            "IYieldSource": [
              4176
            ],
            "MockYieldSource": [
              5110
            ]
          },
          "id": 5111,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 4809,
              "literals": [
                "solidity",
                ">=",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:24:27"
            },
            {
              "absolutePath": "@pooltogether/yield-source-interface/contracts/IYieldSource.sol",
              "file": "../IYieldSource.sol",
              "id": 4810,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5111,
              "sourceUnit": 4177,
              "src": "63:29:27",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol",
              "file": "./ERC20Mintable.sol",
              "id": 4811,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5111,
              "sourceUnit": 4808,
              "src": "93:29:27",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 4813,
                    "name": "ERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 4734,
                    "src": "382:5:27"
                  },
                  "id": 4814,
                  "nodeType": "InheritanceSpecifier",
                  "src": "382:5:27"
                },
                {
                  "baseName": {
                    "id": 4815,
                    "name": "IYieldSource",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 4176,
                    "src": "389:12:27"
                  },
                  "id": 4816,
                  "nodeType": "InheritanceSpecifier",
                  "src": "389:12:27"
                }
              ],
              "contractDependencies": [
                4807
              ],
              "contractKind": "contract",
              "documentation": {
                "id": 4812,
                "nodeType": "StructuredDocumentation",
                "src": "124:229:27",
                "text": " @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\n which have permission to mint (create) new tokens as they see fit.\n At construction, the deployer of the contract is the only minter."
              },
              "fullyImplemented": true,
              "id": 5110,
              "linearizedBaseContracts": [
                5110,
                4176,
                4734
              ],
              "name": "MockYieldSource",
              "nameLocation": "363:15:27",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "functionSelector": "fc0c546a",
                  "id": 4819,
                  "mutability": "mutable",
                  "name": "token",
                  "nameLocation": "429:5:27",
                  "nodeType": "VariableDeclaration",
                  "scope": 5110,
                  "src": "408:26:27",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_ERC20Mintable_$4807",
                    "typeString": "contract ERC20Mintable"
                  },
                  "typeName": {
                    "id": 4818,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 4817,
                      "name": "ERC20Mintable",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 4807,
                      "src": "408:13:27"
                    },
                    "referencedDeclaration": 4807,
                    "src": "408:13:27",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_ERC20Mintable_$4807",
                      "typeString": "contract ERC20Mintable"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "functionSelector": "8eff1a98",
                  "id": 4821,
                  "mutability": "mutable",
                  "name": "ratePerSecond",
                  "nameLocation": "455:13:27",
                  "nodeType": "VariableDeclaration",
                  "scope": 5110,
                  "src": "440:28:27",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 4820,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "440:7:27",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "id": 4823,
                  "mutability": "mutable",
                  "name": "lastYieldTimestamp",
                  "nameLocation": "482:18:27",
                  "nodeType": "VariableDeclaration",
                  "scope": 5110,
                  "src": "474:26:27",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 4822,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "474:7:27",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4852,
                    "nodeType": "Block",
                    "src": "636:115:27",
                    "statements": [
                      {
                        "expression": {
                          "id": 4845,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4837,
                            "name": "token",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4819,
                            "src": "646:5:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ERC20Mintable_$4807",
                              "typeString": "contract ERC20Mintable"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 4841,
                                "name": "_name",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4825,
                                "src": "672:5:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_string_memory_ptr",
                                  "typeString": "string memory"
                                }
                              },
                              {
                                "id": 4842,
                                "name": "_symbol",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4827,
                                "src": "679:7:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_string_memory_ptr",
                                  "typeString": "string memory"
                                }
                              },
                              {
                                "id": 4843,
                                "name": "_decimals",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4829,
                                "src": "688:9:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_string_memory_ptr",
                                  "typeString": "string memory"
                                },
                                {
                                  "typeIdentifier": "t_string_memory_ptr",
                                  "typeString": "string memory"
                                },
                                {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              ],
                              "id": 4840,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "NewExpression",
                              "src": "654:17:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_creation_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_uint8_$returns$_t_contract$_ERC20Mintable_$4807_$",
                                "typeString": "function (string memory,string memory,uint8) returns (contract ERC20Mintable)"
                              },
                              "typeName": {
                                "id": 4839,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 4838,
                                  "name": "ERC20Mintable",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 4807,
                                  "src": "658:13:27"
                                },
                                "referencedDeclaration": 4807,
                                "src": "658:13:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_ERC20Mintable_$4807",
                                  "typeString": "contract ERC20Mintable"
                                }
                              }
                            },
                            "id": 4844,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "654:44:27",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ERC20Mintable_$4807",
                              "typeString": "contract ERC20Mintable"
                            }
                          },
                          "src": "646:52:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ERC20Mintable_$4807",
                            "typeString": "contract ERC20Mintable"
                          }
                        },
                        "id": 4846,
                        "nodeType": "ExpressionStatement",
                        "src": "646:52:27"
                      },
                      {
                        "expression": {
                          "id": 4850,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4847,
                            "name": "lastYieldTimestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4823,
                            "src": "708:18:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "expression": {
                              "id": 4848,
                              "name": "block",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -4,
                              "src": "729:5:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_block",
                                "typeString": "block"
                              }
                            },
                            "id": 4849,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "src": "729:15:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "708:36:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 4851,
                        "nodeType": "ExpressionStatement",
                        "src": "708:36:27"
                      }
                    ]
                  },
                  "id": 4853,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "hexValue": "5949454c44",
                          "id": 4832,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "string",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "616:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_stringliteral_aeed4774a6ca7dc9eef4423038c2a3abe132048336feddd81b2e9a5e941eb777",
                            "typeString": "literal_string \"YIELD\""
                          },
                          "value": "YIELD"
                        },
                        {
                          "hexValue": "594c44",
                          "id": 4833,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "string",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "625:5:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_stringliteral_5b258124977d949576b4227d04c11dc321c656da5497de128c6e01ecf66f56b3",
                            "typeString": "literal_string \"YLD\""
                          },
                          "value": "YLD"
                        },
                        {
                          "hexValue": "3138",
                          "id": 4834,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "632:2:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_18_by_1",
                            "typeString": "int_const 18"
                          },
                          "value": "18"
                        }
                      ],
                      "id": 4835,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 4831,
                        "name": "ERC20",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4734,
                        "src": "610:5:27"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "610:25:27"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4830,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4825,
                        "mutability": "mutable",
                        "name": "_name",
                        "nameLocation": "542:5:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 4853,
                        "src": "528:19:27",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 4824,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "528:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4827,
                        "mutability": "mutable",
                        "name": "_symbol",
                        "nameLocation": "571:7:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 4853,
                        "src": "557:21:27",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 4826,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "557:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4829,
                        "mutability": "mutable",
                        "name": "_decimals",
                        "nameLocation": "594:9:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 4853,
                        "src": "588:15:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 4828,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "588:5:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "518:91:27"
                  },
                  "returnParameters": {
                    "id": 4836,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "636:0:27"
                  },
                  "scope": 5110,
                  "src": "507:244:27",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4870,
                    "nodeType": "Block",
                    "src": "816:114:27",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 4858,
                            "name": "_mintRate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4938,
                            "src": "826:9:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                              "typeString": "function ()"
                            }
                          },
                          "id": 4859,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "826:11:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4860,
                        "nodeType": "ExpressionStatement",
                        "src": "826:11:27"
                      },
                      {
                        "expression": {
                          "id": 4864,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4861,
                            "name": "lastYieldTimestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4823,
                            "src": "847:18:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "expression": {
                              "id": 4862,
                              "name": "block",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -4,
                              "src": "868:5:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_block",
                                "typeString": "block"
                              }
                            },
                            "id": 4863,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "src": "868:15:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "847:36:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 4865,
                        "nodeType": "ExpressionStatement",
                        "src": "847:36:27"
                      },
                      {
                        "expression": {
                          "id": 4868,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4866,
                            "name": "ratePerSecond",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4821,
                            "src": "893:13:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4867,
                            "name": "_ratePerSecond",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4855,
                            "src": "909:14:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "893:30:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 4869,
                        "nodeType": "ExpressionStatement",
                        "src": "893:30:27"
                      }
                    ]
                  },
                  "functionSelector": "e8fe76d5",
                  "id": 4871,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setRatePerSecond",
                  "nameLocation": "766:16:27",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4856,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4855,
                        "mutability": "mutable",
                        "name": "_ratePerSecond",
                        "nameLocation": "791:14:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 4871,
                        "src": "783:22:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4854,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "783:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "782:24:27"
                  },
                  "returnParameters": {
                    "id": 4857,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "816:0:27"
                  },
                  "scope": 5110,
                  "src": "757:173:27",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 4886,
                    "nodeType": "Block",
                    "src": "976:50:27",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 4881,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "1005:4:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$5110",
                                    "typeString": "contract MockYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$5110",
                                    "typeString": "contract MockYieldSource"
                                  }
                                ],
                                "id": 4880,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "997:7:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4879,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "997:7:27",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4882,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "997:13:27",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4883,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4873,
                              "src": "1012:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 4876,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4819,
                              "src": "986:5:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ERC20Mintable_$4807",
                                "typeString": "contract ERC20Mintable"
                              }
                            },
                            "id": 4878,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "mint",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4773,
                            "src": "986:10:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                              "typeString": "function (address,uint256) external returns (bool)"
                            }
                          },
                          "id": 4884,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "986:33:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 4885,
                        "nodeType": "ExpressionStatement",
                        "src": "986:33:27"
                      }
                    ]
                  },
                  "functionSelector": "765287ef",
                  "id": 4887,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "yield",
                  "nameLocation": "945:5:27",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4874,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4873,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "959:6:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 4887,
                        "src": "951:14:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4872,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "951:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "950:16:27"
                  },
                  "returnParameters": {
                    "id": 4875,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "976:0:27"
                  },
                  "scope": 5110,
                  "src": "936:90:27",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 4937,
                    "nodeType": "Block",
                    "src": "1062:339:27",
                    "statements": [
                      {
                        "assignments": [
                          4891
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4891,
                            "mutability": "mutable",
                            "name": "deltaTime",
                            "nameLocation": "1080:9:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 4937,
                            "src": "1072:17:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4890,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1072:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4896,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 4895,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 4892,
                              "name": "block",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -4,
                              "src": "1092:5:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_block",
                                "typeString": "block"
                              }
                            },
                            "id": 4893,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "src": "1092:15:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 4894,
                            "name": "lastYieldTimestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4823,
                            "src": "1110:18:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1092:36:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1072:56:27"
                      },
                      {
                        "assignments": [
                          4898
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4898,
                            "mutability": "mutable",
                            "name": "rateMultiplier",
                            "nameLocation": "1146:14:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 4937,
                            "src": "1138:22:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4897,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1138:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4902,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 4901,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 4899,
                            "name": "deltaTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4891,
                            "src": "1163:9:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "*",
                          "rightExpression": {
                            "id": 4900,
                            "name": "ratePerSecond",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4821,
                            "src": "1175:13:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1163:25:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1138:50:27"
                      },
                      {
                        "assignments": [
                          4904
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4904,
                            "mutability": "mutable",
                            "name": "balance",
                            "nameLocation": "1206:7:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 4937,
                            "src": "1198:15:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4903,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1198:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4912,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 4909,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "1240:4:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$5110",
                                    "typeString": "contract MockYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$5110",
                                    "typeString": "contract MockYieldSource"
                                  }
                                ],
                                "id": 4908,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1232:7:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4907,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1232:7:27",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4910,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1232:13:27",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 4905,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4819,
                              "src": "1216:5:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ERC20Mintable_$4807",
                                "typeString": "contract ERC20Mintable"
                              }
                            },
                            "id": 4906,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4287,
                            "src": "1216:15:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view external returns (uint256)"
                            }
                          },
                          "id": 4911,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1216:30:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1198:48:27"
                      },
                      {
                        "assignments": [
                          4914
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4914,
                            "mutability": "mutable",
                            "name": "mint",
                            "nameLocation": "1264:4:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 4937,
                            "src": "1256:12:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4913,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1256:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4921,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 4920,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 4917,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 4915,
                                  "name": "rateMultiplier",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4898,
                                  "src": "1272:14:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "*",
                                "rightExpression": {
                                  "id": 4916,
                                  "name": "balance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4904,
                                  "src": "1289:7:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "1272:24:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "id": 4918,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "1271:26:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "hexValue": "31",
                            "id": 4919,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1300:7:27",
                            "subdenomination": "ether",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1000000000000000000_by_1",
                              "typeString": "int_const 1000000000000000000"
                            },
                            "value": "1"
                          },
                          "src": "1271:36:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1256:51:27"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 4927,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "1336:4:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$5110",
                                    "typeString": "contract MockYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$5110",
                                    "typeString": "contract MockYieldSource"
                                  }
                                ],
                                "id": 4926,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1328:7:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4925,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1328:7:27",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4928,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1328:13:27",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4929,
                              "name": "mint",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4914,
                              "src": "1343:4:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 4922,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4819,
                              "src": "1317:5:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ERC20Mintable_$4807",
                                "typeString": "contract ERC20Mintable"
                              }
                            },
                            "id": 4924,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "mint",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4773,
                            "src": "1317:10:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                              "typeString": "function (address,uint256) external returns (bool)"
                            }
                          },
                          "id": 4930,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1317:31:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 4931,
                        "nodeType": "ExpressionStatement",
                        "src": "1317:31:27"
                      },
                      {
                        "expression": {
                          "id": 4935,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4932,
                            "name": "lastYieldTimestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4823,
                            "src": "1358:18:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "expression": {
                              "id": 4933,
                              "name": "block",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -4,
                              "src": "1379:5:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_block",
                                "typeString": "block"
                              }
                            },
                            "id": 4934,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "src": "1379:15:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1358:36:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 4936,
                        "nodeType": "ExpressionStatement",
                        "src": "1358:36:27"
                      }
                    ]
                  },
                  "id": 4938,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_mintRate",
                  "nameLocation": "1041:9:27",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4888,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1050:2:27"
                  },
                  "returnParameters": {
                    "id": 4889,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1062:0:27"
                  },
                  "scope": 5110,
                  "src": "1032:369:27",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    4151
                  ],
                  "body": {
                    "id": 4950,
                    "nodeType": "Block",
                    "src": "1584:38:27",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4947,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4819,
                              "src": "1609:5:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ERC20Mintable_$4807",
                                "typeString": "contract ERC20Mintable"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ERC20Mintable_$4807",
                                "typeString": "contract ERC20Mintable"
                              }
                            ],
                            "id": 4946,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1601:7:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_address_$",
                              "typeString": "type(address)"
                            },
                            "typeName": {
                              "id": 4945,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "1601:7:27",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 4948,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1601:14:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 4944,
                        "id": 4949,
                        "nodeType": "Return",
                        "src": "1594:21:27"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4939,
                    "nodeType": "StructuredDocumentation",
                    "src": "1407:107:27",
                    "text": "@notice Returns the ERC20 asset token used for deposits.\n @return The ERC20 asset token address."
                  },
                  "functionSelector": "c89039c5",
                  "id": 4951,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "depositToken",
                  "nameLocation": "1528:12:27",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4941,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1557:8:27"
                  },
                  "parameters": {
                    "id": 4940,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1540:2:27"
                  },
                  "returnParameters": {
                    "id": 4944,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4943,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4951,
                        "src": "1575:7:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4942,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1575:7:27",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1574:9:27"
                  },
                  "scope": 5110,
                  "src": "1519:103:27",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    4159
                  ],
                  "body": {
                    "id": 4969,
                    "nodeType": "Block",
                    "src": "1861:76:27",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 4960,
                            "name": "_mintRate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4938,
                            "src": "1871:9:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                              "typeString": "function ()"
                            }
                          },
                          "id": 4961,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1871:11:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4962,
                        "nodeType": "ExpressionStatement",
                        "src": "1871:11:27"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 4965,
                                  "name": "addr",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4954,
                                  "src": "1924:4:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 4964,
                                "name": "balanceOf",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4287,
                                "src": "1914:9:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_uint256_$",
                                  "typeString": "function (address) view returns (uint256)"
                                }
                              },
                              "id": 4966,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1914:15:27",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4963,
                            "name": "sharesToTokens",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5109,
                            "src": "1899:14:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) view returns (uint256)"
                            }
                          },
                          "id": 4967,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1899:31:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 4959,
                        "id": 4968,
                        "nodeType": "Return",
                        "src": "1892:38:27"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4952,
                    "nodeType": "StructuredDocumentation",
                    "src": "1628:154:27",
                    "text": "@notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n @return The underlying balance of asset tokens."
                  },
                  "functionSelector": "b99152d0",
                  "id": 4970,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOfToken",
                  "nameLocation": "1796:14:27",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4956,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1834:8:27"
                  },
                  "parameters": {
                    "id": 4955,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4954,
                        "mutability": "mutable",
                        "name": "addr",
                        "nameLocation": "1819:4:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 4970,
                        "src": "1811:12:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4953,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1811:7:27",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1810:14:27"
                  },
                  "returnParameters": {
                    "id": 4959,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4958,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4970,
                        "src": "1852:7:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4957,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1852:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1851:9:27"
                  },
                  "scope": 5110,
                  "src": "1787:150:27",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    4167
                  ],
                  "body": {
                    "id": 5005,
                    "nodeType": "Block",
                    "src": "2313:167:27",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 4979,
                            "name": "_mintRate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4938,
                            "src": "2323:9:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                              "typeString": "function ()"
                            }
                          },
                          "id": 4980,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2323:11:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4981,
                        "nodeType": "ExpressionStatement",
                        "src": "2323:11:27"
                      },
                      {
                        "assignments": [
                          4983
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4983,
                            "mutability": "mutable",
                            "name": "shares",
                            "nameLocation": "2352:6:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 5005,
                            "src": "2344:14:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4982,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2344:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4987,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4985,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4973,
                              "src": "2376:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4984,
                            "name": "tokensToShares",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5075,
                            "src": "2361:14:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) view returns (uint256)"
                            }
                          },
                          "id": 4986,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2361:22:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2344:39:27"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4991,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "2412:3:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 4992,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "2412:10:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 4995,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "2432:4:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$5110",
                                    "typeString": "contract MockYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$5110",
                                    "typeString": "contract MockYieldSource"
                                  }
                                ],
                                "id": 4994,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2424:7:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4993,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2424:7:27",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4996,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2424:13:27",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4997,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4973,
                              "src": "2439:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 4988,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4819,
                              "src": "2393:5:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ERC20Mintable_$4807",
                                "typeString": "contract ERC20Mintable"
                              }
                            },
                            "id": 4990,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "transferFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4391,
                            "src": "2393:18:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$",
                              "typeString": "function (address,address,uint256) external returns (bool)"
                            }
                          },
                          "id": 4998,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2393:53:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 4999,
                        "nodeType": "ExpressionStatement",
                        "src": "2393:53:27"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5001,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4975,
                              "src": "2462:2:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 5002,
                              "name": "shares",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4983,
                              "src": "2466:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5000,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4590,
                            "src": "2456:5:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 5003,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2456:17:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5004,
                        "nodeType": "ExpressionStatement",
                        "src": "2456:17:27"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4971,
                    "nodeType": "StructuredDocumentation",
                    "src": "1943:296:27",
                    "text": "@notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\n @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\n @param to The user whose balance will receive the tokens"
                  },
                  "functionSelector": "87a6eeef",
                  "id": 5006,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supplyTokenTo",
                  "nameLocation": "2253:13:27",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4977,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2304:8:27"
                  },
                  "parameters": {
                    "id": 4976,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4973,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2275:6:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 5006,
                        "src": "2267:14:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4972,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2267:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4975,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2291:2:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 5006,
                        "src": "2283:10:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4974,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2283:7:27",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2266:28:27"
                  },
                  "returnParameters": {
                    "id": 4978,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2313:0:27"
                  },
                  "scope": 5110,
                  "src": "2244:236:27",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    4175
                  ],
                  "body": {
                    "id": 5040,
                    "nodeType": "Block",
                    "src": "2798:180:27",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 5015,
                            "name": "_mintRate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4938,
                            "src": "2808:9:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                              "typeString": "function ()"
                            }
                          },
                          "id": 5016,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2808:11:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5017,
                        "nodeType": "ExpressionStatement",
                        "src": "2808:11:27"
                      },
                      {
                        "assignments": [
                          5019
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5019,
                            "mutability": "mutable",
                            "name": "shares",
                            "nameLocation": "2837:6:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 5040,
                            "src": "2829:14:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 5018,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2829:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5023,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 5021,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5009,
                              "src": "2861:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5020,
                            "name": "tokensToShares",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5075,
                            "src": "2846:14:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) view returns (uint256)"
                            }
                          },
                          "id": 5022,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2846:22:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2829:39:27"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 5025,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "2884:3:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 5026,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "2884:10:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 5027,
                              "name": "shares",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5019,
                              "src": "2896:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5024,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4662,
                            "src": "2878:5:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 5028,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2878:25:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5029,
                        "nodeType": "ExpressionStatement",
                        "src": "2878:25:27"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 5033,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "2928:3:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 5034,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "2928:10:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 5035,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5009,
                              "src": "2940:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 5030,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4819,
                              "src": "2913:5:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ERC20Mintable_$4807",
                                "typeString": "contract ERC20Mintable"
                              }
                            },
                            "id": 5032,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "transfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4307,
                            "src": "2913:14:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                              "typeString": "function (address,uint256) external returns (bool)"
                            }
                          },
                          "id": 5036,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2913:34:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 5037,
                        "nodeType": "ExpressionStatement",
                        "src": "2913:34:27"
                      },
                      {
                        "expression": {
                          "id": 5038,
                          "name": "amount",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5009,
                          "src": "2965:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 5014,
                        "id": 5039,
                        "nodeType": "Return",
                        "src": "2958:13:27"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5007,
                    "nodeType": "StructuredDocumentation",
                    "src": "2486:234:27",
                    "text": "@notice Redeems tokens from the yield source.\n @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\n @return The actual amount of interst bearing tokens that were redeemed."
                  },
                  "functionSelector": "013054c2",
                  "id": 5041,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "redeemToken",
                  "nameLocation": "2734:11:27",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5011,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2771:8:27"
                  },
                  "parameters": {
                    "id": 5010,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5009,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2754:6:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 5041,
                        "src": "2746:14:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5008,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2746:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2745:16:27"
                  },
                  "returnParameters": {
                    "id": 5014,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5013,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5041,
                        "src": "2789:7:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5012,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2789:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2788:9:27"
                  },
                  "scope": 5110,
                  "src": "2725:253:27",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 5074,
                    "nodeType": "Block",
                    "src": "3054:218:27",
                    "statements": [
                      {
                        "assignments": [
                          5049
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5049,
                            "mutability": "mutable",
                            "name": "tokenBalance",
                            "nameLocation": "3072:12:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 5074,
                            "src": "3064:20:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 5048,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "3064:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5057,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 5054,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "3111:4:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$5110",
                                    "typeString": "contract MockYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$5110",
                                    "typeString": "contract MockYieldSource"
                                  }
                                ],
                                "id": 5053,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3103:7:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 5052,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3103:7:27",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 5055,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3103:13:27",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 5050,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4819,
                              "src": "3087:5:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ERC20Mintable_$4807",
                                "typeString": "contract ERC20Mintable"
                              }
                            },
                            "id": 5051,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4287,
                            "src": "3087:15:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view external returns (uint256)"
                            }
                          },
                          "id": 5056,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3087:30:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3064:53:27"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 5060,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5058,
                            "name": "tokenBalance",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5049,
                            "src": "3132:12:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 5059,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3148:1:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3132:17:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 5072,
                          "nodeType": "Block",
                          "src": "3195:71:27",
                          "statements": [
                            {
                              "expression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 5070,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 5067,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 5064,
                                        "name": "tokens",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5043,
                                        "src": "3217:6:27",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "*",
                                      "rightExpression": {
                                        "arguments": [],
                                        "expression": {
                                          "argumentTypes": [],
                                          "id": 5065,
                                          "name": "totalSupply",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 4274,
                                          "src": "3226:11:27",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                                            "typeString": "function () view returns (uint256)"
                                          }
                                        },
                                        "id": 5066,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "3226:13:27",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "3217:22:27",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 5068,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "3216:24:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "/",
                                "rightExpression": {
                                  "id": 5069,
                                  "name": "tokenBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5049,
                                  "src": "3243:12:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "3216:39:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "functionReturnParameters": 5047,
                              "id": 5071,
                              "nodeType": "Return",
                              "src": "3209:46:27"
                            }
                          ]
                        },
                        "id": 5073,
                        "nodeType": "IfStatement",
                        "src": "3128:138:27",
                        "trueBody": {
                          "id": 5063,
                          "nodeType": "Block",
                          "src": "3151:38:27",
                          "statements": [
                            {
                              "expression": {
                                "id": 5061,
                                "name": "tokens",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5043,
                                "src": "3172:6:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "functionReturnParameters": 5047,
                              "id": 5062,
                              "nodeType": "Return",
                              "src": "3165:13:27"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "functionSelector": "f3044ac7",
                  "id": 5075,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tokensToShares",
                  "nameLocation": "2993:14:27",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5044,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5043,
                        "mutability": "mutable",
                        "name": "tokens",
                        "nameLocation": "3016:6:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 5075,
                        "src": "3008:14:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5042,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3008:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3007:16:27"
                  },
                  "returnParameters": {
                    "id": 5047,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5046,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5075,
                        "src": "3045:7:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5045,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3045:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3044:9:27"
                  },
                  "scope": 5110,
                  "src": "2984:288:27",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 5108,
                    "nodeType": "Block",
                    "src": "3348:200:27",
                    "statements": [
                      {
                        "assignments": [
                          5083
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5083,
                            "mutability": "mutable",
                            "name": "supply",
                            "nameLocation": "3366:6:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 5108,
                            "src": "3358:14:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 5082,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "3358:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5086,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 5084,
                            "name": "totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4274,
                            "src": "3375:11:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 5085,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3375:13:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3358:30:27"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 5089,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5087,
                            "name": "supply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5083,
                            "src": "3403:6:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 5088,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3413:1:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3403:11:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 5106,
                          "nodeType": "Block",
                          "src": "3460:82:27",
                          "statements": [
                            {
                              "expression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 5104,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 5101,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 5093,
                                        "name": "shares",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5077,
                                        "src": "3482:6:27",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "*",
                                      "rightExpression": {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "id": 5098,
                                                "name": "this",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": -28,
                                                "src": "3515:4:27",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_contract$_MockYieldSource_$5110",
                                                  "typeString": "contract MockYieldSource"
                                                }
                                              }
                                            ],
                                            "expression": {
                                              "argumentTypes": [
                                                {
                                                  "typeIdentifier": "t_contract$_MockYieldSource_$5110",
                                                  "typeString": "contract MockYieldSource"
                                                }
                                              ],
                                              "id": 5097,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": true,
                                              "lValueRequested": false,
                                              "nodeType": "ElementaryTypeNameExpression",
                                              "src": "3507:7:27",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_type$_t_address_$",
                                                "typeString": "type(address)"
                                              },
                                              "typeName": {
                                                "id": 5096,
                                                "name": "address",
                                                "nodeType": "ElementaryTypeName",
                                                "src": "3507:7:27",
                                                "typeDescriptions": {}
                                              }
                                            },
                                            "id": 5099,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "kind": "typeConversion",
                                            "lValueRequested": false,
                                            "names": [],
                                            "nodeType": "FunctionCall",
                                            "src": "3507:13:27",
                                            "tryCall": false,
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_address",
                                              "typeString": "address"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_address",
                                              "typeString": "address"
                                            }
                                          ],
                                          "expression": {
                                            "id": 5094,
                                            "name": "token",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 4819,
                                            "src": "3491:5:27",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_contract$_ERC20Mintable_$4807",
                                              "typeString": "contract ERC20Mintable"
                                            }
                                          },
                                          "id": 5095,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "balanceOf",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 4287,
                                          "src": "3491:15:27",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                                            "typeString": "function (address) view external returns (uint256)"
                                          }
                                        },
                                        "id": 5100,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "3491:30:27",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "3482:39:27",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 5102,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "3481:41:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "/",
                                "rightExpression": {
                                  "id": 5103,
                                  "name": "supply",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5083,
                                  "src": "3525:6:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "3481:50:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "functionReturnParameters": 5081,
                              "id": 5105,
                              "nodeType": "Return",
                              "src": "3474:57:27"
                            }
                          ]
                        },
                        "id": 5107,
                        "nodeType": "IfStatement",
                        "src": "3399:143:27",
                        "trueBody": {
                          "id": 5092,
                          "nodeType": "Block",
                          "src": "3416:38:27",
                          "statements": [
                            {
                              "expression": {
                                "id": 5090,
                                "name": "shares",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5077,
                                "src": "3437:6:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "functionReturnParameters": 5081,
                              "id": 5091,
                              "nodeType": "Return",
                              "src": "3430:13:27"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "functionSelector": "27def4fd",
                  "id": 5109,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "sharesToTokens",
                  "nameLocation": "3287:14:27",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5078,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5077,
                        "mutability": "mutable",
                        "name": "shares",
                        "nameLocation": "3310:6:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 5109,
                        "src": "3302:14:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5076,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3302:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3301:16:27"
                  },
                  "returnParameters": {
                    "id": 5081,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5080,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5109,
                        "src": "3339:7:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5079,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3339:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3338:9:27"
                  },
                  "scope": 5110,
                  "src": "3278:270:27",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "public"
                }
              ],
              "scope": 5111,
              "src": "354:3196:27",
              "usedErrors": []
            }
          ],
          "src": "37:3514:27"
        },
        "id": 27
      },
      "contracts/ControlledToken.sol": {
        "ast": {
          "absolutePath": "contracts/ControlledToken.sol",
          "exportedSymbols": {
            "Context": [
              2413
            ],
            "ControlledToken": [
              5288
            ],
            "Counters": [
              2487
            ],
            "ECDSA": [
              3057
            ],
            "EIP712": [
              3195
            ],
            "ERC20": [
              585
            ],
            "ERC20Permit": [
              857
            ],
            "IControlledToken": [
              11069
            ],
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ],
            "IERC20Permit": [
              893
            ]
          },
          "id": 5289,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 5112,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:28"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol",
              "file": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol",
              "id": 5113,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5289,
              "sourceUnit": 858,
              "src": "61:78:28",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IControlledToken.sol",
              "file": "./interfaces/IControlledToken.sol",
              "id": 5114,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5289,
              "sourceUnit": 11070,
              "src": "141:43:28",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 5116,
                    "name": "ERC20Permit",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 857,
                    "src": "370:11:28"
                  },
                  "id": 5117,
                  "nodeType": "InheritanceSpecifier",
                  "src": "370:11:28"
                },
                {
                  "baseName": {
                    "id": 5118,
                    "name": "IControlledToken",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11069,
                    "src": "383:16:28"
                  },
                  "id": 5119,
                  "nodeType": "InheritanceSpecifier",
                  "src": "383:16:28"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 5115,
                "nodeType": "StructuredDocumentation",
                "src": "186:155:28",
                "text": " @title  PoolTogether V4 Controlled ERC20 Token\n @author PoolTogether Inc Team\n @notice  ERC20 Tokens with a controller for minting & burning"
              },
              "fullyImplemented": true,
              "id": 5288,
              "linearizedBaseContracts": [
                5288,
                11069,
                857,
                3195,
                893,
                585,
                688,
                663,
                2413
              ],
              "name": "ControlledToken",
              "nameLocation": "351:15:28",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "baseFunctions": [
                    11042
                  ],
                  "constant": false,
                  "documentation": {
                    "id": 5120,
                    "nodeType": "StructuredDocumentation",
                    "src": "460:75:28",
                    "text": "@notice Interface to the contract responsible for controlling mint/burn"
                  },
                  "functionSelector": "f77c4791",
                  "id": 5123,
                  "mutability": "immutable",
                  "name": "controller",
                  "nameLocation": "574:10:28",
                  "nodeType": "VariableDeclaration",
                  "overrides": {
                    "id": 5122,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "555:8:28"
                  },
                  "scope": 5288,
                  "src": "540:44:28",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 5121,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "540:7:28",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5124,
                    "nodeType": "StructuredDocumentation",
                    "src": "591:44:28",
                    "text": "@notice ERC20 controlled token decimals."
                  },
                  "id": 5126,
                  "mutability": "immutable",
                  "name": "_decimals",
                  "nameLocation": "664:9:28",
                  "nodeType": "VariableDeclaration",
                  "scope": 5288,
                  "src": "640:33:28",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint8",
                    "typeString": "uint8"
                  },
                  "typeName": {
                    "id": 5125,
                    "name": "uint8",
                    "nodeType": "ElementaryTypeName",
                    "src": "640:5:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 5127,
                    "nodeType": "StructuredDocumentation",
                    "src": "724:42:28",
                    "text": "@dev Emitted when contract is deployed"
                  },
                  "id": 5137,
                  "name": "Deployed",
                  "nameLocation": "777:8:28",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 5136,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5129,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "name",
                        "nameLocation": "793:4:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 5137,
                        "src": "786:11:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 5128,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "786:6:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5131,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "symbol",
                        "nameLocation": "806:6:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 5137,
                        "src": "799:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 5130,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "799:6:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5133,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "decimals",
                        "nameLocation": "820:8:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 5137,
                        "src": "814:14:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 5132,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "814:5:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5135,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "controller",
                        "nameLocation": "846:10:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 5137,
                        "src": "830:26:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5134,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "830:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "785:72:28"
                  },
                  "src": "771:87:28"
                },
                {
                  "body": {
                    "id": 5152,
                    "nodeType": "Block",
                    "src": "1021:105:28",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 5147,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 5141,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "1039:3:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 5142,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "1039:10:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "id": 5145,
                                    "name": "controller",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5123,
                                    "src": "1061:10:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  ],
                                  "id": 5144,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1053:7:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 5143,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1053:7:28",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 5146,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1053:19:28",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1039:33:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572",
                              "id": 5148,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1074:33:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35",
                                "typeString": "literal_string \"ControlledToken/only-controller\""
                              },
                              "value": "ControlledToken/only-controller"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35",
                                "typeString": "literal_string \"ControlledToken/only-controller\""
                              }
                            ],
                            "id": 5140,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1031:7:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5149,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1031:77:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5150,
                        "nodeType": "ExpressionStatement",
                        "src": "1031:77:28"
                      },
                      {
                        "id": 5151,
                        "nodeType": "PlaceholderStatement",
                        "src": "1118:1:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5138,
                    "nodeType": "StructuredDocumentation",
                    "src": "911:79:28",
                    "text": "@dev Function modifier to ensure that the caller is the controller contract"
                  },
                  "id": 5153,
                  "name": "onlyController",
                  "nameLocation": "1004:14:28",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 5139,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1018:2:28"
                  },
                  "src": "995:131:28",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5207,
                    "nodeType": "Block",
                    "src": "1698:305:28",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 5181,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 5175,
                                    "name": "_controller",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5162,
                                    "src": "1724:11:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  ],
                                  "id": 5174,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1716:7:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 5173,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1716:7:28",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 5176,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1716:20:28",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 5179,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1748:1:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 5178,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1740:7:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 5177,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1740:7:28",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 5180,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1740:10:28",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1716:34:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a65726f2d61646472657373",
                              "id": 5182,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1752:45:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54",
                                "typeString": "literal_string \"ControlledToken/controller-not-zero-address\""
                              },
                              "value": "ControlledToken/controller-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54",
                                "typeString": "literal_string \"ControlledToken/controller-not-zero-address\""
                              }
                            ],
                            "id": 5172,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1708:7:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5183,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1708:90:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5184,
                        "nodeType": "ExpressionStatement",
                        "src": "1708:90:28"
                      },
                      {
                        "expression": {
                          "id": 5187,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5185,
                            "name": "controller",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5123,
                            "src": "1808:10:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5186,
                            "name": "_controller",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5162,
                            "src": "1821:11:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "1808:24:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 5188,
                        "nodeType": "ExpressionStatement",
                        "src": "1808:24:28"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 5192,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 5190,
                                "name": "decimals_",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5160,
                                "src": "1851:9:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 5191,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1863:1:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "1851:13:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f",
                              "id": 5193,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1866:34:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0",
                                "typeString": "literal_string \"ControlledToken/decimals-gt-zero\""
                              },
                              "value": "ControlledToken/decimals-gt-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0",
                                "typeString": "literal_string \"ControlledToken/decimals-gt-zero\""
                              }
                            ],
                            "id": 5189,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1843:7:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5194,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1843:58:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5195,
                        "nodeType": "ExpressionStatement",
                        "src": "1843:58:28"
                      },
                      {
                        "expression": {
                          "id": 5198,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5196,
                            "name": "_decimals",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5126,
                            "src": "1911:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5197,
                            "name": "decimals_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5160,
                            "src": "1923:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "1911:21:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "id": 5199,
                        "nodeType": "ExpressionStatement",
                        "src": "1911:21:28"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5201,
                              "name": "_name",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5156,
                              "src": "1957:5:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            {
                              "id": 5202,
                              "name": "_symbol",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5158,
                              "src": "1964:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            {
                              "id": 5203,
                              "name": "decimals_",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5160,
                              "src": "1973:9:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 5204,
                              "name": "_controller",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5162,
                              "src": "1984:11:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              },
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 5200,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5137,
                            "src": "1948:8:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_uint8_$_t_address_$returns$__$",
                              "typeString": "function (string memory,string memory,uint8,address)"
                            }
                          },
                          "id": 5205,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1948:48:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5206,
                        "nodeType": "EmitStatement",
                        "src": "1943:53:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5154,
                    "nodeType": "StructuredDocumentation",
                    "src": "1181:314:28",
                    "text": "@notice Deploy the Controlled Token with Token Details and the Controller\n @param _name The name of the Token\n @param _symbol The symbol for the Token\n @param decimals_ The number of decimals for the Token\n @param _controller Address of the Controller contract for minting & burning"
                  },
                  "id": 5208,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "hexValue": "506f6f6c546f67657468657220436f6e74726f6c6c6564546f6b656e",
                          "id": 5165,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "string",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1644:30:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_stringliteral_4c56e52e1e1083962e8a166de35adcba6701e0a029333db5a80367db0f67e330",
                            "typeString": "literal_string \"PoolTogether ControlledToken\""
                          },
                          "value": "PoolTogether ControlledToken"
                        }
                      ],
                      "id": 5166,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 5164,
                        "name": "ERC20Permit",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 857,
                        "src": "1632:11:28"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1632:43:28"
                    },
                    {
                      "arguments": [
                        {
                          "id": 5168,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5156,
                          "src": "1682:5:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 5169,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5158,
                          "src": "1689:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        }
                      ],
                      "id": 5170,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 5167,
                        "name": "ERC20",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 585,
                        "src": "1676:5:28"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1676:21:28"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5163,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5156,
                        "mutability": "mutable",
                        "name": "_name",
                        "nameLocation": "1535:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 5208,
                        "src": "1521:19:28",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 5155,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1521:6:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5158,
                        "mutability": "mutable",
                        "name": "_symbol",
                        "nameLocation": "1564:7:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 5208,
                        "src": "1550:21:28",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 5157,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1550:6:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5160,
                        "mutability": "mutable",
                        "name": "decimals_",
                        "nameLocation": "1587:9:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 5208,
                        "src": "1581:15:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 5159,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1581:5:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5162,
                        "mutability": "mutable",
                        "name": "_controller",
                        "nameLocation": "1614:11:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 5208,
                        "src": "1606:19:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5161,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1606:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1511:120:28"
                  },
                  "returnParameters": {
                    "id": 5171,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1698:0:28"
                  },
                  "scope": 5288,
                  "src": "1500:503:28",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11050
                  ],
                  "body": {
                    "id": 5224,
                    "nodeType": "Block",
                    "src": "2461:38:28",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5220,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5211,
                              "src": "2477:5:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 5221,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5213,
                              "src": "2484:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5219,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 445,
                            "src": "2471:5:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 5222,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2471:21:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5223,
                        "nodeType": "ExpressionStatement",
                        "src": "2471:21:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5209,
                    "nodeType": "StructuredDocumentation",
                    "src": "2065:258:28",
                    "text": "@notice Allows the controller to mint tokens for a user account\n @dev May be overridden to provide more granular control over minting\n @param _user Address of the receiver of the minted tokens\n @param _amount Amount of tokens to mint"
                  },
                  "functionSelector": "5d7b0758",
                  "id": 5225,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5217,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5216,
                        "name": "onlyController",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5153,
                        "src": "2442:14:28"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2442:14:28"
                    }
                  ],
                  "name": "controllerMint",
                  "nameLocation": "2337:14:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5215,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2425:8:28"
                  },
                  "parameters": {
                    "id": 5214,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5211,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2360:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 5225,
                        "src": "2352:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5210,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2352:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5213,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "2375:7:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 5225,
                        "src": "2367:15:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5212,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2367:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2351:32:28"
                  },
                  "returnParameters": {
                    "id": 5218,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2461:0:28"
                  },
                  "scope": 5288,
                  "src": "2328:171:28",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11058
                  ],
                  "body": {
                    "id": 5241,
                    "nodeType": "Block",
                    "src": "2907:38:28",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5237,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5228,
                              "src": "2923:5:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 5238,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5230,
                              "src": "2930:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5236,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 517,
                            "src": "2917:5:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 5239,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2917:21:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5240,
                        "nodeType": "ExpressionStatement",
                        "src": "2917:21:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5226,
                    "nodeType": "StructuredDocumentation",
                    "src": "2505:264:28",
                    "text": "@notice Allows the controller to burn tokens from a user account\n @dev May be overridden to provide more granular control over burning\n @param _user Address of the holder account to burn tokens from\n @param _amount Amount of tokens to burn"
                  },
                  "functionSelector": "90596dd1",
                  "id": 5242,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5234,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5233,
                        "name": "onlyController",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5153,
                        "src": "2888:14:28"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2888:14:28"
                    }
                  ],
                  "name": "controllerBurn",
                  "nameLocation": "2783:14:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5232,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2871:8:28"
                  },
                  "parameters": {
                    "id": 5231,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5228,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2806:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 5242,
                        "src": "2798:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5227,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2798:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5230,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "2821:7:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 5242,
                        "src": "2813:15:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5229,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2813:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2797:32:28"
                  },
                  "returnParameters": {
                    "id": 5235,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2907:0:28"
                  },
                  "scope": 5288,
                  "src": "2774:171:28",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11068
                  ],
                  "body": {
                    "id": 5276,
                    "nodeType": "Block",
                    "src": "3507:162:28",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 5257,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5255,
                            "name": "_operator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5245,
                            "src": "3521:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "id": 5256,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5247,
                            "src": "3534:5:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "3521:18:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 5270,
                        "nodeType": "IfStatement",
                        "src": "3517:114:28",
                        "trueBody": {
                          "id": 5269,
                          "nodeType": "Block",
                          "src": "3541:90:28",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 5259,
                                    "name": "_user",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5247,
                                    "src": "3564:5:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 5260,
                                    "name": "_operator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5245,
                                    "src": "3571:9:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 5266,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "arguments": [
                                        {
                                          "id": 5262,
                                          "name": "_user",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 5247,
                                          "src": "3592:5:28",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        },
                                        {
                                          "id": 5263,
                                          "name": "_operator",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 5245,
                                          "src": "3599:9:28",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          },
                                          {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        ],
                                        "id": 5261,
                                        "name": "allowance",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 177,
                                        "src": "3582:9:28",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$",
                                          "typeString": "function (address,address) view returns (uint256)"
                                        }
                                      },
                                      "id": 5264,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "3582:27:28",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "-",
                                    "rightExpression": {
                                      "id": 5265,
                                      "name": "_amount",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5249,
                                      "src": "3612:7:28",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "3582:37:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 5258,
                                  "name": "_approve",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 562,
                                  "src": "3555:8:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,address,uint256)"
                                  }
                                },
                                "id": 5267,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3555:65:28",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 5268,
                              "nodeType": "ExpressionStatement",
                              "src": "3555:65:28"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5272,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5247,
                              "src": "3647:5:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 5273,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5249,
                              "src": "3654:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5271,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 517,
                            "src": "3641:5:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 5274,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3641:21:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5275,
                        "nodeType": "ExpressionStatement",
                        "src": "3641:21:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5243,
                    "nodeType": "StructuredDocumentation",
                    "src": "2951:401:28",
                    "text": "@notice Allows an operator via the controller to burn tokens on behalf of a user account\n @dev May be overridden to provide more granular control over operator-burning\n @param _operator Address of the operator performing the burn action via the controller contract\n @param _user Address of the holder account to burn tokens from\n @param _amount Amount of tokens to burn"
                  },
                  "functionSelector": "631b5dfb",
                  "id": 5277,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5253,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5252,
                        "name": "onlyController",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5153,
                        "src": "3492:14:28"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3492:14:28"
                    }
                  ],
                  "name": "controllerBurnFrom",
                  "nameLocation": "3366:18:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5251,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3483:8:28"
                  },
                  "parameters": {
                    "id": 5250,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5245,
                        "mutability": "mutable",
                        "name": "_operator",
                        "nameLocation": "3402:9:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 5277,
                        "src": "3394:17:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5244,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3394:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5247,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "3429:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 5277,
                        "src": "3421:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5246,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3421:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5249,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "3452:7:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 5277,
                        "src": "3444:15:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5248,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3444:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3384:81:28"
                  },
                  "returnParameters": {
                    "id": 5254,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3507:0:28"
                  },
                  "scope": 5288,
                  "src": "3357:312:28",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    114
                  ],
                  "body": {
                    "id": 5286,
                    "nodeType": "Block",
                    "src": "3933:33:28",
                    "statements": [
                      {
                        "expression": {
                          "id": 5284,
                          "name": "_decimals",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5126,
                          "src": "3950:9:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 5283,
                        "id": 5285,
                        "nodeType": "Return",
                        "src": "3943:16:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5278,
                    "nodeType": "StructuredDocumentation",
                    "src": "3675:188:28",
                    "text": "@notice Returns the ERC20 controlled token decimals.\n @dev This value should be equal to the decimals of the token used to deposit into the pool.\n @return uint8 decimals."
                  },
                  "functionSelector": "313ce567",
                  "id": 5287,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decimals",
                  "nameLocation": "3877:8:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5280,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3908:8:28"
                  },
                  "parameters": {
                    "id": 5279,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3885:2:28"
                  },
                  "returnParameters": {
                    "id": 5283,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5282,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5287,
                        "src": "3926:5:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 5281,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3926:5:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3925:7:28"
                  },
                  "scope": 5288,
                  "src": "3868:98:28",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                }
              ],
              "scope": 5289,
              "src": "342:3626:28",
              "usedErrors": []
            }
          ],
          "src": "37:3932:28"
        },
        "id": 28
      },
      "contracts/DrawBeacon.sol": {
        "ast": {
          "absolutePath": "contracts/DrawBeacon.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "DrawBeacon": [
              6167
            ],
            "IDrawBeacon": [
              11241
            ],
            "IDrawBuffer": [
              11318
            ],
            "IERC20": [
              663
            ],
            "Ownable": [
              4086
            ],
            "RNGInterface": [
              4142
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 6168,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 5290,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:29"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "file": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "id": 5291,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6168,
              "sourceUnit": 3827,
              "src": "61:57:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 5292,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6168,
              "sourceUnit": 664,
              "src": "119:56:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 5293,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6168,
              "sourceUnit": 1118,
              "src": "176:65:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "file": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "id": 5294,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6168,
              "sourceUnit": 4143,
              "src": "243:77:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "id": 5295,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6168,
              "sourceUnit": 4087,
              "src": "321:69:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IDrawBeacon.sol",
              "file": "./interfaces/IDrawBeacon.sol",
              "id": 5296,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6168,
              "sourceUnit": 11242,
              "src": "392:38:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IDrawBuffer.sol",
              "file": "./interfaces/IDrawBuffer.sol",
              "id": 5297,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6168,
              "sourceUnit": 11319,
              "src": "431:38:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 5299,
                    "name": "IDrawBeacon",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11241,
                    "src": "1154:11:29"
                  },
                  "id": 5300,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1154:11:29"
                },
                {
                  "baseName": {
                    "id": 5301,
                    "name": "Ownable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 4086,
                    "src": "1167:7:29"
                  },
                  "id": 5302,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1167:7:29"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 5298,
                "nodeType": "StructuredDocumentation",
                "src": "472:658:29",
                "text": " @title  PoolTogether V4 DrawBeacon\n @author PoolTogether Inc Team\n @notice Manages RNG (random number generator) requests and pushing Draws onto DrawBuffer.\nThe DrawBeacon has 3 major actions for requesting a random number: start, cancel and complete.\nTo create a new Draw, the user requests a new random number from the RNG service.\nWhen the random number is available, the user can create the draw using the create() method\nwhich will push the draw onto the DrawBuffer.\nIf the RNG service fails to deliver a rng, when the request timeout elapses, the user can cancel the request."
              },
              "fullyImplemented": true,
              "id": 6167,
              "linearizedBaseContracts": [
                6167,
                4086,
                11241
              ],
              "name": "DrawBeacon",
              "nameLocation": "1140:10:29",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 5305,
                  "libraryName": {
                    "id": 5303,
                    "name": "SafeCast",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3826,
                    "src": "1187:8:29"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1181:27:29",
                  "typeName": {
                    "id": 5304,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1200:7:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "id": 5309,
                  "libraryName": {
                    "id": 5306,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1117,
                    "src": "1219:9:29"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1213:27:29",
                  "typeName": {
                    "id": 5308,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 5307,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "1233:6:29"
                    },
                    "referencedDeclaration": 663,
                    "src": "1233:6:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5310,
                    "nodeType": "StructuredDocumentation",
                    "src": "1293:34:29",
                    "text": "@notice RNG contract interface"
                  },
                  "id": 5313,
                  "mutability": "mutable",
                  "name": "rng",
                  "nameLocation": "1354:3:29",
                  "nodeType": "VariableDeclaration",
                  "scope": 6167,
                  "src": "1332:25:29",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_RNGInterface_$4142",
                    "typeString": "contract RNGInterface"
                  },
                  "typeName": {
                    "id": 5312,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 5311,
                      "name": "RNGInterface",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 4142,
                      "src": "1332:12:29"
                    },
                    "referencedDeclaration": 4142,
                    "src": "1332:12:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_RNGInterface_$4142",
                      "typeString": "contract RNGInterface"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5314,
                    "nodeType": "StructuredDocumentation",
                    "src": "1364:31:29",
                    "text": "@notice Current RNG Request"
                  },
                  "id": 5317,
                  "mutability": "mutable",
                  "name": "rngRequest",
                  "nameLocation": "1420:10:29",
                  "nodeType": "VariableDeclaration",
                  "scope": 6167,
                  "src": "1400:30:29",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                    "typeString": "struct DrawBeacon.RngRequest"
                  },
                  "typeName": {
                    "id": 5316,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 5315,
                      "name": "RngRequest",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 5340,
                      "src": "1400:10:29"
                    },
                    "referencedDeclaration": 5340,
                    "src": "1400:10:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_RngRequest_$5340_storage_ptr",
                      "typeString": "struct DrawBeacon.RngRequest"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5318,
                    "nodeType": "StructuredDocumentation",
                    "src": "1437:30:29",
                    "text": "@notice DrawBuffer address"
                  },
                  "id": 5321,
                  "mutability": "mutable",
                  "name": "drawBuffer",
                  "nameLocation": "1493:10:29",
                  "nodeType": "VariableDeclaration",
                  "scope": 6167,
                  "src": "1472:31:29",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                    "typeString": "contract IDrawBuffer"
                  },
                  "typeName": {
                    "id": 5320,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 5319,
                      "name": "IDrawBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11318,
                      "src": "1472:11:29"
                    },
                    "referencedDeclaration": 11318,
                    "src": "1472:11:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                      "typeString": "contract IDrawBuffer"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5322,
                    "nodeType": "StructuredDocumentation",
                    "src": "1510:166:29",
                    "text": " @notice RNG Request Timeout.  In fact, this is really a \"complete draw\" timeout.\n @dev If the rng completes the award can still be cancelled."
                  },
                  "id": 5324,
                  "mutability": "mutable",
                  "name": "rngTimeout",
                  "nameLocation": "1697:10:29",
                  "nodeType": "VariableDeclaration",
                  "scope": 6167,
                  "src": "1681:26:29",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint32",
                    "typeString": "uint32"
                  },
                  "typeName": {
                    "id": 5323,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1681:6:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5325,
                    "nodeType": "StructuredDocumentation",
                    "src": "1714:49:29",
                    "text": "@notice Seconds between beacon period request"
                  },
                  "id": 5327,
                  "mutability": "mutable",
                  "name": "beaconPeriodSeconds",
                  "nameLocation": "1784:19:29",
                  "nodeType": "VariableDeclaration",
                  "scope": 6167,
                  "src": "1768:35:29",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint32",
                    "typeString": "uint32"
                  },
                  "typeName": {
                    "id": 5326,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1768:6:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5328,
                    "nodeType": "StructuredDocumentation",
                    "src": "1810:56:29",
                    "text": "@notice Epoch timestamp when beacon period can start"
                  },
                  "id": 5330,
                  "mutability": "mutable",
                  "name": "beaconPeriodStartedAt",
                  "nameLocation": "1887:21:29",
                  "nodeType": "VariableDeclaration",
                  "scope": 6167,
                  "src": "1871:37:29",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint64",
                    "typeString": "uint64"
                  },
                  "typeName": {
                    "id": 5329,
                    "name": "uint64",
                    "nodeType": "ElementaryTypeName",
                    "src": "1871:6:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint64",
                      "typeString": "uint64"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5331,
                    "nodeType": "StructuredDocumentation",
                    "src": "1915:161:29",
                    "text": " @notice Next Draw ID to use when pushing a Draw onto DrawBuffer\n @dev Starts at 1. This way we know that no Draw has been recorded at 0."
                  },
                  "id": 5333,
                  "mutability": "mutable",
                  "name": "nextDrawId",
                  "nameLocation": "2097:10:29",
                  "nodeType": "VariableDeclaration",
                  "scope": 6167,
                  "src": "2081:26:29",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint32",
                    "typeString": "uint32"
                  },
                  "typeName": {
                    "id": 5332,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "2081:6:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "canonicalName": "DrawBeacon.RngRequest",
                  "id": 5340,
                  "members": [
                    {
                      "constant": false,
                      "id": 5335,
                      "mutability": "mutable",
                      "name": "id",
                      "nameLocation": "2401:2:29",
                      "nodeType": "VariableDeclaration",
                      "scope": 5340,
                      "src": "2394:9:29",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 5334,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "2394:6:29",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 5337,
                      "mutability": "mutable",
                      "name": "lockBlock",
                      "nameLocation": "2420:9:29",
                      "nodeType": "VariableDeclaration",
                      "scope": 5340,
                      "src": "2413:16:29",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 5336,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "2413:6:29",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 5339,
                      "mutability": "mutable",
                      "name": "requestedAt",
                      "nameLocation": "2446:11:29",
                      "nodeType": "VariableDeclaration",
                      "scope": 5340,
                      "src": "2439:18:29",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint64",
                        "typeString": "uint64"
                      },
                      "typeName": {
                        "id": 5338,
                        "name": "uint64",
                        "nodeType": "ElementaryTypeName",
                        "src": "2439:6:29",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "RngRequest",
                  "nameLocation": "2373:10:29",
                  "nodeType": "StructDefinition",
                  "scope": 6167,
                  "src": "2366:98:29",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 5341,
                    "nodeType": "StructuredDocumentation",
                    "src": "2514:232:29",
                    "text": " @notice Emit when the DrawBeacon is deployed.\n @param nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\n @param beaconPeriodStartedAt Timestamp when beacon period starts."
                  },
                  "id": 5347,
                  "name": "Deployed",
                  "nameLocation": "2757:8:29",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 5346,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5343,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "nextDrawId",
                        "nameLocation": "2782:10:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5347,
                        "src": "2775:17:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5342,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2775:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5345,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "beaconPeriodStartedAt",
                        "nameLocation": "2809:21:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5347,
                        "src": "2802:28:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5344,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2802:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2765:71:29"
                  },
                  "src": "2751:86:29"
                },
                {
                  "body": {
                    "id": 5353,
                    "nodeType": "Block",
                    "src": "2923:52:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 5349,
                            "name": "_requireDrawNotStarted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6070,
                            "src": "2933:22:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$__$",
                              "typeString": "function () view"
                            }
                          },
                          "id": 5350,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2933:24:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5351,
                        "nodeType": "ExpressionStatement",
                        "src": "2933:24:29"
                      },
                      {
                        "id": 5352,
                        "nodeType": "PlaceholderStatement",
                        "src": "2967:1:29"
                      }
                    ]
                  },
                  "id": 5354,
                  "name": "requireDrawNotStarted",
                  "nameLocation": "2899:21:29",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 5348,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2920:2:29"
                  },
                  "src": "2890:85:29",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5370,
                    "nodeType": "Block",
                    "src": "3012:167:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 5357,
                                "name": "_isBeaconPeriodOver",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6047,
                                "src": "3030:19:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                  "typeString": "function () view returns (bool)"
                                }
                              },
                              "id": 5358,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3030:21:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d6e6f742d6f766572",
                              "id": 5359,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3053:35:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c11cf851f1db5cba405210987a8cab160410ee1c3cd1333983ce975b7fceef19",
                                "typeString": "literal_string \"DrawBeacon/beacon-period-not-over\""
                              },
                              "value": "DrawBeacon/beacon-period-not-over"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c11cf851f1db5cba405210987a8cab160410ee1c3cd1333983ce975b7fceef19",
                                "typeString": "literal_string \"DrawBeacon/beacon-period-not-over\""
                              }
                            ],
                            "id": 5356,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3022:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5360,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3022:67:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5361,
                        "nodeType": "ExpressionStatement",
                        "src": "3022:67:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5365,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "UnaryOperation",
                              "operator": "!",
                              "prefix": true,
                              "src": "3107:17:29",
                              "subExpression": {
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "id": 5363,
                                  "name": "isRngRequested",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5498,
                                  "src": "3108:14:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                    "typeString": "function () view returns (bool)"
                                  }
                                },
                                "id": 5364,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3108:16:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d616c72656164792d726571756573746564",
                              "id": 5366,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3126:34:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2e18d8e745e19c95f7142708d51d3a5265c91aa34e14edc112d4234ceabbb69d",
                                "typeString": "literal_string \"DrawBeacon/rng-already-requested\""
                              },
                              "value": "DrawBeacon/rng-already-requested"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2e18d8e745e19c95f7142708d51d3a5265c91aa34e14edc112d4234ceabbb69d",
                                "typeString": "literal_string \"DrawBeacon/rng-already-requested\""
                              }
                            ],
                            "id": 5362,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3099:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5367,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3099:62:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5368,
                        "nodeType": "ExpressionStatement",
                        "src": "3099:62:29"
                      },
                      {
                        "id": 5369,
                        "nodeType": "PlaceholderStatement",
                        "src": "3171:1:29"
                      }
                    ]
                  },
                  "id": 5371,
                  "name": "requireCanStartDraw",
                  "nameLocation": "2990:19:29",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 5355,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3009:2:29"
                  },
                  "src": "2981:198:29",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5386,
                    "nodeType": "Block",
                    "src": "3225:151:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 5374,
                                "name": "isRngRequested",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5498,
                                "src": "3243:14:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                  "typeString": "function () view returns (bool)"
                                }
                              },
                              "id": 5375,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3243:16:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d6e6f742d726571756573746564",
                              "id": 5376,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3261:30:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2c3630652afe1a04dd2231790fc99ffb459bdb7330f49c8f20817dc286484280",
                                "typeString": "literal_string \"DrawBeacon/rng-not-requested\""
                              },
                              "value": "DrawBeacon/rng-not-requested"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2c3630652afe1a04dd2231790fc99ffb459bdb7330f49c8f20817dc286484280",
                                "typeString": "literal_string \"DrawBeacon/rng-not-requested\""
                              }
                            ],
                            "id": 5373,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3235:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5377,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3235:57:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5378,
                        "nodeType": "ExpressionStatement",
                        "src": "3235:57:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 5380,
                                "name": "isRngCompleted",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5485,
                                "src": "3310:14:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                  "typeString": "function () view returns (bool)"
                                }
                              },
                              "id": 5381,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3310:16:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d6e6f742d636f6d706c657465",
                              "id": 5382,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3328:29:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_60fe4ea05210616f96b292a0bef542d8f4e15701730bf655ba6a82515973dbfe",
                                "typeString": "literal_string \"DrawBeacon/rng-not-complete\""
                              },
                              "value": "DrawBeacon/rng-not-complete"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_60fe4ea05210616f96b292a0bef542d8f4e15701730bf655ba6a82515973dbfe",
                                "typeString": "literal_string \"DrawBeacon/rng-not-complete\""
                              }
                            ],
                            "id": 5379,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3302:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5383,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3302:56:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5384,
                        "nodeType": "ExpressionStatement",
                        "src": "3302:56:29"
                      },
                      {
                        "id": 5385,
                        "nodeType": "PlaceholderStatement",
                        "src": "3368:1:29"
                      }
                    ]
                  },
                  "id": 5387,
                  "name": "requireCanCompleteRngRequest",
                  "nameLocation": "3194:28:29",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 5372,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3222:2:29"
                  },
                  "src": "3185:191:29",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5470,
                    "nodeType": "Block",
                    "src": "4169:595:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              "id": 5413,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 5411,
                                "name": "_beaconPeriodStart",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5400,
                                "src": "4187:18:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 5412,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4208:1:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "4187:22:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d677265617465722d7468616e2d7a65726f",
                              "id": 5414,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4211:44:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df",
                                "typeString": "literal_string \"DrawBeacon/beacon-period-greater-than-zero\""
                              },
                              "value": "DrawBeacon/beacon-period-greater-than-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df",
                                "typeString": "literal_string \"DrawBeacon/beacon-period-greater-than-zero\""
                              }
                            ],
                            "id": 5410,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4179:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5415,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4179:77:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5416,
                        "nodeType": "ExpressionStatement",
                        "src": "4179:77:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 5426,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 5420,
                                    "name": "_rng",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5396,
                                    "src": "4282:4:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_RNGInterface_$4142",
                                      "typeString": "contract RNGInterface"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_RNGInterface_$4142",
                                      "typeString": "contract RNGInterface"
                                    }
                                  ],
                                  "id": 5419,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4274:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 5418,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4274:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 5421,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4274:13:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 5424,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "4299:1:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 5423,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4291:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 5422,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4291:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 5425,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4291:10:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "4274:27:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d6e6f742d7a65726f",
                              "id": 5427,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4303:25:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_d15f1d335d4e5d31fe5a2ef60ebf117a328854d80ecc8b909c3df0aa87e4a529",
                                "typeString": "literal_string \"DrawBeacon/rng-not-zero\""
                              },
                              "value": "DrawBeacon/rng-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_d15f1d335d4e5d31fe5a2ef60ebf117a328854d80ecc8b909c3df0aa87e4a529",
                                "typeString": "literal_string \"DrawBeacon/rng-not-zero\""
                              }
                            ],
                            "id": 5417,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4266:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5428,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4266:63:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5429,
                        "nodeType": "ExpressionStatement",
                        "src": "4266:63:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 5433,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 5431,
                                "name": "_nextDrawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5398,
                                "src": "4347:11:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 5432,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4362:1:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "4347:16:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f6e6578742d647261772d69642d6774652d6f6e65",
                              "id": 5434,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4365:33:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2e1f6f2153738bab0f111b529052ab9d11cec8be1adca6d957057b7794d36189",
                                "typeString": "literal_string \"DrawBeacon/next-draw-id-gte-one\""
                              },
                              "value": "DrawBeacon/next-draw-id-gte-one"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2e1f6f2153738bab0f111b529052ab9d11cec8be1adca6d957057b7794d36189",
                                "typeString": "literal_string \"DrawBeacon/next-draw-id-gte-one\""
                              }
                            ],
                            "id": 5430,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4339:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5435,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4339:60:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5436,
                        "nodeType": "ExpressionStatement",
                        "src": "4339:60:29"
                      },
                      {
                        "expression": {
                          "id": 5439,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5437,
                            "name": "beaconPeriodStartedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5330,
                            "src": "4410:21:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5438,
                            "name": "_beaconPeriodStart",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5400,
                            "src": "4434:18:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "4410:42:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "id": 5440,
                        "nodeType": "ExpressionStatement",
                        "src": "4410:42:29"
                      },
                      {
                        "expression": {
                          "id": 5443,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5441,
                            "name": "nextDrawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5333,
                            "src": "4462:10:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5442,
                            "name": "_nextDrawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5398,
                            "src": "4475:11:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "4462:24:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 5444,
                        "nodeType": "ExpressionStatement",
                        "src": "4462:24:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5446,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5402,
                              "src": "4521:20:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 5445,
                            "name": "_setBeaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6144,
                            "src": "4497:23:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 5447,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4497:45:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5448,
                        "nodeType": "ExpressionStatement",
                        "src": "4497:45:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5450,
                              "name": "_drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5393,
                              "src": "4567:11:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              }
                            ],
                            "id": 5449,
                            "name": "_setDrawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6122,
                            "src": "4552:14:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IDrawBuffer_$11318_$returns$_t_contract$_IDrawBuffer_$11318_$",
                              "typeString": "function (contract IDrawBuffer) returns (contract IDrawBuffer)"
                            }
                          },
                          "id": 5451,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4552:27:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "id": 5452,
                        "nodeType": "ExpressionStatement",
                        "src": "4552:27:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5454,
                              "name": "_rng",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5396,
                              "src": "4604:4:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$4142",
                                "typeString": "contract RNGInterface"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_RNGInterface_$4142",
                                "typeString": "contract RNGInterface"
                              }
                            ],
                            "id": 5453,
                            "name": "_setRngService",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5953,
                            "src": "4589:14:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_RNGInterface_$4142_$returns$__$",
                              "typeString": "function (contract RNGInterface)"
                            }
                          },
                          "id": 5455,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4589:20:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5456,
                        "nodeType": "ExpressionStatement",
                        "src": "4589:20:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5458,
                              "name": "_rngTimeout",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5404,
                              "src": "4634:11:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 5457,
                            "name": "_setRngTimeout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6166,
                            "src": "4619:14:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 5459,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4619:27:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5460,
                        "nodeType": "ExpressionStatement",
                        "src": "4619:27:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5462,
                              "name": "_nextDrawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5398,
                              "src": "4671:11:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 5463,
                              "name": "_beaconPeriodStart",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5400,
                              "src": "4684:18:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 5461,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5347,
                            "src": "4662:8:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_uint64_$returns$__$",
                              "typeString": "function (uint32,uint64)"
                            }
                          },
                          "id": 5464,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4662:41:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5465,
                        "nodeType": "EmitStatement",
                        "src": "4657:46:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5467,
                              "name": "_beaconPeriodStart",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5400,
                              "src": "4738:18:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 5466,
                            "name": "BeaconPeriodStarted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11096,
                            "src": "4718:19:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint64_$returns$__$",
                              "typeString": "function (uint64)"
                            }
                          },
                          "id": 5468,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4718:39:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5469,
                        "nodeType": "EmitStatement",
                        "src": "4713:44:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5388,
                    "nodeType": "StructuredDocumentation",
                    "src": "3431:487:29",
                    "text": " @notice Deploy the DrawBeacon smart contract.\n @param _owner Address of the DrawBeacon owner\n @param _drawBuffer The address of the draw buffer to push draws to\n @param _rng The RNG service to use\n @param _nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\n @param _beaconPeriodStart The starting timestamp of the beacon period.\n @param _beaconPeriodSeconds The duration of the beacon period in seconds"
                  },
                  "id": 5471,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 5407,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5390,
                          "src": "4161:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 5408,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 5406,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4086,
                        "src": "4153:7:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4153:15:29"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5405,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5390,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "3952:6:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5471,
                        "src": "3944:14:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5389,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3944:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5393,
                        "mutability": "mutable",
                        "name": "_drawBuffer",
                        "nameLocation": "3980:11:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5471,
                        "src": "3968:23:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 5392,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5391,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "3968:11:29"
                          },
                          "referencedDeclaration": 11318,
                          "src": "3968:11:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5396,
                        "mutability": "mutable",
                        "name": "_rng",
                        "nameLocation": "4014:4:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5471,
                        "src": "4001:17:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$4142",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 5395,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5394,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 4142,
                            "src": "4001:12:29"
                          },
                          "referencedDeclaration": 4142,
                          "src": "4001:12:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$4142",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5398,
                        "mutability": "mutable",
                        "name": "_nextDrawId",
                        "nameLocation": "4035:11:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5471,
                        "src": "4028:18:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5397,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4028:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5400,
                        "mutability": "mutable",
                        "name": "_beaconPeriodStart",
                        "nameLocation": "4063:18:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5471,
                        "src": "4056:25:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5399,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "4056:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5402,
                        "mutability": "mutable",
                        "name": "_beaconPeriodSeconds",
                        "nameLocation": "4098:20:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5471,
                        "src": "4091:27:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5401,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4091:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5404,
                        "mutability": "mutable",
                        "name": "_rngTimeout",
                        "nameLocation": "4135:11:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5471,
                        "src": "4128:18:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5403,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4128:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3934:218:29"
                  },
                  "returnParameters": {
                    "id": 5409,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4169:0:29"
                  },
                  "scope": 6167,
                  "src": "3923:841:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11195
                  ],
                  "body": {
                    "id": 5484,
                    "nodeType": "Block",
                    "src": "5053:60:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 5480,
                                "name": "rngRequest",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5317,
                                "src": "5092:10:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                                  "typeString": "struct DrawBeacon.RngRequest storage ref"
                                }
                              },
                              "id": 5481,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "id",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 5335,
                              "src": "5092:13:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 5478,
                              "name": "rng",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5313,
                              "src": "5070:3:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$4142",
                                "typeString": "contract RNGInterface"
                              }
                            },
                            "id": 5479,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "isRequestComplete",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4133,
                            "src": "5070:21:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_uint32_$returns$_t_bool_$",
                              "typeString": "function (uint32) view external returns (bool)"
                            }
                          },
                          "id": 5482,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5070:36:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 5477,
                        "id": 5483,
                        "nodeType": "Return",
                        "src": "5063:43:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5472,
                    "nodeType": "StructuredDocumentation",
                    "src": "4824:162:29",
                    "text": " @notice Returns whether the random number request has completed.\n @return True if a random number request has completed, false otherwise."
                  },
                  "functionSelector": "4aba4f6b",
                  "id": 5485,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngCompleted",
                  "nameLocation": "5000:14:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5474,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5029:8:29"
                  },
                  "parameters": {
                    "id": 5473,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5014:2:29"
                  },
                  "returnParameters": {
                    "id": 5477,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5476,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5485,
                        "src": "5047:4:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 5475,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5047:4:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5046:6:29"
                  },
                  "scope": 6167,
                  "src": "4991:122:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11201
                  ],
                  "body": {
                    "id": 5497,
                    "nodeType": "Block",
                    "src": "5339:42:29",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 5495,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 5492,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5317,
                              "src": "5356:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 5493,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "id",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 5335,
                            "src": "5356:13:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 5494,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5373:1:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "5356:18:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 5491,
                        "id": 5496,
                        "nodeType": "Return",
                        "src": "5349:25:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5486,
                    "nodeType": "StructuredDocumentation",
                    "src": "5119:153:29",
                    "text": " @notice Returns whether a random number has been requested\n @return True if a random number has been requested, false otherwise."
                  },
                  "functionSelector": "111070e4",
                  "id": 5498,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngRequested",
                  "nameLocation": "5286:14:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5488,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5315:8:29"
                  },
                  "parameters": {
                    "id": 5487,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5300:2:29"
                  },
                  "returnParameters": {
                    "id": 5491,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5490,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5498,
                        "src": "5333:4:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 5489,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5333:4:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5332:6:29"
                  },
                  "scope": 6167,
                  "src": "5277:104:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11207
                  ],
                  "body": {
                    "id": 5522,
                    "nodeType": "Block",
                    "src": "5615:176:29",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 5508,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 5505,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5317,
                              "src": "5629:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 5506,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "requestedAt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 5339,
                            "src": "5629:22:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 5507,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5655:1:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "5629:27:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 5520,
                          "nodeType": "Block",
                          "src": "5701:84:29",
                          "statements": [
                            {
                              "expression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                },
                                "id": 5518,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  },
                                  "id": 5515,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 5512,
                                    "name": "rngTimeout",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5324,
                                    "src": "5722:10:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "+",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 5513,
                                      "name": "rngRequest",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5317,
                                      "src": "5735:10:29",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                                        "typeString": "struct DrawBeacon.RngRequest storage ref"
                                      }
                                    },
                                    "id": 5514,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "requestedAt",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 5339,
                                    "src": "5735:22:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    }
                                  },
                                  "src": "5722:35:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<",
                                "rightExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 5516,
                                    "name": "_currentTime",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5995,
                                    "src": "5760:12:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                                      "typeString": "function () view returns (uint64)"
                                    }
                                  },
                                  "id": 5517,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "5760:14:29",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "src": "5722:52:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "functionReturnParameters": 5504,
                              "id": 5519,
                              "nodeType": "Return",
                              "src": "5715:59:29"
                            }
                          ]
                        },
                        "id": 5521,
                        "nodeType": "IfStatement",
                        "src": "5625:160:29",
                        "trueBody": {
                          "id": 5511,
                          "nodeType": "Block",
                          "src": "5658:37:29",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "66616c7365",
                                "id": 5509,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "bool",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "5679:5:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "value": "false"
                              },
                              "functionReturnParameters": 5504,
                              "id": 5510,
                              "nodeType": "Return",
                              "src": "5672:12:29"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5499,
                    "nodeType": "StructuredDocumentation",
                    "src": "5387:162:29",
                    "text": " @notice Returns whether the random number request has timed out.\n @return True if a random number request has timed out, false otherwise."
                  },
                  "functionSelector": "738bbea8",
                  "id": 5523,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngTimedOut",
                  "nameLocation": "5563:13:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5501,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5591:8:29"
                  },
                  "parameters": {
                    "id": 5500,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5576:2:29"
                  },
                  "returnParameters": {
                    "id": 5504,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5503,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5523,
                        "src": "5609:4:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 5502,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5609:4:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5608:6:29"
                  },
                  "scope": 6167,
                  "src": "5554:237:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11149
                  ],
                  "body": {
                    "id": 5537,
                    "nodeType": "Block",
                    "src": "5947:66:29",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 5535,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 5530,
                              "name": "_isBeaconPeriodOver",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6047,
                              "src": "5964:19:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                "typeString": "function () view returns (bool)"
                              }
                            },
                            "id": 5531,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "5964:21:29",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "id": 5534,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "!",
                            "prefix": true,
                            "src": "5989:17:29",
                            "subExpression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 5532,
                                "name": "isRngRequested",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5498,
                                "src": "5990:14:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                  "typeString": "function () view returns (bool)"
                                }
                              },
                              "id": 5533,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5990:16:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "5964:42:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 5529,
                        "id": 5536,
                        "nodeType": "Return",
                        "src": "5957:49:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5524,
                    "nodeType": "StructuredDocumentation",
                    "src": "5853:27:29",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "0996f6e1",
                  "id": 5538,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canStartDraw",
                  "nameLocation": "5894:12:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5526,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5923:8:29"
                  },
                  "parameters": {
                    "id": 5525,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5906:2:29"
                  },
                  "returnParameters": {
                    "id": 5529,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5528,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5538,
                        "src": "5941:4:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 5527,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5941:4:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5940:6:29"
                  },
                  "scope": 6167,
                  "src": "5885:128:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11155
                  ],
                  "body": {
                    "id": 5551,
                    "nodeType": "Block",
                    "src": "6116:60:29",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 5549,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 5545,
                              "name": "isRngRequested",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5498,
                              "src": "6133:14:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                "typeString": "function () view returns (bool)"
                              }
                            },
                            "id": 5546,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "6133:16:29",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 5547,
                              "name": "isRngCompleted",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5485,
                              "src": "6153:14:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                "typeString": "function () view returns (bool)"
                              }
                            },
                            "id": 5548,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "6153:16:29",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "6133:36:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 5544,
                        "id": 5550,
                        "nodeType": "Return",
                        "src": "6126:43:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5539,
                    "nodeType": "StructuredDocumentation",
                    "src": "6019:27:29",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "e4a75bb8",
                  "id": 5552,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canCompleteDraw",
                  "nameLocation": "6060:15:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5541,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6092:8:29"
                  },
                  "parameters": {
                    "id": 5540,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6075:2:29"
                  },
                  "returnParameters": {
                    "id": 5544,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5543,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5552,
                        "src": "6110:4:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 5542,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "6110:4:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6109:6:29"
                  },
                  "scope": 6167,
                  "src": "6051:125:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 5565,
                    "nodeType": "Block",
                    "src": "6447:193:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5559,
                              "name": "beaconPeriodStartedAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5330,
                              "src": "6529:21:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 5560,
                              "name": "beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5327,
                              "src": "6568:19:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 5561,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5995,
                                "src": "6605:12:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                                  "typeString": "function () view returns (uint64)"
                                }
                              },
                              "id": 5562,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6605:14:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 5558,
                            "name": "_calculateNextBeaconPeriodStartTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5982,
                            "src": "6476:35:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint64_$_t_uint32_$_t_uint64_$returns$_t_uint64_$",
                              "typeString": "function (uint64,uint32,uint64) pure returns (uint64)"
                            }
                          },
                          "id": 5563,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6476:157:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 5557,
                        "id": 5564,
                        "nodeType": "Return",
                        "src": "6457:176:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5553,
                    "nodeType": "StructuredDocumentation",
                    "src": "6182:168:29",
                    "text": "@notice Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now.\n @return The next beacon period start time"
                  },
                  "functionSelector": "89c36f8e",
                  "id": 5566,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculateNextBeaconPeriodStartTimeFromCurrentTime",
                  "nameLocation": "6364:49:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5554,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6413:2:29"
                  },
                  "returnParameters": {
                    "id": 5557,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5556,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5566,
                        "src": "6439:6:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5555,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "6439:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6438:8:29"
                  },
                  "scope": 6167,
                  "src": "6355:285:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11163
                  ],
                  "body": {
                    "id": 5581,
                    "nodeType": "Block",
                    "src": "6812:184:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5576,
                              "name": "beaconPeriodStartedAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5330,
                              "src": "6894:21:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 5577,
                              "name": "beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5327,
                              "src": "6933:19:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 5578,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5569,
                              "src": "6970:5:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 5575,
                            "name": "_calculateNextBeaconPeriodStartTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5982,
                            "src": "6841:35:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint64_$_t_uint32_$_t_uint64_$returns$_t_uint64_$",
                              "typeString": "function (uint64,uint32,uint64) pure returns (uint64)"
                            }
                          },
                          "id": 5579,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6841:148:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 5574,
                        "id": 5580,
                        "nodeType": "Return",
                        "src": "6822:167:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5567,
                    "nodeType": "StructuredDocumentation",
                    "src": "6646:27:29",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "a3ae35ab",
                  "id": 5582,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculateNextBeaconPeriodStartTime",
                  "nameLocation": "6687:34:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5571,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6774:8:29"
                  },
                  "parameters": {
                    "id": 5570,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5569,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "6729:5:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5582,
                        "src": "6722:12:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5568,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "6722:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6721:14:29"
                  },
                  "returnParameters": {
                    "id": 5574,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5573,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5582,
                        "src": "6800:6:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5572,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "6800:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6799:8:29"
                  },
                  "scope": 6167,
                  "src": "6678:318:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11167
                  ],
                  "body": {
                    "id": 5611,
                    "nodeType": "Block",
                    "src": "7074:240:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 5588,
                                "name": "isRngTimedOut",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5523,
                                "src": "7092:13:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                  "typeString": "function () view returns (bool)"
                                }
                              },
                              "id": 5589,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "7092:15:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d6e6f742d74696d65646f7574",
                              "id": 5590,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7109:29:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_bc38701987d08ad045946a7ffa6b0638aef3d414cf835a4d20b4244572e13448",
                                "typeString": "literal_string \"DrawBeacon/rng-not-timedout\""
                              },
                              "value": "DrawBeacon/rng-not-timedout"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_bc38701987d08ad045946a7ffa6b0638aef3d414cf835a4d20b4244572e13448",
                                "typeString": "literal_string \"DrawBeacon/rng-not-timedout\""
                              }
                            ],
                            "id": 5587,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7084:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5591,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7084:55:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5592,
                        "nodeType": "ExpressionStatement",
                        "src": "7084:55:29"
                      },
                      {
                        "assignments": [
                          5594
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5594,
                            "mutability": "mutable",
                            "name": "requestId",
                            "nameLocation": "7156:9:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 5611,
                            "src": "7149:16:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 5593,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "7149:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5597,
                        "initialValue": {
                          "expression": {
                            "id": 5595,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5317,
                            "src": "7168:10:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "id": 5596,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "id",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 5335,
                          "src": "7168:13:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7149:32:29"
                      },
                      {
                        "assignments": [
                          5599
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5599,
                            "mutability": "mutable",
                            "name": "lockBlock",
                            "nameLocation": "7198:9:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 5611,
                            "src": "7191:16:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 5598,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "7191:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5602,
                        "initialValue": {
                          "expression": {
                            "id": 5600,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5317,
                            "src": "7210:10:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "id": 5601,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "lockBlock",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 5337,
                          "src": "7210:20:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7191:39:29"
                      },
                      {
                        "expression": {
                          "id": 5604,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "delete",
                          "prefix": true,
                          "src": "7240:17:29",
                          "subExpression": {
                            "id": 5603,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5317,
                            "src": "7247:10:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5605,
                        "nodeType": "ExpressionStatement",
                        "src": "7240:17:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5607,
                              "name": "requestId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5594,
                              "src": "7286:9:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 5608,
                              "name": "lockBlock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5599,
                              "src": "7297:9:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 5606,
                            "name": "DrawCancelled",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11110,
                            "src": "7272:13:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_uint32_$returns$__$",
                              "typeString": "function (uint32,uint32)"
                            }
                          },
                          "id": 5609,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7272:35:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5610,
                        "nodeType": "EmitStatement",
                        "src": "7267:40:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5583,
                    "nodeType": "StructuredDocumentation",
                    "src": "7002:27:29",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "412a616a",
                  "id": 5612,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "cancelDraw",
                  "nameLocation": "7043:10:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5585,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "7065:8:29"
                  },
                  "parameters": {
                    "id": 5584,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7053:2:29"
                  },
                  "returnParameters": {
                    "id": 5586,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7074:0:29"
                  },
                  "scope": 6167,
                  "src": "7034:280:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11171
                  ],
                  "body": {
                    "id": 5694,
                    "nodeType": "Block",
                    "src": "7423:1306:29",
                    "statements": [
                      {
                        "assignments": [
                          5620
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5620,
                            "mutability": "mutable",
                            "name": "randomNumber",
                            "nameLocation": "7441:12:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 5694,
                            "src": "7433:20:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 5619,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7433:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5626,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 5623,
                                "name": "rngRequest",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5317,
                                "src": "7473:10:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                                  "typeString": "struct DrawBeacon.RngRequest storage ref"
                                }
                              },
                              "id": 5624,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "id",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 5335,
                              "src": "7473:13:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 5621,
                              "name": "rng",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5313,
                              "src": "7456:3:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$4142",
                                "typeString": "contract RNGInterface"
                              }
                            },
                            "id": 5622,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "randomNumber",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4141,
                            "src": "7456:16:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (uint32) external returns (uint256)"
                            }
                          },
                          "id": 5625,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7456:31:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7433:54:29"
                      },
                      {
                        "assignments": [
                          5628
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5628,
                            "mutability": "mutable",
                            "name": "_nextDrawId",
                            "nameLocation": "7504:11:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 5694,
                            "src": "7497:18:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 5627,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "7497:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5630,
                        "initialValue": {
                          "id": 5629,
                          "name": "nextDrawId",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5333,
                          "src": "7518:10:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7497:31:29"
                      },
                      {
                        "assignments": [
                          5632
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5632,
                            "mutability": "mutable",
                            "name": "_beaconPeriodStartedAt",
                            "nameLocation": "7545:22:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 5694,
                            "src": "7538:29:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 5631,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "7538:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5634,
                        "initialValue": {
                          "id": 5633,
                          "name": "beaconPeriodStartedAt",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5330,
                          "src": "7570:21:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7538:53:29"
                      },
                      {
                        "assignments": [
                          5636
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5636,
                            "mutability": "mutable",
                            "name": "_beaconPeriodSeconds",
                            "nameLocation": "7608:20:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 5694,
                            "src": "7601:27:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 5635,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "7601:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5638,
                        "initialValue": {
                          "id": 5637,
                          "name": "beaconPeriodSeconds",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5327,
                          "src": "7631:19:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7601:49:29"
                      },
                      {
                        "assignments": [
                          5640
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5640,
                            "mutability": "mutable",
                            "name": "_time",
                            "nameLocation": "7667:5:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 5694,
                            "src": "7660:12:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 5639,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "7660:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5643,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 5641,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5995,
                            "src": "7675:12:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 5642,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7675:14:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7660:29:29"
                      },
                      {
                        "assignments": [
                          5648
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5648,
                            "mutability": "mutable",
                            "name": "_draw",
                            "nameLocation": "7754:5:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 5694,
                            "src": "7730:29:29",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            },
                            "typeName": {
                              "id": 5647,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 5646,
                                "name": "IDrawBeacon.Draw",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11085,
                                "src": "7730:16:29"
                              },
                              "referencedDeclaration": 11085,
                              "src": "7730:16:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5658,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 5651,
                              "name": "randomNumber",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5620,
                              "src": "7814:12:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 5652,
                              "name": "_nextDrawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5628,
                              "src": "7848:11:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 5653,
                                "name": "rngRequest",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5317,
                                "src": "7884:10:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                                  "typeString": "struct DrawBeacon.RngRequest storage ref"
                                }
                              },
                              "id": 5654,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "requestedAt",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 5339,
                              "src": "7884:22:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 5655,
                              "name": "_beaconPeriodStartedAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5632,
                              "src": "8007:22:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 5656,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5636,
                              "src": "8064:20:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 5649,
                              "name": "IDrawBeacon",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11241,
                              "src": "7762:11:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_IDrawBeacon_$11241_$",
                                "typeString": "type(contract IDrawBeacon)"
                              }
                            },
                            "id": 5650,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "Draw",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11085,
                            "src": "7762:16:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_Draw_$11085_storage_ptr_$",
                              "typeString": "type(struct IDrawBeacon.Draw storage pointer)"
                            }
                          },
                          "id": 5657,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [
                            "winningRandomNumber",
                            "drawId",
                            "timestamp",
                            "beaconPeriodStartedAt",
                            "beaconPeriodSeconds"
                          ],
                          "nodeType": "FunctionCall",
                          "src": "7762:333:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7730:365:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5662,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5648,
                              "src": "8126:5:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "expression": {
                              "id": 5659,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5321,
                              "src": "8106:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 5661,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushDraw",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11308,
                            "src": "8106:19:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_struct$_Draw_$11085_memory_ptr_$returns$_t_uint32_$",
                              "typeString": "function (struct IDrawBeacon.Draw memory) external returns (uint32)"
                            }
                          },
                          "id": 5663,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8106:26:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 5664,
                        "nodeType": "ExpressionStatement",
                        "src": "8106:26:29"
                      },
                      {
                        "assignments": [
                          5666
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5666,
                            "mutability": "mutable",
                            "name": "nextBeaconPeriodStartedAt",
                            "nameLocation": "8259:25:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 5694,
                            "src": "8252:32:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 5665,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "8252:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5672,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 5668,
                              "name": "_beaconPeriodStartedAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5632,
                              "src": "8336:22:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 5669,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5636,
                              "src": "8372:20:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 5670,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5640,
                              "src": "8406:5:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 5667,
                            "name": "_calculateNextBeaconPeriodStartTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5982,
                            "src": "8287:35:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint64_$_t_uint32_$_t_uint64_$returns$_t_uint64_$",
                              "typeString": "function (uint64,uint32,uint64) pure returns (uint64)"
                            }
                          },
                          "id": 5671,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8287:134:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8252:169:29"
                      },
                      {
                        "expression": {
                          "id": 5675,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5673,
                            "name": "beaconPeriodStartedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5330,
                            "src": "8431:21:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5674,
                            "name": "nextBeaconPeriodStartedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5666,
                            "src": "8455:25:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "8431:49:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "id": 5676,
                        "nodeType": "ExpressionStatement",
                        "src": "8431:49:29"
                      },
                      {
                        "expression": {
                          "id": 5681,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5677,
                            "name": "nextDrawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5333,
                            "src": "8490:10:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 5680,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 5678,
                              "name": "_nextDrawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5628,
                              "src": "8503:11:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "hexValue": "31",
                              "id": 5679,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8517:1:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "src": "8503:15:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "8490:28:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 5682,
                        "nodeType": "ExpressionStatement",
                        "src": "8490:28:29"
                      },
                      {
                        "expression": {
                          "id": 5684,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "delete",
                          "prefix": true,
                          "src": "8601:17:29",
                          "subExpression": {
                            "id": 5683,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5317,
                            "src": "8608:10:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5685,
                        "nodeType": "ExpressionStatement",
                        "src": "8601:17:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5687,
                              "name": "randomNumber",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5620,
                              "src": "8648:12:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5686,
                            "name": "DrawCompleted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11115,
                            "src": "8634:13:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 5688,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8634:27:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5689,
                        "nodeType": "EmitStatement",
                        "src": "8629:32:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5691,
                              "name": "nextBeaconPeriodStartedAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5666,
                              "src": "8696:25:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 5690,
                            "name": "BeaconPeriodStarted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11096,
                            "src": "8676:19:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint64_$returns$__$",
                              "typeString": "function (uint64)"
                            }
                          },
                          "id": 5692,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8676:46:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5693,
                        "nodeType": "EmitStatement",
                        "src": "8671:51:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5613,
                    "nodeType": "StructuredDocumentation",
                    "src": "7320:27:29",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "0bdeecbd",
                  "id": 5695,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5617,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5616,
                        "name": "requireCanCompleteRngRequest",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5387,
                        "src": "7394:28:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "7394:28:29"
                    }
                  ],
                  "name": "completeDraw",
                  "nameLocation": "7361:12:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5615,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "7385:8:29"
                  },
                  "parameters": {
                    "id": 5614,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7373:2:29"
                  },
                  "returnParameters": {
                    "id": 5618,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7423:0:29"
                  },
                  "scope": 6167,
                  "src": "7352:1377:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11137
                  ],
                  "body": {
                    "id": 5705,
                    "nodeType": "Block",
                    "src": "8847:55:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 5702,
                            "name": "_beaconPeriodRemainingSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6034,
                            "src": "8864:29:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 5703,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8864:31:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 5701,
                        "id": 5704,
                        "nodeType": "Return",
                        "src": "8857:38:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5696,
                    "nodeType": "StructuredDocumentation",
                    "src": "8735:27:29",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "75e38f16",
                  "id": 5706,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "beaconPeriodRemainingSeconds",
                  "nameLocation": "8776:28:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5698,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "8821:8:29"
                  },
                  "parameters": {
                    "id": 5697,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8804:2:29"
                  },
                  "returnParameters": {
                    "id": 5701,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5700,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5706,
                        "src": "8839:6:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5699,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "8839:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8838:8:29"
                  },
                  "scope": 6167,
                  "src": "8767:135:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11143
                  ],
                  "body": {
                    "id": 5716,
                    "nodeType": "Block",
                    "src": "9009:44:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 5713,
                            "name": "_beaconPeriodEndAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6006,
                            "src": "9026:18:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 5714,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9026:20:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 5712,
                        "id": 5715,
                        "nodeType": "Return",
                        "src": "9019:27:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5707,
                    "nodeType": "StructuredDocumentation",
                    "src": "8908:27:29",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "a104fd79",
                  "id": 5717,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "beaconPeriodEndAt",
                  "nameLocation": "8949:17:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5709,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "8983:8:29"
                  },
                  "parameters": {
                    "id": 5708,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8966:2:29"
                  },
                  "returnParameters": {
                    "id": 5712,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5711,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5717,
                        "src": "9001:6:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5710,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "9001:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9000:8:29"
                  },
                  "scope": 6167,
                  "src": "8940:113:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 5724,
                    "nodeType": "Block",
                    "src": "9124:43:29",
                    "statements": [
                      {
                        "expression": {
                          "id": 5722,
                          "name": "beaconPeriodSeconds",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5327,
                          "src": "9141:19:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 5721,
                        "id": 5723,
                        "nodeType": "Return",
                        "src": "9134:26:29"
                      }
                    ]
                  },
                  "functionSelector": "3e7a3908",
                  "id": 5725,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBeaconPeriodSeconds",
                  "nameLocation": "9068:22:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5718,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9090:2:29"
                  },
                  "returnParameters": {
                    "id": 5721,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5720,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5725,
                        "src": "9116:6:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5719,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9116:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9115:8:29"
                  },
                  "scope": 6167,
                  "src": "9059:108:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 5732,
                    "nodeType": "Block",
                    "src": "9240:45:29",
                    "statements": [
                      {
                        "expression": {
                          "id": 5730,
                          "name": "beaconPeriodStartedAt",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5330,
                          "src": "9257:21:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 5729,
                        "id": 5731,
                        "nodeType": "Return",
                        "src": "9250:28:29"
                      }
                    ]
                  },
                  "functionSelector": "39f92c30",
                  "id": 5733,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBeaconPeriodStartedAt",
                  "nameLocation": "9182:24:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5726,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9206:2:29"
                  },
                  "returnParameters": {
                    "id": 5729,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5728,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5733,
                        "src": "9232:6:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5727,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "9232:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9231:8:29"
                  },
                  "scope": 6167,
                  "src": "9173:112:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 5741,
                    "nodeType": "Block",
                    "src": "9352:34:29",
                    "statements": [
                      {
                        "expression": {
                          "id": 5739,
                          "name": "drawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5321,
                          "src": "9369:10:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "functionReturnParameters": 5738,
                        "id": 5740,
                        "nodeType": "Return",
                        "src": "9362:17:29"
                      }
                    ]
                  },
                  "functionSelector": "4019f2d6",
                  "id": 5742,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawBuffer",
                  "nameLocation": "9300:13:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5734,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9313:2:29"
                  },
                  "returnParameters": {
                    "id": 5738,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5737,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5742,
                        "src": "9339:11:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 5736,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5735,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "9339:11:29"
                          },
                          "referencedDeclaration": 11318,
                          "src": "9339:11:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9338:13:29"
                  },
                  "scope": 6167,
                  "src": "9291:95:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 5749,
                    "nodeType": "Block",
                    "src": "9448:34:29",
                    "statements": [
                      {
                        "expression": {
                          "id": 5747,
                          "name": "nextDrawId",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5333,
                          "src": "9465:10:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 5746,
                        "id": 5748,
                        "nodeType": "Return",
                        "src": "9458:17:29"
                      }
                    ]
                  },
                  "functionSelector": "c57708c2",
                  "id": 5750,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNextDrawId",
                  "nameLocation": "9401:13:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5743,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9414:2:29"
                  },
                  "returnParameters": {
                    "id": 5746,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5745,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5750,
                        "src": "9440:6:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5744,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9440:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9439:8:29"
                  },
                  "scope": 6167,
                  "src": "9392:90:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11177
                  ],
                  "body": {
                    "id": 5760,
                    "nodeType": "Block",
                    "src": "9591:44:29",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 5757,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5317,
                            "src": "9608:10:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "id": 5758,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "lockBlock",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 5337,
                          "src": "9608:20:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 5756,
                        "id": 5759,
                        "nodeType": "Return",
                        "src": "9601:27:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5751,
                    "nodeType": "StructuredDocumentation",
                    "src": "9488:27:29",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "6bea5344",
                  "id": 5761,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRngLockBlock",
                  "nameLocation": "9529:19:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5753,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9565:8:29"
                  },
                  "parameters": {
                    "id": 5752,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9548:2:29"
                  },
                  "returnParameters": {
                    "id": 5756,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5755,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5761,
                        "src": "9583:6:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5754,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9583:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9582:8:29"
                  },
                  "scope": 6167,
                  "src": "9520:115:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11183
                  ],
                  "body": {
                    "id": 5770,
                    "nodeType": "Block",
                    "src": "9712:37:29",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 5767,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5317,
                            "src": "9729:10:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "id": 5768,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "id",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 5335,
                          "src": "9729:13:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 5766,
                        "id": 5769,
                        "nodeType": "Return",
                        "src": "9722:20:29"
                      }
                    ]
                  },
                  "functionSelector": "2a7ad609",
                  "id": 5771,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRngRequestId",
                  "nameLocation": "9650:19:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5763,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9686:8:29"
                  },
                  "parameters": {
                    "id": 5762,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9669:2:29"
                  },
                  "returnParameters": {
                    "id": 5766,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5765,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5771,
                        "src": "9704:6:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5764,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9704:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9703:8:29"
                  },
                  "scope": 6167,
                  "src": "9641:108:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 5779,
                    "nodeType": "Block",
                    "src": "9817:27:29",
                    "statements": [
                      {
                        "expression": {
                          "id": 5777,
                          "name": "rng",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5313,
                          "src": "9834:3:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$4142",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "functionReturnParameters": 5776,
                        "id": 5778,
                        "nodeType": "Return",
                        "src": "9827:10:29"
                      }
                    ]
                  },
                  "functionSelector": "7ce52b18",
                  "id": 5780,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRngService",
                  "nameLocation": "9764:13:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5772,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9777:2:29"
                  },
                  "returnParameters": {
                    "id": 5776,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5775,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5780,
                        "src": "9803:12:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$4142",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 5774,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5773,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 4142,
                            "src": "9803:12:29"
                          },
                          "referencedDeclaration": 4142,
                          "src": "9803:12:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$4142",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9802:14:29"
                  },
                  "scope": 6167,
                  "src": "9755:89:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 5787,
                    "nodeType": "Block",
                    "src": "9906:34:29",
                    "statements": [
                      {
                        "expression": {
                          "id": 5785,
                          "name": "rngTimeout",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5324,
                          "src": "9923:10:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 5784,
                        "id": 5786,
                        "nodeType": "Return",
                        "src": "9916:17:29"
                      }
                    ]
                  },
                  "functionSelector": "1b5344a2",
                  "id": 5788,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRngTimeout",
                  "nameLocation": "9859:13:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5781,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9872:2:29"
                  },
                  "returnParameters": {
                    "id": 5784,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5783,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5788,
                        "src": "9898:6:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5782,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9898:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9897:8:29"
                  },
                  "scope": 6167,
                  "src": "9850:90:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11189
                  ],
                  "body": {
                    "id": 5798,
                    "nodeType": "Block",
                    "src": "10046:45:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 5795,
                            "name": "_isBeaconPeriodOver",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6047,
                            "src": "10063:19:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                              "typeString": "function () view returns (bool)"
                            }
                          },
                          "id": 5796,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10063:21:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 5794,
                        "id": 5797,
                        "nodeType": "Return",
                        "src": "10056:28:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5789,
                    "nodeType": "StructuredDocumentation",
                    "src": "9946:27:29",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "d1e77657",
                  "id": 5799,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isBeaconPeriodOver",
                  "nameLocation": "9987:18:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5791,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10022:8:29"
                  },
                  "parameters": {
                    "id": 5790,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10005:2:29"
                  },
                  "returnParameters": {
                    "id": 5794,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5793,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5799,
                        "src": "10040:4:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 5792,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "10040:4:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10039:6:29"
                  },
                  "scope": 6167,
                  "src": "9978:113:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11240
                  ],
                  "body": {
                    "id": 5816,
                    "nodeType": "Block",
                    "src": "10265:53:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5813,
                              "name": "newDrawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5803,
                              "src": "10297:13:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              }
                            ],
                            "id": 5812,
                            "name": "_setDrawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6122,
                            "src": "10282:14:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IDrawBuffer_$11318_$returns$_t_contract$_IDrawBuffer_$11318_$",
                              "typeString": "function (contract IDrawBuffer) returns (contract IDrawBuffer)"
                            }
                          },
                          "id": 5814,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10282:29:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "functionReturnParameters": 5811,
                        "id": 5815,
                        "nodeType": "Return",
                        "src": "10275:36:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5800,
                    "nodeType": "StructuredDocumentation",
                    "src": "10097:27:29",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "ab70d49c",
                  "id": 5817,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5807,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5806,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "10221:9:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "10221:9:29"
                    }
                  ],
                  "name": "setDrawBuffer",
                  "nameLocation": "10138:13:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5805,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10204:8:29"
                  },
                  "parameters": {
                    "id": 5804,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5803,
                        "mutability": "mutable",
                        "name": "newDrawBuffer",
                        "nameLocation": "10164:13:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5817,
                        "src": "10152:25:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 5802,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5801,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "10152:11:29"
                          },
                          "referencedDeclaration": 11318,
                          "src": "10152:11:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10151:27:29"
                  },
                  "returnParameters": {
                    "id": 5811,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5810,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5817,
                        "src": "10248:11:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 5809,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5808,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "10248:11:29"
                          },
                          "referencedDeclaration": 11318,
                          "src": "10248:11:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10247:13:29"
                  },
                  "scope": 6167,
                  "src": "10129:189:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11230
                  ],
                  "body": {
                    "id": 5887,
                    "nodeType": "Block",
                    "src": "10415:472:29",
                    "statements": [
                      {
                        "assignments": [
                          5825,
                          5827
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5825,
                            "mutability": "mutable",
                            "name": "feeToken",
                            "nameLocation": "10434:8:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 5887,
                            "src": "10426:16:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 5824,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "10426:7:29",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 5827,
                            "mutability": "mutable",
                            "name": "requestFee",
                            "nameLocation": "10452:10:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 5887,
                            "src": "10444:18:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 5826,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "10444:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5831,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 5828,
                              "name": "rng",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5313,
                              "src": "10466:3:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$4142",
                                "typeString": "contract RNGInterface"
                              }
                            },
                            "id": 5829,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getRequestFee",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4117,
                            "src": "10466:17:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_address_$_t_uint256_$",
                              "typeString": "function () view external returns (address,uint256)"
                            }
                          },
                          "id": 5830,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10466:19:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_uint256_$",
                            "typeString": "tuple(address,uint256)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10425:60:29"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 5841,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "id": 5837,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 5832,
                              "name": "feeToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5825,
                              "src": "10500:8:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "!=",
                            "rightExpression": {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 5835,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "10520:1:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 5834,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "10512:7:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 5833,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "10512:7:29",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 5836,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10512:10:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "src": "10500:22:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 5840,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 5838,
                              "name": "requestFee",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5827,
                              "src": "10526:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "hexValue": "30",
                              "id": 5839,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10539:1:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "src": "10526:14:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "10500:40:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 5854,
                        "nodeType": "IfStatement",
                        "src": "10496:135:29",
                        "trueBody": {
                          "id": 5853,
                          "nodeType": "Block",
                          "src": "10542:89:29",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "id": 5848,
                                        "name": "rng",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5313,
                                        "src": "10603:3:29",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_contract$_RNGInterface_$4142",
                                          "typeString": "contract RNGInterface"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_contract$_RNGInterface_$4142",
                                          "typeString": "contract RNGInterface"
                                        }
                                      ],
                                      "id": 5847,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "10595:7:29",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      },
                                      "typeName": {
                                        "id": 5846,
                                        "name": "address",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "10595:7:29",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 5849,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "10595:12:29",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 5850,
                                    "name": "requestFee",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5827,
                                    "src": "10609:10:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 5843,
                                        "name": "feeToken",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5825,
                                        "src": "10563:8:29",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      ],
                                      "id": 5842,
                                      "name": "IERC20",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 663,
                                      "src": "10556:6:29",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_IERC20_$663_$",
                                        "typeString": "type(contract IERC20)"
                                      }
                                    },
                                    "id": 5844,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "10556:16:29",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IERC20_$663",
                                      "typeString": "contract IERC20"
                                    }
                                  },
                                  "id": 5845,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "safeIncreaseAllowance",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 1030,
                                  "src": "10556:38:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                                    "typeString": "function (contract IERC20,address,uint256)"
                                  }
                                },
                                "id": 5851,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10556:64:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 5852,
                              "nodeType": "ExpressionStatement",
                              "src": "10556:64:29"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          5856,
                          5858
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5856,
                            "mutability": "mutable",
                            "name": "requestId",
                            "nameLocation": "10649:9:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 5887,
                            "src": "10642:16:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 5855,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "10642:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 5858,
                            "mutability": "mutable",
                            "name": "lockBlock",
                            "nameLocation": "10667:9:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 5887,
                            "src": "10660:16:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 5857,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "10660:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5862,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 5859,
                              "name": "rng",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5313,
                              "src": "10680:3:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$4142",
                                "typeString": "contract RNGInterface"
                              }
                            },
                            "id": 5860,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "requestRandomNumber",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4125,
                            "src": "10680:23:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$__$returns$_t_uint32_$_t_uint32_$",
                              "typeString": "function () external returns (uint32,uint32)"
                            }
                          },
                          "id": 5861,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10680:25:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint32_$_t_uint32_$",
                            "typeString": "tuple(uint32,uint32)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10641:64:29"
                      },
                      {
                        "expression": {
                          "id": 5867,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 5863,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5317,
                              "src": "10715:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 5865,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "id",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 5335,
                            "src": "10715:13:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5866,
                            "name": "requestId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5856,
                            "src": "10731:9:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "10715:25:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 5868,
                        "nodeType": "ExpressionStatement",
                        "src": "10715:25:29"
                      },
                      {
                        "expression": {
                          "id": 5873,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 5869,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5317,
                              "src": "10750:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 5871,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "lockBlock",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 5337,
                            "src": "10750:20:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5872,
                            "name": "lockBlock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5858,
                            "src": "10773:9:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "10750:32:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 5874,
                        "nodeType": "ExpressionStatement",
                        "src": "10750:32:29"
                      },
                      {
                        "expression": {
                          "id": 5880,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 5875,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5317,
                              "src": "10792:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 5877,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "requestedAt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 5339,
                            "src": "10792:22:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 5878,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5995,
                              "src": "10817:12:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                                "typeString": "function () view returns (uint64)"
                              }
                            },
                            "id": 5879,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "10817:14:29",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "10792:39:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "id": 5881,
                        "nodeType": "ExpressionStatement",
                        "src": "10792:39:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5883,
                              "name": "requestId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5856,
                              "src": "10859:9:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 5884,
                              "name": "lockBlock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5858,
                              "src": "10870:9:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 5882,
                            "name": "DrawStarted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11103,
                            "src": "10847:11:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_uint32_$returns$__$",
                              "typeString": "function (uint32,uint32)"
                            }
                          },
                          "id": 5885,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10847:33:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5886,
                        "nodeType": "EmitStatement",
                        "src": "10842:38:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5818,
                    "nodeType": "StructuredDocumentation",
                    "src": "10324:27:29",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "2ae168a6",
                  "id": 5888,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5822,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5821,
                        "name": "requireCanStartDraw",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5371,
                        "src": "10395:19:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "10395:19:29"
                    }
                  ],
                  "name": "startDraw",
                  "nameLocation": "10365:9:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5820,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10386:8:29"
                  },
                  "parameters": {
                    "id": 5819,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10374:2:29"
                  },
                  "returnParameters": {
                    "id": 5823,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10415:0:29"
                  },
                  "scope": 6167,
                  "src": "10356:531:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11213
                  ],
                  "body": {
                    "id": 5903,
                    "nodeType": "Block",
                    "src": "11072:62:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5900,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5891,
                              "src": "11106:20:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 5899,
                            "name": "_setBeaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6144,
                            "src": "11082:23:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 5901,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11082:45:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5902,
                        "nodeType": "ExpressionStatement",
                        "src": "11082:45:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5889,
                    "nodeType": "StructuredDocumentation",
                    "src": "10893:27:29",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "919bead0",
                  "id": 5904,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5895,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5894,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "11028:9:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11028:9:29"
                    },
                    {
                      "id": 5897,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5896,
                        "name": "requireDrawNotStarted",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5354,
                        "src": "11046:21:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11046:21:29"
                    }
                  ],
                  "name": "setBeaconPeriodSeconds",
                  "nameLocation": "10934:22:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5893,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "11011:8:29"
                  },
                  "parameters": {
                    "id": 5892,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5891,
                        "mutability": "mutable",
                        "name": "_beaconPeriodSeconds",
                        "nameLocation": "10964:20:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5904,
                        "src": "10957:27:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5890,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "10957:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10956:29:29"
                  },
                  "returnParameters": {
                    "id": 5898,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11072:0:29"
                  },
                  "scope": 6167,
                  "src": "10925:209:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11219
                  ],
                  "body": {
                    "id": 5919,
                    "nodeType": "Block",
                    "src": "11265:44:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5916,
                              "name": "_rngTimeout",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5907,
                              "src": "11290:11:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 5915,
                            "name": "_setRngTimeout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6166,
                            "src": "11275:14:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 5917,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11275:27:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5918,
                        "nodeType": "ExpressionStatement",
                        "src": "11275:27:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5905,
                    "nodeType": "StructuredDocumentation",
                    "src": "11140:27:29",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "5020ea56",
                  "id": 5920,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5911,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5910,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "11233:9:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11233:9:29"
                    },
                    {
                      "id": 5913,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5912,
                        "name": "requireDrawNotStarted",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5354,
                        "src": "11243:21:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11243:21:29"
                    }
                  ],
                  "name": "setRngTimeout",
                  "nameLocation": "11181:13:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5909,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "11224:8:29"
                  },
                  "parameters": {
                    "id": 5908,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5907,
                        "mutability": "mutable",
                        "name": "_rngTimeout",
                        "nameLocation": "11202:11:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5920,
                        "src": "11195:18:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5906,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "11195:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11194:20:29"
                  },
                  "returnParameters": {
                    "id": 5914,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11265:0:29"
                  },
                  "scope": 6167,
                  "src": "11172:137:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11226
                  ],
                  "body": {
                    "id": 5936,
                    "nodeType": "Block",
                    "src": "11482:44:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5933,
                              "name": "_rngService",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5924,
                              "src": "11507:11:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$4142",
                                "typeString": "contract RNGInterface"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_RNGInterface_$4142",
                                "typeString": "contract RNGInterface"
                              }
                            ],
                            "id": 5932,
                            "name": "_setRngService",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5953,
                            "src": "11492:14:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_RNGInterface_$4142_$returns$__$",
                              "typeString": "function (contract RNGInterface)"
                            }
                          },
                          "id": 5934,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11492:27:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5935,
                        "nodeType": "ExpressionStatement",
                        "src": "11492:27:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5921,
                    "nodeType": "StructuredDocumentation",
                    "src": "11315:27:29",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "7f4296d7",
                  "id": 5937,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5928,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5927,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "11438:9:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11438:9:29"
                    },
                    {
                      "id": 5930,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5929,
                        "name": "requireDrawNotStarted",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5354,
                        "src": "11456:21:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11456:21:29"
                    }
                  ],
                  "name": "setRngService",
                  "nameLocation": "11356:13:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5926,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "11421:8:29"
                  },
                  "parameters": {
                    "id": 5925,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5924,
                        "mutability": "mutable",
                        "name": "_rngService",
                        "nameLocation": "11383:11:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5937,
                        "src": "11370:24:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$4142",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 5923,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5922,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 4142,
                            "src": "11370:12:29"
                          },
                          "referencedDeclaration": 4142,
                          "src": "11370:12:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$4142",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11369:26:29"
                  },
                  "returnParameters": {
                    "id": 5931,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11482:0:29"
                  },
                  "scope": 6167,
                  "src": "11347:179:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 5952,
                    "nodeType": "Block",
                    "src": "11758:79:29",
                    "statements": [
                      {
                        "expression": {
                          "id": 5946,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5944,
                            "name": "rng",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5313,
                            "src": "11768:3:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_RNGInterface_$4142",
                              "typeString": "contract RNGInterface"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5945,
                            "name": "_rngService",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5941,
                            "src": "11774:11:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_RNGInterface_$4142",
                              "typeString": "contract RNGInterface"
                            }
                          },
                          "src": "11768:17:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$4142",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "id": 5947,
                        "nodeType": "ExpressionStatement",
                        "src": "11768:17:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5949,
                              "name": "_rngService",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5941,
                              "src": "11818:11:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$4142",
                                "typeString": "contract RNGInterface"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_RNGInterface_$4142",
                                "typeString": "contract RNGInterface"
                              }
                            ],
                            "id": 5948,
                            "name": "RngServiceUpdated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11121,
                            "src": "11800:17:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_RNGInterface_$4142_$returns$__$",
                              "typeString": "function (contract RNGInterface)"
                            }
                          },
                          "id": 5950,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11800:30:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5951,
                        "nodeType": "EmitStatement",
                        "src": "11795:35:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5938,
                    "nodeType": "StructuredDocumentation",
                    "src": "11532:158:29",
                    "text": " @notice Sets the RNG service that the Prize Strategy is connected to\n @param _rngService The address of the new RNG service interface"
                  },
                  "id": 5953,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setRngService",
                  "nameLocation": "11704:14:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5942,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5941,
                        "mutability": "mutable",
                        "name": "_rngService",
                        "nameLocation": "11732:11:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5953,
                        "src": "11719:24:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$4142",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 5940,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5939,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 4142,
                            "src": "11719:12:29"
                          },
                          "referencedDeclaration": 4142,
                          "src": "11719:12:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$4142",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11718:26:29"
                  },
                  "returnParameters": {
                    "id": 5943,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11758:0:29"
                  },
                  "scope": 6167,
                  "src": "11695:142:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5981,
                    "nodeType": "Block",
                    "src": "12460:177:29",
                    "statements": [
                      {
                        "assignments": [
                          5966
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5966,
                            "mutability": "mutable",
                            "name": "elapsedPeriods",
                            "nameLocation": "12477:14:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 5981,
                            "src": "12470:21:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 5965,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "12470:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5973,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 5972,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                },
                                "id": 5969,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 5967,
                                  "name": "_time",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5960,
                                  "src": "12495:5:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 5968,
                                  "name": "_beaconPeriodStartedAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5956,
                                  "src": "12503:22:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "src": "12495:30:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              }
                            ],
                            "id": 5970,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "12494:32:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "id": 5971,
                            "name": "_beaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5958,
                            "src": "12529:20:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "12494:55:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12470:79:29"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 5979,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5974,
                            "name": "_beaconPeriodStartedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5956,
                            "src": "12566:22:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "+",
                          "rightExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                },
                                "id": 5977,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 5975,
                                  "name": "elapsedPeriods",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5966,
                                  "src": "12592:14:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "*",
                                "rightExpression": {
                                  "id": 5976,
                                  "name": "_beaconPeriodSeconds",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5958,
                                  "src": "12609:20:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "12592:37:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              }
                            ],
                            "id": 5978,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "12591:39:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "12566:64:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 5964,
                        "id": 5980,
                        "nodeType": "Return",
                        "src": "12559:71:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5954,
                    "nodeType": "StructuredDocumentation",
                    "src": "11899:376:29",
                    "text": " @notice Calculates when the next beacon period will start\n @param _beaconPeriodStartedAt The timestamp at which the beacon period started\n @param _beaconPeriodSeconds The duration of the beacon period in seconds\n @param _time The timestamp to use as the current time\n @return The timestamp at which the next beacon period would start"
                  },
                  "id": 5982,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculateNextBeaconPeriodStartTime",
                  "nameLocation": "12289:35:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5961,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5956,
                        "mutability": "mutable",
                        "name": "_beaconPeriodStartedAt",
                        "nameLocation": "12341:22:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5982,
                        "src": "12334:29:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5955,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "12334:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5958,
                        "mutability": "mutable",
                        "name": "_beaconPeriodSeconds",
                        "nameLocation": "12380:20:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5982,
                        "src": "12373:27:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5957,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "12373:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5960,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "12417:5:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 5982,
                        "src": "12410:12:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5959,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "12410:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12324:104:29"
                  },
                  "returnParameters": {
                    "id": 5964,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5963,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5982,
                        "src": "12452:6:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5962,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "12452:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12451:8:29"
                  },
                  "scope": 6167,
                  "src": "12280:357:29",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5994,
                    "nodeType": "Block",
                    "src": "12832:47:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 5990,
                                "name": "block",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -4,
                                "src": "12856:5:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_block",
                                  "typeString": "block"
                                }
                              },
                              "id": 5991,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "src": "12856:15:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5989,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "12849:6:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint64_$",
                              "typeString": "type(uint64)"
                            },
                            "typeName": {
                              "id": 5988,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "12849:6:29",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 5992,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12849:23:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 5987,
                        "id": 5993,
                        "nodeType": "Return",
                        "src": "12842:30:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5983,
                    "nodeType": "StructuredDocumentation",
                    "src": "12643:121:29",
                    "text": " @notice returns the current time.  Used for testing.\n @return The current time (block.timestamp)"
                  },
                  "id": 5995,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_currentTime",
                  "nameLocation": "12778:12:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5984,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "12790:2:29"
                  },
                  "returnParameters": {
                    "id": 5987,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5986,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5995,
                        "src": "12824:6:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5985,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "12824:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12823:8:29"
                  },
                  "scope": 6167,
                  "src": "12769:110:29",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6005,
                    "nodeType": "Block",
                    "src": "13092:67:29",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 6003,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 6001,
                            "name": "beaconPeriodStartedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5330,
                            "src": "13109:21:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "+",
                          "rightExpression": {
                            "id": 6002,
                            "name": "beaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5327,
                            "src": "13133:19:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "13109:43:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 6000,
                        "id": 6004,
                        "nodeType": "Return",
                        "src": "13102:50:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5996,
                    "nodeType": "StructuredDocumentation",
                    "src": "12885:141:29",
                    "text": " @notice Returns the timestamp at which the beacon period ends\n @return The timestamp at which the beacon period ends"
                  },
                  "id": 6006,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_beaconPeriodEndAt",
                  "nameLocation": "13040:18:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5997,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13058:2:29"
                  },
                  "returnParameters": {
                    "id": 6000,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5999,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6006,
                        "src": "13084:6:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5998,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "13084:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13083:8:29"
                  },
                  "scope": 6167,
                  "src": "13031:128:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6033,
                    "nodeType": "Block",
                    "src": "13419:182:29",
                    "statements": [
                      {
                        "assignments": [
                          6013
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6013,
                            "mutability": "mutable",
                            "name": "endAt",
                            "nameLocation": "13436:5:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 6033,
                            "src": "13429:12:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 6012,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "13429:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6016,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 6014,
                            "name": "_beaconPeriodEndAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6006,
                            "src": "13444:18:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 6015,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13444:20:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13429:35:29"
                      },
                      {
                        "assignments": [
                          6018
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6018,
                            "mutability": "mutable",
                            "name": "time",
                            "nameLocation": "13481:4:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 6033,
                            "src": "13474:11:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 6017,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "13474:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6021,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 6019,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5995,
                            "src": "13488:12:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 6020,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13488:14:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13474:28:29"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 6024,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 6022,
                            "name": "endAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6013,
                            "src": "13517:5:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 6023,
                            "name": "time",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6018,
                            "src": "13526:4:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "13517:13:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 6028,
                        "nodeType": "IfStatement",
                        "src": "13513:52:29",
                        "trueBody": {
                          "id": 6027,
                          "nodeType": "Block",
                          "src": "13532:33:29",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 6025,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "13553:1:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 6011,
                              "id": 6026,
                              "nodeType": "Return",
                              "src": "13546:8:29"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 6031,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 6029,
                            "name": "endAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6013,
                            "src": "13582:5:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 6030,
                            "name": "time",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6018,
                            "src": "13590:4:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "13582:12:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 6011,
                        "id": 6032,
                        "nodeType": "Return",
                        "src": "13575:19:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6007,
                    "nodeType": "StructuredDocumentation",
                    "src": "13165:177:29",
                    "text": " @notice Returns the number of seconds remaining until the prize can be awarded.\n @return The number of seconds remaining until the prize can be awarded."
                  },
                  "id": 6034,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_beaconPeriodRemainingSeconds",
                  "nameLocation": "13356:29:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6008,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13385:2:29"
                  },
                  "returnParameters": {
                    "id": 6011,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6010,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6034,
                        "src": "13411:6:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6009,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "13411:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13410:8:29"
                  },
                  "scope": 6167,
                  "src": "13347:254:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6046,
                    "nodeType": "Block",
                    "src": "13807:62:29",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 6044,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 6040,
                              "name": "_beaconPeriodEndAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6006,
                              "src": "13824:18:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                                "typeString": "function () view returns (uint64)"
                              }
                            },
                            "id": 6041,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "13824:20:29",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 6042,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5995,
                              "src": "13848:12:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                                "typeString": "function () view returns (uint64)"
                              }
                            },
                            "id": 6043,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "13848:14:29",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "13824:38:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 6039,
                        "id": 6045,
                        "nodeType": "Return",
                        "src": "13817:45:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6035,
                    "nodeType": "StructuredDocumentation",
                    "src": "13607:135:29",
                    "text": " @notice Returns whether the beacon period is over.\n @return True if the beacon period is over, false otherwise"
                  },
                  "id": 6047,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_isBeaconPeriodOver",
                  "nameLocation": "13756:19:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6036,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13775:2:29"
                  },
                  "returnParameters": {
                    "id": 6039,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6038,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6047,
                        "src": "13801:4:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 6037,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "13801:4:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13800:6:29"
                  },
                  "scope": 6167,
                  "src": "13747:122:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6069,
                    "nodeType": "Block",
                    "src": "13988:198:29",
                    "statements": [
                      {
                        "assignments": [
                          6052
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6052,
                            "mutability": "mutable",
                            "name": "currentBlock",
                            "nameLocation": "14006:12:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 6069,
                            "src": "13998:20:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 6051,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "13998:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6055,
                        "initialValue": {
                          "expression": {
                            "id": 6053,
                            "name": "block",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -4,
                            "src": "14021:5:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_magic_block",
                              "typeString": "block"
                            }
                          },
                          "id": 6054,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "number",
                          "nodeType": "MemberAccess",
                          "src": "14021:12:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13998:35:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 6065,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 6060,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 6057,
                                    "name": "rngRequest",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5317,
                                    "src": "14065:10:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                                      "typeString": "struct DrawBeacon.RngRequest storage ref"
                                    }
                                  },
                                  "id": 6058,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "lockBlock",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 5337,
                                  "src": "14065:20:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 6059,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "14089:1:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "14065:25:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "||",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 6064,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 6061,
                                  "name": "currentBlock",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6052,
                                  "src": "14094:12:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<",
                                "rightExpression": {
                                  "expression": {
                                    "id": 6062,
                                    "name": "rngRequest",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5317,
                                    "src": "14109:10:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                                      "typeString": "struct DrawBeacon.RngRequest storage ref"
                                    }
                                  },
                                  "id": 6063,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "lockBlock",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 5337,
                                  "src": "14109:20:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "14094:35:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "14065:64:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d696e2d666c69676874",
                              "id": 6066,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14143:26:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_eb3fd409b99aafcfccb46998551ef8c9b3d4ba898753e940771a0a3d4f33cc77",
                                "typeString": "literal_string \"DrawBeacon/rng-in-flight\""
                              },
                              "value": "DrawBeacon/rng-in-flight"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_eb3fd409b99aafcfccb46998551ef8c9b3d4ba898753e940771a0a3d4f33cc77",
                                "typeString": "literal_string \"DrawBeacon/rng-in-flight\""
                              }
                            ],
                            "id": 6056,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "14044:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6067,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14044:135:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6068,
                        "nodeType": "ExpressionStatement",
                        "src": "14044:135:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6048,
                    "nodeType": "StructuredDocumentation",
                    "src": "13875:60:29",
                    "text": " @notice Check to see draw is in progress."
                  },
                  "id": 6070,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requireDrawNotStarted",
                  "nameLocation": "13949:22:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6049,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13971:2:29"
                  },
                  "returnParameters": {
                    "id": 6050,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13988:0:29"
                  },
                  "scope": 6167,
                  "src": "13940:246:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6121,
                    "nodeType": "Block",
                    "src": "14507:433:29",
                    "statements": [
                      {
                        "assignments": [
                          6082
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6082,
                            "mutability": "mutable",
                            "name": "_previousDrawBuffer",
                            "nameLocation": "14529:19:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 6121,
                            "src": "14517:31:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                              "typeString": "contract IDrawBuffer"
                            },
                            "typeName": {
                              "id": 6081,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6080,
                                "name": "IDrawBuffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11318,
                                "src": "14517:11:29"
                              },
                              "referencedDeclaration": 11318,
                              "src": "14517:11:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6084,
                        "initialValue": {
                          "id": 6083,
                          "name": "drawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5321,
                          "src": "14551:10:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "14517:44:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 6094,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 6088,
                                    "name": "_newDrawBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6074,
                                    "src": "14587:14:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  ],
                                  "id": 6087,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "14579:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6086,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "14579:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6089,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14579:23:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 6092,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "14614:1:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 6091,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "14606:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6090,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "14606:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6093,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14606:10:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "14579:37:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f2d61646472657373",
                              "id": 6095,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14618:42:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9",
                                "typeString": "literal_string \"DrawBeacon/draw-history-not-zero-address\""
                              },
                              "value": "DrawBeacon/draw-history-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9",
                                "typeString": "literal_string \"DrawBeacon/draw-history-not-zero-address\""
                              }
                            ],
                            "id": 6085,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "14571:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6096,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14571:90:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6097,
                        "nodeType": "ExpressionStatement",
                        "src": "14571:90:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 6107,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 6101,
                                    "name": "_newDrawBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6074,
                                    "src": "14701:14:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  ],
                                  "id": 6100,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "14693:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6099,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "14693:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6102,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14693:23:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "id": 6105,
                                    "name": "_previousDrawBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6082,
                                    "src": "14728:19:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  ],
                                  "id": 6104,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "14720:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6103,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "14720:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6106,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14720:28:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "14693:55:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f6578697374696e672d647261772d686973746f72792d61646472657373",
                              "id": 6108,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14762:42:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf",
                                "typeString": "literal_string \"DrawBeacon/existing-draw-history-address\""
                              },
                              "value": "DrawBeacon/existing-draw-history-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf",
                                "typeString": "literal_string \"DrawBeacon/existing-draw-history-address\""
                              }
                            ],
                            "id": 6098,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "14672:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6109,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14672:142:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6110,
                        "nodeType": "ExpressionStatement",
                        "src": "14672:142:29"
                      },
                      {
                        "expression": {
                          "id": 6113,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6111,
                            "name": "drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5321,
                            "src": "14825:10:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6112,
                            "name": "_newDrawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6074,
                            "src": "14838:14:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "src": "14825:27:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "id": 6114,
                        "nodeType": "ExpressionStatement",
                        "src": "14825:27:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6116,
                              "name": "_newDrawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6074,
                              "src": "14886:14:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              }
                            ],
                            "id": 6115,
                            "name": "DrawBufferUpdated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11091,
                            "src": "14868:17:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IDrawBuffer_$11318_$returns$__$",
                              "typeString": "function (contract IDrawBuffer)"
                            }
                          },
                          "id": 6117,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14868:33:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6118,
                        "nodeType": "EmitStatement",
                        "src": "14863:38:29"
                      },
                      {
                        "expression": {
                          "id": 6119,
                          "name": "_newDrawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6074,
                          "src": "14919:14:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "functionReturnParameters": 6079,
                        "id": 6120,
                        "nodeType": "Return",
                        "src": "14912:21:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6071,
                    "nodeType": "StructuredDocumentation",
                    "src": "14192:227:29",
                    "text": " @notice Set global DrawBuffer variable.\n @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\n @param _newDrawBuffer  DrawBuffer address\n @return DrawBuffer"
                  },
                  "id": 6122,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setDrawBuffer",
                  "nameLocation": "14433:14:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6075,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6074,
                        "mutability": "mutable",
                        "name": "_newDrawBuffer",
                        "nameLocation": "14460:14:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 6122,
                        "src": "14448:26:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 6073,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6072,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "14448:11:29"
                          },
                          "referencedDeclaration": 11318,
                          "src": "14448:11:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14447:28:29"
                  },
                  "returnParameters": {
                    "id": 6079,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6078,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6122,
                        "src": "14494:11:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 6077,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6076,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "14494:11:29"
                          },
                          "referencedDeclaration": 11318,
                          "src": "14494:11:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14493:13:29"
                  },
                  "scope": 6167,
                  "src": "14424:516:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6143,
                    "nodeType": "Block",
                    "src": "15180:212:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 6131,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 6129,
                                "name": "_beaconPeriodSeconds",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6125,
                                "src": "15198:20:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 6130,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "15221:1:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "15198:24:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d677265617465722d7468616e2d7a65726f",
                              "id": 6132,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "15224:44:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df",
                                "typeString": "literal_string \"DrawBeacon/beacon-period-greater-than-zero\""
                              },
                              "value": "DrawBeacon/beacon-period-greater-than-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df",
                                "typeString": "literal_string \"DrawBeacon/beacon-period-greater-than-zero\""
                              }
                            ],
                            "id": 6128,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "15190:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6133,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15190:79:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6134,
                        "nodeType": "ExpressionStatement",
                        "src": "15190:79:29"
                      },
                      {
                        "expression": {
                          "id": 6137,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6135,
                            "name": "beaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5327,
                            "src": "15279:19:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6136,
                            "name": "_beaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6125,
                            "src": "15301:20:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "15279:42:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 6138,
                        "nodeType": "ExpressionStatement",
                        "src": "15279:42:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6140,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6125,
                              "src": "15364:20:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 6139,
                            "name": "BeaconPeriodSecondsUpdated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11131,
                            "src": "15337:26:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 6141,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15337:48:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6142,
                        "nodeType": "EmitStatement",
                        "src": "15332:53:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6123,
                    "nodeType": "StructuredDocumentation",
                    "src": "14946:158:29",
                    "text": " @notice Sets the beacon period in seconds.\n @param _beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero."
                  },
                  "id": 6144,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setBeaconPeriodSeconds",
                  "nameLocation": "15118:23:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6126,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6125,
                        "mutability": "mutable",
                        "name": "_beaconPeriodSeconds",
                        "nameLocation": "15149:20:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 6144,
                        "src": "15142:27:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6124,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "15142:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15141:29:29"
                  },
                  "returnParameters": {
                    "id": 6127,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15180:0:29"
                  },
                  "scope": 6167,
                  "src": "15109:283:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6165,
                    "nodeType": "Block",
                    "src": "15684:155:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 6153,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 6151,
                                "name": "_rngTimeout",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6147,
                                "src": "15702:11:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "3630",
                                "id": 6152,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "15716:2:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_60_by_1",
                                  "typeString": "int_const 60"
                                },
                                "value": "60"
                              },
                              "src": "15702:16:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d74696d656f75742d67742d36302d73656373",
                              "id": 6154,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "15720:35:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe",
                                "typeString": "literal_string \"DrawBeacon/rng-timeout-gt-60-secs\""
                              },
                              "value": "DrawBeacon/rng-timeout-gt-60-secs"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe",
                                "typeString": "literal_string \"DrawBeacon/rng-timeout-gt-60-secs\""
                              }
                            ],
                            "id": 6150,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "15694:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6155,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15694:62:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6156,
                        "nodeType": "ExpressionStatement",
                        "src": "15694:62:29"
                      },
                      {
                        "expression": {
                          "id": 6159,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6157,
                            "name": "rngTimeout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5324,
                            "src": "15766:10:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6158,
                            "name": "_rngTimeout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6147,
                            "src": "15779:11:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "15766:24:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 6160,
                        "nodeType": "ExpressionStatement",
                        "src": "15766:24:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6162,
                              "name": "_rngTimeout",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6147,
                              "src": "15820:11:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 6161,
                            "name": "RngTimeoutSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11126,
                            "src": "15806:13:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 6163,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15806:26:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6164,
                        "nodeType": "EmitStatement",
                        "src": "15801:31:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6145,
                    "nodeType": "StructuredDocumentation",
                    "src": "15398:228:29",
                    "text": " @notice Sets the RNG request timeout in seconds.  This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\n @param _rngTimeout The RNG request timeout in seconds."
                  },
                  "id": 6166,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setRngTimeout",
                  "nameLocation": "15640:14:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6148,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6147,
                        "mutability": "mutable",
                        "name": "_rngTimeout",
                        "nameLocation": "15662:11:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 6166,
                        "src": "15655:18:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6146,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "15655:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15654:20:29"
                  },
                  "returnParameters": {
                    "id": 6149,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15684:0:29"
                  },
                  "scope": 6167,
                  "src": "15631:208:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 6168,
              "src": "1131:14710:29",
              "usedErrors": []
            }
          ],
          "src": "37:15805:29"
        },
        "id": 29
      },
      "contracts/DrawBuffer.sol": {
        "ast": {
          "absolutePath": "contracts/DrawBuffer.sol",
          "exportedSymbols": {
            "DrawBuffer": [
              6538
            ],
            "DrawRingBufferLib": [
              12354
            ],
            "IDrawBeacon": [
              11241
            ],
            "IDrawBuffer": [
              11318
            ],
            "Manageable": [
              3931
            ],
            "Ownable": [
              4086
            ],
            "RNGInterface": [
              4142
            ],
            "RingBufferLib": [
              12849
            ]
          },
          "id": 6539,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 6169,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:30"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 6170,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6539,
              "sourceUnit": 3932,
              "src": "61:72:30",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IDrawBuffer.sol",
              "file": "./interfaces/IDrawBuffer.sol",
              "id": 6171,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6539,
              "sourceUnit": 11319,
              "src": "135:38:30",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IDrawBeacon.sol",
              "file": "./interfaces/IDrawBeacon.sol",
              "id": 6172,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6539,
              "sourceUnit": 11242,
              "src": "174:38:30",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/libraries/DrawRingBufferLib.sol",
              "file": "./libraries/DrawRingBufferLib.sol",
              "id": 6173,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6539,
              "sourceUnit": 12355,
              "src": "213:43:30",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 6175,
                    "name": "IDrawBuffer",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11318,
                    "src": "1207:11:30"
                  },
                  "id": 6176,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1207:11:30"
                },
                {
                  "baseName": {
                    "id": 6177,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3931,
                    "src": "1220:10:30"
                  },
                  "id": 6178,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1220:10:30"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 6174,
                "nodeType": "StructuredDocumentation",
                "src": "258:925:30",
                "text": " @title  PoolTogether V4 DrawBuffer\n @author PoolTogether Inc Team\n @notice The DrawBuffer provides historical lookups of Draws via a circular ring buffer.\nHistorical Draws can be accessed on-chain using a drawId to calculate ring buffer storage slot.\nThe Draw settings can be created by manager/owner and existing Draws can only be updated the owner.\nOnce a starting Draw has been added to the ring buffer, all following draws must have a sequential Draw ID.\n@dev    A DrawBuffer store a limited number of Draws before beginning to overwrite (managed via the cardinality) previous Draws.\n@dev    All mainnet DrawBuffer(s) are updated directly from a DrawBeacon, but non-mainnet DrawBuffer(s) (Matic, Optimism, Arbitrum, etc...)\nwill receive a cross-chain message, duplicating the mainnet Draw configuration - enabling a prize savings liquidity network."
              },
              "fullyImplemented": true,
              "id": 6538,
              "linearizedBaseContracts": [
                6538,
                3931,
                4086,
                11318
              ],
              "name": "DrawBuffer",
              "nameLocation": "1193:10:30",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 6182,
                  "libraryName": {
                    "id": 6179,
                    "name": "DrawRingBufferLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12354,
                    "src": "1243:17:30"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1237:53:30",
                  "typeName": {
                    "id": 6181,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6180,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 12224,
                      "src": "1265:24:30"
                    },
                    "referencedDeclaration": 12224,
                    "src": "1265:24:30",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  }
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 6183,
                    "nodeType": "StructuredDocumentation",
                    "src": "1296:41:30",
                    "text": "@notice Draws ring buffer max length."
                  },
                  "functionSelector": "8200d873",
                  "id": 6186,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "1365:15:30",
                  "nodeType": "VariableDeclaration",
                  "scope": 6538,
                  "src": "1342:44:30",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint16",
                    "typeString": "uint16"
                  },
                  "typeName": {
                    "id": 6184,
                    "name": "uint16",
                    "nodeType": "ElementaryTypeName",
                    "src": "1342:6:30",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint16",
                      "typeString": "uint16"
                    }
                  },
                  "value": {
                    "hexValue": "323536",
                    "id": 6185,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1383:3:30",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_256_by_1",
                      "typeString": "int_const 256"
                    },
                    "value": "256"
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6187,
                    "nodeType": "StructuredDocumentation",
                    "src": "1393:36:30",
                    "text": "@notice Draws ring buffer array."
                  },
                  "id": 6192,
                  "mutability": "mutable",
                  "name": "drawRingBuffer",
                  "nameLocation": "1476:14:30",
                  "nodeType": "VariableDeclaration",
                  "scope": 6538,
                  "src": "1434:56:30",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$256_storage",
                    "typeString": "struct IDrawBeacon.Draw[256]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 6189,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 6188,
                        "name": "IDrawBeacon.Draw",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 11085,
                        "src": "1434:16:30"
                      },
                      "referencedDeclaration": 11085,
                      "src": "1434:16:30",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                        "typeString": "struct IDrawBeacon.Draw"
                      }
                    },
                    "id": 6191,
                    "length": {
                      "id": 6190,
                      "name": "MAX_CARDINALITY",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6186,
                      "src": "1451:15:30",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint16",
                        "typeString": "uint16"
                      }
                    },
                    "nodeType": "ArrayTypeName",
                    "src": "1434:33:30",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$256_storage_ptr",
                      "typeString": "struct IDrawBeacon.Draw[256]"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6193,
                    "nodeType": "StructuredDocumentation",
                    "src": "1497:41:30",
                    "text": "@notice Holds ring buffer information"
                  },
                  "id": 6196,
                  "mutability": "mutable",
                  "name": "bufferMetadata",
                  "nameLocation": "1577:14:30",
                  "nodeType": "VariableDeclaration",
                  "scope": 6538,
                  "src": "1543:48:30",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                    "typeString": "struct DrawRingBufferLib.Buffer"
                  },
                  "typeName": {
                    "id": 6195,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6194,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 12224,
                      "src": "1543:24:30"
                    },
                    "referencedDeclaration": 12224,
                    "src": "1543:24:30",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6213,
                    "nodeType": "Block",
                    "src": "1889:58:30",
                    "statements": [
                      {
                        "expression": {
                          "id": 6211,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 6207,
                              "name": "bufferMetadata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6196,
                              "src": "1899:14:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            },
                            "id": 6209,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "cardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12223,
                            "src": "1899:26:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6210,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6201,
                            "src": "1928:12:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "1899:41:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 6212,
                        "nodeType": "ExpressionStatement",
                        "src": "1899:41:30"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6197,
                    "nodeType": "StructuredDocumentation",
                    "src": "1642:178:30",
                    "text": " @notice Deploy DrawBuffer smart contract.\n @param _owner Address of the owner of the DrawBuffer.\n @param _cardinality Draw ring buffer cardinality."
                  },
                  "id": 6214,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 6204,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6199,
                          "src": "1881:6:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 6205,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 6203,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4086,
                        "src": "1873:7:30"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1873:15:30"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6202,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6199,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1845:6:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 6214,
                        "src": "1837:14:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 6198,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1837:7:30",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6201,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "1859:12:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 6214,
                        "src": "1853:18:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 6200,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1853:5:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1836:36:30"
                  },
                  "returnParameters": {
                    "id": 6206,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1889:0:30"
                  },
                  "scope": 6538,
                  "src": "1825:122:30",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11259
                  ],
                  "body": {
                    "id": 6224,
                    "nodeType": "Block",
                    "src": "2113:50:30",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 6221,
                            "name": "bufferMetadata",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6196,
                            "src": "2130:14:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                              "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                            }
                          },
                          "id": 6222,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "cardinality",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12223,
                          "src": "2130:26:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 6220,
                        "id": 6223,
                        "nodeType": "Return",
                        "src": "2123:33:30"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6215,
                    "nodeType": "StructuredDocumentation",
                    "src": "2009:27:30",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "caeef7ec",
                  "id": 6225,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBufferCardinality",
                  "nameLocation": "2050:20:30",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6217,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2087:8:30"
                  },
                  "parameters": {
                    "id": 6216,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2070:2:30"
                  },
                  "returnParameters": {
                    "id": 6220,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6219,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6225,
                        "src": "2105:6:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6218,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2105:6:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2104:8:30"
                  },
                  "scope": 6538,
                  "src": "2041:122:30",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11268
                  ],
                  "body": {
                    "id": 6242,
                    "nodeType": "Block",
                    "src": "2290:82:30",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 6235,
                            "name": "drawRingBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6192,
                            "src": "2307:14:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$256_storage",
                              "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                            }
                          },
                          "id": 6240,
                          "indexExpression": {
                            "arguments": [
                              {
                                "id": 6237,
                                "name": "bufferMetadata",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6196,
                                "src": "2341:14:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                                  "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                                }
                              },
                              {
                                "id": 6238,
                                "name": "drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6228,
                                "src": "2357:6:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                                  "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "id": 6236,
                              "name": "_drawIdToDrawIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6477,
                              "src": "2322:18:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_uint32_$",
                                "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 6239,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "2322:42:30",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "2307:58:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage",
                            "typeString": "struct IDrawBeacon.Draw storage ref"
                          }
                        },
                        "functionReturnParameters": 6234,
                        "id": 6241,
                        "nodeType": "Return",
                        "src": "2300:65:30"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6226,
                    "nodeType": "StructuredDocumentation",
                    "src": "2169:27:30",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "83c34aaf",
                  "id": 6243,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDraw",
                  "nameLocation": "2210:7:30",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6230,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2247:8:30"
                  },
                  "parameters": {
                    "id": 6229,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6228,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "2225:6:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 6243,
                        "src": "2218:13:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6227,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2218:6:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2217:15:30"
                  },
                  "returnParameters": {
                    "id": 6234,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6233,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6243,
                        "src": "2265:23:30",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 6232,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6231,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11085,
                            "src": "2265:16:30"
                          },
                          "referencedDeclaration": 11085,
                          "src": "2265:16:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2264:25:30"
                  },
                  "scope": 6538,
                  "src": "2201:171:30",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11279
                  ],
                  "body": {
                    "id": 6304,
                    "nodeType": "Block",
                    "src": "2551:345:30",
                    "statements": [
                      {
                        "assignments": [
                          6260
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6260,
                            "mutability": "mutable",
                            "name": "draws",
                            "nameLocation": "2587:5:30",
                            "nodeType": "VariableDeclaration",
                            "scope": 6304,
                            "src": "2561:31:30",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6258,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 6257,
                                  "name": "IDrawBeacon.Draw",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11085,
                                  "src": "2561:16:30"
                                },
                                "referencedDeclaration": 11085,
                                "src": "2561:16:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                                  "typeString": "struct IDrawBeacon.Draw"
                                }
                              },
                              "id": 6259,
                              "nodeType": "ArrayTypeName",
                              "src": "2561:18:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$dyn_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6268,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 6265,
                                "name": "_drawIds",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6247,
                                "src": "2618:8:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                  "typeString": "uint32[] calldata"
                                }
                              },
                              "id": 6266,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "2618:15:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 6264,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "2595:22:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (struct IDrawBeacon.Draw memory[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6262,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 6261,
                                  "name": "IDrawBeacon.Draw",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11085,
                                  "src": "2599:16:30"
                                },
                                "referencedDeclaration": 11085,
                                "src": "2599:16:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                                  "typeString": "struct IDrawBeacon.Draw"
                                }
                              },
                              "id": 6263,
                              "nodeType": "ArrayTypeName",
                              "src": "2599:18:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$dyn_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw[]"
                              }
                            }
                          },
                          "id": 6267,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2595:39:30",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2561:73:30"
                      },
                      {
                        "assignments": [
                          6273
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6273,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "2676:6:30",
                            "nodeType": "VariableDeclaration",
                            "scope": 6304,
                            "src": "2644:38:30",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 6272,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6271,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12224,
                                "src": "2644:24:30"
                              },
                              "referencedDeclaration": 12224,
                              "src": "2644:24:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6275,
                        "initialValue": {
                          "id": 6274,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6196,
                          "src": "2685:14:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2644:55:30"
                      },
                      {
                        "body": {
                          "id": 6300,
                          "nodeType": "Block",
                          "src": "2768:99:30",
                          "statements": [
                            {
                              "expression": {
                                "id": 6298,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 6287,
                                    "name": "draws",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6260,
                                    "src": "2782:5:30",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                      "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                    }
                                  },
                                  "id": 6289,
                                  "indexExpression": {
                                    "id": 6288,
                                    "name": "index",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6277,
                                    "src": "2788:5:30",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "2782:12:30",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 6290,
                                    "name": "drawRingBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6192,
                                    "src": "2797:14:30",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$256_storage",
                                      "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                                    }
                                  },
                                  "id": 6297,
                                  "indexExpression": {
                                    "arguments": [
                                      {
                                        "id": 6292,
                                        "name": "buffer",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6273,
                                        "src": "2831:6:30",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        }
                                      },
                                      {
                                        "baseExpression": {
                                          "id": 6293,
                                          "name": "_drawIds",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 6247,
                                          "src": "2839:8:30",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                            "typeString": "uint32[] calldata"
                                          }
                                        },
                                        "id": 6295,
                                        "indexExpression": {
                                          "id": 6294,
                                          "name": "index",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 6277,
                                          "src": "2848:5:30",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "nodeType": "IndexAccess",
                                        "src": "2839:15:30",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        },
                                        {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      ],
                                      "id": 6291,
                                      "name": "_drawIdToDrawIndex",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 6477,
                                      "src": "2812:18:30",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_uint32_$",
                                        "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                                      }
                                    },
                                    "id": 6296,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "2812:43:30",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "2797:59:30",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$11085_storage",
                                    "typeString": "struct IDrawBeacon.Draw storage ref"
                                  }
                                },
                                "src": "2782:74:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 6299,
                              "nodeType": "ExpressionStatement",
                              "src": "2782:74:30"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 6283,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 6280,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6277,
                            "src": "2734:5:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 6281,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6247,
                              "src": "2742:8:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            },
                            "id": 6282,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "2742:15:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2734:23:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 6301,
                        "initializationExpression": {
                          "assignments": [
                            6277
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 6277,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "2723:5:30",
                              "nodeType": "VariableDeclaration",
                              "scope": 6301,
                              "src": "2715:13:30",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 6276,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "2715:7:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 6279,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 6278,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2731:1:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "2715:17:30"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 6285,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "2759:7:30",
                            "subExpression": {
                              "id": 6284,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6277,
                              "src": "2759:5:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 6286,
                          "nodeType": "ExpressionStatement",
                          "src": "2759:7:30"
                        },
                        "nodeType": "ForStatement",
                        "src": "2710:157:30"
                      },
                      {
                        "expression": {
                          "id": 6302,
                          "name": "draws",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6260,
                          "src": "2884:5:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                          }
                        },
                        "functionReturnParameters": 6254,
                        "id": 6303,
                        "nodeType": "Return",
                        "src": "2877:12:30"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6244,
                    "nodeType": "StructuredDocumentation",
                    "src": "2378:27:30",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "d0bb78f3",
                  "id": 6305,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDraws",
                  "nameLocation": "2419:8:30",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6249,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2494:8:30"
                  },
                  "parameters": {
                    "id": 6248,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6247,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "2446:8:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 6305,
                        "src": "2428:26:30",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6245,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2428:6:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 6246,
                          "nodeType": "ArrayTypeName",
                          "src": "2428:8:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2427:28:30"
                  },
                  "returnParameters": {
                    "id": 6254,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6253,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6305,
                        "src": "2520:25:30",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6251,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 6250,
                              "name": "IDrawBeacon.Draw",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11085,
                              "src": "2520:16:30"
                            },
                            "referencedDeclaration": 11085,
                            "src": "2520:16:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            }
                          },
                          "id": 6252,
                          "nodeType": "ArrayTypeName",
                          "src": "2520:18:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$dyn_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2519:27:30"
                  },
                  "scope": 6538,
                  "src": "2410:486:30",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11285
                  ],
                  "body": {
                    "id": 6346,
                    "nodeType": "Block",
                    "src": "2998:360:30",
                    "statements": [
                      {
                        "assignments": [
                          6316
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6316,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "3040:6:30",
                            "nodeType": "VariableDeclaration",
                            "scope": 6346,
                            "src": "3008:38:30",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 6315,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6314,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12224,
                                "src": "3008:24:30"
                              },
                              "referencedDeclaration": 12224,
                              "src": "3008:24:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6318,
                        "initialValue": {
                          "id": 6317,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6196,
                          "src": "3049:14:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3008:55:30"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 6322,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 6319,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6316,
                              "src": "3078:6:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 6320,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lastDrawId",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12219,
                            "src": "3078:17:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 6321,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3099:1:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3078:22:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 6326,
                        "nodeType": "IfStatement",
                        "src": "3074:61:30",
                        "trueBody": {
                          "id": 6325,
                          "nodeType": "Block",
                          "src": "3102:33:30",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 6323,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3123:1:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 6311,
                              "id": 6324,
                              "nodeType": "Return",
                              "src": "3116:8:30"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          6328
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6328,
                            "mutability": "mutable",
                            "name": "bufferNextIndex",
                            "nameLocation": "3152:15:30",
                            "nodeType": "VariableDeclaration",
                            "scope": 6346,
                            "src": "3145:22:30",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 6327,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "3145:6:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6331,
                        "initialValue": {
                          "expression": {
                            "id": 6329,
                            "name": "buffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6316,
                            "src": "3170:6:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer memory"
                            }
                          },
                          "id": 6330,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "nextIndex",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12221,
                          "src": "3170:16:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3145:41:30"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 6337,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "baseExpression": {
                                "id": 6332,
                                "name": "drawRingBuffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6192,
                                "src": "3201:14:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$256_storage",
                                  "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                                }
                              },
                              "id": 6334,
                              "indexExpression": {
                                "id": 6333,
                                "name": "bufferNextIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6328,
                                "src": "3216:15:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "3201:31:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$11085_storage",
                                "typeString": "struct IDrawBeacon.Draw storage ref"
                              }
                            },
                            "id": 6335,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11080,
                            "src": "3201:41:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 6336,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3246:1:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3201:46:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 6344,
                          "nodeType": "Block",
                          "src": "3305:47:30",
                          "statements": [
                            {
                              "expression": {
                                "id": 6342,
                                "name": "bufferNextIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6328,
                                "src": "3326:15:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "functionReturnParameters": 6311,
                              "id": 6343,
                              "nodeType": "Return",
                              "src": "3319:22:30"
                            }
                          ]
                        },
                        "id": 6345,
                        "nodeType": "IfStatement",
                        "src": "3197:155:30",
                        "trueBody": {
                          "id": 6341,
                          "nodeType": "Block",
                          "src": "3249:50:30",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 6338,
                                  "name": "buffer",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6316,
                                  "src": "3270:6:30",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                    "typeString": "struct DrawRingBufferLib.Buffer memory"
                                  }
                                },
                                "id": 6339,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "cardinality",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12223,
                                "src": "3270:18:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "functionReturnParameters": 6311,
                              "id": 6340,
                              "nodeType": "Return",
                              "src": "3263:25:30"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6306,
                    "nodeType": "StructuredDocumentation",
                    "src": "2902:27:30",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "c4df5fed",
                  "id": 6347,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCount",
                  "nameLocation": "2943:12:30",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6308,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2972:8:30"
                  },
                  "parameters": {
                    "id": 6307,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2955:2:30"
                  },
                  "returnParameters": {
                    "id": 6311,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6310,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6347,
                        "src": "2990:6:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6309,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2990:6:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2989:8:30"
                  },
                  "scope": 6538,
                  "src": "2934:424:30",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11292
                  ],
                  "body": {
                    "id": 6359,
                    "nodeType": "Block",
                    "src": "3478:54:30",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6356,
                              "name": "bufferMetadata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6196,
                              "src": "3510:14:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            ],
                            "id": 6355,
                            "name": "_getNewestDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6496,
                            "src": "3495:14:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Buffer_$12224_memory_ptr_$returns$_t_struct$_Draw_$11085_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory) view returns (struct IDrawBeacon.Draw memory)"
                            }
                          },
                          "id": 6357,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3495:30:30",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory"
                          }
                        },
                        "functionReturnParameters": 6354,
                        "id": 6358,
                        "nodeType": "Return",
                        "src": "3488:37:30"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6348,
                    "nodeType": "StructuredDocumentation",
                    "src": "3364:27:30",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "0edb1d2e",
                  "id": 6360,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNewestDraw",
                  "nameLocation": "3405:13:30",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6350,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3435:8:30"
                  },
                  "parameters": {
                    "id": 6349,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3418:2:30"
                  },
                  "returnParameters": {
                    "id": 6354,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6353,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6360,
                        "src": "3453:23:30",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 6352,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6351,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11085,
                            "src": "3453:16:30"
                          },
                          "referencedDeclaration": 11085,
                          "src": "3453:16:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3452:25:30"
                  },
                  "scope": 6538,
                  "src": "3396:136:30",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11299
                  ],
                  "body": {
                    "id": 6399,
                    "nodeType": "Block",
                    "src": "3652:381:30",
                    "statements": [
                      {
                        "assignments": [
                          6372
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6372,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "3769:6:30",
                            "nodeType": "VariableDeclaration",
                            "scope": 6399,
                            "src": "3737:38:30",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 6371,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6370,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12224,
                                "src": "3737:24:30"
                              },
                              "referencedDeclaration": 12224,
                              "src": "3737:24:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6374,
                        "initialValue": {
                          "id": 6373,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6196,
                          "src": "3778:14:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3737:55:30"
                      },
                      {
                        "assignments": [
                          6379
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6379,
                            "mutability": "mutable",
                            "name": "draw",
                            "nameLocation": "3826:4:30",
                            "nodeType": "VariableDeclaration",
                            "scope": 6399,
                            "src": "3802:28:30",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            },
                            "typeName": {
                              "id": 6378,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6377,
                                "name": "IDrawBeacon.Draw",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11085,
                                "src": "3802:16:30"
                              },
                              "referencedDeclaration": 11085,
                              "src": "3802:16:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6384,
                        "initialValue": {
                          "baseExpression": {
                            "id": 6380,
                            "name": "drawRingBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6192,
                            "src": "3833:14:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$256_storage",
                              "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                            }
                          },
                          "id": 6383,
                          "indexExpression": {
                            "expression": {
                              "id": 6381,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6372,
                              "src": "3848:6:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 6382,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "nextIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12221,
                            "src": "3848:16:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "3833:32:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage",
                            "typeString": "struct IDrawBeacon.Draw storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3802:63:30"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 6388,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 6385,
                              "name": "draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6379,
                              "src": "3880:4:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            },
                            "id": 6386,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11080,
                            "src": "3880:14:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 6387,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3898:1:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3880:19:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 6396,
                        "nodeType": "IfStatement",
                        "src": "3876:129:30",
                        "trueBody": {
                          "id": 6395,
                          "nodeType": "Block",
                          "src": "3901:104:30",
                          "statements": [
                            {
                              "expression": {
                                "id": 6393,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 6389,
                                  "name": "draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6379,
                                  "src": "3970:4:30",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 6390,
                                    "name": "drawRingBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6192,
                                    "src": "3977:14:30",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$256_storage",
                                      "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                                    }
                                  },
                                  "id": 6392,
                                  "indexExpression": {
                                    "hexValue": "30",
                                    "id": 6391,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3992:1:30",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "3977:17:30",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$11085_storage",
                                    "typeString": "struct IDrawBeacon.Draw storage ref"
                                  }
                                },
                                "src": "3970:24:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 6394,
                              "nodeType": "ExpressionStatement",
                              "src": "3970:24:30"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 6397,
                          "name": "draw",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6379,
                          "src": "4022:4:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory"
                          }
                        },
                        "functionReturnParameters": 6367,
                        "id": 6398,
                        "nodeType": "Return",
                        "src": "4015:11:30"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6361,
                    "nodeType": "StructuredDocumentation",
                    "src": "3538:27:30",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "648b1b4f",
                  "id": 6400,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getOldestDraw",
                  "nameLocation": "3579:13:30",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6363,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3609:8:30"
                  },
                  "parameters": {
                    "id": 6362,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3592:2:30"
                  },
                  "returnParameters": {
                    "id": 6367,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6366,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6400,
                        "src": "3627:23:30",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 6365,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6364,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11085,
                            "src": "3627:16:30"
                          },
                          "referencedDeclaration": 11085,
                          "src": "3627:16:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3626:25:30"
                  },
                  "scope": 6538,
                  "src": "3570:463:30",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11308
                  ],
                  "body": {
                    "id": 6416,
                    "nodeType": "Block",
                    "src": "4210:40:30",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6413,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6404,
                              "src": "4237:5:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "id": 6412,
                            "name": "_pushDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6537,
                            "src": "4227:9:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Draw_$11085_memory_ptr_$returns$_t_uint32_$",
                              "typeString": "function (struct IDrawBeacon.Draw memory) returns (uint32)"
                            }
                          },
                          "id": 6414,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4227:16:30",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 6411,
                        "id": 6415,
                        "nodeType": "Return",
                        "src": "4220:23:30"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6401,
                    "nodeType": "StructuredDocumentation",
                    "src": "4039:27:30",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "089eb925",
                  "id": 6417,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 6408,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6407,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3930,
                        "src": "4162:18:30"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4162:18:30"
                    }
                  ],
                  "name": "pushDraw",
                  "nameLocation": "4080:8:30",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6406,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4145:8:30"
                  },
                  "parameters": {
                    "id": 6405,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6404,
                        "mutability": "mutable",
                        "name": "_draw",
                        "nameLocation": "4113:5:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 6417,
                        "src": "4089:29:30",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 6403,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6402,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11085,
                            "src": "4089:16:30"
                          },
                          "referencedDeclaration": 11085,
                          "src": "4089:16:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4088:31:30"
                  },
                  "returnParameters": {
                    "id": 6411,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6410,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6417,
                        "src": "4198:6:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6409,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4198:6:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4197:8:30"
                  },
                  "scope": 6538,
                  "src": "4071:179:30",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11317
                  ],
                  "body": {
                    "id": 6459,
                    "nodeType": "Block",
                    "src": "4384:252:30",
                    "statements": [
                      {
                        "assignments": [
                          6433
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6433,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "4426:6:30",
                            "nodeType": "VariableDeclaration",
                            "scope": 6459,
                            "src": "4394:38:30",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 6432,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6431,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12224,
                                "src": "4394:24:30"
                              },
                              "referencedDeclaration": 12224,
                              "src": "4394:24:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6435,
                        "initialValue": {
                          "id": 6434,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6196,
                          "src": "4435:14:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4394:55:30"
                      },
                      {
                        "assignments": [
                          6437
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6437,
                            "mutability": "mutable",
                            "name": "index",
                            "nameLocation": "4466:5:30",
                            "nodeType": "VariableDeclaration",
                            "scope": 6459,
                            "src": "4459:12:30",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 6436,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "4459:6:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6443,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 6440,
                                "name": "_newDraw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6421,
                                "src": "4490:8:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 6441,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11078,
                              "src": "4490:15:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 6438,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6433,
                              "src": "4474:6:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 6439,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12353,
                            "src": "4474:15:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$12224_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                            }
                          },
                          "id": 6442,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4474:32:30",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4459:47:30"
                      },
                      {
                        "expression": {
                          "id": 6448,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 6444,
                              "name": "drawRingBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6192,
                              "src": "4516:14:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$256_storage",
                                "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                              }
                            },
                            "id": 6446,
                            "indexExpression": {
                              "id": 6445,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6437,
                              "src": "4531:5:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "4516:21:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$11085_storage",
                              "typeString": "struct IDrawBeacon.Draw storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6447,
                            "name": "_newDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6421,
                            "src": "4540:8:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory"
                            }
                          },
                          "src": "4516:32:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage",
                            "typeString": "struct IDrawBeacon.Draw storage ref"
                          }
                        },
                        "id": 6449,
                        "nodeType": "ExpressionStatement",
                        "src": "4516:32:30"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 6451,
                                "name": "_newDraw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6421,
                                "src": "4571:8:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 6452,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11078,
                              "src": "4571:15:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 6453,
                              "name": "_newDraw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6421,
                              "src": "4588:8:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "id": 6450,
                            "name": "DrawSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11253,
                            "src": "4563:7:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_Draw_$11085_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IDrawBeacon.Draw memory)"
                            }
                          },
                          "id": 6454,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4563:34:30",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6455,
                        "nodeType": "EmitStatement",
                        "src": "4558:39:30"
                      },
                      {
                        "expression": {
                          "expression": {
                            "id": 6456,
                            "name": "_newDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6421,
                            "src": "4614:8:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory"
                            }
                          },
                          "id": 6457,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "drawId",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 11078,
                          "src": "4614:15:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 6428,
                        "id": 6458,
                        "nodeType": "Return",
                        "src": "4607:22:30"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6418,
                    "nodeType": "StructuredDocumentation",
                    "src": "4256:27:30",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "d7bcb86b",
                  "id": 6460,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 6425,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6424,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "4357:9:30"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4357:9:30"
                    }
                  ],
                  "name": "setDraw",
                  "nameLocation": "4297:7:30",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6423,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4348:8:30"
                  },
                  "parameters": {
                    "id": 6422,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6421,
                        "mutability": "mutable",
                        "name": "_newDraw",
                        "nameLocation": "4329:8:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 6460,
                        "src": "4305:32:30",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 6420,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6419,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11085,
                            "src": "4305:16:30"
                          },
                          "referencedDeclaration": 11085,
                          "src": "4305:16:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4304:34:30"
                  },
                  "returnParameters": {
                    "id": 6428,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6427,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6460,
                        "src": "4376:6:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6426,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4376:6:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4375:8:30"
                  },
                  "scope": 6538,
                  "src": "4288:348:30",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 6476,
                    "nodeType": "Block",
                    "src": "5104:49:30",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6473,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6466,
                              "src": "5138:7:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 6471,
                              "name": "_buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6464,
                              "src": "5121:7:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 6472,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12353,
                            "src": "5121:16:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$12224_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                            }
                          },
                          "id": 6474,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5121:25:30",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 6470,
                        "id": 6475,
                        "nodeType": "Return",
                        "src": "5114:32:30"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6461,
                    "nodeType": "StructuredDocumentation",
                    "src": "4698:257:30",
                    "text": " @notice Convert a Draw.drawId to a Draws ring buffer index pointer.\n @dev    The getNewestDraw.drawId() is used to calculate a Draws ID delta position.\n @param _drawId Draw.drawId\n @return Draws ring buffer index pointer"
                  },
                  "id": 6477,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_drawIdToDrawIndex",
                  "nameLocation": "4969:18:30",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6467,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6464,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "5020:7:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 6477,
                        "src": "4988:39:30",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 6463,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6462,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12224,
                            "src": "4988:24:30"
                          },
                          "referencedDeclaration": 12224,
                          "src": "4988:24:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6466,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "5036:7:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 6477,
                        "src": "5029:14:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6465,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5029:6:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4987:57:30"
                  },
                  "returnParameters": {
                    "id": 6470,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6469,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6477,
                        "src": "5092:6:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6468,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5092:6:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5091:8:30"
                  },
                  "scope": 6538,
                  "src": "4960:193:30",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6495,
                    "nodeType": "Block",
                    "src": "5525:76:30",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 6487,
                            "name": "drawRingBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6192,
                            "src": "5542:14:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$256_storage",
                              "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                            }
                          },
                          "id": 6493,
                          "indexExpression": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 6490,
                                  "name": "_buffer",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6481,
                                  "src": "5574:7:30",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                    "typeString": "struct DrawRingBufferLib.Buffer memory"
                                  }
                                },
                                "id": 6491,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "lastDrawId",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12219,
                                "src": "5574:18:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 6488,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6481,
                                "src": "5557:7:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 6489,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "getIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12353,
                              "src": "5557:16:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$12224_memory_ptr_$",
                                "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 6492,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "5557:36:30",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "5542:52:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage",
                            "typeString": "struct IDrawBeacon.Draw storage ref"
                          }
                        },
                        "functionReturnParameters": 6486,
                        "id": 6494,
                        "nodeType": "Return",
                        "src": "5535:59:30"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6478,
                    "nodeType": "StructuredDocumentation",
                    "src": "5159:220:30",
                    "text": " @notice Read newest Draw from the draws ring buffer.\n @dev    Uses the lastDrawId to calculate the most recently added Draw.\n @param _buffer Draw ring buffer\n @return IDrawBeacon.Draw"
                  },
                  "id": 6496,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getNewestDraw",
                  "nameLocation": "5393:14:30",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6482,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6481,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "5440:7:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 6496,
                        "src": "5408:39:30",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 6480,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6479,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12224,
                            "src": "5408:24:30"
                          },
                          "referencedDeclaration": 12224,
                          "src": "5408:24:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5407:41:30"
                  },
                  "returnParameters": {
                    "id": 6486,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6485,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6496,
                        "src": "5496:23:30",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 6484,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6483,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11085,
                            "src": "5496:16:30"
                          },
                          "referencedDeclaration": 11085,
                          "src": "5496:16:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5495:25:30"
                  },
                  "scope": 6538,
                  "src": "5384:217:30",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6536,
                    "nodeType": "Block",
                    "src": "5904:266:30",
                    "statements": [
                      {
                        "assignments": [
                          6509
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6509,
                            "mutability": "mutable",
                            "name": "_buffer",
                            "nameLocation": "5946:7:30",
                            "nodeType": "VariableDeclaration",
                            "scope": 6536,
                            "src": "5914:39:30",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 6508,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6507,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12224,
                                "src": "5914:24:30"
                              },
                              "referencedDeclaration": 12224,
                              "src": "5914:24:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6511,
                        "initialValue": {
                          "id": 6510,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6196,
                          "src": "5956:14:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5914:56:30"
                      },
                      {
                        "expression": {
                          "id": 6517,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 6512,
                              "name": "drawRingBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6192,
                              "src": "5980:14:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$256_storage",
                                "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                              }
                            },
                            "id": 6515,
                            "indexExpression": {
                              "expression": {
                                "id": 6513,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6509,
                                "src": "5995:7:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 6514,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "nextIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12221,
                              "src": "5995:17:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "5980:33:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$11085_storage",
                              "typeString": "struct IDrawBeacon.Draw storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6516,
                            "name": "_newDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6500,
                            "src": "6016:8:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory"
                            }
                          },
                          "src": "5980:44:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage",
                            "typeString": "struct IDrawBeacon.Draw storage ref"
                          }
                        },
                        "id": 6518,
                        "nodeType": "ExpressionStatement",
                        "src": "5980:44:30"
                      },
                      {
                        "expression": {
                          "id": 6525,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6519,
                            "name": "bufferMetadata",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6196,
                            "src": "6034:14:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                              "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 6522,
                                  "name": "_newDraw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6500,
                                  "src": "6064:8:30",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "id": 6523,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "drawId",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11078,
                                "src": "6064:15:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 6520,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6509,
                                "src": "6051:7:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 6521,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "push",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12290,
                              "src": "6051:12:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_struct$_Buffer_$12224_memory_ptr_$bound_to$_t_struct$_Buffer_$12224_memory_ptr_$",
                                "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (struct DrawRingBufferLib.Buffer memory)"
                              }
                            },
                            "id": 6524,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "6051:29:30",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer memory"
                            }
                          },
                          "src": "6034:46:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "id": 6526,
                        "nodeType": "ExpressionStatement",
                        "src": "6034:46:30"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 6528,
                                "name": "_newDraw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6500,
                                "src": "6104:8:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 6529,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11078,
                              "src": "6104:15:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 6530,
                              "name": "_newDraw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6500,
                              "src": "6121:8:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "id": 6527,
                            "name": "DrawSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11253,
                            "src": "6096:7:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_Draw_$11085_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IDrawBeacon.Draw memory)"
                            }
                          },
                          "id": 6531,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6096:34:30",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6532,
                        "nodeType": "EmitStatement",
                        "src": "6091:39:30"
                      },
                      {
                        "expression": {
                          "expression": {
                            "id": 6533,
                            "name": "_newDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6500,
                            "src": "6148:8:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory"
                            }
                          },
                          "id": 6534,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "drawId",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 11078,
                          "src": "6148:15:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 6504,
                        "id": 6535,
                        "nodeType": "Return",
                        "src": "6141:22:30"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6497,
                    "nodeType": "StructuredDocumentation",
                    "src": "5607:213:30",
                    "text": " @notice Push Draw onto draws ring buffer history.\n @dev    Push new draw onto draws list via authorized manager or owner.\n @param _newDraw IDrawBeacon.Draw\n @return Draw.drawId"
                  },
                  "id": 6537,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_pushDraw",
                  "nameLocation": "5834:9:30",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6501,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6500,
                        "mutability": "mutable",
                        "name": "_newDraw",
                        "nameLocation": "5868:8:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 6537,
                        "src": "5844:32:30",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 6499,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6498,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11085,
                            "src": "5844:16:30"
                          },
                          "referencedDeclaration": 11085,
                          "src": "5844:16:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5843:34:30"
                  },
                  "returnParameters": {
                    "id": 6504,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6503,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6537,
                        "src": "5896:6:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6502,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5896:6:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5895:8:30"
                  },
                  "scope": 6538,
                  "src": "5825:345:30",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 6539,
              "src": "1184:4988:30",
              "usedErrors": []
            }
          ],
          "src": "37:6136:30"
        },
        "id": 30
      },
      "contracts/DrawCalculator.sol": {
        "ast": {
          "absolutePath": "contracts/DrawCalculator.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "DrawCalculator": [
              7568
            ],
            "DrawRingBufferLib": [
              12354
            ],
            "ExtendedSafeCastLib": [
              12433
            ],
            "IControlledToken": [
              11069
            ],
            "IDrawBeacon": [
              11241
            ],
            "IDrawBuffer": [
              11318
            ],
            "IDrawCalculator": [
              11391
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              11467
            ],
            "IPrizeDistributionSource": [
              11503
            ],
            "IPrizeDistributor": [
              11601
            ],
            "ITicket": [
              12213
            ],
            "Manageable": [
              3931
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "Ownable": [
              4086
            ],
            "PrizeDistributionBuffer": [
              9113
            ],
            "PrizeDistributor": [
              9486
            ],
            "RNGInterface": [
              4142
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 7569,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 6540,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:31"
            },
            {
              "absolutePath": "contracts/interfaces/IDrawCalculator.sol",
              "file": "./interfaces/IDrawCalculator.sol",
              "id": 6541,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 7569,
              "sourceUnit": 11392,
              "src": "61:42:31",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/ITicket.sol",
              "file": "./interfaces/ITicket.sol",
              "id": 6542,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 7569,
              "sourceUnit": 12214,
              "src": "104:34:31",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IDrawBuffer.sol",
              "file": "./interfaces/IDrawBuffer.sol",
              "id": 6543,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 7569,
              "sourceUnit": 11319,
              "src": "139:38:31",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IPrizeDistributionBuffer.sol",
              "file": "./interfaces/IPrizeDistributionBuffer.sol",
              "id": 6544,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 7569,
              "sourceUnit": 11468,
              "src": "178:51:31",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IDrawBeacon.sol",
              "file": "./interfaces/IDrawBeacon.sol",
              "id": 6545,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 7569,
              "sourceUnit": 11242,
              "src": "230:38:31",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 6547,
                    "name": "IDrawCalculator",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11391,
                    "src": "903:15:31"
                  },
                  "id": 6548,
                  "nodeType": "InheritanceSpecifier",
                  "src": "903:15:31"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 6546,
                "nodeType": "StructuredDocumentation",
                "src": "270:605:31",
                "text": " @title  PoolTogether V4 DrawCalculator\n @author PoolTogether Inc Team\n @notice The DrawCalculator calculates a user's prize by matching a winning random number against\ntheir picks. A users picks are generated deterministically based on their address and balance\nof tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc...\nA user with a higher average weighted balance (during each draw period) will be given a large number of\npicks to choose from, and thus a higher chance to match the winning numbers."
              },
              "fullyImplemented": true,
              "id": 7568,
              "linearizedBaseContracts": [
                7568,
                11391
              ],
              "name": "DrawCalculator",
              "nameLocation": "885:14:31",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 6549,
                    "nodeType": "StructuredDocumentation",
                    "src": "926:30:31",
                    "text": "@notice DrawBuffer address"
                  },
                  "functionSelector": "ce343bb6",
                  "id": 6552,
                  "mutability": "immutable",
                  "name": "drawBuffer",
                  "nameLocation": "990:10:31",
                  "nodeType": "VariableDeclaration",
                  "scope": 7568,
                  "src": "961:39:31",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                    "typeString": "contract IDrawBuffer"
                  },
                  "typeName": {
                    "id": 6551,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6550,
                      "name": "IDrawBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11318,
                      "src": "961:11:31"
                    },
                    "referencedDeclaration": 11318,
                    "src": "961:11:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                      "typeString": "contract IDrawBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6553,
                    "nodeType": "StructuredDocumentation",
                    "src": "1007:49:31",
                    "text": "@notice Ticket associated with DrawCalculator"
                  },
                  "functionSelector": "6cc25db7",
                  "id": 6556,
                  "mutability": "immutable",
                  "name": "ticket",
                  "nameLocation": "1086:6:31",
                  "nodeType": "VariableDeclaration",
                  "scope": 7568,
                  "src": "1061:31:31",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_ITicket_$12213",
                    "typeString": "contract ITicket"
                  },
                  "typeName": {
                    "id": 6555,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6554,
                      "name": "ITicket",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 12213,
                      "src": "1061:7:31"
                    },
                    "referencedDeclaration": 12213,
                    "src": "1061:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_ITicket_$12213",
                      "typeString": "contract ITicket"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6557,
                    "nodeType": "StructuredDocumentation",
                    "src": "1099:72:31",
                    "text": "@notice The stored history of draw settings.  Stored as ring buffer."
                  },
                  "functionSelector": "0840bbdd",
                  "id": 6560,
                  "mutability": "immutable",
                  "name": "prizeDistributionBuffer",
                  "nameLocation": "1218:23:31",
                  "nodeType": "VariableDeclaration",
                  "scope": 7568,
                  "src": "1176:65:31",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                    "typeString": "contract IPrizeDistributionBuffer"
                  },
                  "typeName": {
                    "id": 6559,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6558,
                      "name": "IPrizeDistributionBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11467,
                      "src": "1176:24:31"
                    },
                    "referencedDeclaration": 11467,
                    "src": "1176:24:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                      "typeString": "contract IPrizeDistributionBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 6561,
                    "nodeType": "StructuredDocumentation",
                    "src": "1248:34:31",
                    "text": "@notice The tiers array length"
                  },
                  "functionSelector": "f8d0ca4c",
                  "id": 6564,
                  "mutability": "constant",
                  "name": "TIERS_LENGTH",
                  "nameLocation": "1309:12:31",
                  "nodeType": "VariableDeclaration",
                  "scope": 7568,
                  "src": "1287:39:31",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint8",
                    "typeString": "uint8"
                  },
                  "typeName": {
                    "id": 6562,
                    "name": "uint8",
                    "nodeType": "ElementaryTypeName",
                    "src": "1287:5:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "value": {
                    "hexValue": "3136",
                    "id": 6563,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1324:2:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_16_by_1",
                      "typeString": "int_const 16"
                    },
                    "value": "16"
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 6634,
                    "nodeType": "Block",
                    "src": "1777:445:31",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 6586,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 6580,
                                    "name": "_ticket",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6568,
                                    "src": "1803:7:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ITicket_$12213",
                                      "typeString": "contract ITicket"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ITicket_$12213",
                                      "typeString": "contract ITicket"
                                    }
                                  ],
                                  "id": 6579,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1795:7:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6578,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1795:7:31",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6581,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1795:16:31",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 6584,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1823:1:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 6583,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1815:7:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6582,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1815:7:31",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6585,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1815:10:31",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1795:30:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f7469636b65742d6e6f742d7a65726f",
                              "id": 6587,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1827:26:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017",
                                "typeString": "literal_string \"DrawCalc/ticket-not-zero\""
                              },
                              "value": "DrawCalc/ticket-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017",
                                "typeString": "literal_string \"DrawCalc/ticket-not-zero\""
                              }
                            ],
                            "id": 6577,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1787:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6588,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1787:67:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6589,
                        "nodeType": "ExpressionStatement",
                        "src": "1787:67:31"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 6599,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 6593,
                                    "name": "_prizeDistributionBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6574,
                                    "src": "1880:24:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                                      "typeString": "contract IPrizeDistributionBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                                      "typeString": "contract IPrizeDistributionBuffer"
                                    }
                                  ],
                                  "id": 6592,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1872:7:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6591,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1872:7:31",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6594,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1872:33:31",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 6597,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1917:1:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 6596,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1909:7:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6595,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1909:7:31",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6598,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1909:10:31",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1872:47:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f7064622d6e6f742d7a65726f",
                              "id": 6600,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1921:23:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42",
                                "typeString": "literal_string \"DrawCalc/pdb-not-zero\""
                              },
                              "value": "DrawCalc/pdb-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42",
                                "typeString": "literal_string \"DrawCalc/pdb-not-zero\""
                              }
                            ],
                            "id": 6590,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1864:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6601,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1864:81:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6602,
                        "nodeType": "ExpressionStatement",
                        "src": "1864:81:31"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 6612,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 6606,
                                    "name": "_drawBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6571,
                                    "src": "1971:11:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  ],
                                  "id": 6605,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1963:7:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6604,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1963:7:31",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6607,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1963:20:31",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 6610,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1995:1:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 6609,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1987:7:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6608,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1987:7:31",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6611,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1987:10:31",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1963:34:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f64682d6e6f742d7a65726f",
                              "id": 6613,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1999:22:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f",
                                "typeString": "literal_string \"DrawCalc/dh-not-zero\""
                              },
                              "value": "DrawCalc/dh-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f",
                                "typeString": "literal_string \"DrawCalc/dh-not-zero\""
                              }
                            ],
                            "id": 6603,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1955:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6614,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1955:67:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6615,
                        "nodeType": "ExpressionStatement",
                        "src": "1955:67:31"
                      },
                      {
                        "expression": {
                          "id": 6618,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6616,
                            "name": "ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6556,
                            "src": "2033:6:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$12213",
                              "typeString": "contract ITicket"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6617,
                            "name": "_ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6568,
                            "src": "2042:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$12213",
                              "typeString": "contract ITicket"
                            }
                          },
                          "src": "2033:16:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "id": 6619,
                        "nodeType": "ExpressionStatement",
                        "src": "2033:16:31"
                      },
                      {
                        "expression": {
                          "id": 6622,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6620,
                            "name": "drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6552,
                            "src": "2059:10:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6621,
                            "name": "_drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6571,
                            "src": "2072:11:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "src": "2059:24:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "id": 6623,
                        "nodeType": "ExpressionStatement",
                        "src": "2059:24:31"
                      },
                      {
                        "expression": {
                          "id": 6626,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6624,
                            "name": "prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6560,
                            "src": "2093:23:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6625,
                            "name": "_prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6574,
                            "src": "2119:24:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "src": "2093:50:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "id": 6627,
                        "nodeType": "ExpressionStatement",
                        "src": "2093:50:31"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6629,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6568,
                              "src": "2168:7:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 6630,
                              "name": "_drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6571,
                              "src": "2177:11:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            {
                              "id": 6631,
                              "name": "_prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6574,
                              "src": "2190:24:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              },
                              {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            ],
                            "id": 6628,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11342,
                            "src": "2159:8:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_ITicket_$12213_$_t_contract$_IDrawBuffer_$11318_$_t_contract$_IPrizeDistributionBuffer_$11467_$returns$__$",
                              "typeString": "function (contract ITicket,contract IDrawBuffer,contract IPrizeDistributionBuffer)"
                            }
                          },
                          "id": 6632,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2159:56:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6633,
                        "nodeType": "EmitStatement",
                        "src": "2154:61:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6565,
                    "nodeType": "StructuredDocumentation",
                    "src": "1382:255:31",
                    "text": "@notice Constructor for DrawCalculator\n @param _ticket Ticket associated with this DrawCalculator\n @param _drawBuffer The address of the draw buffer to push draws to\n @param _prizeDistributionBuffer PrizeDistributionBuffer address"
                  },
                  "id": 6635,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6575,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6568,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "1671:7:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6635,
                        "src": "1663:15:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 6567,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6566,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "1663:7:31"
                          },
                          "referencedDeclaration": 12213,
                          "src": "1663:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6571,
                        "mutability": "mutable",
                        "name": "_drawBuffer",
                        "nameLocation": "1700:11:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6635,
                        "src": "1688:23:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 6570,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6569,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "1688:11:31"
                          },
                          "referencedDeclaration": 11318,
                          "src": "1688:11:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6574,
                        "mutability": "mutable",
                        "name": "_prizeDistributionBuffer",
                        "nameLocation": "1746:24:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6635,
                        "src": "1721:49:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 6573,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6572,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11467,
                            "src": "1721:24:31"
                          },
                          "referencedDeclaration": 11467,
                          "src": "1721:24:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1653:123:31"
                  },
                  "returnParameters": {
                    "id": 6576,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1777:0:31"
                  },
                  "scope": 7568,
                  "src": "1642:580:31",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11364
                  ],
                  "body": {
                    "id": 6727,
                    "nodeType": "Block",
                    "src": "2513:1108:31",
                    "statements": [
                      {
                        "assignments": [
                          6657
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6657,
                            "mutability": "mutable",
                            "name": "pickIndices",
                            "nameLocation": "2541:11:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 6727,
                            "src": "2523:29:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                              "typeString": "uint64[][]"
                            },
                            "typeName": {
                              "baseType": {
                                "baseType": {
                                  "id": 6654,
                                  "name": "uint64",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2523:6:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "id": 6655,
                                "nodeType": "ArrayTypeName",
                                "src": "2523:8:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                  "typeString": "uint64[]"
                                }
                              },
                              "id": 6656,
                              "nodeType": "ArrayTypeName",
                              "src": "2523:10:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_storage_$dyn_storage_ptr",
                                "typeString": "uint64[][]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6667,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6660,
                              "name": "_pickIndicesForDraws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6643,
                              "src": "2566:20:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_calldata_ptr",
                                "typeString": "bytes calldata"
                              }
                            },
                            {
                              "components": [
                                {
                                  "baseExpression": {
                                    "baseExpression": {
                                      "id": 6662,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "2589:6:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint64_$",
                                        "typeString": "type(uint64)"
                                      },
                                      "typeName": {
                                        "id": 6661,
                                        "name": "uint64",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "2589:6:31",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 6663,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "2589:9:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_array$_t_uint64_$dyn_memory_ptr_$",
                                      "typeString": "type(uint64[] memory)"
                                    }
                                  },
                                  "id": 6664,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "2589:11:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr_$",
                                    "typeString": "type(uint64[] memory[] memory)"
                                  }
                                }
                              ],
                              "id": 6665,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "2588:13:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr_$",
                                "typeString": "type(uint64[] memory[] memory)"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_calldata_ptr",
                                "typeString": "bytes calldata"
                              },
                              {
                                "typeIdentifier": "t_type$_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr_$",
                                "typeString": "type(uint64[] memory[] memory)"
                              }
                            ],
                            "expression": {
                              "id": 6658,
                              "name": "abi",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -1,
                              "src": "2555:3:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_abi",
                                "typeString": "abi"
                              }
                            },
                            "id": 6659,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "decode",
                            "nodeType": "MemberAccess",
                            "src": "2555:10:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_abidecode_pure$__$returns$__$",
                              "typeString": "function () pure"
                            }
                          },
                          "id": 6666,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2555:47:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                            "typeString": "uint64[] memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2523:79:31"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 6673,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 6669,
                                  "name": "pickIndices",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6657,
                                  "src": "2620:11:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                                    "typeString": "uint64[] memory[] memory"
                                  }
                                },
                                "id": 6670,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "2620:18:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 6671,
                                  "name": "_drawIds",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6641,
                                  "src": "2642:8:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                    "typeString": "uint32[] calldata"
                                  }
                                },
                                "id": 6672,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "2642:15:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2620:37:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c656e677468",
                              "id": 6674,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2659:38:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f",
                                "typeString": "literal_string \"DrawCalc/invalid-pick-indices-length\""
                              },
                              "value": "DrawCalc/invalid-pick-indices-length"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f",
                                "typeString": "literal_string \"DrawCalc/invalid-pick-indices-length\""
                              }
                            ],
                            "id": 6668,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2612:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6675,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2612:86:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6676,
                        "nodeType": "ExpressionStatement",
                        "src": "2612:86:31"
                      },
                      {
                        "assignments": [
                          6682
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6682,
                            "mutability": "mutable",
                            "name": "draws",
                            "nameLocation": "2810:5:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 6727,
                            "src": "2784:31:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6680,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 6679,
                                  "name": "IDrawBeacon.Draw",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11085,
                                  "src": "2784:16:31"
                                },
                                "referencedDeclaration": 11085,
                                "src": "2784:16:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                                  "typeString": "struct IDrawBeacon.Draw"
                                }
                              },
                              "id": 6681,
                              "nodeType": "ArrayTypeName",
                              "src": "2784:18:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$dyn_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6687,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6685,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6641,
                              "src": "2838:8:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            ],
                            "expression": {
                              "id": 6683,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6552,
                              "src": "2818:10:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 6684,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getDraws",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11279,
                            "src": "2818:19:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IDrawBeacon.Draw memory[] memory)"
                            }
                          },
                          "id": 6686,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2818:29:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2784:63:31"
                      },
                      {
                        "assignments": [
                          6693
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6693,
                            "mutability": "mutable",
                            "name": "_prizeDistributions",
                            "nameLocation": "2995:19:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 6727,
                            "src": "2943:71:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6691,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 6690,
                                  "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11491,
                                  "src": "2943:42:31"
                                },
                                "referencedDeclaration": 11491,
                                "src": "2943:42:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                                }
                              },
                              "id": 6692,
                              "nodeType": "ArrayTypeName",
                              "src": "2943:44:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6698,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6696,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6641,
                              "src": "3076:8:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            ],
                            "expression": {
                              "id": 6694,
                              "name": "prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6560,
                              "src": "3017:23:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            "id": 6695,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getPrizeDistributions",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11502,
                            "src": "3017:58:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IPrizeDistributionSource.PrizeDistribution memory[] memory)"
                            }
                          },
                          "id": 6697,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3017:68:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2943:142:31"
                      },
                      {
                        "assignments": [
                          6703
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6703,
                            "mutability": "mutable",
                            "name": "userBalances",
                            "nameLocation": "3211:12:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 6727,
                            "src": "3194:29:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6701,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "3194:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 6702,
                              "nodeType": "ArrayTypeName",
                              "src": "3194:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6709,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6705,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6638,
                              "src": "3251:5:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 6706,
                              "name": "draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6682,
                              "src": "3258:5:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            {
                              "id": 6707,
                              "name": "_prizeDistributions",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6693,
                              "src": "3265:19:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            ],
                            "id": 6704,
                            "name": "_getNormalizedBalancesAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7112,
                            "src": "3226:24:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_$_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (address,struct IDrawBeacon.Draw memory[] memory,struct IPrizeDistributionSource.PrizeDistribution memory[] memory) view returns (uint256[] memory)"
                            }
                          },
                          "id": 6708,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3226:59:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3194:91:31"
                      },
                      {
                        "assignments": [
                          6711
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6711,
                            "mutability": "mutable",
                            "name": "_userRandomNumber",
                            "nameLocation": "3349:17:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 6727,
                            "src": "3341:25:31",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 6710,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "3341:7:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6718,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 6715,
                                  "name": "_user",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6638,
                                  "src": "3396:5:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "expression": {
                                  "id": 6713,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "3379:3:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 6714,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "3379:16:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 6716,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3379:23:31",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 6712,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "3369:9:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 6717,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3369:34:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3341:62:31"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6720,
                              "name": "userBalances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6703,
                              "src": "3464:12:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              }
                            },
                            {
                              "id": 6721,
                              "name": "_userRandomNumber",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6711,
                              "src": "3494:17:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 6722,
                              "name": "draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6682,
                              "src": "3529:5:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            {
                              "id": 6723,
                              "name": "pickIndices",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6657,
                              "src": "3552:11:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                                "typeString": "uint64[] memory[] memory"
                              }
                            },
                            {
                              "id": 6724,
                              "name": "_prizeDistributions",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6693,
                              "src": "3581:19:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                                "typeString": "uint64[] memory[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            ],
                            "id": 6719,
                            "name": "_calculatePrizesAwardable",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6926,
                            "src": "3421:25:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes32_$_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_$_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr_$_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$",
                              "typeString": "function (uint256[] memory,bytes32,struct IDrawBeacon.Draw memory[] memory,uint64[] memory[] memory,struct IPrizeDistributionSource.PrizeDistribution memory[] memory) view returns (uint256[] memory,bytes memory)"
                            }
                          },
                          "id": 6725,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3421:193:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(uint256[] memory,bytes memory)"
                          }
                        },
                        "functionReturnParameters": 6651,
                        "id": 6726,
                        "nodeType": "Return",
                        "src": "3414:200:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6636,
                    "nodeType": "StructuredDocumentation",
                    "src": "2284:31:31",
                    "text": "@inheritdoc IDrawCalculator"
                  },
                  "functionSelector": "aaca392e",
                  "id": 6728,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculate",
                  "nameLocation": "2329:9:31",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6645,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2463:8:31"
                  },
                  "parameters": {
                    "id": 6644,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6638,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2356:5:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6728,
                        "src": "2348:13:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 6637,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2348:7:31",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6641,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "2389:8:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6728,
                        "src": "2371:26:31",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6639,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2371:6:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 6640,
                          "nodeType": "ArrayTypeName",
                          "src": "2371:8:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6643,
                        "mutability": "mutable",
                        "name": "_pickIndicesForDraws",
                        "nameLocation": "2422:20:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6728,
                        "src": "2407:35:31",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 6642,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2407:5:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2338:110:31"
                  },
                  "returnParameters": {
                    "id": 6651,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6648,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6728,
                        "src": "2481:16:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6646,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "2481:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 6647,
                          "nodeType": "ArrayTypeName",
                          "src": "2481:9:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6650,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6728,
                        "src": "2499:12:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 6649,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2499:5:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2480:32:31"
                  },
                  "scope": 7568,
                  "src": "2320:1301:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11371
                  ],
                  "body": {
                    "id": 6738,
                    "nodeType": "Block",
                    "src": "3733:34:31",
                    "statements": [
                      {
                        "expression": {
                          "id": 6736,
                          "name": "drawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6552,
                          "src": "3750:10:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "functionReturnParameters": 6735,
                        "id": 6737,
                        "nodeType": "Return",
                        "src": "3743:17:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6729,
                    "nodeType": "StructuredDocumentation",
                    "src": "3627:31:31",
                    "text": "@inheritdoc IDrawCalculator"
                  },
                  "functionSelector": "4019f2d6",
                  "id": 6739,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawBuffer",
                  "nameLocation": "3672:13:31",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6731,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3702:8:31"
                  },
                  "parameters": {
                    "id": 6730,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3685:2:31"
                  },
                  "returnParameters": {
                    "id": 6735,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6734,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6739,
                        "src": "3720:11:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 6733,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6732,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "3720:11:31"
                          },
                          "referencedDeclaration": 11318,
                          "src": "3720:11:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3719:13:31"
                  },
                  "scope": 7568,
                  "src": "3663:104:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11378
                  ],
                  "body": {
                    "id": 6749,
                    "nodeType": "Block",
                    "src": "3941:47:31",
                    "statements": [
                      {
                        "expression": {
                          "id": 6747,
                          "name": "prizeDistributionBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6560,
                          "src": "3958:23:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "functionReturnParameters": 6746,
                        "id": 6748,
                        "nodeType": "Return",
                        "src": "3951:30:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6740,
                    "nodeType": "StructuredDocumentation",
                    "src": "3773:31:31",
                    "text": "@inheritdoc IDrawCalculator"
                  },
                  "functionSelector": "bd97a252",
                  "id": 6750,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributionBuffer",
                  "nameLocation": "3818:26:31",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6742,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3885:8:31"
                  },
                  "parameters": {
                    "id": 6741,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3844:2:31"
                  },
                  "returnParameters": {
                    "id": 6746,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6745,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6750,
                        "src": "3911:24:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 6744,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6743,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11467,
                            "src": "3911:24:31"
                          },
                          "referencedDeclaration": 11467,
                          "src": "3911:24:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3910:26:31"
                  },
                  "scope": 7568,
                  "src": "3809:179:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11390
                  ],
                  "body": {
                    "id": 6791,
                    "nodeType": "Block",
                    "src": "4200:311:31",
                    "statements": [
                      {
                        "assignments": [
                          6768
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6768,
                            "mutability": "mutable",
                            "name": "_draws",
                            "nameLocation": "4236:6:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 6791,
                            "src": "4210:32:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6766,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 6765,
                                  "name": "IDrawBeacon.Draw",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11085,
                                  "src": "4210:16:31"
                                },
                                "referencedDeclaration": 11085,
                                "src": "4210:16:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                                  "typeString": "struct IDrawBeacon.Draw"
                                }
                              },
                              "id": 6767,
                              "nodeType": "ArrayTypeName",
                              "src": "4210:18:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$dyn_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6773,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6771,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6756,
                              "src": "4265:8:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            ],
                            "expression": {
                              "id": 6769,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6552,
                              "src": "4245:10:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 6770,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getDraws",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11279,
                            "src": "4245:19:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IDrawBeacon.Draw memory[] memory)"
                            }
                          },
                          "id": 6772,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4245:29:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4210:64:31"
                      },
                      {
                        "assignments": [
                          6779
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6779,
                            "mutability": "mutable",
                            "name": "_prizeDistributions",
                            "nameLocation": "4336:19:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 6791,
                            "src": "4284:71:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6777,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 6776,
                                  "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11491,
                                  "src": "4284:42:31"
                                },
                                "referencedDeclaration": 11491,
                                "src": "4284:42:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                                }
                              },
                              "id": 6778,
                              "nodeType": "ArrayTypeName",
                              "src": "4284:44:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6784,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6782,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6756,
                              "src": "4417:8:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            ],
                            "expression": {
                              "id": 6780,
                              "name": "prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6560,
                              "src": "4358:23:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            "id": 6781,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getPrizeDistributions",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11502,
                            "src": "4358:58:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IPrizeDistributionSource.PrizeDistribution memory[] memory)"
                            }
                          },
                          "id": 6783,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4358:68:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4284:142:31"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6786,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6753,
                              "src": "4469:5:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 6787,
                              "name": "_draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6768,
                              "src": "4476:6:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            {
                              "id": 6788,
                              "name": "_prizeDistributions",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6779,
                              "src": "4484:19:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            ],
                            "id": 6785,
                            "name": "_getNormalizedBalancesAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7112,
                            "src": "4444:24:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_$_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (address,struct IDrawBeacon.Draw memory[] memory,struct IPrizeDistributionSource.PrizeDistribution memory[] memory) view returns (uint256[] memory)"
                            }
                          },
                          "id": 6789,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4444:60:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 6762,
                        "id": 6790,
                        "nodeType": "Return",
                        "src": "4437:67:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6751,
                    "nodeType": "StructuredDocumentation",
                    "src": "3994:31:31",
                    "text": "@inheritdoc IDrawCalculator"
                  },
                  "functionSelector": "8045fbcf",
                  "id": 6792,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNormalizedBalancesForDrawIds",
                  "nameLocation": "4039:31:31",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6758,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4152:8:31"
                  },
                  "parameters": {
                    "id": 6757,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6753,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4079:5:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6792,
                        "src": "4071:13:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 6752,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4071:7:31",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6756,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "4104:8:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6792,
                        "src": "4086:26:31",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6754,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "4086:6:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 6755,
                          "nodeType": "ArrayTypeName",
                          "src": "4086:8:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4070:43:31"
                  },
                  "returnParameters": {
                    "id": 6762,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6761,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6792,
                        "src": "4178:16:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6759,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "4178:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 6760,
                          "nodeType": "ArrayTypeName",
                          "src": "4178:9:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4177:18:31"
                  },
                  "scope": 7568,
                  "src": "4030:481:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 6925,
                    "nodeType": "Block",
                    "src": "5425:1109:31",
                    "statements": [
                      {
                        "assignments": [
                          6822
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6822,
                            "mutability": "mutable",
                            "name": "_prizesAwardable",
                            "nameLocation": "5453:16:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 6925,
                            "src": "5436:33:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6820,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5436:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 6821,
                              "nodeType": "ArrayTypeName",
                              "src": "5436:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6829,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 6826,
                                "name": "_normalizedUserBalances",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6796,
                                "src": "5486:23:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory"
                                }
                              },
                              "id": 6827,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "5486:30:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 6825,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "5472:13:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6823,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5476:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 6824,
                              "nodeType": "ArrayTypeName",
                              "src": "5476:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 6828,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5472:45:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5436:81:31"
                      },
                      {
                        "assignments": [
                          6835
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6835,
                            "mutability": "mutable",
                            "name": "_prizeCounts",
                            "nameLocation": "5546:12:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 6925,
                            "src": "5527:31:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                              "typeString": "uint256[][]"
                            },
                            "typeName": {
                              "baseType": {
                                "baseType": {
                                  "id": 6832,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5527:7:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 6833,
                                "nodeType": "ArrayTypeName",
                                "src": "5527:9:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                  "typeString": "uint256[]"
                                }
                              },
                              "id": 6834,
                              "nodeType": "ArrayTypeName",
                              "src": "5527:11:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_storage_$dyn_storage_ptr",
                                "typeString": "uint256[][]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6843,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 6840,
                                "name": "_normalizedUserBalances",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6796,
                                "src": "5577:23:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory"
                                }
                              },
                              "id": 6841,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "5577:30:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 6839,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "5561:15:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "baseType": {
                                  "id": 6836,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5565:7:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 6837,
                                "nodeType": "ArrayTypeName",
                                "src": "5565:9:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                  "typeString": "uint256[]"
                                }
                              },
                              "id": 6838,
                              "nodeType": "ArrayTypeName",
                              "src": "5565:11:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_storage_$dyn_storage_ptr",
                                "typeString": "uint256[][]"
                              }
                            }
                          },
                          "id": 6842,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5561:47:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                            "typeString": "uint256[] memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5527:81:31"
                      },
                      {
                        "assignments": [
                          6845
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6845,
                            "mutability": "mutable",
                            "name": "timeNow",
                            "nameLocation": "5626:7:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 6925,
                            "src": "5619:14:31",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 6844,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "5619:6:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6851,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 6848,
                                "name": "block",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -4,
                                "src": "5643:5:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_block",
                                  "typeString": "block"
                                }
                              },
                              "id": 6849,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "src": "5643:15:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 6847,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "5636:6:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint64_$",
                              "typeString": "type(uint64)"
                            },
                            "typeName": {
                              "id": 6846,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "5636:6:31",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 6850,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5636:23:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5619:40:31"
                      },
                      {
                        "body": {
                          "id": 6912,
                          "nodeType": "Block",
                          "src": "5796:639:31",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    },
                                    "id": 6874,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 6864,
                                      "name": "timeNow",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 6845,
                                      "src": "5818:7:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "<",
                                    "rightExpression": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      },
                                      "id": 6873,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 6865,
                                            "name": "_draws",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6802,
                                            "src": "5828:6:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                            }
                                          },
                                          "id": 6867,
                                          "indexExpression": {
                                            "id": 6866,
                                            "name": "drawIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6853,
                                            "src": "5835:9:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "5828:17:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory"
                                          }
                                        },
                                        "id": 6868,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "timestamp",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11080,
                                        "src": "5828:27:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint64",
                                          "typeString": "uint64"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "+",
                                      "rightExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 6869,
                                            "name": "_prizeDistributions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6810,
                                            "src": "5858:19:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                            }
                                          },
                                          "id": 6871,
                                          "indexExpression": {
                                            "id": 6870,
                                            "name": "drawIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6853,
                                            "src": "5878:9:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "5858:30:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                          }
                                        },
                                        "id": 6872,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "expiryDuration",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11482,
                                        "src": "5858:45:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "src": "5828:75:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "src": "5818:85:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "4472617743616c632f647261772d65787069726564",
                                    "id": 6875,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "5905:23:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670",
                                      "typeString": "literal_string \"DrawCalc/draw-expired\""
                                    },
                                    "value": "DrawCalc/draw-expired"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    {
                                      "typeIdentifier": "t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670",
                                      "typeString": "literal_string \"DrawCalc/draw-expired\""
                                    }
                                  ],
                                  "id": 6863,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "5810:7:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 6876,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5810:119:31",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 6877,
                              "nodeType": "ExpressionStatement",
                              "src": "5810:119:31"
                            },
                            {
                              "assignments": [
                                6879
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 6879,
                                  "mutability": "mutable",
                                  "name": "totalUserPicks",
                                  "nameLocation": "5951:14:31",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 6912,
                                  "src": "5944:21:31",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  },
                                  "typeName": {
                                    "id": 6878,
                                    "name": "uint64",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5944:6:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 6888,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "baseExpression": {
                                      "id": 6881,
                                      "name": "_prizeDistributions",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 6810,
                                      "src": "6013:19:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                      }
                                    },
                                    "id": 6883,
                                    "indexExpression": {
                                      "id": 6882,
                                      "name": "drawIndex",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 6853,
                                      "src": "6033:9:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "6013:30:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                    }
                                  },
                                  {
                                    "baseExpression": {
                                      "id": 6884,
                                      "name": "_normalizedUserBalances",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 6796,
                                      "src": "6061:23:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                        "typeString": "uint256[] memory"
                                      }
                                    },
                                    "id": 6886,
                                    "indexExpression": {
                                      "id": 6885,
                                      "name": "drawIndex",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 6853,
                                      "src": "6085:9:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "6061:34:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 6880,
                                  "name": "_calculateNumberOfUserPicks",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6949,
                                  "src": "5968:27:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11491_memory_ptr_$_t_uint256_$returns$_t_uint64_$",
                                    "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory,uint256) pure returns (uint64)"
                                  }
                                },
                                "id": 6887,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5968:141:31",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "5944:165:31"
                            },
                            {
                              "expression": {
                                "id": 6910,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "components": [
                                    {
                                      "baseExpression": {
                                        "id": 6889,
                                        "name": "_prizesAwardable",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6822,
                                        "src": "6125:16:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                          "typeString": "uint256[] memory"
                                        }
                                      },
                                      "id": 6891,
                                      "indexExpression": {
                                        "id": 6890,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6853,
                                        "src": "6142:9:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "6125:27:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 6892,
                                        "name": "_prizeCounts",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6835,
                                        "src": "6154:12:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                                          "typeString": "uint256[] memory[] memory"
                                        }
                                      },
                                      "id": 6894,
                                      "indexExpression": {
                                        "id": 6893,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6853,
                                        "src": "6167:9:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "6154:23:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                        "typeString": "uint256[] memory"
                                      }
                                    }
                                  ],
                                  "id": 6895,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "TupleExpression",
                                  "src": "6124:54:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$",
                                    "typeString": "tuple(uint256,uint256[] memory)"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "baseExpression": {
                                          "id": 6897,
                                          "name": "_draws",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 6802,
                                          "src": "6209:6:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                          }
                                        },
                                        "id": 6899,
                                        "indexExpression": {
                                          "id": 6898,
                                          "name": "drawIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 6853,
                                          "src": "6216:9:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "nodeType": "IndexAccess",
                                        "src": "6209:17:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                          "typeString": "struct IDrawBeacon.Draw memory"
                                        }
                                      },
                                      "id": 6900,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "winningRandomNumber",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 11076,
                                      "src": "6209:37:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    {
                                      "id": 6901,
                                      "name": "totalUserPicks",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 6879,
                                      "src": "6264:14:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    {
                                      "id": 6902,
                                      "name": "_userRandomNumber",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 6798,
                                      "src": "6296:17:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 6903,
                                        "name": "_pickIndicesForDraws",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6806,
                                        "src": "6331:20:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory[] memory"
                                        }
                                      },
                                      "id": 6905,
                                      "indexExpression": {
                                        "id": 6904,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6853,
                                        "src": "6352:9:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "6331:31:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                        "typeString": "uint64[] memory"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 6906,
                                        "name": "_prizeDistributions",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6810,
                                        "src": "6380:19:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                        }
                                      },
                                      "id": 6908,
                                      "indexExpression": {
                                        "id": 6907,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6853,
                                        "src": "6400:9:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "6380:30:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      },
                                      {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      },
                                      {
                                        "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                        "typeString": "uint64[] memory"
                                      },
                                      {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    ],
                                    "id": 6896,
                                    "name": "_calculate",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7314,
                                    "src": "6181:10:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_bytes32_$_t_array$_t_uint64_$dyn_memory_ptr_$_t_struct$_PrizeDistribution_$11491_memory_ptr_$returns$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$",
                                      "typeString": "function (uint256,uint256,bytes32,uint64[] memory,struct IPrizeDistributionSource.PrizeDistribution memory) pure returns (uint256,uint256[] memory)"
                                    }
                                  },
                                  "id": 6909,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "6181:243:31",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$",
                                    "typeString": "tuple(uint256,uint256[] memory)"
                                  }
                                },
                                "src": "6124:300:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 6911,
                              "nodeType": "ExpressionStatement",
                              "src": "6124:300:31"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 6859,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 6856,
                            "name": "drawIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6853,
                            "src": "5756:9:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 6857,
                              "name": "_draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6802,
                              "src": "5768:6:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            "id": 6858,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "5768:13:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "5756:25:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 6913,
                        "initializationExpression": {
                          "assignments": [
                            6853
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 6853,
                              "mutability": "mutable",
                              "name": "drawIndex",
                              "nameLocation": "5741:9:31",
                              "nodeType": "VariableDeclaration",
                              "scope": 6913,
                              "src": "5734:16:31",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "typeName": {
                                "id": 6852,
                                "name": "uint32",
                                "nodeType": "ElementaryTypeName",
                                "src": "5734:6:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 6855,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 6854,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5753:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "5734:20:31"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 6861,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "5783:11:31",
                            "subExpression": {
                              "id": 6860,
                              "name": "drawIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6853,
                              "src": "5783:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 6862,
                          "nodeType": "ExpressionStatement",
                          "src": "5783:11:31"
                        },
                        "nodeType": "ForStatement",
                        "src": "5729:706:31"
                      },
                      {
                        "expression": {
                          "id": 6919,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6914,
                            "name": "prizeCounts",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6816,
                            "src": "6445:11:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 6917,
                                "name": "_prizeCounts",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6835,
                                "src": "6470:12:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory[] memory"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory[] memory"
                                }
                              ],
                              "expression": {
                                "id": 6915,
                                "name": "abi",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -1,
                                "src": "6459:3:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_abi",
                                  "typeString": "abi"
                                }
                              },
                              "id": 6916,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "encode",
                              "nodeType": "MemberAccess",
                              "src": "6459:10:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                "typeString": "function () pure returns (bytes memory)"
                              }
                            },
                            "id": 6918,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "6459:24:31",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes memory"
                            }
                          },
                          "src": "6445:38:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "id": 6920,
                        "nodeType": "ExpressionStatement",
                        "src": "6445:38:31"
                      },
                      {
                        "expression": {
                          "id": 6923,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6921,
                            "name": "prizesAwardable",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6814,
                            "src": "6493:15:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6922,
                            "name": "_prizesAwardable",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6822,
                            "src": "6511:16:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "src": "6493:34:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "id": 6924,
                        "nodeType": "ExpressionStatement",
                        "src": "6493:34:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6793,
                    "nodeType": "StructuredDocumentation",
                    "src": "4573:467:31",
                    "text": " @notice Calculates the prizes awardable for each Draw passed.\n @param _normalizedUserBalances Fractions representing the user's portion of the liquidity for each draw.\n @param _userRandomNumber       Random number of the user to consider over draws\n @param _draws                  List of Draws\n @param _pickIndicesForDraws    Pick indices for each Draw\n @param _prizeDistributions     PrizeDistribution for each Draw"
                  },
                  "id": 6926,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculatePrizesAwardable",
                  "nameLocation": "5054:25:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6811,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6796,
                        "mutability": "mutable",
                        "name": "_normalizedUserBalances",
                        "nameLocation": "5106:23:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6926,
                        "src": "5089:40:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6794,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "5089:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 6795,
                          "nodeType": "ArrayTypeName",
                          "src": "5089:9:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6798,
                        "mutability": "mutable",
                        "name": "_userRandomNumber",
                        "nameLocation": "5147:17:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6926,
                        "src": "5139:25:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 6797,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5139:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6802,
                        "mutability": "mutable",
                        "name": "_draws",
                        "nameLocation": "5200:6:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6926,
                        "src": "5174:32:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6800,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 6799,
                              "name": "IDrawBeacon.Draw",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11085,
                              "src": "5174:16:31"
                            },
                            "referencedDeclaration": 11085,
                            "src": "5174:16:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            }
                          },
                          "id": 6801,
                          "nodeType": "ArrayTypeName",
                          "src": "5174:18:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$dyn_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6806,
                        "mutability": "mutable",
                        "name": "_pickIndicesForDraws",
                        "nameLocation": "5234:20:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6926,
                        "src": "5216:38:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                          "typeString": "uint64[][]"
                        },
                        "typeName": {
                          "baseType": {
                            "baseType": {
                              "id": 6803,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "5216:6:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "id": 6804,
                            "nodeType": "ArrayTypeName",
                            "src": "5216:8:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                              "typeString": "uint64[]"
                            }
                          },
                          "id": 6805,
                          "nodeType": "ArrayTypeName",
                          "src": "5216:10:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_storage_$dyn_storage_ptr",
                            "typeString": "uint64[][]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6810,
                        "mutability": "mutable",
                        "name": "_prizeDistributions",
                        "nameLocation": "5316:19:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6926,
                        "src": "5264:71:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6808,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 6807,
                              "name": "IPrizeDistributionBuffer.PrizeDistribution",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11491,
                              "src": "5264:42:31"
                            },
                            "referencedDeclaration": 11491,
                            "src": "5264:42:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                            }
                          },
                          "id": 6809,
                          "nodeType": "ArrayTypeName",
                          "src": "5264:44:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5079:262:31"
                  },
                  "returnParameters": {
                    "id": 6817,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6814,
                        "mutability": "mutable",
                        "name": "prizesAwardable",
                        "nameLocation": "5382:15:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6926,
                        "src": "5365:32:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6812,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "5365:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 6813,
                          "nodeType": "ArrayTypeName",
                          "src": "5365:9:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6816,
                        "mutability": "mutable",
                        "name": "prizeCounts",
                        "nameLocation": "5412:11:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6926,
                        "src": "5399:24:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 6815,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5399:5:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5364:60:31"
                  },
                  "scope": 7568,
                  "src": "5045:1489:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6948,
                    "nodeType": "Block",
                    "src": "7187:101:31",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 6945,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "components": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 6942,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 6939,
                                      "name": "_normalizedUserBalance",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 6932,
                                      "src": "7212:22:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "*",
                                    "rightExpression": {
                                      "expression": {
                                        "id": 6940,
                                        "name": "_prizeDistribution",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6930,
                                        "src": "7237:18:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                        }
                                      },
                                      "id": 6941,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "numberOfPicks",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 11484,
                                      "src": "7237:32:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint104",
                                        "typeString": "uint104"
                                      }
                                    },
                                    "src": "7212:57:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "id": 6943,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "7211:59:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "/",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 6944,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7273:7:31",
                                "subdenomination": "ether",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1000000000000000000_by_1",
                                  "typeString": "int_const 1000000000000000000"
                                },
                                "value": "1"
                              },
                              "src": "7211:69:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 6938,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "7204:6:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint64_$",
                              "typeString": "type(uint64)"
                            },
                            "typeName": {
                              "id": 6937,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "7204:6:31",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 6946,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7204:77:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 6936,
                        "id": 6947,
                        "nodeType": "Return",
                        "src": "7197:84:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6927,
                    "nodeType": "StructuredDocumentation",
                    "src": "6540:450:31",
                    "text": " @notice Calculates the number of picks a user gets for a Draw, considering the normalized user balance and the PrizeDistribution.\n @dev Divided by 1e18 since the normalized user balance is stored as a fixed point 18 number\n @param _prizeDistribution The PrizeDistribution to consider\n @param _normalizedUserBalance The normalized user balances to consider\n @return The number of picks a user gets for a Draw"
                  },
                  "id": 6949,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculateNumberOfUserPicks",
                  "nameLocation": "7004:27:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6933,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6930,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "7091:18:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6949,
                        "src": "7041:68:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 6929,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6928,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "7041:42:31"
                          },
                          "referencedDeclaration": 11491,
                          "src": "7041:42:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6932,
                        "mutability": "mutable",
                        "name": "_normalizedUserBalance",
                        "nameLocation": "7127:22:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 6949,
                        "src": "7119:30:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 6931,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7119:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7031:124:31"
                  },
                  "returnParameters": {
                    "id": 6936,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6935,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6949,
                        "src": "7179:6:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6934,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "7179:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7178:8:31"
                  },
                  "scope": 7568,
                  "src": "6995:293:31",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7111,
                    "nodeType": "Block",
                    "src": "7871:1472:31",
                    "statements": [
                      {
                        "assignments": [
                          6967
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6967,
                            "mutability": "mutable",
                            "name": "drawsLength",
                            "nameLocation": "7889:11:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7111,
                            "src": "7881:19:31",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 6966,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7881:7:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6970,
                        "initialValue": {
                          "expression": {
                            "id": 6968,
                            "name": "_draws",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6956,
                            "src": "7903:6:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                            }
                          },
                          "id": 6969,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "7903:13:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7881:35:31"
                      },
                      {
                        "assignments": [
                          6975
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6975,
                            "mutability": "mutable",
                            "name": "_timestampsWithStartCutoffTimes",
                            "nameLocation": "7942:31:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7111,
                            "src": "7926:47:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                              "typeString": "uint64[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6973,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "7926:6:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 6974,
                              "nodeType": "ArrayTypeName",
                              "src": "7926:8:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6981,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6979,
                              "name": "drawsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6967,
                              "src": "7989:11:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 6978,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "7976:12:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint64_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint64[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6976,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "7980:6:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 6977,
                              "nodeType": "ArrayTypeName",
                              "src": "7980:8:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            }
                          },
                          "id": 6980,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7976:25:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                            "typeString": "uint64[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7926:75:31"
                      },
                      {
                        "assignments": [
                          6986
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6986,
                            "mutability": "mutable",
                            "name": "_timestampsWithEndCutoffTimes",
                            "nameLocation": "8027:29:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7111,
                            "src": "8011:45:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                              "typeString": "uint64[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6984,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "8011:6:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 6985,
                              "nodeType": "ArrayTypeName",
                              "src": "8011:8:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6992,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6990,
                              "name": "drawsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6967,
                              "src": "8072:11:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 6989,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "8059:12:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint64_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint64[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6987,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "8063:6:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 6988,
                              "nodeType": "ArrayTypeName",
                              "src": "8063:8:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            }
                          },
                          "id": 6991,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8059:25:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                            "typeString": "uint64[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8011:73:31"
                      },
                      {
                        "body": {
                          "id": 7032,
                          "nodeType": "Block",
                          "src": "8201:325:31",
                          "statements": [
                            {
                              "id": 7031,
                              "nodeType": "UncheckedBlock",
                              "src": "8215:301:31",
                              "statements": [
                                {
                                  "expression": {
                                    "id": 7015,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftHandSide": {
                                      "baseExpression": {
                                        "id": 7003,
                                        "name": "_timestampsWithStartCutoffTimes",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6975,
                                        "src": "8243:31:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory"
                                        }
                                      },
                                      "id": 7005,
                                      "indexExpression": {
                                        "id": 7004,
                                        "name": "i",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6994,
                                        "src": "8275:1:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "8243:34:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "Assignment",
                                    "operator": "=",
                                    "rightHandSide": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      },
                                      "id": 7014,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 7006,
                                            "name": "_draws",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6956,
                                            "src": "8300:6:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                            }
                                          },
                                          "id": 7008,
                                          "indexExpression": {
                                            "id": 7007,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6994,
                                            "src": "8307:1:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8300:9:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory"
                                          }
                                        },
                                        "id": 7009,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "timestamp",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11080,
                                        "src": "8300:19:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint64",
                                          "typeString": "uint64"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 7010,
                                            "name": "_prizeDistributions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6960,
                                            "src": "8322:19:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                            }
                                          },
                                          "id": 7012,
                                          "indexExpression": {
                                            "id": 7011,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6994,
                                            "src": "8342:1:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8322:22:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                          }
                                        },
                                        "id": 7013,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "startTimestampOffset",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11476,
                                        "src": "8322:43:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "src": "8300:65:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "src": "8243:122:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    }
                                  },
                                  "id": 7016,
                                  "nodeType": "ExpressionStatement",
                                  "src": "8243:122:31"
                                },
                                {
                                  "expression": {
                                    "id": 7029,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftHandSide": {
                                      "baseExpression": {
                                        "id": 7017,
                                        "name": "_timestampsWithEndCutoffTimes",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6986,
                                        "src": "8383:29:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory"
                                        }
                                      },
                                      "id": 7019,
                                      "indexExpression": {
                                        "id": 7018,
                                        "name": "i",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6994,
                                        "src": "8413:1:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "8383:32:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "Assignment",
                                    "operator": "=",
                                    "rightHandSide": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      },
                                      "id": 7028,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 7020,
                                            "name": "_draws",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6956,
                                            "src": "8438:6:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                            }
                                          },
                                          "id": 7022,
                                          "indexExpression": {
                                            "id": 7021,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6994,
                                            "src": "8445:1:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8438:9:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory"
                                          }
                                        },
                                        "id": 7023,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "timestamp",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11080,
                                        "src": "8438:19:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint64",
                                          "typeString": "uint64"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 7024,
                                            "name": "_prizeDistributions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6960,
                                            "src": "8460:19:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                            }
                                          },
                                          "id": 7026,
                                          "indexExpression": {
                                            "id": 7025,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6994,
                                            "src": "8480:1:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8460:22:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                          }
                                        },
                                        "id": 7027,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "endTimestampOffset",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11478,
                                        "src": "8460:41:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "src": "8438:63:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "src": "8383:118:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    }
                                  },
                                  "id": 7030,
                                  "nodeType": "ExpressionStatement",
                                  "src": "8383:118:31"
                                }
                              ]
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 6999,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 6997,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6994,
                            "src": "8179:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 6998,
                            "name": "drawsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6967,
                            "src": "8183:11:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8179:15:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7033,
                        "initializationExpression": {
                          "assignments": [
                            6994
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 6994,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "8172:1:31",
                              "nodeType": "VariableDeclaration",
                              "scope": 7033,
                              "src": "8165:8:31",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "typeName": {
                                "id": 6993,
                                "name": "uint32",
                                "nodeType": "ElementaryTypeName",
                                "src": "8165:6:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 6996,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 6995,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8176:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "8165:12:31"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7001,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "8196:3:31",
                            "subExpression": {
                              "id": 7000,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6994,
                              "src": "8196:1:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 7002,
                          "nodeType": "ExpressionStatement",
                          "src": "8196:3:31"
                        },
                        "nodeType": "ForStatement",
                        "src": "8160:366:31"
                      },
                      {
                        "assignments": [
                          7038
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7038,
                            "mutability": "mutable",
                            "name": "balances",
                            "nameLocation": "8553:8:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7111,
                            "src": "8536:25:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7036,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8536:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7037,
                              "nodeType": "ArrayTypeName",
                              "src": "8536:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7045,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7041,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6952,
                              "src": "8610:5:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 7042,
                              "name": "_timestampsWithStartCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6975,
                              "src": "8629:31:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            },
                            {
                              "id": 7043,
                              "name": "_timestampsWithEndCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6986,
                              "src": "8674:29:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            ],
                            "expression": {
                              "id": 7039,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6556,
                              "src": "8564:6:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 7040,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getAverageBalancesBetween",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12181,
                            "src": "8564:32:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$_t_array$_t_uint64_$dyn_memory_ptr_$_t_array$_t_uint64_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (address,uint64[] memory,uint64[] memory) view external returns (uint256[] memory)"
                            }
                          },
                          "id": 7044,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8564:149:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8536:177:31"
                      },
                      {
                        "assignments": [
                          7050
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7050,
                            "mutability": "mutable",
                            "name": "totalSupplies",
                            "nameLocation": "8741:13:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7111,
                            "src": "8724:30:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7048,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8724:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7049,
                              "nodeType": "ArrayTypeName",
                              "src": "8724:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7056,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7053,
                              "name": "_timestampsWithStartCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6975,
                              "src": "8808:31:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            },
                            {
                              "id": 7054,
                              "name": "_timestampsWithEndCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6986,
                              "src": "8853:29:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            ],
                            "expression": {
                              "id": 7051,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6556,
                              "src": "8757:6:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 7052,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getAverageTotalSuppliesBetween",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12212,
                            "src": "8757:37:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint64_$dyn_memory_ptr_$_t_array$_t_uint64_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint64[] memory,uint64[] memory) view external returns (uint256[] memory)"
                            }
                          },
                          "id": 7055,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8757:135:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8724:168:31"
                      },
                      {
                        "assignments": [
                          7061
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7061,
                            "mutability": "mutable",
                            "name": "normalizedBalances",
                            "nameLocation": "8920:18:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7111,
                            "src": "8903:35:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7059,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8903:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7060,
                              "nodeType": "ArrayTypeName",
                              "src": "8903:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7067,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7065,
                              "name": "drawsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6967,
                              "src": "8955:11:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7064,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "8941:13:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7062,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8945:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7063,
                              "nodeType": "ArrayTypeName",
                              "src": "8945:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 7066,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8941:26:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8903:64:31"
                      },
                      {
                        "body": {
                          "id": 7107,
                          "nodeType": "Block",
                          "src": "9077:224:31",
                          "statements": [
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 7082,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "baseExpression": {
                                    "id": 7078,
                                    "name": "totalSupplies",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7050,
                                    "src": "9094:13:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 7080,
                                  "indexExpression": {
                                    "id": 7079,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7069,
                                    "src": "9108:1:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "9094:16:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 7081,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9114:1:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "9094:21:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 7105,
                                "nodeType": "Block",
                                "src": "9192:99:31",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 7103,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 7090,
                                          "name": "normalizedBalances",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7061,
                                          "src": "9210:18:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                            "typeString": "uint256[] memory"
                                          }
                                        },
                                        "id": 7092,
                                        "indexExpression": {
                                          "id": 7091,
                                          "name": "i",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7069,
                                          "src": "9229:1:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "9210:21:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 7102,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "components": [
                                            {
                                              "commonType": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              },
                                              "id": 7097,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "baseExpression": {
                                                  "id": 7093,
                                                  "name": "balances",
                                                  "nodeType": "Identifier",
                                                  "overloadedDeclarations": [],
                                                  "referencedDeclaration": 7038,
                                                  "src": "9235:8:31",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                                    "typeString": "uint256[] memory"
                                                  }
                                                },
                                                "id": 7095,
                                                "indexExpression": {
                                                  "id": 7094,
                                                  "name": "i",
                                                  "nodeType": "Identifier",
                                                  "overloadedDeclarations": [],
                                                  "referencedDeclaration": 7069,
                                                  "src": "9244:1:31",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_uint256",
                                                    "typeString": "uint256"
                                                  }
                                                },
                                                "isConstant": false,
                                                "isLValue": true,
                                                "isPure": false,
                                                "lValueRequested": false,
                                                "nodeType": "IndexAccess",
                                                "src": "9235:11:31",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "*",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 7096,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "9249:7:31",
                                                "subdenomination": "ether",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1000000000000000000_by_1",
                                                  "typeString": "int_const 1000000000000000000"
                                                },
                                                "value": "1"
                                              },
                                              "src": "9235:21:31",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            }
                                          ],
                                          "id": 7098,
                                          "isConstant": false,
                                          "isInlineArray": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "TupleExpression",
                                          "src": "9234:23:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "/",
                                        "rightExpression": {
                                          "baseExpression": {
                                            "id": 7099,
                                            "name": "totalSupplies",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7050,
                                            "src": "9260:13:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                              "typeString": "uint256[] memory"
                                            }
                                          },
                                          "id": 7101,
                                          "indexExpression": {
                                            "id": 7100,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7069,
                                            "src": "9274:1:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "9260:16:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "9234:42:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "9210:66:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 7104,
                                    "nodeType": "ExpressionStatement",
                                    "src": "9210:66:31"
                                  }
                                ]
                              },
                              "id": 7106,
                              "nodeType": "IfStatement",
                              "src": "9091:200:31",
                              "trueBody": {
                                "id": 7089,
                                "nodeType": "Block",
                                "src": "9116:58:31",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 7087,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 7083,
                                          "name": "normalizedBalances",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7061,
                                          "src": "9134:18:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                            "typeString": "uint256[] memory"
                                          }
                                        },
                                        "id": 7085,
                                        "indexExpression": {
                                          "id": 7084,
                                          "name": "i",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7069,
                                          "src": "9153:1:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "9134:21:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "hexValue": "30",
                                        "id": 7086,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "9158:1:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        },
                                        "value": "0"
                                      },
                                      "src": "9134:25:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 7088,
                                    "nodeType": "ExpressionStatement",
                                    "src": "9134:25:31"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7074,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7072,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7069,
                            "src": "9055:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 7073,
                            "name": "drawsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6967,
                            "src": "9059:11:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "9055:15:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7108,
                        "initializationExpression": {
                          "assignments": [
                            7069
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7069,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "9048:1:31",
                              "nodeType": "VariableDeclaration",
                              "scope": 7108,
                              "src": "9040:9:31",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 7068,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "9040:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7071,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 7070,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "9052:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "9040:13:31"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7076,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "9072:3:31",
                            "subExpression": {
                              "id": 7075,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7069,
                              "src": "9072:1:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7077,
                          "nodeType": "ExpressionStatement",
                          "src": "9072:3:31"
                        },
                        "nodeType": "ForStatement",
                        "src": "9035:266:31"
                      },
                      {
                        "expression": {
                          "id": 7109,
                          "name": "normalizedBalances",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7061,
                          "src": "9318:18:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 6965,
                        "id": 7110,
                        "nodeType": "Return",
                        "src": "9311:25:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6950,
                    "nodeType": "StructuredDocumentation",
                    "src": "7294:345:31",
                    "text": " @notice Calculates the normalized balance of a user against the total supply for timestamps\n @param _user The user to consider\n @param _draws The draws we are looking at\n @param _prizeDistributions The prize tiers to consider (needed for draw timestamp offsets)\n @return An array of normalized balances"
                  },
                  "id": 7112,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getNormalizedBalancesAt",
                  "nameLocation": "7653:24:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6961,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6952,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "7695:5:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7112,
                        "src": "7687:13:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 6951,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7687:7:31",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6956,
                        "mutability": "mutable",
                        "name": "_draws",
                        "nameLocation": "7736:6:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7112,
                        "src": "7710:32:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6954,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 6953,
                              "name": "IDrawBeacon.Draw",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11085,
                              "src": "7710:16:31"
                            },
                            "referencedDeclaration": 11085,
                            "src": "7710:16:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            }
                          },
                          "id": 6955,
                          "nodeType": "ArrayTypeName",
                          "src": "7710:18:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$dyn_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6960,
                        "mutability": "mutable",
                        "name": "_prizeDistributions",
                        "nameLocation": "7804:19:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7112,
                        "src": "7752:71:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6958,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 6957,
                              "name": "IPrizeDistributionBuffer.PrizeDistribution",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11491,
                              "src": "7752:42:31"
                            },
                            "referencedDeclaration": 11491,
                            "src": "7752:42:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                            }
                          },
                          "id": 6959,
                          "nodeType": "ArrayTypeName",
                          "src": "7752:44:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7677:152:31"
                  },
                  "returnParameters": {
                    "id": 6965,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6964,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7112,
                        "src": "7853:16:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6962,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "7853:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 6963,
                          "nodeType": "ArrayTypeName",
                          "src": "7853:9:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7852:18:31"
                  },
                  "scope": 7568,
                  "src": "7644:1699:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7313,
                    "nodeType": "Block",
                    "src": "10147:2388:31",
                    "statements": [
                      {
                        "assignments": [
                          7137
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7137,
                            "mutability": "mutable",
                            "name": "masks",
                            "nameLocation": "10228:5:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7313,
                            "src": "10211:22:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7135,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "10211:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7136,
                              "nodeType": "ArrayTypeName",
                              "src": "10211:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7141,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7139,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7125,
                              "src": "10252:18:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            ],
                            "id": 7138,
                            "name": "_createBitMasks",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7451,
                            "src": "10236:15:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11491_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory) pure returns (uint256[] memory)"
                            }
                          },
                          "id": 7140,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10236:35:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10211:60:31"
                      },
                      {
                        "assignments": [
                          7143
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7143,
                            "mutability": "mutable",
                            "name": "picksLength",
                            "nameLocation": "10288:11:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7313,
                            "src": "10281:18:31",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 7142,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "10281:6:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7149,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7146,
                                "name": "_picks",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7122,
                                "src": "10309:6:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                  "typeString": "uint64[] memory"
                                }
                              },
                              "id": 7147,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "10309:13:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7145,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "10302:6:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 7144,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "10302:6:31",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 7148,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10302:21:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10281:42:31"
                      },
                      {
                        "assignments": [
                          7154
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7154,
                            "mutability": "mutable",
                            "name": "_prizeCounts",
                            "nameLocation": "10350:12:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7313,
                            "src": "10333:29:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7152,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "10333:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7153,
                              "nodeType": "ArrayTypeName",
                              "src": "10333:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7162,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 7158,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7125,
                                  "src": "10379:18:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                  }
                                },
                                "id": 7159,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "tiers",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11488,
                                "src": "10379:24:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint32_$16_memory_ptr",
                                  "typeString": "uint32[16] memory"
                                }
                              },
                              "id": 7160,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "10379:31:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7157,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "10365:13:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7155,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "10369:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7156,
                              "nodeType": "ArrayTypeName",
                              "src": "10369:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 7161,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10365:46:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10333:78:31"
                      },
                      {
                        "assignments": [
                          7164
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7164,
                            "mutability": "mutable",
                            "name": "maxWinningTierIndex",
                            "nameLocation": "10428:19:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7313,
                            "src": "10422:25:31",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 7163,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "10422:5:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7166,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 7165,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "10450:1:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10422:29:31"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 7171,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 7168,
                                "name": "picksLength",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7143,
                                "src": "10483:11:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "id": 7169,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7125,
                                  "src": "10498:18:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                  }
                                },
                                "id": 7170,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "maxPicksPerUser",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11480,
                                "src": "10498:34:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "10483:49:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f657863656564732d6d61782d757365722d7069636b73",
                              "id": 7172,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10546:33:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81",
                                "typeString": "literal_string \"DrawCalc/exceeds-max-user-picks\""
                              },
                              "value": "DrawCalc/exceeds-max-user-picks"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81",
                                "typeString": "literal_string \"DrawCalc/exceeds-max-user-picks\""
                              }
                            ],
                            "id": 7167,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10462:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7173,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10462:127:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7174,
                        "nodeType": "ExpressionStatement",
                        "src": "10462:127:31"
                      },
                      {
                        "body": {
                          "id": 7254,
                          "nodeType": "Block",
                          "src": "10751:884:31",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 7190,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "baseExpression": {
                                        "id": 7186,
                                        "name": "_picks",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7122,
                                        "src": "10773:6:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory"
                                        }
                                      },
                                      "id": 7188,
                                      "indexExpression": {
                                        "id": 7187,
                                        "name": "index",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7176,
                                        "src": "10780:5:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "10773:13:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "<",
                                    "rightExpression": {
                                      "id": 7189,
                                      "name": "_totalUserPicks",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7117,
                                      "src": "10789:15:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "10773:31:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e73756666696369656e742d757365722d7069636b73",
                                    "id": 7191,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "10806:34:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db",
                                      "typeString": "literal_string \"DrawCalc/insufficient-user-picks\""
                                    },
                                    "value": "DrawCalc/insufficient-user-picks"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    {
                                      "typeIdentifier": "t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db",
                                      "typeString": "literal_string \"DrawCalc/insufficient-user-picks\""
                                    }
                                  ],
                                  "id": 7185,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "10765:7:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 7192,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10765:76:31",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 7193,
                              "nodeType": "ExpressionStatement",
                              "src": "10765:76:31"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 7196,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 7194,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7176,
                                  "src": "10860:5:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 7195,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "10868:1:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "10860:9:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 7211,
                              "nodeType": "IfStatement",
                              "src": "10856:118:31",
                              "trueBody": {
                                "id": 7210,
                                "nodeType": "Block",
                                "src": "10871:103:31",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "commonType": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          },
                                          "id": 7206,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "baseExpression": {
                                              "id": 7198,
                                              "name": "_picks",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7122,
                                              "src": "10897:6:31",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                                "typeString": "uint64[] memory"
                                              }
                                            },
                                            "id": 7200,
                                            "indexExpression": {
                                              "id": 7199,
                                              "name": "index",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7176,
                                              "src": "10904:5:31",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "10897:13:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": ">",
                                          "rightExpression": {
                                            "baseExpression": {
                                              "id": 7201,
                                              "name": "_picks",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7122,
                                              "src": "10913:6:31",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                                "typeString": "uint64[] memory"
                                              }
                                            },
                                            "id": 7205,
                                            "indexExpression": {
                                              "commonType": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              },
                                              "id": 7204,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "id": 7202,
                                                "name": "index",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 7176,
                                                "src": "10920:5:31",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint32",
                                                  "typeString": "uint32"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "-",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 7203,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "10928:1:31",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1_by_1",
                                                  "typeString": "int_const 1"
                                                },
                                                "value": "1"
                                              },
                                              "src": "10920:9:31",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "10913:17:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          },
                                          "src": "10897:33:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_bool",
                                            "typeString": "bool"
                                          }
                                        },
                                        {
                                          "hexValue": "4472617743616c632f7069636b732d617363656e64696e67",
                                          "id": 7207,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "string",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "10932:26:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3",
                                            "typeString": "literal_string \"DrawCalc/picks-ascending\""
                                          },
                                          "value": "DrawCalc/picks-ascending"
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_bool",
                                            "typeString": "bool"
                                          },
                                          {
                                            "typeIdentifier": "t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3",
                                            "typeString": "literal_string \"DrawCalc/picks-ascending\""
                                          }
                                        ],
                                        "id": 7197,
                                        "name": "require",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [
                                          -18,
                                          -18
                                        ],
                                        "referencedDeclaration": -18,
                                        "src": "10889:7:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                          "typeString": "function (bool,string memory) pure"
                                        }
                                      },
                                      "id": 7208,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "10889:70:31",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 7209,
                                    "nodeType": "ExpressionStatement",
                                    "src": "10889:70:31"
                                  }
                                ]
                              }
                            },
                            {
                              "assignments": [
                                7213
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 7213,
                                  "mutability": "mutable",
                                  "name": "randomNumberThisPick",
                                  "nameLocation": "11059:20:31",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 7254,
                                  "src": "11051:28:31",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 7212,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "11051:7:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 7226,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "id": 7219,
                                            "name": "_userRandomNumber",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7119,
                                            "src": "11128:17:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_bytes32",
                                              "typeString": "bytes32"
                                            }
                                          },
                                          {
                                            "baseExpression": {
                                              "id": 7220,
                                              "name": "_picks",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7122,
                                              "src": "11147:6:31",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                                "typeString": "uint64[] memory"
                                              }
                                            },
                                            "id": 7222,
                                            "indexExpression": {
                                              "id": 7221,
                                              "name": "index",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7176,
                                              "src": "11154:5:31",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "11147:13:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_bytes32",
                                              "typeString": "bytes32"
                                            },
                                            {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          ],
                                          "expression": {
                                            "id": 7217,
                                            "name": "abi",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": -1,
                                            "src": "11117:3:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_magic_abi",
                                              "typeString": "abi"
                                            }
                                          },
                                          "id": 7218,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "memberName": "encode",
                                          "nodeType": "MemberAccess",
                                          "src": "11117:10:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                            "typeString": "function () pure returns (bytes memory)"
                                          }
                                        },
                                        "id": 7223,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "11117:44:31",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes memory"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes memory"
                                        }
                                      ],
                                      "id": 7216,
                                      "name": "keccak256",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -8,
                                      "src": "11107:9:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                                        "typeString": "function (bytes memory) pure returns (bytes32)"
                                      }
                                    },
                                    "id": 7224,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "11107:55:31",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  ],
                                  "id": 7215,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "11082:7:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  },
                                  "typeName": {
                                    "id": 7214,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "11082:7:31",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 7225,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11082:94:31",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "11051:125:31"
                            },
                            {
                              "assignments": [
                                7228
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 7228,
                                  "mutability": "mutable",
                                  "name": "tiersIndex",
                                  "nameLocation": "11197:10:31",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 7254,
                                  "src": "11191:16:31",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  },
                                  "typeName": {
                                    "id": 7227,
                                    "name": "uint8",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "11191:5:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 7234,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "id": 7230,
                                    "name": "randomNumberThisPick",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7213,
                                    "src": "11247:20:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  {
                                    "id": 7231,
                                    "name": "_winningRandomNumber",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7115,
                                    "src": "11285:20:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  {
                                    "id": 7232,
                                    "name": "masks",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7137,
                                    "src": "11323:5:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  ],
                                  "id": 7229,
                                  "name": "_calculateTierIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7388,
                                  "src": "11210:19:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$_t_uint8_$",
                                    "typeString": "function (uint256,uint256,uint256[] memory) pure returns (uint8)"
                                  }
                                },
                                "id": 7233,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11210:132:31",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "11191:151:31"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                },
                                "id": 7237,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 7235,
                                  "name": "tiersIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7228,
                                  "src": "11411:10:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<",
                                "rightExpression": {
                                  "id": 7236,
                                  "name": "TIERS_LENGTH",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6564,
                                  "src": "11424:12:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "src": "11411:25:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 7253,
                              "nodeType": "IfStatement",
                              "src": "11407:218:31",
                              "trueBody": {
                                "id": 7252,
                                "nodeType": "Block",
                                "src": "11438:187:31",
                                "statements": [
                                  {
                                    "condition": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      },
                                      "id": 7240,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 7238,
                                        "name": "tiersIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7228,
                                        "src": "11460:10:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": ">",
                                      "rightExpression": {
                                        "id": 7239,
                                        "name": "maxWinningTierIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7164,
                                        "src": "11473:19:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "src": "11460:32:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "id": 7246,
                                    "nodeType": "IfStatement",
                                    "src": "11456:111:31",
                                    "trueBody": {
                                      "id": 7245,
                                      "nodeType": "Block",
                                      "src": "11494:73:31",
                                      "statements": [
                                        {
                                          "expression": {
                                            "id": 7243,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftHandSide": {
                                              "id": 7241,
                                              "name": "maxWinningTierIndex",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7164,
                                              "src": "11516:19:31",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "nodeType": "Assignment",
                                            "operator": "=",
                                            "rightHandSide": {
                                              "id": 7242,
                                              "name": "tiersIndex",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7228,
                                              "src": "11538:10:31",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "src": "11516:32:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint8",
                                              "typeString": "uint8"
                                            }
                                          },
                                          "id": 7244,
                                          "nodeType": "ExpressionStatement",
                                          "src": "11516:32:31"
                                        }
                                      ]
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 7250,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "UnaryOperation",
                                      "operator": "++",
                                      "prefix": false,
                                      "src": "11584:26:31",
                                      "subExpression": {
                                        "baseExpression": {
                                          "id": 7247,
                                          "name": "_prizeCounts",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7154,
                                          "src": "11584:12:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                            "typeString": "uint256[] memory"
                                          }
                                        },
                                        "id": 7249,
                                        "indexExpression": {
                                          "id": 7248,
                                          "name": "tiersIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7228,
                                          "src": "11597:10:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "11584:24:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 7251,
                                    "nodeType": "ExpressionStatement",
                                    "src": "11584:26:31"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 7181,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7179,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7176,
                            "src": "10721:5:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 7180,
                            "name": "picksLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7143,
                            "src": "10729:11:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "10721:19:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7255,
                        "initializationExpression": {
                          "assignments": [
                            7176
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7176,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "10710:5:31",
                              "nodeType": "VariableDeclaration",
                              "scope": 7255,
                              "src": "10703:12:31",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "typeName": {
                                "id": 7175,
                                "name": "uint32",
                                "nodeType": "ElementaryTypeName",
                                "src": "10703:6:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7178,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 7177,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "10718:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "10703:16:31"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7183,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "10742:7:31",
                            "subExpression": {
                              "id": 7182,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7176,
                              "src": "10742:5:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 7184,
                          "nodeType": "ExpressionStatement",
                          "src": "10742:7:31"
                        },
                        "nodeType": "ForStatement",
                        "src": "10698:937:31"
                      },
                      {
                        "assignments": [
                          7257
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7257,
                            "mutability": "mutable",
                            "name": "prizeFraction",
                            "nameLocation": "11710:13:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7313,
                            "src": "11702:21:31",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 7256,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "11702:7:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7259,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 7258,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "11726:1:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11702:25:31"
                      },
                      {
                        "assignments": [
                          7264
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7264,
                            "mutability": "mutable",
                            "name": "prizeTiersFractions",
                            "nameLocation": "11754:19:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7313,
                            "src": "11737:36:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7262,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "11737:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7263,
                              "nodeType": "ArrayTypeName",
                              "src": "11737:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7269,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7266,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7125,
                              "src": "11818:18:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            },
                            {
                              "id": 7267,
                              "name": "maxWinningTierIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7164,
                              "src": "11850:19:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 7265,
                            "name": "_calculatePrizeTierFractions",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7531,
                            "src": "11776:28:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11491_memory_ptr_$_t_uint8_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory,uint8) pure returns (uint256[] memory)"
                            }
                          },
                          "id": 7268,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11776:103:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11737:142:31"
                      },
                      {
                        "body": {
                          "id": 7297,
                          "nodeType": "Block",
                          "src": "12098:221:31",
                          "statements": [
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 7284,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "baseExpression": {
                                    "id": 7280,
                                    "name": "_prizeCounts",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7154,
                                    "src": "12116:12:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 7282,
                                  "indexExpression": {
                                    "id": 7281,
                                    "name": "prizeCountIndex",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7271,
                                    "src": "12129:15:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "12116:29:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 7283,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "12148:1:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "12116:33:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 7296,
                              "nodeType": "IfStatement",
                              "src": "12112:197:31",
                              "trueBody": {
                                "id": 7295,
                                "nodeType": "Block",
                                "src": "12151:158:31",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 7293,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 7285,
                                        "name": "prizeFraction",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7257,
                                        "src": "12169:13:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "+=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 7292,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "baseExpression": {
                                            "id": 7286,
                                            "name": "prizeTiersFractions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7264,
                                            "src": "12206:19:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                              "typeString": "uint256[] memory"
                                            }
                                          },
                                          "id": 7288,
                                          "indexExpression": {
                                            "id": 7287,
                                            "name": "prizeCountIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7271,
                                            "src": "12226:15:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "12206:36:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "*",
                                        "rightExpression": {
                                          "baseExpression": {
                                            "id": 7289,
                                            "name": "_prizeCounts",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7154,
                                            "src": "12265:12:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                              "typeString": "uint256[] memory"
                                            }
                                          },
                                          "id": 7291,
                                          "indexExpression": {
                                            "id": 7290,
                                            "name": "prizeCountIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7271,
                                            "src": "12278:15:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "12265:29:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "12206:88:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "12169:125:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 7294,
                                    "nodeType": "ExpressionStatement",
                                    "src": "12169:125:31"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7276,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7274,
                            "name": "prizeCountIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7271,
                            "src": "12018:15:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 7275,
                            "name": "maxWinningTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7164,
                            "src": "12037:19:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "12018:38:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7298,
                        "initializationExpression": {
                          "assignments": [
                            7271
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7271,
                              "mutability": "mutable",
                              "name": "prizeCountIndex",
                              "nameLocation": "11985:15:31",
                              "nodeType": "VariableDeclaration",
                              "scope": 7298,
                              "src": "11977:23:31",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 7270,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "11977:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7273,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 7272,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "12003:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "11977:27:31"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7278,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "12070:17:31",
                            "subExpression": {
                              "id": 7277,
                              "name": "prizeCountIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7271,
                              "src": "12070:15:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7279,
                          "nodeType": "ExpressionStatement",
                          "src": "12070:17:31"
                        },
                        "nodeType": "ForStatement",
                        "src": "11959:360:31"
                      },
                      {
                        "expression": {
                          "id": 7307,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7299,
                            "name": "prize",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7128,
                            "src": "12436:5:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 7306,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "components": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 7303,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 7300,
                                    "name": "prizeFraction",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7257,
                                    "src": "12445:13:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "*",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 7301,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7125,
                                      "src": "12461:18:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    },
                                    "id": 7302,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "prize",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11490,
                                    "src": "12461:24:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "12445:40:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 7304,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "12444:42:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "/",
                            "rightExpression": {
                              "hexValue": "316539",
                              "id": 7305,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "12489:3:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1000000000_by_1",
                                "typeString": "int_const 1000000000"
                              },
                              "value": "1e9"
                            },
                            "src": "12444:48:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "12436:56:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 7308,
                        "nodeType": "ExpressionStatement",
                        "src": "12436:56:31"
                      },
                      {
                        "expression": {
                          "id": 7311,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7309,
                            "name": "prizeCounts",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7131,
                            "src": "12502:11:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 7310,
                            "name": "_prizeCounts",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7154,
                            "src": "12516:12:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "src": "12502:26:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "id": 7312,
                        "nodeType": "ExpressionStatement",
                        "src": "12502:26:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7113,
                    "nodeType": "StructuredDocumentation",
                    "src": "9349:483:31",
                    "text": " @notice Calculates the prize amount for a PrizeDistribution over given picks\n @param _winningRandomNumber Draw's winningRandomNumber\n @param _totalUserPicks      number of picks the user gets for the Draw\n @param _userRandomNumber    users randomNumber for that draw\n @param _picks               users picks for that draw\n @param _prizeDistribution   PrizeDistribution for that draw\n @return prize (if any), prizeCounts (if any)"
                  },
                  "id": 7314,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculate",
                  "nameLocation": "9846:10:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7126,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7115,
                        "mutability": "mutable",
                        "name": "_winningRandomNumber",
                        "nameLocation": "9874:20:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7314,
                        "src": "9866:28:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7114,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9866:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7117,
                        "mutability": "mutable",
                        "name": "_totalUserPicks",
                        "nameLocation": "9912:15:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7314,
                        "src": "9904:23:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7116,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9904:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7119,
                        "mutability": "mutable",
                        "name": "_userRandomNumber",
                        "nameLocation": "9945:17:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7314,
                        "src": "9937:25:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 7118,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9937:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7122,
                        "mutability": "mutable",
                        "name": "_picks",
                        "nameLocation": "9988:6:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7314,
                        "src": "9972:22:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7120,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "9972:6:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 7121,
                          "nodeType": "ArrayTypeName",
                          "src": "9972:8:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7125,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "10054:18:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7314,
                        "src": "10004:68:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 7124,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7123,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "10004:42:31"
                          },
                          "referencedDeclaration": 11491,
                          "src": "10004:42:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9856:222:31"
                  },
                  "returnParameters": {
                    "id": 7132,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7128,
                        "mutability": "mutable",
                        "name": "prize",
                        "nameLocation": "10110:5:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7314,
                        "src": "10102:13:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7127,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10102:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7131,
                        "mutability": "mutable",
                        "name": "prizeCounts",
                        "nameLocation": "10134:11:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7314,
                        "src": "10117:28:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7129,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "10117:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7130,
                          "nodeType": "ArrayTypeName",
                          "src": "10117:9:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10101:45:31"
                  },
                  "scope": 7568,
                  "src": "9837:2698:31",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7387,
                    "nodeType": "Block",
                    "src": "13103:757:31",
                    "statements": [
                      {
                        "assignments": [
                          7328
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7328,
                            "mutability": "mutable",
                            "name": "numberOfMatches",
                            "nameLocation": "13119:15:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7387,
                            "src": "13113:21:31",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 7327,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "13113:5:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7330,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 7329,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "13137:1:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13113:25:31"
                      },
                      {
                        "assignments": [
                          7332
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7332,
                            "mutability": "mutable",
                            "name": "masksLength",
                            "nameLocation": "13154:11:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7387,
                            "src": "13148:17:31",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 7331,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "13148:5:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7338,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7335,
                                "name": "_masks",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7322,
                                "src": "13174:6:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory"
                                }
                              },
                              "id": 7336,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "13174:13:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7334,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "13168:5:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint8_$",
                              "typeString": "type(uint8)"
                            },
                            "typeName": {
                              "id": 7333,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "13168:5:31",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 7337,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13168:20:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13148:40:31"
                      },
                      {
                        "body": {
                          "id": 7381,
                          "nodeType": "Block",
                          "src": "13303:504:31",
                          "statements": [
                            {
                              "assignments": [
                                7350
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 7350,
                                  "mutability": "mutable",
                                  "name": "mask",
                                  "nameLocation": "13325:4:31",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 7381,
                                  "src": "13317:12:31",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 7349,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "13317:7:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 7354,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 7351,
                                  "name": "_masks",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7322,
                                  "src": "13332:6:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                    "typeString": "uint256[] memory"
                                  }
                                },
                                "id": 7353,
                                "indexExpression": {
                                  "id": 7352,
                                  "name": "matchIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7340,
                                  "src": "13339:10:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "13332:18:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "13317:33:31"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 7363,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 7357,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 7355,
                                        "name": "_randomNumberThisPick",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7317,
                                        "src": "13370:21:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "&",
                                      "rightExpression": {
                                        "id": 7356,
                                        "name": "mask",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7350,
                                        "src": "13394:4:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "13370:28:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 7358,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "13369:30:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 7361,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 7359,
                                        "name": "_winningRandomNumber",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7319,
                                        "src": "13404:20:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "&",
                                      "rightExpression": {
                                        "id": 7360,
                                        "name": "mask",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7350,
                                        "src": "13427:4:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "13404:27:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 7362,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "13403:29:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "13369:63:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 7377,
                              "nodeType": "IfStatement",
                              "src": "13365:362:31",
                              "trueBody": {
                                "id": 7376,
                                "nodeType": "Block",
                                "src": "13434:293:31",
                                "statements": [
                                  {
                                    "condition": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      },
                                      "id": 7366,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 7364,
                                        "name": "masksLength",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7332,
                                        "src": "13549:11:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "==",
                                      "rightExpression": {
                                        "id": 7365,
                                        "name": "numberOfMatches",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7328,
                                        "src": "13564:15:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "src": "13549:30:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "falseBody": {
                                      "id": 7374,
                                      "nodeType": "Block",
                                      "src": "13636:77:31",
                                      "statements": [
                                        {
                                          "expression": {
                                            "commonType": {
                                              "typeIdentifier": "t_uint8",
                                              "typeString": "uint8"
                                            },
                                            "id": 7372,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftExpression": {
                                              "id": 7370,
                                              "name": "masksLength",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7332,
                                              "src": "13665:11:31",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "nodeType": "BinaryOperation",
                                            "operator": "-",
                                            "rightExpression": {
                                              "id": 7371,
                                              "name": "numberOfMatches",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7328,
                                              "src": "13679:15:31",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "src": "13665:29:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint8",
                                              "typeString": "uint8"
                                            }
                                          },
                                          "functionReturnParameters": 7326,
                                          "id": 7373,
                                          "nodeType": "Return",
                                          "src": "13658:36:31"
                                        }
                                      ]
                                    },
                                    "id": 7375,
                                    "nodeType": "IfStatement",
                                    "src": "13545:168:31",
                                    "trueBody": {
                                      "id": 7369,
                                      "nodeType": "Block",
                                      "src": "13581:49:31",
                                      "statements": [
                                        {
                                          "expression": {
                                            "hexValue": "30",
                                            "id": 7367,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "number",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "13610:1:31",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_rational_0_by_1",
                                              "typeString": "int_const 0"
                                            },
                                            "value": "0"
                                          },
                                          "functionReturnParameters": 7326,
                                          "id": 7368,
                                          "nodeType": "Return",
                                          "src": "13603:8:31"
                                        }
                                      ]
                                    }
                                  }
                                ]
                              }
                            },
                            {
                              "expression": {
                                "id": 7379,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "++",
                                "prefix": false,
                                "src": "13779:17:31",
                                "subExpression": {
                                  "id": 7378,
                                  "name": "numberOfMatches",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7328,
                                  "src": "13779:15:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "id": 7380,
                              "nodeType": "ExpressionStatement",
                              "src": "13779:17:31"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 7345,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7343,
                            "name": "matchIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7340,
                            "src": "13263:10:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 7344,
                            "name": "masksLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7332,
                            "src": "13276:11:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "13263:24:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7382,
                        "initializationExpression": {
                          "assignments": [
                            7340
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7340,
                              "mutability": "mutable",
                              "name": "matchIndex",
                              "nameLocation": "13247:10:31",
                              "nodeType": "VariableDeclaration",
                              "scope": 7382,
                              "src": "13241:16:31",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "typeName": {
                                "id": 7339,
                                "name": "uint8",
                                "nodeType": "ElementaryTypeName",
                                "src": "13241:5:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7342,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 7341,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "13260:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "13241:20:31"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7347,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "13289:12:31",
                            "subExpression": {
                              "id": 7346,
                              "name": "matchIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7340,
                              "src": "13289:10:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 7348,
                          "nodeType": "ExpressionStatement",
                          "src": "13289:12:31"
                        },
                        "nodeType": "ForStatement",
                        "src": "13236:571:31"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 7385,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7383,
                            "name": "masksLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7332,
                            "src": "13824:11:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 7384,
                            "name": "numberOfMatches",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7328,
                            "src": "13838:15:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "13824:29:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 7326,
                        "id": 7386,
                        "nodeType": "Return",
                        "src": "13817:36:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7315,
                    "nodeType": "StructuredDocumentation",
                    "src": "12541:382:31",
                    "text": "@notice Calculates the tier index given the random numbers and masks\n@param _randomNumberThisPick users random number for this Pick\n@param _winningRandomNumber The winning number for this draw\n@param _masks The pre-calculate bitmasks for the prizeDistributions\n@return The position within the prize tier array (0 = top prize, 1 = runner-up prize, etc)"
                  },
                  "id": 7388,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculateTierIndex",
                  "nameLocation": "12937:19:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7323,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7317,
                        "mutability": "mutable",
                        "name": "_randomNumberThisPick",
                        "nameLocation": "12974:21:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7388,
                        "src": "12966:29:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7316,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12966:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7319,
                        "mutability": "mutable",
                        "name": "_winningRandomNumber",
                        "nameLocation": "13013:20:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7388,
                        "src": "13005:28:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7318,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13005:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7322,
                        "mutability": "mutable",
                        "name": "_masks",
                        "nameLocation": "13060:6:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7388,
                        "src": "13043:23:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7320,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "13043:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7321,
                          "nodeType": "ArrayTypeName",
                          "src": "13043:9:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12956:116:31"
                  },
                  "returnParameters": {
                    "id": 7326,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7325,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7388,
                        "src": "13096:5:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 7324,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "13096:5:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13095:7:31"
                  },
                  "scope": 7568,
                  "src": "12928:932:31",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7450,
                    "nodeType": "Block",
                    "src": "14265:457:31",
                    "statements": [
                      {
                        "assignments": [
                          7402
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7402,
                            "mutability": "mutable",
                            "name": "masks",
                            "nameLocation": "14292:5:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7450,
                            "src": "14275:22:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7400,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "14275:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7401,
                              "nodeType": "ArrayTypeName",
                              "src": "14275:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7409,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7406,
                                "name": "_prizeDistribution",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7392,
                                "src": "14314:18:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                }
                              },
                              "id": 7407,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "matchCardinality",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11474,
                              "src": "14314:35:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 7405,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "14300:13:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7403,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "14304:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7404,
                              "nodeType": "ArrayTypeName",
                              "src": "14304:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 7408,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14300:50:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "14275:75:31"
                      },
                      {
                        "expression": {
                          "id": 7420,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 7410,
                              "name": "masks",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7402,
                              "src": "14360:5:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              }
                            },
                            "id": 7412,
                            "indexExpression": {
                              "hexValue": "30",
                              "id": 7411,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14366:1:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "14360:8:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 7419,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "components": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 7416,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "hexValue": "32",
                                    "id": 7413,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "14373:1:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_2_by_1",
                                      "typeString": "int_const 2"
                                    },
                                    "value": "2"
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "**",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 7414,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7392,
                                      "src": "14376:18:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    },
                                    "id": 7415,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "bitRangeSize",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11472,
                                    "src": "14376:31:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "src": "14373:34:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 7417,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "14372:36:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "hexValue": "31",
                              "id": 7418,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14411:1:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "src": "14372:40:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "14360:52:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 7421,
                        "nodeType": "ExpressionStatement",
                        "src": "14360:52:31"
                      },
                      {
                        "body": {
                          "id": 7446,
                          "nodeType": "Block",
                          "src": "14511:182:31",
                          "statements": [
                            {
                              "expression": {
                                "id": 7444,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 7433,
                                    "name": "masks",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7402,
                                    "src": "14608:5:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 7435,
                                  "indexExpression": {
                                    "id": 7434,
                                    "name": "maskIndex",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7423,
                                    "src": "14614:9:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "14608:16:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 7443,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "baseExpression": {
                                      "id": 7436,
                                      "name": "masks",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7402,
                                      "src": "14627:5:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                        "typeString": "uint256[] memory"
                                      }
                                    },
                                    "id": 7440,
                                    "indexExpression": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      },
                                      "id": 7439,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 7437,
                                        "name": "maskIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7423,
                                        "src": "14633:9:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "hexValue": "31",
                                        "id": 7438,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "14645:1:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_1_by_1",
                                          "typeString": "int_const 1"
                                        },
                                        "value": "1"
                                      },
                                      "src": "14633:13:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "14627:20:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "<<",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 7441,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7392,
                                      "src": "14651:18:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    },
                                    "id": 7442,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "bitRangeSize",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11472,
                                    "src": "14651:31:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "src": "14627:55:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "14608:74:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7445,
                              "nodeType": "ExpressionStatement",
                              "src": "14608:74:31"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 7429,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7426,
                            "name": "maskIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7423,
                            "src": "14449:9:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 7427,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7392,
                              "src": "14461:18:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            },
                            "id": 7428,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "matchCardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11474,
                            "src": "14461:35:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "14449:47:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7447,
                        "initializationExpression": {
                          "assignments": [
                            7423
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7423,
                              "mutability": "mutable",
                              "name": "maskIndex",
                              "nameLocation": "14434:9:31",
                              "nodeType": "VariableDeclaration",
                              "scope": 7447,
                              "src": "14428:15:31",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "typeName": {
                                "id": 7422,
                                "name": "uint8",
                                "nodeType": "ElementaryTypeName",
                                "src": "14428:5:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7425,
                          "initialValue": {
                            "hexValue": "31",
                            "id": 7424,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "14446:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "14428:19:31"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7431,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "14498:11:31",
                            "subExpression": {
                              "id": 7430,
                              "name": "maskIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7423,
                              "src": "14498:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 7432,
                          "nodeType": "ExpressionStatement",
                          "src": "14498:11:31"
                        },
                        "nodeType": "ForStatement",
                        "src": "14423:270:31"
                      },
                      {
                        "expression": {
                          "id": 7448,
                          "name": "masks",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7402,
                          "src": "14710:5:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 7397,
                        "id": 7449,
                        "nodeType": "Return",
                        "src": "14703:12:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7389,
                    "nodeType": "StructuredDocumentation",
                    "src": "13866:230:31",
                    "text": " @notice Create an array of bitmasks equal to the PrizeDistribution.matchCardinality length\n @param _prizeDistribution The PrizeDistribution to use to calculate the masks\n @return An array of bitmasks"
                  },
                  "id": 7451,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_createBitMasks",
                  "nameLocation": "14110:15:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7393,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7392,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "14176:18:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7451,
                        "src": "14126:68:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 7391,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7390,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "14126:42:31"
                          },
                          "referencedDeclaration": 11491,
                          "src": "14126:42:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14125:70:31"
                  },
                  "returnParameters": {
                    "id": 7397,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7396,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7451,
                        "src": "14243:16:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7394,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "14243:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7395,
                          "nodeType": "ArrayTypeName",
                          "src": "14243:9:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14242:18:31"
                  },
                  "scope": 7568,
                  "src": "14101:621:31",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7481,
                    "nodeType": "Block",
                    "src": "15248:391:31",
                    "statements": [
                      {
                        "assignments": [
                          7463
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7463,
                            "mutability": "mutable",
                            "name": "prizeFraction",
                            "nameLocation": "15315:13:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7481,
                            "src": "15307:21:31",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 7462,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "15307:7:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7468,
                        "initialValue": {
                          "baseExpression": {
                            "expression": {
                              "id": 7464,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7455,
                              "src": "15331:18:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            },
                            "id": 7465,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "tiers",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11488,
                            "src": "15331:24:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint32_$16_memory_ptr",
                              "typeString": "uint32[16] memory"
                            }
                          },
                          "id": 7467,
                          "indexExpression": {
                            "id": 7466,
                            "name": "_prizeTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7457,
                            "src": "15356:15:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "15331:41:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "15307:65:31"
                      },
                      {
                        "assignments": [
                          7470
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7470,
                            "mutability": "mutable",
                            "name": "numberOfPrizesForIndex",
                            "nameLocation": "15444:22:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7481,
                            "src": "15436:30:31",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 7469,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "15436:7:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7476,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7472,
                                "name": "_prizeDistribution",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7455,
                                "src": "15506:18:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                }
                              },
                              "id": 7473,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "bitRangeSize",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11472,
                              "src": "15506:31:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 7474,
                              "name": "_prizeTierIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7457,
                              "src": "15551:15:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7471,
                            "name": "_numberOfPrizesForIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7567,
                            "src": "15469:23:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint8_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint8,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 7475,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15469:107:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "15436:140:31"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7479,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7477,
                            "name": "prizeFraction",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7463,
                            "src": "15594:13:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "id": 7478,
                            "name": "numberOfPrizesForIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7470,
                            "src": "15610:22:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "15594:38:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 7461,
                        "id": 7480,
                        "nodeType": "Return",
                        "src": "15587:45:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7452,
                    "nodeType": "StructuredDocumentation",
                    "src": "14728:329:31",
                    "text": " @notice Calculates the expected prize fraction per PrizeDistributions and distributionIndex\n @param _prizeDistribution prizeDistribution struct for Draw\n @param _prizeTierIndex Index of the prize tiers array to calculate\n @return returns the fraction of the total prize (fixed point 9 number)"
                  },
                  "id": 7482,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculatePrizeTierFraction",
                  "nameLocation": "15071:27:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7458,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7455,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "15158:18:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7482,
                        "src": "15108:68:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 7454,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7453,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "15108:42:31"
                          },
                          "referencedDeclaration": 11491,
                          "src": "15108:42:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7457,
                        "mutability": "mutable",
                        "name": "_prizeTierIndex",
                        "nameLocation": "15194:15:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7482,
                        "src": "15186:23:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7456,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15186:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15098:117:31"
                  },
                  "returnParameters": {
                    "id": 7461,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7460,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7482,
                        "src": "15239:7:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7459,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15239:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15238:9:31"
                  },
                  "scope": 7568,
                  "src": "15062:577:31",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7530,
                    "nodeType": "Block",
                    "src": "16112:379:31",
                    "statements": [
                      {
                        "assignments": [
                          7498
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7498,
                            "mutability": "mutable",
                            "name": "prizeDistributionFractions",
                            "nameLocation": "16139:26:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 7530,
                            "src": "16122:43:31",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7496,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "16122:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7497,
                              "nodeType": "ArrayTypeName",
                              "src": "16122:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7506,
                        "initialValue": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 7504,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 7502,
                                "name": "maxWinningTierIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7488,
                                "src": "16195:19:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 7503,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "16217:1:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "16195:23:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 7501,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "16168:13:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7499,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "16172:7:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7500,
                              "nodeType": "ArrayTypeName",
                              "src": "16172:9:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 7505,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "16168:60:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "16122:106:31"
                      },
                      {
                        "body": {
                          "id": 7526,
                          "nodeType": "Block",
                          "src": "16288:153:31",
                          "statements": [
                            {
                              "expression": {
                                "id": 7524,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 7517,
                                    "name": "prizeDistributionFractions",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7498,
                                    "src": "16302:26:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 7519,
                                  "indexExpression": {
                                    "id": 7518,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7508,
                                    "src": "16329:1:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "16302:29:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "id": 7521,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7486,
                                      "src": "16379:18:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    },
                                    {
                                      "id": 7522,
                                      "name": "i",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7508,
                                      "src": "16415:1:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    ],
                                    "id": 7520,
                                    "name": "_calculatePrizeTierFraction",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7482,
                                    "src": "16334:27:31",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11491_memory_ptr_$_t_uint256_$returns$_t_uint256_$",
                                      "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory,uint256) pure returns (uint256)"
                                    }
                                  },
                                  "id": 7523,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "16334:96:31",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "16302:128:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7525,
                              "nodeType": "ExpressionStatement",
                              "src": "16302:128:31"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 7513,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7511,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7508,
                            "src": "16257:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 7512,
                            "name": "maxWinningTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7488,
                            "src": "16262:19:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "16257:24:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7527,
                        "initializationExpression": {
                          "assignments": [
                            7508
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7508,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "16250:1:31",
                              "nodeType": "VariableDeclaration",
                              "scope": 7527,
                              "src": "16244:7:31",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "typeName": {
                                "id": 7507,
                                "name": "uint8",
                                "nodeType": "ElementaryTypeName",
                                "src": "16244:5:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7510,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 7509,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "16254:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "16244:11:31"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7515,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "16283:3:31",
                            "subExpression": {
                              "id": 7514,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7508,
                              "src": "16283:1:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 7516,
                          "nodeType": "ExpressionStatement",
                          "src": "16283:3:31"
                        },
                        "nodeType": "ForStatement",
                        "src": "16239:202:31"
                      },
                      {
                        "expression": {
                          "id": 7528,
                          "name": "prizeDistributionFractions",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7498,
                          "src": "16458:26:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 7493,
                        "id": 7529,
                        "nodeType": "Return",
                        "src": "16451:33:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7483,
                    "nodeType": "StructuredDocumentation",
                    "src": "15645:264:31",
                    "text": " @notice Generates an array of prize tiers fractions\n @param _prizeDistribution prizeDistribution struct for Draw\n @param maxWinningTierIndex Max length of the prize tiers array\n @return returns an array of prize tiers fractions"
                  },
                  "id": 7531,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculatePrizeTierFractions",
                  "nameLocation": "15923:28:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7489,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7486,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "16011:18:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7531,
                        "src": "15961:68:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 7485,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7484,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "15961:42:31"
                          },
                          "referencedDeclaration": 11491,
                          "src": "15961:42:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7488,
                        "mutability": "mutable",
                        "name": "maxWinningTierIndex",
                        "nameLocation": "16045:19:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7531,
                        "src": "16039:25:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 7487,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "16039:5:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15951:119:31"
                  },
                  "returnParameters": {
                    "id": 7493,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7492,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7531,
                        "src": "16094:16:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7490,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "16094:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7491,
                          "nodeType": "ArrayTypeName",
                          "src": "16094:9:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16093:18:31"
                  },
                  "scope": 7568,
                  "src": "15914:577:31",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7566,
                    "nodeType": "Block",
                    "src": "16926:201:31",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7543,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7541,
                            "name": "_prizeTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7536,
                            "src": "16940:15:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 7542,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "16958:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "16940:19:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 7564,
                          "nodeType": "Block",
                          "src": "17088:33:31",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "31",
                                "id": 7562,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "17109:1:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "functionReturnParameters": 7540,
                              "id": 7563,
                              "nodeType": "Return",
                              "src": "17102:8:31"
                            }
                          ]
                        },
                        "id": 7565,
                        "nodeType": "IfStatement",
                        "src": "16936:185:31",
                        "trueBody": {
                          "id": 7561,
                          "nodeType": "Block",
                          "src": "16961:121:31",
                          "statements": [
                            {
                              "expression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 7559,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 7548,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "hexValue": "31",
                                        "id": 7544,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "16984:1:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_1_by_1",
                                          "typeString": "int_const 1"
                                        },
                                        "value": "1"
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "<<",
                                      "rightExpression": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 7547,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 7545,
                                          "name": "_bitRangeSize",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7534,
                                          "src": "16989:13:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "*",
                                        "rightExpression": {
                                          "id": 7546,
                                          "name": "_prizeTierIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7536,
                                          "src": "17005:15:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "16989:31:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "16984:36:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 7549,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "16982:40:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 7557,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "hexValue": "31",
                                        "id": 7550,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "17027:1:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_1_by_1",
                                          "typeString": "int_const 1"
                                        },
                                        "value": "1"
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "<<",
                                      "rightExpression": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 7556,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 7551,
                                          "name": "_bitRangeSize",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7534,
                                          "src": "17032:13:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "*",
                                        "rightExpression": {
                                          "components": [
                                            {
                                              "commonType": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              },
                                              "id": 7554,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "id": 7552,
                                                "name": "_prizeTierIndex",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 7536,
                                                "src": "17049:15:31",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "-",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 7553,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "17067:1:31",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1_by_1",
                                                  "typeString": "int_const 1"
                                                },
                                                "value": "1"
                                              },
                                              "src": "17049:19:31",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            }
                                          ],
                                          "id": 7555,
                                          "isConstant": false,
                                          "isInlineArray": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "TupleExpression",
                                          "src": "17048:21:31",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "17032:37:31",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "17027:42:31",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 7558,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "17025:46:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "16982:89:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "functionReturnParameters": 7540,
                              "id": 7560,
                              "nodeType": "Return",
                              "src": "16975:96:31"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7532,
                    "nodeType": "StructuredDocumentation",
                    "src": "16497:285:31",
                    "text": " @notice Calculates the number of prizes for a given prizeDistributionIndex\n @param _bitRangeSize Bit range size for Draw\n @param _prizeTierIndex Index of the prize tier array to calculate\n @return returns the fraction of the total prize (base 1e18)"
                  },
                  "id": 7567,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_numberOfPrizesForIndex",
                  "nameLocation": "16796:23:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7537,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7534,
                        "mutability": "mutable",
                        "name": "_bitRangeSize",
                        "nameLocation": "16826:13:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7567,
                        "src": "16820:19:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 7533,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "16820:5:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7536,
                        "mutability": "mutable",
                        "name": "_prizeTierIndex",
                        "nameLocation": "16849:15:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 7567,
                        "src": "16841:23:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7535,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "16841:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16819:46:31"
                  },
                  "returnParameters": {
                    "id": 7540,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7539,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7567,
                        "src": "16913:7:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7538,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "16913:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16912:9:31"
                  },
                  "scope": 7568,
                  "src": "16787:340:31",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 7569,
              "src": "876:16253:31",
              "usedErrors": []
            }
          ],
          "src": "37:17093:31"
        },
        "id": 31
      },
      "contracts/DrawCalculatorV2.sol": {
        "ast": {
          "absolutePath": "contracts/DrawCalculatorV2.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "DrawCalculatorV2": [
              8610
            ],
            "ExtendedSafeCastLib": [
              12433
            ],
            "IControlledToken": [
              11069
            ],
            "IDrawBeacon": [
              11241
            ],
            "IDrawBuffer": [
              11318
            ],
            "IDrawCalculator": [
              11391
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionSource": [
              11503
            ],
            "IPrizeDistributor": [
              11601
            ],
            "ITicket": [
              12213
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "Ownable": [
              4086
            ],
            "PrizeDistributor": [
              9486
            ],
            "RNGInterface": [
              4142
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 8611,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 7570,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:32"
            },
            {
              "absolutePath": "contracts/interfaces/ITicket.sol",
              "file": "./interfaces/ITicket.sol",
              "id": 7571,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8611,
              "sourceUnit": 12214,
              "src": "61:34:32",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IDrawBuffer.sol",
              "file": "./interfaces/IDrawBuffer.sol",
              "id": 7572,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8611,
              "sourceUnit": 11319,
              "src": "96:38:32",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IPrizeDistributionSource.sol",
              "file": "./interfaces/IPrizeDistributionSource.sol",
              "id": 7573,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8611,
              "sourceUnit": 11504,
              "src": "135:51:32",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IDrawBeacon.sol",
              "file": "./interfaces/IDrawBeacon.sol",
              "id": 7574,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8611,
              "sourceUnit": 11242,
              "src": "187:38:32",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/PrizeDistributor.sol",
              "file": "./PrizeDistributor.sol",
              "id": 7575,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8611,
              "sourceUnit": 9487,
              "src": "227:32:32",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 7576,
                "nodeType": "StructuredDocumentation",
                "src": "261:607:32",
                "text": " @title  PoolTogether V4 DrawCalculatorV2\n @author PoolTogether Inc Team\n @notice The DrawCalculator calculates a user's prize by matching a winning random number against\ntheir picks. A users picks are generated deterministically based on their address and balance\nof tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc...\nA user with a higher average weighted balance (during each draw period) will be given a large number of\npicks to choose from, and thus a higher chance to match the winning numbers."
              },
              "fullyImplemented": true,
              "id": 8610,
              "linearizedBaseContracts": [
                8610
              ],
              "name": "DrawCalculatorV2",
              "nameLocation": "878:16:32",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 7577,
                    "nodeType": "StructuredDocumentation",
                    "src": "948:30:32",
                    "text": "@notice DrawBuffer address"
                  },
                  "functionSelector": "ce343bb6",
                  "id": 7580,
                  "mutability": "immutable",
                  "name": "drawBuffer",
                  "nameLocation": "1012:10:32",
                  "nodeType": "VariableDeclaration",
                  "scope": 8610,
                  "src": "983:39:32",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                    "typeString": "contract IDrawBuffer"
                  },
                  "typeName": {
                    "id": 7579,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 7578,
                      "name": "IDrawBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11318,
                      "src": "983:11:32"
                    },
                    "referencedDeclaration": 11318,
                    "src": "983:11:32",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                      "typeString": "contract IDrawBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 7581,
                    "nodeType": "StructuredDocumentation",
                    "src": "1029:49:32",
                    "text": "@notice Ticket associated with DrawCalculator"
                  },
                  "functionSelector": "6cc25db7",
                  "id": 7584,
                  "mutability": "immutable",
                  "name": "ticket",
                  "nameLocation": "1108:6:32",
                  "nodeType": "VariableDeclaration",
                  "scope": 8610,
                  "src": "1083:31:32",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_ITicket_$12213",
                    "typeString": "contract ITicket"
                  },
                  "typeName": {
                    "id": 7583,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 7582,
                      "name": "ITicket",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 12213,
                      "src": "1083:7:32"
                    },
                    "referencedDeclaration": 12213,
                    "src": "1083:7:32",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_ITicket_$12213",
                      "typeString": "contract ITicket"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 7585,
                    "nodeType": "StructuredDocumentation",
                    "src": "1121:87:32",
                    "text": "@notice The source in which the history of draw settings are stored as ring buffer."
                  },
                  "functionSelector": "bcc18abc",
                  "id": 7588,
                  "mutability": "immutable",
                  "name": "prizeDistributionSource",
                  "nameLocation": "1255:23:32",
                  "nodeType": "VariableDeclaration",
                  "scope": 8610,
                  "src": "1213:65:32",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                    "typeString": "contract IPrizeDistributionSource"
                  },
                  "typeName": {
                    "id": 7587,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 7586,
                      "name": "IPrizeDistributionSource",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11503,
                      "src": "1213:24:32"
                    },
                    "referencedDeclaration": 11503,
                    "src": "1213:24:32",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                      "typeString": "contract IPrizeDistributionSource"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 7589,
                    "nodeType": "StructuredDocumentation",
                    "src": "1285:34:32",
                    "text": "@notice The tiers array length"
                  },
                  "functionSelector": "f8d0ca4c",
                  "id": 7592,
                  "mutability": "constant",
                  "name": "TIERS_LENGTH",
                  "nameLocation": "1346:12:32",
                  "nodeType": "VariableDeclaration",
                  "scope": 8610,
                  "src": "1324:39:32",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint8",
                    "typeString": "uint8"
                  },
                  "typeName": {
                    "id": 7590,
                    "name": "uint8",
                    "nodeType": "ElementaryTypeName",
                    "src": "1324:5:32",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "value": {
                    "hexValue": "3136",
                    "id": 7591,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1361:2:32",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_16_by_1",
                      "typeString": "int_const 16"
                    },
                    "value": "16"
                  },
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 7593,
                    "nodeType": "StructuredDocumentation",
                    "src": "1414:51:32",
                    "text": "@notice Emitted when the contract is initialized"
                  },
                  "id": 7604,
                  "name": "Deployed",
                  "nameLocation": "1476:8:32",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 7603,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7596,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "ticket",
                        "nameLocation": "1510:6:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7604,
                        "src": "1494:22:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 7595,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7594,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "1494:7:32"
                          },
                          "referencedDeclaration": 12213,
                          "src": "1494:7:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7599,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawBuffer",
                        "nameLocation": "1546:10:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7604,
                        "src": "1526:30:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 7598,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7597,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "1526:11:32"
                          },
                          "referencedDeclaration": 11318,
                          "src": "1526:11:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7602,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributionSource",
                        "nameLocation": "1599:23:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7604,
                        "src": "1566:56:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                          "typeString": "contract IPrizeDistributionSource"
                        },
                        "typeName": {
                          "id": 7601,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7600,
                            "name": "IPrizeDistributionSource",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11503,
                            "src": "1566:24:32"
                          },
                          "referencedDeclaration": 11503,
                          "src": "1566:24:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                            "typeString": "contract IPrizeDistributionSource"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1484:144:32"
                  },
                  "src": "1470:159:32"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 7605,
                    "nodeType": "StructuredDocumentation",
                    "src": "1635:59:32",
                    "text": "@notice Emitted when the prizeDistributor is set/updated"
                  },
                  "id": 7610,
                  "name": "PrizeDistributorSet",
                  "nameLocation": "1705:19:32",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 7609,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7608,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributor",
                        "nameLocation": "1750:16:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7610,
                        "src": "1725:41:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_PrizeDistributor_$9486",
                          "typeString": "contract PrizeDistributor"
                        },
                        "typeName": {
                          "id": 7607,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7606,
                            "name": "PrizeDistributor",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9486,
                            "src": "1725:16:32"
                          },
                          "referencedDeclaration": 9486,
                          "src": "1725:16:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_PrizeDistributor_$9486",
                            "typeString": "contract PrizeDistributor"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1724:43:32"
                  },
                  "src": "1699:69:32"
                },
                {
                  "body": {
                    "id": 7680,
                    "nodeType": "Block",
                    "src": "2229:445:32",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 7632,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 7626,
                                    "name": "_ticket",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7614,
                                    "src": "2255:7:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ITicket_$12213",
                                      "typeString": "contract ITicket"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ITicket_$12213",
                                      "typeString": "contract ITicket"
                                    }
                                  ],
                                  "id": 7625,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2247:7:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 7624,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2247:7:32",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 7627,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2247:16:32",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 7630,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2275:1:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 7629,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2267:7:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 7628,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2267:7:32",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 7631,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2267:10:32",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2247:30:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f7469636b65742d6e6f742d7a65726f",
                              "id": 7633,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2279:26:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017",
                                "typeString": "literal_string \"DrawCalc/ticket-not-zero\""
                              },
                              "value": "DrawCalc/ticket-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017",
                                "typeString": "literal_string \"DrawCalc/ticket-not-zero\""
                              }
                            ],
                            "id": 7623,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2239:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7634,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2239:67:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7635,
                        "nodeType": "ExpressionStatement",
                        "src": "2239:67:32"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 7645,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 7639,
                                    "name": "_prizeDistributionSource",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7620,
                                    "src": "2332:24:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                                      "typeString": "contract IPrizeDistributionSource"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                                      "typeString": "contract IPrizeDistributionSource"
                                    }
                                  ],
                                  "id": 7638,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2324:7:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 7637,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2324:7:32",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 7640,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2324:33:32",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 7643,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2369:1:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 7642,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2361:7:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 7641,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2361:7:32",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 7644,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2361:10:32",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2324:47:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f7064622d6e6f742d7a65726f",
                              "id": 7646,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2373:23:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42",
                                "typeString": "literal_string \"DrawCalc/pdb-not-zero\""
                              },
                              "value": "DrawCalc/pdb-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42",
                                "typeString": "literal_string \"DrawCalc/pdb-not-zero\""
                              }
                            ],
                            "id": 7636,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2316:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7647,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2316:81:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7648,
                        "nodeType": "ExpressionStatement",
                        "src": "2316:81:32"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 7658,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 7652,
                                    "name": "_drawBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7617,
                                    "src": "2423:11:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  ],
                                  "id": 7651,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2415:7:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 7650,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2415:7:32",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 7653,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2415:20:32",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 7656,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2447:1:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 7655,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2439:7:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 7654,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2439:7:32",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 7657,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2439:10:32",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2415:34:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f64682d6e6f742d7a65726f",
                              "id": 7659,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2451:22:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f",
                                "typeString": "literal_string \"DrawCalc/dh-not-zero\""
                              },
                              "value": "DrawCalc/dh-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f",
                                "typeString": "literal_string \"DrawCalc/dh-not-zero\""
                              }
                            ],
                            "id": 7649,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2407:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7660,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2407:67:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7661,
                        "nodeType": "ExpressionStatement",
                        "src": "2407:67:32"
                      },
                      {
                        "expression": {
                          "id": 7664,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7662,
                            "name": "ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7584,
                            "src": "2485:6:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$12213",
                              "typeString": "contract ITicket"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 7663,
                            "name": "_ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7614,
                            "src": "2494:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$12213",
                              "typeString": "contract ITicket"
                            }
                          },
                          "src": "2485:16:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "id": 7665,
                        "nodeType": "ExpressionStatement",
                        "src": "2485:16:32"
                      },
                      {
                        "expression": {
                          "id": 7668,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7666,
                            "name": "drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7580,
                            "src": "2511:10:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 7667,
                            "name": "_drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7617,
                            "src": "2524:11:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "src": "2511:24:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "id": 7669,
                        "nodeType": "ExpressionStatement",
                        "src": "2511:24:32"
                      },
                      {
                        "expression": {
                          "id": 7672,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7670,
                            "name": "prizeDistributionSource",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7588,
                            "src": "2545:23:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                              "typeString": "contract IPrizeDistributionSource"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 7671,
                            "name": "_prizeDistributionSource",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7620,
                            "src": "2571:24:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                              "typeString": "contract IPrizeDistributionSource"
                            }
                          },
                          "src": "2545:50:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                            "typeString": "contract IPrizeDistributionSource"
                          }
                        },
                        "id": 7673,
                        "nodeType": "ExpressionStatement",
                        "src": "2545:50:32"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 7675,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7614,
                              "src": "2620:7:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 7676,
                              "name": "_drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7617,
                              "src": "2629:11:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            {
                              "id": 7677,
                              "name": "_prizeDistributionSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7620,
                              "src": "2642:24:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                                "typeString": "contract IPrizeDistributionSource"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              },
                              {
                                "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                                "typeString": "contract IPrizeDistributionSource"
                              }
                            ],
                            "id": 7674,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7604,
                            "src": "2611:8:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_ITicket_$12213_$_t_contract$_IDrawBuffer_$11318_$_t_contract$_IPrizeDistributionSource_$11503_$returns$__$",
                              "typeString": "function (contract ITicket,contract IDrawBuffer,contract IPrizeDistributionSource)"
                            }
                          },
                          "id": 7678,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2611:56:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7679,
                        "nodeType": "EmitStatement",
                        "src": "2606:61:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7611,
                    "nodeType": "StructuredDocumentation",
                    "src": "1823:266:32",
                    "text": " @notice Constructor for DrawCalculator\n @param _ticket Ticket associated with this DrawCalculator\n @param _drawBuffer The address of the draw buffer to push draws to\n @param _prizeDistributionSource PrizeDistributionSource address"
                  },
                  "id": 7681,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7621,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7614,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "2123:7:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7681,
                        "src": "2115:15:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 7613,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7612,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "2115:7:32"
                          },
                          "referencedDeclaration": 12213,
                          "src": "2115:7:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7617,
                        "mutability": "mutable",
                        "name": "_drawBuffer",
                        "nameLocation": "2152:11:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7681,
                        "src": "2140:23:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 7616,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7615,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "2140:11:32"
                          },
                          "referencedDeclaration": 11318,
                          "src": "2140:11:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7620,
                        "mutability": "mutable",
                        "name": "_prizeDistributionSource",
                        "nameLocation": "2198:24:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7681,
                        "src": "2173:49:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                          "typeString": "contract IPrizeDistributionSource"
                        },
                        "typeName": {
                          "id": 7619,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7618,
                            "name": "IPrizeDistributionSource",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11503,
                            "src": "2173:24:32"
                          },
                          "referencedDeclaration": 11503,
                          "src": "2173:24:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                            "typeString": "contract IPrizeDistributionSource"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2105:123:32"
                  },
                  "returnParameters": {
                    "id": 7622,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2229:0:32"
                  },
                  "scope": 8610,
                  "src": "2094:580:32",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 7772,
                    "nodeType": "Block",
                    "src": "3415:1108:32",
                    "statements": [
                      {
                        "assignments": [
                          7702
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7702,
                            "mutability": "mutable",
                            "name": "pickIndices",
                            "nameLocation": "3443:11:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 7772,
                            "src": "3425:29:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                              "typeString": "uint64[][]"
                            },
                            "typeName": {
                              "baseType": {
                                "baseType": {
                                  "id": 7699,
                                  "name": "uint64",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3425:6:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "id": 7700,
                                "nodeType": "ArrayTypeName",
                                "src": "3425:8:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                  "typeString": "uint64[]"
                                }
                              },
                              "id": 7701,
                              "nodeType": "ArrayTypeName",
                              "src": "3425:10:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_storage_$dyn_storage_ptr",
                                "typeString": "uint64[][]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7712,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7705,
                              "name": "_pickIndicesForDraws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7689,
                              "src": "3468:20:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_calldata_ptr",
                                "typeString": "bytes calldata"
                              }
                            },
                            {
                              "components": [
                                {
                                  "baseExpression": {
                                    "baseExpression": {
                                      "id": 7707,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "3491:6:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint64_$",
                                        "typeString": "type(uint64)"
                                      },
                                      "typeName": {
                                        "id": 7706,
                                        "name": "uint64",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "3491:6:32",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 7708,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "3491:9:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_array$_t_uint64_$dyn_memory_ptr_$",
                                      "typeString": "type(uint64[] memory)"
                                    }
                                  },
                                  "id": 7709,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "3491:11:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr_$",
                                    "typeString": "type(uint64[] memory[] memory)"
                                  }
                                }
                              ],
                              "id": 7710,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "3490:13:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr_$",
                                "typeString": "type(uint64[] memory[] memory)"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_calldata_ptr",
                                "typeString": "bytes calldata"
                              },
                              {
                                "typeIdentifier": "t_type$_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr_$",
                                "typeString": "type(uint64[] memory[] memory)"
                              }
                            ],
                            "expression": {
                              "id": 7703,
                              "name": "abi",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -1,
                              "src": "3457:3:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_abi",
                                "typeString": "abi"
                              }
                            },
                            "id": 7704,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "decode",
                            "nodeType": "MemberAccess",
                            "src": "3457:10:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_abidecode_pure$__$returns$__$",
                              "typeString": "function () pure"
                            }
                          },
                          "id": 7711,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3457:47:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                            "typeString": "uint64[] memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3425:79:32"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 7718,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 7714,
                                  "name": "pickIndices",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7702,
                                  "src": "3522:11:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                                    "typeString": "uint64[] memory[] memory"
                                  }
                                },
                                "id": 7715,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "3522:18:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 7716,
                                  "name": "_drawIds",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7687,
                                  "src": "3544:8:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                    "typeString": "uint32[] calldata"
                                  }
                                },
                                "id": 7717,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "3544:15:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "3522:37:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c656e677468",
                              "id": 7719,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3561:38:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f",
                                "typeString": "literal_string \"DrawCalc/invalid-pick-indices-length\""
                              },
                              "value": "DrawCalc/invalid-pick-indices-length"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f",
                                "typeString": "literal_string \"DrawCalc/invalid-pick-indices-length\""
                              }
                            ],
                            "id": 7713,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3514:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7720,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3514:86:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7721,
                        "nodeType": "ExpressionStatement",
                        "src": "3514:86:32"
                      },
                      {
                        "assignments": [
                          7727
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7727,
                            "mutability": "mutable",
                            "name": "draws",
                            "nameLocation": "3712:5:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 7772,
                            "src": "3686:31:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7725,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 7724,
                                  "name": "IDrawBeacon.Draw",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11085,
                                  "src": "3686:16:32"
                                },
                                "referencedDeclaration": 11085,
                                "src": "3686:16:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                                  "typeString": "struct IDrawBeacon.Draw"
                                }
                              },
                              "id": 7726,
                              "nodeType": "ArrayTypeName",
                              "src": "3686:18:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$dyn_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7732,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7730,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7687,
                              "src": "3740:8:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            ],
                            "expression": {
                              "id": 7728,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7580,
                              "src": "3720:10:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 7729,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getDraws",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11279,
                            "src": "3720:19:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IDrawBeacon.Draw memory[] memory)"
                            }
                          },
                          "id": 7731,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3720:29:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3686:63:32"
                      },
                      {
                        "assignments": [
                          7738
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7738,
                            "mutability": "mutable",
                            "name": "_prizeDistributions",
                            "nameLocation": "3897:19:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 7772,
                            "src": "3845:71:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7736,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 7735,
                                  "name": "IPrizeDistributionSource.PrizeDistribution",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11491,
                                  "src": "3845:42:32"
                                },
                                "referencedDeclaration": 11491,
                                "src": "3845:42:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                                }
                              },
                              "id": 7737,
                              "nodeType": "ArrayTypeName",
                              "src": "3845:44:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7743,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7741,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7687,
                              "src": "3978:8:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            ],
                            "expression": {
                              "id": 7739,
                              "name": "prizeDistributionSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7588,
                              "src": "3919:23:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                                "typeString": "contract IPrizeDistributionSource"
                              }
                            },
                            "id": 7740,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getPrizeDistributions",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11502,
                            "src": "3919:58:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IPrizeDistributionSource.PrizeDistribution memory[] memory)"
                            }
                          },
                          "id": 7742,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3919:68:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3845:142:32"
                      },
                      {
                        "assignments": [
                          7748
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7748,
                            "mutability": "mutable",
                            "name": "userBalances",
                            "nameLocation": "4113:12:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 7772,
                            "src": "4096:29:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7746,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "4096:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7747,
                              "nodeType": "ArrayTypeName",
                              "src": "4096:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7754,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7750,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7684,
                              "src": "4153:5:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 7751,
                              "name": "draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7727,
                              "src": "4160:5:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            {
                              "id": 7752,
                              "name": "_prizeDistributions",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7738,
                              "src": "4167:19:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            ],
                            "id": 7749,
                            "name": "_getNormalizedBalancesAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8154,
                            "src": "4128:24:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_$_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (address,struct IDrawBeacon.Draw memory[] memory,struct IPrizeDistributionSource.PrizeDistribution memory[] memory) view returns (uint256[] memory)"
                            }
                          },
                          "id": 7753,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4128:59:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4096:91:32"
                      },
                      {
                        "assignments": [
                          7756
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7756,
                            "mutability": "mutable",
                            "name": "_userRandomNumber",
                            "nameLocation": "4251:17:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 7772,
                            "src": "4243:25:32",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 7755,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "4243:7:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7763,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 7760,
                                  "name": "_user",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7684,
                                  "src": "4298:5:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "expression": {
                                  "id": 7758,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "4281:3:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 7759,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "4281:16:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 7761,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4281:23:32",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 7757,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "4271:9:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 7762,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4271:34:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4243:62:32"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 7765,
                              "name": "userBalances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7748,
                              "src": "4366:12:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              }
                            },
                            {
                              "id": 7766,
                              "name": "_userRandomNumber",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7756,
                              "src": "4396:17:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 7767,
                              "name": "draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7727,
                              "src": "4431:5:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            {
                              "id": 7768,
                              "name": "pickIndices",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7702,
                              "src": "4454:11:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                                "typeString": "uint64[] memory[] memory"
                              }
                            },
                            {
                              "id": 7769,
                              "name": "_prizeDistributions",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7738,
                              "src": "4483:19:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                                "typeString": "uint64[] memory[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            ],
                            "id": 7764,
                            "name": "_calculatePrizesAwardable",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7968,
                            "src": "4323:25:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes32_$_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_$_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr_$_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$",
                              "typeString": "function (uint256[] memory,bytes32,struct IDrawBeacon.Draw memory[] memory,uint64[] memory[] memory,struct IPrizeDistributionSource.PrizeDistribution memory[] memory) view returns (uint256[] memory,bytes memory)"
                            }
                          },
                          "id": 7770,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4323:193:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(uint256[] memory,bytes memory)"
                          }
                        },
                        "functionReturnParameters": 7696,
                        "id": 7771,
                        "nodeType": "Return",
                        "src": "4316:200:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7682,
                    "nodeType": "StructuredDocumentation",
                    "src": "2736:490:32",
                    "text": " @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\n @param _user User for which to calculate prize amount.\n @param _drawIds drawId array for which to calculate prize amounts for.\n @param _pickIndicesForDraws The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\n @return List of awardable prize amounts ordered by drawId."
                  },
                  "functionSelector": "aaca392e",
                  "id": 7773,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculate",
                  "nameLocation": "3240:9:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7690,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7684,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "3267:5:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7773,
                        "src": "3259:13:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7683,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3259:7:32",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7687,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "3300:8:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7773,
                        "src": "3282:26:32",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7685,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "3282:6:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 7686,
                          "nodeType": "ArrayTypeName",
                          "src": "3282:8:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7689,
                        "mutability": "mutable",
                        "name": "_pickIndicesForDraws",
                        "nameLocation": "3333:20:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7773,
                        "src": "3318:35:32",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 7688,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3318:5:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3249:110:32"
                  },
                  "returnParameters": {
                    "id": 7696,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7693,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7773,
                        "src": "3383:16:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7691,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "3383:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7692,
                          "nodeType": "ArrayTypeName",
                          "src": "3383:9:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7695,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7773,
                        "src": "3401:12:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 7694,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3401:5:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3382:32:32"
                  },
                  "scope": 8610,
                  "src": "3231:1292:32",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 7782,
                    "nodeType": "Block",
                    "src": "4680:34:32",
                    "statements": [
                      {
                        "expression": {
                          "id": 7780,
                          "name": "drawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7580,
                          "src": "4697:10:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "functionReturnParameters": 7779,
                        "id": 7781,
                        "nodeType": "Return",
                        "src": "4690:17:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7774,
                    "nodeType": "StructuredDocumentation",
                    "src": "4529:85:32",
                    "text": " @notice Read global DrawBuffer variable.\n @return IDrawBuffer"
                  },
                  "functionSelector": "4019f2d6",
                  "id": 7783,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawBuffer",
                  "nameLocation": "4628:13:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7775,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4641:2:32"
                  },
                  "returnParameters": {
                    "id": 7779,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7778,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7783,
                        "src": "4667:11:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 7777,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7776,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "4667:11:32"
                          },
                          "referencedDeclaration": 11318,
                          "src": "4667:11:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4666:13:32"
                  },
                  "scope": 8610,
                  "src": "4619:95:32",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 7792,
                    "nodeType": "Block",
                    "src": "4951:47:32",
                    "statements": [
                      {
                        "expression": {
                          "id": 7790,
                          "name": "prizeDistributionSource",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7588,
                          "src": "4968:23:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                            "typeString": "contract IPrizeDistributionSource"
                          }
                        },
                        "functionReturnParameters": 7789,
                        "id": 7791,
                        "nodeType": "Return",
                        "src": "4961:30:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7784,
                    "nodeType": "StructuredDocumentation",
                    "src": "4720:111:32",
                    "text": " @notice Read global prizeDistributionSource variable.\n @return IPrizeDistributionSource"
                  },
                  "functionSelector": "740e61a3",
                  "id": 7793,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributionSource",
                  "nameLocation": "4845:26:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7785,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4871:2:32"
                  },
                  "returnParameters": {
                    "id": 7789,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7788,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7793,
                        "src": "4921:24:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                          "typeString": "contract IPrizeDistributionSource"
                        },
                        "typeName": {
                          "id": 7787,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7786,
                            "name": "IPrizeDistributionSource",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11503,
                            "src": "4921:24:32"
                          },
                          "referencedDeclaration": 11503,
                          "src": "4921:24:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                            "typeString": "contract IPrizeDistributionSource"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4920:26:32"
                  },
                  "scope": 8610,
                  "src": "4836:162:32",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 7833,
                    "nodeType": "Block",
                    "src": "5385:311:32",
                    "statements": [
                      {
                        "assignments": [
                          7810
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7810,
                            "mutability": "mutable",
                            "name": "_draws",
                            "nameLocation": "5421:6:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 7833,
                            "src": "5395:32:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7808,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 7807,
                                  "name": "IDrawBeacon.Draw",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11085,
                                  "src": "5395:16:32"
                                },
                                "referencedDeclaration": 11085,
                                "src": "5395:16:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                                  "typeString": "struct IDrawBeacon.Draw"
                                }
                              },
                              "id": 7809,
                              "nodeType": "ArrayTypeName",
                              "src": "5395:18:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$dyn_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7815,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7813,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7799,
                              "src": "5450:8:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            ],
                            "expression": {
                              "id": 7811,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7580,
                              "src": "5430:10:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 7812,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getDraws",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11279,
                            "src": "5430:19:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IDrawBeacon.Draw memory[] memory)"
                            }
                          },
                          "id": 7814,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5430:29:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5395:64:32"
                      },
                      {
                        "assignments": [
                          7821
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7821,
                            "mutability": "mutable",
                            "name": "_prizeDistributions",
                            "nameLocation": "5521:19:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 7833,
                            "src": "5469:71:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7819,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 7818,
                                  "name": "IPrizeDistributionSource.PrizeDistribution",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11491,
                                  "src": "5469:42:32"
                                },
                                "referencedDeclaration": 11491,
                                "src": "5469:42:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                                }
                              },
                              "id": 7820,
                              "nodeType": "ArrayTypeName",
                              "src": "5469:44:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7826,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7824,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7799,
                              "src": "5602:8:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            ],
                            "expression": {
                              "id": 7822,
                              "name": "prizeDistributionSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7588,
                              "src": "5543:23:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                                "typeString": "contract IPrizeDistributionSource"
                              }
                            },
                            "id": 7823,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getPrizeDistributions",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11502,
                            "src": "5543:58:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IPrizeDistributionSource.PrizeDistribution memory[] memory)"
                            }
                          },
                          "id": 7825,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5543:68:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5469:142:32"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 7828,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7796,
                              "src": "5654:5:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 7829,
                              "name": "_draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7810,
                              "src": "5661:6:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            {
                              "id": 7830,
                              "name": "_prizeDistributions",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7821,
                              "src": "5669:19:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            ],
                            "id": 7827,
                            "name": "_getNormalizedBalancesAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8154,
                            "src": "5629:24:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$_t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr_$_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (address,struct IDrawBeacon.Draw memory[] memory,struct IPrizeDistributionSource.PrizeDistribution memory[] memory) view returns (uint256[] memory)"
                            }
                          },
                          "id": 7831,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5629:60:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 7804,
                        "id": 7832,
                        "nodeType": "Return",
                        "src": "5622:67:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7794,
                    "nodeType": "StructuredDocumentation",
                    "src": "5004:223:32",
                    "text": " @notice Returns a users balances expressed as a fraction of the total supply over time.\n @param _user The users address\n @param _drawIds The drawIds to consider\n @return Array of balances"
                  },
                  "functionSelector": "8045fbcf",
                  "id": 7834,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNormalizedBalancesForDrawIds",
                  "nameLocation": "5241:31:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7800,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7796,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "5281:5:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7834,
                        "src": "5273:13:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7795,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5273:7:32",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7799,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "5306:8:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7834,
                        "src": "5288:26:32",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7797,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "5288:6:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 7798,
                          "nodeType": "ArrayTypeName",
                          "src": "5288:8:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5272:43:32"
                  },
                  "returnParameters": {
                    "id": 7804,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7803,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7834,
                        "src": "5363:16:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7801,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "5363:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7802,
                          "nodeType": "ArrayTypeName",
                          "src": "5363:9:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5362:18:32"
                  },
                  "scope": 8610,
                  "src": "5232:464:32",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 7967,
                    "nodeType": "Block",
                    "src": "6610:1109:32",
                    "statements": [
                      {
                        "assignments": [
                          7864
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7864,
                            "mutability": "mutable",
                            "name": "_prizesAwardable",
                            "nameLocation": "6638:16:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 7967,
                            "src": "6621:33:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7862,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "6621:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7863,
                              "nodeType": "ArrayTypeName",
                              "src": "6621:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7871,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7868,
                                "name": "_normalizedUserBalances",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7838,
                                "src": "6671:23:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory"
                                }
                              },
                              "id": 7869,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "6671:30:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7867,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "6657:13:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7865,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "6661:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7866,
                              "nodeType": "ArrayTypeName",
                              "src": "6661:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 7870,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6657:45:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6621:81:32"
                      },
                      {
                        "assignments": [
                          7877
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7877,
                            "mutability": "mutable",
                            "name": "_prizeCounts",
                            "nameLocation": "6731:12:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 7967,
                            "src": "6712:31:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                              "typeString": "uint256[][]"
                            },
                            "typeName": {
                              "baseType": {
                                "baseType": {
                                  "id": 7874,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "6712:7:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 7875,
                                "nodeType": "ArrayTypeName",
                                "src": "6712:9:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                  "typeString": "uint256[]"
                                }
                              },
                              "id": 7876,
                              "nodeType": "ArrayTypeName",
                              "src": "6712:11:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_storage_$dyn_storage_ptr",
                                "typeString": "uint256[][]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7885,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7882,
                                "name": "_normalizedUserBalances",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7838,
                                "src": "6762:23:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory"
                                }
                              },
                              "id": 7883,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "6762:30:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7881,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "6746:15:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "baseType": {
                                  "id": 7878,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "6750:7:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 7879,
                                "nodeType": "ArrayTypeName",
                                "src": "6750:9:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                  "typeString": "uint256[]"
                                }
                              },
                              "id": 7880,
                              "nodeType": "ArrayTypeName",
                              "src": "6750:11:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_storage_$dyn_storage_ptr",
                                "typeString": "uint256[][]"
                              }
                            }
                          },
                          "id": 7884,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6746:47:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                            "typeString": "uint256[] memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6712:81:32"
                      },
                      {
                        "assignments": [
                          7887
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7887,
                            "mutability": "mutable",
                            "name": "timeNow",
                            "nameLocation": "6811:7:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 7967,
                            "src": "6804:14:32",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 7886,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "6804:6:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7893,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7890,
                                "name": "block",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -4,
                                "src": "6828:5:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_block",
                                  "typeString": "block"
                                }
                              },
                              "id": 7891,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "src": "6828:15:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7889,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "6821:6:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint64_$",
                              "typeString": "type(uint64)"
                            },
                            "typeName": {
                              "id": 7888,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "6821:6:32",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 7892,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6821:23:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6804:40:32"
                      },
                      {
                        "body": {
                          "id": 7954,
                          "nodeType": "Block",
                          "src": "6981:639:32",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    },
                                    "id": 7916,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 7906,
                                      "name": "timeNow",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7887,
                                      "src": "7003:7:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "<",
                                    "rightExpression": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      },
                                      "id": 7915,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 7907,
                                            "name": "_draws",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7844,
                                            "src": "7013:6:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                            }
                                          },
                                          "id": 7909,
                                          "indexExpression": {
                                            "id": 7908,
                                            "name": "drawIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7895,
                                            "src": "7020:9:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "7013:17:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory"
                                          }
                                        },
                                        "id": 7910,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "timestamp",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11080,
                                        "src": "7013:27:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint64",
                                          "typeString": "uint64"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "+",
                                      "rightExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 7911,
                                            "name": "_prizeDistributions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7852,
                                            "src": "7043:19:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                            }
                                          },
                                          "id": 7913,
                                          "indexExpression": {
                                            "id": 7912,
                                            "name": "drawIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7895,
                                            "src": "7063:9:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "7043:30:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                          }
                                        },
                                        "id": 7914,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "expiryDuration",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11482,
                                        "src": "7043:45:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "src": "7013:75:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "src": "7003:85:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "4472617743616c632f647261772d65787069726564",
                                    "id": 7917,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "7090:23:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670",
                                      "typeString": "literal_string \"DrawCalc/draw-expired\""
                                    },
                                    "value": "DrawCalc/draw-expired"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    {
                                      "typeIdentifier": "t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670",
                                      "typeString": "literal_string \"DrawCalc/draw-expired\""
                                    }
                                  ],
                                  "id": 7905,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "6995:7:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 7918,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "6995:119:32",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 7919,
                              "nodeType": "ExpressionStatement",
                              "src": "6995:119:32"
                            },
                            {
                              "assignments": [
                                7921
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 7921,
                                  "mutability": "mutable",
                                  "name": "totalUserPicks",
                                  "nameLocation": "7136:14:32",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 7954,
                                  "src": "7129:21:32",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  },
                                  "typeName": {
                                    "id": 7920,
                                    "name": "uint64",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7129:6:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 7930,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "baseExpression": {
                                      "id": 7923,
                                      "name": "_prizeDistributions",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7852,
                                      "src": "7198:19:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                      }
                                    },
                                    "id": 7925,
                                    "indexExpression": {
                                      "id": 7924,
                                      "name": "drawIndex",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7895,
                                      "src": "7218:9:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "7198:30:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                    }
                                  },
                                  {
                                    "baseExpression": {
                                      "id": 7926,
                                      "name": "_normalizedUserBalances",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7838,
                                      "src": "7246:23:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                        "typeString": "uint256[] memory"
                                      }
                                    },
                                    "id": 7928,
                                    "indexExpression": {
                                      "id": 7927,
                                      "name": "drawIndex",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7895,
                                      "src": "7270:9:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "7246:34:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 7922,
                                  "name": "_calculateNumberOfUserPicks",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7991,
                                  "src": "7153:27:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11491_memory_ptr_$_t_uint256_$returns$_t_uint64_$",
                                    "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory,uint256) pure returns (uint64)"
                                  }
                                },
                                "id": 7929,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7153:141:32",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "7129:165:32"
                            },
                            {
                              "expression": {
                                "id": 7952,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "components": [
                                    {
                                      "baseExpression": {
                                        "id": 7931,
                                        "name": "_prizesAwardable",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7864,
                                        "src": "7310:16:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                          "typeString": "uint256[] memory"
                                        }
                                      },
                                      "id": 7933,
                                      "indexExpression": {
                                        "id": 7932,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7895,
                                        "src": "7327:9:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "7310:27:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 7934,
                                        "name": "_prizeCounts",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7877,
                                        "src": "7339:12:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                                          "typeString": "uint256[] memory[] memory"
                                        }
                                      },
                                      "id": 7936,
                                      "indexExpression": {
                                        "id": 7935,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7895,
                                        "src": "7352:9:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "7339:23:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                        "typeString": "uint256[] memory"
                                      }
                                    }
                                  ],
                                  "id": 7937,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "TupleExpression",
                                  "src": "7309:54:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$",
                                    "typeString": "tuple(uint256,uint256[] memory)"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "baseExpression": {
                                          "id": 7939,
                                          "name": "_draws",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7844,
                                          "src": "7394:6:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                          }
                                        },
                                        "id": 7941,
                                        "indexExpression": {
                                          "id": 7940,
                                          "name": "drawIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7895,
                                          "src": "7401:9:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "nodeType": "IndexAccess",
                                        "src": "7394:17:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                          "typeString": "struct IDrawBeacon.Draw memory"
                                        }
                                      },
                                      "id": 7942,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "winningRandomNumber",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 11076,
                                      "src": "7394:37:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    {
                                      "id": 7943,
                                      "name": "totalUserPicks",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7921,
                                      "src": "7449:14:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    {
                                      "id": 7944,
                                      "name": "_userRandomNumber",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7840,
                                      "src": "7481:17:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 7945,
                                        "name": "_pickIndicesForDraws",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7848,
                                        "src": "7516:20:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory[] memory"
                                        }
                                      },
                                      "id": 7947,
                                      "indexExpression": {
                                        "id": 7946,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7895,
                                        "src": "7537:9:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "7516:31:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                        "typeString": "uint64[] memory"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 7948,
                                        "name": "_prizeDistributions",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7852,
                                        "src": "7565:19:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                        }
                                      },
                                      "id": 7950,
                                      "indexExpression": {
                                        "id": 7949,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7895,
                                        "src": "7585:9:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "7565:30:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      },
                                      {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      },
                                      {
                                        "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                        "typeString": "uint64[] memory"
                                      },
                                      {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    ],
                                    "id": 7938,
                                    "name": "_calculate",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8356,
                                    "src": "7366:10:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_bytes32_$_t_array$_t_uint64_$dyn_memory_ptr_$_t_struct$_PrizeDistribution_$11491_memory_ptr_$returns$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$",
                                      "typeString": "function (uint256,uint256,bytes32,uint64[] memory,struct IPrizeDistributionSource.PrizeDistribution memory) pure returns (uint256,uint256[] memory)"
                                    }
                                  },
                                  "id": 7951,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "7366:243:32",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$",
                                    "typeString": "tuple(uint256,uint256[] memory)"
                                  }
                                },
                                "src": "7309:300:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 7953,
                              "nodeType": "ExpressionStatement",
                              "src": "7309:300:32"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7901,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7898,
                            "name": "drawIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7895,
                            "src": "6941:9:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 7899,
                              "name": "_draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7844,
                              "src": "6953:6:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            "id": 7900,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "6953:13:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "6941:25:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7955,
                        "initializationExpression": {
                          "assignments": [
                            7895
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7895,
                              "mutability": "mutable",
                              "name": "drawIndex",
                              "nameLocation": "6926:9:32",
                              "nodeType": "VariableDeclaration",
                              "scope": 7955,
                              "src": "6919:16:32",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "typeName": {
                                "id": 7894,
                                "name": "uint32",
                                "nodeType": "ElementaryTypeName",
                                "src": "6919:6:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7897,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 7896,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "6938:1:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "6919:20:32"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7903,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "6968:11:32",
                            "subExpression": {
                              "id": 7902,
                              "name": "drawIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7895,
                              "src": "6968:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 7904,
                          "nodeType": "ExpressionStatement",
                          "src": "6968:11:32"
                        },
                        "nodeType": "ForStatement",
                        "src": "6914:706:32"
                      },
                      {
                        "expression": {
                          "id": 7961,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7956,
                            "name": "prizeCounts",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7858,
                            "src": "7630:11:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 7959,
                                "name": "_prizeCounts",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7877,
                                "src": "7655:12:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory[] memory"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory[] memory"
                                }
                              ],
                              "expression": {
                                "id": 7957,
                                "name": "abi",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -1,
                                "src": "7644:3:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_abi",
                                  "typeString": "abi"
                                }
                              },
                              "id": 7958,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "encode",
                              "nodeType": "MemberAccess",
                              "src": "7644:10:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                "typeString": "function () pure returns (bytes memory)"
                              }
                            },
                            "id": 7960,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "7644:24:32",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes memory"
                            }
                          },
                          "src": "7630:38:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "id": 7962,
                        "nodeType": "ExpressionStatement",
                        "src": "7630:38:32"
                      },
                      {
                        "expression": {
                          "id": 7965,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7963,
                            "name": "prizesAwardable",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7856,
                            "src": "7678:15:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 7964,
                            "name": "_prizesAwardable",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7864,
                            "src": "7696:16:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "src": "7678:34:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "id": 7966,
                        "nodeType": "ExpressionStatement",
                        "src": "7678:34:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7835,
                    "nodeType": "StructuredDocumentation",
                    "src": "5758:467:32",
                    "text": " @notice Calculates the prizes awardable for each Draw passed.\n @param _normalizedUserBalances Fractions representing the user's portion of the liquidity for each draw.\n @param _userRandomNumber       Random number of the user to consider over draws\n @param _draws                  List of Draws\n @param _pickIndicesForDraws    Pick indices for each Draw\n @param _prizeDistributions     PrizeDistribution for each Draw"
                  },
                  "id": 7968,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculatePrizesAwardable",
                  "nameLocation": "6239:25:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7853,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7838,
                        "mutability": "mutable",
                        "name": "_normalizedUserBalances",
                        "nameLocation": "6291:23:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7968,
                        "src": "6274:40:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7836,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "6274:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7837,
                          "nodeType": "ArrayTypeName",
                          "src": "6274:9:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7840,
                        "mutability": "mutable",
                        "name": "_userRandomNumber",
                        "nameLocation": "6332:17:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7968,
                        "src": "6324:25:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 7839,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6324:7:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7844,
                        "mutability": "mutable",
                        "name": "_draws",
                        "nameLocation": "6385:6:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7968,
                        "src": "6359:32:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7842,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 7841,
                              "name": "IDrawBeacon.Draw",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11085,
                              "src": "6359:16:32"
                            },
                            "referencedDeclaration": 11085,
                            "src": "6359:16:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            }
                          },
                          "id": 7843,
                          "nodeType": "ArrayTypeName",
                          "src": "6359:18:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$dyn_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7848,
                        "mutability": "mutable",
                        "name": "_pickIndicesForDraws",
                        "nameLocation": "6419:20:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7968,
                        "src": "6401:38:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                          "typeString": "uint64[][]"
                        },
                        "typeName": {
                          "baseType": {
                            "baseType": {
                              "id": 7845,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "6401:6:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "id": 7846,
                            "nodeType": "ArrayTypeName",
                            "src": "6401:8:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                              "typeString": "uint64[]"
                            }
                          },
                          "id": 7847,
                          "nodeType": "ArrayTypeName",
                          "src": "6401:10:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_storage_$dyn_storage_ptr",
                            "typeString": "uint64[][]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7852,
                        "mutability": "mutable",
                        "name": "_prizeDistributions",
                        "nameLocation": "6501:19:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7968,
                        "src": "6449:71:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7850,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 7849,
                              "name": "IPrizeDistributionSource.PrizeDistribution",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11491,
                              "src": "6449:42:32"
                            },
                            "referencedDeclaration": 11491,
                            "src": "6449:42:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                            }
                          },
                          "id": 7851,
                          "nodeType": "ArrayTypeName",
                          "src": "6449:44:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6264:262:32"
                  },
                  "returnParameters": {
                    "id": 7859,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7856,
                        "mutability": "mutable",
                        "name": "prizesAwardable",
                        "nameLocation": "6567:15:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7968,
                        "src": "6550:32:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7854,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "6550:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7855,
                          "nodeType": "ArrayTypeName",
                          "src": "6550:9:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7858,
                        "mutability": "mutable",
                        "name": "prizeCounts",
                        "nameLocation": "6597:11:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7968,
                        "src": "6584:24:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 7857,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "6584:5:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6549:60:32"
                  },
                  "scope": 8610,
                  "src": "6230:1489:32",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7990,
                    "nodeType": "Block",
                    "src": "8372:101:32",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 7987,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "components": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 7984,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 7981,
                                      "name": "_normalizedUserBalance",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7974,
                                      "src": "8397:22:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "*",
                                    "rightExpression": {
                                      "expression": {
                                        "id": 7982,
                                        "name": "_prizeDistribution",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7972,
                                        "src": "8422:18:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                        }
                                      },
                                      "id": 7983,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "numberOfPicks",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 11484,
                                      "src": "8422:32:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint104",
                                        "typeString": "uint104"
                                      }
                                    },
                                    "src": "8397:57:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "id": 7985,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "8396:59:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "/",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 7986,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "8458:7:32",
                                "subdenomination": "ether",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1000000000000000000_by_1",
                                  "typeString": "int_const 1000000000000000000"
                                },
                                "value": "1"
                              },
                              "src": "8396:69:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7980,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "8389:6:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint64_$",
                              "typeString": "type(uint64)"
                            },
                            "typeName": {
                              "id": 7979,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "8389:6:32",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 7988,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8389:77:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 7978,
                        "id": 7989,
                        "nodeType": "Return",
                        "src": "8382:84:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7969,
                    "nodeType": "StructuredDocumentation",
                    "src": "7725:450:32",
                    "text": " @notice Calculates the number of picks a user gets for a Draw, considering the normalized user balance and the PrizeDistribution.\n @dev Divided by 1e18 since the normalized user balance is stored as a fixed point 18 number\n @param _prizeDistribution The PrizeDistribution to consider\n @param _normalizedUserBalance The normalized user balances to consider\n @return The number of picks a user gets for a Draw"
                  },
                  "id": 7991,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculateNumberOfUserPicks",
                  "nameLocation": "8189:27:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7975,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7972,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "8276:18:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7991,
                        "src": "8226:68:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 7971,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7970,
                            "name": "IPrizeDistributionSource.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "8226:42:32"
                          },
                          "referencedDeclaration": 11491,
                          "src": "8226:42:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7974,
                        "mutability": "mutable",
                        "name": "_normalizedUserBalance",
                        "nameLocation": "8312:22:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 7991,
                        "src": "8304:30:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7973,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8304:7:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8216:124:32"
                  },
                  "returnParameters": {
                    "id": 7978,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7977,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7991,
                        "src": "8364:6:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 7976,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "8364:6:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8363:8:32"
                  },
                  "scope": 8610,
                  "src": "8180:293:32",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8153,
                    "nodeType": "Block",
                    "src": "9056:1472:32",
                    "statements": [
                      {
                        "assignments": [
                          8009
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8009,
                            "mutability": "mutable",
                            "name": "drawsLength",
                            "nameLocation": "9074:11:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8153,
                            "src": "9066:19:32",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 8008,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "9066:7:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8012,
                        "initialValue": {
                          "expression": {
                            "id": 8010,
                            "name": "_draws",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7998,
                            "src": "9088:6:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                            }
                          },
                          "id": 8011,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "9088:13:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9066:35:32"
                      },
                      {
                        "assignments": [
                          8017
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8017,
                            "mutability": "mutable",
                            "name": "_timestampsWithStartCutoffTimes",
                            "nameLocation": "9127:31:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8153,
                            "src": "9111:47:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                              "typeString": "uint64[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8015,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "9111:6:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 8016,
                              "nodeType": "ArrayTypeName",
                              "src": "9111:8:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8023,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 8021,
                              "name": "drawsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8009,
                              "src": "9174:11:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 8020,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "9161:12:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint64_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint64[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8018,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "9165:6:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 8019,
                              "nodeType": "ArrayTypeName",
                              "src": "9165:8:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            }
                          },
                          "id": 8022,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9161:25:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                            "typeString": "uint64[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9111:75:32"
                      },
                      {
                        "assignments": [
                          8028
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8028,
                            "mutability": "mutable",
                            "name": "_timestampsWithEndCutoffTimes",
                            "nameLocation": "9212:29:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8153,
                            "src": "9196:45:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                              "typeString": "uint64[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8026,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "9196:6:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 8027,
                              "nodeType": "ArrayTypeName",
                              "src": "9196:8:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8034,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 8032,
                              "name": "drawsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8009,
                              "src": "9257:11:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 8031,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "9244:12:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint64_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint64[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8029,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "9248:6:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 8030,
                              "nodeType": "ArrayTypeName",
                              "src": "9248:8:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            }
                          },
                          "id": 8033,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9244:25:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                            "typeString": "uint64[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9196:73:32"
                      },
                      {
                        "body": {
                          "id": 8074,
                          "nodeType": "Block",
                          "src": "9386:325:32",
                          "statements": [
                            {
                              "id": 8073,
                              "nodeType": "UncheckedBlock",
                              "src": "9400:301:32",
                              "statements": [
                                {
                                  "expression": {
                                    "id": 8057,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftHandSide": {
                                      "baseExpression": {
                                        "id": 8045,
                                        "name": "_timestampsWithStartCutoffTimes",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8017,
                                        "src": "9428:31:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory"
                                        }
                                      },
                                      "id": 8047,
                                      "indexExpression": {
                                        "id": 8046,
                                        "name": "i",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8036,
                                        "src": "9460:1:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "9428:34:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "Assignment",
                                    "operator": "=",
                                    "rightHandSide": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      },
                                      "id": 8056,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 8048,
                                            "name": "_draws",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7998,
                                            "src": "9485:6:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                            }
                                          },
                                          "id": 8050,
                                          "indexExpression": {
                                            "id": 8049,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 8036,
                                            "src": "9492:1:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "9485:9:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory"
                                          }
                                        },
                                        "id": 8051,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "timestamp",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11080,
                                        "src": "9485:19:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint64",
                                          "typeString": "uint64"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 8052,
                                            "name": "_prizeDistributions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 8002,
                                            "src": "9507:19:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                            }
                                          },
                                          "id": 8054,
                                          "indexExpression": {
                                            "id": 8053,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 8036,
                                            "src": "9527:1:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "9507:22:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                          }
                                        },
                                        "id": 8055,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "startTimestampOffset",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11476,
                                        "src": "9507:43:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "src": "9485:65:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "src": "9428:122:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    }
                                  },
                                  "id": 8058,
                                  "nodeType": "ExpressionStatement",
                                  "src": "9428:122:32"
                                },
                                {
                                  "expression": {
                                    "id": 8071,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftHandSide": {
                                      "baseExpression": {
                                        "id": 8059,
                                        "name": "_timestampsWithEndCutoffTimes",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8028,
                                        "src": "9568:29:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory"
                                        }
                                      },
                                      "id": 8061,
                                      "indexExpression": {
                                        "id": 8060,
                                        "name": "i",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8036,
                                        "src": "9598:1:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "9568:32:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "Assignment",
                                    "operator": "=",
                                    "rightHandSide": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      },
                                      "id": 8070,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 8062,
                                            "name": "_draws",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7998,
                                            "src": "9623:6:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                            }
                                          },
                                          "id": 8064,
                                          "indexExpression": {
                                            "id": 8063,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 8036,
                                            "src": "9630:1:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "9623:9:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory"
                                          }
                                        },
                                        "id": 8065,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "timestamp",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11080,
                                        "src": "9623:19:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint64",
                                          "typeString": "uint64"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 8066,
                                            "name": "_prizeDistributions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 8002,
                                            "src": "9645:19:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                            }
                                          },
                                          "id": 8068,
                                          "indexExpression": {
                                            "id": 8067,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 8036,
                                            "src": "9665:1:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "9645:22:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                          }
                                        },
                                        "id": 8069,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "endTimestampOffset",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11478,
                                        "src": "9645:41:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "src": "9623:63:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "src": "9568:118:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    }
                                  },
                                  "id": 8072,
                                  "nodeType": "ExpressionStatement",
                                  "src": "9568:118:32"
                                }
                              ]
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 8041,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8039,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8036,
                            "src": "9364:1:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 8040,
                            "name": "drawsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8009,
                            "src": "9368:11:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "9364:15:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8075,
                        "initializationExpression": {
                          "assignments": [
                            8036
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 8036,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "9357:1:32",
                              "nodeType": "VariableDeclaration",
                              "scope": 8075,
                              "src": "9350:8:32",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "typeName": {
                                "id": 8035,
                                "name": "uint32",
                                "nodeType": "ElementaryTypeName",
                                "src": "9350:6:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 8038,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 8037,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "9361:1:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "9350:12:32"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 8043,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "9381:3:32",
                            "subExpression": {
                              "id": 8042,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8036,
                              "src": "9381:1:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 8044,
                          "nodeType": "ExpressionStatement",
                          "src": "9381:3:32"
                        },
                        "nodeType": "ForStatement",
                        "src": "9345:366:32"
                      },
                      {
                        "assignments": [
                          8080
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8080,
                            "mutability": "mutable",
                            "name": "balances",
                            "nameLocation": "9738:8:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8153,
                            "src": "9721:25:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8078,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "9721:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8079,
                              "nodeType": "ArrayTypeName",
                              "src": "9721:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8087,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 8083,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7994,
                              "src": "9795:5:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 8084,
                              "name": "_timestampsWithStartCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8017,
                              "src": "9814:31:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            },
                            {
                              "id": 8085,
                              "name": "_timestampsWithEndCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8028,
                              "src": "9859:29:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            ],
                            "expression": {
                              "id": 8081,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7584,
                              "src": "9749:6:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 8082,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getAverageBalancesBetween",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12181,
                            "src": "9749:32:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$_t_array$_t_uint64_$dyn_memory_ptr_$_t_array$_t_uint64_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (address,uint64[] memory,uint64[] memory) view external returns (uint256[] memory)"
                            }
                          },
                          "id": 8086,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9749:149:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9721:177:32"
                      },
                      {
                        "assignments": [
                          8092
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8092,
                            "mutability": "mutable",
                            "name": "totalSupplies",
                            "nameLocation": "9926:13:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8153,
                            "src": "9909:30:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8090,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "9909:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8091,
                              "nodeType": "ArrayTypeName",
                              "src": "9909:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8098,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 8095,
                              "name": "_timestampsWithStartCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8017,
                              "src": "9993:31:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            },
                            {
                              "id": 8096,
                              "name": "_timestampsWithEndCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8028,
                              "src": "10038:29:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            ],
                            "expression": {
                              "id": 8093,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7584,
                              "src": "9942:6:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 8094,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getAverageTotalSuppliesBetween",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12212,
                            "src": "9942:37:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint64_$dyn_memory_ptr_$_t_array$_t_uint64_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint64[] memory,uint64[] memory) view external returns (uint256[] memory)"
                            }
                          },
                          "id": 8097,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9942:135:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9909:168:32"
                      },
                      {
                        "assignments": [
                          8103
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8103,
                            "mutability": "mutable",
                            "name": "normalizedBalances",
                            "nameLocation": "10105:18:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8153,
                            "src": "10088:35:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8101,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "10088:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8102,
                              "nodeType": "ArrayTypeName",
                              "src": "10088:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8109,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 8107,
                              "name": "drawsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8009,
                              "src": "10140:11:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 8106,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "10126:13:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8104,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "10130:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8105,
                              "nodeType": "ArrayTypeName",
                              "src": "10130:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 8108,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10126:26:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10088:64:32"
                      },
                      {
                        "body": {
                          "id": 8149,
                          "nodeType": "Block",
                          "src": "10262:224:32",
                          "statements": [
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 8124,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "baseExpression": {
                                    "id": 8120,
                                    "name": "totalSupplies",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8092,
                                    "src": "10279:13:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 8122,
                                  "indexExpression": {
                                    "id": 8121,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8111,
                                    "src": "10293:1:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "10279:16:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 8123,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "10299:1:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "10279:21:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 8147,
                                "nodeType": "Block",
                                "src": "10377:99:32",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 8145,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 8132,
                                          "name": "normalizedBalances",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 8103,
                                          "src": "10395:18:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                            "typeString": "uint256[] memory"
                                          }
                                        },
                                        "id": 8134,
                                        "indexExpression": {
                                          "id": 8133,
                                          "name": "i",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 8111,
                                          "src": "10414:1:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "10395:21:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 8144,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "components": [
                                            {
                                              "commonType": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              },
                                              "id": 8139,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "baseExpression": {
                                                  "id": 8135,
                                                  "name": "balances",
                                                  "nodeType": "Identifier",
                                                  "overloadedDeclarations": [],
                                                  "referencedDeclaration": 8080,
                                                  "src": "10420:8:32",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                                    "typeString": "uint256[] memory"
                                                  }
                                                },
                                                "id": 8137,
                                                "indexExpression": {
                                                  "id": 8136,
                                                  "name": "i",
                                                  "nodeType": "Identifier",
                                                  "overloadedDeclarations": [],
                                                  "referencedDeclaration": 8111,
                                                  "src": "10429:1:32",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_uint256",
                                                    "typeString": "uint256"
                                                  }
                                                },
                                                "isConstant": false,
                                                "isLValue": true,
                                                "isPure": false,
                                                "lValueRequested": false,
                                                "nodeType": "IndexAccess",
                                                "src": "10420:11:32",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "*",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 8138,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "10434:7:32",
                                                "subdenomination": "ether",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1000000000000000000_by_1",
                                                  "typeString": "int_const 1000000000000000000"
                                                },
                                                "value": "1"
                                              },
                                              "src": "10420:21:32",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            }
                                          ],
                                          "id": 8140,
                                          "isConstant": false,
                                          "isInlineArray": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "TupleExpression",
                                          "src": "10419:23:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "/",
                                        "rightExpression": {
                                          "baseExpression": {
                                            "id": 8141,
                                            "name": "totalSupplies",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 8092,
                                            "src": "10445:13:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                              "typeString": "uint256[] memory"
                                            }
                                          },
                                          "id": 8143,
                                          "indexExpression": {
                                            "id": 8142,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 8111,
                                            "src": "10459:1:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "10445:16:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "10419:42:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "10395:66:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 8146,
                                    "nodeType": "ExpressionStatement",
                                    "src": "10395:66:32"
                                  }
                                ]
                              },
                              "id": 8148,
                              "nodeType": "IfStatement",
                              "src": "10276:200:32",
                              "trueBody": {
                                "id": 8131,
                                "nodeType": "Block",
                                "src": "10301:58:32",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 8129,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 8125,
                                          "name": "normalizedBalances",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 8103,
                                          "src": "10319:18:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                            "typeString": "uint256[] memory"
                                          }
                                        },
                                        "id": 8127,
                                        "indexExpression": {
                                          "id": 8126,
                                          "name": "i",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 8111,
                                          "src": "10338:1:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "10319:21:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "hexValue": "30",
                                        "id": 8128,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "10343:1:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        },
                                        "value": "0"
                                      },
                                      "src": "10319:25:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 8130,
                                    "nodeType": "ExpressionStatement",
                                    "src": "10319:25:32"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 8116,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8114,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8111,
                            "src": "10240:1:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 8115,
                            "name": "drawsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8009,
                            "src": "10244:11:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "10240:15:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8150,
                        "initializationExpression": {
                          "assignments": [
                            8111
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 8111,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "10233:1:32",
                              "nodeType": "VariableDeclaration",
                              "scope": 8150,
                              "src": "10225:9:32",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 8110,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "10225:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 8113,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 8112,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "10237:1:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "10225:13:32"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 8118,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "10257:3:32",
                            "subExpression": {
                              "id": 8117,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8111,
                              "src": "10257:1:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8119,
                          "nodeType": "ExpressionStatement",
                          "src": "10257:3:32"
                        },
                        "nodeType": "ForStatement",
                        "src": "10220:266:32"
                      },
                      {
                        "expression": {
                          "id": 8151,
                          "name": "normalizedBalances",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8103,
                          "src": "10503:18:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 8007,
                        "id": 8152,
                        "nodeType": "Return",
                        "src": "10496:25:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7992,
                    "nodeType": "StructuredDocumentation",
                    "src": "8479:345:32",
                    "text": " @notice Calculates the normalized balance of a user against the total supply for timestamps\n @param _user The user to consider\n @param _draws The draws we are looking at\n @param _prizeDistributions The prize tiers to consider (needed for draw timestamp offsets)\n @return An array of normalized balances"
                  },
                  "id": 8154,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getNormalizedBalancesAt",
                  "nameLocation": "8838:24:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8003,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7994,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "8880:5:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8154,
                        "src": "8872:13:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7993,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8872:7:32",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7998,
                        "mutability": "mutable",
                        "name": "_draws",
                        "nameLocation": "8921:6:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8154,
                        "src": "8895:32:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7996,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 7995,
                              "name": "IDrawBeacon.Draw",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11085,
                              "src": "8895:16:32"
                            },
                            "referencedDeclaration": 11085,
                            "src": "8895:16:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            }
                          },
                          "id": 7997,
                          "nodeType": "ArrayTypeName",
                          "src": "8895:18:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$dyn_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8002,
                        "mutability": "mutable",
                        "name": "_prizeDistributions",
                        "nameLocation": "8989:19:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8154,
                        "src": "8937:71:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8000,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 7999,
                              "name": "IPrizeDistributionSource.PrizeDistribution",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11491,
                              "src": "8937:42:32"
                            },
                            "referencedDeclaration": 11491,
                            "src": "8937:42:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                            }
                          },
                          "id": 8001,
                          "nodeType": "ArrayTypeName",
                          "src": "8937:44:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8862:152:32"
                  },
                  "returnParameters": {
                    "id": 8007,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8006,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8154,
                        "src": "9038:16:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8004,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "9038:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8005,
                          "nodeType": "ArrayTypeName",
                          "src": "9038:9:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9037:18:32"
                  },
                  "scope": 8610,
                  "src": "8829:1699:32",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8355,
                    "nodeType": "Block",
                    "src": "11332:2388:32",
                    "statements": [
                      {
                        "assignments": [
                          8179
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8179,
                            "mutability": "mutable",
                            "name": "masks",
                            "nameLocation": "11413:5:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8355,
                            "src": "11396:22:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8177,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "11396:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8178,
                              "nodeType": "ArrayTypeName",
                              "src": "11396:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8183,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 8181,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8167,
                              "src": "11437:18:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            ],
                            "id": 8180,
                            "name": "_createBitMasks",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8493,
                            "src": "11421:15:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11491_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory) pure returns (uint256[] memory)"
                            }
                          },
                          "id": 8182,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11421:35:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11396:60:32"
                      },
                      {
                        "assignments": [
                          8185
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8185,
                            "mutability": "mutable",
                            "name": "picksLength",
                            "nameLocation": "11473:11:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8355,
                            "src": "11466:18:32",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 8184,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "11466:6:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8191,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 8188,
                                "name": "_picks",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8164,
                                "src": "11494:6:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                  "typeString": "uint64[] memory"
                                }
                              },
                              "id": 8189,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "11494:13:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 8187,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "11487:6:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 8186,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "11487:6:32",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 8190,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11487:21:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11466:42:32"
                      },
                      {
                        "assignments": [
                          8196
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8196,
                            "mutability": "mutable",
                            "name": "_prizeCounts",
                            "nameLocation": "11535:12:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8355,
                            "src": "11518:29:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8194,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "11518:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8195,
                              "nodeType": "ArrayTypeName",
                              "src": "11518:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8204,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 8200,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8167,
                                  "src": "11564:18:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                  }
                                },
                                "id": 8201,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "tiers",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11488,
                                "src": "11564:24:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint32_$16_memory_ptr",
                                  "typeString": "uint32[16] memory"
                                }
                              },
                              "id": 8202,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "11564:31:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 8199,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "11550:13:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8197,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "11554:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8198,
                              "nodeType": "ArrayTypeName",
                              "src": "11554:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 8203,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11550:46:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11518:78:32"
                      },
                      {
                        "assignments": [
                          8206
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8206,
                            "mutability": "mutable",
                            "name": "maxWinningTierIndex",
                            "nameLocation": "11613:19:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8355,
                            "src": "11607:25:32",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 8205,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "11607:5:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8208,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 8207,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "11635:1:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11607:29:32"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 8213,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 8210,
                                "name": "picksLength",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8185,
                                "src": "11668:11:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "id": 8211,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8167,
                                  "src": "11683:18:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                  }
                                },
                                "id": 8212,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "maxPicksPerUser",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11480,
                                "src": "11683:34:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "11668:49:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f657863656564732d6d61782d757365722d7069636b73",
                              "id": 8214,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "11731:33:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81",
                                "typeString": "literal_string \"DrawCalc/exceeds-max-user-picks\""
                              },
                              "value": "DrawCalc/exceeds-max-user-picks"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81",
                                "typeString": "literal_string \"DrawCalc/exceeds-max-user-picks\""
                              }
                            ],
                            "id": 8209,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "11647:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 8215,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11647:127:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8216,
                        "nodeType": "ExpressionStatement",
                        "src": "11647:127:32"
                      },
                      {
                        "body": {
                          "id": 8296,
                          "nodeType": "Block",
                          "src": "11936:884:32",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 8232,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "baseExpression": {
                                        "id": 8228,
                                        "name": "_picks",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8164,
                                        "src": "11958:6:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory"
                                        }
                                      },
                                      "id": 8230,
                                      "indexExpression": {
                                        "id": 8229,
                                        "name": "index",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8218,
                                        "src": "11965:5:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "11958:13:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "<",
                                    "rightExpression": {
                                      "id": 8231,
                                      "name": "_totalUserPicks",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8159,
                                      "src": "11974:15:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "11958:31:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e73756666696369656e742d757365722d7069636b73",
                                    "id": 8233,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "11991:34:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db",
                                      "typeString": "literal_string \"DrawCalc/insufficient-user-picks\""
                                    },
                                    "value": "DrawCalc/insufficient-user-picks"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    {
                                      "typeIdentifier": "t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db",
                                      "typeString": "literal_string \"DrawCalc/insufficient-user-picks\""
                                    }
                                  ],
                                  "id": 8227,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "11950:7:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 8234,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11950:76:32",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 8235,
                              "nodeType": "ExpressionStatement",
                              "src": "11950:76:32"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 8238,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 8236,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8218,
                                  "src": "12045:5:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 8237,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "12053:1:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "12045:9:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 8253,
                              "nodeType": "IfStatement",
                              "src": "12041:118:32",
                              "trueBody": {
                                "id": 8252,
                                "nodeType": "Block",
                                "src": "12056:103:32",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "commonType": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          },
                                          "id": 8248,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "baseExpression": {
                                              "id": 8240,
                                              "name": "_picks",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 8164,
                                              "src": "12082:6:32",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                                "typeString": "uint64[] memory"
                                              }
                                            },
                                            "id": 8242,
                                            "indexExpression": {
                                              "id": 8241,
                                              "name": "index",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 8218,
                                              "src": "12089:5:32",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "12082:13:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": ">",
                                          "rightExpression": {
                                            "baseExpression": {
                                              "id": 8243,
                                              "name": "_picks",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 8164,
                                              "src": "12098:6:32",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                                "typeString": "uint64[] memory"
                                              }
                                            },
                                            "id": 8247,
                                            "indexExpression": {
                                              "commonType": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              },
                                              "id": 8246,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "id": 8244,
                                                "name": "index",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 8218,
                                                "src": "12105:5:32",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint32",
                                                  "typeString": "uint32"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "-",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 8245,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "12113:1:32",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1_by_1",
                                                  "typeString": "int_const 1"
                                                },
                                                "value": "1"
                                              },
                                              "src": "12105:9:32",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "12098:17:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          },
                                          "src": "12082:33:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_bool",
                                            "typeString": "bool"
                                          }
                                        },
                                        {
                                          "hexValue": "4472617743616c632f7069636b732d617363656e64696e67",
                                          "id": 8249,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "string",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "12117:26:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3",
                                            "typeString": "literal_string \"DrawCalc/picks-ascending\""
                                          },
                                          "value": "DrawCalc/picks-ascending"
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_bool",
                                            "typeString": "bool"
                                          },
                                          {
                                            "typeIdentifier": "t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3",
                                            "typeString": "literal_string \"DrawCalc/picks-ascending\""
                                          }
                                        ],
                                        "id": 8239,
                                        "name": "require",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [
                                          -18,
                                          -18
                                        ],
                                        "referencedDeclaration": -18,
                                        "src": "12074:7:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                          "typeString": "function (bool,string memory) pure"
                                        }
                                      },
                                      "id": 8250,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "12074:70:32",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 8251,
                                    "nodeType": "ExpressionStatement",
                                    "src": "12074:70:32"
                                  }
                                ]
                              }
                            },
                            {
                              "assignments": [
                                8255
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 8255,
                                  "mutability": "mutable",
                                  "name": "randomNumberThisPick",
                                  "nameLocation": "12244:20:32",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 8296,
                                  "src": "12236:28:32",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 8254,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "12236:7:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 8268,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "id": 8261,
                                            "name": "_userRandomNumber",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 8161,
                                            "src": "12313:17:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_bytes32",
                                              "typeString": "bytes32"
                                            }
                                          },
                                          {
                                            "baseExpression": {
                                              "id": 8262,
                                              "name": "_picks",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 8164,
                                              "src": "12332:6:32",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                                "typeString": "uint64[] memory"
                                              }
                                            },
                                            "id": 8264,
                                            "indexExpression": {
                                              "id": 8263,
                                              "name": "index",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 8218,
                                              "src": "12339:5:32",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "12332:13:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_bytes32",
                                              "typeString": "bytes32"
                                            },
                                            {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          ],
                                          "expression": {
                                            "id": 8259,
                                            "name": "abi",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": -1,
                                            "src": "12302:3:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_magic_abi",
                                              "typeString": "abi"
                                            }
                                          },
                                          "id": 8260,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "memberName": "encode",
                                          "nodeType": "MemberAccess",
                                          "src": "12302:10:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                            "typeString": "function () pure returns (bytes memory)"
                                          }
                                        },
                                        "id": 8265,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "12302:44:32",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes memory"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes memory"
                                        }
                                      ],
                                      "id": 8258,
                                      "name": "keccak256",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -8,
                                      "src": "12292:9:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                                        "typeString": "function (bytes memory) pure returns (bytes32)"
                                      }
                                    },
                                    "id": 8266,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "12292:55:32",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  ],
                                  "id": 8257,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "12267:7:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  },
                                  "typeName": {
                                    "id": 8256,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "12267:7:32",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 8267,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "12267:94:32",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "12236:125:32"
                            },
                            {
                              "assignments": [
                                8270
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 8270,
                                  "mutability": "mutable",
                                  "name": "tiersIndex",
                                  "nameLocation": "12382:10:32",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 8296,
                                  "src": "12376:16:32",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  },
                                  "typeName": {
                                    "id": 8269,
                                    "name": "uint8",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "12376:5:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 8276,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "id": 8272,
                                    "name": "randomNumberThisPick",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8255,
                                    "src": "12432:20:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  {
                                    "id": 8273,
                                    "name": "_winningRandomNumber",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8157,
                                    "src": "12470:20:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  {
                                    "id": 8274,
                                    "name": "masks",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8179,
                                    "src": "12508:5:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  ],
                                  "id": 8271,
                                  "name": "_calculateTierIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8430,
                                  "src": "12395:19:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$_t_uint8_$",
                                    "typeString": "function (uint256,uint256,uint256[] memory) pure returns (uint8)"
                                  }
                                },
                                "id": 8275,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "12395:132:32",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "12376:151:32"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                },
                                "id": 8279,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 8277,
                                  "name": "tiersIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8270,
                                  "src": "12596:10:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<",
                                "rightExpression": {
                                  "id": 8278,
                                  "name": "TIERS_LENGTH",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7592,
                                  "src": "12609:12:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "src": "12596:25:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 8295,
                              "nodeType": "IfStatement",
                              "src": "12592:218:32",
                              "trueBody": {
                                "id": 8294,
                                "nodeType": "Block",
                                "src": "12623:187:32",
                                "statements": [
                                  {
                                    "condition": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      },
                                      "id": 8282,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 8280,
                                        "name": "tiersIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8270,
                                        "src": "12645:10:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": ">",
                                      "rightExpression": {
                                        "id": 8281,
                                        "name": "maxWinningTierIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8206,
                                        "src": "12658:19:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "src": "12645:32:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "id": 8288,
                                    "nodeType": "IfStatement",
                                    "src": "12641:111:32",
                                    "trueBody": {
                                      "id": 8287,
                                      "nodeType": "Block",
                                      "src": "12679:73:32",
                                      "statements": [
                                        {
                                          "expression": {
                                            "id": 8285,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftHandSide": {
                                              "id": 8283,
                                              "name": "maxWinningTierIndex",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 8206,
                                              "src": "12701:19:32",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "nodeType": "Assignment",
                                            "operator": "=",
                                            "rightHandSide": {
                                              "id": 8284,
                                              "name": "tiersIndex",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 8270,
                                              "src": "12723:10:32",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "src": "12701:32:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint8",
                                              "typeString": "uint8"
                                            }
                                          },
                                          "id": 8286,
                                          "nodeType": "ExpressionStatement",
                                          "src": "12701:32:32"
                                        }
                                      ]
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 8292,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "UnaryOperation",
                                      "operator": "++",
                                      "prefix": false,
                                      "src": "12769:26:32",
                                      "subExpression": {
                                        "baseExpression": {
                                          "id": 8289,
                                          "name": "_prizeCounts",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 8196,
                                          "src": "12769:12:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                            "typeString": "uint256[] memory"
                                          }
                                        },
                                        "id": 8291,
                                        "indexExpression": {
                                          "id": 8290,
                                          "name": "tiersIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 8270,
                                          "src": "12782:10:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "12769:24:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 8293,
                                    "nodeType": "ExpressionStatement",
                                    "src": "12769:26:32"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 8223,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8221,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8218,
                            "src": "11906:5:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 8222,
                            "name": "picksLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8185,
                            "src": "11914:11:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "11906:19:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8297,
                        "initializationExpression": {
                          "assignments": [
                            8218
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 8218,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "11895:5:32",
                              "nodeType": "VariableDeclaration",
                              "scope": 8297,
                              "src": "11888:12:32",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "typeName": {
                                "id": 8217,
                                "name": "uint32",
                                "nodeType": "ElementaryTypeName",
                                "src": "11888:6:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 8220,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 8219,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "11903:1:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "11888:16:32"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 8225,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "11927:7:32",
                            "subExpression": {
                              "id": 8224,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8218,
                              "src": "11927:5:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 8226,
                          "nodeType": "ExpressionStatement",
                          "src": "11927:7:32"
                        },
                        "nodeType": "ForStatement",
                        "src": "11883:937:32"
                      },
                      {
                        "assignments": [
                          8299
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8299,
                            "mutability": "mutable",
                            "name": "prizeFraction",
                            "nameLocation": "12895:13:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8355,
                            "src": "12887:21:32",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 8298,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "12887:7:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8301,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 8300,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "12911:1:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12887:25:32"
                      },
                      {
                        "assignments": [
                          8306
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8306,
                            "mutability": "mutable",
                            "name": "prizeTiersFractions",
                            "nameLocation": "12939:19:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8355,
                            "src": "12922:36:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8304,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "12922:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8305,
                              "nodeType": "ArrayTypeName",
                              "src": "12922:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8311,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 8308,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8167,
                              "src": "13003:18:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            },
                            {
                              "id": 8309,
                              "name": "maxWinningTierIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8206,
                              "src": "13035:19:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 8307,
                            "name": "_calculatePrizeTierFractions",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8573,
                            "src": "12961:28:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11491_memory_ptr_$_t_uint8_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory,uint8) pure returns (uint256[] memory)"
                            }
                          },
                          "id": 8310,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12961:103:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12922:142:32"
                      },
                      {
                        "body": {
                          "id": 8339,
                          "nodeType": "Block",
                          "src": "13283:221:32",
                          "statements": [
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 8326,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "baseExpression": {
                                    "id": 8322,
                                    "name": "_prizeCounts",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8196,
                                    "src": "13301:12:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 8324,
                                  "indexExpression": {
                                    "id": 8323,
                                    "name": "prizeCountIndex",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8313,
                                    "src": "13314:15:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "13301:29:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 8325,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "13333:1:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "13301:33:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 8338,
                              "nodeType": "IfStatement",
                              "src": "13297:197:32",
                              "trueBody": {
                                "id": 8337,
                                "nodeType": "Block",
                                "src": "13336:158:32",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 8335,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 8327,
                                        "name": "prizeFraction",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8299,
                                        "src": "13354:13:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "+=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 8334,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "baseExpression": {
                                            "id": 8328,
                                            "name": "prizeTiersFractions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 8306,
                                            "src": "13391:19:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                              "typeString": "uint256[] memory"
                                            }
                                          },
                                          "id": 8330,
                                          "indexExpression": {
                                            "id": 8329,
                                            "name": "prizeCountIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 8313,
                                            "src": "13411:15:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "13391:36:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "*",
                                        "rightExpression": {
                                          "baseExpression": {
                                            "id": 8331,
                                            "name": "_prizeCounts",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 8196,
                                            "src": "13450:12:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                              "typeString": "uint256[] memory"
                                            }
                                          },
                                          "id": 8333,
                                          "indexExpression": {
                                            "id": 8332,
                                            "name": "prizeCountIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 8313,
                                            "src": "13463:15:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "13450:29:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "13391:88:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "13354:125:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 8336,
                                    "nodeType": "ExpressionStatement",
                                    "src": "13354:125:32"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 8318,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8316,
                            "name": "prizeCountIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8313,
                            "src": "13203:15:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 8317,
                            "name": "maxWinningTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8206,
                            "src": "13222:19:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "13203:38:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8340,
                        "initializationExpression": {
                          "assignments": [
                            8313
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 8313,
                              "mutability": "mutable",
                              "name": "prizeCountIndex",
                              "nameLocation": "13170:15:32",
                              "nodeType": "VariableDeclaration",
                              "scope": 8340,
                              "src": "13162:23:32",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 8312,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "13162:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 8315,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 8314,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "13188:1:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "13162:27:32"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 8320,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "13255:17:32",
                            "subExpression": {
                              "id": 8319,
                              "name": "prizeCountIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8313,
                              "src": "13255:15:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8321,
                          "nodeType": "ExpressionStatement",
                          "src": "13255:17:32"
                        },
                        "nodeType": "ForStatement",
                        "src": "13144:360:32"
                      },
                      {
                        "expression": {
                          "id": 8349,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 8341,
                            "name": "prize",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8170,
                            "src": "13621:5:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 8348,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "components": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 8345,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 8342,
                                    "name": "prizeFraction",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8299,
                                    "src": "13630:13:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "*",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 8343,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8167,
                                      "src": "13646:18:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    },
                                    "id": 8344,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "prize",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11490,
                                    "src": "13646:24:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "13630:40:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 8346,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "13629:42:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "/",
                            "rightExpression": {
                              "hexValue": "316539",
                              "id": 8347,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "13674:3:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1000000000_by_1",
                                "typeString": "int_const 1000000000"
                              },
                              "value": "1e9"
                            },
                            "src": "13629:48:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "13621:56:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 8350,
                        "nodeType": "ExpressionStatement",
                        "src": "13621:56:32"
                      },
                      {
                        "expression": {
                          "id": 8353,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 8351,
                            "name": "prizeCounts",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8173,
                            "src": "13687:11:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 8352,
                            "name": "_prizeCounts",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8196,
                            "src": "13701:12:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "src": "13687:26:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "id": 8354,
                        "nodeType": "ExpressionStatement",
                        "src": "13687:26:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8155,
                    "nodeType": "StructuredDocumentation",
                    "src": "10534:483:32",
                    "text": " @notice Calculates the prize amount for a PrizeDistribution over given picks\n @param _winningRandomNumber Draw's winningRandomNumber\n @param _totalUserPicks      number of picks the user gets for the Draw\n @param _userRandomNumber    users randomNumber for that draw\n @param _picks               users picks for that draw\n @param _prizeDistribution   PrizeDistribution for that draw\n @return prize (if any), prizeCounts (if any)"
                  },
                  "id": 8356,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculate",
                  "nameLocation": "11031:10:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8168,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8157,
                        "mutability": "mutable",
                        "name": "_winningRandomNumber",
                        "nameLocation": "11059:20:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8356,
                        "src": "11051:28:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8156,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11051:7:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8159,
                        "mutability": "mutable",
                        "name": "_totalUserPicks",
                        "nameLocation": "11097:15:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8356,
                        "src": "11089:23:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8158,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11089:7:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8161,
                        "mutability": "mutable",
                        "name": "_userRandomNumber",
                        "nameLocation": "11130:17:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8356,
                        "src": "11122:25:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 8160,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "11122:7:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8164,
                        "mutability": "mutable",
                        "name": "_picks",
                        "nameLocation": "11173:6:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8356,
                        "src": "11157:22:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8162,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "11157:6:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 8163,
                          "nodeType": "ArrayTypeName",
                          "src": "11157:8:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8167,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "11239:18:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8356,
                        "src": "11189:68:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8166,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8165,
                            "name": "IPrizeDistributionSource.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "11189:42:32"
                          },
                          "referencedDeclaration": 11491,
                          "src": "11189:42:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11041:222:32"
                  },
                  "returnParameters": {
                    "id": 8174,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8170,
                        "mutability": "mutable",
                        "name": "prize",
                        "nameLocation": "11295:5:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8356,
                        "src": "11287:13:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8169,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11287:7:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8173,
                        "mutability": "mutable",
                        "name": "prizeCounts",
                        "nameLocation": "11319:11:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8356,
                        "src": "11302:28:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8171,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "11302:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8172,
                          "nodeType": "ArrayTypeName",
                          "src": "11302:9:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11286:45:32"
                  },
                  "scope": 8610,
                  "src": "11022:2698:32",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8429,
                    "nodeType": "Block",
                    "src": "14288:757:32",
                    "statements": [
                      {
                        "assignments": [
                          8370
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8370,
                            "mutability": "mutable",
                            "name": "numberOfMatches",
                            "nameLocation": "14304:15:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8429,
                            "src": "14298:21:32",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 8369,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "14298:5:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8372,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 8371,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "14322:1:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "14298:25:32"
                      },
                      {
                        "assignments": [
                          8374
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8374,
                            "mutability": "mutable",
                            "name": "masksLength",
                            "nameLocation": "14339:11:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8429,
                            "src": "14333:17:32",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 8373,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "14333:5:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8380,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 8377,
                                "name": "_masks",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8364,
                                "src": "14359:6:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory"
                                }
                              },
                              "id": 8378,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "14359:13:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 8376,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "14353:5:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint8_$",
                              "typeString": "type(uint8)"
                            },
                            "typeName": {
                              "id": 8375,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "14353:5:32",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 8379,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14353:20:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "14333:40:32"
                      },
                      {
                        "body": {
                          "id": 8423,
                          "nodeType": "Block",
                          "src": "14488:504:32",
                          "statements": [
                            {
                              "assignments": [
                                8392
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 8392,
                                  "mutability": "mutable",
                                  "name": "mask",
                                  "nameLocation": "14510:4:32",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 8423,
                                  "src": "14502:12:32",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 8391,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "14502:7:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 8396,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 8393,
                                  "name": "_masks",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8364,
                                  "src": "14517:6:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                    "typeString": "uint256[] memory"
                                  }
                                },
                                "id": 8395,
                                "indexExpression": {
                                  "id": 8394,
                                  "name": "matchIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8382,
                                  "src": "14524:10:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "14517:18:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "14502:33:32"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 8405,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 8399,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 8397,
                                        "name": "_randomNumberThisPick",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8359,
                                        "src": "14555:21:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "&",
                                      "rightExpression": {
                                        "id": 8398,
                                        "name": "mask",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8392,
                                        "src": "14579:4:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "14555:28:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 8400,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "14554:30:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 8403,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 8401,
                                        "name": "_winningRandomNumber",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8361,
                                        "src": "14589:20:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "&",
                                      "rightExpression": {
                                        "id": 8402,
                                        "name": "mask",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8392,
                                        "src": "14612:4:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "14589:27:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 8404,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "14588:29:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "14554:63:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 8419,
                              "nodeType": "IfStatement",
                              "src": "14550:362:32",
                              "trueBody": {
                                "id": 8418,
                                "nodeType": "Block",
                                "src": "14619:293:32",
                                "statements": [
                                  {
                                    "condition": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      },
                                      "id": 8408,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 8406,
                                        "name": "masksLength",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8374,
                                        "src": "14734:11:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "==",
                                      "rightExpression": {
                                        "id": 8407,
                                        "name": "numberOfMatches",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8370,
                                        "src": "14749:15:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "src": "14734:30:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "falseBody": {
                                      "id": 8416,
                                      "nodeType": "Block",
                                      "src": "14821:77:32",
                                      "statements": [
                                        {
                                          "expression": {
                                            "commonType": {
                                              "typeIdentifier": "t_uint8",
                                              "typeString": "uint8"
                                            },
                                            "id": 8414,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftExpression": {
                                              "id": 8412,
                                              "name": "masksLength",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 8374,
                                              "src": "14850:11:32",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "nodeType": "BinaryOperation",
                                            "operator": "-",
                                            "rightExpression": {
                                              "id": 8413,
                                              "name": "numberOfMatches",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 8370,
                                              "src": "14864:15:32",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "src": "14850:29:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint8",
                                              "typeString": "uint8"
                                            }
                                          },
                                          "functionReturnParameters": 8368,
                                          "id": 8415,
                                          "nodeType": "Return",
                                          "src": "14843:36:32"
                                        }
                                      ]
                                    },
                                    "id": 8417,
                                    "nodeType": "IfStatement",
                                    "src": "14730:168:32",
                                    "trueBody": {
                                      "id": 8411,
                                      "nodeType": "Block",
                                      "src": "14766:49:32",
                                      "statements": [
                                        {
                                          "expression": {
                                            "hexValue": "30",
                                            "id": 8409,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "number",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "14795:1:32",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_rational_0_by_1",
                                              "typeString": "int_const 0"
                                            },
                                            "value": "0"
                                          },
                                          "functionReturnParameters": 8368,
                                          "id": 8410,
                                          "nodeType": "Return",
                                          "src": "14788:8:32"
                                        }
                                      ]
                                    }
                                  }
                                ]
                              }
                            },
                            {
                              "expression": {
                                "id": 8421,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "++",
                                "prefix": false,
                                "src": "14964:17:32",
                                "subExpression": {
                                  "id": 8420,
                                  "name": "numberOfMatches",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8370,
                                  "src": "14964:15:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "id": 8422,
                              "nodeType": "ExpressionStatement",
                              "src": "14964:17:32"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 8387,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8385,
                            "name": "matchIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8382,
                            "src": "14448:10:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 8386,
                            "name": "masksLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8374,
                            "src": "14461:11:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "14448:24:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8424,
                        "initializationExpression": {
                          "assignments": [
                            8382
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 8382,
                              "mutability": "mutable",
                              "name": "matchIndex",
                              "nameLocation": "14432:10:32",
                              "nodeType": "VariableDeclaration",
                              "scope": 8424,
                              "src": "14426:16:32",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "typeName": {
                                "id": 8381,
                                "name": "uint8",
                                "nodeType": "ElementaryTypeName",
                                "src": "14426:5:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 8384,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 8383,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "14445:1:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "14426:20:32"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 8389,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "14474:12:32",
                            "subExpression": {
                              "id": 8388,
                              "name": "matchIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8382,
                              "src": "14474:10:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 8390,
                          "nodeType": "ExpressionStatement",
                          "src": "14474:12:32"
                        },
                        "nodeType": "ForStatement",
                        "src": "14421:571:32"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 8427,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8425,
                            "name": "masksLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8374,
                            "src": "15009:11:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 8426,
                            "name": "numberOfMatches",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8370,
                            "src": "15023:15:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "15009:29:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 8368,
                        "id": 8428,
                        "nodeType": "Return",
                        "src": "15002:36:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8357,
                    "nodeType": "StructuredDocumentation",
                    "src": "13726:382:32",
                    "text": "@notice Calculates the tier index given the random numbers and masks\n@param _randomNumberThisPick users random number for this Pick\n@param _winningRandomNumber The winning number for this draw\n@param _masks The pre-calculate bitmasks for the prizeDistributions\n@return The position within the prize tier array (0 = top prize, 1 = runner-up prize, etc)"
                  },
                  "id": 8430,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculateTierIndex",
                  "nameLocation": "14122:19:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8365,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8359,
                        "mutability": "mutable",
                        "name": "_randomNumberThisPick",
                        "nameLocation": "14159:21:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8430,
                        "src": "14151:29:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8358,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "14151:7:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8361,
                        "mutability": "mutable",
                        "name": "_winningRandomNumber",
                        "nameLocation": "14198:20:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8430,
                        "src": "14190:28:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8360,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "14190:7:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8364,
                        "mutability": "mutable",
                        "name": "_masks",
                        "nameLocation": "14245:6:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8430,
                        "src": "14228:23:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8362,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "14228:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8363,
                          "nodeType": "ArrayTypeName",
                          "src": "14228:9:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14141:116:32"
                  },
                  "returnParameters": {
                    "id": 8368,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8367,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8430,
                        "src": "14281:5:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 8366,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "14281:5:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14280:7:32"
                  },
                  "scope": 8610,
                  "src": "14113:932:32",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8492,
                    "nodeType": "Block",
                    "src": "15450:457:32",
                    "statements": [
                      {
                        "assignments": [
                          8444
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8444,
                            "mutability": "mutable",
                            "name": "masks",
                            "nameLocation": "15477:5:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8492,
                            "src": "15460:22:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8442,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "15460:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8443,
                              "nodeType": "ArrayTypeName",
                              "src": "15460:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8451,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 8448,
                                "name": "_prizeDistribution",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8434,
                                "src": "15499:18:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                }
                              },
                              "id": 8449,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "matchCardinality",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11474,
                              "src": "15499:35:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 8447,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "15485:13:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8445,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "15489:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8446,
                              "nodeType": "ArrayTypeName",
                              "src": "15489:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 8450,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15485:50:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "15460:75:32"
                      },
                      {
                        "expression": {
                          "id": 8462,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 8452,
                              "name": "masks",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8444,
                              "src": "15545:5:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              }
                            },
                            "id": 8454,
                            "indexExpression": {
                              "hexValue": "30",
                              "id": 8453,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "15551:1:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "15545:8:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 8461,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "components": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 8458,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "hexValue": "32",
                                    "id": 8455,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "15558:1:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_2_by_1",
                                      "typeString": "int_const 2"
                                    },
                                    "value": "2"
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "**",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 8456,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8434,
                                      "src": "15561:18:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    },
                                    "id": 8457,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "bitRangeSize",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11472,
                                    "src": "15561:31:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "src": "15558:34:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 8459,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "15557:36:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "hexValue": "31",
                              "id": 8460,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "15596:1:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "src": "15557:40:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "15545:52:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 8463,
                        "nodeType": "ExpressionStatement",
                        "src": "15545:52:32"
                      },
                      {
                        "body": {
                          "id": 8488,
                          "nodeType": "Block",
                          "src": "15696:182:32",
                          "statements": [
                            {
                              "expression": {
                                "id": 8486,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 8475,
                                    "name": "masks",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8444,
                                    "src": "15793:5:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 8477,
                                  "indexExpression": {
                                    "id": 8476,
                                    "name": "maskIndex",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8465,
                                    "src": "15799:9:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "15793:16:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 8485,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "baseExpression": {
                                      "id": 8478,
                                      "name": "masks",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8444,
                                      "src": "15812:5:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                        "typeString": "uint256[] memory"
                                      }
                                    },
                                    "id": 8482,
                                    "indexExpression": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      },
                                      "id": 8481,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 8479,
                                        "name": "maskIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8465,
                                        "src": "15818:9:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "hexValue": "31",
                                        "id": 8480,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "15830:1:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_1_by_1",
                                          "typeString": "int_const 1"
                                        },
                                        "value": "1"
                                      },
                                      "src": "15818:13:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "15812:20:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "<<",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 8483,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8434,
                                      "src": "15836:18:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    },
                                    "id": 8484,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "bitRangeSize",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11472,
                                    "src": "15836:31:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "src": "15812:55:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "15793:74:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8487,
                              "nodeType": "ExpressionStatement",
                              "src": "15793:74:32"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 8471,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8468,
                            "name": "maskIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8465,
                            "src": "15634:9:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 8469,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8434,
                              "src": "15646:18:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            },
                            "id": 8470,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "matchCardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11474,
                            "src": "15646:35:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "15634:47:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8489,
                        "initializationExpression": {
                          "assignments": [
                            8465
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 8465,
                              "mutability": "mutable",
                              "name": "maskIndex",
                              "nameLocation": "15619:9:32",
                              "nodeType": "VariableDeclaration",
                              "scope": 8489,
                              "src": "15613:15:32",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "typeName": {
                                "id": 8464,
                                "name": "uint8",
                                "nodeType": "ElementaryTypeName",
                                "src": "15613:5:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 8467,
                          "initialValue": {
                            "hexValue": "31",
                            "id": 8466,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "15631:1:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "15613:19:32"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 8473,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "15683:11:32",
                            "subExpression": {
                              "id": 8472,
                              "name": "maskIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8465,
                              "src": "15683:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 8474,
                          "nodeType": "ExpressionStatement",
                          "src": "15683:11:32"
                        },
                        "nodeType": "ForStatement",
                        "src": "15608:270:32"
                      },
                      {
                        "expression": {
                          "id": 8490,
                          "name": "masks",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8444,
                          "src": "15895:5:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 8439,
                        "id": 8491,
                        "nodeType": "Return",
                        "src": "15888:12:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8431,
                    "nodeType": "StructuredDocumentation",
                    "src": "15051:230:32",
                    "text": " @notice Create an array of bitmasks equal to the PrizeDistribution.matchCardinality length\n @param _prizeDistribution The PrizeDistribution to use to calculate the masks\n @return An array of bitmasks"
                  },
                  "id": 8493,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_createBitMasks",
                  "nameLocation": "15295:15:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8435,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8434,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "15361:18:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8493,
                        "src": "15311:68:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8433,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8432,
                            "name": "IPrizeDistributionSource.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "15311:42:32"
                          },
                          "referencedDeclaration": 11491,
                          "src": "15311:42:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15310:70:32"
                  },
                  "returnParameters": {
                    "id": 8439,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8438,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8493,
                        "src": "15428:16:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8436,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "15428:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8437,
                          "nodeType": "ArrayTypeName",
                          "src": "15428:9:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15427:18:32"
                  },
                  "scope": 8610,
                  "src": "15286:621:32",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8523,
                    "nodeType": "Block",
                    "src": "16433:391:32",
                    "statements": [
                      {
                        "assignments": [
                          8505
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8505,
                            "mutability": "mutable",
                            "name": "prizeFraction",
                            "nameLocation": "16500:13:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8523,
                            "src": "16492:21:32",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 8504,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "16492:7:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8510,
                        "initialValue": {
                          "baseExpression": {
                            "expression": {
                              "id": 8506,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8497,
                              "src": "16516:18:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            },
                            "id": 8507,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "tiers",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11488,
                            "src": "16516:24:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint32_$16_memory_ptr",
                              "typeString": "uint32[16] memory"
                            }
                          },
                          "id": 8509,
                          "indexExpression": {
                            "id": 8508,
                            "name": "_prizeTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8499,
                            "src": "16541:15:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "16516:41:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "16492:65:32"
                      },
                      {
                        "assignments": [
                          8512
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8512,
                            "mutability": "mutable",
                            "name": "numberOfPrizesForIndex",
                            "nameLocation": "16629:22:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8523,
                            "src": "16621:30:32",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 8511,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "16621:7:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8518,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 8514,
                                "name": "_prizeDistribution",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8497,
                                "src": "16691:18:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                }
                              },
                              "id": 8515,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "bitRangeSize",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11472,
                              "src": "16691:31:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 8516,
                              "name": "_prizeTierIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8499,
                              "src": "16736:15:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 8513,
                            "name": "_numberOfPrizesForIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8609,
                            "src": "16654:23:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint8_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint8,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 8517,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "16654:107:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "16621:140:32"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 8521,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8519,
                            "name": "prizeFraction",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8505,
                            "src": "16779:13:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "id": 8520,
                            "name": "numberOfPrizesForIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8512,
                            "src": "16795:22:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "16779:38:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 8503,
                        "id": 8522,
                        "nodeType": "Return",
                        "src": "16772:45:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8494,
                    "nodeType": "StructuredDocumentation",
                    "src": "15913:329:32",
                    "text": " @notice Calculates the expected prize fraction per PrizeDistributions and distributionIndex\n @param _prizeDistribution prizeDistribution struct for Draw\n @param _prizeTierIndex Index of the prize tiers array to calculate\n @return returns the fraction of the total prize (fixed point 9 number)"
                  },
                  "id": 8524,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculatePrizeTierFraction",
                  "nameLocation": "16256:27:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8500,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8497,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "16343:18:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8524,
                        "src": "16293:68:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8496,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8495,
                            "name": "IPrizeDistributionSource.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "16293:42:32"
                          },
                          "referencedDeclaration": 11491,
                          "src": "16293:42:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8499,
                        "mutability": "mutable",
                        "name": "_prizeTierIndex",
                        "nameLocation": "16379:15:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8524,
                        "src": "16371:23:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8498,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "16371:7:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16283:117:32"
                  },
                  "returnParameters": {
                    "id": 8503,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8502,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8524,
                        "src": "16424:7:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8501,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "16424:7:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16423:9:32"
                  },
                  "scope": 8610,
                  "src": "16247:577:32",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8572,
                    "nodeType": "Block",
                    "src": "17297:379:32",
                    "statements": [
                      {
                        "assignments": [
                          8540
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8540,
                            "mutability": "mutable",
                            "name": "prizeDistributionFractions",
                            "nameLocation": "17324:26:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 8572,
                            "src": "17307:43:32",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8538,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "17307:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8539,
                              "nodeType": "ArrayTypeName",
                              "src": "17307:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8548,
                        "initialValue": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 8546,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 8544,
                                "name": "maxWinningTierIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8530,
                                "src": "17380:19:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 8545,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "17402:1:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "17380:23:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 8543,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "17353:13:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8541,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "17357:7:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8542,
                              "nodeType": "ArrayTypeName",
                              "src": "17357:9:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 8547,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "17353:60:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "17307:106:32"
                      },
                      {
                        "body": {
                          "id": 8568,
                          "nodeType": "Block",
                          "src": "17473:153:32",
                          "statements": [
                            {
                              "expression": {
                                "id": 8566,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 8559,
                                    "name": "prizeDistributionFractions",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8540,
                                    "src": "17487:26:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 8561,
                                  "indexExpression": {
                                    "id": 8560,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8550,
                                    "src": "17514:1:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "17487:29:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "id": 8563,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8528,
                                      "src": "17564:18:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    },
                                    {
                                      "id": 8564,
                                      "name": "i",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8550,
                                      "src": "17600:1:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    ],
                                    "id": 8562,
                                    "name": "_calculatePrizeTierFraction",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8524,
                                    "src": "17519:27:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11491_memory_ptr_$_t_uint256_$returns$_t_uint256_$",
                                      "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory,uint256) pure returns (uint256)"
                                    }
                                  },
                                  "id": 8565,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "17519:96:32",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "17487:128:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8567,
                              "nodeType": "ExpressionStatement",
                              "src": "17487:128:32"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 8555,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8553,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8550,
                            "src": "17442:1:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 8554,
                            "name": "maxWinningTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8530,
                            "src": "17447:19:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "17442:24:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8569,
                        "initializationExpression": {
                          "assignments": [
                            8550
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 8550,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "17435:1:32",
                              "nodeType": "VariableDeclaration",
                              "scope": 8569,
                              "src": "17429:7:32",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "typeName": {
                                "id": 8549,
                                "name": "uint8",
                                "nodeType": "ElementaryTypeName",
                                "src": "17429:5:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 8552,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 8551,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "17439:1:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "17429:11:32"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 8557,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "17468:3:32",
                            "subExpression": {
                              "id": 8556,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8550,
                              "src": "17468:1:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 8558,
                          "nodeType": "ExpressionStatement",
                          "src": "17468:3:32"
                        },
                        "nodeType": "ForStatement",
                        "src": "17424:202:32"
                      },
                      {
                        "expression": {
                          "id": 8570,
                          "name": "prizeDistributionFractions",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8540,
                          "src": "17643:26:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 8535,
                        "id": 8571,
                        "nodeType": "Return",
                        "src": "17636:33:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8525,
                    "nodeType": "StructuredDocumentation",
                    "src": "16830:264:32",
                    "text": " @notice Generates an array of prize tiers fractions\n @param _prizeDistribution prizeDistribution struct for Draw\n @param maxWinningTierIndex Max length of the prize tiers array\n @return returns an array of prize tiers fractions"
                  },
                  "id": 8573,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculatePrizeTierFractions",
                  "nameLocation": "17108:28:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8531,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8528,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "17196:18:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8573,
                        "src": "17146:68:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8527,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8526,
                            "name": "IPrizeDistributionSource.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "17146:42:32"
                          },
                          "referencedDeclaration": 11491,
                          "src": "17146:42:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8530,
                        "mutability": "mutable",
                        "name": "maxWinningTierIndex",
                        "nameLocation": "17230:19:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8573,
                        "src": "17224:25:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 8529,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "17224:5:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "17136:119:32"
                  },
                  "returnParameters": {
                    "id": 8535,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8534,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8573,
                        "src": "17279:16:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8532,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "17279:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8533,
                          "nodeType": "ArrayTypeName",
                          "src": "17279:9:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "17278:18:32"
                  },
                  "scope": 8610,
                  "src": "17099:577:32",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8608,
                    "nodeType": "Block",
                    "src": "18111:201:32",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 8585,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8583,
                            "name": "_prizeTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8578,
                            "src": "18125:15:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 8584,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "18143:1:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "18125:19:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 8606,
                          "nodeType": "Block",
                          "src": "18273:33:32",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "31",
                                "id": 8604,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "18294:1:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "functionReturnParameters": 8582,
                              "id": 8605,
                              "nodeType": "Return",
                              "src": "18287:8:32"
                            }
                          ]
                        },
                        "id": 8607,
                        "nodeType": "IfStatement",
                        "src": "18121:185:32",
                        "trueBody": {
                          "id": 8603,
                          "nodeType": "Block",
                          "src": "18146:121:32",
                          "statements": [
                            {
                              "expression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 8601,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 8590,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "hexValue": "31",
                                        "id": 8586,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "18169:1:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_1_by_1",
                                          "typeString": "int_const 1"
                                        },
                                        "value": "1"
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "<<",
                                      "rightExpression": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 8589,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 8587,
                                          "name": "_bitRangeSize",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 8576,
                                          "src": "18174:13:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "*",
                                        "rightExpression": {
                                          "id": 8588,
                                          "name": "_prizeTierIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 8578,
                                          "src": "18190:15:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "18174:31:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "18169:36:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 8591,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "18167:40:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 8599,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "hexValue": "31",
                                        "id": 8592,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "18212:1:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_1_by_1",
                                          "typeString": "int_const 1"
                                        },
                                        "value": "1"
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "<<",
                                      "rightExpression": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 8598,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 8593,
                                          "name": "_bitRangeSize",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 8576,
                                          "src": "18217:13:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "*",
                                        "rightExpression": {
                                          "components": [
                                            {
                                              "commonType": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              },
                                              "id": 8596,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "id": 8594,
                                                "name": "_prizeTierIndex",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 8578,
                                                "src": "18234:15:32",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "-",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 8595,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "18252:1:32",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1_by_1",
                                                  "typeString": "int_const 1"
                                                },
                                                "value": "1"
                                              },
                                              "src": "18234:19:32",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            }
                                          ],
                                          "id": 8597,
                                          "isConstant": false,
                                          "isInlineArray": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "TupleExpression",
                                          "src": "18233:21:32",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "18217:37:32",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "18212:42:32",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 8600,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "18210:46:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "18167:89:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "functionReturnParameters": 8582,
                              "id": 8602,
                              "nodeType": "Return",
                              "src": "18160:96:32"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8574,
                    "nodeType": "StructuredDocumentation",
                    "src": "17682:285:32",
                    "text": " @notice Calculates the number of prizes for a given prizeDistributionIndex\n @param _bitRangeSize Bit range size for Draw\n @param _prizeTierIndex Index of the prize tier array to calculate\n @return returns the fraction of the total prize (base 1e18)"
                  },
                  "id": 8609,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_numberOfPrizesForIndex",
                  "nameLocation": "17981:23:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8579,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8576,
                        "mutability": "mutable",
                        "name": "_bitRangeSize",
                        "nameLocation": "18011:13:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8609,
                        "src": "18005:19:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 8575,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "18005:5:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8578,
                        "mutability": "mutable",
                        "name": "_prizeTierIndex",
                        "nameLocation": "18034:15:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8609,
                        "src": "18026:23:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8577,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "18026:7:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "18004:46:32"
                  },
                  "returnParameters": {
                    "id": 8582,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8581,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8609,
                        "src": "18098:7:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8580,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "18098:7:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "18097:9:32"
                  },
                  "scope": 8610,
                  "src": "17972:340:32",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 8611,
              "src": "869:17445:32",
              "usedErrors": []
            }
          ],
          "src": "37:18278:32"
        },
        "id": 32
      },
      "contracts/PrizeDistributionBuffer.sol": {
        "ast": {
          "absolutePath": "contracts/PrizeDistributionBuffer.sol",
          "exportedSymbols": {
            "DrawRingBufferLib": [
              12354
            ],
            "IPrizeDistributionBuffer": [
              11467
            ],
            "IPrizeDistributionSource": [
              11503
            ],
            "Manageable": [
              3931
            ],
            "Ownable": [
              4086
            ],
            "PrizeDistributionBuffer": [
              9113
            ],
            "RingBufferLib": [
              12849
            ]
          },
          "id": 9114,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 8612,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:33"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 8613,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9114,
              "sourceUnit": 3932,
              "src": "61:72:33",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/libraries/DrawRingBufferLib.sol",
              "file": "./libraries/DrawRingBufferLib.sol",
              "id": 8614,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9114,
              "sourceUnit": 12355,
              "src": "135:43:33",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IPrizeDistributionBuffer.sol",
              "file": "./interfaces/IPrizeDistributionBuffer.sol",
              "id": 8615,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9114,
              "sourceUnit": 11468,
              "src": "179:51:33",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 8617,
                    "name": "IPrizeDistributionBuffer",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11467,
                    "src": "940:24:33"
                  },
                  "id": 8618,
                  "nodeType": "InheritanceSpecifier",
                  "src": "940:24:33"
                },
                {
                  "baseName": {
                    "id": 8619,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3931,
                    "src": "966:10:33"
                  },
                  "id": 8620,
                  "nodeType": "InheritanceSpecifier",
                  "src": "966:10:33"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 8616,
                "nodeType": "StructuredDocumentation",
                "src": "232:671:33",
                "text": " @title  PoolTogether V4 PrizeDistributionBuffer\n @author PoolTogether Inc Team\n @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\ncircular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\nring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\nparameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\nvalidate the incoming parameters."
              },
              "fullyImplemented": true,
              "id": 9113,
              "linearizedBaseContracts": [
                9113,
                3931,
                4086,
                11467,
                11503
              ],
              "name": "PrizeDistributionBuffer",
              "nameLocation": "913:23:33",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 8624,
                  "libraryName": {
                    "id": 8621,
                    "name": "DrawRingBufferLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12354,
                    "src": "989:17:33"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "983:53:33",
                  "typeName": {
                    "id": 8623,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 8622,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 12224,
                      "src": "1011:24:33"
                    },
                    "referencedDeclaration": 12224,
                    "src": "1011:24:33",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  }
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 8625,
                    "nodeType": "StructuredDocumentation",
                    "src": "1042:153:33",
                    "text": "@notice The maximum cardinality of the prize distribution ring buffer.\n @dev even with daily draws, 256 will give us over 8 months of history."
                  },
                  "id": 8628,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "1226:15:33",
                  "nodeType": "VariableDeclaration",
                  "scope": 9113,
                  "src": "1200:47:33",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 8626,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1200:7:33",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": {
                    "hexValue": "323536",
                    "id": 8627,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1244:3:33",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_256_by_1",
                      "typeString": "int_const 256"
                    },
                    "value": "256"
                  },
                  "visibility": "internal"
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 8629,
                    "nodeType": "StructuredDocumentation",
                    "src": "1254:145:33",
                    "text": "@notice The ceiling for prize distributions.  1e9 = 100%.\n @dev It's fixed point 9 because 1e9 is the largest \"1\" that fits into 2**32"
                  },
                  "id": 8632,
                  "mutability": "constant",
                  "name": "TIERS_CEILING",
                  "nameLocation": "1430:13:33",
                  "nodeType": "VariableDeclaration",
                  "scope": 9113,
                  "src": "1404:45:33",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 8630,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1404:7:33",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": {
                    "hexValue": "316539",
                    "id": 8631,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1446:3:33",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_1000000000_by_1",
                      "typeString": "int_const 1000000000"
                    },
                    "value": "1e9"
                  },
                  "visibility": "internal"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8633,
                    "nodeType": "StructuredDocumentation",
                    "src": "1456:150:33",
                    "text": "@notice Emitted when the contract is deployed.\n @param cardinality The maximum number of records in the buffer before they begin to expire."
                  },
                  "id": 8637,
                  "name": "Deployed",
                  "nameLocation": "1617:8:33",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8636,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8635,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "cardinality",
                        "nameLocation": "1632:11:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8637,
                        "src": "1626:17:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 8634,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1626:5:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1625:19:33"
                  },
                  "src": "1611:34:33"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 8638,
                    "nodeType": "StructuredDocumentation",
                    "src": "1651:50:33",
                    "text": "@notice PrizeDistribution ring buffer history."
                  },
                  "id": 8643,
                  "mutability": "mutable",
                  "name": "prizeDistributionRingBuffer",
                  "nameLocation": "1783:27:33",
                  "nodeType": "VariableDeclaration",
                  "scope": 9113,
                  "src": "1706:104:33",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$256_storage",
                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution[256]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 8640,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 8639,
                        "name": "IPrizeDistributionBuffer.PrizeDistribution",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 11491,
                        "src": "1706:42:33"
                      },
                      "referencedDeclaration": 11491,
                      "src": "1706:42:33",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                      }
                    },
                    "id": 8642,
                    "length": {
                      "id": 8641,
                      "name": "MAX_CARDINALITY",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 8628,
                      "src": "1749:15:33",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "ArrayTypeName",
                    "src": "1706:59:33",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$256_storage_ptr",
                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution[256]"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 8644,
                    "nodeType": "StructuredDocumentation",
                    "src": "1817:65:33",
                    "text": "@notice Ring buffer metadata (nextIndex, lastId, cardinality)"
                  },
                  "id": 8647,
                  "mutability": "mutable",
                  "name": "bufferMetadata",
                  "nameLocation": "1921:14:33",
                  "nodeType": "VariableDeclaration",
                  "scope": 9113,
                  "src": "1887:48:33",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                    "typeString": "struct DrawRingBufferLib.Buffer"
                  },
                  "typeName": {
                    "id": 8646,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 8645,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 12224,
                      "src": "1887:24:33"
                    },
                    "referencedDeclaration": 12224,
                    "src": "1887:24:33",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8668,
                    "nodeType": "Block",
                    "src": "2255:95:33",
                    "statements": [
                      {
                        "expression": {
                          "id": 8662,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 8658,
                              "name": "bufferMetadata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8647,
                              "src": "2265:14:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            },
                            "id": 8660,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "cardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12223,
                            "src": "2265:26:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 8661,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8652,
                            "src": "2294:12:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "2265:41:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 8663,
                        "nodeType": "ExpressionStatement",
                        "src": "2265:41:33"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 8665,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8652,
                              "src": "2330:12:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 8664,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8637,
                            "src": "2321:8:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint8_$returns$__$",
                              "typeString": "function (uint8)"
                            }
                          },
                          "id": 8666,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2321:22:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8667,
                        "nodeType": "EmitStatement",
                        "src": "2316:27:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8648,
                    "nodeType": "StructuredDocumentation",
                    "src": "1991:195:33",
                    "text": " @notice Constructor for PrizeDistributionBuffer\n @param _owner Address of the PrizeDistributionBuffer owner\n @param _cardinality Cardinality of the `bufferMetadata`"
                  },
                  "id": 8669,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 8655,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8650,
                          "src": "2247:6:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 8656,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 8654,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4086,
                        "src": "2239:7:33"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2239:15:33"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8653,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8650,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "2211:6:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8669,
                        "src": "2203:14:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8649,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2203:7:33",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8652,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "2225:12:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8669,
                        "src": "2219:18:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 8651,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "2219:5:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2202:36:33"
                  },
                  "returnParameters": {
                    "id": 8657,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2255:0:33"
                  },
                  "scope": 9113,
                  "src": "2191:159:33",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11411
                  ],
                  "body": {
                    "id": 8679,
                    "nodeType": "Block",
                    "src": "2529:50:33",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 8676,
                            "name": "bufferMetadata",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8647,
                            "src": "2546:14:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                              "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                            }
                          },
                          "id": 8677,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "cardinality",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12223,
                          "src": "2546:26:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 8675,
                        "id": 8678,
                        "nodeType": "Return",
                        "src": "2539:33:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8670,
                    "nodeType": "StructuredDocumentation",
                    "src": "2412:40:33",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "caeef7ec",
                  "id": 8680,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBufferCardinality",
                  "nameLocation": "2466:20:33",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8672,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2503:8:33"
                  },
                  "parameters": {
                    "id": 8671,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2486:2:33"
                  },
                  "returnParameters": {
                    "id": 8675,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8674,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8680,
                        "src": "2521:6:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8673,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2521:6:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2520:8:33"
                  },
                  "scope": 9113,
                  "src": "2457:122:33",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11438
                  ],
                  "body": {
                    "id": 8695,
                    "nodeType": "Block",
                    "src": "2795:70:33",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 8691,
                              "name": "bufferMetadata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8647,
                              "src": "2834:14:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            },
                            {
                              "id": 8692,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8683,
                              "src": "2850:7:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 8690,
                            "name": "_getPrizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8982,
                            "src": "2812:21:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_struct$_PrizeDistribution_$11491_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) view returns (struct IPrizeDistributionSource.PrizeDistribution memory)"
                            }
                          },
                          "id": 8693,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2812:46:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                          }
                        },
                        "functionReturnParameters": 8689,
                        "id": 8694,
                        "nodeType": "Return",
                        "src": "2805:53:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8681,
                    "nodeType": "StructuredDocumentation",
                    "src": "2585:40:33",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "3cd8e2d5",
                  "id": 8696,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistribution",
                  "nameLocation": "2639:20:33",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8685,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2714:8:33"
                  },
                  "parameters": {
                    "id": 8684,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8683,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "2667:7:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8696,
                        "src": "2660:14:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8682,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2660:6:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2659:16:33"
                  },
                  "returnParameters": {
                    "id": 8689,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8688,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8696,
                        "src": "2740:49:33",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8687,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8686,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "2740:42:33"
                          },
                          "referencedDeclaration": 11491,
                          "src": "2740:42:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2739:51:33"
                  },
                  "scope": 9113,
                  "src": "2630:235:33",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11502
                  ],
                  "body": {
                    "id": 8758,
                    "nodeType": "Block",
                    "src": "3096:493:33",
                    "statements": [
                      {
                        "assignments": [
                          8709
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8709,
                            "mutability": "mutable",
                            "name": "drawIdsLength",
                            "nameLocation": "3114:13:33",
                            "nodeType": "VariableDeclaration",
                            "scope": 8758,
                            "src": "3106:21:33",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 8708,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "3106:7:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8712,
                        "initialValue": {
                          "expression": {
                            "id": 8710,
                            "name": "_drawIds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8700,
                            "src": "3130:8:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                              "typeString": "uint32[] calldata"
                            }
                          },
                          "id": 8711,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "3130:15:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3106:39:33"
                      },
                      {
                        "assignments": [
                          8717
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8717,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "3187:6:33",
                            "nodeType": "VariableDeclaration",
                            "scope": 8758,
                            "src": "3155:38:33",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 8716,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 8715,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12224,
                                "src": "3155:24:33"
                              },
                              "referencedDeclaration": 12224,
                              "src": "3155:24:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8719,
                        "initialValue": {
                          "id": 8718,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8647,
                          "src": "3196:14:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3155:55:33"
                      },
                      {
                        "assignments": [
                          8725
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8725,
                            "mutability": "mutable",
                            "name": "_prizeDistributions",
                            "nameLocation": "3284:19:33",
                            "nodeType": "VariableDeclaration",
                            "scope": 8758,
                            "src": "3220:83:33",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8723,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 8722,
                                  "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11491,
                                  "src": "3220:42:33"
                                },
                                "referencedDeclaration": 11491,
                                "src": "3220:42:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                                }
                              },
                              "id": 8724,
                              "nodeType": "ArrayTypeName",
                              "src": "3220:44:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8732,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 8730,
                              "name": "drawIdsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8709,
                              "src": "3372:13:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 8729,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "3306:48:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (struct IPrizeDistributionSource.PrizeDistribution memory[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8727,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 8726,
                                  "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11491,
                                  "src": "3310:42:33"
                                },
                                "referencedDeclaration": 11491,
                                "src": "3310:42:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                                }
                              },
                              "id": 8728,
                              "nodeType": "ArrayTypeName",
                              "src": "3310:44:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                              }
                            }
                          },
                          "id": 8731,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3306:93:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3220:179:33"
                      },
                      {
                        "body": {
                          "id": 8754,
                          "nodeType": "Block",
                          "src": "3454:92:33",
                          "statements": [
                            {
                              "expression": {
                                "id": 8752,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 8743,
                                    "name": "_prizeDistributions",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8725,
                                    "src": "3468:19:33",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                    }
                                  },
                                  "id": 8745,
                                  "indexExpression": {
                                    "id": 8744,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8734,
                                    "src": "3488:1:33",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "3468:22:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "id": 8747,
                                      "name": "buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8717,
                                      "src": "3515:6:33",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 8748,
                                        "name": "_drawIds",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8700,
                                        "src": "3523:8:33",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                          "typeString": "uint32[] calldata"
                                        }
                                      },
                                      "id": 8750,
                                      "indexExpression": {
                                        "id": 8749,
                                        "name": "i",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8734,
                                        "src": "3532:1:33",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "3523:11:33",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "id": 8746,
                                    "name": "_getPrizeDistribution",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8982,
                                    "src": "3493:21:33",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_struct$_PrizeDistribution_$11491_memory_ptr_$",
                                      "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) view returns (struct IPrizeDistributionSource.PrizeDistribution memory)"
                                    }
                                  },
                                  "id": 8751,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3493:42:33",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                  }
                                },
                                "src": "3468:67:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                }
                              },
                              "id": 8753,
                              "nodeType": "ExpressionStatement",
                              "src": "3468:67:33"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 8739,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8737,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8734,
                            "src": "3430:1:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 8738,
                            "name": "drawIdsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8709,
                            "src": "3434:13:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "3430:17:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8755,
                        "initializationExpression": {
                          "assignments": [
                            8734
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 8734,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "3423:1:33",
                              "nodeType": "VariableDeclaration",
                              "scope": 8755,
                              "src": "3415:9:33",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 8733,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "3415:7:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 8736,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 8735,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3427:1:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "3415:13:33"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 8741,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "3449:3:33",
                            "subExpression": {
                              "id": 8740,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8734,
                              "src": "3449:1:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8742,
                          "nodeType": "ExpressionStatement",
                          "src": "3449:3:33"
                        },
                        "nodeType": "ForStatement",
                        "src": "3410:136:33"
                      },
                      {
                        "expression": {
                          "id": 8756,
                          "name": "_prizeDistributions",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8725,
                          "src": "3563:19:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                          }
                        },
                        "functionReturnParameters": 8707,
                        "id": 8757,
                        "nodeType": "Return",
                        "src": "3556:26:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8697,
                    "nodeType": "StructuredDocumentation",
                    "src": "2871:40:33",
                    "text": "@inheritdoc IPrizeDistributionSource"
                  },
                  "functionSelector": "d30a5daf",
                  "id": 8759,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributions",
                  "nameLocation": "2925:21:33",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8702,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3013:8:33"
                  },
                  "parameters": {
                    "id": 8701,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8700,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "2965:8:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8759,
                        "src": "2947:26:33",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8698,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2947:6:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 8699,
                          "nodeType": "ArrayTypeName",
                          "src": "2947:8:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2946:28:33"
                  },
                  "returnParameters": {
                    "id": 8707,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8706,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8759,
                        "src": "3039:51:33",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8704,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 8703,
                              "name": "IPrizeDistributionBuffer.PrizeDistribution",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11491,
                              "src": "3039:42:33"
                            },
                            "referencedDeclaration": 11491,
                            "src": "3039:42:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                            }
                          },
                          "id": 8705,
                          "nodeType": "ArrayTypeName",
                          "src": "3039:44:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3038:53:33"
                  },
                  "scope": 9113,
                  "src": "2916:673:33",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11444
                  ],
                  "body": {
                    "id": 8800,
                    "nodeType": "Block",
                    "src": "3717:462:33",
                    "statements": [
                      {
                        "assignments": [
                          8770
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8770,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "3759:6:33",
                            "nodeType": "VariableDeclaration",
                            "scope": 8800,
                            "src": "3727:38:33",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 8769,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 8768,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12224,
                                "src": "3727:24:33"
                              },
                              "referencedDeclaration": 12224,
                              "src": "3727:24:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8772,
                        "initialValue": {
                          "id": 8771,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8647,
                          "src": "3768:14:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3727:55:33"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 8776,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 8773,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8770,
                              "src": "3797:6:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 8774,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lastDrawId",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12219,
                            "src": "3797:17:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 8775,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3818:1:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3797:22:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8780,
                        "nodeType": "IfStatement",
                        "src": "3793:61:33",
                        "trueBody": {
                          "id": 8779,
                          "nodeType": "Block",
                          "src": "3821:33:33",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 8777,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3842:1:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 8765,
                              "id": 8778,
                              "nodeType": "Return",
                              "src": "3835:8:33"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          8782
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8782,
                            "mutability": "mutable",
                            "name": "bufferNextIndex",
                            "nameLocation": "3871:15:33",
                            "nodeType": "VariableDeclaration",
                            "scope": 8800,
                            "src": "3864:22:33",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 8781,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "3864:6:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8785,
                        "initialValue": {
                          "expression": {
                            "id": 8783,
                            "name": "buffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8770,
                            "src": "3889:6:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer memory"
                            }
                          },
                          "id": 8784,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "nextIndex",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12221,
                          "src": "3889:16:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3864:41:33"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 8791,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "baseExpression": {
                                "id": 8786,
                                "name": "prizeDistributionRingBuffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8643,
                                "src": "4002:27:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$256_storage",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref[256] storage ref"
                                }
                              },
                              "id": 8788,
                              "indexExpression": {
                                "id": 8787,
                                "name": "bufferNextIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8782,
                                "src": "4030:15:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "4002:44:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                              }
                            },
                            "id": 8789,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "matchCardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11474,
                            "src": "4002:61:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 8790,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4067:1:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "4002:66:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 8798,
                          "nodeType": "Block",
                          "src": "4126:47:33",
                          "statements": [
                            {
                              "expression": {
                                "id": 8796,
                                "name": "bufferNextIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8782,
                                "src": "4147:15:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "functionReturnParameters": 8765,
                              "id": 8797,
                              "nodeType": "Return",
                              "src": "4140:22:33"
                            }
                          ]
                        },
                        "id": 8799,
                        "nodeType": "IfStatement",
                        "src": "3998:175:33",
                        "trueBody": {
                          "id": 8795,
                          "nodeType": "Block",
                          "src": "4070:50:33",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 8792,
                                  "name": "buffer",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8770,
                                  "src": "4091:6:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                    "typeString": "struct DrawRingBufferLib.Buffer memory"
                                  }
                                },
                                "id": 8793,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "cardinality",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12223,
                                "src": "4091:18:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "functionReturnParameters": 8765,
                              "id": 8794,
                              "nodeType": "Return",
                              "src": "4084:25:33"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8760,
                    "nodeType": "StructuredDocumentation",
                    "src": "3595:40:33",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "21e98ad9",
                  "id": 8801,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributionCount",
                  "nameLocation": "3649:25:33",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8762,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3691:8:33"
                  },
                  "parameters": {
                    "id": 8761,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3674:2:33"
                  },
                  "returnParameters": {
                    "id": 8765,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8764,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8801,
                        "src": "3709:6:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8763,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3709:6:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3708:8:33"
                  },
                  "scope": 9113,
                  "src": "3640:539:33",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11420
                  ],
                  "body": {
                    "id": 8829,
                    "nodeType": "Block",
                    "src": "4420:174:33",
                    "statements": [
                      {
                        "assignments": [
                          8815
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8815,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "4462:6:33",
                            "nodeType": "VariableDeclaration",
                            "scope": 8829,
                            "src": "4430:38:33",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 8814,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 8813,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12224,
                                "src": "4430:24:33"
                              },
                              "referencedDeclaration": 12224,
                              "src": "4430:24:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8817,
                        "initialValue": {
                          "id": 8816,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8647,
                          "src": "4471:14:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4430:55:33"
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "baseExpression": {
                                "id": 8818,
                                "name": "prizeDistributionRingBuffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8643,
                                "src": "4504:27:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$256_storage",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref[256] storage ref"
                                }
                              },
                              "id": 8824,
                              "indexExpression": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 8821,
                                      "name": "buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8815,
                                      "src": "4548:6:33",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    },
                                    "id": 8822,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "lastDrawId",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12219,
                                    "src": "4548:17:33",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  ],
                                  "expression": {
                                    "id": 8819,
                                    "name": "buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8815,
                                    "src": "4532:6:33",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                      "typeString": "struct DrawRingBufferLib.Buffer memory"
                                    }
                                  },
                                  "id": 8820,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "getIndex",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12353,
                                  "src": "4532:15:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$12224_memory_ptr_$",
                                    "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                                  }
                                },
                                "id": 8823,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4532:34:33",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "4504:63:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 8825,
                                "name": "buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8815,
                                "src": "4569:6:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 8826,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "lastDrawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12219,
                              "src": "4569:17:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "id": 8827,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "4503:84:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_PrizeDistribution_$11491_storage_$_t_uint32_$",
                            "typeString": "tuple(struct IPrizeDistributionSource.PrizeDistribution storage ref,uint32)"
                          }
                        },
                        "functionReturnParameters": 8810,
                        "id": 8828,
                        "nodeType": "Return",
                        "src": "4496:91:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8802,
                    "nodeType": "StructuredDocumentation",
                    "src": "4185:40:33",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "24c21446",
                  "id": 8830,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNewestPrizeDistribution",
                  "nameLocation": "4239:26:33",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8804,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4306:8:33"
                  },
                  "parameters": {
                    "id": 8803,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4265:2:33"
                  },
                  "returnParameters": {
                    "id": 8810,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8807,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "4382:17:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8830,
                        "src": "4332:67:33",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8806,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8805,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "4332:42:33"
                          },
                          "referencedDeclaration": 11491,
                          "src": "4332:42:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8809,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "4408:6:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8830,
                        "src": "4401:13:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8808,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4401:6:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4331:84:33"
                  },
                  "scope": 9113,
                  "src": "4230:364:33",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11429
                  ],
                  "body": {
                    "id": 8899,
                    "nodeType": "Block",
                    "src": "4835:998:33",
                    "statements": [
                      {
                        "assignments": [
                          8844
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8844,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "4877:6:33",
                            "nodeType": "VariableDeclaration",
                            "scope": 8899,
                            "src": "4845:38:33",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 8843,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 8842,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12224,
                                "src": "4845:24:33"
                              },
                              "referencedDeclaration": 12224,
                              "src": "4845:24:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8846,
                        "initialValue": {
                          "id": 8845,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8647,
                          "src": "4886:14:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4845:55:33"
                      },
                      {
                        "expression": {
                          "id": 8852,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 8847,
                            "name": "prizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8836,
                            "src": "4981:17:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "baseExpression": {
                              "id": 8848,
                              "name": "prizeDistributionRingBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8643,
                              "src": "5001:27:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$256_storage",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref[256] storage ref"
                              }
                            },
                            "id": 8851,
                            "indexExpression": {
                              "expression": {
                                "id": 8849,
                                "name": "buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8844,
                                "src": "5029:6:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 8850,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "nextIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12221,
                              "src": "5029:16:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "5001:45:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                            }
                          },
                          "src": "4981:65:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                          }
                        },
                        "id": 8853,
                        "nodeType": "ExpressionStatement",
                        "src": "4981:65:33"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 8857,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 8854,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8844,
                              "src": "5149:6:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 8855,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lastDrawId",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12219,
                            "src": "5149:17:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 8856,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5170:1:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "5149:22:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "id": 8866,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "expression": {
                                "id": 8863,
                                "name": "prizeDistribution",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8836,
                                "src": "5283:17:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                }
                              },
                              "id": 8864,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "bitRangeSize",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11472,
                              "src": "5283:30:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "==",
                            "rightExpression": {
                              "hexValue": "30",
                              "id": 8865,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5317:1:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "src": "5283:35:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseBody": {
                            "id": 8896,
                            "nodeType": "Block",
                            "src": "5601:226:33",
                            "statements": [
                              {
                                "expression": {
                                  "id": 8894,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftHandSide": {
                                    "id": 8885,
                                    "name": "drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8838,
                                    "src": "5763:6:33",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "Assignment",
                                  "operator": "=",
                                  "rightHandSide": {
                                    "commonType": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    "id": 8893,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "components": [
                                        {
                                          "commonType": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          },
                                          "id": 8889,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "expression": {
                                              "id": 8886,
                                              "name": "buffer",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 8844,
                                              "src": "5773:6:33",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                                              }
                                            },
                                            "id": 8887,
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "memberName": "lastDrawId",
                                            "nodeType": "MemberAccess",
                                            "referencedDeclaration": 12219,
                                            "src": "5773:17:33",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": "+",
                                          "rightExpression": {
                                            "hexValue": "31",
                                            "id": 8888,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "number",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "5793:1:33",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_rational_1_by_1",
                                              "typeString": "int_const 1"
                                            },
                                            "value": "1"
                                          },
                                          "src": "5773:21:33",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        }
                                      ],
                                      "id": 8890,
                                      "isConstant": false,
                                      "isInlineArray": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "TupleExpression",
                                      "src": "5772:23:33",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "-",
                                    "rightExpression": {
                                      "expression": {
                                        "id": 8891,
                                        "name": "buffer",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8844,
                                        "src": "5798:6:33",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        }
                                      },
                                      "id": 8892,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "cardinality",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 12223,
                                      "src": "5798:18:33",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "src": "5772:44:33",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "src": "5763:53:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "id": 8895,
                                "nodeType": "ExpressionStatement",
                                "src": "5763:53:33"
                              }
                            ]
                          },
                          "id": 8897,
                          "nodeType": "IfStatement",
                          "src": "5279:548:33",
                          "trueBody": {
                            "id": 8884,
                            "nodeType": "Block",
                            "src": "5320:275:33",
                            "statements": [
                              {
                                "expression": {
                                  "id": 8871,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftHandSide": {
                                    "id": 8867,
                                    "name": "prizeDistribution",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8836,
                                    "src": "5469:17:33",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                    }
                                  },
                                  "nodeType": "Assignment",
                                  "operator": "=",
                                  "rightHandSide": {
                                    "baseExpression": {
                                      "id": 8868,
                                      "name": "prizeDistributionRingBuffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8643,
                                      "src": "5489:27:33",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$256_storage",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref[256] storage ref"
                                      }
                                    },
                                    "id": 8870,
                                    "indexExpression": {
                                      "hexValue": "30",
                                      "id": 8869,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "5517:1:33",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "5489:30:33",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                                    }
                                  },
                                  "src": "5469:50:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                  }
                                },
                                "id": 8872,
                                "nodeType": "ExpressionStatement",
                                "src": "5469:50:33"
                              },
                              {
                                "expression": {
                                  "id": 8882,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftHandSide": {
                                    "id": 8873,
                                    "name": "drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8838,
                                    "src": "5533:6:33",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "Assignment",
                                  "operator": "=",
                                  "rightHandSide": {
                                    "commonType": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    "id": 8881,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "components": [
                                        {
                                          "commonType": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          },
                                          "id": 8877,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "expression": {
                                              "id": 8874,
                                              "name": "buffer",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 8844,
                                              "src": "5543:6:33",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                                              }
                                            },
                                            "id": 8875,
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "memberName": "lastDrawId",
                                            "nodeType": "MemberAccess",
                                            "referencedDeclaration": 12219,
                                            "src": "5543:17:33",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": "+",
                                          "rightExpression": {
                                            "hexValue": "31",
                                            "id": 8876,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "number",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "5563:1:33",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_rational_1_by_1",
                                              "typeString": "int_const 1"
                                            },
                                            "value": "1"
                                          },
                                          "src": "5543:21:33",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        }
                                      ],
                                      "id": 8878,
                                      "isConstant": false,
                                      "isInlineArray": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "TupleExpression",
                                      "src": "5542:23:33",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "-",
                                    "rightExpression": {
                                      "expression": {
                                        "id": 8879,
                                        "name": "buffer",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8844,
                                        "src": "5568:6:33",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        }
                                      },
                                      "id": 8880,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "nextIndex",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 12221,
                                      "src": "5568:16:33",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "src": "5542:42:33",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "src": "5533:51:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "id": 8883,
                                "nodeType": "ExpressionStatement",
                                "src": "5533:51:33"
                              }
                            ]
                          }
                        },
                        "id": 8898,
                        "nodeType": "IfStatement",
                        "src": "5145:682:33",
                        "trueBody": {
                          "id": 8862,
                          "nodeType": "Block",
                          "src": "5173:100:33",
                          "statements": [
                            {
                              "expression": {
                                "id": 8860,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 8858,
                                  "name": "drawId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8838,
                                  "src": "5187:6:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "hexValue": "30",
                                  "id": 8859,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "5196:1:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "5187:10:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "id": 8861,
                              "nodeType": "ExpressionStatement",
                              "src": "5187:10:33"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8831,
                    "nodeType": "StructuredDocumentation",
                    "src": "4600:40:33",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "2439093a",
                  "id": 8900,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getOldestPrizeDistribution",
                  "nameLocation": "4654:26:33",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8833,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4721:8:33"
                  },
                  "parameters": {
                    "id": 8832,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4680:2:33"
                  },
                  "returnParameters": {
                    "id": 8839,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8836,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "4797:17:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8900,
                        "src": "4747:67:33",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8835,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8834,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "4747:42:33"
                          },
                          "referencedDeclaration": 11491,
                          "src": "4747:42:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8838,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "4823:6:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8900,
                        "src": "4816:13:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8837,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4816:6:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4746:84:33"
                  },
                  "scope": 9113,
                  "src": "4645:1188:33",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11455
                  ],
                  "body": {
                    "id": 8919,
                    "nodeType": "Block",
                    "src": "6077:75:33",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 8915,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8903,
                              "src": "6117:7:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 8916,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8906,
                              "src": "6126:18:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            ],
                            "id": 8914,
                            "name": "_pushPrizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9112,
                            "src": "6094:22:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$11491_calldata_ptr_$returns$_t_bool_$",
                              "typeString": "function (uint32,struct IPrizeDistributionSource.PrizeDistribution calldata) returns (bool)"
                            }
                          },
                          "id": 8917,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6094:51:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 8913,
                        "id": 8918,
                        "nodeType": "Return",
                        "src": "6087:58:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8901,
                    "nodeType": "StructuredDocumentation",
                    "src": "5839:40:33",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "1124e1dc",
                  "id": 8920,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 8910,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 8909,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3930,
                        "src": "6043:18:33"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6043:18:33"
                    }
                  ],
                  "name": "pushPrizeDistribution",
                  "nameLocation": "5893:21:33",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8908,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6034:8:33"
                  },
                  "parameters": {
                    "id": 8907,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8903,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "5931:7:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8920,
                        "src": "5924:14:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8902,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5924:6:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8906,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "6000:18:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8920,
                        "src": "5948:70:33",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8905,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8904,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "5948:42:33"
                          },
                          "referencedDeclaration": 11491,
                          "src": "5948:42:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5914:110:33"
                  },
                  "returnParameters": {
                    "id": 8913,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8912,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8920,
                        "src": "6071:4:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8911,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "6071:4:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6070:6:33"
                  },
                  "scope": 9113,
                  "src": "5884:268:33",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11466
                  ],
                  "body": {
                    "id": 8961,
                    "nodeType": "Block",
                    "src": "6388:276:33",
                    "statements": [
                      {
                        "assignments": [
                          8938
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8938,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "6430:6:33",
                            "nodeType": "VariableDeclaration",
                            "scope": 8961,
                            "src": "6398:38:33",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 8937,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 8936,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12224,
                                "src": "6398:24:33"
                              },
                              "referencedDeclaration": 12224,
                              "src": "6398:24:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8940,
                        "initialValue": {
                          "id": 8939,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8647,
                          "src": "6439:14:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6398:55:33"
                      },
                      {
                        "assignments": [
                          8942
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8942,
                            "mutability": "mutable",
                            "name": "index",
                            "nameLocation": "6470:5:33",
                            "nodeType": "VariableDeclaration",
                            "scope": 8961,
                            "src": "6463:12:33",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 8941,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "6463:6:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8947,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 8945,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8923,
                              "src": "6494:7:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 8943,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8938,
                              "src": "6478:6:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 8944,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12353,
                            "src": "6478:15:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$12224_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                            }
                          },
                          "id": 8946,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6478:24:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6463:39:33"
                      },
                      {
                        "expression": {
                          "id": 8952,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 8948,
                              "name": "prizeDistributionRingBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8643,
                              "src": "6512:27:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$256_storage",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref[256] storage ref"
                              }
                            },
                            "id": 8950,
                            "indexExpression": {
                              "id": 8949,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8942,
                              "src": "6540:5:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "6512:34:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 8951,
                            "name": "_prizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8926,
                            "src": "6549:18:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                            }
                          },
                          "src": "6512:55:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                          }
                        },
                        "id": 8953,
                        "nodeType": "ExpressionStatement",
                        "src": "6512:55:33"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 8955,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8923,
                              "src": "6604:7:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 8956,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8926,
                              "src": "6613:18:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            ],
                            "id": 8954,
                            "name": "PrizeDistributionSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11405,
                            "src": "6583:20:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$11491_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IPrizeDistributionSource.PrizeDistribution memory)"
                            }
                          },
                          "id": 8957,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6583:49:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8958,
                        "nodeType": "EmitStatement",
                        "src": "6578:54:33"
                      },
                      {
                        "expression": {
                          "id": 8959,
                          "name": "_drawId",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8923,
                          "src": "6650:7:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 8933,
                        "id": 8960,
                        "nodeType": "Return",
                        "src": "6643:14:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8921,
                    "nodeType": "StructuredDocumentation",
                    "src": "6158:40:33",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "ce336ce9",
                  "id": 8962,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 8930,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 8929,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "6361:9:33"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6361:9:33"
                    }
                  ],
                  "name": "setPrizeDistribution",
                  "nameLocation": "6212:20:33",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8928,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6352:8:33"
                  },
                  "parameters": {
                    "id": 8927,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8923,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "6249:7:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8962,
                        "src": "6242:14:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8922,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6242:6:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8926,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "6318:18:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8962,
                        "src": "6266:70:33",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8925,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8924,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "6266:42:33"
                          },
                          "referencedDeclaration": 11491,
                          "src": "6266:42:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6232:110:33"
                  },
                  "returnParameters": {
                    "id": 8933,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8932,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8962,
                        "src": "6380:6:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8931,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6380:6:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6379:8:33"
                  },
                  "scope": 9113,
                  "src": "6203:461:33",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 8981,
                    "nodeType": "Block",
                    "src": "7069:78:33",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 8974,
                            "name": "prizeDistributionRingBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8643,
                            "src": "7086:27:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$256_storage",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref[256] storage ref"
                            }
                          },
                          "id": 8979,
                          "indexExpression": {
                            "arguments": [
                              {
                                "id": 8977,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8968,
                                "src": "7131:7:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 8975,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8966,
                                "src": "7114:7:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 8976,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "getIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12353,
                              "src": "7114:16:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$12224_memory_ptr_$",
                                "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 8978,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "7114:25:33",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "7086:54:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                          }
                        },
                        "functionReturnParameters": 8973,
                        "id": 8980,
                        "nodeType": "Return",
                        "src": "7079:61:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8963,
                    "nodeType": "StructuredDocumentation",
                    "src": "6726:148:33",
                    "text": " @notice Gets the PrizeDistributionBuffer for a drawId\n @param _buffer DrawRingBufferLib.Buffer\n @param _drawId drawId"
                  },
                  "id": 8982,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getPrizeDistribution",
                  "nameLocation": "6888:21:33",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8969,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8966,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "6942:7:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8982,
                        "src": "6910:39:33",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 8965,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8964,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12224,
                            "src": "6910:24:33"
                          },
                          "referencedDeclaration": 12224,
                          "src": "6910:24:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8968,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "6958:7:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8982,
                        "src": "6951:14:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8967,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6951:6:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6909:57:33"
                  },
                  "returnParameters": {
                    "id": 8973,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8972,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8982,
                        "src": "7014:49:33",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8971,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8970,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "7014:42:33"
                          },
                          "referencedDeclaration": 11491,
                          "src": "7014:42:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7013:51:33"
                  },
                  "scope": 9113,
                  "src": "6879:268:33",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9111,
                    "nodeType": "Block",
                    "src": "7508:1432:33",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 8996,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 8994,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8985,
                                "src": "7526:7:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 8995,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7536:1:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "7526:11:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f647261772d69642d67742d30",
                              "id": 8997,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7539:23:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_8b507ddce75cdc34f90fa301a75f6fd1f75fa27a9f9dbdf6fd484dc84d5dad03",
                                "typeString": "literal_string \"DrawCalc/draw-id-gt-0\""
                              },
                              "value": "DrawCalc/draw-id-gt-0"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_8b507ddce75cdc34f90fa301a75f6fd1f75fa27a9f9dbdf6fd484dc84d5dad03",
                                "typeString": "literal_string \"DrawCalc/draw-id-gt-0\""
                              }
                            ],
                            "id": 8993,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7518:7:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 8998,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7518:45:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8999,
                        "nodeType": "ExpressionStatement",
                        "src": "7518:45:33"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 9004,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 9001,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8988,
                                  "src": "7581:18:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                                  }
                                },
                                "id": 9002,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "matchCardinality",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11474,
                                "src": "7581:35:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 9003,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7619:1:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "7581:39:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f6d6174636843617264696e616c6974792d67742d30",
                              "id": 9005,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7622:32:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b2ca6e48351b23d5b5f68ad1fc621ced7f4d101632cc01f2530db3cc6923f1ac",
                                "typeString": "literal_string \"DrawCalc/matchCardinality-gt-0\""
                              },
                              "value": "DrawCalc/matchCardinality-gt-0"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b2ca6e48351b23d5b5f68ad1fc621ced7f4d101632cc01f2530db3cc6923f1ac",
                                "typeString": "literal_string \"DrawCalc/matchCardinality-gt-0\""
                              }
                            ],
                            "id": 9000,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7573:7:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9006,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7573:82:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9007,
                        "nodeType": "ExpressionStatement",
                        "src": "7573:82:33"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint16",
                                "typeString": "uint16"
                              },
                              "id": 9015,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 9009,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8988,
                                  "src": "7686:18:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                                  }
                                },
                                "id": 9010,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "bitRangeSize",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11472,
                                "src": "7686:31:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint16",
                                  "typeString": "uint16"
                                },
                                "id": 9014,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "hexValue": "323536",
                                  "id": 9011,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "7721:3:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_256_by_1",
                                    "typeString": "int_const 256"
                                  },
                                  "value": "256"
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "/",
                                "rightExpression": {
                                  "expression": {
                                    "id": 9012,
                                    "name": "_prizeDistribution",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8988,
                                    "src": "7727:18:33",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                                    }
                                  },
                                  "id": 9013,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "matchCardinality",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 11474,
                                  "src": "7727:35:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "src": "7721:41:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint16",
                                  "typeString": "uint16"
                                }
                              },
                              "src": "7686:76:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f62697452616e676553697a652d746f6f2d6c61726765",
                              "id": 9016,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7776:33:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3e244583f2350f45bf6794161f3c9cb628d7d43da05a7064d2adf7a404a03a5b",
                                "typeString": "literal_string \"DrawCalc/bitRangeSize-too-large\""
                              },
                              "value": "DrawCalc/bitRangeSize-too-large"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3e244583f2350f45bf6794161f3c9cb628d7d43da05a7064d2adf7a404a03a5b",
                                "typeString": "literal_string \"DrawCalc/bitRangeSize-too-large\""
                              }
                            ],
                            "id": 9008,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7665:7:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9017,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7665:154:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9018,
                        "nodeType": "ExpressionStatement",
                        "src": "7665:154:33"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 9023,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 9020,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8988,
                                  "src": "7838:18:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                                  }
                                },
                                "id": 9021,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "bitRangeSize",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11472,
                                "src": "7838:31:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 9022,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7872:1:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "7838:35:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f62697452616e676553697a652d67742d30",
                              "id": 9024,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7875:28:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_1bc7b5f9a3e52be66e1bae40b5347daec05c71148e3f246fa48afaba5869a377",
                                "typeString": "literal_string \"DrawCalc/bitRangeSize-gt-0\""
                              },
                              "value": "DrawCalc/bitRangeSize-gt-0"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_1bc7b5f9a3e52be66e1bae40b5347daec05c71148e3f246fa48afaba5869a377",
                                "typeString": "literal_string \"DrawCalc/bitRangeSize-gt-0\""
                              }
                            ],
                            "id": 9019,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7830:7:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9025,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7830:74:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9026,
                        "nodeType": "ExpressionStatement",
                        "src": "7830:74:33"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 9031,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 9028,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8988,
                                  "src": "7922:18:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                                  }
                                },
                                "id": 9029,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "maxPicksPerUser",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11480,
                                "src": "7922:34:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 9030,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7959:1:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "7922:38:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f6d61785069636b73506572557365722d67742d30",
                              "id": 9032,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7962:31:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_6b68b17181f2f490640a09147a6076477f33dd49ea7fd8e2efdb9f888b23e742",
                                "typeString": "literal_string \"DrawCalc/maxPicksPerUser-gt-0\""
                              },
                              "value": "DrawCalc/maxPicksPerUser-gt-0"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_6b68b17181f2f490640a09147a6076477f33dd49ea7fd8e2efdb9f888b23e742",
                                "typeString": "literal_string \"DrawCalc/maxPicksPerUser-gt-0\""
                              }
                            ],
                            "id": 9027,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7914:7:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9033,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7914:80:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9034,
                        "nodeType": "ExpressionStatement",
                        "src": "7914:80:33"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 9039,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 9036,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8988,
                                  "src": "8012:18:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                                  }
                                },
                                "id": 9037,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "expiryDuration",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11482,
                                "src": "8012:33:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 9038,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "8048:1:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "8012:37:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f6578706972794475726174696f6e2d67742d30",
                              "id": 9040,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8051:30:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_97c809ce43113f425cd71edfa67f5c73daca158347912ba9abee6a2d18a62d38",
                                "typeString": "literal_string \"DrawCalc/expiryDuration-gt-0\""
                              },
                              "value": "DrawCalc/expiryDuration-gt-0"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_97c809ce43113f425cd71edfa67f5c73daca158347912ba9abee6a2d18a62d38",
                                "typeString": "literal_string \"DrawCalc/expiryDuration-gt-0\""
                              }
                            ],
                            "id": 9035,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8004:7:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9041,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8004:78:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9042,
                        "nodeType": "ExpressionStatement",
                        "src": "8004:78:33"
                      },
                      {
                        "assignments": [
                          9044
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9044,
                            "mutability": "mutable",
                            "name": "sumTotalTiers",
                            "nameLocation": "8161:13:33",
                            "nodeType": "VariableDeclaration",
                            "scope": 9111,
                            "src": "8153:21:33",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9043,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8153:7:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9046,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 9045,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "8177:1:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8153:25:33"
                      },
                      {
                        "assignments": [
                          9048
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9048,
                            "mutability": "mutable",
                            "name": "tiersLength",
                            "nameLocation": "8196:11:33",
                            "nodeType": "VariableDeclaration",
                            "scope": 9111,
                            "src": "8188:19:33",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9047,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8188:7:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9052,
                        "initialValue": {
                          "expression": {
                            "expression": {
                              "id": 9049,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8988,
                              "src": "8210:18:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            },
                            "id": 9050,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "tiers",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11488,
                            "src": "8210:24:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint32_$16_calldata_ptr",
                              "typeString": "uint32[16] calldata"
                            }
                          },
                          "id": 9051,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "8210:31:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8188:53:33"
                      },
                      {
                        "body": {
                          "id": 9074,
                          "nodeType": "Block",
                          "src": "8306:106:33",
                          "statements": [
                            {
                              "assignments": [
                                9064
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 9064,
                                  "mutability": "mutable",
                                  "name": "tier",
                                  "nameLocation": "8328:4:33",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 9074,
                                  "src": "8320:12:33",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 9063,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "8320:7:33",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 9069,
                              "initialValue": {
                                "baseExpression": {
                                  "expression": {
                                    "id": 9065,
                                    "name": "_prizeDistribution",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8988,
                                    "src": "8335:18:33",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                                    }
                                  },
                                  "id": 9066,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "tiers",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 11488,
                                  "src": "8335:24:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint32_$16_calldata_ptr",
                                    "typeString": "uint32[16] calldata"
                                  }
                                },
                                "id": 9068,
                                "indexExpression": {
                                  "id": 9067,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9054,
                                  "src": "8360:5:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "8335:31:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "8320:46:33"
                            },
                            {
                              "expression": {
                                "id": 9072,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 9070,
                                  "name": "sumTotalTiers",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9044,
                                  "src": "8380:13:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "+=",
                                "rightHandSide": {
                                  "id": 9071,
                                  "name": "tier",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9064,
                                  "src": "8397:4:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "8380:21:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 9073,
                              "nodeType": "ExpressionStatement",
                              "src": "8380:21:33"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 9059,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 9057,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9054,
                            "src": "8276:5:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 9058,
                            "name": "tiersLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9048,
                            "src": "8284:11:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8276:19:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 9075,
                        "initializationExpression": {
                          "assignments": [
                            9054
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 9054,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "8265:5:33",
                              "nodeType": "VariableDeclaration",
                              "scope": 9075,
                              "src": "8257:13:33",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 9053,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8257:7:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 9056,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 9055,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8273:1:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "8257:17:33"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 9061,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "8297:7:33",
                            "subExpression": {
                              "id": 9060,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9054,
                              "src": "8297:5:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 9062,
                          "nodeType": "ExpressionStatement",
                          "src": "8297:7:33"
                        },
                        "nodeType": "ForStatement",
                        "src": "8252:160:33"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 9079,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 9077,
                                "name": "sumTotalTiers",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9044,
                                "src": "8501:13:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 9078,
                                "name": "TIERS_CEILING",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8632,
                                "src": "8518:13:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "8501:30:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f74696572732d67742d31303025",
                              "id": 9080,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8533:24:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_32188c2fb9458b9b04ecd2ddd4a1cbda73bdc5968bafea54a4dcec20c7e49c08",
                                "typeString": "literal_string \"DrawCalc/tiers-gt-100%\""
                              },
                              "value": "DrawCalc/tiers-gt-100%"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_32188c2fb9458b9b04ecd2ddd4a1cbda73bdc5968bafea54a4dcec20c7e49c08",
                                "typeString": "literal_string \"DrawCalc/tiers-gt-100%\""
                              }
                            ],
                            "id": 9076,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8493:7:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9081,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8493:65:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9082,
                        "nodeType": "ExpressionStatement",
                        "src": "8493:65:33"
                      },
                      {
                        "assignments": [
                          9087
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9087,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "8601:6:33",
                            "nodeType": "VariableDeclaration",
                            "scope": 9111,
                            "src": "8569:38:33",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 9086,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9085,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12224,
                                "src": "8569:24:33"
                              },
                              "referencedDeclaration": 12224,
                              "src": "8569:24:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9089,
                        "initialValue": {
                          "id": 9088,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8647,
                          "src": "8610:14:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8569:55:33"
                      },
                      {
                        "expression": {
                          "id": 9095,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 9090,
                              "name": "prizeDistributionRingBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8643,
                              "src": "8693:27:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$256_storage",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref[256] storage ref"
                              }
                            },
                            "id": 9093,
                            "indexExpression": {
                              "expression": {
                                "id": 9091,
                                "name": "buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9087,
                                "src": "8721:6:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 9092,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "nextIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12221,
                              "src": "8721:16:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "8693:45:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 9094,
                            "name": "_prizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8988,
                            "src": "8741:18:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                            }
                          },
                          "src": "8693:66:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                          }
                        },
                        "id": 9096,
                        "nodeType": "ExpressionStatement",
                        "src": "8693:66:33"
                      },
                      {
                        "expression": {
                          "id": 9102,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9097,
                            "name": "bufferMetadata",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8647,
                            "src": "8809:14:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                              "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 9100,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8985,
                                "src": "8838:7:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 9098,
                                "name": "buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9087,
                                "src": "8826:6:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 9099,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "push",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12290,
                              "src": "8826:11:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_struct$_Buffer_$12224_memory_ptr_$bound_to$_t_struct$_Buffer_$12224_memory_ptr_$",
                                "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (struct DrawRingBufferLib.Buffer memory)"
                              }
                            },
                            "id": 9101,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "8826:20:33",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer memory"
                            }
                          },
                          "src": "8809:37:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "id": 9103,
                        "nodeType": "ExpressionStatement",
                        "src": "8809:37:33"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 9105,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8985,
                              "src": "8883:7:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 9106,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8988,
                              "src": "8892:18:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            ],
                            "id": 9104,
                            "name": "PrizeDistributionSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11405,
                            "src": "8862:20:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$11491_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IPrizeDistributionSource.PrizeDistribution memory)"
                            }
                          },
                          "id": 9107,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8862:49:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9108,
                        "nodeType": "EmitStatement",
                        "src": "8857:54:33"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 9109,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "8929:4:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 8992,
                        "id": 9110,
                        "nodeType": "Return",
                        "src": "8922:11:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8983,
                    "nodeType": "StructuredDocumentation",
                    "src": "7153:184:33",
                    "text": " @notice Set newest PrizeDistributionBuffer in ring buffer storage.\n @param _drawId       drawId\n @param _prizeDistribution PrizeDistributionBuffer struct"
                  },
                  "id": 9112,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_pushPrizeDistribution",
                  "nameLocation": "7351:22:33",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8989,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8985,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "7390:7:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 9112,
                        "src": "7383:14:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8984,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "7383:6:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8988,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "7459:18:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 9112,
                        "src": "7407:70:33",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8987,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8986,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "7407:42:33"
                          },
                          "referencedDeclaration": 11491,
                          "src": "7407:42:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7373:110:33"
                  },
                  "returnParameters": {
                    "id": 8992,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8991,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9112,
                        "src": "7502:4:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8990,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "7502:4:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7501:6:33"
                  },
                  "scope": 9113,
                  "src": "7342:1598:33",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 9114,
              "src": "904:8038:33",
              "usedErrors": []
            }
          ],
          "src": "37:8906:33"
        },
        "id": 33
      },
      "contracts/PrizeDistributor.sol": {
        "ast": {
          "absolutePath": "contracts/PrizeDistributor.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "IDrawBeacon": [
              11241
            ],
            "IDrawBuffer": [
              11318
            ],
            "IDrawCalculator": [
              11391
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributor": [
              11601
            ],
            "Ownable": [
              4086
            ],
            "PrizeDistributor": [
              9486
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 9487,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 9115,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:34"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 9116,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9487,
              "sourceUnit": 664,
              "src": "61:56:34",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 9117,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9487,
              "sourceUnit": 1118,
              "src": "118:65:34",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "id": 9118,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9487,
              "sourceUnit": 4087,
              "src": "184:69:34",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IPrizeDistributor.sol",
              "file": "./interfaces/IPrizeDistributor.sol",
              "id": 9119,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9487,
              "sourceUnit": 11602,
              "src": "255:44:34",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IDrawCalculator.sol",
              "file": "./interfaces/IDrawCalculator.sol",
              "id": 9120,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9487,
              "sourceUnit": 11392,
              "src": "300:42:34",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 9122,
                    "name": "IPrizeDistributor",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11601,
                    "src": "1063:17:34"
                  },
                  "id": 9123,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1063:17:34"
                },
                {
                  "baseName": {
                    "id": 9124,
                    "name": "Ownable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 4086,
                    "src": "1082:7:34"
                  },
                  "id": 9125,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1082:7:34"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 9121,
                "nodeType": "StructuredDocumentation",
                "src": "344:689:34",
                "text": " @title  PoolTogether V4 PrizeDistributor\n @author PoolTogether Inc Team\n @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\nPrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \nfrom reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\nif an \"optimal\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\nthe previous prize distributor claim payout."
              },
              "fullyImplemented": true,
              "id": 9486,
              "linearizedBaseContracts": [
                9486,
                4086,
                11601
              ],
              "name": "PrizeDistributor",
              "nameLocation": "1043:16:34",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 9129,
                  "libraryName": {
                    "id": 9126,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1117,
                    "src": "1102:9:34"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1096:27:34",
                  "typeName": {
                    "id": 9128,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 9127,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "1116:6:34"
                    },
                    "referencedDeclaration": 663,
                    "src": "1116:6:34",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 9130,
                    "nodeType": "StructuredDocumentation",
                    "src": "1183:34:34",
                    "text": "@notice DrawCalculator address"
                  },
                  "id": 9133,
                  "mutability": "mutable",
                  "name": "drawCalculator",
                  "nameLocation": "1247:14:34",
                  "nodeType": "VariableDeclaration",
                  "scope": 9486,
                  "src": "1222:39:34",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                    "typeString": "contract IDrawCalculator"
                  },
                  "typeName": {
                    "id": 9132,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 9131,
                      "name": "IDrawCalculator",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11391,
                      "src": "1222:15:34"
                    },
                    "referencedDeclaration": 11391,
                    "src": "1222:15:34",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                      "typeString": "contract IDrawCalculator"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 9134,
                    "nodeType": "StructuredDocumentation",
                    "src": "1268:25:34",
                    "text": "@notice Token address"
                  },
                  "id": 9137,
                  "mutability": "immutable",
                  "name": "token",
                  "nameLocation": "1324:5:34",
                  "nodeType": "VariableDeclaration",
                  "scope": 9486,
                  "src": "1298:31:34",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IERC20_$663",
                    "typeString": "contract IERC20"
                  },
                  "typeName": {
                    "id": 9136,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 9135,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "1298:6:34"
                    },
                    "referencedDeclaration": 663,
                    "src": "1298:6:34",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 9138,
                    "nodeType": "StructuredDocumentation",
                    "src": "1336:52:34",
                    "text": "@notice Maps users => drawId => paid out balance"
                  },
                  "id": 9144,
                  "mutability": "mutable",
                  "name": "userDrawPayouts",
                  "nameLocation": "1450:15:34",
                  "nodeType": "VariableDeclaration",
                  "scope": 9486,
                  "src": "1393:72:34",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$",
                    "typeString": "mapping(address => mapping(uint256 => uint256))"
                  },
                  "typeName": {
                    "id": 9143,
                    "keyType": {
                      "id": 9139,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1401:7:34",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1393:47:34",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$",
                      "typeString": "mapping(address => mapping(uint256 => uint256))"
                    },
                    "valueType": {
                      "id": 9142,
                      "keyType": {
                        "id": 9140,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1420:7:34",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "nodeType": "Mapping",
                      "src": "1412:27:34",
                      "typeDescriptions": {
                        "typeIdentifier": "t_mapping$_t_uint256_$_t_uint256_$",
                        "typeString": "mapping(uint256 => uint256)"
                      },
                      "valueType": {
                        "id": 9141,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1431:7:34",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      }
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9184,
                    "nodeType": "Block",
                    "src": "1858:198:34",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9160,
                              "name": "_drawCalculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9153,
                              "src": "1887:15:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                                "typeString": "contract IDrawCalculator"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                                "typeString": "contract IDrawCalculator"
                              }
                            ],
                            "id": 9159,
                            "name": "_setDrawCalculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9469,
                            "src": "1868:18:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IDrawCalculator_$11391_$returns$__$",
                              "typeString": "function (contract IDrawCalculator)"
                            }
                          },
                          "id": 9161,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1868:35:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9162,
                        "nodeType": "ExpressionStatement",
                        "src": "1868:35:34"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 9172,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 9166,
                                    "name": "_token",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9150,
                                    "src": "1929:6:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IERC20_$663",
                                      "typeString": "contract IERC20"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IERC20_$663",
                                      "typeString": "contract IERC20"
                                    }
                                  ],
                                  "id": 9165,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1921:7:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 9164,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1921:7:34",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 9167,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1921:15:34",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 9170,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1948:1:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 9169,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1940:7:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 9168,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1940:7:34",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 9171,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1940:10:34",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1921:29:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a654469737472696275746f722f746f6b656e2d6e6f742d7a65726f2d61646472657373",
                              "id": 9173,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1952:41:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b09861a6e3472a0ae06dbc1049ae23a78f713c98749e48e17d9e49fc97adfcdd",
                                "typeString": "literal_string \"PrizeDistributor/token-not-zero-address\""
                              },
                              "value": "PrizeDistributor/token-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b09861a6e3472a0ae06dbc1049ae23a78f713c98749e48e17d9e49fc97adfcdd",
                                "typeString": "literal_string \"PrizeDistributor/token-not-zero-address\""
                              }
                            ],
                            "id": 9163,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1913:7:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9174,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1913:81:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9175,
                        "nodeType": "ExpressionStatement",
                        "src": "1913:81:34"
                      },
                      {
                        "expression": {
                          "id": 9178,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9176,
                            "name": "token",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9137,
                            "src": "2004:5:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$663",
                              "typeString": "contract IERC20"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 9177,
                            "name": "_token",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9150,
                            "src": "2012:6:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$663",
                              "typeString": "contract IERC20"
                            }
                          },
                          "src": "2004:14:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "id": 9179,
                        "nodeType": "ExpressionStatement",
                        "src": "2004:14:34"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 9181,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9150,
                              "src": "2042:6:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            ],
                            "id": 9180,
                            "name": "TokenSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11530,
                            "src": "2033:8:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IERC20_$663_$returns$__$",
                              "typeString": "function (contract IERC20)"
                            }
                          },
                          "id": 9182,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2033:16:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9183,
                        "nodeType": "EmitStatement",
                        "src": "2028:21:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9145,
                    "nodeType": "StructuredDocumentation",
                    "src": "1520:211:34",
                    "text": " @notice Initialize PrizeDistributor smart contract.\n @param _owner          Owner address\n @param _token          Token address\n @param _drawCalculator DrawCalculator address"
                  },
                  "id": 9185,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 9156,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9147,
                          "src": "1850:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 9157,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 9155,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4086,
                        "src": "1842:7:34"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1842:15:34"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9154,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9147,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1765:6:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9185,
                        "src": "1757:14:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9146,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1757:7:34",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9150,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "1788:6:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9185,
                        "src": "1781:13:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 9149,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9148,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "1781:6:34"
                          },
                          "referencedDeclaration": 663,
                          "src": "1781:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9153,
                        "mutability": "mutable",
                        "name": "_drawCalculator",
                        "nameLocation": "1820:15:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9185,
                        "src": "1804:31:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 9152,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9151,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11391,
                            "src": "1804:15:34"
                          },
                          "referencedDeclaration": 11391,
                          "src": "1804:15:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1747:94:34"
                  },
                  "returnParameters": {
                    "id": 9158,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1858:0:34"
                  },
                  "scope": 9486,
                  "src": "1736:320:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11553
                  ],
                  "body": {
                    "id": 9291,
                    "nodeType": "Block",
                    "src": "2302:1056:34",
                    "statements": [
                      {
                        "assignments": [
                          9200
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9200,
                            "mutability": "mutable",
                            "name": "totalPayout",
                            "nameLocation": "2329:11:34",
                            "nodeType": "VariableDeclaration",
                            "scope": 9291,
                            "src": "2321:19:34",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9199,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2321:7:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9201,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2321:19:34"
                      },
                      {
                        "assignments": [
                          9206,
                          null
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9206,
                            "mutability": "mutable",
                            "name": "drawPayouts",
                            "nameLocation": "2377:11:34",
                            "nodeType": "VariableDeclaration",
                            "scope": 9291,
                            "src": "2360:28:34",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 9204,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "2360:7:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 9205,
                              "nodeType": "ArrayTypeName",
                              "src": "2360:9:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          },
                          null
                        ],
                        "id": 9213,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 9209,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9188,
                              "src": "2419:5:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 9210,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9191,
                              "src": "2426:8:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            },
                            {
                              "id": 9211,
                              "name": "_data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9193,
                              "src": "2436:5:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_calldata_ptr",
                                "typeString": "bytes calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              },
                              {
                                "typeIdentifier": "t_bytes_calldata_ptr",
                                "typeString": "bytes calldata"
                              }
                            ],
                            "expression": {
                              "id": 9207,
                              "name": "drawCalculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9133,
                              "src": "2394:14:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                                "typeString": "contract IDrawCalculator"
                              }
                            },
                            "id": 9208,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "calculate",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11364,
                            "src": "2394:24:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$_t_array$_t_uint32_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$",
                              "typeString": "function (address,uint32[] memory,bytes memory) view external returns (uint256[] memory,bytes memory)"
                            }
                          },
                          "id": 9212,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2394:48:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(uint256[] memory,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2359:83:34"
                      },
                      {
                        "assignments": [
                          9215
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9215,
                            "mutability": "mutable",
                            "name": "drawPayoutsLength",
                            "nameLocation": "2529:17:34",
                            "nodeType": "VariableDeclaration",
                            "scope": 9291,
                            "src": "2521:25:34",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9214,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2521:7:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9218,
                        "initialValue": {
                          "expression": {
                            "id": 9216,
                            "name": "drawPayouts",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9206,
                            "src": "2549:11:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "id": 9217,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "2549:18:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2521:46:34"
                      },
                      {
                        "body": {
                          "id": 9282,
                          "nodeType": "Block",
                          "src": "2655:625:34",
                          "statements": [
                            {
                              "assignments": [
                                9230
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 9230,
                                  "mutability": "mutable",
                                  "name": "drawId",
                                  "nameLocation": "2676:6:34",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 9282,
                                  "src": "2669:13:34",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "typeName": {
                                    "id": 9229,
                                    "name": "uint32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2669:6:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 9234,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 9231,
                                  "name": "_drawIds",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9191,
                                  "src": "2685:8:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                    "typeString": "uint32[] calldata"
                                  }
                                },
                                "id": 9233,
                                "indexExpression": {
                                  "id": 9232,
                                  "name": "payoutIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9220,
                                  "src": "2694:11:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "2685:21:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2669:37:34"
                            },
                            {
                              "assignments": [
                                9236
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 9236,
                                  "mutability": "mutable",
                                  "name": "payout",
                                  "nameLocation": "2728:6:34",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 9282,
                                  "src": "2720:14:34",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 9235,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2720:7:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 9240,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 9237,
                                  "name": "drawPayouts",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9206,
                                  "src": "2737:11:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                    "typeString": "uint256[] memory"
                                  }
                                },
                                "id": 9239,
                                "indexExpression": {
                                  "id": 9238,
                                  "name": "payoutIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9220,
                                  "src": "2749:11:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "2737:24:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2720:41:34"
                            },
                            {
                              "assignments": [
                                9242
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 9242,
                                  "mutability": "mutable",
                                  "name": "oldPayout",
                                  "nameLocation": "2783:9:34",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 9282,
                                  "src": "2775:17:34",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 9241,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2775:7:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 9247,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "id": 9244,
                                    "name": "_user",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9188,
                                    "src": "2819:5:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 9245,
                                    "name": "drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9230,
                                    "src": "2826:6:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  ],
                                  "id": 9243,
                                  "name": "_getDrawPayoutBalanceOf",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9422,
                                  "src": "2795:23:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint32_$returns$_t_uint256_$",
                                    "typeString": "function (address,uint32) view returns (uint256)"
                                  }
                                },
                                "id": 9246,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2795:38:34",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2775:58:34"
                            },
                            {
                              "assignments": [
                                9249
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 9249,
                                  "mutability": "mutable",
                                  "name": "payoutDiff",
                                  "nameLocation": "2855:10:34",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 9282,
                                  "src": "2847:18:34",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 9248,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2847:7:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 9251,
                              "initialValue": {
                                "hexValue": "30",
                                "id": 9250,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2868:1:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2847:22:34"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 9255,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 9253,
                                      "name": "payout",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 9236,
                                      "src": "2971:6:34",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": ">",
                                    "rightExpression": {
                                      "id": 9254,
                                      "name": "oldPayout",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 9242,
                                      "src": "2980:9:34",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "2971:18:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f7a65726f2d7061796f7574",
                                    "id": 9256,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2991:30:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_stringliteral_2c805cde282169c73a3ef40c45bfc372741317bb5df0479880c6224616953113",
                                      "typeString": "literal_string \"PrizeDistributor/zero-payout\""
                                    },
                                    "value": "PrizeDistributor/zero-payout"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    {
                                      "typeIdentifier": "t_stringliteral_2c805cde282169c73a3ef40c45bfc372741317bb5df0479880c6224616953113",
                                      "typeString": "literal_string \"PrizeDistributor/zero-payout\""
                                    }
                                  ],
                                  "id": 9252,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "2963:7:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 9257,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2963:59:34",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 9258,
                              "nodeType": "ExpressionStatement",
                              "src": "2963:59:34"
                            },
                            {
                              "id": 9265,
                              "nodeType": "UncheckedBlock",
                              "src": "3037:74:34",
                              "statements": [
                                {
                                  "expression": {
                                    "id": 9263,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftHandSide": {
                                      "id": 9259,
                                      "name": "payoutDiff",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 9249,
                                      "src": "3065:10:34",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "Assignment",
                                    "operator": "=",
                                    "rightHandSide": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 9262,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 9260,
                                        "name": "payout",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9236,
                                        "src": "3078:6:34",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "id": 9261,
                                        "name": "oldPayout",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9242,
                                        "src": "3087:9:34",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "3078:18:34",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "3065:31:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "id": 9264,
                                  "nodeType": "ExpressionStatement",
                                  "src": "3065:31:34"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 9267,
                                    "name": "_user",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9188,
                                    "src": "3149:5:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 9268,
                                    "name": "drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9230,
                                    "src": "3156:6:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  {
                                    "id": 9269,
                                    "name": "payout",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9236,
                                    "src": "3164:6:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 9266,
                                  "name": "_setDrawPayoutBalanceOf",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9440,
                                  "src": "3125:23:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint32_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint32,uint256)"
                                  }
                                },
                                "id": 9270,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3125:46:34",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 9271,
                              "nodeType": "ExpressionStatement",
                              "src": "3125:46:34"
                            },
                            {
                              "expression": {
                                "id": 9274,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 9272,
                                  "name": "totalPayout",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9200,
                                  "src": "3186:11:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "+=",
                                "rightHandSide": {
                                  "id": 9273,
                                  "name": "payoutDiff",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9249,
                                  "src": "3201:10:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "3186:25:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 9275,
                              "nodeType": "ExpressionStatement",
                              "src": "3186:25:34"
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 9277,
                                    "name": "_user",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9188,
                                    "src": "3243:5:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 9278,
                                    "name": "drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9230,
                                    "src": "3250:6:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  {
                                    "id": 9279,
                                    "name": "payoutDiff",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9249,
                                    "src": "3258:10:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 9276,
                                  "name": "ClaimedDraw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11518,
                                  "src": "3231:11:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint32_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint32,uint256)"
                                  }
                                },
                                "id": 9280,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3231:38:34",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 9281,
                              "nodeType": "EmitStatement",
                              "src": "3226:43:34"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 9225,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 9223,
                            "name": "payoutIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9220,
                            "src": "2607:11:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 9224,
                            "name": "drawPayoutsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9215,
                            "src": "2621:17:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2607:31:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 9283,
                        "initializationExpression": {
                          "assignments": [
                            9220
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 9220,
                              "mutability": "mutable",
                              "name": "payoutIndex",
                              "nameLocation": "2590:11:34",
                              "nodeType": "VariableDeclaration",
                              "scope": 9283,
                              "src": "2582:19:34",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 9219,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "2582:7:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 9222,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 9221,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2604:1:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "2582:23:34"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 9227,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "2640:13:34",
                            "subExpression": {
                              "id": 9226,
                              "name": "payoutIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9220,
                              "src": "2640:11:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 9228,
                          "nodeType": "ExpressionStatement",
                          "src": "2640:13:34"
                        },
                        "nodeType": "ForStatement",
                        "src": "2577:703:34"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9285,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9188,
                              "src": "3303:5:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 9286,
                              "name": "totalPayout",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9200,
                              "src": "3310:11:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9284,
                            "name": "_awardPayout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9485,
                            "src": "3290:12:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 9287,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3290:32:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9288,
                        "nodeType": "ExpressionStatement",
                        "src": "3290:32:34"
                      },
                      {
                        "expression": {
                          "id": 9289,
                          "name": "totalPayout",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9200,
                          "src": "3340:11:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 9198,
                        "id": 9290,
                        "nodeType": "Return",
                        "src": "3333:18:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9186,
                    "nodeType": "StructuredDocumentation",
                    "src": "2118:33:34",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "bb7d4e2d",
                  "id": 9292,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "claim",
                  "nameLocation": "2165:5:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9195,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2275:8:34"
                  },
                  "parameters": {
                    "id": 9194,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9188,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2188:5:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9292,
                        "src": "2180:13:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9187,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2180:7:34",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9191,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "2221:8:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9292,
                        "src": "2203:26:34",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9189,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2203:6:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 9190,
                          "nodeType": "ArrayTypeName",
                          "src": "2203:8:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9193,
                        "mutability": "mutable",
                        "name": "_data",
                        "nameLocation": "2254:5:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9292,
                        "src": "2239:20:34",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 9192,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2239:5:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2170:95:34"
                  },
                  "returnParameters": {
                    "id": 9198,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9197,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9292,
                        "src": "2293:7:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9196,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2293:7:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2292:9:34"
                  },
                  "scope": 9486,
                  "src": "2156:1202:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11600
                  ],
                  "body": {
                    "id": 9346,
                    "nodeType": "Block",
                    "src": "3548:314:34",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 9314,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 9309,
                                "name": "_to",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9298,
                                "src": "3566:3:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 9312,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3581:1:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 9311,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "3573:7:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 9310,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3573:7:34",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 9313,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3573:10:34",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "3566:17:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a654469737472696275746f722f726563697069656e742d6e6f742d7a65726f2d61646472657373",
                              "id": 9315,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3585:45:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c3c1c5a9485c31eb22e3896f76db76d5b6b9e87350b8d12dde12857181904473",
                                "typeString": "literal_string \"PrizeDistributor/recipient-not-zero-address\""
                              },
                              "value": "PrizeDistributor/recipient-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c3c1c5a9485c31eb22e3896f76db76d5b6b9e87350b8d12dde12857181904473",
                                "typeString": "literal_string \"PrizeDistributor/recipient-not-zero-address\""
                              }
                            ],
                            "id": 9308,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3558:7:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9316,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3558:73:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9317,
                        "nodeType": "ExpressionStatement",
                        "src": "3558:73:34"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 9327,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 9321,
                                    "name": "_erc20Token",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9296,
                                    "src": "3657:11:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IERC20_$663",
                                      "typeString": "contract IERC20"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IERC20_$663",
                                      "typeString": "contract IERC20"
                                    }
                                  ],
                                  "id": 9320,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "3649:7:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 9319,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3649:7:34",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 9322,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3649:20:34",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 9325,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3681:1:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 9324,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "3673:7:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 9323,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3673:7:34",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 9326,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3673:10:34",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "3649:34:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a654469737472696275746f722f45524332302d6e6f742d7a65726f2d61646472657373",
                              "id": 9328,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3685:41:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_5e9c21b3ab066ee6718747f9a9d142fb59b132e00e6d2d77cd842d397552abe3",
                                "typeString": "literal_string \"PrizeDistributor/ERC20-not-zero-address\""
                              },
                              "value": "PrizeDistributor/ERC20-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_5e9c21b3ab066ee6718747f9a9d142fb59b132e00e6d2d77cd842d397552abe3",
                                "typeString": "literal_string \"PrizeDistributor/ERC20-not-zero-address\""
                              }
                            ],
                            "id": 9318,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3641:7:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9329,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3641:86:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9330,
                        "nodeType": "ExpressionStatement",
                        "src": "3641:86:34"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9334,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9298,
                              "src": "3763:3:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 9335,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9300,
                              "src": "3768:7:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 9331,
                              "name": "_erc20Token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9296,
                              "src": "3738:11:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 9333,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 924,
                            "src": "3738:24:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 9336,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3738:38:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9337,
                        "nodeType": "ExpressionStatement",
                        "src": "3738:38:34"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 9339,
                              "name": "_erc20Token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9296,
                              "src": "3807:11:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            {
                              "id": 9340,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9298,
                              "src": "3820:3:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 9341,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9300,
                              "src": "3825:7:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9338,
                            "name": "ERC20Withdrawn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11540,
                            "src": "3792:14:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 9342,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3792:41:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9343,
                        "nodeType": "EmitStatement",
                        "src": "3787:46:34"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 9344,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "3851:4:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 9307,
                        "id": 9345,
                        "nodeType": "Return",
                        "src": "3844:11:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9293,
                    "nodeType": "StructuredDocumentation",
                    "src": "3364:33:34",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "44004cc1",
                  "id": 9347,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 9304,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 9303,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "3523:9:34"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3523:9:34"
                    }
                  ],
                  "name": "withdrawERC20",
                  "nameLocation": "3411:13:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9302,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3514:8:34"
                  },
                  "parameters": {
                    "id": 9301,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9296,
                        "mutability": "mutable",
                        "name": "_erc20Token",
                        "nameLocation": "3441:11:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9347,
                        "src": "3434:18:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 9295,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9294,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "3434:6:34"
                          },
                          "referencedDeclaration": 663,
                          "src": "3434:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9298,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "3470:3:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9347,
                        "src": "3462:11:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9297,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3462:7:34",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9300,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "3491:7:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9347,
                        "src": "3483:15:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9299,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3483:7:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3424:80:34"
                  },
                  "returnParameters": {
                    "id": 9307,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9306,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9347,
                        "src": "3542:4:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 9305,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3542:4:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3541:6:34"
                  },
                  "scope": 9486,
                  "src": "3402:460:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11560
                  ],
                  "body": {
                    "id": 9357,
                    "nodeType": "Block",
                    "src": "3984:38:34",
                    "statements": [
                      {
                        "expression": {
                          "id": 9355,
                          "name": "drawCalculator",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9133,
                          "src": "4001:14:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "functionReturnParameters": 9354,
                        "id": 9356,
                        "nodeType": "Return",
                        "src": "3994:21:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9348,
                    "nodeType": "StructuredDocumentation",
                    "src": "3868:33:34",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "2d680cfa",
                  "id": 9358,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCalculator",
                  "nameLocation": "3915:17:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9350,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3949:8:34"
                  },
                  "parameters": {
                    "id": 9349,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3932:2:34"
                  },
                  "returnParameters": {
                    "id": 9354,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9353,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9358,
                        "src": "3967:15:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 9352,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9351,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11391,
                            "src": "3967:15:34"
                          },
                          "referencedDeclaration": 11391,
                          "src": "3967:15:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3966:17:34"
                  },
                  "scope": 9486,
                  "src": "3906:116:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11570
                  ],
                  "body": {
                    "id": 9374,
                    "nodeType": "Block",
                    "src": "4206:63:34",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9370,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9361,
                              "src": "4247:5:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 9371,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9363,
                              "src": "4254:7:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 9369,
                            "name": "_getDrawPayoutBalanceOf",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9422,
                            "src": "4223:23:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (address,uint32) view returns (uint256)"
                            }
                          },
                          "id": 9372,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4223:39:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 9368,
                        "id": 9373,
                        "nodeType": "Return",
                        "src": "4216:46:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9359,
                    "nodeType": "StructuredDocumentation",
                    "src": "4028:33:34",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "b7f892d1",
                  "id": 9375,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawPayoutBalanceOf",
                  "nameLocation": "4075:22:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9365,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4167:8:34"
                  },
                  "parameters": {
                    "id": 9364,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9361,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4106:5:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9375,
                        "src": "4098:13:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9360,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4098:7:34",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9363,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "4120:7:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9375,
                        "src": "4113:14:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9362,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4113:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4097:31:34"
                  },
                  "returnParameters": {
                    "id": 9368,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9367,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9375,
                        "src": "4193:7:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9366,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4193:7:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4192:9:34"
                  },
                  "scope": 9486,
                  "src": "4066:203:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11577
                  ],
                  "body": {
                    "id": 9385,
                    "nodeType": "Block",
                    "src": "4373:29:34",
                    "statements": [
                      {
                        "expression": {
                          "id": 9383,
                          "name": "token",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9137,
                          "src": "4390:5:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "functionReturnParameters": 9382,
                        "id": 9384,
                        "nodeType": "Return",
                        "src": "4383:12:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9376,
                    "nodeType": "StructuredDocumentation",
                    "src": "4275:33:34",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "21df0da7",
                  "id": 9386,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "4322:8:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9378,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4347:8:34"
                  },
                  "parameters": {
                    "id": 9377,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4330:2:34"
                  },
                  "returnParameters": {
                    "id": 9382,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9381,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9386,
                        "src": "4365:6:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 9380,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9379,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "4365:6:34"
                          },
                          "referencedDeclaration": 663,
                          "src": "4365:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4364:8:34"
                  },
                  "scope": 9486,
                  "src": "4313:89:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11587
                  ],
                  "body": {
                    "id": 9405,
                    "nodeType": "Block",
                    "src": "4595:82:34",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9400,
                              "name": "_newCalculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9390,
                              "src": "4624:14:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                                "typeString": "contract IDrawCalculator"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                                "typeString": "contract IDrawCalculator"
                              }
                            ],
                            "id": 9399,
                            "name": "_setDrawCalculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9469,
                            "src": "4605:18:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IDrawCalculator_$11391_$returns$__$",
                              "typeString": "function (contract IDrawCalculator)"
                            }
                          },
                          "id": 9401,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4605:34:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9402,
                        "nodeType": "ExpressionStatement",
                        "src": "4605:34:34"
                      },
                      {
                        "expression": {
                          "id": 9403,
                          "name": "_newCalculator",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9390,
                          "src": "4656:14:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "functionReturnParameters": 9398,
                        "id": 9404,
                        "nodeType": "Return",
                        "src": "4649:21:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9387,
                    "nodeType": "StructuredDocumentation",
                    "src": "4408:33:34",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "454a8140",
                  "id": 9406,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 9394,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 9393,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "4547:9:34"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4547:9:34"
                    }
                  ],
                  "name": "setDrawCalculator",
                  "nameLocation": "4455:17:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9392,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4530:8:34"
                  },
                  "parameters": {
                    "id": 9391,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9390,
                        "mutability": "mutable",
                        "name": "_newCalculator",
                        "nameLocation": "4489:14:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9406,
                        "src": "4473:30:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 9389,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9388,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11391,
                            "src": "4473:15:34"
                          },
                          "referencedDeclaration": 11391,
                          "src": "4473:15:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4472:32:34"
                  },
                  "returnParameters": {
                    "id": 9398,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9397,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9406,
                        "src": "4574:15:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 9396,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9395,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11391,
                            "src": "4574:15:34"
                          },
                          "referencedDeclaration": 11391,
                          "src": "4574:15:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4573:17:34"
                  },
                  "scope": 9486,
                  "src": "4446:231:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 9421,
                    "nodeType": "Block",
                    "src": "4863:55:34",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 9415,
                              "name": "userDrawPayouts",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9144,
                              "src": "4880:15:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(uint256 => uint256))"
                              }
                            },
                            "id": 9417,
                            "indexExpression": {
                              "id": 9416,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9408,
                              "src": "4896:5:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "4880:22:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_uint256_$_t_uint256_$",
                              "typeString": "mapping(uint256 => uint256)"
                            }
                          },
                          "id": 9419,
                          "indexExpression": {
                            "id": 9418,
                            "name": "_drawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9410,
                            "src": "4903:7:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "4880:31:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 9414,
                        "id": 9420,
                        "nodeType": "Return",
                        "src": "4873:38:34"
                      }
                    ]
                  },
                  "id": 9422,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getDrawPayoutBalanceOf",
                  "nameLocation": "4748:23:34",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9411,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9408,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4780:5:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9422,
                        "src": "4772:13:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9407,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4772:7:34",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9410,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "4794:7:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9422,
                        "src": "4787:14:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9409,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4787:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4771:31:34"
                  },
                  "returnParameters": {
                    "id": 9414,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9413,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9422,
                        "src": "4850:7:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9412,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4850:7:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4849:9:34"
                  },
                  "scope": 9486,
                  "src": "4739:179:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9439,
                    "nodeType": "Block",
                    "src": "5044:58:34",
                    "statements": [
                      {
                        "expression": {
                          "id": 9437,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "baseExpression": {
                                "id": 9431,
                                "name": "userDrawPayouts",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9144,
                                "src": "5054:15:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$",
                                  "typeString": "mapping(address => mapping(uint256 => uint256))"
                                }
                              },
                              "id": 9434,
                              "indexExpression": {
                                "id": 9432,
                                "name": "_user",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9424,
                                "src": "5070:5:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "5054:22:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_uint256_$_t_uint256_$",
                                "typeString": "mapping(uint256 => uint256)"
                              }
                            },
                            "id": 9435,
                            "indexExpression": {
                              "id": 9433,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9426,
                              "src": "5077:7:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "5054:31:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 9436,
                            "name": "_payout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9428,
                            "src": "5088:7:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "5054:41:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 9438,
                        "nodeType": "ExpressionStatement",
                        "src": "5054:41:34"
                      }
                    ]
                  },
                  "id": 9440,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setDrawPayoutBalanceOf",
                  "nameLocation": "4933:23:34",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9429,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9424,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4974:5:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9440,
                        "src": "4966:13:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9423,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4966:7:34",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9426,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "4996:7:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9440,
                        "src": "4989:14:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9425,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4989:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9428,
                        "mutability": "mutable",
                        "name": "_payout",
                        "nameLocation": "5021:7:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9440,
                        "src": "5013:15:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9427,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5013:7:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4956:78:34"
                  },
                  "returnParameters": {
                    "id": 9430,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5044:0:34"
                  },
                  "scope": 9486,
                  "src": "4924:178:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9468,
                    "nodeType": "Block",
                    "src": "5315:187:34",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 9456,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 9450,
                                    "name": "_newCalculator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9444,
                                    "src": "5341:14:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                                      "typeString": "contract IDrawCalculator"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                                      "typeString": "contract IDrawCalculator"
                                    }
                                  ],
                                  "id": 9449,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "5333:7:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 9448,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5333:7:34",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 9451,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5333:23:34",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 9454,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "5368:1:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 9453,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "5360:7:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 9452,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5360:7:34",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 9455,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5360:10:34",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "5333:37:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f",
                              "id": 9457,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5372:32:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a",
                                "typeString": "literal_string \"PrizeDistributor/calc-not-zero\""
                              },
                              "value": "PrizeDistributor/calc-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a",
                                "typeString": "literal_string \"PrizeDistributor/calc-not-zero\""
                              }
                            ],
                            "id": 9447,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5325:7:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9458,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5325:80:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9459,
                        "nodeType": "ExpressionStatement",
                        "src": "5325:80:34"
                      },
                      {
                        "expression": {
                          "id": 9462,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9460,
                            "name": "drawCalculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9133,
                            "src": "5415:14:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                              "typeString": "contract IDrawCalculator"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 9461,
                            "name": "_newCalculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9444,
                            "src": "5432:14:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                              "typeString": "contract IDrawCalculator"
                            }
                          },
                          "src": "5415:31:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "id": 9463,
                        "nodeType": "ExpressionStatement",
                        "src": "5415:31:34"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 9465,
                              "name": "_newCalculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9444,
                              "src": "5480:14:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                                "typeString": "contract IDrawCalculator"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                                "typeString": "contract IDrawCalculator"
                              }
                            ],
                            "id": 9464,
                            "name": "DrawCalculatorSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11524,
                            "src": "5462:17:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IDrawCalculator_$11391_$returns$__$",
                              "typeString": "function (contract IDrawCalculator)"
                            }
                          },
                          "id": 9466,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5462:33:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9467,
                        "nodeType": "EmitStatement",
                        "src": "5457:38:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9441,
                    "nodeType": "StructuredDocumentation",
                    "src": "5108:133:34",
                    "text": " @notice Sets DrawCalculator reference for individual draw id.\n @param _newCalculator  DrawCalculator address"
                  },
                  "id": 9469,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setDrawCalculator",
                  "nameLocation": "5255:18:34",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9445,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9444,
                        "mutability": "mutable",
                        "name": "_newCalculator",
                        "nameLocation": "5290:14:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9469,
                        "src": "5274:30:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 9443,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9442,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11391,
                            "src": "5274:15:34"
                          },
                          "referencedDeclaration": 11391,
                          "src": "5274:15:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5273:32:34"
                  },
                  "returnParameters": {
                    "id": 9446,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5315:0:34"
                  },
                  "scope": 9486,
                  "src": "5246:256:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9484,
                    "nodeType": "Block",
                    "src": "5722:49:34",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9480,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9472,
                              "src": "5751:3:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 9481,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9474,
                              "src": "5756:7:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 9477,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9137,
                              "src": "5732:5:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 9479,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 924,
                            "src": "5732:18:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 9482,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5732:32:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9483,
                        "nodeType": "ExpressionStatement",
                        "src": "5732:32:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9470,
                    "nodeType": "StructuredDocumentation",
                    "src": "5508:148:34",
                    "text": " @notice Transfer claimed draw(s) total payout to user.\n @param _to      User address\n @param _amount  Transfer amount"
                  },
                  "id": 9485,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_awardPayout",
                  "nameLocation": "5670:12:34",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9475,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9472,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "5691:3:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9485,
                        "src": "5683:11:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9471,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5683:7:34",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9474,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "5704:7:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 9485,
                        "src": "5696:15:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9473,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5696:7:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5682:30:34"
                  },
                  "returnParameters": {
                    "id": 9476,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5722:0:34"
                  },
                  "scope": 9486,
                  "src": "5661:110:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 9487,
              "src": "1034:4740:34",
              "usedErrors": []
            }
          ],
          "src": "37:5738:34"
        },
        "id": 34
      },
      "contracts/Reserve.sol": {
        "ast": {
          "absolutePath": "contracts/Reserve.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "IERC20": [
              663
            ],
            "IReserve": [
              12006
            ],
            "Manageable": [
              3931
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "Ownable": [
              4086
            ],
            "Reserve": [
              9942
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 9943,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 9488,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:35"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 9489,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9943,
              "sourceUnit": 3932,
              "src": "61:72:35",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 9490,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9943,
              "sourceUnit": 664,
              "src": "134:56:35",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 9491,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9943,
              "sourceUnit": 1118,
              "src": "191:65:35",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IReserve.sol",
              "file": "./interfaces/IReserve.sol",
              "id": 9492,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9943,
              "sourceUnit": 12007,
              "src": "258:35:35",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/libraries/ObservationLib.sol",
              "file": "./libraries/ObservationLib.sol",
              "id": 9493,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9943,
              "sourceUnit": 12593,
              "src": "294:40:35",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/libraries/RingBufferLib.sol",
              "file": "./libraries/RingBufferLib.sol",
              "id": 9494,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9943,
              "sourceUnit": 12850,
              "src": "335:39:35",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 9496,
                    "name": "IReserve",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12006,
                    "src": "1319:8:35"
                  },
                  "id": 9497,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1319:8:35"
                },
                {
                  "baseName": {
                    "id": 9498,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3931,
                    "src": "1329:10:35"
                  },
                  "id": 9499,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1329:10:35"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 9495,
                "nodeType": "StructuredDocumentation",
                "src": "376:922:35",
                "text": " @title  PoolTogether V4 Reserve\n @author PoolTogether Inc Team\n @notice The Reserve contract provides historical lookups of a token balance increase during a target timerange.\nAs the Reserve contract transfers OUT tokens, the withdraw accumulator is increased. When tokens are\ntransfered IN new checkpoint *can* be created if checkpoint() is called after transfering tokens.\nBy using the reserve and withdraw accumulators to create a new checkpoint, any contract or account\ncan lookup the balance increase of the reserve for a target timerange.   \n @dev    By calculating the total held tokens in a specific time range, contracts that require knowledge \nof captured interest during a draw period, can easily call into the Reserve and deterministically\ndetermine the newly aqcuired tokens for that time range. "
              },
              "fullyImplemented": true,
              "id": 9942,
              "linearizedBaseContracts": [
                9942,
                3931,
                4086,
                12006
              ],
              "name": "Reserve",
              "nameLocation": "1308:7:35",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 9503,
                  "libraryName": {
                    "id": 9500,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1117,
                    "src": "1352:9:35"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1346:27:35",
                  "typeName": {
                    "id": 9502,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 9501,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "1366:6:35"
                    },
                    "referencedDeclaration": 663,
                    "src": "1366:6:35",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 9504,
                    "nodeType": "StructuredDocumentation",
                    "src": "1379:23:35",
                    "text": "@notice ERC20 token"
                  },
                  "functionSelector": "fc0c546a",
                  "id": 9507,
                  "mutability": "immutable",
                  "name": "token",
                  "nameLocation": "1431:5:35",
                  "nodeType": "VariableDeclaration",
                  "scope": 9942,
                  "src": "1407:29:35",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IERC20_$663",
                    "typeString": "contract IERC20"
                  },
                  "typeName": {
                    "id": 9506,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 9505,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "1407:6:35"
                    },
                    "referencedDeclaration": 663,
                    "src": "1407:6:35",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 9508,
                    "nodeType": "StructuredDocumentation",
                    "src": "1443:46:35",
                    "text": "@notice Total withdraw amount from reserve"
                  },
                  "functionSelector": "2d00ddda",
                  "id": 9510,
                  "mutability": "mutable",
                  "name": "withdrawAccumulator",
                  "nameLocation": "1509:19:35",
                  "nodeType": "VariableDeclaration",
                  "scope": 9942,
                  "src": "1494:34:35",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint224",
                    "typeString": "uint224"
                  },
                  "typeName": {
                    "id": 9509,
                    "name": "uint224",
                    "nodeType": "ElementaryTypeName",
                    "src": "1494:7:35",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint224",
                      "typeString": "uint224"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "id": 9512,
                  "mutability": "mutable",
                  "name": "_gap",
                  "nameLocation": "1549:4:35",
                  "nodeType": "VariableDeclaration",
                  "scope": 9942,
                  "src": "1534:19:35",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint32",
                    "typeString": "uint32"
                  },
                  "typeName": {
                    "id": 9511,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1534:6:35",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 9514,
                  "mutability": "mutable",
                  "name": "nextIndex",
                  "nameLocation": "1576:9:35",
                  "nodeType": "VariableDeclaration",
                  "scope": 9942,
                  "src": "1560:25:35",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 9513,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "1560:6:35",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 9516,
                  "mutability": "mutable",
                  "name": "cardinality",
                  "nameLocation": "1607:11:35",
                  "nodeType": "VariableDeclaration",
                  "scope": 9942,
                  "src": "1591:27:35",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 9515,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "1591:6:35",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 9517,
                    "nodeType": "StructuredDocumentation",
                    "src": "1625:46:35",
                    "text": "@notice The maximum number of twab entries"
                  },
                  "id": 9520,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "1701:15:35",
                  "nodeType": "VariableDeclaration",
                  "scope": 9942,
                  "src": "1676:51:35",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 9518,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "1676:6:35",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "value": {
                    "hexValue": "3136373737323135",
                    "id": 9519,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1719:8:35",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_16777215_by_1",
                      "typeString": "int_const 16777215"
                    },
                    "value": "16777215"
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 9525,
                  "mutability": "mutable",
                  "name": "reserveAccumulators",
                  "nameLocation": "1800:19:35",
                  "nodeType": "VariableDeclaration",
                  "scope": 9942,
                  "src": "1747:72:35",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                    "typeString": "struct ObservationLib.Observation[16777215]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 9522,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 9521,
                        "name": "ObservationLib.Observation",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 12454,
                        "src": "1747:26:35"
                      },
                      "referencedDeclaration": 12454,
                      "src": "1747:26:35",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                        "typeString": "struct ObservationLib.Observation"
                      }
                    },
                    "id": 9524,
                    "length": {
                      "id": 9523,
                      "name": "MAX_CARDINALITY",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 9520,
                      "src": "1774:15:35",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint24",
                        "typeString": "uint24"
                      }
                    },
                    "nodeType": "ArrayTypeName",
                    "src": "1747:43:35",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                      "typeString": "struct ObservationLib.Observation[16777215]"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "anonymous": false,
                  "id": 9530,
                  "name": "Deployed",
                  "nameLocation": "1876:8:35",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 9529,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9528,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "1900:5:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9530,
                        "src": "1885:20:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 9527,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9526,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "1885:6:35"
                          },
                          "referencedDeclaration": 663,
                          "src": "1885:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1884:22:35"
                  },
                  "src": "1870:37:35"
                },
                {
                  "body": {
                    "id": 9550,
                    "nodeType": "Block",
                    "src": "2164:62:35",
                    "statements": [
                      {
                        "expression": {
                          "id": 9544,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9542,
                            "name": "token",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9507,
                            "src": "2174:5:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$663",
                              "typeString": "contract IERC20"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 9543,
                            "name": "_token",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9536,
                            "src": "2182:6:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$663",
                              "typeString": "contract IERC20"
                            }
                          },
                          "src": "2174:14:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "id": 9545,
                        "nodeType": "ExpressionStatement",
                        "src": "2174:14:35"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 9547,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9536,
                              "src": "2212:6:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            ],
                            "id": 9546,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9530,
                            "src": "2203:8:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IERC20_$663_$returns$__$",
                              "typeString": "function (contract IERC20)"
                            }
                          },
                          "id": 9548,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2203:16:35",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9549,
                        "nodeType": "EmitStatement",
                        "src": "2198:21:35"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9531,
                    "nodeType": "StructuredDocumentation",
                    "src": "1962:138:35",
                    "text": " @notice Constructs Ticket with passed parameters.\n @param _owner Owner address\n @param _token ERC20 address"
                  },
                  "id": 9551,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 9539,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9533,
                          "src": "2156:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 9540,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 9538,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4086,
                        "src": "2148:7:35"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2148:15:35"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9537,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9533,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "2125:6:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9551,
                        "src": "2117:14:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9532,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2117:7:35",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9536,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "2140:6:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9551,
                        "src": "2133:13:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 9535,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9534,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "2133:6:35"
                          },
                          "referencedDeclaration": 663,
                          "src": "2133:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2116:31:35"
                  },
                  "returnParameters": {
                    "id": 9541,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2164:0:35"
                  },
                  "scope": 9942,
                  "src": "2105:121:35",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11980
                  ],
                  "body": {
                    "id": 9559,
                    "nodeType": "Block",
                    "src": "2357:30:35",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 9556,
                            "name": "_checkpoint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9874,
                            "src": "2367:11:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                              "typeString": "function ()"
                            }
                          },
                          "id": 9557,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2367:13:35",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9558,
                        "nodeType": "ExpressionStatement",
                        "src": "2367:13:35"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9552,
                    "nodeType": "StructuredDocumentation",
                    "src": "2288:24:35",
                    "text": "@inheritdoc IReserve"
                  },
                  "functionSelector": "c2c4c5c1",
                  "id": 9560,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "checkpoint",
                  "nameLocation": "2326:10:35",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9554,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2348:8:35"
                  },
                  "parameters": {
                    "id": 9553,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2336:2:35"
                  },
                  "returnParameters": {
                    "id": 9555,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2357:0:35"
                  },
                  "scope": 9942,
                  "src": "2317:70:35",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11987
                  ],
                  "body": {
                    "id": 9570,
                    "nodeType": "Block",
                    "src": "2482:29:35",
                    "statements": [
                      {
                        "expression": {
                          "id": 9568,
                          "name": "token",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9507,
                          "src": "2499:5:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "functionReturnParameters": 9567,
                        "id": 9569,
                        "nodeType": "Return",
                        "src": "2492:12:35"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9561,
                    "nodeType": "StructuredDocumentation",
                    "src": "2393:24:35",
                    "text": "@inheritdoc IReserve"
                  },
                  "functionSelector": "21df0da7",
                  "id": 9571,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "2431:8:35",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9563,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2456:8:35"
                  },
                  "parameters": {
                    "id": 9562,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2439:2:35"
                  },
                  "returnParameters": {
                    "id": 9567,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9566,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9571,
                        "src": "2474:6:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 9565,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9564,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "2474:6:35"
                          },
                          "referencedDeclaration": 663,
                          "src": "2474:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2473:8:35"
                  },
                  "scope": 9942,
                  "src": "2422:89:35",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11997
                  ],
                  "body": {
                    "id": 9641,
                    "nodeType": "Block",
                    "src": "2707:906:35",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 9585,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 9583,
                                "name": "_startTimestamp",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9574,
                                "src": "2725:15:35",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<",
                              "rightExpression": {
                                "id": 9584,
                                "name": "_endTimestamp",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9576,
                                "src": "2743:13:35",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "2725:31:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "526573657276652f73746172742d6c6573732d7468616e2d656e64",
                              "id": 9586,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2758:29:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_4d84b71e55d064d66bafac0d640c9a3219796f833676f31bba05b3cc08ac0349",
                                "typeString": "literal_string \"Reserve/start-less-than-end\""
                              },
                              "value": "Reserve/start-less-than-end"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_4d84b71e55d064d66bafac0d640c9a3219796f833676f31bba05b3cc08ac0349",
                                "typeString": "literal_string \"Reserve/start-less-than-end\""
                              }
                            ],
                            "id": 9582,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2717:7:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9587,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2717:71:35",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9588,
                        "nodeType": "ExpressionStatement",
                        "src": "2717:71:35"
                      },
                      {
                        "assignments": [
                          9590
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9590,
                            "mutability": "mutable",
                            "name": "_cardinality",
                            "nameLocation": "2805:12:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9641,
                            "src": "2798:19:35",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 9589,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "2798:6:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9592,
                        "initialValue": {
                          "id": 9591,
                          "name": "cardinality",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9516,
                          "src": "2820:11:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2798:33:35"
                      },
                      {
                        "assignments": [
                          9594
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9594,
                            "mutability": "mutable",
                            "name": "_nextIndex",
                            "nameLocation": "2848:10:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9641,
                            "src": "2841:17:35",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 9593,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "2841:6:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9596,
                        "initialValue": {
                          "id": 9595,
                          "name": "nextIndex",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9514,
                          "src": "2861:9:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2841:29:35"
                      },
                      {
                        "assignments": [
                          9598,
                          9601
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9598,
                            "mutability": "mutable",
                            "name": "_newestIndex",
                            "nameLocation": "2889:12:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9641,
                            "src": "2882:19:35",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 9597,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "2882:6:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 9601,
                            "mutability": "mutable",
                            "name": "_newestObservation",
                            "nameLocation": "2937:18:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9641,
                            "src": "2903:52:35",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 9600,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9599,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "2903:26:35"
                              },
                              "referencedDeclaration": 12454,
                              "src": "2903:26:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9605,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 9603,
                              "name": "_nextIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9594,
                              "src": "2981:10:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            ],
                            "id": 9602,
                            "name": "_getNewestObservation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9941,
                            "src": "2959:21:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint24_$returns$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "function (uint24) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 9604,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2959:33:35",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2881:111:35"
                      },
                      {
                        "assignments": [
                          9607,
                          9610
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9607,
                            "mutability": "mutable",
                            "name": "_oldestIndex",
                            "nameLocation": "3010:12:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9641,
                            "src": "3003:19:35",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 9606,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "3003:6:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 9610,
                            "mutability": "mutable",
                            "name": "_oldestObservation",
                            "nameLocation": "3058:18:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9641,
                            "src": "3024:52:35",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 9609,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9608,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "3024:26:35"
                              },
                              "referencedDeclaration": 12454,
                              "src": "3024:26:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9614,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 9612,
                              "name": "_nextIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9594,
                              "src": "3102:10:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            ],
                            "id": 9611,
                            "name": "_getOldestObservation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9912,
                            "src": "3080:21:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint24_$returns$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "function (uint24) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 9613,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3080:33:35",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3002:111:35"
                      },
                      {
                        "assignments": [
                          9616
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9616,
                            "mutability": "mutable",
                            "name": "_start",
                            "nameLocation": "3132:6:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9641,
                            "src": "3124:14:35",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            },
                            "typeName": {
                              "id": 9615,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "3124:7:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9625,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 9618,
                              "name": "_newestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9601,
                              "src": "3179:18:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 9619,
                              "name": "_oldestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9610,
                              "src": "3211:18:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 9620,
                              "name": "_newestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9598,
                              "src": "3243:12:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9621,
                              "name": "_oldestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9607,
                              "src": "3269:12:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9622,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9590,
                              "src": "3295:12:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9623,
                              "name": "_startTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9574,
                              "src": "3321:15:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 9617,
                            "name": "_getReserveAccumulatedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9759,
                            "src": "3141:24:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Observation_$12454_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_uint24_$_t_uint24_$_t_uint24_$_t_uint32_$returns$_t_uint224_$",
                              "typeString": "function (struct ObservationLib.Observation memory,struct ObservationLib.Observation memory,uint24,uint24,uint24,uint32) view returns (uint224)"
                            }
                          },
                          "id": 9624,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3141:205:35",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3124:222:35"
                      },
                      {
                        "assignments": [
                          9627
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9627,
                            "mutability": "mutable",
                            "name": "_end",
                            "nameLocation": "3365:4:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9641,
                            "src": "3357:12:35",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            },
                            "typeName": {
                              "id": 9626,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "3357:7:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9636,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 9629,
                              "name": "_newestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9601,
                              "src": "3410:18:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 9630,
                              "name": "_oldestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9610,
                              "src": "3442:18:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 9631,
                              "name": "_newestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9598,
                              "src": "3474:12:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9632,
                              "name": "_oldestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9607,
                              "src": "3500:12:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9633,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9590,
                              "src": "3526:12:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9634,
                              "name": "_endTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9576,
                              "src": "3552:13:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 9628,
                            "name": "_getReserveAccumulatedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9759,
                            "src": "3372:24:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Observation_$12454_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_uint24_$_t_uint24_$_t_uint24_$_t_uint32_$returns$_t_uint224_$",
                              "typeString": "function (struct ObservationLib.Observation memory,struct ObservationLib.Observation memory,uint24,uint24,uint24,uint32) view returns (uint224)"
                            }
                          },
                          "id": 9635,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3372:203:35",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3357:218:35"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "id": 9639,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 9637,
                            "name": "_end",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9627,
                            "src": "3593:4:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 9638,
                            "name": "_start",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9616,
                            "src": "3600:6:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "src": "3593:13:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 9581,
                        "id": 9640,
                        "nodeType": "Return",
                        "src": "3586:20:35"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9572,
                    "nodeType": "StructuredDocumentation",
                    "src": "2517:24:35",
                    "text": "@inheritdoc IReserve"
                  },
                  "functionSelector": "af6a9400",
                  "id": 9642,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getReserveAccumulatedBetween",
                  "nameLocation": "2555:28:35",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9578,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2668:8:35"
                  },
                  "parameters": {
                    "id": 9577,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9574,
                        "mutability": "mutable",
                        "name": "_startTimestamp",
                        "nameLocation": "2591:15:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9642,
                        "src": "2584:22:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9573,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2584:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9576,
                        "mutability": "mutable",
                        "name": "_endTimestamp",
                        "nameLocation": "2615:13:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9642,
                        "src": "2608:20:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9575,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2608:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2583:46:35"
                  },
                  "returnParameters": {
                    "id": 9581,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9580,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9642,
                        "src": "2694:7:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 9579,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "2694:7:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2693:9:35"
                  },
                  "scope": 9942,
                  "src": "2546:1067:35",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    12005
                  ],
                  "body": {
                    "id": 9675,
                    "nodeType": "Block",
                    "src": "3742:184:35",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 9653,
                            "name": "_checkpoint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9874,
                            "src": "3752:11:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                              "typeString": "function ()"
                            }
                          },
                          "id": 9654,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3752:13:35",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9655,
                        "nodeType": "ExpressionStatement",
                        "src": "3752:13:35"
                      },
                      {
                        "expression": {
                          "id": 9661,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9656,
                            "name": "withdrawAccumulator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9510,
                            "src": "3776:19:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 9659,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9647,
                                "src": "3807:7:35",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 9658,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "3799:7:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint224_$",
                                "typeString": "type(uint224)"
                              },
                              "typeName": {
                                "id": 9657,
                                "name": "uint224",
                                "nodeType": "ElementaryTypeName",
                                "src": "3799:7:35",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 9660,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3799:16:35",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "src": "3776:39:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "id": 9662,
                        "nodeType": "ExpressionStatement",
                        "src": "3776:39:35"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9666,
                              "name": "_recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9645,
                              "src": "3853:10:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 9667,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9647,
                              "src": "3865:7:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 9663,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9507,
                              "src": "3834:5:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 9665,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 924,
                            "src": "3834:18:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 9668,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3834:39:35",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9669,
                        "nodeType": "ExpressionStatement",
                        "src": "3834:39:35"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 9671,
                              "name": "_recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9645,
                              "src": "3899:10:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 9672,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9647,
                              "src": "3911:7:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9670,
                            "name": "Withdrawn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11976,
                            "src": "3889:9:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 9673,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3889:30:35",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9674,
                        "nodeType": "EmitStatement",
                        "src": "3884:35:35"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9643,
                    "nodeType": "StructuredDocumentation",
                    "src": "3619:24:35",
                    "text": "@inheritdoc IReserve"
                  },
                  "functionSelector": "205c2878",
                  "id": 9676,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 9651,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 9650,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3930,
                        "src": "3723:18:35"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3723:18:35"
                    }
                  ],
                  "name": "withdrawTo",
                  "nameLocation": "3657:10:35",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9649,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3714:8:35"
                  },
                  "parameters": {
                    "id": 9648,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9645,
                        "mutability": "mutable",
                        "name": "_recipient",
                        "nameLocation": "3676:10:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9676,
                        "src": "3668:18:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9644,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3668:7:35",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9647,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "3696:7:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9676,
                        "src": "3688:15:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9646,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3688:7:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3667:37:35"
                  },
                  "returnParameters": {
                    "id": 9652,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3742:0:35"
                  },
                  "scope": 9942,
                  "src": "3648:278:35",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 9758,
                    "nodeType": "Block",
                    "src": "4881:2221:35",
                    "statements": [
                      {
                        "assignments": [
                          9697
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9697,
                            "mutability": "mutable",
                            "name": "timeNow",
                            "nameLocation": "4898:7:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9758,
                            "src": "4891:14:35",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 9696,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "4891:6:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9703,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 9700,
                                "name": "block",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -4,
                                "src": "4915:5:35",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_block",
                                  "typeString": "block"
                                }
                              },
                              "id": 9701,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "src": "4915:15:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9699,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "4908:6:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 9698,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "4908:6:35",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 9702,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4908:23:35",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4891:40:35"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          },
                          "id": 9706,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 9704,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9689,
                            "src": "4990:12:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 9705,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5006:1:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "4990:17:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 9709,
                        "nodeType": "IfStatement",
                        "src": "4986:31:35",
                        "trueBody": {
                          "expression": {
                            "hexValue": "30",
                            "id": 9707,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5016:1:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "functionReturnParameters": 9695,
                          "id": 9708,
                          "nodeType": "Return",
                          "src": "5009:8:35"
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 9713,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 9710,
                              "name": "_oldestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9683,
                              "src": "5689:18:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 9711,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12453,
                            "src": "5689:28:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "id": 9712,
                            "name": "_timestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9691,
                            "src": "5720:10:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "5689:41:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "documentation": " IF oldestObservation.timestamp is after timestamp: T[old ]\n the Reserve did NOT have a balance or the ring buffer\n no longer contains that timestamp checkpoint.",
                        "id": 9717,
                        "nodeType": "IfStatement",
                        "src": "5685:80:35",
                        "trueBody": {
                          "id": 9716,
                          "nodeType": "Block",
                          "src": "5732:33:35",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 9714,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "5753:1:35",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 9695,
                              "id": 9715,
                              "nodeType": "Return",
                              "src": "5746:8:35"
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 9721,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 9718,
                              "name": "_newestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9680,
                              "src": "6001:18:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 9719,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12453,
                            "src": "6001:28:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 9720,
                            "name": "_timestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9691,
                            "src": "6033:10:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "6001:42:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "documentation": " IF newestObservation.timestamp is before timestamp: [ new]T\n return _newestObservation.amount since observation\n contains the highest checkpointed reserveAccumulator.",
                        "id": 9726,
                        "nodeType": "IfStatement",
                        "src": "5997:105:35",
                        "trueBody": {
                          "id": 9725,
                          "nodeType": "Block",
                          "src": "6045:57:35",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 9722,
                                  "name": "_newestObservation",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9680,
                                  "src": "6066:18:35",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 9723,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "amount",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12451,
                                "src": "6066:25:35",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "functionReturnParameters": 9695,
                              "id": 9724,
                              "nodeType": "Return",
                              "src": "6059:32:35"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          9731,
                          9734
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9731,
                            "mutability": "mutable",
                            "name": "beforeOrAt",
                            "nameLocation": "6323:10:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9758,
                            "src": "6289:44:35",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 9730,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9729,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "6289:26:35"
                              },
                              "referencedDeclaration": 12454,
                              "src": "6289:26:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 9734,
                            "mutability": "mutable",
                            "name": "atOrAfter",
                            "nameLocation": "6381:9:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9758,
                            "src": "6347:43:35",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 9733,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9732,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "6347:26:35"
                              },
                              "referencedDeclaration": 12454,
                              "src": "6347:26:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9744,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 9737,
                              "name": "reserveAccumulators",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9525,
                              "src": "6448:19:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "id": 9738,
                              "name": "_newestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9685,
                              "src": "6485:12:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9739,
                              "name": "_oldestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9687,
                              "src": "6515:12:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9740,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9691,
                              "src": "6545:10:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 9741,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9689,
                              "src": "6573:12:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9742,
                              "name": "timeNow",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9697,
                              "src": "6603:7:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 9735,
                              "name": "ObservationLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12592,
                              "src": "6403:14:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ObservationLib_$12592_$",
                                "typeString": "type(library ObservationLib)"
                              }
                            },
                            "id": 9736,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "binarySearch",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12591,
                            "src": "6403:27:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint24_$_t_uint32_$returns$_t_struct$_Observation_$12454_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,uint24,uint24,uint32,uint24,uint32) view returns (struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 9743,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6403:221:35",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_Observation_$12454_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$",
                            "typeString": "tuple(struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6275:349:35"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 9748,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 9745,
                              "name": "atOrAfter",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9734,
                              "src": "6958:9:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 9746,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12453,
                            "src": "6958:19:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 9747,
                            "name": "_timestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9691,
                            "src": "6981:10:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "6958:33:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 9756,
                          "nodeType": "Block",
                          "src": "7047:49:35",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 9753,
                                  "name": "beforeOrAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9731,
                                  "src": "7068:10:35",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 9754,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "amount",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12451,
                                "src": "7068:17:35",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "functionReturnParameters": 9695,
                              "id": 9755,
                              "nodeType": "Return",
                              "src": "7061:24:35"
                            }
                          ]
                        },
                        "id": 9757,
                        "nodeType": "IfStatement",
                        "src": "6954:142:35",
                        "trueBody": {
                          "id": 9752,
                          "nodeType": "Block",
                          "src": "6993:48:35",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 9749,
                                  "name": "atOrAfter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9734,
                                  "src": "7014:9:35",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 9750,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "amount",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12451,
                                "src": "7014:16:35",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "functionReturnParameters": 9695,
                              "id": 9751,
                              "nodeType": "Return",
                              "src": "7007:23:35"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9677,
                    "nodeType": "StructuredDocumentation",
                    "src": "3988:578:35",
                    "text": " @notice Find optimal observation checkpoint using target timestamp\n @dev    Uses binary search if target timestamp is within ring buffer range.\n @param _newestObservation ObservationLib.Observation\n @param _oldestObservation ObservationLib.Observation\n @param _newestIndex The index of the newest observation\n @param _oldestIndex The index of the oldest observation\n @param _cardinality       RingBuffer Range\n @param _timestamp          Timestamp target\n @return Optimal reserveAccumlator for timestamp."
                  },
                  "id": 9759,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getReserveAccumulatedAt",
                  "nameLocation": "4580:24:35",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9692,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9680,
                        "mutability": "mutable",
                        "name": "_newestObservation",
                        "nameLocation": "4648:18:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9759,
                        "src": "4614:52:35",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 9679,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9678,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "4614:26:35"
                          },
                          "referencedDeclaration": 12454,
                          "src": "4614:26:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9683,
                        "mutability": "mutable",
                        "name": "_oldestObservation",
                        "nameLocation": "4710:18:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9759,
                        "src": "4676:52:35",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 9682,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9681,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "4676:26:35"
                          },
                          "referencedDeclaration": 12454,
                          "src": "4676:26:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9685,
                        "mutability": "mutable",
                        "name": "_newestIndex",
                        "nameLocation": "4745:12:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9759,
                        "src": "4738:19:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9684,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "4738:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9687,
                        "mutability": "mutable",
                        "name": "_oldestIndex",
                        "nameLocation": "4774:12:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9759,
                        "src": "4767:19:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9686,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "4767:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9689,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "4803:12:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9759,
                        "src": "4796:19:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9688,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "4796:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9691,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "4832:10:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9759,
                        "src": "4825:17:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9690,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4825:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4604:244:35"
                  },
                  "returnParameters": {
                    "id": 9695,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9694,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9759,
                        "src": "4872:7:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 9693,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "4872:7:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4871:9:35"
                  },
                  "scope": 9942,
                  "src": "4571:2531:35",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9873,
                    "nodeType": "Block",
                    "src": "7202:1925:35",
                    "statements": [
                      {
                        "assignments": [
                          9764
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9764,
                            "mutability": "mutable",
                            "name": "_cardinality",
                            "nameLocation": "7219:12:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9873,
                            "src": "7212:19:35",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 9763,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "7212:6:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9766,
                        "initialValue": {
                          "id": 9765,
                          "name": "cardinality",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9516,
                          "src": "7234:11:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7212:33:35"
                      },
                      {
                        "assignments": [
                          9768
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9768,
                            "mutability": "mutable",
                            "name": "_nextIndex",
                            "nameLocation": "7262:10:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9873,
                            "src": "7255:17:35",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 9767,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "7255:6:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9770,
                        "initialValue": {
                          "id": 9769,
                          "name": "nextIndex",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9514,
                          "src": "7275:9:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7255:29:35"
                      },
                      {
                        "assignments": [
                          9772
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9772,
                            "mutability": "mutable",
                            "name": "_balanceOfReserve",
                            "nameLocation": "7302:17:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9873,
                            "src": "7294:25:35",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9771,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7294:7:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9780,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 9777,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "7346:4:35",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_Reserve_$9942",
                                    "typeString": "contract Reserve"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_Reserve_$9942",
                                    "typeString": "contract Reserve"
                                  }
                                ],
                                "id": 9776,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "7338:7:35",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 9775,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "7338:7:35",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 9778,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "7338:13:35",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 9773,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9507,
                              "src": "7322:5:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 9774,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 602,
                            "src": "7322:15:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view external returns (uint256)"
                            }
                          },
                          "id": 9779,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7322:30:35",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7294:58:35"
                      },
                      {
                        "assignments": [
                          9782
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9782,
                            "mutability": "mutable",
                            "name": "_withdrawAccumulator",
                            "nameLocation": "7370:20:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9873,
                            "src": "7362:28:35",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            },
                            "typeName": {
                              "id": 9781,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "7362:7:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9784,
                        "initialValue": {
                          "id": 9783,
                          "name": "withdrawAccumulator",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9510,
                          "src": "7393:19:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7362:50:35"
                      },
                      {
                        "assignments": [
                          9786,
                          9789
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9786,
                            "mutability": "mutable",
                            "name": "newestIndex",
                            "nameLocation": "7438:11:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9873,
                            "src": "7431:18:35",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 9785,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "7431:6:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 9789,
                            "mutability": "mutable",
                            "name": "newestObservation",
                            "nameLocation": "7485:17:35",
                            "nodeType": "VariableDeclaration",
                            "scope": 9873,
                            "src": "7451:51:35",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 9788,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9787,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "7451:26:35"
                              },
                              "referencedDeclaration": 12454,
                              "src": "7451:26:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9793,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 9791,
                              "name": "_nextIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9768,
                              "src": "7528:10:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            ],
                            "id": 9790,
                            "name": "_getNewestObservation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9941,
                            "src": "7506:21:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint24_$returns$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "function (uint24) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 9792,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7506:33:35",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7430:109:35"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 9799,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 9796,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9794,
                              "name": "_balanceOfReserve",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9772,
                              "src": "7774:17:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "id": 9795,
                              "name": "_withdrawAccumulator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9782,
                              "src": "7794:20:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "src": "7774:40:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "expression": {
                              "id": 9797,
                              "name": "newestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9789,
                              "src": "7817:17:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 9798,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "amount",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12451,
                            "src": "7817:24:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "src": "7774:67:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "documentation": " IF tokens have been deposited into Reserve contract since the last checkpoint\n create a new Reserve balance checkpoint. The will will update multiple times in a single block.",
                        "id": 9872,
                        "nodeType": "IfStatement",
                        "src": "7770:1351:35",
                        "trueBody": {
                          "id": 9871,
                          "nodeType": "Block",
                          "src": "7843:1278:35",
                          "statements": [
                            {
                              "assignments": [
                                9801
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 9801,
                                  "mutability": "mutable",
                                  "name": "nowTime",
                                  "nameLocation": "7864:7:35",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 9871,
                                  "src": "7857:14:35",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "typeName": {
                                    "id": 9800,
                                    "name": "uint32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7857:6:35",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 9807,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 9804,
                                      "name": "block",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -4,
                                      "src": "7881:5:35",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_block",
                                        "typeString": "block"
                                      }
                                    },
                                    "id": 9805,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "timestamp",
                                    "nodeType": "MemberAccess",
                                    "src": "7881:15:35",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 9803,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "7874:6:35",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint32_$",
                                    "typeString": "type(uint32)"
                                  },
                                  "typeName": {
                                    "id": 9802,
                                    "name": "uint32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7874:6:35",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 9806,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7874:23:35",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "7857:40:35"
                            },
                            {
                              "assignments": [
                                9809
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 9809,
                                  "mutability": "mutable",
                                  "name": "newReserveAccumulator",
                                  "nameLocation": "7991:21:35",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 9871,
                                  "src": "7983:29:35",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  },
                                  "typeName": {
                                    "id": 9808,
                                    "name": "uint224",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7983:7:35",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 9816,
                              "initialValue": {
                                "commonType": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                "id": 9815,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [
                                    {
                                      "id": 9812,
                                      "name": "_balanceOfReserve",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 9772,
                                      "src": "8023:17:35",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "id": 9811,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "8015:7:35",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint224_$",
                                      "typeString": "type(uint224)"
                                    },
                                    "typeName": {
                                      "id": 9810,
                                      "name": "uint224",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "8015:7:35",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 9813,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "8015:26:35",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 9814,
                                  "name": "_withdrawAccumulator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9782,
                                  "src": "8044:20:35",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "src": "8015:49:35",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "7983:81:35"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 9820,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 9817,
                                    "name": "newestObservation",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9789,
                                    "src": "8215:17:35",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 9818,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12453,
                                  "src": "8215:27:35",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "id": 9819,
                                  "name": "nowTime",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9801,
                                  "src": "8246:7:35",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "8215:38:35",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 9864,
                                "nodeType": "Block",
                                "src": "8831:205:35",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 9862,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 9854,
                                          "name": "reserveAccumulators",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 9525,
                                          "src": "8849:19:35",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                            "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                          }
                                        },
                                        "id": 9856,
                                        "indexExpression": {
                                          "id": 9855,
                                          "name": "newestIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 9786,
                                          "src": "8869:11:35",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint24",
                                            "typeString": "uint24"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "8849:32:35",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Observation_$12454_storage",
                                          "typeString": "struct ObservationLib.Observation storage ref"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "arguments": [
                                          {
                                            "id": 9859,
                                            "name": "newReserveAccumulator",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9809,
                                            "src": "8941:21:35",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint224",
                                              "typeString": "uint224"
                                            }
                                          },
                                          {
                                            "id": 9860,
                                            "name": "nowTime",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9801,
                                            "src": "8995:7:35",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint224",
                                              "typeString": "uint224"
                                            },
                                            {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          ],
                                          "expression": {
                                            "id": 9857,
                                            "name": "ObservationLib",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12592,
                                            "src": "8884:14:35",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_contract$_ObservationLib_$12592_$",
                                              "typeString": "type(library ObservationLib)"
                                            }
                                          },
                                          "id": 9858,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "Observation",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 12454,
                                          "src": "8884:26:35",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_struct$_Observation_$12454_storage_ptr_$",
                                            "typeString": "type(struct ObservationLib.Observation storage pointer)"
                                          }
                                        },
                                        "id": 9861,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "structConstructorCall",
                                        "lValueRequested": false,
                                        "names": [
                                          "amount",
                                          "timestamp"
                                        ],
                                        "nodeType": "FunctionCall",
                                        "src": "8884:137:35",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                          "typeString": "struct ObservationLib.Observation memory"
                                        }
                                      },
                                      "src": "8849:172:35",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Observation_$12454_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref"
                                      }
                                    },
                                    "id": 9863,
                                    "nodeType": "ExpressionStatement",
                                    "src": "8849:172:35"
                                  }
                                ]
                              },
                              "id": 9865,
                              "nodeType": "IfStatement",
                              "src": "8211:825:35",
                              "trueBody": {
                                "id": 9853,
                                "nodeType": "Block",
                                "src": "8255:418:35",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 9829,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 9821,
                                          "name": "reserveAccumulators",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 9525,
                                          "src": "8273:19:35",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                            "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                          }
                                        },
                                        "id": 9823,
                                        "indexExpression": {
                                          "id": 9822,
                                          "name": "_nextIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 9768,
                                          "src": "8293:10:35",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint24",
                                            "typeString": "uint24"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "8273:31:35",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Observation_$12454_storage",
                                          "typeString": "struct ObservationLib.Observation storage ref"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "arguments": [
                                          {
                                            "id": 9826,
                                            "name": "newReserveAccumulator",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9809,
                                            "src": "8364:21:35",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint224",
                                              "typeString": "uint224"
                                            }
                                          },
                                          {
                                            "id": 9827,
                                            "name": "nowTime",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9801,
                                            "src": "8418:7:35",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint224",
                                              "typeString": "uint224"
                                            },
                                            {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          ],
                                          "expression": {
                                            "id": 9824,
                                            "name": "ObservationLib",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12592,
                                            "src": "8307:14:35",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_contract$_ObservationLib_$12592_$",
                                              "typeString": "type(library ObservationLib)"
                                            }
                                          },
                                          "id": 9825,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "Observation",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 12454,
                                          "src": "8307:26:35",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_struct$_Observation_$12454_storage_ptr_$",
                                            "typeString": "type(struct ObservationLib.Observation storage pointer)"
                                          }
                                        },
                                        "id": 9828,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "structConstructorCall",
                                        "lValueRequested": false,
                                        "names": [
                                          "amount",
                                          "timestamp"
                                        ],
                                        "nodeType": "FunctionCall",
                                        "src": "8307:137:35",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                          "typeString": "struct ObservationLib.Observation memory"
                                        }
                                      },
                                      "src": "8273:171:35",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Observation_$12454_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref"
                                      }
                                    },
                                    "id": 9830,
                                    "nodeType": "ExpressionStatement",
                                    "src": "8273:171:35"
                                  },
                                  {
                                    "expression": {
                                      "id": 9840,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 9831,
                                        "name": "nextIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9514,
                                        "src": "8462:9:35",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint24",
                                          "typeString": "uint24"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "id": 9836,
                                                "name": "_nextIndex",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 9768,
                                                "src": "8505:10:35",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint24",
                                                  "typeString": "uint24"
                                                }
                                              },
                                              {
                                                "id": 9837,
                                                "name": "MAX_CARDINALITY",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 9520,
                                                "src": "8517:15:35",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint24",
                                                  "typeString": "uint24"
                                                }
                                              }
                                            ],
                                            "expression": {
                                              "argumentTypes": [
                                                {
                                                  "typeIdentifier": "t_uint24",
                                                  "typeString": "uint24"
                                                },
                                                {
                                                  "typeIdentifier": "t_uint24",
                                                  "typeString": "uint24"
                                                }
                                              ],
                                              "expression": {
                                                "id": 9834,
                                                "name": "RingBufferLib",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 12849,
                                                "src": "8481:13:35",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12849_$",
                                                  "typeString": "type(library RingBufferLib)"
                                                }
                                              },
                                              "id": 9835,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "memberName": "nextIndex",
                                              "nodeType": "MemberAccess",
                                              "referencedDeclaration": 12848,
                                              "src": "8481:23:35",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                                "typeString": "function (uint256,uint256) pure returns (uint256)"
                                              }
                                            },
                                            "id": 9838,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "kind": "functionCall",
                                            "lValueRequested": false,
                                            "names": [],
                                            "nodeType": "FunctionCall",
                                            "src": "8481:52:35",
                                            "tryCall": false,
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          ],
                                          "id": 9833,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "nodeType": "ElementaryTypeNameExpression",
                                          "src": "8474:6:35",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_uint24_$",
                                            "typeString": "type(uint24)"
                                          },
                                          "typeName": {
                                            "id": 9832,
                                            "name": "uint24",
                                            "nodeType": "ElementaryTypeName",
                                            "src": "8474:6:35",
                                            "typeDescriptions": {}
                                          }
                                        },
                                        "id": 9839,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "typeConversion",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "8474:60:35",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint24",
                                          "typeString": "uint24"
                                        }
                                      },
                                      "src": "8462:72:35",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint24",
                                        "typeString": "uint24"
                                      }
                                    },
                                    "id": 9841,
                                    "nodeType": "ExpressionStatement",
                                    "src": "8462:72:35"
                                  },
                                  {
                                    "condition": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint24",
                                        "typeString": "uint24"
                                      },
                                      "id": 9844,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 9842,
                                        "name": "_cardinality",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9764,
                                        "src": "8556:12:35",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint24",
                                          "typeString": "uint24"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "<",
                                      "rightExpression": {
                                        "id": 9843,
                                        "name": "MAX_CARDINALITY",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9520,
                                        "src": "8571:15:35",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint24",
                                          "typeString": "uint24"
                                        }
                                      },
                                      "src": "8556:30:35",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "id": 9852,
                                    "nodeType": "IfStatement",
                                    "src": "8552:107:35",
                                    "trueBody": {
                                      "id": 9851,
                                      "nodeType": "Block",
                                      "src": "8588:71:35",
                                      "statements": [
                                        {
                                          "expression": {
                                            "id": 9849,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftHandSide": {
                                              "id": 9845,
                                              "name": "cardinality",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 9516,
                                              "src": "8610:11:35",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint24",
                                                "typeString": "uint24"
                                              }
                                            },
                                            "nodeType": "Assignment",
                                            "operator": "=",
                                            "rightHandSide": {
                                              "commonType": {
                                                "typeIdentifier": "t_uint24",
                                                "typeString": "uint24"
                                              },
                                              "id": 9848,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "id": 9846,
                                                "name": "_cardinality",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 9764,
                                                "src": "8624:12:35",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint24",
                                                  "typeString": "uint24"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "+",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 9847,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "8639:1:35",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1_by_1",
                                                  "typeString": "int_const 1"
                                                },
                                                "value": "1"
                                              },
                                              "src": "8624:16:35",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint24",
                                                "typeString": "uint24"
                                              }
                                            },
                                            "src": "8610:30:35",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint24",
                                              "typeString": "uint24"
                                            }
                                          },
                                          "id": 9850,
                                          "nodeType": "ExpressionStatement",
                                          "src": "8610:30:35"
                                        }
                                      ]
                                    }
                                  }
                                ]
                              }
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 9867,
                                    "name": "newReserveAccumulator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9809,
                                    "src": "9066:21:35",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    }
                                  },
                                  {
                                    "id": 9868,
                                    "name": "_withdrawAccumulator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9782,
                                    "src": "9089:20:35",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    },
                                    {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    }
                                  ],
                                  "id": 9866,
                                  "name": "Checkpoint",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11969,
                                  "src": "9055:10:35",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$",
                                    "typeString": "function (uint256,uint256)"
                                  }
                                },
                                "id": 9869,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9055:55:35",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 9870,
                              "nodeType": "EmitStatement",
                              "src": "9050:60:35"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9760,
                    "nodeType": "StructuredDocumentation",
                    "src": "7108:57:35",
                    "text": "@notice Records the currently accrued reserve amount."
                  },
                  "id": 9874,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_checkpoint",
                  "nameLocation": "7179:11:35",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9761,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7190:2:35"
                  },
                  "returnParameters": {
                    "id": 9762,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7202:0:35"
                  },
                  "scope": 9942,
                  "src": "7170:1957:35",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9911,
                    "nodeType": "Block",
                    "src": "9413:315:35",
                    "statements": [
                      {
                        "expression": {
                          "id": 9887,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9885,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9880,
                            "src": "9423:5:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 9886,
                            "name": "_nextIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9877,
                            "src": "9431:10:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "9423:18:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 9888,
                        "nodeType": "ExpressionStatement",
                        "src": "9423:18:35"
                      },
                      {
                        "expression": {
                          "id": 9893,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9889,
                            "name": "observation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9883,
                            "src": "9451:11:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "baseExpression": {
                              "id": 9890,
                              "name": "reserveAccumulators",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9525,
                              "src": "9465:19:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            "id": 9892,
                            "indexExpression": {
                              "id": 9891,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9880,
                              "src": "9485:5:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "9465:26:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage",
                              "typeString": "struct ObservationLib.Observation storage ref"
                            }
                          },
                          "src": "9451:40:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "id": 9894,
                        "nodeType": "ExpressionStatement",
                        "src": "9451:40:35"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 9898,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 9895,
                              "name": "observation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9883,
                              "src": "9610:11:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 9896,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12453,
                            "src": "9610:21:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 9897,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "9635:1:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "9610:26:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 9910,
                        "nodeType": "IfStatement",
                        "src": "9606:116:35",
                        "trueBody": {
                          "id": 9909,
                          "nodeType": "Block",
                          "src": "9638:84:35",
                          "statements": [
                            {
                              "expression": {
                                "id": 9901,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 9899,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9880,
                                  "src": "9652:5:35",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint24",
                                    "typeString": "uint24"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "hexValue": "30",
                                  "id": 9900,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9660:1:35",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "9652:9:35",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              "id": 9902,
                              "nodeType": "ExpressionStatement",
                              "src": "9652:9:35"
                            },
                            {
                              "expression": {
                                "id": 9907,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 9903,
                                  "name": "observation",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9883,
                                  "src": "9675:11:35",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 9904,
                                    "name": "reserveAccumulators",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9525,
                                    "src": "9689:19:35",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                      "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                    }
                                  },
                                  "id": 9906,
                                  "indexExpression": {
                                    "hexValue": "30",
                                    "id": 9905,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9709:1:35",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "9689:22:35",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_storage",
                                    "typeString": "struct ObservationLib.Observation storage ref"
                                  }
                                },
                                "src": "9675:36:35",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 9908,
                              "nodeType": "ExpressionStatement",
                              "src": "9675:36:35"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9875,
                    "nodeType": "StructuredDocumentation",
                    "src": "9133:113:35",
                    "text": "@notice Retrieves the oldest observation\n @param _nextIndex The next index of the Reserve observations"
                  },
                  "id": 9912,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getOldestObservation",
                  "nameLocation": "9260:21:35",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9878,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9877,
                        "mutability": "mutable",
                        "name": "_nextIndex",
                        "nameLocation": "9289:10:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9912,
                        "src": "9282:17:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9876,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "9282:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9281:19:35"
                  },
                  "returnParameters": {
                    "id": 9884,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9880,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "9355:5:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9912,
                        "src": "9348:12:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9879,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "9348:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9883,
                        "mutability": "mutable",
                        "name": "observation",
                        "nameLocation": "9396:11:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9912,
                        "src": "9362:45:35",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 9882,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9881,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "9362:26:35"
                          },
                          "referencedDeclaration": 12454,
                          "src": "9362:26:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9347:61:35"
                  },
                  "scope": 9942,
                  "src": "9251:477:35",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9940,
                    "nodeType": "Block",
                    "src": "10014:137:35",
                    "statements": [
                      {
                        "expression": {
                          "id": 9932,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9923,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9918,
                            "src": "10024:5:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "id": 9928,
                                    "name": "_nextIndex",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9915,
                                    "src": "10065:10:35",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  },
                                  {
                                    "id": 9929,
                                    "name": "MAX_CARDINALITY",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9520,
                                    "src": "10077:15:35",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    },
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  ],
                                  "expression": {
                                    "id": 9926,
                                    "name": "RingBufferLib",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12849,
                                    "src": "10039:13:35",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12849_$",
                                      "typeString": "type(library RingBufferLib)"
                                    }
                                  },
                                  "id": 9927,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "newestIndex",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12830,
                                  "src": "10039:25:35",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                    "typeString": "function (uint256,uint256) pure returns (uint256)"
                                  }
                                },
                                "id": 9930,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10039:54:35",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 9925,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "10032:6:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint24_$",
                                "typeString": "type(uint24)"
                              },
                              "typeName": {
                                "id": 9924,
                                "name": "uint24",
                                "nodeType": "ElementaryTypeName",
                                "src": "10032:6:35",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 9931,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "10032:62:35",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "10024:70:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 9933,
                        "nodeType": "ExpressionStatement",
                        "src": "10024:70:35"
                      },
                      {
                        "expression": {
                          "id": 9938,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9934,
                            "name": "observation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9921,
                            "src": "10104:11:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "baseExpression": {
                              "id": 9935,
                              "name": "reserveAccumulators",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9525,
                              "src": "10118:19:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            "id": 9937,
                            "indexExpression": {
                              "id": 9936,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9918,
                              "src": "10138:5:35",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "10118:26:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage",
                              "typeString": "struct ObservationLib.Observation storage ref"
                            }
                          },
                          "src": "10104:40:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "id": 9939,
                        "nodeType": "ExpressionStatement",
                        "src": "10104:40:35"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9913,
                    "nodeType": "StructuredDocumentation",
                    "src": "9734:113:35",
                    "text": "@notice Retrieves the newest observation\n @param _nextIndex The next index of the Reserve observations"
                  },
                  "id": 9941,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getNewestObservation",
                  "nameLocation": "9861:21:35",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9916,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9915,
                        "mutability": "mutable",
                        "name": "_nextIndex",
                        "nameLocation": "9890:10:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9941,
                        "src": "9883:17:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9914,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "9883:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9882:19:35"
                  },
                  "returnParameters": {
                    "id": 9922,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9918,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "9956:5:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9941,
                        "src": "9949:12:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9917,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "9949:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9921,
                        "mutability": "mutable",
                        "name": "observation",
                        "nameLocation": "9997:11:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 9941,
                        "src": "9963:45:35",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 9920,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9919,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "9963:26:35"
                          },
                          "referencedDeclaration": 12454,
                          "src": "9963:26:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9948:61:35"
                  },
                  "scope": 9942,
                  "src": "9852:299:35",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 9943,
              "src": "1299:8854:35",
              "usedErrors": []
            }
          ],
          "src": "37:10117:35"
        },
        "id": 35
      },
      "contracts/Ticket.sol": {
        "ast": {
          "absolutePath": "contracts/Ticket.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "Context": [
              2413
            ],
            "ControlledToken": [
              5288
            ],
            "Counters": [
              2487
            ],
            "ECDSA": [
              3057
            ],
            "EIP712": [
              3195
            ],
            "ERC20": [
              585
            ],
            "ERC20Permit": [
              857
            ],
            "ExtendedSafeCastLib": [
              12433
            ],
            "IControlledToken": [
              11069
            ],
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ],
            "IERC20Permit": [
              893
            ],
            "ITicket": [
              12213
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ],
            "Ticket": [
              10941
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 10942,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 9944,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:36"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 9945,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10942,
              "sourceUnit": 664,
              "src": "61:56:36",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 9946,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10942,
              "sourceUnit": 1118,
              "src": "118:65:36",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/libraries/ExtendedSafeCastLib.sol",
              "file": "./libraries/ExtendedSafeCastLib.sol",
              "id": 9947,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10942,
              "sourceUnit": 12434,
              "src": "185:45:36",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/libraries/TwabLib.sol",
              "file": "./libraries/TwabLib.sol",
              "id": 9948,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10942,
              "sourceUnit": 13600,
              "src": "231:33:36",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/ITicket.sol",
              "file": "./interfaces/ITicket.sol",
              "id": 9949,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10942,
              "sourceUnit": 12214,
              "src": "265:34:36",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/ControlledToken.sol",
              "file": "./ControlledToken.sol",
              "id": 9950,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10942,
              "sourceUnit": 5289,
              "src": "300:31:36",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 9952,
                    "name": "ControlledToken",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5288,
                    "src": "916:15:36"
                  },
                  "id": 9953,
                  "nodeType": "InheritanceSpecifier",
                  "src": "916:15:36"
                },
                {
                  "baseName": {
                    "id": 9954,
                    "name": "ITicket",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12213,
                    "src": "933:7:36"
                  },
                  "id": 9955,
                  "nodeType": "InheritanceSpecifier",
                  "src": "933:7:36"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 9951,
                "nodeType": "StructuredDocumentation",
                "src": "333:563:36",
                "text": " @title  PoolTogether V4 Ticket\n @author PoolTogether Inc Team\n @notice The Ticket extends the standard ERC20 and ControlledToken interfaces with time-weighted average balance functionality.\nThe average balance held by a user between two timestamps can be calculated, as well as the historic balance.  The\nhistoric total supply is available as well as the average total supply between two timestamps.\nA user may \"delegate\" their balance; increasing another user's historic balance while retaining their tokens."
              },
              "fullyImplemented": true,
              "id": 10941,
              "linearizedBaseContracts": [
                10941,
                12213,
                5288,
                11069,
                857,
                3195,
                893,
                585,
                688,
                663,
                2413
              ],
              "name": "Ticket",
              "nameLocation": "906:6:36",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 9959,
                  "libraryName": {
                    "id": 9956,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1117,
                    "src": "953:9:36"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "947:27:36",
                  "typeName": {
                    "id": 9958,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 9957,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "967:6:36"
                    },
                    "referencedDeclaration": 663,
                    "src": "967:6:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "id": 9962,
                  "libraryName": {
                    "id": 9960,
                    "name": "ExtendedSafeCastLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12433,
                    "src": "985:19:36"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "979:38:36",
                  "typeName": {
                    "id": 9961,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1009:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "constant": false,
                  "id": 9967,
                  "mutability": "immutable",
                  "name": "_DELEGATE_TYPEHASH",
                  "nameLocation": "1101:18:36",
                  "nodeType": "VariableDeclaration",
                  "scope": 10941,
                  "src": "1075:138:36",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 9963,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1075:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": {
                    "arguments": [
                      {
                        "hexValue": "44656c6567617465286164647265737320757365722c616464726573732064656c65676174652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529",
                        "id": 9965,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "string",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "1140:72:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_stringliteral_94019368dc6b2ee4ac32010c9d0081ec29874325b541829d001d22c296b5246c",
                          "typeString": "literal_string \"Delegate(address user,address delegate,uint256 nonce,uint256 deadline)\""
                        },
                        "value": "Delegate(address user,address delegate,uint256 nonce,uint256 deadline)"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_stringliteral_94019368dc6b2ee4ac32010c9d0081ec29874325b541829d001d22c296b5246c",
                          "typeString": "literal_string \"Delegate(address user,address delegate,uint256 nonce,uint256 deadline)\""
                        }
                      ],
                      "id": 9964,
                      "name": "keccak256",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": -8,
                      "src": "1130:9:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                        "typeString": "function (bytes memory) pure returns (bytes32)"
                      }
                    },
                    "id": 9966,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "1130:83:36",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 9968,
                    "nodeType": "StructuredDocumentation",
                    "src": "1220:59:36",
                    "text": "@notice Record of token holders TWABs for each account."
                  },
                  "id": 9973,
                  "mutability": "mutable",
                  "name": "userTwabs",
                  "nameLocation": "1329:9:36",
                  "nodeType": "VariableDeclaration",
                  "scope": 10941,
                  "src": "1284:54:36",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12882_storage_$",
                    "typeString": "mapping(address => struct TwabLib.Account)"
                  },
                  "typeName": {
                    "id": 9972,
                    "keyType": {
                      "id": 9969,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1292:7:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1284:35:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12882_storage_$",
                      "typeString": "mapping(address => struct TwabLib.Account)"
                    },
                    "valueType": {
                      "id": 9971,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 9970,
                        "name": "TwabLib.Account",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 12882,
                        "src": "1303:15:36"
                      },
                      "referencedDeclaration": 12882,
                      "src": "1303:15:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                        "typeString": "struct TwabLib.Account"
                      }
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 9974,
                    "nodeType": "StructuredDocumentation",
                    "src": "1345:89:36",
                    "text": "@notice Record of tickets total supply and ring buff parameters used for observation."
                  },
                  "id": 9977,
                  "mutability": "mutable",
                  "name": "totalSupplyTwab",
                  "nameLocation": "1464:15:36",
                  "nodeType": "VariableDeclaration",
                  "scope": 10941,
                  "src": "1439:40:36",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Account_$12882_storage",
                    "typeString": "struct TwabLib.Account"
                  },
                  "typeName": {
                    "id": 9976,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 9975,
                      "name": "TwabLib.Account",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 12882,
                      "src": "1439:15:36"
                    },
                    "referencedDeclaration": 12882,
                    "src": "1439:15:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                      "typeString": "struct TwabLib.Account"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 9978,
                    "nodeType": "StructuredDocumentation",
                    "src": "1486:91:36",
                    "text": "@notice Mapping of delegates.  Each address can delegate their ticket power to another."
                  },
                  "id": 9982,
                  "mutability": "mutable",
                  "name": "delegates",
                  "nameLocation": "1619:9:36",
                  "nodeType": "VariableDeclaration",
                  "scope": 10941,
                  "src": "1582:46:36",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                    "typeString": "mapping(address => address)"
                  },
                  "typeName": {
                    "id": 9981,
                    "keyType": {
                      "id": 9979,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1590:7:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1582:27:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                      "typeString": "mapping(address => address)"
                    },
                    "valueType": {
                      "id": 9980,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1601:7:36",
                      "stateMutability": "nonpayable",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10000,
                    "nodeType": "Block",
                    "src": "2176:2:36",
                    "statements": []
                  },
                  "documentation": {
                    "id": 9983,
                    "nodeType": "StructuredDocumentation",
                    "src": "1684:299:36",
                    "text": " @notice Constructs Ticket with passed parameters.\n @param _name ERC20 ticket token name.\n @param _symbol ERC20 ticket token symbol.\n @param decimals_ ERC20 ticket token decimals.\n @param _controller ERC20 ticket controller address (ie: Prize Pool address)."
                  },
                  "id": 10001,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 9994,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9985,
                          "src": "2136:5:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 9995,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9987,
                          "src": "2143:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 9996,
                          "name": "decimals_",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9989,
                          "src": "2152:9:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        {
                          "id": 9997,
                          "name": "_controller",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9991,
                          "src": "2163:11:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 9998,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 9993,
                        "name": "ControlledToken",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5288,
                        "src": "2120:15:36"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2120:55:36"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9992,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9985,
                        "mutability": "mutable",
                        "name": "_name",
                        "nameLocation": "2023:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10001,
                        "src": "2009:19:36",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 9984,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2009:6:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9987,
                        "mutability": "mutable",
                        "name": "_symbol",
                        "nameLocation": "2052:7:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10001,
                        "src": "2038:21:36",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 9986,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2038:6:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9989,
                        "mutability": "mutable",
                        "name": "decimals_",
                        "nameLocation": "2075:9:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10001,
                        "src": "2069:15:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 9988,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "2069:5:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9991,
                        "mutability": "mutable",
                        "name": "_controller",
                        "nameLocation": "2102:11:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10001,
                        "src": "2094:19:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9990,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2094:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1999:120:36"
                  },
                  "returnParameters": {
                    "id": 9999,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2176:0:36"
                  },
                  "scope": 10941,
                  "src": "1988:190:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    12121
                  ],
                  "body": {
                    "id": 10016,
                    "nodeType": "Block",
                    "src": "2409:48:36",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "baseExpression": {
                              "id": 10011,
                              "name": "userTwabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9973,
                              "src": "2426:9:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12882_storage_$",
                                "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                              }
                            },
                            "id": 10013,
                            "indexExpression": {
                              "id": 10012,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10004,
                              "src": "2436:5:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "2426:16:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12882_storage",
                              "typeString": "struct TwabLib.Account storage ref"
                            }
                          },
                          "id": 10014,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12876,
                          "src": "2426:24:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "functionReturnParameters": 10010,
                        "id": 10015,
                        "nodeType": "Return",
                        "src": "2419:31:36"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10002,
                    "nodeType": "StructuredDocumentation",
                    "src": "2240:23:36",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "2aceb534",
                  "id": 10017,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAccountDetails",
                  "nameLocation": "2277:17:36",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10006,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2348:8:36"
                  },
                  "parameters": {
                    "id": 10005,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10004,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2303:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10017,
                        "src": "2295:13:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10003,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2295:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2294:15:36"
                  },
                  "returnParameters": {
                    "id": 10010,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10009,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10017,
                        "src": "2374:29:36",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 10008,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10007,
                            "name": "TwabLib.AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "2374:22:36"
                          },
                          "referencedDeclaration": 12873,
                          "src": "2374:22:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2373:31:36"
                  },
                  "scope": 10941,
                  "src": "2268:189:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    12132
                  ],
                  "body": {
                    "id": 10036,
                    "nodeType": "Block",
                    "src": "2641:54:36",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "expression": {
                              "baseExpression": {
                                "id": 10029,
                                "name": "userTwabs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9973,
                                "src": "2658:9:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12882_storage_$",
                                  "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                                }
                              },
                              "id": 10031,
                              "indexExpression": {
                                "id": 10030,
                                "name": "_user",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10020,
                                "src": "2668:5:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "2658:16:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            "id": 10032,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "twabs",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12881,
                            "src": "2658:22:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                              "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                            }
                          },
                          "id": 10034,
                          "indexExpression": {
                            "id": 10033,
                            "name": "_index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10022,
                            "src": "2681:6:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint16",
                              "typeString": "uint16"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "2658:30:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage",
                            "typeString": "struct ObservationLib.Observation storage ref"
                          }
                        },
                        "functionReturnParameters": 10028,
                        "id": 10035,
                        "nodeType": "Return",
                        "src": "2651:37:36"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10018,
                    "nodeType": "StructuredDocumentation",
                    "src": "2463:23:36",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "36bb2a38",
                  "id": 10037,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTwab",
                  "nameLocation": "2500:7:36",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10024,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2576:8:36"
                  },
                  "parameters": {
                    "id": 10023,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10020,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2516:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10037,
                        "src": "2508:13:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10019,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2508:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10022,
                        "mutability": "mutable",
                        "name": "_index",
                        "nameLocation": "2530:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10037,
                        "src": "2523:13:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        },
                        "typeName": {
                          "id": 10021,
                          "name": "uint16",
                          "nodeType": "ElementaryTypeName",
                          "src": "2523:6:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2507:30:36"
                  },
                  "returnParameters": {
                    "id": 10028,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10027,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10037,
                        "src": "2602:33:36",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 10026,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10025,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "2602:26:36"
                          },
                          "referencedDeclaration": 12454,
                          "src": "2602:26:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2601:35:36"
                  },
                  "scope": 10941,
                  "src": "2491:204:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    12142
                  ],
                  "body": {
                    "id": 10074,
                    "nodeType": "Block",
                    "src": "2823:269:36",
                    "statements": [
                      {
                        "assignments": [
                          10052
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10052,
                            "mutability": "mutable",
                            "name": "account",
                            "nameLocation": "2857:7:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10074,
                            "src": "2833:31:36",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 10051,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10050,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12882,
                                "src": "2833:15:36"
                              },
                              "referencedDeclaration": 12882,
                              "src": "2833:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10056,
                        "initialValue": {
                          "baseExpression": {
                            "id": 10053,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9973,
                            "src": "2867:9:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12882_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 10055,
                          "indexExpression": {
                            "id": 10054,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10040,
                            "src": "2877:5:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "2867:16:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12882_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2833:50:36"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 10059,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10052,
                                "src": "2951:7:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 10060,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "twabs",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12881,
                              "src": "2951:13:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 10061,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10052,
                                "src": "2982:7:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 10062,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "details",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12876,
                              "src": "2982:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 10065,
                                  "name": "_target",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10042,
                                  "src": "3022:7:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                ],
                                "id": 10064,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3015:6:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 10063,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3015:6:36",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10066,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3015:15:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 10069,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "3055:5:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 10070,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "3055:15:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 10068,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3048:6:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 10067,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3048:6:36",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10071,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3048:23:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 10057,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13599,
                              "src": "2913:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 10058,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getBalanceAt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 13138,
                            "src": "2913:20:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32) view returns (uint256)"
                            }
                          },
                          "id": 10072,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2913:172:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 10047,
                        "id": 10073,
                        "nodeType": "Return",
                        "src": "2894:191:36"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10038,
                    "nodeType": "StructuredDocumentation",
                    "src": "2701:23:36",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "9ecb0370",
                  "id": 10075,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceAt",
                  "nameLocation": "2738:12:36",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10044,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2796:8:36"
                  },
                  "parameters": {
                    "id": 10043,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10040,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2759:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10075,
                        "src": "2751:13:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10039,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2751:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10042,
                        "mutability": "mutable",
                        "name": "_target",
                        "nameLocation": "2773:7:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10075,
                        "src": "2766:14:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 10041,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2766:6:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2750:31:36"
                  },
                  "returnParameters": {
                    "id": 10047,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10046,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10075,
                        "src": "2814:7:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10045,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2814:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2813:9:36"
                  },
                  "scope": 10941,
                  "src": "2729:363:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    12181
                  ],
                  "body": {
                    "id": 10099,
                    "nodeType": "Block",
                    "src": "3316:92:36",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "baseExpression": {
                                "id": 10092,
                                "name": "userTwabs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9973,
                                "src": "3360:9:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12882_storage_$",
                                  "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                                }
                              },
                              "id": 10094,
                              "indexExpression": {
                                "id": 10093,
                                "name": "_user",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10078,
                                "src": "3370:5:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "3360:16:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            {
                              "id": 10095,
                              "name": "_startTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10081,
                              "src": "3378:11:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            },
                            {
                              "id": 10096,
                              "name": "_endTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10084,
                              "src": "3391:9:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$12882_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            ],
                            "id": 10091,
                            "name": "_getAverageBalancesBetween",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10600,
                            "src": "3333:26:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Account_$12882_storage_ptr_$_t_array$_t_uint64_$dyn_calldata_ptr_$_t_array$_t_uint64_$dyn_calldata_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (struct TwabLib.Account storage pointer,uint64[] calldata,uint64[] calldata) view returns (uint256[] memory)"
                            }
                          },
                          "id": 10097,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3333:68:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 10090,
                        "id": 10098,
                        "nodeType": "Return",
                        "src": "3326:75:36"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10076,
                    "nodeType": "StructuredDocumentation",
                    "src": "3098:23:36",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "68c7fd57",
                  "id": 10100,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalancesBetween",
                  "nameLocation": "3135:25:36",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10086,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3280:8:36"
                  },
                  "parameters": {
                    "id": 10085,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10078,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "3178:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10100,
                        "src": "3170:13:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10077,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3170:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10081,
                        "mutability": "mutable",
                        "name": "_startTimes",
                        "nameLocation": "3211:11:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10100,
                        "src": "3193:29:36",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10079,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "3193:6:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 10080,
                          "nodeType": "ArrayTypeName",
                          "src": "3193:8:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10084,
                        "mutability": "mutable",
                        "name": "_endTimes",
                        "nameLocation": "3250:9:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10100,
                        "src": "3232:27:36",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10082,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "3232:6:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 10083,
                          "nodeType": "ArrayTypeName",
                          "src": "3232:8:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3160:105:36"
                  },
                  "returnParameters": {
                    "id": 10090,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10089,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10100,
                        "src": "3298:16:36",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10087,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "3298:7:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 10088,
                          "nodeType": "ArrayTypeName",
                          "src": "3298:9:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3297:18:36"
                  },
                  "scope": 10941,
                  "src": "3126:282:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    12212
                  ],
                  "body": {
                    "id": 10120,
                    "nodeType": "Block",
                    "src": "3614:91:36",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10115,
                              "name": "totalSupplyTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9977,
                              "src": "3658:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            {
                              "id": 10116,
                              "name": "_startTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10104,
                              "src": "3675:11:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            },
                            {
                              "id": 10117,
                              "name": "_endTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10107,
                              "src": "3688:9:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$12882_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            ],
                            "id": 10114,
                            "name": "_getAverageBalancesBetween",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10600,
                            "src": "3631:26:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Account_$12882_storage_ptr_$_t_array$_t_uint64_$dyn_calldata_ptr_$_t_array$_t_uint64_$dyn_calldata_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (struct TwabLib.Account storage pointer,uint64[] calldata,uint64[] calldata) view returns (uint256[] memory)"
                            }
                          },
                          "id": 10118,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3631:67:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 10113,
                        "id": 10119,
                        "nodeType": "Return",
                        "src": "3624:74:36"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10101,
                    "nodeType": "StructuredDocumentation",
                    "src": "3414:23:36",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "8e6d536a",
                  "id": 10121,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageTotalSuppliesBetween",
                  "nameLocation": "3451:30:36",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10109,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3578:8:36"
                  },
                  "parameters": {
                    "id": 10108,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10104,
                        "mutability": "mutable",
                        "name": "_startTimes",
                        "nameLocation": "3509:11:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10121,
                        "src": "3491:29:36",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10102,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "3491:6:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 10103,
                          "nodeType": "ArrayTypeName",
                          "src": "3491:8:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10107,
                        "mutability": "mutable",
                        "name": "_endTimes",
                        "nameLocation": "3548:9:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10121,
                        "src": "3530:27:36",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10105,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "3530:6:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 10106,
                          "nodeType": "ArrayTypeName",
                          "src": "3530:8:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3481:82:36"
                  },
                  "returnParameters": {
                    "id": 10113,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10112,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10121,
                        "src": "3596:16:36",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10110,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "3596:7:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 10111,
                          "nodeType": "ArrayTypeName",
                          "src": "3596:9:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3595:18:36"
                  },
                  "scope": 10941,
                  "src": "3442:263:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    12166
                  ],
                  "body": {
                    "id": 10164,
                    "nodeType": "Block",
                    "src": "3895:318:36",
                    "statements": [
                      {
                        "assignments": [
                          10138
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10138,
                            "mutability": "mutable",
                            "name": "account",
                            "nameLocation": "3929:7:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10164,
                            "src": "3905:31:36",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 10137,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10136,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12882,
                                "src": "3905:15:36"
                              },
                              "referencedDeclaration": 12882,
                              "src": "3905:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10142,
                        "initialValue": {
                          "baseExpression": {
                            "id": 10139,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9973,
                            "src": "3939:9:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12882_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 10141,
                          "indexExpression": {
                            "id": 10140,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10124,
                            "src": "3949:5:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "3939:16:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12882_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3905:50:36"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 10145,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10138,
                                "src": "4035:7:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 10146,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "twabs",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12881,
                              "src": "4035:13:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 10147,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10138,
                                "src": "4066:7:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 10148,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "details",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12876,
                              "src": "4066:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 10151,
                                  "name": "_startTime",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10126,
                                  "src": "4106:10:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                ],
                                "id": 10150,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4099:6:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 10149,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4099:6:36",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10152,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4099:18:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 10155,
                                  "name": "_endTime",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10128,
                                  "src": "4142:8:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                ],
                                "id": 10154,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4135:6:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 10153,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4135:6:36",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10156,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4135:16:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 10159,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "4176:5:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 10160,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "4176:15:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 10158,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4169:6:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 10157,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4169:6:36",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10161,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4169:23:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 10143,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13599,
                              "src": "3985:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 10144,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getAverageBalanceBetween",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 13022,
                            "src": "3985:32:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32,uint32) view returns (uint256)"
                            }
                          },
                          "id": 10162,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3985:221:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 10133,
                        "id": 10163,
                        "nodeType": "Return",
                        "src": "3966:240:36"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10122,
                    "nodeType": "StructuredDocumentation",
                    "src": "3711:23:36",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "98b16f36",
                  "id": 10165,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalanceBetween",
                  "nameLocation": "3748:24:36",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10130,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3868:8:36"
                  },
                  "parameters": {
                    "id": 10129,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10124,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "3790:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10165,
                        "src": "3782:13:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10123,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3782:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10126,
                        "mutability": "mutable",
                        "name": "_startTime",
                        "nameLocation": "3812:10:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10165,
                        "src": "3805:17:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 10125,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3805:6:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10128,
                        "mutability": "mutable",
                        "name": "_endTime",
                        "nameLocation": "3839:8:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10165,
                        "src": "3832:15:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 10127,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3832:6:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3772:81:36"
                  },
                  "returnParameters": {
                    "id": 10133,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10132,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10165,
                        "src": "3886:7:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10131,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3886:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3885:9:36"
                  },
                  "scope": 10941,
                  "src": "3739:474:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    12154
                  ],
                  "body": {
                    "id": 10247,
                    "nodeType": "Block",
                    "src": "4399:529:36",
                    "statements": [
                      {
                        "assignments": [
                          10179
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10179,
                            "mutability": "mutable",
                            "name": "length",
                            "nameLocation": "4417:6:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10247,
                            "src": "4409:14:36",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 10178,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4409:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10182,
                        "initialValue": {
                          "expression": {
                            "id": 10180,
                            "name": "_targets",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10171,
                            "src": "4426:8:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                              "typeString": "uint64[] calldata"
                            }
                          },
                          "id": 10181,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "4426:15:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4409:32:36"
                      },
                      {
                        "assignments": [
                          10187
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10187,
                            "mutability": "mutable",
                            "name": "_balances",
                            "nameLocation": "4468:9:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10247,
                            "src": "4451:26:36",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 10185,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "4451:7:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 10186,
                              "nodeType": "ArrayTypeName",
                              "src": "4451:9:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10193,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10191,
                              "name": "length",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10179,
                              "src": "4494:6:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 10190,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "4480:13:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 10188,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "4484:7:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 10189,
                              "nodeType": "ArrayTypeName",
                              "src": "4484:9:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 10192,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4480:21:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4451:50:36"
                      },
                      {
                        "assignments": [
                          10198
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10198,
                            "mutability": "mutable",
                            "name": "twabContext",
                            "nameLocation": "4536:11:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10247,
                            "src": "4512:35:36",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 10197,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10196,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12882,
                                "src": "4512:15:36"
                              },
                              "referencedDeclaration": 12882,
                              "src": "4512:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10202,
                        "initialValue": {
                          "baseExpression": {
                            "id": 10199,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9973,
                            "src": "4550:9:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12882_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 10201,
                          "indexExpression": {
                            "id": 10200,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10168,
                            "src": "4560:5:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "4550:16:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12882_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4512:54:36"
                      },
                      {
                        "assignments": [
                          10207
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10207,
                            "mutability": "mutable",
                            "name": "details",
                            "nameLocation": "4606:7:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10247,
                            "src": "4576:37:36",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 10206,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10205,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12873,
                                "src": "4576:22:36"
                              },
                              "referencedDeclaration": 12873,
                              "src": "4576:22:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10210,
                        "initialValue": {
                          "expression": {
                            "id": 10208,
                            "name": "twabContext",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10198,
                            "src": "4616:11:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                              "typeString": "struct TwabLib.Account storage pointer"
                            }
                          },
                          "id": 10209,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12876,
                          "src": "4616:19:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4576:59:36"
                      },
                      {
                        "body": {
                          "id": 10243,
                          "nodeType": "Block",
                          "src": "4683:212:36",
                          "statements": [
                            {
                              "expression": {
                                "id": 10241,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 10221,
                                    "name": "_balances",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10187,
                                    "src": "4697:9:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 10223,
                                  "indexExpression": {
                                    "id": 10222,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10212,
                                    "src": "4707:1:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "4697:12:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 10226,
                                        "name": "twabContext",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 10198,
                                        "src": "4750:11:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                          "typeString": "struct TwabLib.Account storage pointer"
                                        }
                                      },
                                      "id": 10227,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "twabs",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 12881,
                                      "src": "4750:17:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      }
                                    },
                                    {
                                      "id": 10228,
                                      "name": "details",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 10207,
                                      "src": "4785:7:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "baseExpression": {
                                            "id": 10231,
                                            "name": "_targets",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 10171,
                                            "src": "4817:8:36",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                              "typeString": "uint64[] calldata"
                                            }
                                          },
                                          "id": 10233,
                                          "indexExpression": {
                                            "id": 10232,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 10212,
                                            "src": "4826:1:36",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "4817:11:36",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        ],
                                        "id": 10230,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "4810:6:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 10229,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "4810:6:36",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 10234,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "4810:19:36",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "expression": {
                                            "id": 10237,
                                            "name": "block",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": -4,
                                            "src": "4854:5:36",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_magic_block",
                                              "typeString": "block"
                                            }
                                          },
                                          "id": 10238,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "timestamp",
                                          "nodeType": "MemberAccess",
                                          "src": "4854:15:36",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 10236,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "4847:6:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 10235,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "4847:6:36",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 10239,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "4847:23:36",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      },
                                      {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "expression": {
                                      "id": 10224,
                                      "name": "TwabLib",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 13599,
                                      "src": "4712:7:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                        "typeString": "type(library TwabLib)"
                                      }
                                    },
                                    "id": 10225,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "getBalanceAt",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 13138,
                                    "src": "4712:20:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                                      "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32) view returns (uint256)"
                                    }
                                  },
                                  "id": 10240,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "4712:172:36",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "4697:187:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 10242,
                              "nodeType": "ExpressionStatement",
                              "src": "4697:187:36"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 10217,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10215,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10212,
                            "src": "4666:1:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 10216,
                            "name": "length",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10179,
                            "src": "4670:6:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "4666:10:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10244,
                        "initializationExpression": {
                          "assignments": [
                            10212
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 10212,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "4659:1:36",
                              "nodeType": "VariableDeclaration",
                              "scope": 10244,
                              "src": "4651:9:36",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 10211,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "4651:7:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 10214,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 10213,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4663:1:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "4651:13:36"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 10219,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "4678:3:36",
                            "subExpression": {
                              "id": 10218,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10212,
                              "src": "4678:1:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 10220,
                          "nodeType": "ExpressionStatement",
                          "src": "4678:3:36"
                        },
                        "nodeType": "ForStatement",
                        "src": "4646:249:36"
                      },
                      {
                        "expression": {
                          "id": 10245,
                          "name": "_balances",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10187,
                          "src": "4912:9:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 10177,
                        "id": 10246,
                        "nodeType": "Return",
                        "src": "4905:16:36"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10166,
                    "nodeType": "StructuredDocumentation",
                    "src": "4219:23:36",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "613ed6bd",
                  "id": 10248,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalancesAt",
                  "nameLocation": "4256:13:36",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10173,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4351:8:36"
                  },
                  "parameters": {
                    "id": 10172,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10168,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4278:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10248,
                        "src": "4270:13:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10167,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4270:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10171,
                        "mutability": "mutable",
                        "name": "_targets",
                        "nameLocation": "4303:8:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10248,
                        "src": "4285:26:36",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10169,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "4285:6:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 10170,
                          "nodeType": "ArrayTypeName",
                          "src": "4285:8:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4269:43:36"
                  },
                  "returnParameters": {
                    "id": 10177,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10176,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10248,
                        "src": "4377:16:36",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10174,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "4377:7:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 10175,
                          "nodeType": "ArrayTypeName",
                          "src": "4377:9:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4376:18:36"
                  },
                  "scope": 10941,
                  "src": "4247:681:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    12189
                  ],
                  "body": {
                    "id": 10274,
                    "nodeType": "Block",
                    "src": "5045:224:36",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 10259,
                                "name": "totalSupplyTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9977,
                                "src": "5112:15:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              "id": 10260,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "twabs",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12881,
                              "src": "5112:21:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 10261,
                                "name": "totalSupplyTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9977,
                                "src": "5151:15:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              "id": 10262,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "details",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12876,
                              "src": "5151:23:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 10265,
                                  "name": "_target",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10251,
                                  "src": "5199:7:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                ],
                                "id": 10264,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "5192:6:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 10263,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5192:6:36",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10266,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5192:15:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 10269,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "5232:5:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 10270,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "5232:15:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 10268,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "5225:6:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 10267,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5225:6:36",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10271,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5225:23:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 10257,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13599,
                              "src": "5074:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 10258,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getBalanceAt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 13138,
                            "src": "5074:20:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32) view returns (uint256)"
                            }
                          },
                          "id": 10272,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5074:188:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 10256,
                        "id": 10273,
                        "nodeType": "Return",
                        "src": "5055:207:36"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10249,
                    "nodeType": "StructuredDocumentation",
                    "src": "4934:23:36",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "2d0dd686",
                  "id": 10275,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTotalSupplyAt",
                  "nameLocation": "4971:16:36",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10253,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5018:8:36"
                  },
                  "parameters": {
                    "id": 10252,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10251,
                        "mutability": "mutable",
                        "name": "_target",
                        "nameLocation": "4995:7:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10275,
                        "src": "4988:14:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 10250,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "4988:6:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4987:16:36"
                  },
                  "returnParameters": {
                    "id": 10256,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10255,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10275,
                        "src": "5036:7:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10254,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5036:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5035:9:36"
                  },
                  "scope": 10941,
                  "src": "4962:307:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    12199
                  ],
                  "body": {
                    "id": 10346,
                    "nodeType": "Block",
                    "src": "5445:485:36",
                    "statements": [
                      {
                        "assignments": [
                          10287
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10287,
                            "mutability": "mutable",
                            "name": "length",
                            "nameLocation": "5463:6:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10346,
                            "src": "5455:14:36",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 10286,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5455:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10290,
                        "initialValue": {
                          "expression": {
                            "id": 10288,
                            "name": "_targets",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10279,
                            "src": "5472:8:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                              "typeString": "uint64[] calldata"
                            }
                          },
                          "id": 10289,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "5472:15:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5455:32:36"
                      },
                      {
                        "assignments": [
                          10295
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10295,
                            "mutability": "mutable",
                            "name": "totalSupplies",
                            "nameLocation": "5514:13:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10346,
                            "src": "5497:30:36",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 10293,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5497:7:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 10294,
                              "nodeType": "ArrayTypeName",
                              "src": "5497:9:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10301,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10299,
                              "name": "length",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10287,
                              "src": "5544:6:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 10298,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "5530:13:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 10296,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5534:7:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 10297,
                              "nodeType": "ArrayTypeName",
                              "src": "5534:9:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 10300,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5530:21:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5497:54:36"
                      },
                      {
                        "assignments": [
                          10306
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10306,
                            "mutability": "mutable",
                            "name": "details",
                            "nameLocation": "5592:7:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10346,
                            "src": "5562:37:36",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 10305,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10304,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12873,
                                "src": "5562:22:36"
                              },
                              "referencedDeclaration": 12873,
                              "src": "5562:22:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10309,
                        "initialValue": {
                          "expression": {
                            "id": 10307,
                            "name": "totalSupplyTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9977,
                            "src": "5602:15:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12882_storage",
                              "typeString": "struct TwabLib.Account storage ref"
                            }
                          },
                          "id": 10308,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12876,
                          "src": "5602:23:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5562:63:36"
                      },
                      {
                        "body": {
                          "id": 10342,
                          "nodeType": "Block",
                          "src": "5673:220:36",
                          "statements": [
                            {
                              "expression": {
                                "id": 10340,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 10320,
                                    "name": "totalSupplies",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10295,
                                    "src": "5687:13:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 10322,
                                  "indexExpression": {
                                    "id": 10321,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10311,
                                    "src": "5701:1:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "5687:16:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 10325,
                                        "name": "totalSupplyTwab",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9977,
                                        "src": "5744:15:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Account_$12882_storage",
                                          "typeString": "struct TwabLib.Account storage ref"
                                        }
                                      },
                                      "id": 10326,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "twabs",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 12881,
                                      "src": "5744:21:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      }
                                    },
                                    {
                                      "id": 10327,
                                      "name": "details",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 10306,
                                      "src": "5783:7:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "baseExpression": {
                                            "id": 10330,
                                            "name": "_targets",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 10279,
                                            "src": "5815:8:36",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                              "typeString": "uint64[] calldata"
                                            }
                                          },
                                          "id": 10332,
                                          "indexExpression": {
                                            "id": 10331,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 10311,
                                            "src": "5824:1:36",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "5815:11:36",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        ],
                                        "id": 10329,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "5808:6:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 10328,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "5808:6:36",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 10333,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "5808:19:36",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "expression": {
                                            "id": 10336,
                                            "name": "block",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": -4,
                                            "src": "5852:5:36",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_magic_block",
                                              "typeString": "block"
                                            }
                                          },
                                          "id": 10337,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "timestamp",
                                          "nodeType": "MemberAccess",
                                          "src": "5852:15:36",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 10335,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "5845:6:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 10334,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "5845:6:36",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 10338,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "5845:23:36",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      },
                                      {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "expression": {
                                      "id": 10323,
                                      "name": "TwabLib",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 13599,
                                      "src": "5706:7:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                        "typeString": "type(library TwabLib)"
                                      }
                                    },
                                    "id": 10324,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "getBalanceAt",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 13138,
                                    "src": "5706:20:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                                      "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32) view returns (uint256)"
                                    }
                                  },
                                  "id": 10339,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "5706:176:36",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "5687:195:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 10341,
                              "nodeType": "ExpressionStatement",
                              "src": "5687:195:36"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 10316,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10314,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10311,
                            "src": "5656:1:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 10315,
                            "name": "length",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10287,
                            "src": "5660:6:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "5656:10:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10343,
                        "initializationExpression": {
                          "assignments": [
                            10311
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 10311,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "5649:1:36",
                              "nodeType": "VariableDeclaration",
                              "scope": 10343,
                              "src": "5641:9:36",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 10310,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5641:7:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 10313,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 10312,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5653:1:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "5641:13:36"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 10318,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "5668:3:36",
                            "subExpression": {
                              "id": 10317,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10311,
                              "src": "5668:1:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 10319,
                          "nodeType": "ExpressionStatement",
                          "src": "5668:3:36"
                        },
                        "nodeType": "ForStatement",
                        "src": "5636:257:36"
                      },
                      {
                        "expression": {
                          "id": 10344,
                          "name": "totalSupplies",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10295,
                          "src": "5910:13:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 10285,
                        "id": 10345,
                        "nodeType": "Return",
                        "src": "5903:20:36"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10276,
                    "nodeType": "StructuredDocumentation",
                    "src": "5275:23:36",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "85beb5f1",
                  "id": 10347,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTotalSuppliesAt",
                  "nameLocation": "5312:18:36",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10281,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5397:8:36"
                  },
                  "parameters": {
                    "id": 10280,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10279,
                        "mutability": "mutable",
                        "name": "_targets",
                        "nameLocation": "5349:8:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10347,
                        "src": "5331:26:36",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10277,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "5331:6:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 10278,
                          "nodeType": "ArrayTypeName",
                          "src": "5331:8:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5330:28:36"
                  },
                  "returnParameters": {
                    "id": 10285,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10284,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10347,
                        "src": "5423:16:36",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10282,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "5423:7:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 10283,
                          "nodeType": "ArrayTypeName",
                          "src": "5423:9:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5422:18:36"
                  },
                  "scope": 10941,
                  "src": "5303:627:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    12082
                  ],
                  "body": {
                    "id": 10360,
                    "nodeType": "Block",
                    "src": "6040:40:36",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 10356,
                            "name": "delegates",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9982,
                            "src": "6057:9:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                              "typeString": "mapping(address => address)"
                            }
                          },
                          "id": 10358,
                          "indexExpression": {
                            "id": 10357,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10350,
                            "src": "6067:5:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "6057:16:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 10355,
                        "id": 10359,
                        "nodeType": "Return",
                        "src": "6050:23:36"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10348,
                    "nodeType": "StructuredDocumentation",
                    "src": "5936:23:36",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "8d22ea2a",
                  "id": 10361,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegateOf",
                  "nameLocation": "5973:10:36",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10352,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6013:8:36"
                  },
                  "parameters": {
                    "id": 10351,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10350,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "5992:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10361,
                        "src": "5984:13:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10349,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5984:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5983:15:36"
                  },
                  "returnParameters": {
                    "id": 10355,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10354,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10361,
                        "src": "6031:7:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10353,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6031:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6030:9:36"
                  },
                  "scope": 10941,
                  "src": "5964:116:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    12096
                  ],
                  "body": {
                    "id": 10377,
                    "nodeType": "Block",
                    "src": "6206:38:36",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10373,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10364,
                              "src": "6226:5:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10374,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10366,
                              "src": "6233:3:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 10372,
                            "name": "_delegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10505,
                            "src": "6216:9:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 10375,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6216:21:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10376,
                        "nodeType": "ExpressionStatement",
                        "src": "6216:21:36"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10362,
                    "nodeType": "StructuredDocumentation",
                    "src": "6086:23:36",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "33e39b61",
                  "id": 10378,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 10370,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 10369,
                        "name": "onlyController",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5153,
                        "src": "6191:14:36"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6191:14:36"
                    }
                  ],
                  "name": "controllerDelegateFor",
                  "nameLocation": "6123:21:36",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10368,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6182:8:36"
                  },
                  "parameters": {
                    "id": 10367,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10364,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "6153:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10378,
                        "src": "6145:13:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10363,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6145:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10366,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "6168:3:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10378,
                        "src": "6160:11:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10365,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6160:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6144:28:36"
                  },
                  "returnParameters": {
                    "id": 10371,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6206:0:36"
                  },
                  "scope": 10941,
                  "src": "6114:130:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    12112
                  ],
                  "body": {
                    "id": 10446,
                    "nodeType": "Block",
                    "src": "6479:438:36",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 10399,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 10396,
                                  "name": "block",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -4,
                                  "src": "6497:5:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_block",
                                    "typeString": "block"
                                  }
                                },
                                "id": 10397,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "src": "6497:15:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 10398,
                                "name": "_deadline",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10385,
                                "src": "6516:9:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "6497:28:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5469636b65742f64656c65676174652d657870697265642d646561646c696e65",
                              "id": 10400,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6527:34:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_39ab2e4ed03130f2bab737445eefa0170013f2d5d6416c5398200851ee691d09",
                                "typeString": "literal_string \"Ticket/delegate-expired-deadline\""
                              },
                              "value": "Ticket/delegate-expired-deadline"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_39ab2e4ed03130f2bab737445eefa0170013f2d5d6416c5398200851ee691d09",
                                "typeString": "literal_string \"Ticket/delegate-expired-deadline\""
                              }
                            ],
                            "id": 10395,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6489:7:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 10401,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6489:73:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10402,
                        "nodeType": "ExpressionStatement",
                        "src": "6489:73:36"
                      },
                      {
                        "assignments": [
                          10404
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10404,
                            "mutability": "mutable",
                            "name": "structHash",
                            "nameLocation": "6581:10:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10446,
                            "src": "6573:18:36",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 10403,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "6573:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10417,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 10408,
                                  "name": "_DELEGATE_TYPEHASH",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9967,
                                  "src": "6615:18:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "id": 10409,
                                  "name": "_user",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10381,
                                  "src": "6635:5:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 10410,
                                  "name": "_newDelegate",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10383,
                                  "src": "6642:12:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "arguments": [
                                    {
                                      "id": 10412,
                                      "name": "_user",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 10381,
                                      "src": "6666:5:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    ],
                                    "id": 10411,
                                    "name": "_useNonce",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 856,
                                    "src": "6656:9:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$",
                                      "typeString": "function (address) returns (uint256)"
                                    }
                                  },
                                  "id": 10413,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "6656:16:36",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                {
                                  "id": 10414,
                                  "name": "_deadline",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10385,
                                  "src": "6674:9:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "expression": {
                                  "id": 10406,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "6604:3:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 10407,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encode",
                                "nodeType": "MemberAccess",
                                "src": "6604:10:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 10415,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6604:80:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 10405,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "6594:9:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 10416,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6594:91:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6573:112:36"
                      },
                      {
                        "assignments": [
                          10419
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10419,
                            "mutability": "mutable",
                            "name": "hash",
                            "nameLocation": "6704:4:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10446,
                            "src": "6696:12:36",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 10418,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "6696:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10423,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10421,
                              "name": "structHash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10404,
                              "src": "6728:10:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 10420,
                            "name": "_hashTypedDataV4",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3194,
                            "src": "6711:16:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$",
                              "typeString": "function (bytes32) view returns (bytes32)"
                            }
                          },
                          "id": 10422,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6711:28:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6696:43:36"
                      },
                      {
                        "assignments": [
                          10425
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10425,
                            "mutability": "mutable",
                            "name": "signer",
                            "nameLocation": "6758:6:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10446,
                            "src": "6750:14:36",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 10424,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "6750:7:36",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10433,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10428,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10419,
                              "src": "6781:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 10429,
                              "name": "_v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10387,
                              "src": "6787:2:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 10430,
                              "name": "_r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10389,
                              "src": "6791:2:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 10431,
                              "name": "_s",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10391,
                              "src": "6795:2:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "expression": {
                              "id": 10426,
                              "name": "ECDSA",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3057,
                              "src": "6767:5:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ECDSA_$3057_$",
                                "typeString": "type(library ECDSA)"
                              }
                            },
                            "id": 10427,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "recover",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3019,
                            "src": "6767:13:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$",
                              "typeString": "function (bytes32,uint8,bytes32,bytes32) pure returns (address)"
                            }
                          },
                          "id": 10432,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6767:31:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6750:48:36"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 10437,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 10435,
                                "name": "signer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10425,
                                "src": "6816:6:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 10436,
                                "name": "_user",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10381,
                                "src": "6826:5:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "6816:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5469636b65742f64656c65676174652d696e76616c69642d7369676e6174757265",
                              "id": 10438,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6833:35:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_d26de55e8ec40107d038a21c3ec11785680740c032de3f1a47bf117807198f53",
                                "typeString": "literal_string \"Ticket/delegate-invalid-signature\""
                              },
                              "value": "Ticket/delegate-invalid-signature"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_d26de55e8ec40107d038a21c3ec11785680740c032de3f1a47bf117807198f53",
                                "typeString": "literal_string \"Ticket/delegate-invalid-signature\""
                              }
                            ],
                            "id": 10434,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6808:7:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 10439,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6808:61:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10440,
                        "nodeType": "ExpressionStatement",
                        "src": "6808:61:36"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10442,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10381,
                              "src": "6890:5:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10443,
                              "name": "_newDelegate",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10383,
                              "src": "6897:12:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 10441,
                            "name": "_delegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10505,
                            "src": "6880:9:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 10444,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6880:30:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10445,
                        "nodeType": "ExpressionStatement",
                        "src": "6880:30:36"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10379,
                    "nodeType": "StructuredDocumentation",
                    "src": "6250:23:36",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "919974dc",
                  "id": 10447,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegateWithSignature",
                  "nameLocation": "6287:21:36",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10393,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6470:8:36"
                  },
                  "parameters": {
                    "id": 10392,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10381,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "6326:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10447,
                        "src": "6318:13:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10380,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6318:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10383,
                        "mutability": "mutable",
                        "name": "_newDelegate",
                        "nameLocation": "6349:12:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10447,
                        "src": "6341:20:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10382,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6341:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10385,
                        "mutability": "mutable",
                        "name": "_deadline",
                        "nameLocation": "6379:9:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10447,
                        "src": "6371:17:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10384,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6371:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10387,
                        "mutability": "mutable",
                        "name": "_v",
                        "nameLocation": "6404:2:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10447,
                        "src": "6398:8:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 10386,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "6398:5:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10389,
                        "mutability": "mutable",
                        "name": "_r",
                        "nameLocation": "6424:2:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10447,
                        "src": "6416:10:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 10388,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6416:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10391,
                        "mutability": "mutable",
                        "name": "_s",
                        "nameLocation": "6444:2:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10447,
                        "src": "6436:10:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 10390,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6436:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6308:144:36"
                  },
                  "returnParameters": {
                    "id": 10394,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6479:0:36"
                  },
                  "scope": 10941,
                  "src": "6278:639:36",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    12088
                  ],
                  "body": {
                    "id": 10460,
                    "nodeType": "Block",
                    "src": "7008:43:36",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 10455,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "7028:3:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 10456,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "7028:10:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10457,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10450,
                              "src": "7040:3:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 10454,
                            "name": "_delegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10505,
                            "src": "7018:9:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 10458,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7018:26:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10459,
                        "nodeType": "ExpressionStatement",
                        "src": "7018:26:36"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10448,
                    "nodeType": "StructuredDocumentation",
                    "src": "6923:23:36",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "5c19a95c",
                  "id": 10461,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegate",
                  "nameLocation": "6960:8:36",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10452,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6999:8:36"
                  },
                  "parameters": {
                    "id": 10451,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10450,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "6977:3:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10461,
                        "src": "6969:11:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10449,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6969:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6968:13:36"
                  },
                  "returnParameters": {
                    "id": 10453,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7008:0:36"
                  },
                  "scope": 10941,
                  "src": "6951:100:36",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 10504,
                    "nodeType": "Block",
                    "src": "7261:297:36",
                    "statements": [
                      {
                        "assignments": [
                          10470
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10470,
                            "mutability": "mutable",
                            "name": "balance",
                            "nameLocation": "7279:7:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10504,
                            "src": "7271:15:36",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 10469,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7271:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10474,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10472,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10464,
                              "src": "7299:5:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 10471,
                            "name": "balanceOf",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 138,
                            "src": "7289:9:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view returns (uint256)"
                            }
                          },
                          "id": 10473,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7289:16:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7271:34:36"
                      },
                      {
                        "assignments": [
                          10476
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10476,
                            "mutability": "mutable",
                            "name": "currentDelegate",
                            "nameLocation": "7323:15:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10504,
                            "src": "7315:23:36",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 10475,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "7315:7:36",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10480,
                        "initialValue": {
                          "baseExpression": {
                            "id": 10477,
                            "name": "delegates",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9982,
                            "src": "7341:9:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                              "typeString": "mapping(address => address)"
                            }
                          },
                          "id": 10479,
                          "indexExpression": {
                            "id": 10478,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10464,
                            "src": "7351:5:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "7341:16:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7315:42:36"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 10483,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10481,
                            "name": "currentDelegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10476,
                            "src": "7372:15:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 10482,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10466,
                            "src": "7391:3:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "7372:22:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10486,
                        "nodeType": "IfStatement",
                        "src": "7368:59:36",
                        "trueBody": {
                          "id": 10485,
                          "nodeType": "Block",
                          "src": "7396:31:36",
                          "statements": [
                            {
                              "functionReturnParameters": 10468,
                              "id": 10484,
                              "nodeType": "Return",
                              "src": "7410:7:36"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 10491,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 10487,
                              "name": "delegates",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9982,
                              "src": "7437:9:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                                "typeString": "mapping(address => address)"
                              }
                            },
                            "id": 10489,
                            "indexExpression": {
                              "id": 10488,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10464,
                              "src": "7447:5:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "7437:16:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 10490,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10466,
                            "src": "7456:3:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "7437:22:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 10492,
                        "nodeType": "ExpressionStatement",
                        "src": "7437:22:36"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10494,
                              "name": "currentDelegate",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10476,
                              "src": "7484:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10495,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10466,
                              "src": "7501:3:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10496,
                              "name": "balance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10470,
                              "src": "7506:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 10493,
                            "name": "_transferTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10718,
                            "src": "7470:13:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 10497,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7470:44:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10498,
                        "nodeType": "ExpressionStatement",
                        "src": "7470:44:36"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 10500,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10464,
                              "src": "7540:5:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10501,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10466,
                              "src": "7547:3:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 10499,
                            "name": "Delegated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12049,
                            "src": "7530:9:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 10502,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7530:21:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10503,
                        "nodeType": "EmitStatement",
                        "src": "7525:26:36"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10462,
                    "nodeType": "StructuredDocumentation",
                    "src": "7057:143:36",
                    "text": "@notice Delegates a users chance to another\n @param _user The user whose balance should be delegated\n @param _to The delegate"
                  },
                  "id": 10505,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_delegate",
                  "nameLocation": "7214:9:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10467,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10464,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "7232:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10505,
                        "src": "7224:13:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10463,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7224:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10466,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "7247:3:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10505,
                        "src": "7239:11:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10465,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7239:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7223:28:36"
                  },
                  "returnParameters": {
                    "id": 10468,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7261:0:36"
                  },
                  "scope": 10941,
                  "src": "7205:353:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10599,
                    "nodeType": "Block",
                    "src": "8173:724:36",
                    "statements": [
                      {
                        "assignments": [
                          10522
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10522,
                            "mutability": "mutable",
                            "name": "startTimesLength",
                            "nameLocation": "8191:16:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10599,
                            "src": "8183:24:36",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 10521,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8183:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10525,
                        "initialValue": {
                          "expression": {
                            "id": 10523,
                            "name": "_startTimes",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10512,
                            "src": "8210:11:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                              "typeString": "uint64[] calldata"
                            }
                          },
                          "id": 10524,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "8210:18:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8183:45:36"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 10530,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 10527,
                                "name": "startTimesLength",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10522,
                                "src": "8246:16:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 10528,
                                  "name": "_endTimes",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10515,
                                  "src": "8266:9:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                    "typeString": "uint64[] calldata"
                                  }
                                },
                                "id": 10529,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "8266:16:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "8246:36:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5469636b65742f73746172742d656e642d74696d65732d6c656e6774682d6d61746368",
                              "id": 10531,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8284:37:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c485dc2a924c6dd174a7f3539c902d57d6264aa0653fd1afa5b4084da601fff7",
                                "typeString": "literal_string \"Ticket/start-end-times-length-match\""
                              },
                              "value": "Ticket/start-end-times-length-match"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c485dc2a924c6dd174a7f3539c902d57d6264aa0653fd1afa5b4084da601fff7",
                                "typeString": "literal_string \"Ticket/start-end-times-length-match\""
                              }
                            ],
                            "id": 10526,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8238:7:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 10532,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8238:84:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10533,
                        "nodeType": "ExpressionStatement",
                        "src": "8238:84:36"
                      },
                      {
                        "assignments": [
                          10538
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10538,
                            "mutability": "mutable",
                            "name": "accountDetails",
                            "nameLocation": "8363:14:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10599,
                            "src": "8333:44:36",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 10537,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10536,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12873,
                                "src": "8333:22:36"
                              },
                              "referencedDeclaration": 12873,
                              "src": "8333:22:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10541,
                        "initialValue": {
                          "expression": {
                            "id": 10539,
                            "name": "_account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10509,
                            "src": "8380:8:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                              "typeString": "struct TwabLib.Account storage pointer"
                            }
                          },
                          "id": 10540,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12876,
                          "src": "8380:16:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8333:63:36"
                      },
                      {
                        "assignments": [
                          10546
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10546,
                            "mutability": "mutable",
                            "name": "averageBalances",
                            "nameLocation": "8424:15:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10599,
                            "src": "8407:32:36",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 10544,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8407:7:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 10545,
                              "nodeType": "ArrayTypeName",
                              "src": "8407:9:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10552,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10550,
                              "name": "startTimesLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10522,
                              "src": "8456:16:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 10549,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "8442:13:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 10547,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8446:7:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 10548,
                              "nodeType": "ArrayTypeName",
                              "src": "8446:9:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 10551,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8442:31:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8407:66:36"
                      },
                      {
                        "assignments": [
                          10554
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10554,
                            "mutability": "mutable",
                            "name": "currentTimestamp",
                            "nameLocation": "8490:16:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10599,
                            "src": "8483:23:36",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 10553,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "8483:6:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10560,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 10557,
                                "name": "block",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -4,
                                "src": "8516:5:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_block",
                                  "typeString": "block"
                                }
                              },
                              "id": 10558,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "src": "8516:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 10556,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "8509:6:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 10555,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "8509:6:36",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 10559,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8509:23:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8483:49:36"
                      },
                      {
                        "body": {
                          "id": 10595,
                          "nodeType": "Block",
                          "src": "8590:268:36",
                          "statements": [
                            {
                              "expression": {
                                "id": 10593,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 10571,
                                    "name": "averageBalances",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10546,
                                    "src": "8604:15:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 10573,
                                  "indexExpression": {
                                    "id": 10572,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10562,
                                    "src": "8620:1:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "8604:18:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 10576,
                                        "name": "_account",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 10509,
                                        "src": "8675:8:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                          "typeString": "struct TwabLib.Account storage pointer"
                                        }
                                      },
                                      "id": 10577,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "twabs",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 12881,
                                      "src": "8675:14:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      }
                                    },
                                    {
                                      "id": 10578,
                                      "name": "accountDetails",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 10538,
                                      "src": "8707:14:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "baseExpression": {
                                            "id": 10581,
                                            "name": "_startTimes",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 10512,
                                            "src": "8746:11:36",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                              "typeString": "uint64[] calldata"
                                            }
                                          },
                                          "id": 10583,
                                          "indexExpression": {
                                            "id": 10582,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 10562,
                                            "src": "8758:1:36",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8746:14:36",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        ],
                                        "id": 10580,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "8739:6:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 10579,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "8739:6:36",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 10584,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "8739:22:36",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "baseExpression": {
                                            "id": 10587,
                                            "name": "_endTimes",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 10515,
                                            "src": "8786:9:36",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                              "typeString": "uint64[] calldata"
                                            }
                                          },
                                          "id": 10589,
                                          "indexExpression": {
                                            "id": 10588,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 10562,
                                            "src": "8796:1:36",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8786:12:36",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        ],
                                        "id": 10586,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "8779:6:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 10585,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "8779:6:36",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 10590,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "8779:20:36",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "id": 10591,
                                      "name": "currentTimestamp",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 10554,
                                      "src": "8817:16:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      },
                                      {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "expression": {
                                      "id": 10574,
                                      "name": "TwabLib",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 13599,
                                      "src": "8625:7:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                        "typeString": "type(library TwabLib)"
                                      }
                                    },
                                    "id": 10575,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "getAverageBalanceBetween",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 13022,
                                    "src": "8625:32:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                                      "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32,uint32) view returns (uint256)"
                                    }
                                  },
                                  "id": 10592,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "8625:222:36",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "8604:243:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 10594,
                              "nodeType": "ExpressionStatement",
                              "src": "8604:243:36"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 10567,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10565,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10562,
                            "src": "8563:1:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 10566,
                            "name": "startTimesLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10522,
                            "src": "8567:16:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8563:20:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10596,
                        "initializationExpression": {
                          "assignments": [
                            10562
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 10562,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "8556:1:36",
                              "nodeType": "VariableDeclaration",
                              "scope": 10596,
                              "src": "8548:9:36",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 10561,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8548:7:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 10564,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 10563,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8560:1:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "8548:13:36"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 10569,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "8585:3:36",
                            "subExpression": {
                              "id": 10568,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10562,
                              "src": "8585:1:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 10570,
                          "nodeType": "ExpressionStatement",
                          "src": "8585:3:36"
                        },
                        "nodeType": "ForStatement",
                        "src": "8543:315:36"
                      },
                      {
                        "expression": {
                          "id": 10597,
                          "name": "averageBalances",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10546,
                          "src": "8875:15:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 10520,
                        "id": 10598,
                        "nodeType": "Return",
                        "src": "8868:22:36"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10506,
                    "nodeType": "StructuredDocumentation",
                    "src": "7620:347:36",
                    "text": " @notice Retrieves the average balances held by a user for a given time frame.\n @param _account The user whose balance is checked.\n @param _startTimes The start time of the time frame.\n @param _endTimes The end time of the time frame.\n @return The average balance that the user held during the time frame."
                  },
                  "id": 10600,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getAverageBalancesBetween",
                  "nameLocation": "7981:26:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10516,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10509,
                        "mutability": "mutable",
                        "name": "_account",
                        "nameLocation": "8041:8:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10600,
                        "src": "8017:32:36",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                          "typeString": "struct TwabLib.Account"
                        },
                        "typeName": {
                          "id": 10508,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10507,
                            "name": "TwabLib.Account",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12882,
                            "src": "8017:15:36"
                          },
                          "referencedDeclaration": 12882,
                          "src": "8017:15:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                            "typeString": "struct TwabLib.Account"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10512,
                        "mutability": "mutable",
                        "name": "_startTimes",
                        "nameLocation": "8077:11:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10600,
                        "src": "8059:29:36",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10510,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "8059:6:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 10511,
                          "nodeType": "ArrayTypeName",
                          "src": "8059:8:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10515,
                        "mutability": "mutable",
                        "name": "_endTimes",
                        "nameLocation": "8116:9:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10600,
                        "src": "8098:27:36",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10513,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "8098:6:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 10514,
                          "nodeType": "ArrayTypeName",
                          "src": "8098:8:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8007:124:36"
                  },
                  "returnParameters": {
                    "id": 10520,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10519,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10600,
                        "src": "8155:16:36",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10517,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "8155:7:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 10518,
                          "nodeType": "ArrayTypeName",
                          "src": "8155:9:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8154:18:36"
                  },
                  "scope": 10941,
                  "src": "7972:925:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    573
                  ],
                  "body": {
                    "id": 10656,
                    "nodeType": "Block",
                    "src": "9021:364:36",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 10612,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10610,
                            "name": "_from",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10602,
                            "src": "9035:5:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 10611,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10604,
                            "src": "9044:3:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "9035:12:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10615,
                        "nodeType": "IfStatement",
                        "src": "9031:49:36",
                        "trueBody": {
                          "id": 10614,
                          "nodeType": "Block",
                          "src": "9049:31:36",
                          "statements": [
                            {
                              "functionReturnParameters": 10609,
                              "id": 10613,
                              "nodeType": "Return",
                              "src": "9063:7:36"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          10617
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10617,
                            "mutability": "mutable",
                            "name": "_fromDelegate",
                            "nameLocation": "9098:13:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10656,
                            "src": "9090:21:36",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 10616,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "9090:7:36",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10618,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9090:21:36"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 10624,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10619,
                            "name": "_from",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10602,
                            "src": "9125:5:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 10622,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "9142:1:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                }
                              ],
                              "id": 10621,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "9134:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 10620,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "9134:7:36",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 10623,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "9134:10:36",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "9125:19:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10632,
                        "nodeType": "IfStatement",
                        "src": "9121:82:36",
                        "trueBody": {
                          "id": 10631,
                          "nodeType": "Block",
                          "src": "9146:57:36",
                          "statements": [
                            {
                              "expression": {
                                "id": 10629,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 10625,
                                  "name": "_fromDelegate",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10617,
                                  "src": "9160:13:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 10626,
                                    "name": "delegates",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9982,
                                    "src": "9176:9:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                                      "typeString": "mapping(address => address)"
                                    }
                                  },
                                  "id": 10628,
                                  "indexExpression": {
                                    "id": 10627,
                                    "name": "_from",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10602,
                                    "src": "9186:5:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "9176:16:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "9160:32:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 10630,
                              "nodeType": "ExpressionStatement",
                              "src": "9160:32:36"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          10634
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10634,
                            "mutability": "mutable",
                            "name": "_toDelegate",
                            "nameLocation": "9221:11:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10656,
                            "src": "9213:19:36",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 10633,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "9213:7:36",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10635,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9213:19:36"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 10641,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10636,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10604,
                            "src": "9246:3:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 10639,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "9261:1:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                }
                              ],
                              "id": 10638,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "9253:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 10637,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "9253:7:36",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 10640,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "9253:10:36",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "9246:17:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10649,
                        "nodeType": "IfStatement",
                        "src": "9242:76:36",
                        "trueBody": {
                          "id": 10648,
                          "nodeType": "Block",
                          "src": "9265:53:36",
                          "statements": [
                            {
                              "expression": {
                                "id": 10646,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 10642,
                                  "name": "_toDelegate",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10634,
                                  "src": "9279:11:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 10643,
                                    "name": "delegates",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9982,
                                    "src": "9293:9:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                                      "typeString": "mapping(address => address)"
                                    }
                                  },
                                  "id": 10645,
                                  "indexExpression": {
                                    "id": 10644,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10604,
                                    "src": "9303:3:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "9293:14:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "9279:28:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 10647,
                              "nodeType": "ExpressionStatement",
                              "src": "9279:28:36"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10651,
                              "name": "_fromDelegate",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10617,
                              "src": "9342:13:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10652,
                              "name": "_toDelegate",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10634,
                              "src": "9357:11:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10653,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10606,
                              "src": "9370:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 10650,
                            "name": "_transferTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10718,
                            "src": "9328:13:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 10654,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9328:50:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10655,
                        "nodeType": "ExpressionStatement",
                        "src": "9328:50:36"
                      }
                    ]
                  },
                  "id": 10657,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_beforeTokenTransfer",
                  "nameLocation": "8937:20:36",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10608,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9012:8:36"
                  },
                  "parameters": {
                    "id": 10607,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10602,
                        "mutability": "mutable",
                        "name": "_from",
                        "nameLocation": "8966:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10657,
                        "src": "8958:13:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10601,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8958:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10604,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "8981:3:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10657,
                        "src": "8973:11:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10603,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8973:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10606,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "8994:7:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10657,
                        "src": "8986:15:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10605,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8986:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8957:45:36"
                  },
                  "returnParameters": {
                    "id": 10609,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9021:0:36"
                  },
                  "scope": 10941,
                  "src": "8928:457:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10717,
                    "nodeType": "Block",
                    "src": "9794:580:36",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 10672,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10667,
                            "name": "_from",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10660,
                            "src": "9900:5:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 10670,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "9917:1:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                }
                              ],
                              "id": 10669,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "9909:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 10668,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "9909:7:36",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 10671,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "9909:10:36",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "9900:19:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10691,
                        "nodeType": "IfStatement",
                        "src": "9896:186:36",
                        "trueBody": {
                          "id": 10690,
                          "nodeType": "Block",
                          "src": "9921:161:36",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 10674,
                                    "name": "_from",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10660,
                                    "src": "9953:5:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 10675,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10664,
                                    "src": "9960:7:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 10673,
                                  "name": "_decreaseUserTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10841,
                                  "src": "9935:17:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint256)"
                                  }
                                },
                                "id": 10676,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9935:33:36",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 10677,
                              "nodeType": "ExpressionStatement",
                              "src": "9935:33:36"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 10683,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 10678,
                                  "name": "_to",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10662,
                                  "src": "9987:3:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "hexValue": "30",
                                      "id": 10681,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "10002:1:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      }
                                    ],
                                    "id": 10680,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "9994:7:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 10679,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "9994:7:36",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 10682,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "9994:10:36",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "9987:17:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 10689,
                              "nodeType": "IfStatement",
                              "src": "9983:89:36",
                              "trueBody": {
                                "id": 10688,
                                "nodeType": "Block",
                                "src": "10006:66:36",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 10685,
                                          "name": "_amount",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 10664,
                                          "src": "10049:7:36",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 10684,
                                        "name": "_decreaseTotalSupplyTwab",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 10891,
                                        "src": "10024:24:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                                          "typeString": "function (uint256)"
                                        }
                                      },
                                      "id": 10686,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "10024:33:36",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 10687,
                                    "nodeType": "ExpressionStatement",
                                    "src": "10024:33:36"
                                  }
                                ]
                              }
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 10697,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10692,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10662,
                            "src": "10188:3:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 10695,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "10203:1:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                }
                              ],
                              "id": 10694,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "10195:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 10693,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "10195:7:36",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 10696,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "10195:10:36",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "10188:17:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10716,
                        "nodeType": "IfStatement",
                        "src": "10184:184:36",
                        "trueBody": {
                          "id": 10715,
                          "nodeType": "Block",
                          "src": "10207:161:36",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 10699,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10662,
                                    "src": "10239:3:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 10700,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10664,
                                    "src": "10244:7:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 10698,
                                  "name": "_increaseUserTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10779,
                                  "src": "10221:17:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint256)"
                                  }
                                },
                                "id": 10701,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10221:31:36",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 10702,
                              "nodeType": "ExpressionStatement",
                              "src": "10221:31:36"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 10708,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 10703,
                                  "name": "_from",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10660,
                                  "src": "10271:5:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "hexValue": "30",
                                      "id": 10706,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "10288:1:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      }
                                    ],
                                    "id": 10705,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "10280:7:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 10704,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "10280:7:36",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 10707,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "10280:10:36",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "10271:19:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 10714,
                              "nodeType": "IfStatement",
                              "src": "10267:91:36",
                              "trueBody": {
                                "id": 10713,
                                "nodeType": "Block",
                                "src": "10292:66:36",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 10710,
                                          "name": "_amount",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 10664,
                                          "src": "10335:7:36",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 10709,
                                        "name": "_increaseTotalSupplyTwab",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 10940,
                                        "src": "10310:24:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                                          "typeString": "function (uint256)"
                                        }
                                      },
                                      "id": 10711,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "10310:33:36",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 10712,
                                    "nodeType": "ExpressionStatement",
                                    "src": "10310:33:36"
                                  }
                                ]
                              }
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10658,
                    "nodeType": "StructuredDocumentation",
                    "src": "9391:321:36",
                    "text": "@notice Transfers the given TWAB balance from one user to another\n @param _from The user to transfer the balance from.  May be zero in the event of a mint.\n @param _to The user to transfer the balance to.  May be zero in the event of a burn.\n @param _amount The balance that is being transferred."
                  },
                  "id": 10718,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_transferTwab",
                  "nameLocation": "9726:13:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10665,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10660,
                        "mutability": "mutable",
                        "name": "_from",
                        "nameLocation": "9748:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10718,
                        "src": "9740:13:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10659,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9740:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10662,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "9763:3:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10718,
                        "src": "9755:11:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10661,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9755:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10664,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "9776:7:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10718,
                        "src": "9768:15:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10663,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9768:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9739:45:36"
                  },
                  "returnParameters": {
                    "id": 10666,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9794:0:36"
                  },
                  "scope": 10941,
                  "src": "9717:657:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10778,
                    "nodeType": "Block",
                    "src": "10645:479:36",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 10728,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10726,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10723,
                            "src": "10659:7:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 10727,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "10670:1:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "10659:12:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10731,
                        "nodeType": "IfStatement",
                        "src": "10655:49:36",
                        "trueBody": {
                          "id": 10730,
                          "nodeType": "Block",
                          "src": "10673:31:36",
                          "statements": [
                            {
                              "functionReturnParameters": 10725,
                              "id": 10729,
                              "nodeType": "Return",
                              "src": "10687:7:36"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          10736
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10736,
                            "mutability": "mutable",
                            "name": "_account",
                            "nameLocation": "10738:8:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10778,
                            "src": "10714:32:36",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 10735,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10734,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12882,
                                "src": "10714:15:36"
                              },
                              "referencedDeclaration": 12882,
                              "src": "10714:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10740,
                        "initialValue": {
                          "baseExpression": {
                            "id": 10737,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9973,
                            "src": "10749:9:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12882_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 10739,
                          "indexExpression": {
                            "id": 10738,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10721,
                            "src": "10759:3:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "10749:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12882_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10714:49:36"
                      },
                      {
                        "assignments": [
                          10745,
                          10748,
                          10750
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10745,
                            "mutability": "mutable",
                            "name": "accountDetails",
                            "nameLocation": "10818:14:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10778,
                            "src": "10788:44:36",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 10744,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10743,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12873,
                                "src": "10788:22:36"
                              },
                              "referencedDeclaration": 12873,
                              "src": "10788:22:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10748,
                            "mutability": "mutable",
                            "name": "twab",
                            "nameLocation": "10880:4:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10778,
                            "src": "10846:38:36",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10747,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10746,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "10846:26:36"
                              },
                              "referencedDeclaration": 12454,
                              "src": "10846:26:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10750,
                            "mutability": "mutable",
                            "name": "isNew",
                            "nameLocation": "10903:5:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10778,
                            "src": "10898:10:36",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 10749,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "10898:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10763,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10753,
                              "name": "_account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10736,
                              "src": "10945:8:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 10754,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10723,
                                  "src": "10955:7:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 10755,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "toUint208",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12407,
                                "src": "10955:17:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint208_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (uint208)"
                                }
                              },
                              "id": 10756,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10955:19:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 10759,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "10983:5:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 10760,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "10983:15:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 10758,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "10976:6:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 10757,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "10976:6:36",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10761,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10976:23:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              },
                              {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 10751,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13599,
                              "src": "10921:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 10752,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "increaseBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12929,
                            "src": "10921:23:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Account_$12882_storage_ptr_$_t_uint208_$_t_uint32_$returns$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                              "typeString": "function (struct TwabLib.Account storage pointer,uint208,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "id": 10762,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10921:79:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                            "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10774:226:36"
                      },
                      {
                        "expression": {
                          "id": 10768,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 10764,
                              "name": "_account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10736,
                              "src": "11011:8:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              }
                            },
                            "id": 10766,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "details",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12876,
                            "src": "11011:16:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                              "typeString": "struct TwabLib.AccountDetails storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 10767,
                            "name": "accountDetails",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10745,
                            "src": "11030:14:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails memory"
                            }
                          },
                          "src": "11011:33:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "id": 10769,
                        "nodeType": "ExpressionStatement",
                        "src": "11011:33:36"
                      },
                      {
                        "condition": {
                          "id": 10770,
                          "name": "isNew",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10750,
                          "src": "11059:5:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10777,
                        "nodeType": "IfStatement",
                        "src": "11055:63:36",
                        "trueBody": {
                          "id": 10776,
                          "nodeType": "Block",
                          "src": "11066:52:36",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 10772,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10721,
                                    "src": "11097:3:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 10773,
                                    "name": "twab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10748,
                                    "src": "11102:4:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  ],
                                  "id": 10771,
                                  "name": "NewUserTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12068,
                                  "src": "11085:11:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_struct$_Observation_$12454_memory_ptr_$returns$__$",
                                    "typeString": "function (address,struct ObservationLib.Observation memory)"
                                  }
                                },
                                "id": 10774,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11085:22:36",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 10775,
                              "nodeType": "EmitStatement",
                              "src": "11080:27:36"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10719,
                    "nodeType": "StructuredDocumentation",
                    "src": "10380:172:36",
                    "text": " @notice Increase `_to` TWAB balance.\n @param _to Address of the delegate.\n @param _amount Amount of tokens to be added to `_to` TWAB balance."
                  },
                  "id": 10779,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_increaseUserTwab",
                  "nameLocation": "10566:17:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10724,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10721,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "10601:3:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10779,
                        "src": "10593:11:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10720,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10593:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10723,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "10622:7:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10779,
                        "src": "10614:15:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10722,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10614:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10583:52:36"
                  },
                  "returnParameters": {
                    "id": 10725,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10645:0:36"
                  },
                  "scope": 10941,
                  "src": "10557:567:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10840,
                    "nodeType": "Block",
                    "src": "11395:588:36",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 10789,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10787,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10784,
                            "src": "11409:7:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 10788,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "11420:1:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "11409:12:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10792,
                        "nodeType": "IfStatement",
                        "src": "11405:49:36",
                        "trueBody": {
                          "id": 10791,
                          "nodeType": "Block",
                          "src": "11423:31:36",
                          "statements": [
                            {
                              "functionReturnParameters": 10786,
                              "id": 10790,
                              "nodeType": "Return",
                              "src": "11437:7:36"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          10797
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10797,
                            "mutability": "mutable",
                            "name": "_account",
                            "nameLocation": "11488:8:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10840,
                            "src": "11464:32:36",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 10796,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10795,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12882,
                                "src": "11464:15:36"
                              },
                              "referencedDeclaration": 12882,
                              "src": "11464:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10801,
                        "initialValue": {
                          "baseExpression": {
                            "id": 10798,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9973,
                            "src": "11499:9:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12882_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 10800,
                          "indexExpression": {
                            "id": 10799,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10782,
                            "src": "11509:3:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "11499:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12882_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11464:49:36"
                      },
                      {
                        "assignments": [
                          10806,
                          10809,
                          10811
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10806,
                            "mutability": "mutable",
                            "name": "accountDetails",
                            "nameLocation": "11568:14:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10840,
                            "src": "11538:44:36",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 10805,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10804,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12873,
                                "src": "11538:22:36"
                              },
                              "referencedDeclaration": 12873,
                              "src": "11538:22:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10809,
                            "mutability": "mutable",
                            "name": "twab",
                            "nameLocation": "11630:4:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10840,
                            "src": "11596:38:36",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10808,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10807,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "11596:26:36"
                              },
                              "referencedDeclaration": 12454,
                              "src": "11596:26:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10811,
                            "mutability": "mutable",
                            "name": "isNew",
                            "nameLocation": "11653:5:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10840,
                            "src": "11648:10:36",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 10810,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "11648:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10825,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10814,
                              "name": "_account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10797,
                              "src": "11712:8:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 10815,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10784,
                                  "src": "11738:7:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 10816,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "toUint208",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12407,
                                "src": "11738:17:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint208_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (uint208)"
                                }
                              },
                              "id": 10817,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11738:19:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            {
                              "hexValue": "5469636b65742f747761622d6275726e2d6c742d62616c616e6365",
                              "id": 10818,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "11775:29:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_bdc232da2cacdfc6bb12a6c9925b488f3596a88d72bc540ce4482e6bcaf53c9c",
                                "typeString": "literal_string \"Ticket/twab-burn-lt-balance\""
                              },
                              "value": "Ticket/twab-burn-lt-balance"
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 10821,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "11829:5:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 10822,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "11829:15:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 10820,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "11822:6:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 10819,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "11822:6:36",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10823,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11822:23:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              },
                              {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_bdc232da2cacdfc6bb12a6c9925b488f3596a88d72bc540ce4482e6bcaf53c9c",
                                "typeString": "literal_string \"Ticket/twab-burn-lt-balance\""
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 10812,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13599,
                              "src": "11671:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 10813,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "decreaseBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12984,
                            "src": "11671:23:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Account_$12882_storage_ptr_$_t_uint208_$_t_string_memory_ptr_$_t_uint32_$returns$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                              "typeString": "function (struct TwabLib.Account storage pointer,uint208,string memory,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "id": 10824,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11671:188:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                            "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11524:335:36"
                      },
                      {
                        "expression": {
                          "id": 10830,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 10826,
                              "name": "_account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10797,
                              "src": "11870:8:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              }
                            },
                            "id": 10828,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "details",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12876,
                            "src": "11870:16:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                              "typeString": "struct TwabLib.AccountDetails storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 10829,
                            "name": "accountDetails",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10806,
                            "src": "11889:14:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails memory"
                            }
                          },
                          "src": "11870:33:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "id": 10831,
                        "nodeType": "ExpressionStatement",
                        "src": "11870:33:36"
                      },
                      {
                        "condition": {
                          "id": 10832,
                          "name": "isNew",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10811,
                          "src": "11918:5:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10839,
                        "nodeType": "IfStatement",
                        "src": "11914:63:36",
                        "trueBody": {
                          "id": 10838,
                          "nodeType": "Block",
                          "src": "11925:52:36",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 10834,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10782,
                                    "src": "11956:3:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 10835,
                                    "name": "twab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10809,
                                    "src": "11961:4:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  ],
                                  "id": 10833,
                                  "name": "NewUserTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12068,
                                  "src": "11944:11:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_struct$_Observation_$12454_memory_ptr_$returns$__$",
                                    "typeString": "function (address,struct ObservationLib.Observation memory)"
                                  }
                                },
                                "id": 10836,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11944:22:36",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 10837,
                              "nodeType": "EmitStatement",
                              "src": "11939:27:36"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10780,
                    "nodeType": "StructuredDocumentation",
                    "src": "11130:172:36",
                    "text": " @notice Decrease `_to` TWAB balance.\n @param _to Address of the delegate.\n @param _amount Amount of tokens to be added to `_to` TWAB balance."
                  },
                  "id": 10841,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_decreaseUserTwab",
                  "nameLocation": "11316:17:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10785,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10782,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "11351:3:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10841,
                        "src": "11343:11:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10781,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11343:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10784,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "11372:7:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10841,
                        "src": "11364:15:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10783,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11364:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11333:52:36"
                  },
                  "returnParameters": {
                    "id": 10786,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11395:0:36"
                  },
                  "scope": 10941,
                  "src": "11307:676:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10890,
                    "nodeType": "Block",
                    "src": "12229:569:36",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 10849,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10847,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10844,
                            "src": "12243:7:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 10848,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "12254:1:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "12243:12:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10852,
                        "nodeType": "IfStatement",
                        "src": "12239:49:36",
                        "trueBody": {
                          "id": 10851,
                          "nodeType": "Block",
                          "src": "12257:31:36",
                          "statements": [
                            {
                              "functionReturnParameters": 10846,
                              "id": 10850,
                              "nodeType": "Return",
                              "src": "12271:7:36"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          10857,
                          10860,
                          10862
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10857,
                            "mutability": "mutable",
                            "name": "accountDetails",
                            "nameLocation": "12342:14:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10890,
                            "src": "12312:44:36",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 10856,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10855,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12873,
                                "src": "12312:22:36"
                              },
                              "referencedDeclaration": 12873,
                              "src": "12312:22:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10860,
                            "mutability": "mutable",
                            "name": "tsTwab",
                            "nameLocation": "12404:6:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10890,
                            "src": "12370:40:36",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10859,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10858,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "12370:26:36"
                              },
                              "referencedDeclaration": 12454,
                              "src": "12370:26:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10862,
                            "mutability": "mutable",
                            "name": "tsIsNew",
                            "nameLocation": "12429:7:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10890,
                            "src": "12424:12:36",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 10861,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "12424:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10876,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10865,
                              "name": "totalSupplyTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9977,
                              "src": "12490:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 10866,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10844,
                                  "src": "12523:7:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 10867,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "toUint208",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12407,
                                "src": "12523:17:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint208_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (uint208)"
                                }
                              },
                              "id": 10868,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "12523:19:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            {
                              "hexValue": "5469636b65742f6275726e2d616d6f756e742d657863656564732d746f74616c2d737570706c792d74776162",
                              "id": 10869,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "12560:46:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_78422de710a5c7368b965356ae5e694cedabab088e4b0c64f49927ccb64c8b50",
                                "typeString": "literal_string \"Ticket/burn-amount-exceeds-total-supply-twab\""
                              },
                              "value": "Ticket/burn-amount-exceeds-total-supply-twab"
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 10872,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "12631:5:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 10873,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "12631:15:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 10871,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "12624:6:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 10870,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "12624:6:36",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10874,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "12624:23:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$12882_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_78422de710a5c7368b965356ae5e694cedabab088e4b0c64f49927ccb64c8b50",
                                "typeString": "literal_string \"Ticket/burn-amount-exceeds-total-supply-twab\""
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 10863,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13599,
                              "src": "12449:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 10864,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "decreaseBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12984,
                            "src": "12449:23:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Account_$12882_storage_ptr_$_t_uint208_$_t_string_memory_ptr_$_t_uint32_$returns$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                              "typeString": "function (struct TwabLib.Account storage pointer,uint208,string memory,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "id": 10875,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12449:212:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                            "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12298:363:36"
                      },
                      {
                        "expression": {
                          "id": 10881,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 10877,
                              "name": "totalSupplyTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9977,
                              "src": "12672:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            "id": 10879,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "details",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12876,
                            "src": "12672:23:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                              "typeString": "struct TwabLib.AccountDetails storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 10880,
                            "name": "accountDetails",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10857,
                            "src": "12698:14:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails memory"
                            }
                          },
                          "src": "12672:40:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "id": 10882,
                        "nodeType": "ExpressionStatement",
                        "src": "12672:40:36"
                      },
                      {
                        "condition": {
                          "id": 10883,
                          "name": "tsIsNew",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10862,
                          "src": "12727:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10889,
                        "nodeType": "IfStatement",
                        "src": "12723:69:36",
                        "trueBody": {
                          "id": 10888,
                          "nodeType": "Block",
                          "src": "12736:56:36",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 10885,
                                    "name": "tsTwab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10860,
                                    "src": "12774:6:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  ],
                                  "id": 10884,
                                  "name": "NewTotalSupplyTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12074,
                                  "src": "12755:18:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_struct$_Observation_$12454_memory_ptr_$returns$__$",
                                    "typeString": "function (struct ObservationLib.Observation memory)"
                                  }
                                },
                                "id": 10886,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "12755:26:36",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 10887,
                              "nodeType": "EmitStatement",
                              "src": "12750:31:36"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10842,
                    "nodeType": "StructuredDocumentation",
                    "src": "11989:175:36",
                    "text": "@notice Decreases the total supply twab.  Should be called anytime a balance moves from delegated to undelegated\n @param _amount The amount to decrease the total by"
                  },
                  "id": 10891,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_decreaseTotalSupplyTwab",
                  "nameLocation": "12178:24:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10845,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10844,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "12211:7:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10891,
                        "src": "12203:15:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10843,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12203:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12202:17:36"
                  },
                  "returnParameters": {
                    "id": 10846,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "12229:0:36"
                  },
                  "scope": 10941,
                  "src": "12169:629:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10939,
                    "nodeType": "Block",
                    "src": "13044:455:36",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 10899,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10897,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10894,
                            "src": "13058:7:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 10898,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "13069:1:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "13058:12:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10902,
                        "nodeType": "IfStatement",
                        "src": "13054:49:36",
                        "trueBody": {
                          "id": 10901,
                          "nodeType": "Block",
                          "src": "13072:31:36",
                          "statements": [
                            {
                              "functionReturnParameters": 10896,
                              "id": 10900,
                              "nodeType": "Return",
                              "src": "13086:7:36"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          10907,
                          10910,
                          10912
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10907,
                            "mutability": "mutable",
                            "name": "accountDetails",
                            "nameLocation": "13157:14:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10939,
                            "src": "13127:44:36",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 10906,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10905,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12873,
                                "src": "13127:22:36"
                              },
                              "referencedDeclaration": 12873,
                              "src": "13127:22:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10910,
                            "mutability": "mutable",
                            "name": "_totalSupply",
                            "nameLocation": "13219:12:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10939,
                            "src": "13185:46:36",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10909,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10908,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "13185:26:36"
                              },
                              "referencedDeclaration": 12454,
                              "src": "13185:26:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10912,
                            "mutability": "mutable",
                            "name": "tsIsNew",
                            "nameLocation": "13250:7:36",
                            "nodeType": "VariableDeclaration",
                            "scope": 10939,
                            "src": "13245:12:36",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 10911,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "13245:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10925,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10915,
                              "name": "totalSupplyTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9977,
                              "src": "13294:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 10916,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10894,
                                  "src": "13311:7:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 10917,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "toUint208",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12407,
                                "src": "13311:17:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint208_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (uint208)"
                                }
                              },
                              "id": 10918,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "13311:19:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 10921,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "13339:5:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 10922,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "13339:15:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 10920,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "13332:6:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 10919,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "13332:6:36",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10923,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "13332:23:36",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$12882_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 10913,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13599,
                              "src": "13270:7:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 10914,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "increaseBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12929,
                            "src": "13270:23:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Account_$12882_storage_ptr_$_t_uint208_$_t_uint32_$returns$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                              "typeString": "function (struct TwabLib.Account storage pointer,uint208,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "id": 10924,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13270:86:36",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                            "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13113:243:36"
                      },
                      {
                        "expression": {
                          "id": 10930,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 10926,
                              "name": "totalSupplyTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9977,
                              "src": "13367:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            "id": 10928,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "details",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12876,
                            "src": "13367:23:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                              "typeString": "struct TwabLib.AccountDetails storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 10929,
                            "name": "accountDetails",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10907,
                            "src": "13393:14:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails memory"
                            }
                          },
                          "src": "13367:40:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "id": 10931,
                        "nodeType": "ExpressionStatement",
                        "src": "13367:40:36"
                      },
                      {
                        "condition": {
                          "id": 10932,
                          "name": "tsIsNew",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10912,
                          "src": "13422:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10938,
                        "nodeType": "IfStatement",
                        "src": "13418:75:36",
                        "trueBody": {
                          "id": 10937,
                          "nodeType": "Block",
                          "src": "13431:62:36",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 10934,
                                    "name": "_totalSupply",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10910,
                                    "src": "13469:12:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  ],
                                  "id": 10933,
                                  "name": "NewTotalSupplyTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12074,
                                  "src": "13450:18:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_struct$_Observation_$12454_memory_ptr_$returns$__$",
                                    "typeString": "function (struct ObservationLib.Observation memory)"
                                  }
                                },
                                "id": 10935,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "13450:32:36",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 10936,
                              "nodeType": "EmitStatement",
                              "src": "13445:37:36"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10892,
                    "nodeType": "StructuredDocumentation",
                    "src": "12804:175:36",
                    "text": "@notice Increases the total supply twab.  Should be called anytime a balance moves from undelegated to delegated\n @param _amount The amount to increase the total by"
                  },
                  "id": 10940,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_increaseTotalSupplyTwab",
                  "nameLocation": "12993:24:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10895,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10894,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "13026:7:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 10940,
                        "src": "13018:15:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10893,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13018:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13017:17:36"
                  },
                  "returnParameters": {
                    "id": 10896,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13044:0:36"
                  },
                  "scope": 10941,
                  "src": "12984:515:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 10942,
              "src": "897:12604:36",
              "usedErrors": []
            }
          ],
          "src": "37:13465:36"
        },
        "id": 36
      },
      "contracts/external/compound/CTokenInterface.sol": {
        "ast": {
          "absolutePath": "contracts/external/compound/CTokenInterface.sol",
          "exportedSymbols": {
            "CTokenInterface": [
              11009
            ],
            "IERC20": [
              663
            ]
          },
          "id": 11010,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 10943,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:37"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 10944,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11010,
              "sourceUnit": 664,
              "src": "61:56:37",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 10945,
                    "name": "IERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 663,
                    "src": "148:6:37"
                  },
                  "id": 10946,
                  "nodeType": "InheritanceSpecifier",
                  "src": "148:6:37"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 11009,
              "linearizedBaseContracts": [
                11009,
                663
              ],
              "name": "CTokenInterface",
              "nameLocation": "129:15:37",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "functionSelector": "313ce567",
                  "id": 10951,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decimals",
                  "nameLocation": "170:8:37",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10947,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "178:2:37"
                  },
                  "returnParameters": {
                    "id": 10950,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10949,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10951,
                        "src": "204:5:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 10948,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "204:5:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "203:7:37"
                  },
                  "scope": 11009,
                  "src": "161:50:37",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    594
                  ],
                  "functionSelector": "18160ddd",
                  "id": 10957,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "totalSupply",
                  "nameLocation": "226:11:37",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10953,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "254:8:37"
                  },
                  "parameters": {
                    "id": 10952,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "237:2:37"
                  },
                  "returnParameters": {
                    "id": 10956,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10955,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10957,
                        "src": "272:7:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10954,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "272:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "271:9:37"
                  },
                  "scope": 11009,
                  "src": "217:64:37",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "6f307dc3",
                  "id": 10962,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "underlying",
                  "nameLocation": "296:10:37",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10958,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "306:2:37"
                  },
                  "returnParameters": {
                    "id": 10961,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10960,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10962,
                        "src": "332:7:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10959,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "332:7:37",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "331:9:37"
                  },
                  "scope": 11009,
                  "src": "287:54:37",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "3af9e669",
                  "id": 10969,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOfUnderlying",
                  "nameLocation": "356:19:37",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10965,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10964,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "384:5:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 10969,
                        "src": "376:13:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10963,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "376:7:37",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "375:15:37"
                  },
                  "returnParameters": {
                    "id": 10968,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10967,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10969,
                        "src": "409:7:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10966,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "409:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "408:9:37"
                  },
                  "scope": 11009,
                  "src": "347:71:37",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "ae9d70b0",
                  "id": 10974,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supplyRatePerBlock",
                  "nameLocation": "433:18:37",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10970,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "451:2:37"
                  },
                  "returnParameters": {
                    "id": 10973,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10972,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10974,
                        "src": "472:7:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10971,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "472:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "471:9:37"
                  },
                  "scope": 11009,
                  "src": "424:57:37",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "bd6d894d",
                  "id": 10979,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "exchangeRateCurrent",
                  "nameLocation": "496:19:37",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10975,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "515:2:37"
                  },
                  "returnParameters": {
                    "id": 10978,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10977,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10979,
                        "src": "536:7:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10976,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "536:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "535:9:37"
                  },
                  "scope": 11009,
                  "src": "487:58:37",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "a0712d68",
                  "id": 10986,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mint",
                  "nameLocation": "560:4:37",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10982,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10981,
                        "mutability": "mutable",
                        "name": "mintAmount",
                        "nameLocation": "573:10:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 10986,
                        "src": "565:18:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10980,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "565:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "564:20:37"
                  },
                  "returnParameters": {
                    "id": 10985,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10984,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10986,
                        "src": "603:7:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10983,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "603:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "602:9:37"
                  },
                  "scope": 11009,
                  "src": "551:61:37",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "db006a75",
                  "id": 10993,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "redeem",
                  "nameLocation": "627:6:37",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10989,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10988,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "642:6:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 10993,
                        "src": "634:14:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10987,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "634:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "633:16:37"
                  },
                  "returnParameters": {
                    "id": 10992,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10991,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10993,
                        "src": "668:7:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10990,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "668:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "667:9:37"
                  },
                  "scope": 11009,
                  "src": "618:59:37",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    602
                  ],
                  "functionSelector": "70a08231",
                  "id": 11001,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOf",
                  "nameLocation": "692:9:37",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10997,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "730:8:37"
                  },
                  "parameters": {
                    "id": 10996,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10995,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "710:4:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 11001,
                        "src": "702:12:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10994,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "702:7:37",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "701:14:37"
                  },
                  "returnParameters": {
                    "id": 11000,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10999,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11001,
                        "src": "748:7:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10998,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "748:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "747:9:37"
                  },
                  "scope": 11009,
                  "src": "683:74:37",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "852a12e3",
                  "id": 11008,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "redeemUnderlying",
                  "nameLocation": "772:16:37",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11004,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11003,
                        "mutability": "mutable",
                        "name": "redeemAmount",
                        "nameLocation": "797:12:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 11008,
                        "src": "789:20:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11002,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "789:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "788:22:37"
                  },
                  "returnParameters": {
                    "id": 11007,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11006,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11008,
                        "src": "829:7:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11005,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "829:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "828:9:37"
                  },
                  "scope": 11009,
                  "src": "763:75:37",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11010,
              "src": "119:721:37",
              "usedErrors": []
            }
          ],
          "src": "37:804:37"
        },
        "id": 37
      },
      "contracts/external/compound/ICompLike.sol": {
        "ast": {
          "absolutePath": "contracts/external/compound/ICompLike.sol",
          "exportedSymbols": {
            "ICompLike": [
              11027
            ],
            "IERC20": [
              663
            ]
          },
          "id": 11028,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11011,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:38"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 11012,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11028,
              "sourceUnit": 664,
              "src": "61:56:38",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 11013,
                    "name": "IERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 663,
                    "src": "142:6:38"
                  },
                  "id": 11014,
                  "nodeType": "InheritanceSpecifier",
                  "src": "142:6:38"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 11027,
              "linearizedBaseContracts": [
                11027,
                663
              ],
              "name": "ICompLike",
              "nameLocation": "129:9:38",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "functionSelector": "b4b5ea57",
                  "id": 11021,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getCurrentVotes",
                  "nameLocation": "164:15:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11017,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11016,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "188:7:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 11021,
                        "src": "180:15:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11015,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "180:7:38",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "179:17:38"
                  },
                  "returnParameters": {
                    "id": 11020,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11019,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11021,
                        "src": "220:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 11018,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "220:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "219:8:38"
                  },
                  "scope": 11027,
                  "src": "155:73:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "5c19a95c",
                  "id": 11026,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegate",
                  "nameLocation": "243:8:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11024,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11023,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "260:8:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 11026,
                        "src": "252:16:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11022,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "252:7:38",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "251:18:38"
                  },
                  "returnParameters": {
                    "id": 11025,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "278:0:38"
                  },
                  "scope": 11027,
                  "src": "234:45:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11028,
              "src": "119:162:38",
              "usedErrors": []
            }
          ],
          "src": "37:245:38"
        },
        "id": 38
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol",
          "exportedSymbols": {
            "ERC20": [
              4734
            ],
            "ERC20Mintable": [
              4807
            ],
            "IYieldSource": [
              4176
            ],
            "MockYieldSource": [
              5110
            ]
          },
          "id": 11031,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11029,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:39"
            },
            {
              "absolutePath": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol",
              "file": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol",
              "id": 11030,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11031,
              "sourceUnit": 5111,
              "src": "63:81:39",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:106:39"
        },
        "id": 39
      },
      "contracts/interfaces/IControlledToken.sol": {
        "ast": {
          "absolutePath": "contracts/interfaces/IControlledToken.sol",
          "exportedSymbols": {
            "IControlledToken": [
              11069
            ],
            "IERC20": [
              663
            ]
          },
          "id": 11070,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11032,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:40"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 11033,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11070,
              "sourceUnit": 664,
              "src": "61:56:40",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 11035,
                    "name": "IERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 663,
                    "src": "280:6:40"
                  },
                  "id": 11036,
                  "nodeType": "InheritanceSpecifier",
                  "src": "280:6:40"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 11034,
                "nodeType": "StructuredDocumentation",
                "src": "119:130:40",
                "text": "@title IControlledToken\n @author PoolTogether Inc Team\n @notice ERC20 Tokens with a controller for minting & burning."
              },
              "fullyImplemented": false,
              "id": 11069,
              "linearizedBaseContracts": [
                11069,
                663
              ],
              "name": "IControlledToken",
              "nameLocation": "260:16:40",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 11037,
                    "nodeType": "StructuredDocumentation",
                    "src": "294:91:40",
                    "text": "@notice Interface to the contract responsible for controlling mint/burn"
                  },
                  "functionSelector": "f77c4791",
                  "id": 11042,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "controller",
                  "nameLocation": "399:10:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11038,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "409:2:40"
                  },
                  "returnParameters": {
                    "id": 11041,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11040,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11042,
                        "src": "435:7:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11039,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "435:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "434:9:40"
                  },
                  "scope": 11069,
                  "src": "390:54:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11043,
                    "nodeType": "StructuredDocumentation",
                    "src": "450:272:40",
                    "text": " @notice Allows the controller to mint tokens for a user account\n @dev May be overridden to provide more granular control over minting\n @param user Address of the receiver of the minted tokens\n @param amount Amount of tokens to mint"
                  },
                  "functionSelector": "5d7b0758",
                  "id": 11050,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "controllerMint",
                  "nameLocation": "736:14:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11048,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11045,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "759:4:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 11050,
                        "src": "751:12:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11044,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "751:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11047,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "773:6:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 11050,
                        "src": "765:14:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11046,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "765:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "750:30:40"
                  },
                  "returnParameters": {
                    "id": 11049,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "789:0:40"
                  },
                  "scope": 11069,
                  "src": "727:63:40",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11051,
                    "nodeType": "StructuredDocumentation",
                    "src": "796:278:40",
                    "text": " @notice Allows the controller to burn tokens from a user account\n @dev May be overridden to provide more granular control over burning\n @param user Address of the holder account to burn tokens from\n @param amount Amount of tokens to burn"
                  },
                  "functionSelector": "90596dd1",
                  "id": 11058,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "controllerBurn",
                  "nameLocation": "1088:14:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11056,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11053,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1111:4:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 11058,
                        "src": "1103:12:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11052,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1103:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11055,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1125:6:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 11058,
                        "src": "1117:14:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11054,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1117:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1102:30:40"
                  },
                  "returnParameters": {
                    "id": 11057,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1141:0:40"
                  },
                  "scope": 11069,
                  "src": "1079:63:40",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11059,
                    "nodeType": "StructuredDocumentation",
                    "src": "1148:414:40",
                    "text": " @notice Allows an operator via the controller to burn tokens on behalf of a user account\n @dev May be overridden to provide more granular control over operator-burning\n @param operator Address of the operator performing the burn action via the controller contract\n @param user Address of the holder account to burn tokens from\n @param amount Amount of tokens to burn"
                  },
                  "functionSelector": "631b5dfb",
                  "id": 11068,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "controllerBurnFrom",
                  "nameLocation": "1576:18:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11066,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11061,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "1612:8:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 11068,
                        "src": "1604:16:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11060,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1604:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11063,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1638:4:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 11068,
                        "src": "1630:12:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11062,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1630:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11065,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1660:6:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 11068,
                        "src": "1652:14:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11064,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1652:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1594:78:40"
                  },
                  "returnParameters": {
                    "id": 11067,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1681:0:40"
                  },
                  "scope": 11069,
                  "src": "1567:115:40",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11070,
              "src": "250:1434:40",
              "usedErrors": []
            }
          ],
          "src": "37:1648:40"
        },
        "id": 40
      },
      "contracts/interfaces/IDrawBeacon.sol": {
        "ast": {
          "absolutePath": "contracts/interfaces/IDrawBeacon.sol",
          "exportedSymbols": {
            "IDrawBeacon": [
              11241
            ],
            "IDrawBuffer": [
              11318
            ],
            "RNGInterface": [
              4142
            ]
          },
          "id": 11242,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11071,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:41"
            },
            {
              "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "file": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "id": 11072,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11242,
              "sourceUnit": 4143,
              "src": "61:77:41",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IDrawBuffer.sol",
              "file": "./IDrawBuffer.sol",
              "id": 11073,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11242,
              "sourceUnit": 11319,
              "src": "139:27:41",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 11074,
                "nodeType": "StructuredDocumentation",
                "src": "168:98:41",
                "text": "@title  IDrawBeacon\n @author PoolTogether Inc Team\n @notice The DrawBeacon interface."
              },
              "fullyImplemented": false,
              "id": 11241,
              "linearizedBaseContracts": [
                11241
              ],
              "name": "IDrawBeacon",
              "nameLocation": "277:11:41",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "IDrawBeacon.Draw",
                  "id": 11085,
                  "members": [
                    {
                      "constant": false,
                      "id": 11076,
                      "mutability": "mutable",
                      "name": "winningRandomNumber",
                      "nameLocation": "802:19:41",
                      "nodeType": "VariableDeclaration",
                      "scope": 11085,
                      "src": "794:27:41",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 11075,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "794:7:41",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11078,
                      "mutability": "mutable",
                      "name": "drawId",
                      "nameLocation": "838:6:41",
                      "nodeType": "VariableDeclaration",
                      "scope": 11085,
                      "src": "831:13:41",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 11077,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "831:6:41",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11080,
                      "mutability": "mutable",
                      "name": "timestamp",
                      "nameLocation": "861:9:41",
                      "nodeType": "VariableDeclaration",
                      "scope": 11085,
                      "src": "854:16:41",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint64",
                        "typeString": "uint64"
                      },
                      "typeName": {
                        "id": 11079,
                        "name": "uint64",
                        "nodeType": "ElementaryTypeName",
                        "src": "854:6:41",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11082,
                      "mutability": "mutable",
                      "name": "beaconPeriodStartedAt",
                      "nameLocation": "887:21:41",
                      "nodeType": "VariableDeclaration",
                      "scope": 11085,
                      "src": "880:28:41",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint64",
                        "typeString": "uint64"
                      },
                      "typeName": {
                        "id": 11081,
                        "name": "uint64",
                        "nodeType": "ElementaryTypeName",
                        "src": "880:6:41",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11084,
                      "mutability": "mutable",
                      "name": "beaconPeriodSeconds",
                      "nameLocation": "925:19:41",
                      "nodeType": "VariableDeclaration",
                      "scope": 11085,
                      "src": "918:26:41",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 11083,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "918:6:41",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Draw",
                  "nameLocation": "779:4:41",
                  "nodeType": "StructDefinition",
                  "scope": 11241,
                  "src": "772:179:41",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11086,
                    "nodeType": "StructuredDocumentation",
                    "src": "957:128:41",
                    "text": " @notice Emit when a new DrawBuffer has been set.\n @param newDrawBuffer       The new DrawBuffer address"
                  },
                  "id": 11091,
                  "name": "DrawBufferUpdated",
                  "nameLocation": "1096:17:41",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11090,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11089,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newDrawBuffer",
                        "nameLocation": "1134:13:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 11091,
                        "src": "1114:33:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 11088,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11087,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "1114:11:41"
                          },
                          "referencedDeclaration": 11318,
                          "src": "1114:11:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1113:35:41"
                  },
                  "src": "1090:59:41"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11092,
                    "nodeType": "StructuredDocumentation",
                    "src": "1155:95:41",
                    "text": " @notice Emit when a draw has opened.\n @param startedAt Start timestamp"
                  },
                  "id": 11096,
                  "name": "BeaconPeriodStarted",
                  "nameLocation": "1261:19:41",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11095,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11094,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "startedAt",
                        "nameLocation": "1296:9:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 11096,
                        "src": "1281:24:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 11093,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "1281:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1280:26:41"
                  },
                  "src": "1255:52:41"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11097,
                    "nodeType": "StructuredDocumentation",
                    "src": "1313:152:41",
                    "text": " @notice Emit when a draw has started.\n @param rngRequestId  draw id\n @param rngLockBlock  Block when draw becomes invalid"
                  },
                  "id": 11103,
                  "name": "DrawStarted",
                  "nameLocation": "1476:11:41",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11102,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11099,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "rngRequestId",
                        "nameLocation": "1503:12:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 11103,
                        "src": "1488:27:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11098,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1488:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11101,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "rngLockBlock",
                        "nameLocation": "1524:12:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 11103,
                        "src": "1517:19:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11100,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1517:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1487:50:41"
                  },
                  "src": "1470:68:41"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11104,
                    "nodeType": "StructuredDocumentation",
                    "src": "1544:159:41",
                    "text": " @notice Emit when a draw has been cancelled.\n @param rngRequestId  draw id\n @param rngLockBlock  Block when draw becomes invalid"
                  },
                  "id": 11110,
                  "name": "DrawCancelled",
                  "nameLocation": "1714:13:41",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11109,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11106,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "rngRequestId",
                        "nameLocation": "1743:12:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 11110,
                        "src": "1728:27:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11105,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1728:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11108,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "rngLockBlock",
                        "nameLocation": "1764:12:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 11110,
                        "src": "1757:19:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11107,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1757:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1727:50:41"
                  },
                  "src": "1708:70:41"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11111,
                    "nodeType": "StructuredDocumentation",
                    "src": "1784:125:41",
                    "text": " @notice Emit when a draw has been completed.\n @param randomNumber  Random number generated from draw"
                  },
                  "id": 11115,
                  "name": "DrawCompleted",
                  "nameLocation": "1920:13:41",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11114,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11113,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "randomNumber",
                        "nameLocation": "1942:12:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 11115,
                        "src": "1934:20:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11112,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1934:7:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1933:22:41"
                  },
                  "src": "1914:42:41"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11116,
                    "nodeType": "StructuredDocumentation",
                    "src": "1962:112:41",
                    "text": " @notice Emit when a RNG service address is set.\n @param rngService  RNG service address"
                  },
                  "id": 11121,
                  "name": "RngServiceUpdated",
                  "nameLocation": "2085:17:41",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11120,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11119,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "rngService",
                        "nameLocation": "2124:10:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 11121,
                        "src": "2103:31:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$4142",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 11118,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11117,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 4142,
                            "src": "2103:12:41"
                          },
                          "referencedDeclaration": 4142,
                          "src": "2103:12:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$4142",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2102:33:41"
                  },
                  "src": "2079:57:41"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11122,
                    "nodeType": "StructuredDocumentation",
                    "src": "2142:121:41",
                    "text": " @notice Emit when a draw timeout param is set.\n @param rngTimeout  draw timeout param in seconds"
                  },
                  "id": 11126,
                  "name": "RngTimeoutSet",
                  "nameLocation": "2274:13:41",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11125,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11124,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "rngTimeout",
                        "nameLocation": "2295:10:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 11126,
                        "src": "2288:17:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11123,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2288:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2287:19:41"
                  },
                  "src": "2268:39:41"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11127,
                    "nodeType": "StructuredDocumentation",
                    "src": "2313:116:41",
                    "text": " @notice Emit when the drawPeriodSeconds is set.\n @param drawPeriodSeconds Time between draw"
                  },
                  "id": 11131,
                  "name": "BeaconPeriodSecondsUpdated",
                  "nameLocation": "2440:26:41",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11130,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11129,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "drawPeriodSeconds",
                        "nameLocation": "2474:17:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 11131,
                        "src": "2467:24:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11128,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2467:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2466:26:41"
                  },
                  "src": "2434:59:41"
                },
                {
                  "documentation": {
                    "id": 11132,
                    "nodeType": "StructuredDocumentation",
                    "src": "2499:195:41",
                    "text": " @notice Returns the number of seconds remaining until the beacon period can be complete.\n @return The number of seconds remaining until the beacon period can be complete."
                  },
                  "functionSelector": "75e38f16",
                  "id": 11137,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "beaconPeriodRemainingSeconds",
                  "nameLocation": "2708:28:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11133,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2736:2:41"
                  },
                  "returnParameters": {
                    "id": 11136,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11135,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11137,
                        "src": "2762:6:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 11134,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2762:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2761:8:41"
                  },
                  "scope": 11241,
                  "src": "2699:71:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11138,
                    "nodeType": "StructuredDocumentation",
                    "src": "2776:142:41",
                    "text": " @notice Returns the timestamp at which the beacon period ends\n @return The timestamp at which the beacon period ends."
                  },
                  "functionSelector": "a104fd79",
                  "id": 11143,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "beaconPeriodEndAt",
                  "nameLocation": "2932:17:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11139,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2949:2:41"
                  },
                  "returnParameters": {
                    "id": 11142,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11141,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11143,
                        "src": "2975:6:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 11140,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2975:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2974:8:41"
                  },
                  "scope": 11241,
                  "src": "2923:60:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11144,
                    "nodeType": "StructuredDocumentation",
                    "src": "2989:128:41",
                    "text": " @notice Returns whether a Draw can be started.\n @return True if a Draw can be started, false otherwise."
                  },
                  "functionSelector": "0996f6e1",
                  "id": 11149,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canStartDraw",
                  "nameLocation": "3131:12:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11145,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3143:2:41"
                  },
                  "returnParameters": {
                    "id": 11148,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11147,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11149,
                        "src": "3169:4:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11146,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3169:4:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3168:6:41"
                  },
                  "scope": 11241,
                  "src": "3122:53:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11150,
                    "nodeType": "StructuredDocumentation",
                    "src": "3181:132:41",
                    "text": " @notice Returns whether a Draw can be completed.\n @return True if a Draw can be completed, false otherwise."
                  },
                  "functionSelector": "e4a75bb8",
                  "id": 11155,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canCompleteDraw",
                  "nameLocation": "3327:15:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11151,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3342:2:41"
                  },
                  "returnParameters": {
                    "id": 11154,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11153,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11155,
                        "src": "3368:4:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11152,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3368:4:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3367:6:41"
                  },
                  "scope": 11241,
                  "src": "3318:56:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11156,
                    "nodeType": "StructuredDocumentation",
                    "src": "3380:210:41",
                    "text": " @notice Calculates when the next beacon period will start.\n @param time The timestamp to use as the current time\n @return The timestamp at which the next beacon period would start"
                  },
                  "functionSelector": "a3ae35ab",
                  "id": 11163,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculateNextBeaconPeriodStartTime",
                  "nameLocation": "3604:34:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11159,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11158,
                        "mutability": "mutable",
                        "name": "time",
                        "nameLocation": "3646:4:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 11163,
                        "src": "3639:11:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 11157,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3639:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3638:13:41"
                  },
                  "returnParameters": {
                    "id": 11162,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11161,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11163,
                        "src": "3675:6:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 11160,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3675:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3674:8:41"
                  },
                  "scope": 11241,
                  "src": "3595:88:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11164,
                    "nodeType": "StructuredDocumentation",
                    "src": "3689:103:41",
                    "text": " @notice Can be called by anyone to cancel the draw request if the RNG has timed out."
                  },
                  "functionSelector": "412a616a",
                  "id": 11167,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "cancelDraw",
                  "nameLocation": "3806:10:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11165,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3816:2:41"
                  },
                  "returnParameters": {
                    "id": 11166,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3827:0:41"
                  },
                  "scope": 11241,
                  "src": "3797:31:41",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11168,
                    "nodeType": "StructuredDocumentation",
                    "src": "3834:94:41",
                    "text": " @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer."
                  },
                  "functionSelector": "0bdeecbd",
                  "id": 11171,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "completeDraw",
                  "nameLocation": "3942:12:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11169,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3954:2:41"
                  },
                  "returnParameters": {
                    "id": 11170,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3965:0:41"
                  },
                  "scope": 11241,
                  "src": "3933:33:41",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11172,
                    "nodeType": "StructuredDocumentation",
                    "src": "3972:166:41",
                    "text": " @notice Returns the block number that the current RNG request has been locked to.\n @return The block number that the RNG request is locked to"
                  },
                  "functionSelector": "6bea5344",
                  "id": 11177,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRngLockBlock",
                  "nameLocation": "4152:19:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11173,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4171:2:41"
                  },
                  "returnParameters": {
                    "id": 11176,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11175,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11177,
                        "src": "4197:6:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11174,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4197:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4196:8:41"
                  },
                  "scope": 11241,
                  "src": "4143:62:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11178,
                    "nodeType": "StructuredDocumentation",
                    "src": "4211:100:41",
                    "text": " @notice Returns the current RNG Request ID.\n @return The current Request ID"
                  },
                  "functionSelector": "2a7ad609",
                  "id": 11183,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRngRequestId",
                  "nameLocation": "4325:19:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11179,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4344:2:41"
                  },
                  "returnParameters": {
                    "id": 11182,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11181,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11183,
                        "src": "4370:6:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11180,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4370:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4369:8:41"
                  },
                  "scope": 11241,
                  "src": "4316:62:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11184,
                    "nodeType": "StructuredDocumentation",
                    "src": "4384:134:41",
                    "text": " @notice Returns whether the beacon period is over\n @return True if the beacon period is over, false otherwise"
                  },
                  "functionSelector": "d1e77657",
                  "id": 11189,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isBeaconPeriodOver",
                  "nameLocation": "4532:18:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11185,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4550:2:41"
                  },
                  "returnParameters": {
                    "id": 11188,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11187,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11189,
                        "src": "4576:4:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11186,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4576:4:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4575:6:41"
                  },
                  "scope": 11241,
                  "src": "4523:59:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11190,
                    "nodeType": "StructuredDocumentation",
                    "src": "4588:162:41",
                    "text": " @notice Returns whether the random number request has completed.\n @return True if a random number request has completed, false otherwise."
                  },
                  "functionSelector": "4aba4f6b",
                  "id": 11195,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngCompleted",
                  "nameLocation": "4764:14:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11191,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4778:2:41"
                  },
                  "returnParameters": {
                    "id": 11194,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11193,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11195,
                        "src": "4804:4:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11192,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4804:4:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4803:6:41"
                  },
                  "scope": 11241,
                  "src": "4755:55:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11196,
                    "nodeType": "StructuredDocumentation",
                    "src": "4816:153:41",
                    "text": " @notice Returns whether a random number has been requested\n @return True if a random number has been requested, false otherwise."
                  },
                  "functionSelector": "111070e4",
                  "id": 11201,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngRequested",
                  "nameLocation": "4983:14:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11197,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4997:2:41"
                  },
                  "returnParameters": {
                    "id": 11200,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11199,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11201,
                        "src": "5023:4:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11198,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5023:4:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5022:6:41"
                  },
                  "scope": 11241,
                  "src": "4974:55:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11202,
                    "nodeType": "StructuredDocumentation",
                    "src": "5035:162:41",
                    "text": " @notice Returns whether the random number request has timed out.\n @return True if a random number request has timed out, false otherwise."
                  },
                  "functionSelector": "738bbea8",
                  "id": 11207,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngTimedOut",
                  "nameLocation": "5211:13:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11203,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5224:2:41"
                  },
                  "returnParameters": {
                    "id": 11206,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11205,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11207,
                        "src": "5250:4:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11204,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5250:4:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5249:6:41"
                  },
                  "scope": 11241,
                  "src": "5202:54:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11208,
                    "nodeType": "StructuredDocumentation",
                    "src": "5262:176:41",
                    "text": " @notice Allows the owner to set the beacon period in seconds.\n @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero."
                  },
                  "functionSelector": "919bead0",
                  "id": 11213,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setBeaconPeriodSeconds",
                  "nameLocation": "5452:22:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11211,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11210,
                        "mutability": "mutable",
                        "name": "beaconPeriodSeconds",
                        "nameLocation": "5482:19:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 11213,
                        "src": "5475:26:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11209,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5475:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5474:28:41"
                  },
                  "returnParameters": {
                    "id": 11212,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5511:0:41"
                  },
                  "scope": 11241,
                  "src": "5443:69:41",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11214,
                    "nodeType": "StructuredDocumentation",
                    "src": "5518:245:41",
                    "text": " @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\n @param rngTimeout The RNG request timeout in seconds."
                  },
                  "functionSelector": "5020ea56",
                  "id": 11219,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setRngTimeout",
                  "nameLocation": "5777:13:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11217,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11216,
                        "mutability": "mutable",
                        "name": "rngTimeout",
                        "nameLocation": "5798:10:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 11219,
                        "src": "5791:17:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11215,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5791:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5790:19:41"
                  },
                  "returnParameters": {
                    "id": 11218,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5818:0:41"
                  },
                  "scope": 11241,
                  "src": "5768:51:41",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11220,
                    "nodeType": "StructuredDocumentation",
                    "src": "5825:157:41",
                    "text": " @notice Sets the RNG service that the Prize Strategy is connected to\n @param rngService The address of the new RNG service interface"
                  },
                  "functionSelector": "7f4296d7",
                  "id": 11226,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setRngService",
                  "nameLocation": "5996:13:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11224,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11223,
                        "mutability": "mutable",
                        "name": "rngService",
                        "nameLocation": "6023:10:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 11226,
                        "src": "6010:23:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$4142",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 11222,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11221,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 4142,
                            "src": "6010:12:41"
                          },
                          "referencedDeclaration": 4142,
                          "src": "6010:12:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$4142",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6009:25:41"
                  },
                  "returnParameters": {
                    "id": 11225,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6043:0:41"
                  },
                  "scope": 11241,
                  "src": "5987:57:41",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11227,
                    "nodeType": "StructuredDocumentation",
                    "src": "6050:234:41",
                    "text": " @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\n @dev The RNG-Request-Fee is expected to be held within this contract before calling this function"
                  },
                  "functionSelector": "2ae168a6",
                  "id": 11230,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "startDraw",
                  "nameLocation": "6298:9:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11228,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6307:2:41"
                  },
                  "returnParameters": {
                    "id": 11229,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6318:0:41"
                  },
                  "scope": 11241,
                  "src": "6289:30:41",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11231,
                    "nodeType": "StructuredDocumentation",
                    "src": "6325:225:41",
                    "text": " @notice Set global DrawBuffer variable.\n @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\n @param newDrawBuffer DrawBuffer address\n @return DrawBuffer"
                  },
                  "functionSelector": "ab70d49c",
                  "id": 11240,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setDrawBuffer",
                  "nameLocation": "6564:13:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11235,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11234,
                        "mutability": "mutable",
                        "name": "newDrawBuffer",
                        "nameLocation": "6590:13:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 11240,
                        "src": "6578:25:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 11233,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11232,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "6578:11:41"
                          },
                          "referencedDeclaration": 11318,
                          "src": "6578:11:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6577:27:41"
                  },
                  "returnParameters": {
                    "id": 11239,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11238,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11240,
                        "src": "6623:11:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 11237,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11236,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "6623:11:41"
                          },
                          "referencedDeclaration": 11318,
                          "src": "6623:11:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6622:13:41"
                  },
                  "scope": 11241,
                  "src": "6555:81:41",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11242,
              "src": "267:6371:41",
              "usedErrors": []
            }
          ],
          "src": "37:6602:41"
        },
        "id": 41
      },
      "contracts/interfaces/IDrawBuffer.sol": {
        "ast": {
          "absolutePath": "contracts/interfaces/IDrawBuffer.sol",
          "exportedSymbols": {
            "IDrawBeacon": [
              11241
            ],
            "IDrawBuffer": [
              11318
            ]
          },
          "id": 11319,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11243,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:42"
            },
            {
              "absolutePath": "contracts/interfaces/IDrawBeacon.sol",
              "file": "../interfaces/IDrawBeacon.sol",
              "id": 11244,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11319,
              "sourceUnit": 11242,
              "src": "61:39:42",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 11245,
                "nodeType": "StructuredDocumentation",
                "src": "102:98:42",
                "text": "@title  IDrawBuffer\n @author PoolTogether Inc Team\n @notice The DrawBuffer interface."
              },
              "fullyImplemented": false,
              "id": 11318,
              "linearizedBaseContracts": [
                11318
              ],
              "name": "IDrawBuffer",
              "nameLocation": "211:11:42",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11246,
                    "nodeType": "StructuredDocumentation",
                    "src": "229:129:42",
                    "text": " @notice Emit when a new draw has been created.\n @param drawId Draw id\n @param draw The Draw struct"
                  },
                  "id": 11253,
                  "name": "DrawSet",
                  "nameLocation": "369:7:42",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11252,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11248,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "392:6:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 11253,
                        "src": "377:21:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11247,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "377:6:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11251,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "417:4:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 11253,
                        "src": "400:21:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 11250,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11249,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11085,
                            "src": "400:16:42"
                          },
                          "referencedDeclaration": 11085,
                          "src": "400:16:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "376:46:42"
                  },
                  "src": "363:60:42"
                },
                {
                  "documentation": {
                    "id": 11254,
                    "nodeType": "StructuredDocumentation",
                    "src": "429:96:42",
                    "text": " @notice Read a ring buffer cardinality\n @return Ring buffer cardinality"
                  },
                  "functionSelector": "caeef7ec",
                  "id": 11259,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBufferCardinality",
                  "nameLocation": "539:20:42",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11255,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "559:2:42"
                  },
                  "returnParameters": {
                    "id": 11258,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11257,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11259,
                        "src": "585:6:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11256,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "585:6:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "584:8:42"
                  },
                  "scope": 11318,
                  "src": "530:63:42",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11260,
                    "nodeType": "StructuredDocumentation",
                    "src": "599:228:42",
                    "text": " @notice Read a Draw from the draws ring buffer.\n @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\n @param drawId Draw.drawId\n @return IDrawBeacon.Draw"
                  },
                  "functionSelector": "83c34aaf",
                  "id": 11268,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDraw",
                  "nameLocation": "841:7:42",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11263,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11262,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "856:6:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 11268,
                        "src": "849:13:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11261,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "849:6:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "848:15:42"
                  },
                  "returnParameters": {
                    "id": 11267,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11266,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11268,
                        "src": "887:23:42",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 11265,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11264,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11085,
                            "src": "887:16:42"
                          },
                          "referencedDeclaration": 11085,
                          "src": "887:16:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "886:25:42"
                  },
                  "scope": 11318,
                  "src": "832:80:42",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11269,
                    "nodeType": "StructuredDocumentation",
                    "src": "918:248:42",
                    "text": " @notice Read multiple Draws from the draws ring buffer.\n @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\n @param drawIds Array of drawIds\n @return IDrawBeacon.Draw[]"
                  },
                  "functionSelector": "d0bb78f3",
                  "id": 11279,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDraws",
                  "nameLocation": "1180:8:42",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11273,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11272,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "1207:7:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 11279,
                        "src": "1189:25:42",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11270,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "1189:6:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 11271,
                          "nodeType": "ArrayTypeName",
                          "src": "1189:8:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1188:27:42"
                  },
                  "returnParameters": {
                    "id": 11278,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11277,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11279,
                        "src": "1239:25:42",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Draw_$11085_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11275,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 11274,
                              "name": "IDrawBeacon.Draw",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11085,
                              "src": "1239:16:42"
                            },
                            "referencedDeclaration": 11085,
                            "src": "1239:16:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            }
                          },
                          "id": 11276,
                          "nodeType": "ArrayTypeName",
                          "src": "1239:18:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$11085_storage_$dyn_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1238:27:42"
                  },
                  "scope": 11318,
                  "src": "1171:95:42",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11280,
                    "nodeType": "StructuredDocumentation",
                    "src": "1272:338:42",
                    "text": " @notice Gets the number of Draws held in the draw ring buffer.\n @dev If no Draws have been pushed, it will return 0.\n @dev If the ring buffer is full, it will return the cardinality.\n @dev Otherwise, it will return the NewestDraw index + 1.\n @return Number of Draws held in the draw ring buffer."
                  },
                  "functionSelector": "c4df5fed",
                  "id": 11285,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCount",
                  "nameLocation": "1624:12:42",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11281,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1636:2:42"
                  },
                  "returnParameters": {
                    "id": 11284,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11283,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11285,
                        "src": "1662:6:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11282,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1662:6:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1661:8:42"
                  },
                  "scope": 11318,
                  "src": "1615:55:42",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11286,
                    "nodeType": "StructuredDocumentation",
                    "src": "1676:180:42",
                    "text": " @notice Read newest Draw from draws ring buffer.\n @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\n @return IDrawBeacon.Draw"
                  },
                  "functionSelector": "0edb1d2e",
                  "id": 11292,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNewestDraw",
                  "nameLocation": "1870:13:42",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11287,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1883:2:42"
                  },
                  "returnParameters": {
                    "id": 11291,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11290,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11292,
                        "src": "1909:23:42",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 11289,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11288,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11085,
                            "src": "1909:16:42"
                          },
                          "referencedDeclaration": 11085,
                          "src": "1909:16:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1908:25:42"
                  },
                  "scope": 11318,
                  "src": "1861:73:42",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11293,
                    "nodeType": "StructuredDocumentation",
                    "src": "1940:197:42",
                    "text": " @notice Read oldest Draw from draws ring buffer.\n @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\n @return IDrawBeacon.Draw"
                  },
                  "functionSelector": "648b1b4f",
                  "id": 11299,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getOldestDraw",
                  "nameLocation": "2151:13:42",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11294,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2164:2:42"
                  },
                  "returnParameters": {
                    "id": 11298,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11297,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11299,
                        "src": "2190:23:42",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 11296,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11295,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11085,
                            "src": "2190:16:42"
                          },
                          "referencedDeclaration": 11085,
                          "src": "2190:16:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2189:25:42"
                  },
                  "scope": 11318,
                  "src": "2142:73:42",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11300,
                    "nodeType": "StructuredDocumentation",
                    "src": "2221:212:42",
                    "text": " @notice Push Draw onto draws ring buffer history.\n @dev    Push new draw onto draws history via authorized manager or owner.\n @param draw IDrawBeacon.Draw\n @return Draw.drawId"
                  },
                  "functionSelector": "089eb925",
                  "id": 11308,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "pushDraw",
                  "nameLocation": "2447:8:42",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11304,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11303,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "2482:4:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 11308,
                        "src": "2456:30:42",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$11085_calldata_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 11302,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11301,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11085,
                            "src": "2456:16:42"
                          },
                          "referencedDeclaration": 11085,
                          "src": "2456:16:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2455:32:42"
                  },
                  "returnParameters": {
                    "id": 11307,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11306,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11308,
                        "src": "2506:6:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11305,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2506:6:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2505:8:42"
                  },
                  "scope": 11318,
                  "src": "2438:76:42",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11309,
                    "nodeType": "StructuredDocumentation",
                    "src": "2520:275:42",
                    "text": " @notice Set existing Draw in draws ring buffer with new parameters.\n @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\n @param newDraw IDrawBeacon.Draw\n @return Draw.drawId"
                  },
                  "functionSelector": "d7bcb86b",
                  "id": 11317,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setDraw",
                  "nameLocation": "2809:7:42",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11313,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11312,
                        "mutability": "mutable",
                        "name": "newDraw",
                        "nameLocation": "2843:7:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 11317,
                        "src": "2817:33:42",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$11085_calldata_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 11311,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11310,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11085,
                            "src": "2817:16:42"
                          },
                          "referencedDeclaration": 11085,
                          "src": "2817:16:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2816:35:42"
                  },
                  "returnParameters": {
                    "id": 11316,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11315,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11317,
                        "src": "2870:6:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11314,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2870:6:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2869:8:42"
                  },
                  "scope": 11318,
                  "src": "2800:78:42",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11319,
              "src": "201:2679:42",
              "usedErrors": []
            }
          ],
          "src": "37:2844:42"
        },
        "id": 42
      },
      "contracts/interfaces/IDrawCalculator.sol": {
        "ast": {
          "absolutePath": "contracts/interfaces/IDrawCalculator.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "DrawRingBufferLib": [
              12354
            ],
            "ExtendedSafeCastLib": [
              12433
            ],
            "IControlledToken": [
              11069
            ],
            "IDrawBeacon": [
              11241
            ],
            "IDrawBuffer": [
              11318
            ],
            "IDrawCalculator": [
              11391
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              11467
            ],
            "IPrizeDistributionSource": [
              11503
            ],
            "IPrizeDistributor": [
              11601
            ],
            "ITicket": [
              12213
            ],
            "Manageable": [
              3931
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "Ownable": [
              4086
            ],
            "PrizeDistributionBuffer": [
              9113
            ],
            "PrizeDistributor": [
              9486
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 11392,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11320,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:43"
            },
            {
              "absolutePath": "contracts/interfaces/ITicket.sol",
              "file": "./ITicket.sol",
              "id": 11321,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11392,
              "sourceUnit": 12214,
              "src": "61:23:43",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IDrawBuffer.sol",
              "file": "./IDrawBuffer.sol",
              "id": 11322,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11392,
              "sourceUnit": 11319,
              "src": "85:27:43",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/PrizeDistributionBuffer.sol",
              "file": "../PrizeDistributionBuffer.sol",
              "id": 11323,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11392,
              "sourceUnit": 9114,
              "src": "113:40:43",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/PrizeDistributor.sol",
              "file": "../PrizeDistributor.sol",
              "id": 11324,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11392,
              "sourceUnit": 9487,
              "src": "154:33:43",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 11325,
                "nodeType": "StructuredDocumentation",
                "src": "189:124:43",
                "text": " @title  PoolTogether V4 IDrawCalculator\n @author PoolTogether Inc Team\n @notice The DrawCalculator interface."
              },
              "fullyImplemented": false,
              "id": 11391,
              "linearizedBaseContracts": [
                11391
              ],
              "name": "IDrawCalculator",
              "nameLocation": "324:15:43",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "IDrawCalculator.PickPrize",
                  "id": 11330,
                  "members": [
                    {
                      "constant": false,
                      "id": 11327,
                      "mutability": "mutable",
                      "name": "won",
                      "nameLocation": "378:3:43",
                      "nodeType": "VariableDeclaration",
                      "scope": 11330,
                      "src": "373:8:43",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bool",
                        "typeString": "bool"
                      },
                      "typeName": {
                        "id": 11326,
                        "name": "bool",
                        "nodeType": "ElementaryTypeName",
                        "src": "373:4:43",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11329,
                      "mutability": "mutable",
                      "name": "tierIndex",
                      "nameLocation": "397:9:43",
                      "nodeType": "VariableDeclaration",
                      "scope": 11330,
                      "src": "391:15:43",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      },
                      "typeName": {
                        "id": 11328,
                        "name": "uint8",
                        "nodeType": "ElementaryTypeName",
                        "src": "391:5:43",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "PickPrize",
                  "nameLocation": "353:9:43",
                  "nodeType": "StructDefinition",
                  "scope": 11391,
                  "src": "346:67:43",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11331,
                    "nodeType": "StructuredDocumentation",
                    "src": "419:51:43",
                    "text": "@notice Emitted when the contract is initialized"
                  },
                  "id": 11342,
                  "name": "Deployed",
                  "nameLocation": "481:8:43",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11341,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11334,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "ticket",
                        "nameLocation": "515:6:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 11342,
                        "src": "499:22:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11333,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11332,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "499:7:43"
                          },
                          "referencedDeclaration": 12213,
                          "src": "499:7:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11337,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawBuffer",
                        "nameLocation": "551:10:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 11342,
                        "src": "531:30:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 11336,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11335,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "531:11:43"
                          },
                          "referencedDeclaration": 11318,
                          "src": "531:11:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11340,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributionBuffer",
                        "nameLocation": "604:23:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 11342,
                        "src": "571:56:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 11339,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11338,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11467,
                            "src": "571:24:43"
                          },
                          "referencedDeclaration": 11467,
                          "src": "571:24:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "489:144:43"
                  },
                  "src": "475:159:43"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11343,
                    "nodeType": "StructuredDocumentation",
                    "src": "640:59:43",
                    "text": "@notice Emitted when the prizeDistributor is set/updated"
                  },
                  "id": 11348,
                  "name": "PrizeDistributorSet",
                  "nameLocation": "710:19:43",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11347,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11346,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributor",
                        "nameLocation": "755:16:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 11348,
                        "src": "730:41:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_PrizeDistributor_$9486",
                          "typeString": "contract PrizeDistributor"
                        },
                        "typeName": {
                          "id": 11345,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11344,
                            "name": "PrizeDistributor",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9486,
                            "src": "730:16:43"
                          },
                          "referencedDeclaration": 9486,
                          "src": "730:16:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_PrizeDistributor_$9486",
                            "typeString": "contract PrizeDistributor"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "729:43:43"
                  },
                  "src": "704:69:43"
                },
                {
                  "documentation": {
                    "id": 11349,
                    "nodeType": "StructuredDocumentation",
                    "src": "779:473:43",
                    "text": " @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\n @param user User for which to calculate prize amount.\n @param drawIds drawId array for which to calculate prize amounts for.\n @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\n @return List of awardable prize amounts ordered by drawId."
                  },
                  "functionSelector": "aaca392e",
                  "id": 11364,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculate",
                  "nameLocation": "1266:9:43",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11357,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11351,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1293:4:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 11364,
                        "src": "1285:12:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11350,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1285:7:43",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11354,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "1325:7:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 11364,
                        "src": "1307:25:43",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11352,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "1307:6:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 11353,
                          "nodeType": "ArrayTypeName",
                          "src": "1307:8:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11356,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "1357:4:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 11364,
                        "src": "1342:19:43",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 11355,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1342:5:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1275:92:43"
                  },
                  "returnParameters": {
                    "id": 11363,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11360,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11364,
                        "src": "1391:16:43",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11358,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "1391:7:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 11359,
                          "nodeType": "ArrayTypeName",
                          "src": "1391:9:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11362,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11364,
                        "src": "1409:12:43",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 11361,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1409:5:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1390:32:43"
                  },
                  "scope": 11391,
                  "src": "1257:166:43",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11365,
                    "nodeType": "StructuredDocumentation",
                    "src": "1429:86:43",
                    "text": " @notice Read global DrawBuffer variable.\n @return IDrawBuffer"
                  },
                  "functionSelector": "4019f2d6",
                  "id": 11371,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawBuffer",
                  "nameLocation": "1529:13:43",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11366,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1542:2:43"
                  },
                  "returnParameters": {
                    "id": 11370,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11369,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11371,
                        "src": "1568:11:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 11368,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11367,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "1568:11:43"
                          },
                          "referencedDeclaration": 11318,
                          "src": "1568:11:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1567:13:43"
                  },
                  "scope": 11391,
                  "src": "1520:61:43",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11372,
                    "nodeType": "StructuredDocumentation",
                    "src": "1587:112:43",
                    "text": " @notice Read global prizeDistributionBuffer variable.\n @return IPrizeDistributionBuffer"
                  },
                  "functionSelector": "bd97a252",
                  "id": 11378,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributionBuffer",
                  "nameLocation": "1713:26:43",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11373,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1739:2:43"
                  },
                  "returnParameters": {
                    "id": 11377,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11376,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11378,
                        "src": "1765:24:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 11375,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11374,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11467,
                            "src": "1765:24:43"
                          },
                          "referencedDeclaration": 11467,
                          "src": "1765:24:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1764:26:43"
                  },
                  "scope": 11391,
                  "src": "1704:87:43",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11379,
                    "nodeType": "StructuredDocumentation",
                    "src": "1797:222:43",
                    "text": " @notice Returns a users balances expressed as a fraction of the total supply over time.\n @param user The users address\n @param drawIds The drawIds to consider\n @return Array of balances"
                  },
                  "functionSelector": "8045fbcf",
                  "id": 11390,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNormalizedBalancesForDrawIds",
                  "nameLocation": "2033:31:43",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11385,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11381,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2073:4:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 11390,
                        "src": "2065:12:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11380,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2065:7:43",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11384,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "2097:7:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 11390,
                        "src": "2079:25:43",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11382,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2079:6:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 11383,
                          "nodeType": "ArrayTypeName",
                          "src": "2079:8:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2064:41:43"
                  },
                  "returnParameters": {
                    "id": 11389,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11388,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11390,
                        "src": "2153:16:43",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11386,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "2153:7:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 11387,
                          "nodeType": "ArrayTypeName",
                          "src": "2153:9:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2152:18:43"
                  },
                  "scope": 11391,
                  "src": "2024:147:43",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11392,
              "src": "314:1860:43",
              "usedErrors": []
            }
          ],
          "src": "37:2138:43"
        },
        "id": 43
      },
      "contracts/interfaces/IPrizeDistributionBuffer.sol": {
        "ast": {
          "absolutePath": "contracts/interfaces/IPrizeDistributionBuffer.sol",
          "exportedSymbols": {
            "IPrizeDistributionBuffer": [
              11467
            ],
            "IPrizeDistributionSource": [
              11503
            ]
          },
          "id": 11468,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11393,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:44"
            },
            {
              "absolutePath": "contracts/interfaces/IPrizeDistributionSource.sol",
              "file": "./IPrizeDistributionSource.sol",
              "id": 11394,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11468,
              "sourceUnit": 11504,
              "src": "61:40:44",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 11396,
                    "name": "IPrizeDistributionSource",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11503,
                    "src": "265:24:44"
                  },
                  "id": 11397,
                  "nodeType": "InheritanceSpecifier",
                  "src": "265:24:44"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 11395,
                "nodeType": "StructuredDocumentation",
                "src": "103:123:44",
                "text": "@title  IPrizeDistributionBuffer\n @author PoolTogether Inc Team\n @notice The PrizeDistributionBuffer interface."
              },
              "fullyImplemented": false,
              "id": 11467,
              "linearizedBaseContracts": [
                11467,
                11503
              ],
              "name": "IPrizeDistributionBuffer",
              "nameLocation": "237:24:44",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11398,
                    "nodeType": "StructuredDocumentation",
                    "src": "296:172:44",
                    "text": " @notice Emit when PrizeDistribution is set.\n @param drawId       Draw id\n @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution"
                  },
                  "id": 11405,
                  "name": "PrizeDistributionSet",
                  "nameLocation": "479:20:44",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11404,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11400,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "524:6:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 11405,
                        "src": "509:21:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11399,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "509:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11403,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "583:17:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 11405,
                        "src": "540:60:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 11402,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11401,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "540:42:44"
                          },
                          "referencedDeclaration": 11491,
                          "src": "540:42:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "499:107:44"
                  },
                  "src": "473:134:44"
                },
                {
                  "documentation": {
                    "id": 11406,
                    "nodeType": "StructuredDocumentation",
                    "src": "613:96:44",
                    "text": " @notice Read a ring buffer cardinality\n @return Ring buffer cardinality"
                  },
                  "functionSelector": "caeef7ec",
                  "id": 11411,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBufferCardinality",
                  "nameLocation": "723:20:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11407,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "743:2:44"
                  },
                  "returnParameters": {
                    "id": 11410,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11409,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11411,
                        "src": "769:6:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11408,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "769:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "768:8:44"
                  },
                  "scope": 11467,
                  "src": "714:63:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11412,
                    "nodeType": "StructuredDocumentation",
                    "src": "783:239:44",
                    "text": " @notice Read newest PrizeDistribution from prize distributions ring buffer.\n @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\n @return prizeDistribution\n @return drawId"
                  },
                  "functionSelector": "24c21446",
                  "id": 11420,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNewestPrizeDistribution",
                  "nameLocation": "1036:26:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11413,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1062:2:44"
                  },
                  "returnParameters": {
                    "id": 11419,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11416,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "1175:17:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 11420,
                        "src": "1125:67:44",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 11415,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11414,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "1125:42:44"
                          },
                          "referencedDeclaration": 11491,
                          "src": "1125:42:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11418,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1213:6:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 11420,
                        "src": "1206:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11417,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1206:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1111:118:44"
                  },
                  "scope": 11467,
                  "src": "1027:203:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11421,
                    "nodeType": "StructuredDocumentation",
                    "src": "1236:228:44",
                    "text": " @notice Read oldest PrizeDistribution from prize distributions ring buffer.\n @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\n @return prizeDistribution\n @return drawId"
                  },
                  "functionSelector": "2439093a",
                  "id": 11429,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getOldestPrizeDistribution",
                  "nameLocation": "1478:26:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11422,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1504:2:44"
                  },
                  "returnParameters": {
                    "id": 11428,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11425,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "1617:17:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 11429,
                        "src": "1567:67:44",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 11424,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11423,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "1567:42:44"
                          },
                          "referencedDeclaration": 11491,
                          "src": "1567:42:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11427,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1655:6:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 11429,
                        "src": "1648:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11426,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1648:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1553:118:44"
                  },
                  "scope": 11467,
                  "src": "1469:203:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11430,
                    "nodeType": "StructuredDocumentation",
                    "src": "1678:133:44",
                    "text": " @notice Gets the PrizeDistributionBuffer for a drawId\n @param drawId drawId\n @return prizeDistribution"
                  },
                  "functionSelector": "3cd8e2d5",
                  "id": 11438,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistribution",
                  "nameLocation": "1825:20:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11433,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11432,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1853:6:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 11438,
                        "src": "1846:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11431,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1846:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1845:15:44"
                  },
                  "returnParameters": {
                    "id": 11437,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11436,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11438,
                        "src": "1908:49:44",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 11435,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11434,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "1908:42:44"
                          },
                          "referencedDeclaration": 11491,
                          "src": "1908:42:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1907:51:44"
                  },
                  "scope": 11467,
                  "src": "1816:143:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11439,
                    "nodeType": "StructuredDocumentation",
                    "src": "1965:411:44",
                    "text": " @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\n @dev If no Draws have been pushed, it will return 0.\n @dev If the ring buffer is full, it will return the cardinality.\n @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\n @return Number of PrizeDistributions stored in the prize distributions ring buffer."
                  },
                  "functionSelector": "21e98ad9",
                  "id": 11444,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributionCount",
                  "nameLocation": "2390:25:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11440,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2415:2:44"
                  },
                  "returnParameters": {
                    "id": 11443,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11442,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11444,
                        "src": "2441:6:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11441,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2441:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2440:8:44"
                  },
                  "scope": 11467,
                  "src": "2381:68:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11445,
                    "nodeType": "StructuredDocumentation",
                    "src": "2455:284:44",
                    "text": " @notice Adds new PrizeDistribution record to ring buffer storage.\n @dev    Only callable by the owner or manager\n @param drawId            Draw ID linked to PrizeDistribution parameters\n @param prizeDistribution PrizeDistribution parameters struct"
                  },
                  "functionSelector": "1124e1dc",
                  "id": 11455,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "pushPrizeDistribution",
                  "nameLocation": "2753:21:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11451,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11447,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "2791:6:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 11455,
                        "src": "2784:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11446,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2784:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11450,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "2859:17:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 11455,
                        "src": "2807:69:44",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 11449,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11448,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "2807:42:44"
                          },
                          "referencedDeclaration": 11491,
                          "src": "2807:42:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2774:108:44"
                  },
                  "returnParameters": {
                    "id": 11454,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11453,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11455,
                        "src": "2901:4:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11452,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2901:4:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2900:6:44"
                  },
                  "scope": 11467,
                  "src": "2744:163:44",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11456,
                    "nodeType": "StructuredDocumentation",
                    "src": "2913:420:44",
                    "text": " @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\n @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \"safety\"\nfallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\nthe invalid parameters with correct parameters.\n @return drawId"
                  },
                  "functionSelector": "ce336ce9",
                  "id": 11466,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setPrizeDistribution",
                  "nameLocation": "3347:20:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11462,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11458,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "3384:6:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 11466,
                        "src": "3377:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11457,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3377:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11461,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "3452:4:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 11466,
                        "src": "3400:56:44",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 11460,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11459,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "3400:42:44"
                          },
                          "referencedDeclaration": 11491,
                          "src": "3400:42:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3367:95:44"
                  },
                  "returnParameters": {
                    "id": 11465,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11464,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11466,
                        "src": "3481:6:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11463,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3481:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3480:8:44"
                  },
                  "scope": 11467,
                  "src": "3338:151:44",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11468,
              "src": "227:3264:44",
              "usedErrors": []
            }
          ],
          "src": "37:3455:44"
        },
        "id": 44
      },
      "contracts/interfaces/IPrizeDistributionSource.sol": {
        "ast": {
          "absolutePath": "contracts/interfaces/IPrizeDistributionSource.sol",
          "exportedSymbols": {
            "IPrizeDistributionSource": [
              11503
            ]
          },
          "id": 11504,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11469,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:45"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 11470,
                "nodeType": "StructuredDocumentation",
                "src": "61:122:45",
                "text": "@title IPrizeDistributionSource\n @author PoolTogether Inc Team\n @notice The PrizeDistributionSource interface."
              },
              "fullyImplemented": false,
              "id": 11503,
              "linearizedBaseContracts": [
                11503
              ],
              "name": "IPrizeDistributionSource",
              "nameLocation": "194:24:45",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "IPrizeDistributionSource.PrizeDistribution",
                  "id": 11491,
                  "members": [
                    {
                      "constant": false,
                      "id": 11472,
                      "mutability": "mutable",
                      "name": "bitRangeSize",
                      "nameLocation": "1367:12:45",
                      "nodeType": "VariableDeclaration",
                      "scope": 11491,
                      "src": "1361:18:45",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      },
                      "typeName": {
                        "id": 11471,
                        "name": "uint8",
                        "nodeType": "ElementaryTypeName",
                        "src": "1361:5:45",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11474,
                      "mutability": "mutable",
                      "name": "matchCardinality",
                      "nameLocation": "1395:16:45",
                      "nodeType": "VariableDeclaration",
                      "scope": 11491,
                      "src": "1389:22:45",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      },
                      "typeName": {
                        "id": 11473,
                        "name": "uint8",
                        "nodeType": "ElementaryTypeName",
                        "src": "1389:5:45",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11476,
                      "mutability": "mutable",
                      "name": "startTimestampOffset",
                      "nameLocation": "1428:20:45",
                      "nodeType": "VariableDeclaration",
                      "scope": 11491,
                      "src": "1421:27:45",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 11475,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "1421:6:45",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11478,
                      "mutability": "mutable",
                      "name": "endTimestampOffset",
                      "nameLocation": "1465:18:45",
                      "nodeType": "VariableDeclaration",
                      "scope": 11491,
                      "src": "1458:25:45",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 11477,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "1458:6:45",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11480,
                      "mutability": "mutable",
                      "name": "maxPicksPerUser",
                      "nameLocation": "1500:15:45",
                      "nodeType": "VariableDeclaration",
                      "scope": 11491,
                      "src": "1493:22:45",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 11479,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "1493:6:45",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11482,
                      "mutability": "mutable",
                      "name": "expiryDuration",
                      "nameLocation": "1532:14:45",
                      "nodeType": "VariableDeclaration",
                      "scope": 11491,
                      "src": "1525:21:45",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 11481,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "1525:6:45",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11484,
                      "mutability": "mutable",
                      "name": "numberOfPicks",
                      "nameLocation": "1564:13:45",
                      "nodeType": "VariableDeclaration",
                      "scope": 11491,
                      "src": "1556:21:45",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint104",
                        "typeString": "uint104"
                      },
                      "typeName": {
                        "id": 11483,
                        "name": "uint104",
                        "nodeType": "ElementaryTypeName",
                        "src": "1556:7:45",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint104",
                          "typeString": "uint104"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11488,
                      "mutability": "mutable",
                      "name": "tiers",
                      "nameLocation": "1598:5:45",
                      "nodeType": "VariableDeclaration",
                      "scope": 11491,
                      "src": "1587:16:45",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_array$_t_uint32_$16_storage_ptr",
                        "typeString": "uint32[16]"
                      },
                      "typeName": {
                        "baseType": {
                          "id": 11485,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1587:6:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 11487,
                        "length": {
                          "hexValue": "3136",
                          "id": 11486,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1594:2:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_16_by_1",
                            "typeString": "int_const 16"
                          },
                          "value": "16"
                        },
                        "nodeType": "ArrayTypeName",
                        "src": "1587:10:45",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$16_storage_ptr",
                          "typeString": "uint32[16]"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11490,
                      "mutability": "mutable",
                      "name": "prize",
                      "nameLocation": "1621:5:45",
                      "nodeType": "VariableDeclaration",
                      "scope": 11491,
                      "src": "1613:13:45",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 11489,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1613:7:45",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "PrizeDistribution",
                  "nameLocation": "1333:17:45",
                  "nodeType": "StructDefinition",
                  "scope": 11503,
                  "src": "1326:307:45",
                  "visibility": "public"
                },
                {
                  "documentation": {
                    "id": 11492,
                    "nodeType": "StructuredDocumentation",
                    "src": "1639:172:45",
                    "text": " @notice Gets PrizeDistribution list from array of drawIds\n @param drawIds drawIds to get PrizeDistribution for\n @return prizeDistributionList"
                  },
                  "functionSelector": "d30a5daf",
                  "id": 11502,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributions",
                  "nameLocation": "1825:21:45",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11496,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11495,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "1865:7:45",
                        "nodeType": "VariableDeclaration",
                        "scope": 11502,
                        "src": "1847:25:45",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11493,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "1847:6:45",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 11494,
                          "nodeType": "ArrayTypeName",
                          "src": "1847:8:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1846:27:45"
                  },
                  "returnParameters": {
                    "id": 11501,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11500,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11502,
                        "src": "1921:26:45",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11498,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 11497,
                              "name": "PrizeDistribution",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11491,
                              "src": "1921:17:45"
                            },
                            "referencedDeclaration": 11491,
                            "src": "1921:17:45",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                            }
                          },
                          "id": 11499,
                          "nodeType": "ArrayTypeName",
                          "src": "1921:19:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11491_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1920:28:45"
                  },
                  "scope": 11503,
                  "src": "1816:133:45",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11504,
              "src": "184:1767:45",
              "usedErrors": []
            }
          ],
          "src": "37:1915:45"
        },
        "id": 45
      },
      "contracts/interfaces/IPrizeDistributor.sol": {
        "ast": {
          "absolutePath": "contracts/interfaces/IPrizeDistributor.sol",
          "exportedSymbols": {
            "IDrawBeacon": [
              11241
            ],
            "IDrawBuffer": [
              11318
            ],
            "IDrawCalculator": [
              11391
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributor": [
              11601
            ]
          },
          "id": 11602,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11505,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:46"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 11506,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11602,
              "sourceUnit": 664,
              "src": "60:56:46",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IDrawBuffer.sol",
              "file": "./IDrawBuffer.sol",
              "id": 11507,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11602,
              "sourceUnit": 11319,
              "src": "118:27:46",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IDrawCalculator.sol",
              "file": "./IDrawCalculator.sol",
              "id": 11508,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11602,
              "sourceUnit": 11392,
              "src": "146:31:46",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 11509,
                "nodeType": "StructuredDocumentation",
                "src": "179:110:46",
                "text": "@title  IPrizeDistributor\n @author PoolTogether Inc Team\n @notice The PrizeDistributor interface."
              },
              "fullyImplemented": false,
              "id": 11601,
              "linearizedBaseContracts": [
                11601
              ],
              "name": "IPrizeDistributor",
              "nameLocation": "300:17:46",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11510,
                    "nodeType": "StructuredDocumentation",
                    "src": "325:233:46",
                    "text": " @notice Emit when user has claimed token from the PrizeDistributor.\n @param user   User address receiving draw claim payouts\n @param drawId Draw id that was paid out\n @param payout Payout for draw"
                  },
                  "id": 11518,
                  "name": "ClaimedDraw",
                  "nameLocation": "569:11:46",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11517,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11512,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "597:4:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11518,
                        "src": "581:20:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11511,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "581:7:46",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11514,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "618:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11518,
                        "src": "603:21:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11513,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "603:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11516,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "payout",
                        "nameLocation": "634:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11518,
                        "src": "626:14:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11515,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "626:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "580:61:46"
                  },
                  "src": "563:79:46"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11519,
                    "nodeType": "StructuredDocumentation",
                    "src": "648:107:46",
                    "text": " @notice Emit when DrawCalculator is set.\n @param calculator DrawCalculator address"
                  },
                  "id": 11524,
                  "name": "DrawCalculatorSet",
                  "nameLocation": "766:17:46",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11523,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11522,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "calculator",
                        "nameLocation": "808:10:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11524,
                        "src": "784:34:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 11521,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11520,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11391,
                            "src": "784:15:46"
                          },
                          "referencedDeclaration": 11391,
                          "src": "784:15:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "783:36:46"
                  },
                  "src": "760:60:46"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11525,
                    "nodeType": "StructuredDocumentation",
                    "src": "826:84:46",
                    "text": " @notice Emit when Token is set.\n @param token Token address"
                  },
                  "id": 11530,
                  "name": "TokenSet",
                  "nameLocation": "921:8:46",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11529,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11528,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "945:5:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11530,
                        "src": "930:20:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 11527,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11526,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "930:6:46"
                          },
                          "referencedDeclaration": 663,
                          "src": "930:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "929:22:46"
                  },
                  "src": "915:37:46"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11531,
                    "nodeType": "StructuredDocumentation",
                    "src": "958:211:46",
                    "text": " @notice Emit when ERC20 tokens are withdrawn.\n @param token  ERC20 token transferred.\n @param to     Address that received funds.\n @param amount Amount of tokens transferred."
                  },
                  "id": 11540,
                  "name": "ERC20Withdrawn",
                  "nameLocation": "1180:14:46",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11539,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11534,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "1210:5:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11540,
                        "src": "1195:20:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 11533,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11532,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "1195:6:46"
                          },
                          "referencedDeclaration": 663,
                          "src": "1195:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11536,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1233:2:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11540,
                        "src": "1217:18:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11535,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1217:7:46",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11538,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1245:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11540,
                        "src": "1237:14:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11537,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1237:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1194:58:46"
                  },
                  "src": "1174:79:46"
                },
                {
                  "documentation": {
                    "id": 11541,
                    "nodeType": "StructuredDocumentation",
                    "src": "1259:1019:46",
                    "text": " @notice Claim prize payout(s) by submitting valid drawId(s) and winning pick indice(s). The user address\nis used as the \"seed\" phrase to generate random numbers.\n @dev    The claim function is public and any wallet may execute claim on behalf of another user.\nPrizes are always paid out to the designated user account and not the caller (msg.sender).\nClaiming prizes is not limited to a single transaction. Reclaiming can be executed\nsubsequentially if an \"optimal\" prize was not included in previous claim pick indices. The\npayout difference for the new claim is calculated during the award process and transfered to user.\n @param user    Address of user to claim awards for. Does NOT need to be msg.sender\n @param drawIds Draw IDs from global DrawBuffer reference\n @param data    The data to pass to the draw calculator\n @return Total claim payout. May include calcuations from multiple draws."
                  },
                  "functionSelector": "bb7d4e2d",
                  "id": 11553,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "claim",
                  "nameLocation": "2292:5:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11549,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11543,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2315:4:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11553,
                        "src": "2307:12:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11542,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2307:7:46",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11546,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "2347:7:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11553,
                        "src": "2329:25:46",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11544,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2329:6:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 11545,
                          "nodeType": "ArrayTypeName",
                          "src": "2329:8:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11548,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "2379:4:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11553,
                        "src": "2364:19:46",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 11547,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2364:5:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2297:92:46"
                  },
                  "returnParameters": {
                    "id": 11552,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11551,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11553,
                        "src": "2408:7:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11550,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2408:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2407:9:46"
                  },
                  "scope": 11601,
                  "src": "2283:134:46",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11554,
                    "nodeType": "StructuredDocumentation",
                    "src": "2423:99:46",
                    "text": " @notice Read global DrawCalculator address.\n @return IDrawCalculator"
                  },
                  "functionSelector": "2d680cfa",
                  "id": 11560,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCalculator",
                  "nameLocation": "2536:17:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11555,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2553:2:46"
                  },
                  "returnParameters": {
                    "id": 11559,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11558,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11560,
                        "src": "2579:15:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 11557,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11556,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11391,
                            "src": "2579:15:46"
                          },
                          "referencedDeclaration": 11391,
                          "src": "2579:15:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2578:17:46"
                  },
                  "scope": 11601,
                  "src": "2527:69:46",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11561,
                    "nodeType": "StructuredDocumentation",
                    "src": "2602:162:46",
                    "text": " @notice Get the amount that a user has already been paid out for a draw\n @param user   User address\n @param drawId Draw ID"
                  },
                  "functionSelector": "b7f892d1",
                  "id": 11570,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawPayoutBalanceOf",
                  "nameLocation": "2778:22:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11566,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11563,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2809:4:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11570,
                        "src": "2801:12:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11562,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2801:7:46",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11565,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "2822:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11570,
                        "src": "2815:13:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11564,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2815:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2800:29:46"
                  },
                  "returnParameters": {
                    "id": 11569,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11568,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11570,
                        "src": "2853:7:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11567,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2853:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2852:9:46"
                  },
                  "scope": 11601,
                  "src": "2769:93:46",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11571,
                    "nodeType": "StructuredDocumentation",
                    "src": "2868:82:46",
                    "text": " @notice Read global Ticket address.\n @return IERC20"
                  },
                  "functionSelector": "21df0da7",
                  "id": 11577,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "2964:8:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11572,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2972:2:46"
                  },
                  "returnParameters": {
                    "id": 11576,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11575,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11577,
                        "src": "2998:6:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 11574,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11573,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "2998:6:46"
                          },
                          "referencedDeclaration": 663,
                          "src": "2998:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2997:8:46"
                  },
                  "scope": 11601,
                  "src": "2955:51:46",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11578,
                    "nodeType": "StructuredDocumentation",
                    "src": "3012:168:46",
                    "text": " @notice Sets DrawCalculator reference contract.\n @param newCalculator DrawCalculator address\n @return New DrawCalculator address"
                  },
                  "functionSelector": "454a8140",
                  "id": 11587,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setDrawCalculator",
                  "nameLocation": "3194:17:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11582,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11581,
                        "mutability": "mutable",
                        "name": "newCalculator",
                        "nameLocation": "3228:13:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11587,
                        "src": "3212:29:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 11580,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11579,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11391,
                            "src": "3212:15:46"
                          },
                          "referencedDeclaration": 11391,
                          "src": "3212:15:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3211:31:46"
                  },
                  "returnParameters": {
                    "id": 11586,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11585,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11587,
                        "src": "3261:15:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 11584,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11583,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11391,
                            "src": "3261:15:46"
                          },
                          "referencedDeclaration": 11391,
                          "src": "3261:15:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11391",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3260:17:46"
                  },
                  "scope": 11601,
                  "src": "3185:93:46",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11588,
                    "nodeType": "StructuredDocumentation",
                    "src": "3284:342:46",
                    "text": " @notice Transfer ERC20 tokens out of contract to recipient address.\n @dev    Only callable by contract owner.\n @param token  ERC20 token to transfer.\n @param to     Recipient of the tokens.\n @param amount Amount of tokens to transfer.\n @return true if operation is successful."
                  },
                  "functionSelector": "44004cc1",
                  "id": 11600,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "withdrawERC20",
                  "nameLocation": "3640:13:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11596,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11591,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "3670:5:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11600,
                        "src": "3663:12:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 11590,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11589,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "3663:6:46"
                          },
                          "referencedDeclaration": 663,
                          "src": "3663:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11593,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "3693:2:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11600,
                        "src": "3685:10:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11592,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3685:7:46",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11595,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "3713:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 11600,
                        "src": "3705:14:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11594,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3705:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3653:72:46"
                  },
                  "returnParameters": {
                    "id": 11599,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11598,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11600,
                        "src": "3744:4:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11597,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3744:4:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3743:6:46"
                  },
                  "scope": 11601,
                  "src": "3631:119:46",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11602,
              "src": "290:3462:46",
              "usedErrors": []
            }
          ],
          "src": "36:3717:46"
        },
        "id": 46
      },
      "contracts/interfaces/IPrizePool.sol": {
        "ast": {
          "absolutePath": "contracts/interfaces/IPrizePool.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12433
            ],
            "ICompLike": [
              11027
            ],
            "IControlledToken": [
              11069
            ],
            "IERC20": [
              663
            ],
            "IPrizePool": [
              11883
            ],
            "ITicket": [
              12213
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 11884,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11603,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:47"
            },
            {
              "absolutePath": "contracts/external/compound/ICompLike.sol",
              "file": "../external/compound/ICompLike.sol",
              "id": 11604,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11884,
              "sourceUnit": 11028,
              "src": "61:44:47",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/ITicket.sol",
              "file": "../interfaces/ITicket.sol",
              "id": 11605,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11884,
              "sourceUnit": 12214,
              "src": "106:35:47",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 11883,
              "linearizedBaseContracts": [
                11883
              ],
              "name": "IPrizePool",
              "nameLocation": "153:10:47",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11606,
                    "nodeType": "StructuredDocumentation",
                    "src": "170:53:47",
                    "text": "@dev Event emitted when controlled token is added"
                  },
                  "id": 11611,
                  "name": "ControlledTokenAdded",
                  "nameLocation": "234:20:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11610,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11609,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "271:5:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11611,
                        "src": "255:21:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11608,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11607,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "255:7:47"
                          },
                          "referencedDeclaration": 12213,
                          "src": "255:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "254:23:47"
                  },
                  "src": "228:50:47"
                },
                {
                  "anonymous": false,
                  "id": 11615,
                  "name": "AwardCaptured",
                  "nameLocation": "290:13:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11614,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11613,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "312:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11615,
                        "src": "304:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11612,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "304:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "303:16:47"
                  },
                  "src": "284:36:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11616,
                    "nodeType": "StructuredDocumentation",
                    "src": "326:48:47",
                    "text": "@dev Event emitted when assets are deposited"
                  },
                  "id": 11627,
                  "name": "Deposited",
                  "nameLocation": "385:9:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11626,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11618,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "420:8:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11627,
                        "src": "404:24:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11617,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "404:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11620,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "454:2:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11627,
                        "src": "438:18:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11619,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "438:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11623,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "482:5:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11627,
                        "src": "466:21:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11622,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11621,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "466:7:47"
                          },
                          "referencedDeclaration": 12213,
                          "src": "466:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11625,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "505:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11627,
                        "src": "497:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11624,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "497:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "394:123:47"
                  },
                  "src": "379:139:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11628,
                    "nodeType": "StructuredDocumentation",
                    "src": "524:59:47",
                    "text": "@dev Event emitted when interest is awarded to a winner"
                  },
                  "id": 11637,
                  "name": "Awarded",
                  "nameLocation": "594:7:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11636,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11630,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "winner",
                        "nameLocation": "618:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11637,
                        "src": "602:22:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11629,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "602:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11633,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "642:5:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11637,
                        "src": "626:21:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11632,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11631,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "626:7:47"
                          },
                          "referencedDeclaration": 12213,
                          "src": "626:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11635,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "657:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11637,
                        "src": "649:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11634,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "649:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "601:63:47"
                  },
                  "src": "588:77:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11638,
                    "nodeType": "StructuredDocumentation",
                    "src": "671:67:47",
                    "text": "@dev Event emitted when external ERC20s are awarded to a winner"
                  },
                  "id": 11646,
                  "name": "AwardedExternalERC20",
                  "nameLocation": "749:20:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11645,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11640,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "winner",
                        "nameLocation": "786:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11646,
                        "src": "770:22:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11639,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "770:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11642,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "810:5:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11646,
                        "src": "794:21:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11641,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "794:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11644,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "825:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11646,
                        "src": "817:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11643,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "817:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "769:63:47"
                  },
                  "src": "743:90:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11647,
                    "nodeType": "StructuredDocumentation",
                    "src": "839:63:47",
                    "text": "@dev Event emitted when external ERC20s are transferred out"
                  },
                  "id": 11655,
                  "name": "TransferredExternalERC20",
                  "nameLocation": "913:24:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11654,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11649,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "954:2:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11655,
                        "src": "938:18:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11648,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "938:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11651,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "974:5:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11655,
                        "src": "958:21:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11650,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "958:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11653,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "989:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11655,
                        "src": "981:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11652,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "981:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "937:59:47"
                  },
                  "src": "907:90:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11656,
                    "nodeType": "StructuredDocumentation",
                    "src": "1003:68:47",
                    "text": "@dev Event emitted when external ERC721s are awarded to a winner"
                  },
                  "id": 11665,
                  "name": "AwardedExternalERC721",
                  "nameLocation": "1082:21:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11664,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11658,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "winner",
                        "nameLocation": "1120:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11665,
                        "src": "1104:22:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11657,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1104:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11660,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "1144:5:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11665,
                        "src": "1128:21:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11659,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1128:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11663,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "tokenIds",
                        "nameLocation": "1161:8:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11665,
                        "src": "1151:18:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11661,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "1151:7:47",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 11662,
                          "nodeType": "ArrayTypeName",
                          "src": "1151:9:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1103:67:47"
                  },
                  "src": "1076:95:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11666,
                    "nodeType": "StructuredDocumentation",
                    "src": "1177:48:47",
                    "text": "@dev Event emitted when assets are withdrawn"
                  },
                  "id": 11679,
                  "name": "Withdrawal",
                  "nameLocation": "1236:10:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11678,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11668,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "1272:8:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11679,
                        "src": "1256:24:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11667,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1256:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11670,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "1306:4:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11679,
                        "src": "1290:20:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11669,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1290:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11673,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "1336:5:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11679,
                        "src": "1320:21:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11672,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11671,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "1320:7:47"
                          },
                          "referencedDeclaration": 12213,
                          "src": "1320:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11675,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1359:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11679,
                        "src": "1351:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11674,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1351:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11677,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "redeemed",
                        "nameLocation": "1383:8:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11679,
                        "src": "1375:16:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11676,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1375:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1246:151:47"
                  },
                  "src": "1230:168:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11680,
                    "nodeType": "StructuredDocumentation",
                    "src": "1404:50:47",
                    "text": "@dev Event emitted when the Balance Cap is set"
                  },
                  "id": 11684,
                  "name": "BalanceCapSet",
                  "nameLocation": "1465:13:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11683,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11682,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "balanceCap",
                        "nameLocation": "1487:10:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11684,
                        "src": "1479:18:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11681,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1479:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1478:20:47"
                  },
                  "src": "1459:40:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11685,
                    "nodeType": "StructuredDocumentation",
                    "src": "1505:52:47",
                    "text": "@dev Event emitted when the Liquidity Cap is set"
                  },
                  "id": 11689,
                  "name": "LiquidityCapSet",
                  "nameLocation": "1568:15:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11688,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11687,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "liquidityCap",
                        "nameLocation": "1592:12:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11689,
                        "src": "1584:20:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11686,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1584:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1583:22:47"
                  },
                  "src": "1562:44:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11690,
                    "nodeType": "StructuredDocumentation",
                    "src": "1612:53:47",
                    "text": "@dev Event emitted when the Prize Strategy is set"
                  },
                  "id": 11694,
                  "name": "PrizeStrategySet",
                  "nameLocation": "1676:16:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11693,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11692,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeStrategy",
                        "nameLocation": "1709:13:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11694,
                        "src": "1693:29:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11691,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1693:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1692:31:47"
                  },
                  "src": "1670:54:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11695,
                    "nodeType": "StructuredDocumentation",
                    "src": "1730:45:47",
                    "text": "@dev Event emitted when the Ticket is set"
                  },
                  "id": 11700,
                  "name": "TicketSet",
                  "nameLocation": "1786:9:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11699,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11698,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "ticket",
                        "nameLocation": "1812:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11700,
                        "src": "1796:22:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11697,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11696,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "1796:7:47"
                          },
                          "referencedDeclaration": 12213,
                          "src": "1796:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1795:24:47"
                  },
                  "src": "1780:40:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11701,
                    "nodeType": "StructuredDocumentation",
                    "src": "1826:75:47",
                    "text": "@dev Emitted when there was an error thrown awarding an External ERC721"
                  },
                  "id": 11705,
                  "name": "ErrorAwardingExternalERC721",
                  "nameLocation": "1912:27:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11704,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11703,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "error",
                        "nameLocation": "1946:5:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11705,
                        "src": "1940:11:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 11702,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1940:5:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1939:13:47"
                  },
                  "src": "1906:47:47"
                },
                {
                  "documentation": {
                    "id": 11706,
                    "nodeType": "StructuredDocumentation",
                    "src": "1959:187:47",
                    "text": "@notice Deposit assets into the Prize Pool in exchange for tokens\n @param to The address receiving the newly minted tokens\n @param amount The amount of assets to deposit"
                  },
                  "functionSelector": "ffaad6a5",
                  "id": 11713,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "depositTo",
                  "nameLocation": "2160:9:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11711,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11708,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2178:2:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11713,
                        "src": "2170:10:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11707,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2170:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11710,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2190:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11713,
                        "src": "2182:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11709,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2182:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2169:28:47"
                  },
                  "returnParameters": {
                    "id": 11712,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2206:0:47"
                  },
                  "scope": 11883,
                  "src": "2151:56:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11714,
                    "nodeType": "StructuredDocumentation",
                    "src": "2213:310:47",
                    "text": "@notice Deposit assets into the Prize Pool in exchange for tokens,\n then sets the delegate on behalf of the caller.\n @param to The address receiving the newly minted tokens\n @param amount The amount of assets to deposit\n @param delegate The address to delegate to for the caller"
                  },
                  "functionSelector": "d7a169eb",
                  "id": 11723,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "depositToAndDelegate",
                  "nameLocation": "2537:20:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11721,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11716,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2566:2:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11723,
                        "src": "2558:10:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11715,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2558:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11718,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2578:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11723,
                        "src": "2570:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11717,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2570:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11720,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "2594:8:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11723,
                        "src": "2586:16:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11719,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2586:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2557:46:47"
                  },
                  "returnParameters": {
                    "id": 11722,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2612:0:47"
                  },
                  "scope": 11883,
                  "src": "2528:85:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11724,
                    "nodeType": "StructuredDocumentation",
                    "src": "2619:222:47",
                    "text": "@notice Withdraw assets from the Prize Pool instantly.\n @param from The address to redeem tokens from.\n @param amount The amount of tokens to redeem for assets.\n @return The actual amount withdrawn"
                  },
                  "functionSelector": "9470b0bd",
                  "id": 11733,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "withdrawFrom",
                  "nameLocation": "2855:12:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11729,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11726,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "2876:4:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11733,
                        "src": "2868:12:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11725,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2868:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11728,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2890:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11733,
                        "src": "2882:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11727,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2882:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2867:30:47"
                  },
                  "returnParameters": {
                    "id": 11732,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11731,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11733,
                        "src": "2916:7:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11730,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2916:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2915:9:47"
                  },
                  "scope": 11883,
                  "src": "2846:79:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11734,
                    "nodeType": "StructuredDocumentation",
                    "src": "2931:251:47",
                    "text": "@notice Called by the prize strategy to award prizes.\n @dev The amount awarded must be less than the awardBalance()\n @param to The address of the winner that receives the award\n @param amount The amount of assets to be awarded"
                  },
                  "functionSelector": "5d8a776e",
                  "id": 11741,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "award",
                  "nameLocation": "3196:5:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11739,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11736,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "3210:2:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11741,
                        "src": "3202:10:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11735,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3202:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11738,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "3222:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11741,
                        "src": "3214:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11737,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3214:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3201:28:47"
                  },
                  "returnParameters": {
                    "id": 11740,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3238:0:47"
                  },
                  "scope": 11883,
                  "src": "3187:52:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11742,
                    "nodeType": "StructuredDocumentation",
                    "src": "3245:196:47",
                    "text": "@notice Returns the balance that is available to award.\n @dev captureAwardBalance() should be called first\n @return The total amount of assets to be awarded for the current prize"
                  },
                  "functionSelector": "630665b4",
                  "id": 11747,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "awardBalance",
                  "nameLocation": "3455:12:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11743,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3467:2:47"
                  },
                  "returnParameters": {
                    "id": 11746,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11745,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11747,
                        "src": "3493:7:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11744,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3493:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3492:9:47"
                  },
                  "scope": 11883,
                  "src": "3446:56:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11748,
                    "nodeType": "StructuredDocumentation",
                    "src": "3508:199:47",
                    "text": "@notice Captures any available interest as award balance.\n @dev This function also captures the reserve fees.\n @return The total amount of assets to be awarded for the current prize"
                  },
                  "functionSelector": "e6d8a94b",
                  "id": 11753,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "captureAwardBalance",
                  "nameLocation": "3721:19:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11749,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3740:2:47"
                  },
                  "returnParameters": {
                    "id": 11752,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11751,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11753,
                        "src": "3761:7:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11750,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3761:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3760:9:47"
                  },
                  "scope": 11883,
                  "src": "3712:58:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11754,
                    "nodeType": "StructuredDocumentation",
                    "src": "3776:225:47",
                    "text": "@dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\n @param externalToken The address of the token to check\n @return True if the token may be awarded, false otherwise"
                  },
                  "functionSelector": "6a3fd4f9",
                  "id": 11761,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canAwardExternal",
                  "nameLocation": "4015:16:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11757,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11756,
                        "mutability": "mutable",
                        "name": "externalToken",
                        "nameLocation": "4040:13:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11761,
                        "src": "4032:21:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11755,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4032:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4031:23:47"
                  },
                  "returnParameters": {
                    "id": 11760,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11759,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11761,
                        "src": "4078:4:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11758,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4078:4:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4077:6:47"
                  },
                  "scope": 11883,
                  "src": "4006:78:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11762,
                    "nodeType": "StructuredDocumentation",
                    "src": "4197:44:47",
                    "text": "@return The underlying balance of assets"
                  },
                  "functionSelector": "b69ef8a8",
                  "id": 11767,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balance",
                  "nameLocation": "4255:7:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11763,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4262:2:47"
                  },
                  "returnParameters": {
                    "id": 11766,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11765,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11767,
                        "src": "4283:7:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11764,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4283:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4282:9:47"
                  },
                  "scope": 11883,
                  "src": "4246:46:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11768,
                    "nodeType": "StructuredDocumentation",
                    "src": "4298:104:47",
                    "text": " @notice Read internal Ticket accounted balance.\n @return uint256 accountBalance"
                  },
                  "functionSelector": "33e5761f",
                  "id": 11773,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAccountedBalance",
                  "nameLocation": "4416:19:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11769,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4435:2:47"
                  },
                  "returnParameters": {
                    "id": 11772,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11771,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11773,
                        "src": "4461:7:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11770,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4461:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4460:9:47"
                  },
                  "scope": 11883,
                  "src": "4407:63:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11774,
                    "nodeType": "StructuredDocumentation",
                    "src": "4476:60:47",
                    "text": " @notice Read internal balanceCap variable"
                  },
                  "functionSelector": "08234319",
                  "id": 11779,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceCap",
                  "nameLocation": "4550:13:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11775,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4563:2:47"
                  },
                  "returnParameters": {
                    "id": 11778,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11777,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11779,
                        "src": "4589:7:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11776,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4589:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4588:9:47"
                  },
                  "scope": 11883,
                  "src": "4541:57:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11780,
                    "nodeType": "StructuredDocumentation",
                    "src": "4604:62:47",
                    "text": " @notice Read internal liquidityCap variable"
                  },
                  "functionSelector": "b15a49c1",
                  "id": 11785,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLiquidityCap",
                  "nameLocation": "4680:15:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11781,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4695:2:47"
                  },
                  "returnParameters": {
                    "id": 11784,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11783,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11785,
                        "src": "4721:7:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11782,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4721:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4720:9:47"
                  },
                  "scope": 11883,
                  "src": "4671:59:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11786,
                    "nodeType": "StructuredDocumentation",
                    "src": "4736:47:47",
                    "text": " @notice Read ticket variable"
                  },
                  "functionSelector": "c002c4d6",
                  "id": 11792,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTicket",
                  "nameLocation": "4797:9:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11787,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4806:2:47"
                  },
                  "returnParameters": {
                    "id": 11791,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11790,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11792,
                        "src": "4832:7:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11789,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11788,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "4832:7:47"
                          },
                          "referencedDeclaration": 12213,
                          "src": "4832:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4831:9:47"
                  },
                  "scope": 11883,
                  "src": "4788:53:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11793,
                    "nodeType": "StructuredDocumentation",
                    "src": "4847:46:47",
                    "text": " @notice Read token variable"
                  },
                  "functionSelector": "21df0da7",
                  "id": 11798,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "4907:8:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11794,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4915:2:47"
                  },
                  "returnParameters": {
                    "id": 11797,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11796,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11798,
                        "src": "4941:7:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11795,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4941:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4940:9:47"
                  },
                  "scope": 11883,
                  "src": "4898:52:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11799,
                    "nodeType": "StructuredDocumentation",
                    "src": "4956:54:47",
                    "text": " @notice Read prizeStrategy variable"
                  },
                  "functionSelector": "d804abaf",
                  "id": 11804,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeStrategy",
                  "nameLocation": "5024:16:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11800,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5040:2:47"
                  },
                  "returnParameters": {
                    "id": 11803,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11802,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11804,
                        "src": "5066:7:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11801,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5066:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5065:9:47"
                  },
                  "scope": 11883,
                  "src": "5015:60:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11805,
                    "nodeType": "StructuredDocumentation",
                    "src": "5081:205:47",
                    "text": "@dev Checks if a specific token is controlled by the Prize Pool\n @param controlledToken The address of the token to check\n @return True if the token is a controlled token, false otherwise"
                  },
                  "functionSelector": "78b3d327",
                  "id": 11813,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isControlled",
                  "nameLocation": "5300:12:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11809,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11808,
                        "mutability": "mutable",
                        "name": "controlledToken",
                        "nameLocation": "5321:15:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11813,
                        "src": "5313:23:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11807,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11806,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "5313:7:47"
                          },
                          "referencedDeclaration": 12213,
                          "src": "5313:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5312:25:47"
                  },
                  "returnParameters": {
                    "id": 11812,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11811,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11813,
                        "src": "5361:4:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11810,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5361:4:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5360:6:47"
                  },
                  "scope": 11883,
                  "src": "5291:76:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11814,
                    "nodeType": "StructuredDocumentation",
                    "src": "5373:395:47",
                    "text": "@notice Called by the Prize-Strategy to transfer out external ERC20 tokens\n @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\n @param to The address of the winner that receives the award\n @param externalToken The address of the external asset token being awarded\n @param amount The amount of external assets to be awarded"
                  },
                  "functionSelector": "13f55e39",
                  "id": 11823,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferExternalERC20",
                  "nameLocation": "5782:21:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11821,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11816,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "5821:2:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11823,
                        "src": "5813:10:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11815,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5813:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11818,
                        "mutability": "mutable",
                        "name": "externalToken",
                        "nameLocation": "5841:13:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11823,
                        "src": "5833:21:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11817,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5833:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11820,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "5872:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11823,
                        "src": "5864:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11819,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5864:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5803:81:47"
                  },
                  "returnParameters": {
                    "id": 11822,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5893:0:47"
                  },
                  "scope": 11883,
                  "src": "5773:121:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11824,
                    "nodeType": "StructuredDocumentation",
                    "src": "5900:359:47",
                    "text": "@notice Called by the Prize-Strategy to award external ERC20 prizes\n @dev Used to award any arbitrary tokens held by the Prize Pool\n @param to The address of the winner that receives the award\n @param amount The amount of external assets to be awarded\n @param externalToken The address of the external asset token being awarded"
                  },
                  "functionSelector": "2b0ab144",
                  "id": 11833,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "awardExternalERC20",
                  "nameLocation": "6273:18:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11831,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11826,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "6309:2:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11833,
                        "src": "6301:10:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11825,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6301:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11828,
                        "mutability": "mutable",
                        "name": "externalToken",
                        "nameLocation": "6329:13:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11833,
                        "src": "6321:21:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11827,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6321:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11830,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "6360:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11833,
                        "src": "6352:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11829,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6352:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6291:81:47"
                  },
                  "returnParameters": {
                    "id": 11832,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6381:0:47"
                  },
                  "scope": 11883,
                  "src": "6264:118:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11834,
                    "nodeType": "StructuredDocumentation",
                    "src": "6388:358:47",
                    "text": "@notice Called by the prize strategy to award external ERC721 prizes\n @dev Used to award any arbitrary NFTs held by the Prize Pool\n @param to The address of the winner that receives the award\n @param externalToken The address of the external NFT token being awarded\n @param tokenIds An array of NFT Token IDs to be transferred"
                  },
                  "functionSelector": "16960d55",
                  "id": 11844,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "awardExternalERC721",
                  "nameLocation": "6760:19:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11842,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11836,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "6797:2:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11844,
                        "src": "6789:10:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11835,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6789:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11838,
                        "mutability": "mutable",
                        "name": "externalToken",
                        "nameLocation": "6817:13:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11844,
                        "src": "6809:21:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11837,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6809:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11841,
                        "mutability": "mutable",
                        "name": "tokenIds",
                        "nameLocation": "6859:8:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11844,
                        "src": "6840:27:47",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11839,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "6840:7:47",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 11840,
                          "nodeType": "ArrayTypeName",
                          "src": "6840:9:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6779:94:47"
                  },
                  "returnParameters": {
                    "id": 11843,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6882:0:47"
                  },
                  "scope": 11883,
                  "src": "6751:132:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11845,
                    "nodeType": "StructuredDocumentation",
                    "src": "6889:395:47",
                    "text": "@notice Allows the owner to set a balance cap per `token` for the pool.\n @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\n @dev Needs to be called after deploying a prize pool to be able to deposit into it.\n @param balanceCap New balance cap.\n @return True if new balance cap has been successfully set."
                  },
                  "functionSelector": "aec9c307",
                  "id": 11852,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setBalanceCap",
                  "nameLocation": "7298:13:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11848,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11847,
                        "mutability": "mutable",
                        "name": "balanceCap",
                        "nameLocation": "7320:10:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11852,
                        "src": "7312:18:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11846,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7312:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7311:20:47"
                  },
                  "returnParameters": {
                    "id": 11851,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11850,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11852,
                        "src": "7350:4:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11849,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "7350:4:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7349:6:47"
                  },
                  "scope": 11883,
                  "src": "7289:67:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11853,
                    "nodeType": "StructuredDocumentation",
                    "src": "7362:162:47",
                    "text": "@notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\n @param liquidityCap The new liquidity cap for the prize pool"
                  },
                  "functionSelector": "7b99adb1",
                  "id": 11858,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setLiquidityCap",
                  "nameLocation": "7538:15:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11856,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11855,
                        "mutability": "mutable",
                        "name": "liquidityCap",
                        "nameLocation": "7562:12:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11858,
                        "src": "7554:20:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11854,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7554:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7553:22:47"
                  },
                  "returnParameters": {
                    "id": 11857,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7584:0:47"
                  },
                  "scope": 11883,
                  "src": "7529:56:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11859,
                    "nodeType": "StructuredDocumentation",
                    "src": "7591:137:47",
                    "text": "@notice Sets the prize strategy of the prize pool.  Only callable by the owner.\n @param _prizeStrategy The new prize strategy."
                  },
                  "functionSelector": "91ca480e",
                  "id": 11864,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setPrizeStrategy",
                  "nameLocation": "7742:16:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11862,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11861,
                        "mutability": "mutable",
                        "name": "_prizeStrategy",
                        "nameLocation": "7767:14:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11864,
                        "src": "7759:22:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11860,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7759:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7758:24:47"
                  },
                  "returnParameters": {
                    "id": 11863,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7791:0:47"
                  },
                  "scope": 11883,
                  "src": "7733:59:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11865,
                    "nodeType": "StructuredDocumentation",
                    "src": "7798:144:47",
                    "text": "@notice Set prize pool ticket.\n @param ticket Address of the ticket to set.\n @return True if ticket has been successfully set."
                  },
                  "functionSelector": "1c65c78b",
                  "id": 11873,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setTicket",
                  "nameLocation": "7956:9:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11869,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11868,
                        "mutability": "mutable",
                        "name": "ticket",
                        "nameLocation": "7974:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11873,
                        "src": "7966:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11867,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11866,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "7966:7:47"
                          },
                          "referencedDeclaration": 12213,
                          "src": "7966:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7965:16:47"
                  },
                  "returnParameters": {
                    "id": 11872,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11871,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11873,
                        "src": "8000:4:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11870,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "8000:4:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7999:6:47"
                  },
                  "scope": 11883,
                  "src": "7947:59:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11874,
                    "nodeType": "StructuredDocumentation",
                    "src": "8012:221:47",
                    "text": "@notice Delegate the votes for a Compound COMP-like token held by the prize pool\n @param compLike The COMP-like token held by the prize pool that should be delegated\n @param to The address to delegate to"
                  },
                  "functionSelector": "2f7627e3",
                  "id": 11882,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "compLikeDelegate",
                  "nameLocation": "8247:16:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11880,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11877,
                        "mutability": "mutable",
                        "name": "compLike",
                        "nameLocation": "8274:8:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11882,
                        "src": "8264:18:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ICompLike_$11027",
                          "typeString": "contract ICompLike"
                        },
                        "typeName": {
                          "id": 11876,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11875,
                            "name": "ICompLike",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11027,
                            "src": "8264:9:47"
                          },
                          "referencedDeclaration": 11027,
                          "src": "8264:9:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ICompLike_$11027",
                            "typeString": "contract ICompLike"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11879,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "8292:2:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 11882,
                        "src": "8284:10:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11878,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8284:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8263:32:47"
                  },
                  "returnParameters": {
                    "id": 11881,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8304:0:47"
                  },
                  "scope": 11883,
                  "src": "8238:67:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11884,
              "src": "143:8164:47",
              "usedErrors": []
            }
          ],
          "src": "37:8271:47"
        },
        "id": 47
      },
      "contracts/interfaces/IPrizeSplit.sol": {
        "ast": {
          "absolutePath": "contracts/interfaces/IPrizeSplit.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12433
            ],
            "ICompLike": [
              11027
            ],
            "IControlledToken": [
              11069
            ],
            "IERC20": [
              663
            ],
            "IPrizePool": [
              11883
            ],
            "IPrizeSplit": [
              11959
            ],
            "ITicket": [
              12213
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 11960,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11885,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:48"
            },
            {
              "absolutePath": "contracts/interfaces/IControlledToken.sol",
              "file": "./IControlledToken.sol",
              "id": 11886,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11960,
              "sourceUnit": 11070,
              "src": "61:32:48",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IPrizePool.sol",
              "file": "./IPrizePool.sol",
              "id": 11887,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11960,
              "sourceUnit": 11884,
              "src": "94:26:48",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 11888,
                "nodeType": "StructuredDocumentation",
                "src": "122:138:48",
                "text": " @title Abstract prize split contract for adding unique award distribution to static addresses.\n @author PoolTogether Inc Team"
              },
              "fullyImplemented": false,
              "id": 11959,
              "linearizedBaseContracts": [
                11959
              ],
              "name": "IPrizeSplit",
              "nameLocation": "271:11:48",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11889,
                    "nodeType": "StructuredDocumentation",
                    "src": "289:220:48",
                    "text": " @notice Emit when an individual prize split is awarded.\n @param user          User address being awarded\n @param prizeAwarded  Awarded prize amount\n @param token         Token address"
                  },
                  "id": 11898,
                  "name": "PrizeSplitAwarded",
                  "nameLocation": "520:17:48",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11897,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11891,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "563:4:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11898,
                        "src": "547:20:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11890,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "547:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11893,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "prizeAwarded",
                        "nameLocation": "585:12:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11898,
                        "src": "577:20:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11892,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "577:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11896,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "632:5:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11898,
                        "src": "607:30:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IControlledToken_$11069",
                          "typeString": "contract IControlledToken"
                        },
                        "typeName": {
                          "id": 11895,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11894,
                            "name": "IControlledToken",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11069,
                            "src": "607:16:48"
                          },
                          "referencedDeclaration": 11069,
                          "src": "607:16:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IControlledToken_$11069",
                            "typeString": "contract IControlledToken"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "537:106:48"
                  },
                  "src": "514:130:48"
                },
                {
                  "canonicalName": "IPrizeSplit.PrizeSplitConfig",
                  "id": 11903,
                  "members": [
                    {
                      "constant": false,
                      "id": 11900,
                      "mutability": "mutable",
                      "name": "target",
                      "nameLocation": "1064:6:48",
                      "nodeType": "VariableDeclaration",
                      "scope": 11903,
                      "src": "1056:14:48",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      },
                      "typeName": {
                        "id": 11899,
                        "name": "address",
                        "nodeType": "ElementaryTypeName",
                        "src": "1056:7:48",
                        "stateMutability": "nonpayable",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11902,
                      "mutability": "mutable",
                      "name": "percentage",
                      "nameLocation": "1087:10:48",
                      "nodeType": "VariableDeclaration",
                      "scope": 11903,
                      "src": "1080:17:48",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint16",
                        "typeString": "uint16"
                      },
                      "typeName": {
                        "id": 11901,
                        "name": "uint16",
                        "nodeType": "ElementaryTypeName",
                        "src": "1080:6:48",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "PrizeSplitConfig",
                  "nameLocation": "1029:16:48",
                  "nodeType": "StructDefinition",
                  "scope": 11959,
                  "src": "1022:82:48",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11904,
                    "nodeType": "StructuredDocumentation",
                    "src": "1110:432:48",
                    "text": " @notice Emitted when a PrizeSplitConfig config is added or updated.\n @dev    Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.\n @param target     Address of prize split recipient\n @param percentage Percentage of prize split. Must be between 0 and 1000 for single decimal precision\n @param index      Index of prize split in the prizeSplts array"
                  },
                  "id": 11912,
                  "name": "PrizeSplitSet",
                  "nameLocation": "1553:13:48",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11911,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11906,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "1583:6:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11912,
                        "src": "1567:22:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11905,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1567:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11908,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "percentage",
                        "nameLocation": "1598:10:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11912,
                        "src": "1591:17:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        },
                        "typeName": {
                          "id": 11907,
                          "name": "uint16",
                          "nodeType": "ElementaryTypeName",
                          "src": "1591:6:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11910,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "1618:5:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11912,
                        "src": "1610:13:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11909,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1610:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1566:58:48"
                  },
                  "src": "1547:78:48"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11913,
                    "nodeType": "StructuredDocumentation",
                    "src": "1631:239:48",
                    "text": " @notice Emitted when a PrizeSplitConfig config is removed.\n @dev    Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.\n @param target Index of a previously active prize split config"
                  },
                  "id": 11917,
                  "name": "PrizeSplitRemoved",
                  "nameLocation": "1881:17:48",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11916,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11915,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "1915:6:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11917,
                        "src": "1899:22:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11914,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1899:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1898:24:48"
                  },
                  "src": "1875:48:48"
                },
                {
                  "documentation": {
                    "id": 11918,
                    "nodeType": "StructuredDocumentation",
                    "src": "1929:266:48",
                    "text": " @notice Read prize split config from active PrizeSplits.\n @dev    Read PrizeSplitConfig struct from prizeSplits array.\n @param prizeSplitIndex Index position of PrizeSplitConfig\n @return PrizeSplitConfig Single prize split config"
                  },
                  "functionSelector": "cf713d6e",
                  "id": 11926,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeSplit",
                  "nameLocation": "2209:13:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11921,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11920,
                        "mutability": "mutable",
                        "name": "prizeSplitIndex",
                        "nameLocation": "2231:15:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11926,
                        "src": "2223:23:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11919,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2223:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2222:25:48"
                  },
                  "returnParameters": {
                    "id": 11925,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11924,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11926,
                        "src": "2271:23:48",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                        },
                        "typeName": {
                          "id": 11923,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11922,
                            "name": "PrizeSplitConfig",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11903,
                            "src": "2271:16:48"
                          },
                          "referencedDeclaration": 11903,
                          "src": "2271:16:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2270:25:48"
                  },
                  "scope": 11959,
                  "src": "2200:96:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11927,
                    "nodeType": "StructuredDocumentation",
                    "src": "2302:178:48",
                    "text": " @notice Read all prize splits configs.\n @dev    Read all PrizeSplitConfig structs stored in prizeSplits.\n @return Array of PrizeSplitConfig structs"
                  },
                  "functionSelector": "cf1e3b59",
                  "id": 11934,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeSplits",
                  "nameLocation": "2494:14:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11928,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2508:2:48"
                  },
                  "returnParameters": {
                    "id": 11933,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11932,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11934,
                        "src": "2534:25:48",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11930,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 11929,
                              "name": "PrizeSplitConfig",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11903,
                              "src": "2534:16:48"
                            },
                            "referencedDeclaration": 11903,
                            "src": "2534:16:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                            }
                          },
                          "id": 11931,
                          "nodeType": "ArrayTypeName",
                          "src": "2534:18:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2533:27:48"
                  },
                  "scope": 11959,
                  "src": "2485:76:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11935,
                    "nodeType": "StructuredDocumentation",
                    "src": "2567:74:48",
                    "text": " @notice Get PrizePool address\n @return IPrizePool"
                  },
                  "functionSelector": "884bf67c",
                  "id": 11941,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizePool",
                  "nameLocation": "2655:12:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11936,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2667:2:48"
                  },
                  "returnParameters": {
                    "id": 11940,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11939,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11941,
                        "src": "2693:10:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$11883",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 11938,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11937,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11883,
                            "src": "2693:10:48"
                          },
                          "referencedDeclaration": 11883,
                          "src": "2693:10:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11883",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2692:12:48"
                  },
                  "scope": 11959,
                  "src": "2646:59:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11942,
                    "nodeType": "StructuredDocumentation",
                    "src": "2711:354:48",
                    "text": " @notice Set and remove prize split(s) configs. Only callable by owner.\n @dev Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\n @param newPrizeSplits Array of PrizeSplitConfig structs"
                  },
                  "functionSelector": "063a2298",
                  "id": 11949,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setPrizeSplits",
                  "nameLocation": "3079:14:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11947,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11946,
                        "mutability": "mutable",
                        "name": "newPrizeSplits",
                        "nameLocation": "3122:14:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11949,
                        "src": "3094:42:48",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_calldata_ptr_$dyn_calldata_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11944,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 11943,
                              "name": "PrizeSplitConfig",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11903,
                              "src": "3094:16:48"
                            },
                            "referencedDeclaration": 11903,
                            "src": "3094:16:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                            }
                          },
                          "id": 11945,
                          "nodeType": "ArrayTypeName",
                          "src": "3094:18:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3093:44:48"
                  },
                  "returnParameters": {
                    "id": 11948,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3146:0:48"
                  },
                  "scope": 11959,
                  "src": "3070:77:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11950,
                    "nodeType": "StructuredDocumentation",
                    "src": "3153:347:48",
                    "text": " @notice Updates a previously set prize split config.\n @dev Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\n @param prizeStrategySplit PrizeSplitConfig config struct\n @param prizeSplitIndex Index position of PrizeSplitConfig to update"
                  },
                  "functionSelector": "056ea84f",
                  "id": 11958,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setPrizeSplit",
                  "nameLocation": "3514:13:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11956,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11953,
                        "mutability": "mutable",
                        "name": "prizeStrategySplit",
                        "nameLocation": "3552:18:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11958,
                        "src": "3528:42:48",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                        },
                        "typeName": {
                          "id": 11952,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11951,
                            "name": "PrizeSplitConfig",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11903,
                            "src": "3528:16:48"
                          },
                          "referencedDeclaration": 11903,
                          "src": "3528:16:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11955,
                        "mutability": "mutable",
                        "name": "prizeSplitIndex",
                        "nameLocation": "3578:15:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11958,
                        "src": "3572:21:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 11954,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3572:5:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3527:67:48"
                  },
                  "returnParameters": {
                    "id": 11957,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3611:0:48"
                  },
                  "scope": 11959,
                  "src": "3505:107:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11960,
              "src": "261:3353:48",
              "usedErrors": []
            }
          ],
          "src": "37:3578:48"
        },
        "id": 48
      },
      "contracts/interfaces/IReserve.sol": {
        "ast": {
          "absolutePath": "contracts/interfaces/IReserve.sol",
          "exportedSymbols": {
            "IERC20": [
              663
            ],
            "IReserve": [
              12006
            ]
          },
          "id": 12007,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11961,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:49"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 11962,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12007,
              "sourceUnit": 664,
              "src": "61:56:49",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 12006,
              "linearizedBaseContracts": [
                12006
              ],
              "name": "IReserve",
              "nameLocation": "129:8:49",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11963,
                    "nodeType": "StructuredDocumentation",
                    "src": "144:160:49",
                    "text": " @notice Emit when checkpoint is created.\n @param reserveAccumulated  Total depsosited\n @param withdrawAccumulated Total withdrawn"
                  },
                  "id": 11969,
                  "name": "Checkpoint",
                  "nameLocation": "316:10:49",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11968,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11965,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "reserveAccumulated",
                        "nameLocation": "335:18:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 11969,
                        "src": "327:26:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11964,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "327:7:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11967,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "withdrawAccumulated",
                        "nameLocation": "363:19:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 11969,
                        "src": "355:27:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11966,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "355:7:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "326:57:49"
                  },
                  "src": "310:74:49"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11970,
                    "nodeType": "StructuredDocumentation",
                    "src": "389:175:49",
                    "text": " @notice Emit when the withdrawTo function has executed.\n @param recipient Address receiving funds\n @param amount    Amount of tokens transfered."
                  },
                  "id": 11976,
                  "name": "Withdrawn",
                  "nameLocation": "575:9:49",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11975,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11972,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "601:9:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 11976,
                        "src": "585:25:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11971,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "585:7:49",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11974,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "620:6:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 11976,
                        "src": "612:14:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11973,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "612:7:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "584:43:49"
                  },
                  "src": "569:59:49"
                },
                {
                  "documentation": {
                    "id": 11977,
                    "nodeType": "StructuredDocumentation",
                    "src": "634:185:49",
                    "text": " @notice Create observation checkpoint in ring bufferr.\n @dev    Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint."
                  },
                  "functionSelector": "c2c4c5c1",
                  "id": 11980,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "checkpoint",
                  "nameLocation": "833:10:49",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11978,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "843:2:49"
                  },
                  "returnParameters": {
                    "id": 11979,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "854:0:49"
                  },
                  "scope": 12006,
                  "src": "824:31:49",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11981,
                    "nodeType": "StructuredDocumentation",
                    "src": "861:73:49",
                    "text": " @notice Read global token value.\n @return IERC20"
                  },
                  "functionSelector": "21df0da7",
                  "id": 11987,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "948:8:49",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11982,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "956:2:49"
                  },
                  "returnParameters": {
                    "id": 11986,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11985,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11987,
                        "src": "982:6:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 11984,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11983,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "982:6:49"
                          },
                          "referencedDeclaration": 663,
                          "src": "982:6:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "981:8:49"
                  },
                  "scope": 12006,
                  "src": "939:51:49",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11988,
                    "nodeType": "StructuredDocumentation",
                    "src": "996:269:49",
                    "text": " @notice Calculate token accumulation beween timestamp range.\n @dev    Search the ring buffer for two checkpoint observations and diffs accumulator amount.\n @param startTimestamp Account address\n @param endTimestamp   Transfer amount"
                  },
                  "functionSelector": "af6a9400",
                  "id": 11997,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getReserveAccumulatedBetween",
                  "nameLocation": "1279:28:49",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11993,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11990,
                        "mutability": "mutable",
                        "name": "startTimestamp",
                        "nameLocation": "1315:14:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 11997,
                        "src": "1308:21:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11989,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1308:6:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11992,
                        "mutability": "mutable",
                        "name": "endTimestamp",
                        "nameLocation": "1338:12:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 11997,
                        "src": "1331:19:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11991,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1331:6:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1307:44:49"
                  },
                  "returnParameters": {
                    "id": 11996,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11995,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11997,
                        "src": "1386:7:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 11994,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "1386:7:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1385:9:49"
                  },
                  "scope": 12006,
                  "src": "1270:125:49",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11998,
                    "nodeType": "StructuredDocumentation",
                    "src": "1401:260:49",
                    "text": " @notice Transfer Reserve token balance to recipient address.\n @dev    Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\n @param recipient Account address\n @param amount    Transfer amount"
                  },
                  "functionSelector": "205c2878",
                  "id": 12005,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "withdrawTo",
                  "nameLocation": "1675:10:49",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12003,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12000,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "1694:9:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 12005,
                        "src": "1686:17:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11999,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1686:7:49",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12002,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1713:6:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 12005,
                        "src": "1705:14:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12001,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1705:7:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1685:35:49"
                  },
                  "returnParameters": {
                    "id": 12004,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1729:0:49"
                  },
                  "scope": 12006,
                  "src": "1666:64:49",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 12007,
              "src": "119:1613:49",
              "usedErrors": []
            }
          ],
          "src": "37:1696:49"
        },
        "id": 49
      },
      "contracts/interfaces/IStrategy.sol": {
        "ast": {
          "absolutePath": "contracts/interfaces/IStrategy.sol",
          "exportedSymbols": {
            "IStrategy": [
              12020
            ]
          },
          "id": 12021,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12008,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:50"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 12020,
              "linearizedBaseContracts": [
                12020
              ],
              "name": "IStrategy",
              "nameLocation": "71:9:50",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 12009,
                    "nodeType": "StructuredDocumentation",
                    "src": "87:159:50",
                    "text": " @notice Emit when a strategy captures award amount from PrizePool.\n @param totalPrizeCaptured  Total prize captured from the PrizePool"
                  },
                  "id": 12013,
                  "name": "Distributed",
                  "nameLocation": "257:11:50",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 12012,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12011,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "totalPrizeCaptured",
                        "nameLocation": "277:18:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 12013,
                        "src": "269:26:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12010,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "269:7:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "268:28:50"
                  },
                  "src": "251:46:50"
                },
                {
                  "documentation": {
                    "id": 12014,
                    "nodeType": "StructuredDocumentation",
                    "src": "303:206:50",
                    "text": " @notice Capture the award balance and distribute to prize splits.\n @dev    Permissionless function to initialize distribution of interst\n @return Prize captured from PrizePool"
                  },
                  "functionSelector": "e4fc6b6d",
                  "id": 12019,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "distribute",
                  "nameLocation": "523:10:50",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12015,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "533:2:50"
                  },
                  "returnParameters": {
                    "id": 12018,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12017,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12019,
                        "src": "554:7:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12016,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "554:7:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "553:9:50"
                  },
                  "scope": 12020,
                  "src": "514:49:50",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 12021,
              "src": "61:504:50",
              "usedErrors": []
            }
          ],
          "src": "37:529:50"
        },
        "id": 50
      },
      "contracts/interfaces/ITicket.sol": {
        "ast": {
          "absolutePath": "contracts/interfaces/ITicket.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12433
            ],
            "IControlledToken": [
              11069
            ],
            "IERC20": [
              663
            ],
            "ITicket": [
              12213
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 12214,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12022,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:51"
            },
            {
              "absolutePath": "contracts/libraries/TwabLib.sol",
              "file": "../libraries/TwabLib.sol",
              "id": 12023,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12214,
              "sourceUnit": 13600,
              "src": "61:34:51",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IControlledToken.sol",
              "file": "./IControlledToken.sol",
              "id": 12024,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12214,
              "sourceUnit": 11070,
              "src": "96:32:51",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 12025,
                    "name": "IControlledToken",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11069,
                    "src": "151:16:51"
                  },
                  "id": 12026,
                  "nodeType": "InheritanceSpecifier",
                  "src": "151:16:51"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 12213,
              "linearizedBaseContracts": [
                12213,
                11069,
                663
              ],
              "name": "ITicket",
              "nameLocation": "140:7:51",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "ITicket.AccountDetails",
                  "id": 12033,
                  "members": [
                    {
                      "constant": false,
                      "id": 12028,
                      "mutability": "mutable",
                      "name": "balance",
                      "nameLocation": "489:7:51",
                      "nodeType": "VariableDeclaration",
                      "scope": 12033,
                      "src": "481:15:51",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      },
                      "typeName": {
                        "id": 12027,
                        "name": "uint224",
                        "nodeType": "ElementaryTypeName",
                        "src": "481:7:51",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 12030,
                      "mutability": "mutable",
                      "name": "nextTwabIndex",
                      "nameLocation": "513:13:51",
                      "nodeType": "VariableDeclaration",
                      "scope": 12033,
                      "src": "506:20:51",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint16",
                        "typeString": "uint16"
                      },
                      "typeName": {
                        "id": 12029,
                        "name": "uint16",
                        "nodeType": "ElementaryTypeName",
                        "src": "506:6:51",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 12032,
                      "mutability": "mutable",
                      "name": "cardinality",
                      "nameLocation": "543:11:51",
                      "nodeType": "VariableDeclaration",
                      "scope": 12033,
                      "src": "536:18:51",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint16",
                        "typeString": "uint16"
                      },
                      "typeName": {
                        "id": 12031,
                        "name": "uint16",
                        "nodeType": "ElementaryTypeName",
                        "src": "536:6:51",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "AccountDetails",
                  "nameLocation": "456:14:51",
                  "nodeType": "StructDefinition",
                  "scope": 12213,
                  "src": "449:112:51",
                  "visibility": "public"
                },
                {
                  "canonicalName": "ITicket.Account",
                  "id": 12042,
                  "members": [
                    {
                      "constant": false,
                      "id": 12036,
                      "mutability": "mutable",
                      "name": "details",
                      "nameLocation": "790:7:51",
                      "nodeType": "VariableDeclaration",
                      "scope": 12042,
                      "src": "775:22:51",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_AccountDetails_$12033_storage_ptr",
                        "typeString": "struct ITicket.AccountDetails"
                      },
                      "typeName": {
                        "id": 12035,
                        "nodeType": "UserDefinedTypeName",
                        "pathNode": {
                          "id": 12034,
                          "name": "AccountDetails",
                          "nodeType": "IdentifierPath",
                          "referencedDeclaration": 12033,
                          "src": "775:14:51"
                        },
                        "referencedDeclaration": 12033,
                        "src": "775:14:51",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12033_storage_ptr",
                          "typeString": "struct ITicket.AccountDetails"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 12041,
                      "mutability": "mutable",
                      "name": "twabs",
                      "nameLocation": "841:5:51",
                      "nodeType": "VariableDeclaration",
                      "scope": 12042,
                      "src": "807:39:51",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$65535_storage_ptr",
                        "typeString": "struct ObservationLib.Observation[65535]"
                      },
                      "typeName": {
                        "baseType": {
                          "id": 12038,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12037,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "807:26:51"
                          },
                          "referencedDeclaration": 12454,
                          "src": "807:26:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "id": 12040,
                        "length": {
                          "hexValue": "3635353335",
                          "id": 12039,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "834:5:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_65535_by_1",
                            "typeString": "int_const 65535"
                          },
                          "value": "65535"
                        },
                        "nodeType": "ArrayTypeName",
                        "src": "807:33:51",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$65535_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[65535]"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Account",
                  "nameLocation": "757:7:51",
                  "nodeType": "StructDefinition",
                  "scope": 12213,
                  "src": "750:103:51",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 12043,
                    "nodeType": "StructuredDocumentation",
                    "src": "859:186:51",
                    "text": " @notice Emitted when TWAB balance has been delegated to another user.\n @param delegator Address of the delegator.\n @param delegate Address of the delegate."
                  },
                  "id": 12049,
                  "name": "Delegated",
                  "nameLocation": "1056:9:51",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 12048,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12045,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegator",
                        "nameLocation": "1082:9:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12049,
                        "src": "1066:25:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12044,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1066:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12047,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "1109:8:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12049,
                        "src": "1093:24:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12046,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1093:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1065:53:51"
                  },
                  "src": "1050:69:51"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 12050,
                    "nodeType": "StructuredDocumentation",
                    "src": "1125:274:51",
                    "text": " @notice Emitted when ticket is initialized.\n @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\n @param symbol Ticket symbol (eg: PcDAI).\n @param decimals Ticket decimals.\n @param controller Token controller address."
                  },
                  "id": 12060,
                  "name": "TicketInitialized",
                  "nameLocation": "1410:17:51",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 12059,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12052,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "name",
                        "nameLocation": "1435:4:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12060,
                        "src": "1428:11:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 12051,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1428:6:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12054,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "symbol",
                        "nameLocation": "1448:6:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12060,
                        "src": "1441:13:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 12053,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1441:6:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12056,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "decimals",
                        "nameLocation": "1462:8:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12060,
                        "src": "1456:14:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 12055,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1456:5:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12058,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "controller",
                        "nameLocation": "1488:10:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12060,
                        "src": "1472:26:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12057,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1472:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1427:72:51"
                  },
                  "src": "1404:96:51"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 12061,
                    "nodeType": "StructuredDocumentation",
                    "src": "1506:246:51",
                    "text": " @notice Emitted when a new TWAB has been recorded.\n @param delegate The recipient of the ticket power (may be the same as the user).\n @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording."
                  },
                  "id": 12068,
                  "name": "NewUserTwab",
                  "nameLocation": "1763:11:51",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 12067,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12063,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "1800:8:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12068,
                        "src": "1784:24:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12062,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1784:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12066,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "newTwab",
                        "nameLocation": "1845:7:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12068,
                        "src": "1818:34:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12065,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12064,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "1818:26:51"
                          },
                          "referencedDeclaration": 12454,
                          "src": "1818:26:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1774:84:51"
                  },
                  "src": "1757:102:51"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 12069,
                    "nodeType": "StructuredDocumentation",
                    "src": "1865:200:51",
                    "text": " @notice Emitted when a new total supply TWAB has been recorded.\n @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording."
                  },
                  "id": 12074,
                  "name": "NewTotalSupplyTwab",
                  "nameLocation": "2076:18:51",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 12073,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12072,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "newTotalSupplyTwab",
                        "nameLocation": "2122:18:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12074,
                        "src": "2095:45:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12071,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12070,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "2095:26:51"
                          },
                          "referencedDeclaration": 12454,
                          "src": "2095:26:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2094:47:51"
                  },
                  "src": "2070:72:51"
                },
                {
                  "documentation": {
                    "id": 12075,
                    "nodeType": "StructuredDocumentation",
                    "src": "2148:297:51",
                    "text": " @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\n @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\n @param user Address of the delegator.\n @return Address of the delegate."
                  },
                  "functionSelector": "8d22ea2a",
                  "id": 12082,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegateOf",
                  "nameLocation": "2459:10:51",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12078,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12077,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2478:4:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12082,
                        "src": "2470:12:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12076,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2470:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2469:14:51"
                  },
                  "returnParameters": {
                    "id": 12081,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12080,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12082,
                        "src": "2507:7:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12079,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2507:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2506:9:51"
                  },
                  "scope": 12213,
                  "src": "2450:66:51",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 12083,
                    "nodeType": "StructuredDocumentation",
                    "src": "2522:490:51",
                    "text": " @notice Delegate time-weighted average balances to an alternative address.\n @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\ntargetted sender and/or recipient address(s).\n @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\n @dev Current delegate address should be different from the new delegate address `to`.\n @param  to Recipient of delegated TWAB."
                  },
                  "functionSelector": "5c19a95c",
                  "id": 12088,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegate",
                  "nameLocation": "3026:8:51",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12086,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12085,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "3043:2:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12088,
                        "src": "3035:10:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12084,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3035:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3034:12:51"
                  },
                  "returnParameters": {
                    "id": 12087,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3055:0:51"
                  },
                  "scope": 12213,
                  "src": "3017:39:51",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 12089,
                    "nodeType": "StructuredDocumentation",
                    "src": "3062:168:51",
                    "text": " @notice Allows the controller to delegate on a users behalf.\n @param user The user for whom to delegate\n @param delegate The new delegate"
                  },
                  "functionSelector": "33e39b61",
                  "id": 12096,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "controllerDelegateFor",
                  "nameLocation": "3244:21:51",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12094,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12091,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "3274:4:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12096,
                        "src": "3266:12:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12090,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3266:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12093,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "3288:8:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12096,
                        "src": "3280:16:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12092,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3280:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3265:32:51"
                  },
                  "returnParameters": {
                    "id": 12095,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3306:0:51"
                  },
                  "scope": 12213,
                  "src": "3235:72:51",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 12097,
                    "nodeType": "StructuredDocumentation",
                    "src": "3313:362:51",
                    "text": " @notice Allows a user to delegate via signature\n @param user The user who is delegating\n @param delegate The new delegate\n @param deadline The timestamp by which this must be submitted\n @param v The v portion of the ECDSA sig\n @param r The r portion of the ECDSA sig\n @param s The s portion of the ECDSA sig"
                  },
                  "functionSelector": "919974dc",
                  "id": 12112,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegateWithSignature",
                  "nameLocation": "3689:21:51",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12110,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12099,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "3728:4:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12112,
                        "src": "3720:12:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12098,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3720:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12101,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "3750:8:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12112,
                        "src": "3742:16:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12100,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3742:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12103,
                        "mutability": "mutable",
                        "name": "deadline",
                        "nameLocation": "3776:8:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12112,
                        "src": "3768:16:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12102,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3768:7:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12105,
                        "mutability": "mutable",
                        "name": "v",
                        "nameLocation": "3800:1:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12112,
                        "src": "3794:7:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 12104,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3794:5:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12107,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "3819:1:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12112,
                        "src": "3811:9:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 12106,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3811:7:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12109,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "3838:1:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12112,
                        "src": "3830:9:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 12108,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3830:7:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3710:135:51"
                  },
                  "returnParameters": {
                    "id": 12111,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3854:0:51"
                  },
                  "scope": 12213,
                  "src": "3680:175:51",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 12113,
                    "nodeType": "StructuredDocumentation",
                    "src": "3861:277:51",
                    "text": " @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\n @param user The user for whom to fetch the TWAB context.\n @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }"
                  },
                  "functionSelector": "2aceb534",
                  "id": 12121,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAccountDetails",
                  "nameLocation": "4152:17:51",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12116,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12115,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "4178:4:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12121,
                        "src": "4170:12:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12114,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4170:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4169:14:51"
                  },
                  "returnParameters": {
                    "id": 12120,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12119,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12121,
                        "src": "4207:29:51",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 12118,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12117,
                            "name": "TwabLib.AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "4207:22:51"
                          },
                          "referencedDeclaration": 12873,
                          "src": "4207:22:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4206:31:51"
                  },
                  "scope": 12213,
                  "src": "4143:95:51",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 12122,
                    "nodeType": "StructuredDocumentation",
                    "src": "4244:255:51",
                    "text": " @notice Gets the TWAB at a specific index for a user.\n @param user The user for whom to fetch the TWAB.\n @param index The index of the TWAB to fetch.\n @return The TWAB, which includes the twab amount and the timestamp."
                  },
                  "functionSelector": "36bb2a38",
                  "id": 12132,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTwab",
                  "nameLocation": "4513:7:51",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12127,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12124,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "4529:4:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12132,
                        "src": "4521:12:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12123,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4521:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12126,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "4542:5:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12132,
                        "src": "4535:12:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        },
                        "typeName": {
                          "id": 12125,
                          "name": "uint16",
                          "nodeType": "ElementaryTypeName",
                          "src": "4535:6:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4520:28:51"
                  },
                  "returnParameters": {
                    "id": 12131,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12130,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12132,
                        "src": "4596:33:51",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12129,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12128,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "4596:26:51"
                          },
                          "referencedDeclaration": 12454,
                          "src": "4596:26:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4595:35:51"
                  },
                  "scope": 12213,
                  "src": "4504:127:51",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 12133,
                    "nodeType": "StructuredDocumentation",
                    "src": "4637:262:51",
                    "text": " @notice Retrieves `user` TWAB balance.\n @param user Address of the user whose TWAB is being fetched.\n @param timestamp Timestamp at which we want to retrieve the TWAB balance.\n @return The TWAB balance at the given timestamp."
                  },
                  "functionSelector": "9ecb0370",
                  "id": 12142,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceAt",
                  "nameLocation": "4913:12:51",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12138,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12135,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "4934:4:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12142,
                        "src": "4926:12:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12134,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4926:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12137,
                        "mutability": "mutable",
                        "name": "timestamp",
                        "nameLocation": "4947:9:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12142,
                        "src": "4940:16:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 12136,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "4940:6:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4925:32:51"
                  },
                  "returnParameters": {
                    "id": 12141,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12140,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12142,
                        "src": "4981:7:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12139,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4981:7:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4980:9:51"
                  },
                  "scope": 12213,
                  "src": "4904:86:51",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 12143,
                    "nodeType": "StructuredDocumentation",
                    "src": "4996:255:51",
                    "text": " @notice Retrieves `user` TWAB balances.\n @param user Address of the user whose TWABs are being fetched.\n @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\n @return `user` TWAB balances."
                  },
                  "functionSelector": "613ed6bd",
                  "id": 12154,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalancesAt",
                  "nameLocation": "5265:13:51",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12149,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12145,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "5287:4:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12154,
                        "src": "5279:12:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12144,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5279:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12148,
                        "mutability": "mutable",
                        "name": "timestamps",
                        "nameLocation": "5311:10:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12154,
                        "src": "5293:28:51",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12146,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "5293:6:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 12147,
                          "nodeType": "ArrayTypeName",
                          "src": "5293:8:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5278:44:51"
                  },
                  "returnParameters": {
                    "id": 12153,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12152,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12154,
                        "src": "5370:16:51",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12150,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "5370:7:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 12151,
                          "nodeType": "ArrayTypeName",
                          "src": "5370:9:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5369:18:51"
                  },
                  "scope": 12213,
                  "src": "5256:132:51",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 12155,
                    "nodeType": "StructuredDocumentation",
                    "src": "5394:338:51",
                    "text": " @notice Retrieves the average balance held by a user for a given time frame.\n @param user The user whose balance is checked.\n @param startTime The start time of the time frame.\n @param endTime The end time of the time frame.\n @return The average balance that the user held during the time frame."
                  },
                  "functionSelector": "98b16f36",
                  "id": 12166,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalanceBetween",
                  "nameLocation": "5746:24:51",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12162,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12157,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "5788:4:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12166,
                        "src": "5780:12:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12156,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5780:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12159,
                        "mutability": "mutable",
                        "name": "startTime",
                        "nameLocation": "5809:9:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12166,
                        "src": "5802:16:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 12158,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "5802:6:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12161,
                        "mutability": "mutable",
                        "name": "endTime",
                        "nameLocation": "5835:7:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12166,
                        "src": "5828:14:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 12160,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "5828:6:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5770:78:51"
                  },
                  "returnParameters": {
                    "id": 12165,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12164,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12166,
                        "src": "5872:7:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12163,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5872:7:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5871:9:51"
                  },
                  "scope": 12213,
                  "src": "5737:144:51",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 12167,
                    "nodeType": "StructuredDocumentation",
                    "src": "5887:341:51",
                    "text": " @notice Retrieves the average balances held by a user for a given time frame.\n @param user The user whose balance is checked.\n @param startTimes The start time of the time frame.\n @param endTimes The end time of the time frame.\n @return The average balance that the user held during the time frame."
                  },
                  "functionSelector": "68c7fd57",
                  "id": 12181,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalancesBetween",
                  "nameLocation": "6242:25:51",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12176,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12169,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "6285:4:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12181,
                        "src": "6277:12:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12168,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6277:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12172,
                        "mutability": "mutable",
                        "name": "startTimes",
                        "nameLocation": "6317:10:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12181,
                        "src": "6299:28:51",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12170,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "6299:6:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 12171,
                          "nodeType": "ArrayTypeName",
                          "src": "6299:8:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12175,
                        "mutability": "mutable",
                        "name": "endTimes",
                        "nameLocation": "6355:8:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12181,
                        "src": "6337:26:51",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12173,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "6337:6:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 12174,
                          "nodeType": "ArrayTypeName",
                          "src": "6337:8:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6267:102:51"
                  },
                  "returnParameters": {
                    "id": 12180,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12179,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12181,
                        "src": "6393:16:51",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12177,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "6393:7:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 12178,
                          "nodeType": "ArrayTypeName",
                          "src": "6393:9:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6392:18:51"
                  },
                  "scope": 12213,
                  "src": "6233:178:51",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 12182,
                    "nodeType": "StructuredDocumentation",
                    "src": "6417:253:51",
                    "text": " @notice Retrieves the total supply TWAB balance at the given timestamp.\n @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\n @return The total supply TWAB balance at the given timestamp."
                  },
                  "functionSelector": "2d0dd686",
                  "id": 12189,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTotalSupplyAt",
                  "nameLocation": "6684:16:51",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12185,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12184,
                        "mutability": "mutable",
                        "name": "timestamp",
                        "nameLocation": "6708:9:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12189,
                        "src": "6701:16:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 12183,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "6701:6:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6700:18:51"
                  },
                  "returnParameters": {
                    "id": 12188,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12187,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12189,
                        "src": "6742:7:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12186,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6742:7:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6741:9:51"
                  },
                  "scope": 12213,
                  "src": "6675:76:51",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 12190,
                    "nodeType": "StructuredDocumentation",
                    "src": "6757:247:51",
                    "text": " @notice Retrieves the total supply TWAB balance between the given timestamps range.\n @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\n @return Total supply TWAB balances."
                  },
                  "functionSelector": "85beb5f1",
                  "id": 12199,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTotalSuppliesAt",
                  "nameLocation": "7018:18:51",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12194,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12193,
                        "mutability": "mutable",
                        "name": "timestamps",
                        "nameLocation": "7055:10:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12199,
                        "src": "7037:28:51",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12191,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "7037:6:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 12192,
                          "nodeType": "ArrayTypeName",
                          "src": "7037:8:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7036:30:51"
                  },
                  "returnParameters": {
                    "id": 12198,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12197,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12199,
                        "src": "7114:16:51",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12195,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "7114:7:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 12196,
                          "nodeType": "ArrayTypeName",
                          "src": "7114:9:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7113:18:51"
                  },
                  "scope": 12213,
                  "src": "7009:123:51",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 12200,
                    "nodeType": "StructuredDocumentation",
                    "src": "7138:261:51",
                    "text": " @notice Retrieves the average total supply balance for a set of given time frames.\n @param startTimes Array of start times.\n @param endTimes Array of end times.\n @return The average total supplies held during the time frame."
                  },
                  "functionSelector": "8e6d536a",
                  "id": 12212,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageTotalSuppliesBetween",
                  "nameLocation": "7413:30:51",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12207,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12203,
                        "mutability": "mutable",
                        "name": "startTimes",
                        "nameLocation": "7471:10:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12212,
                        "src": "7453:28:51",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12201,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "7453:6:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 12202,
                          "nodeType": "ArrayTypeName",
                          "src": "7453:8:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12206,
                        "mutability": "mutable",
                        "name": "endTimes",
                        "nameLocation": "7509:8:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12212,
                        "src": "7491:26:51",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12204,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "7491:6:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 12205,
                          "nodeType": "ArrayTypeName",
                          "src": "7491:8:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7443:80:51"
                  },
                  "returnParameters": {
                    "id": 12211,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12210,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12212,
                        "src": "7547:16:51",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12208,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "7547:7:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 12209,
                          "nodeType": "ArrayTypeName",
                          "src": "7547:9:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7546:18:51"
                  },
                  "scope": 12213,
                  "src": "7404:161:51",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 12214,
              "src": "130:7437:51",
              "usedErrors": []
            }
          ],
          "src": "37:7531:51"
        },
        "id": 51
      },
      "contracts/libraries/DrawRingBufferLib.sol": {
        "ast": {
          "absolutePath": "contracts/libraries/DrawRingBufferLib.sol",
          "exportedSymbols": {
            "DrawRingBufferLib": [
              12354
            ],
            "RingBufferLib": [
              12849
            ]
          },
          "id": 12355,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12215,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:52"
            },
            {
              "absolutePath": "contracts/libraries/RingBufferLib.sol",
              "file": "./RingBufferLib.sol",
              "id": 12216,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12355,
              "sourceUnit": 12850,
              "src": "61:29:52",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 12217,
                "nodeType": "StructuredDocumentation",
                "src": "92:65:52",
                "text": "@title Library for creating and managing a draw ring buffer."
              },
              "fullyImplemented": true,
              "id": 12354,
              "linearizedBaseContracts": [
                12354
              ],
              "name": "DrawRingBufferLib",
              "nameLocation": "165:17:52",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "DrawRingBufferLib.Buffer",
                  "id": 12224,
                  "members": [
                    {
                      "constant": false,
                      "id": 12219,
                      "mutability": "mutable",
                      "name": "lastDrawId",
                      "nameLocation": "256:10:52",
                      "nodeType": "VariableDeclaration",
                      "scope": 12224,
                      "src": "249:17:52",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 12218,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "249:6:52",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 12221,
                      "mutability": "mutable",
                      "name": "nextIndex",
                      "nameLocation": "283:9:52",
                      "nodeType": "VariableDeclaration",
                      "scope": 12224,
                      "src": "276:16:52",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 12220,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "276:6:52",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 12223,
                      "mutability": "mutable",
                      "name": "cardinality",
                      "nameLocation": "309:11:52",
                      "nodeType": "VariableDeclaration",
                      "scope": 12224,
                      "src": "302:18:52",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 12222,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "302:6:52",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Buffer",
                  "nameLocation": "232:6:52",
                  "nodeType": "StructDefinition",
                  "scope": 12354,
                  "src": "225:102:52",
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 12245,
                    "nodeType": "Block",
                    "src": "673:76:52",
                    "statements": [
                      {
                        "expression": {
                          "id": 12243,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "!",
                          "prefix": true,
                          "src": "690:52:52",
                          "subExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "id": 12241,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "id": 12236,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "expression": {
                                      "id": 12233,
                                      "name": "_buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12228,
                                      "src": "692:7:52",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    },
                                    "id": 12234,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "nextIndex",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12221,
                                    "src": "692:17:52",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "==",
                                  "rightExpression": {
                                    "hexValue": "30",
                                    "id": 12235,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "713:1:52",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "src": "692:22:52",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "&&",
                                "rightExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "id": 12240,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "expression": {
                                      "id": 12237,
                                      "name": "_buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12228,
                                      "src": "718:7:52",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    },
                                    "id": 12238,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "lastDrawId",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12219,
                                    "src": "718:18:52",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "==",
                                  "rightExpression": {
                                    "hexValue": "30",
                                    "id": 12239,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "740:1:52",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "src": "718:23:52",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "src": "692:49:52",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 12242,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "691:51:52",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 12232,
                        "id": 12244,
                        "nodeType": "Return",
                        "src": "683:59:52"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12225,
                    "nodeType": "StructuredDocumentation",
                    "src": "333:260:52",
                    "text": "@notice Helper function to know if the draw ring buffer has been initialized.\n @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\n @param _buffer The buffer to check."
                  },
                  "id": 12246,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isInitialized",
                  "nameLocation": "607:13:52",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12229,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12228,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "635:7:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 12246,
                        "src": "621:21:52",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 12227,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12226,
                            "name": "Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12224,
                            "src": "621:6:52"
                          },
                          "referencedDeclaration": 12224,
                          "src": "621:6:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "620:23:52"
                  },
                  "returnParameters": {
                    "id": 12232,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12231,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12246,
                        "src": "667:4:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 12230,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "667:4:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "666:6:52"
                  },
                  "scope": 12354,
                  "src": "598:151:52",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12289,
                    "nodeType": "Block",
                    "src": "1010:347:52",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 12269,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12262,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "!",
                                "prefix": true,
                                "src": "1028:23:52",
                                "subExpression": {
                                  "arguments": [
                                    {
                                      "id": 12260,
                                      "name": "_buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12250,
                                      "src": "1043:7:52",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    ],
                                    "id": 12259,
                                    "name": "isInitialized",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12246,
                                    "src": "1029:13:52",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$returns$_t_bool_$",
                                      "typeString": "function (struct DrawRingBufferLib.Buffer memory) pure returns (bool)"
                                    }
                                  },
                                  "id": 12261,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1029:22:52",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "||",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 12268,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 12263,
                                  "name": "_drawId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12252,
                                  "src": "1055:7:52",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "id": 12267,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "expression": {
                                      "id": 12264,
                                      "name": "_buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12250,
                                      "src": "1066:7:52",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    },
                                    "id": 12265,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "lastDrawId",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12219,
                                    "src": "1066:18:52",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "+",
                                  "rightExpression": {
                                    "hexValue": "31",
                                    "id": 12266,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1087:1:52",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_1_by_1",
                                      "typeString": "int_const 1"
                                    },
                                    "value": "1"
                                  },
                                  "src": "1066:22:52",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "1055:33:52",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "1028:60:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4452422f6d7573742d62652d636f6e746967",
                              "id": 12270,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1090:20:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816",
                                "typeString": "literal_string \"DRB/must-be-contig\""
                              },
                              "value": "DRB/must-be-contig"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816",
                                "typeString": "literal_string \"DRB/must-be-contig\""
                              }
                            ],
                            "id": 12258,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1020:7:52",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12271,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1020:91:52",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12272,
                        "nodeType": "ExpressionStatement",
                        "src": "1020:91:52"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12274,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12252,
                              "src": "1178:7:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 12279,
                                        "name": "_buffer",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 12250,
                                        "src": "1245:7:52",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        }
                                      },
                                      "id": 12280,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "nextIndex",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 12221,
                                      "src": "1245:17:52",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "expression": {
                                        "id": 12281,
                                        "name": "_buffer",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 12250,
                                        "src": "1264:7:52",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        }
                                      },
                                      "id": 12282,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "cardinality",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 12223,
                                      "src": "1264:19:52",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "expression": {
                                      "id": 12277,
                                      "name": "RingBufferLib",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12849,
                                      "src": "1221:13:52",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12849_$",
                                        "typeString": "type(library RingBufferLib)"
                                      }
                                    },
                                    "id": 12278,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "nextIndex",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12848,
                                    "src": "1221:23:52",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                      "typeString": "function (uint256,uint256) pure returns (uint256)"
                                    }
                                  },
                                  "id": 12283,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1221:63:52",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 12276,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1214:6:52",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 12275,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1214:6:52",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 12284,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1214:71:52",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 12285,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12250,
                                "src": "1316:7:52",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 12286,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "cardinality",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12223,
                              "src": "1316:19:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 12273,
                            "name": "Buffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12224,
                            "src": "1141:6:52",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_Buffer_$12224_storage_ptr_$",
                              "typeString": "type(struct DrawRingBufferLib.Buffer storage pointer)"
                            }
                          },
                          "id": 12287,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [
                            "lastDrawId",
                            "nextIndex",
                            "cardinality"
                          ],
                          "nodeType": "FunctionCall",
                          "src": "1141:209:52",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer memory"
                          }
                        },
                        "functionReturnParameters": 12257,
                        "id": 12288,
                        "nodeType": "Return",
                        "src": "1122:228:52"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12247,
                    "nodeType": "StructuredDocumentation",
                    "src": "755:159:52",
                    "text": "@notice Push a draw to the buffer.\n @param _buffer The buffer to push to.\n @param _drawId The drawID to push.\n @return The new buffer."
                  },
                  "id": 12290,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "push",
                  "nameLocation": "928:4:52",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12253,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12250,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "947:7:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 12290,
                        "src": "933:21:52",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 12249,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12248,
                            "name": "Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12224,
                            "src": "933:6:52"
                          },
                          "referencedDeclaration": 12224,
                          "src": "933:6:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12252,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "963:7:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 12290,
                        "src": "956:14:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12251,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "956:6:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "932:39:52"
                  },
                  "returnParameters": {
                    "id": 12257,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12256,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12290,
                        "src": "995:13:52",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 12255,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12254,
                            "name": "Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12224,
                            "src": "995:6:52"
                          },
                          "referencedDeclaration": 12224,
                          "src": "995:6:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "994:15:52"
                  },
                  "scope": 12354,
                  "src": "919:438:52",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12352,
                    "nodeType": "Block",
                    "src": "1675:429:52",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 12309,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 12303,
                                    "name": "_buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12294,
                                    "src": "1707:7:52",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                      "typeString": "struct DrawRingBufferLib.Buffer memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                      "typeString": "struct DrawRingBufferLib.Buffer memory"
                                    }
                                  ],
                                  "id": 12302,
                                  "name": "isInitialized",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12246,
                                  "src": "1693:13:52",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$returns$_t_bool_$",
                                    "typeString": "function (struct DrawRingBufferLib.Buffer memory) pure returns (bool)"
                                  }
                                },
                                "id": 12304,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1693:22:52",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 12308,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 12305,
                                  "name": "_drawId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12296,
                                  "src": "1719:7:52",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "id": 12306,
                                    "name": "_buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12294,
                                    "src": "1730:7:52",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                      "typeString": "struct DrawRingBufferLib.Buffer memory"
                                    }
                                  },
                                  "id": 12307,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "lastDrawId",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12219,
                                  "src": "1730:18:52",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "1719:29:52",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "1693:55:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4452422f6675747572652d64726177",
                              "id": 12310,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1750:17:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b",
                                "typeString": "literal_string \"DRB/future-draw\""
                              },
                              "value": "DRB/future-draw"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b",
                                "typeString": "literal_string \"DRB/future-draw\""
                              }
                            ],
                            "id": 12301,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1685:7:52",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12311,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1685:83:52",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12312,
                        "nodeType": "ExpressionStatement",
                        "src": "1685:83:52"
                      },
                      {
                        "assignments": [
                          12314
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12314,
                            "mutability": "mutable",
                            "name": "indexOffset",
                            "nameLocation": "1786:11:52",
                            "nodeType": "VariableDeclaration",
                            "scope": 12352,
                            "src": "1779:18:52",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 12313,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "1779:6:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12319,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 12318,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 12315,
                              "name": "_buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12294,
                              "src": "1800:7:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 12316,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lastDrawId",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12219,
                            "src": "1800:18:52",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 12317,
                            "name": "_drawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12296,
                            "src": "1821:7:52",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "1800:28:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1779:49:52"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 12324,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12321,
                                "name": "indexOffset",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12314,
                                "src": "1846:11:52",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<",
                              "rightExpression": {
                                "expression": {
                                  "id": 12322,
                                  "name": "_buffer",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12294,
                                  "src": "1860:7:52",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                    "typeString": "struct DrawRingBufferLib.Buffer memory"
                                  }
                                },
                                "id": 12323,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "cardinality",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12223,
                                "src": "1860:19:52",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "1846:33:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4452422f657870697265642d64726177",
                              "id": 12325,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1881:18:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103",
                                "typeString": "literal_string \"DRB/expired-draw\""
                              },
                              "value": "DRB/expired-draw"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103",
                                "typeString": "literal_string \"DRB/expired-draw\""
                              }
                            ],
                            "id": 12320,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1838:7:52",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12326,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1838:62:52",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12327,
                        "nodeType": "ExpressionStatement",
                        "src": "1838:62:52"
                      },
                      {
                        "assignments": [
                          12329
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12329,
                            "mutability": "mutable",
                            "name": "mostRecent",
                            "nameLocation": "1919:10:52",
                            "nodeType": "VariableDeclaration",
                            "scope": 12352,
                            "src": "1911:18:52",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12328,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1911:7:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12337,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 12332,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12294,
                                "src": "1958:7:52",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 12333,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "nextIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12221,
                              "src": "1958:17:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 12334,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12294,
                                "src": "1977:7:52",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 12335,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "cardinality",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12223,
                              "src": "1977:19:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 12330,
                              "name": "RingBufferLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12849,
                              "src": "1932:13:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12849_$",
                                "typeString": "type(library RingBufferLib)"
                              }
                            },
                            "id": 12331,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "newestIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12830,
                            "src": "1932:25:52",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 12336,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1932:65:52",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1911:86:52"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "arguments": [
                                    {
                                      "id": 12344,
                                      "name": "mostRecent",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12329,
                                      "src": "2050:10:52",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "id": 12343,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "2043:6:52",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint32_$",
                                      "typeString": "type(uint32)"
                                    },
                                    "typeName": {
                                      "id": 12342,
                                      "name": "uint32",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2043:6:52",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 12345,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2043:18:52",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                {
                                  "id": 12346,
                                  "name": "indexOffset",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12314,
                                  "src": "2063:11:52",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                {
                                  "expression": {
                                    "id": 12347,
                                    "name": "_buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12294,
                                    "src": "2076:7:52",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                      "typeString": "struct DrawRingBufferLib.Buffer memory"
                                    }
                                  },
                                  "id": 12348,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "cardinality",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12223,
                                  "src": "2076:19:52",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                ],
                                "expression": {
                                  "id": 12340,
                                  "name": "RingBufferLib",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12849,
                                  "src": "2022:13:52",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12849_$",
                                    "typeString": "type(library RingBufferLib)"
                                  }
                                },
                                "id": 12341,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "offset",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12803,
                                "src": "2022:20:52",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                  "typeString": "function (uint256,uint256,uint256) pure returns (uint256)"
                                }
                              },
                              "id": 12349,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2022:74:52",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12339,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2015:6:52",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 12338,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2015:6:52",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 12350,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2015:82:52",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 12300,
                        "id": 12351,
                        "nodeType": "Return",
                        "src": "2008:89:52"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12291,
                    "nodeType": "StructuredDocumentation",
                    "src": "1363:219:52",
                    "text": "@notice Get draw ring buffer index pointer.\n @param _buffer The buffer to get the `nextIndex` from.\n @param _drawId The draw id to get the index for.\n @return The draw ring buffer index pointer."
                  },
                  "id": 12353,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getIndex",
                  "nameLocation": "1596:8:52",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12297,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12294,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "1619:7:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 12353,
                        "src": "1605:21:52",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 12293,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12292,
                            "name": "Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12224,
                            "src": "1605:6:52"
                          },
                          "referencedDeclaration": 12224,
                          "src": "1605:6:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12296,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "1635:7:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 12353,
                        "src": "1628:14:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12295,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1628:6:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1604:39:52"
                  },
                  "returnParameters": {
                    "id": 12300,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12299,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12353,
                        "src": "1667:6:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12298,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1667:6:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1666:8:52"
                  },
                  "scope": 12354,
                  "src": "1587:517:52",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 12355,
              "src": "157:1949:52",
              "usedErrors": []
            }
          ],
          "src": "37:2070:52"
        },
        "id": 52
      },
      "contracts/libraries/ExtendedSafeCastLib.sol": {
        "ast": {
          "absolutePath": "contracts/libraries/ExtendedSafeCastLib.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12433
            ]
          },
          "id": 12434,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12356,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:53"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 12357,
                "nodeType": "StructuredDocumentation",
                "src": "61:709:53",
                "text": " @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\n checks.\n Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n easily result in undesired exploitation or bugs, since developers usually\n assume that overflows raise errors. `SafeCast` restores this intuition by\n reverting the transaction when such an operation overflows.\n Using this library instead of the unchecked operations eliminates an entire\n class of bugs, so it's recommended to use it always.\n Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\n all math on `uint256` and `int256` and then downcasting."
              },
              "fullyImplemented": true,
              "id": 12433,
              "linearizedBaseContracts": [
                12433
              ],
              "name": "ExtendedSafeCastLib",
              "nameLocation": "779:19:53",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 12381,
                    "nodeType": "Block",
                    "src": "1158:128:53",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12372,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12366,
                                "name": "_value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12360,
                                "src": "1176:6:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 12369,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "1191:7:53",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint104_$",
                                        "typeString": "type(uint104)"
                                      },
                                      "typeName": {
                                        "id": 12368,
                                        "name": "uint104",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "1191:7:53",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint104_$",
                                        "typeString": "type(uint104)"
                                      }
                                    ],
                                    "id": 12367,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1186:4:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 12370,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1186:13:53",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint104",
                                    "typeString": "type(uint104)"
                                  }
                                },
                                "id": 12371,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "1186:17:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint104",
                                  "typeString": "uint104"
                                }
                              },
                              "src": "1176:27:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203130342062697473",
                              "id": 12373,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1205:41:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_5d7f3e1b7e9f9a06fded6b093c6fd1473ca0a14cc4bb683db904e803e2482981",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 104 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 104 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_5d7f3e1b7e9f9a06fded6b093c6fd1473ca0a14cc4bb683db904e803e2482981",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 104 bits\""
                              }
                            ],
                            "id": 12365,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1168:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12374,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1168:79:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12375,
                        "nodeType": "ExpressionStatement",
                        "src": "1168:79:53"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12378,
                              "name": "_value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12360,
                              "src": "1272:6:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12377,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1264:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint104_$",
                              "typeString": "type(uint104)"
                            },
                            "typeName": {
                              "id": 12376,
                              "name": "uint104",
                              "nodeType": "ElementaryTypeName",
                              "src": "1264:7:53",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 12379,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1264:15:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint104",
                            "typeString": "uint104"
                          }
                        },
                        "functionReturnParameters": 12364,
                        "id": 12380,
                        "nodeType": "Return",
                        "src": "1257:22:53"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12358,
                    "nodeType": "StructuredDocumentation",
                    "src": "806:280:53",
                    "text": " @dev Returns the downcasted uint104 from uint256, reverting on\n overflow (when the input is greater than largest uint104).\n Counterpart to Solidity's `uint104` operator.\n Requirements:\n - input must fit into 104 bits"
                  },
                  "id": 12382,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint104",
                  "nameLocation": "1100:9:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12361,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12360,
                        "mutability": "mutable",
                        "name": "_value",
                        "nameLocation": "1118:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12382,
                        "src": "1110:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12359,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1110:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1109:16:53"
                  },
                  "returnParameters": {
                    "id": 12364,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12363,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12382,
                        "src": "1149:7:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint104",
                          "typeString": "uint104"
                        },
                        "typeName": {
                          "id": 12362,
                          "name": "uint104",
                          "nodeType": "ElementaryTypeName",
                          "src": "1149:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint104",
                            "typeString": "uint104"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1148:9:53"
                  },
                  "scope": 12433,
                  "src": "1091:195:53",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12406,
                    "nodeType": "Block",
                    "src": "1644:128:53",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12397,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12391,
                                "name": "_value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12385,
                                "src": "1662:6:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 12394,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "1677:7:53",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint208_$",
                                        "typeString": "type(uint208)"
                                      },
                                      "typeName": {
                                        "id": 12393,
                                        "name": "uint208",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "1677:7:53",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint208_$",
                                        "typeString": "type(uint208)"
                                      }
                                    ],
                                    "id": 12392,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1672:4:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 12395,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1672:13:53",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint208",
                                    "typeString": "type(uint208)"
                                  }
                                },
                                "id": 12396,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "1672:17:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "src": "1662:27:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203230382062697473",
                              "id": 12398,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1691:41:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 208 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 208 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 208 bits\""
                              }
                            ],
                            "id": 12390,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1654:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12399,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1654:79:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12400,
                        "nodeType": "ExpressionStatement",
                        "src": "1654:79:53"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12403,
                              "name": "_value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12385,
                              "src": "1758:6:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12402,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1750:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint208_$",
                              "typeString": "type(uint208)"
                            },
                            "typeName": {
                              "id": 12401,
                              "name": "uint208",
                              "nodeType": "ElementaryTypeName",
                              "src": "1750:7:53",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 12404,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1750:15:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "functionReturnParameters": 12389,
                        "id": 12405,
                        "nodeType": "Return",
                        "src": "1743:22:53"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12383,
                    "nodeType": "StructuredDocumentation",
                    "src": "1292:280:53",
                    "text": " @dev Returns the downcasted uint208 from uint256, reverting on\n overflow (when the input is greater than largest uint208).\n Counterpart to Solidity's `uint208` operator.\n Requirements:\n - input must fit into 208 bits"
                  },
                  "id": 12407,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint208",
                  "nameLocation": "1586:9:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12386,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12385,
                        "mutability": "mutable",
                        "name": "_value",
                        "nameLocation": "1604:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12407,
                        "src": "1596:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12384,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1596:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1595:16:53"
                  },
                  "returnParameters": {
                    "id": 12389,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12388,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12407,
                        "src": "1635:7:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint208",
                          "typeString": "uint208"
                        },
                        "typeName": {
                          "id": 12387,
                          "name": "uint208",
                          "nodeType": "ElementaryTypeName",
                          "src": "1635:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1634:9:53"
                  },
                  "scope": 12433,
                  "src": "1577:195:53",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12431,
                    "nodeType": "Block",
                    "src": "2130:128:53",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12422,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12416,
                                "name": "_value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12410,
                                "src": "2148:6:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 12419,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "2163:7:53",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint224_$",
                                        "typeString": "type(uint224)"
                                      },
                                      "typeName": {
                                        "id": 12418,
                                        "name": "uint224",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "2163:7:53",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint224_$",
                                        "typeString": "type(uint224)"
                                      }
                                    ],
                                    "id": 12417,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "2158:4:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 12420,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2158:13:53",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint224",
                                    "typeString": "type(uint224)"
                                  }
                                },
                                "id": 12421,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "2158:17:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "src": "2148:27:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203232342062697473",
                              "id": 12423,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2177:41:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 224 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 224 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 224 bits\""
                              }
                            ],
                            "id": 12415,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2140:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12424,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2140:79:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12425,
                        "nodeType": "ExpressionStatement",
                        "src": "2140:79:53"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12428,
                              "name": "_value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12410,
                              "src": "2244:6:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12427,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2236:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint224_$",
                              "typeString": "type(uint224)"
                            },
                            "typeName": {
                              "id": 12426,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "2236:7:53",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 12429,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2236:15:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 12414,
                        "id": 12430,
                        "nodeType": "Return",
                        "src": "2229:22:53"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12408,
                    "nodeType": "StructuredDocumentation",
                    "src": "1778:280:53",
                    "text": " @dev Returns the downcasted uint224 from uint256, reverting on\n overflow (when the input is greater than largest uint224).\n Counterpart to Solidity's `uint224` operator.\n Requirements:\n - input must fit into 224 bits"
                  },
                  "id": 12432,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint224",
                  "nameLocation": "2072:9:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12411,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12410,
                        "mutability": "mutable",
                        "name": "_value",
                        "nameLocation": "2090:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12432,
                        "src": "2082:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12409,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2082:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2081:16:53"
                  },
                  "returnParameters": {
                    "id": 12414,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12413,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12432,
                        "src": "2121:7:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 12412,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "2121:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2120:9:53"
                  },
                  "scope": 12433,
                  "src": "2063:195:53",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 12434,
              "src": "771:1489:53",
              "usedErrors": []
            }
          ],
          "src": "37:2224:53"
        },
        "id": 53
      },
      "contracts/libraries/ObservationLib.sol": {
        "ast": {
          "absolutePath": "contracts/libraries/ObservationLib.sol",
          "exportedSymbols": {
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ]
          },
          "id": 12593,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12435,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:54"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "file": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "id": 12436,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12593,
              "sourceUnit": 3827,
              "src": "61:57:54",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/libraries/OverflowSafeComparatorLib.sol",
              "file": "./OverflowSafeComparatorLib.sol",
              "id": 12437,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12593,
              "sourceUnit": 12765,
              "src": "120:41:54",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/libraries/RingBufferLib.sol",
              "file": "./RingBufferLib.sol",
              "id": 12438,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12593,
              "sourceUnit": 12850,
              "src": "162:29:54",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 12439,
                "nodeType": "StructuredDocumentation",
                "src": "193:335:54",
                "text": " @title Observation Library\n @notice This library allows one to store an array of timestamped values and efficiently binary search them.\n @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\n @author PoolTogether Inc."
              },
              "fullyImplemented": true,
              "id": 12592,
              "linearizedBaseContracts": [
                12592
              ],
              "name": "ObservationLib",
              "nameLocation": "537:14:54",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 12442,
                  "libraryName": {
                    "id": 12440,
                    "name": "OverflowSafeComparatorLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12764,
                    "src": "564:25:54"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "558:43:54",
                  "typeName": {
                    "id": 12441,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "594:6:54",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  }
                },
                {
                  "id": 12445,
                  "libraryName": {
                    "id": 12443,
                    "name": "SafeCast",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3826,
                    "src": "612:8:54"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "606:27:54",
                  "typeName": {
                    "id": 12444,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "625:7:54",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 12446,
                    "nodeType": "StructuredDocumentation",
                    "src": "639:46:54",
                    "text": "@notice The maximum number of observations"
                  },
                  "functionSelector": "8200d873",
                  "id": 12449,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "713:15:54",
                  "nodeType": "VariableDeclaration",
                  "scope": 12592,
                  "src": "690:49:54",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 12447,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "690:6:54",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "value": {
                    "hexValue": "3136373737323135",
                    "id": 12448,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "731:8:54",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_16777215_by_1",
                      "typeString": "int_const 16777215"
                    },
                    "value": "16777215"
                  },
                  "visibility": "public"
                },
                {
                  "canonicalName": "ObservationLib.Observation",
                  "id": 12454,
                  "members": [
                    {
                      "constant": false,
                      "id": 12451,
                      "mutability": "mutable",
                      "name": "amount",
                      "nameLocation": "964:6:54",
                      "nodeType": "VariableDeclaration",
                      "scope": 12454,
                      "src": "956:14:54",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      },
                      "typeName": {
                        "id": 12450,
                        "name": "uint224",
                        "nodeType": "ElementaryTypeName",
                        "src": "956:7:54",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 12453,
                      "mutability": "mutable",
                      "name": "timestamp",
                      "nameLocation": "987:9:54",
                      "nodeType": "VariableDeclaration",
                      "scope": 12454,
                      "src": "980:16:54",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 12452,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "980:6:54",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Observation",
                  "nameLocation": "934:11:54",
                  "nodeType": "StructDefinition",
                  "scope": 12592,
                  "src": "927:76:54",
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 12590,
                    "nodeType": "Block",
                    "src": "2709:1679:54",
                    "statements": [
                      {
                        "assignments": [
                          12480
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12480,
                            "mutability": "mutable",
                            "name": "leftSide",
                            "nameLocation": "2727:8:54",
                            "nodeType": "VariableDeclaration",
                            "scope": 12590,
                            "src": "2719:16:54",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12479,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2719:7:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12482,
                        "initialValue": {
                          "id": 12481,
                          "name": "_oldestObservationIndex",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12464,
                          "src": "2738:23:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2719:42:54"
                      },
                      {
                        "assignments": [
                          12484
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12484,
                            "mutability": "mutable",
                            "name": "rightSide",
                            "nameLocation": "2779:9:54",
                            "nodeType": "VariableDeclaration",
                            "scope": 12590,
                            "src": "2771:17:54",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12483,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2771:7:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12495,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 12487,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12485,
                              "name": "_newestObservationIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12462,
                              "src": "2791:23:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<",
                            "rightExpression": {
                              "id": 12486,
                              "name": "leftSide",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12480,
                              "src": "2817:8:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "src": "2791:34:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "id": 12493,
                            "name": "_newestObservationIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12462,
                            "src": "2882:23:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "id": 12494,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "2791:114:54",
                          "trueExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 12492,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12490,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12488,
                                "name": "leftSide",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12480,
                                "src": "2840:8:54",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "id": 12489,
                                "name": "_cardinality",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12468,
                                "src": "2851:12:54",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              "src": "2840:23:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "hexValue": "31",
                              "id": 12491,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2866:1:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "src": "2840:27:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2771:134:54"
                      },
                      {
                        "assignments": [
                          12497
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12497,
                            "mutability": "mutable",
                            "name": "currentIndex",
                            "nameLocation": "2923:12:54",
                            "nodeType": "VariableDeclaration",
                            "scope": 12590,
                            "src": "2915:20:54",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12496,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2915:7:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12498,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2915:20:54"
                      },
                      {
                        "body": {
                          "id": 12588,
                          "nodeType": "Block",
                          "src": "2959:1423:54",
                          "statements": [
                            {
                              "expression": {
                                "id": 12507,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 12500,
                                  "name": "currentIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12497,
                                  "src": "3197:12:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 12506,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "components": [
                                      {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 12503,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 12501,
                                          "name": "leftSide",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 12480,
                                          "src": "3213:8:54",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "+",
                                        "rightExpression": {
                                          "id": 12502,
                                          "name": "rightSide",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 12484,
                                          "src": "3224:9:54",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "3213:20:54",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      }
                                    ],
                                    "id": 12504,
                                    "isConstant": false,
                                    "isInlineArray": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "TupleExpression",
                                    "src": "3212:22:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "/",
                                  "rightExpression": {
                                    "hexValue": "32",
                                    "id": 12505,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3237:1:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_2_by_1",
                                      "typeString": "int_const 2"
                                    },
                                    "value": "2"
                                  },
                                  "src": "3212:26:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "3197:41:54",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 12508,
                              "nodeType": "ExpressionStatement",
                              "src": "3197:41:54"
                            },
                            {
                              "expression": {
                                "id": 12520,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 12509,
                                  "name": "beforeOrAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12474,
                                  "src": "3253:10:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 12510,
                                    "name": "_observations",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12460,
                                    "src": "3266:13:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                      "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                    }
                                  },
                                  "id": 12519,
                                  "indexExpression": {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "id": 12515,
                                            "name": "currentIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12497,
                                            "src": "3306:12:54",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          {
                                            "id": 12516,
                                            "name": "_cardinality",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12468,
                                            "src": "3320:12:54",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint24",
                                              "typeString": "uint24"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            },
                                            {
                                              "typeIdentifier": "t_uint24",
                                              "typeString": "uint24"
                                            }
                                          ],
                                          "expression": {
                                            "id": 12513,
                                            "name": "RingBufferLib",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12849,
                                            "src": "3287:13:54",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12849_$",
                                              "typeString": "type(library RingBufferLib)"
                                            }
                                          },
                                          "id": 12514,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "wrap",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 12781,
                                          "src": "3287:18:54",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                            "typeString": "function (uint256,uint256) pure returns (uint256)"
                                          }
                                        },
                                        "id": 12517,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "3287:46:54",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      ],
                                      "id": 12512,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "3280:6:54",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint24_$",
                                        "typeString": "type(uint24)"
                                      },
                                      "typeName": {
                                        "id": 12511,
                                        "name": "uint24",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "3280:6:54",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 12518,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "3280:54:54",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "3266:69:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_storage",
                                    "typeString": "struct ObservationLib.Observation storage ref"
                                  }
                                },
                                "src": "3253:82:54",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 12521,
                              "nodeType": "ExpressionStatement",
                              "src": "3253:82:54"
                            },
                            {
                              "assignments": [
                                12523
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 12523,
                                  "mutability": "mutable",
                                  "name": "beforeOrAtTimestamp",
                                  "nameLocation": "3356:19:54",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 12588,
                                  "src": "3349:26:54",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "typeName": {
                                    "id": 12522,
                                    "name": "uint32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3349:6:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 12526,
                              "initialValue": {
                                "expression": {
                                  "id": 12524,
                                  "name": "beforeOrAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12474,
                                  "src": "3378:10:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 12525,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12453,
                                "src": "3378:20:54",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "3349:49:54"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 12529,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 12527,
                                  "name": "beforeOrAtTimestamp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12523,
                                  "src": "3515:19:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 12528,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "3538:1:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "3515:24:54",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 12538,
                              "nodeType": "IfStatement",
                              "src": "3511:116:54",
                              "trueBody": {
                                "id": 12537,
                                "nodeType": "Block",
                                "src": "3541:86:54",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 12534,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 12530,
                                        "name": "leftSide",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 12480,
                                        "src": "3559:8:54",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 12533,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 12531,
                                          "name": "currentIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 12497,
                                          "src": "3570:12:54",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "+",
                                        "rightExpression": {
                                          "hexValue": "31",
                                          "id": 12532,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "3585:1:54",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_rational_1_by_1",
                                            "typeString": "int_const 1"
                                          },
                                          "value": "1"
                                        },
                                        "src": "3570:16:54",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "3559:27:54",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 12535,
                                    "nodeType": "ExpressionStatement",
                                    "src": "3559:27:54"
                                  },
                                  {
                                    "id": 12536,
                                    "nodeType": "Continue",
                                    "src": "3604:8:54"
                                  }
                                ]
                              }
                            },
                            {
                              "expression": {
                                "id": 12550,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 12539,
                                  "name": "atOrAfter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12477,
                                  "src": "3641:9:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 12540,
                                    "name": "_observations",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12460,
                                    "src": "3653:13:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                      "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                    }
                                  },
                                  "id": 12549,
                                  "indexExpression": {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "id": 12545,
                                            "name": "currentIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12497,
                                            "src": "3698:12:54",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          {
                                            "id": 12546,
                                            "name": "_cardinality",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12468,
                                            "src": "3712:12:54",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint24",
                                              "typeString": "uint24"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            },
                                            {
                                              "typeIdentifier": "t_uint24",
                                              "typeString": "uint24"
                                            }
                                          ],
                                          "expression": {
                                            "id": 12543,
                                            "name": "RingBufferLib",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12849,
                                            "src": "3674:13:54",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12849_$",
                                              "typeString": "type(library RingBufferLib)"
                                            }
                                          },
                                          "id": 12544,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "nextIndex",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 12848,
                                          "src": "3674:23:54",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                            "typeString": "function (uint256,uint256) pure returns (uint256)"
                                          }
                                        },
                                        "id": 12547,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "3674:51:54",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      ],
                                      "id": 12542,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "3667:6:54",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint24_$",
                                        "typeString": "type(uint24)"
                                      },
                                      "typeName": {
                                        "id": 12541,
                                        "name": "uint24",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "3667:6:54",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 12548,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "3667:59:54",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "3653:74:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_storage",
                                    "typeString": "struct ObservationLib.Observation storage ref"
                                  }
                                },
                                "src": "3641:86:54",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 12551,
                              "nodeType": "ExpressionStatement",
                              "src": "3641:86:54"
                            },
                            {
                              "assignments": [
                                12553
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 12553,
                                  "mutability": "mutable",
                                  "name": "targetAtOrAfter",
                                  "nameLocation": "3747:15:54",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 12588,
                                  "src": "3742:20:54",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  },
                                  "typeName": {
                                    "id": 12552,
                                    "name": "bool",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3742:4:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 12559,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "id": 12556,
                                    "name": "_target",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12466,
                                    "src": "3789:7:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  {
                                    "id": 12557,
                                    "name": "_time",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12470,
                                    "src": "3798:5:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  ],
                                  "expression": {
                                    "id": 12554,
                                    "name": "beforeOrAtTimestamp",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12523,
                                    "src": "3765:19:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "id": 12555,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "lte",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12705,
                                  "src": "3765:23:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_bool_$bound_to$_t_uint32_$",
                                    "typeString": "function (uint32,uint32,uint32) pure returns (bool)"
                                  }
                                },
                                "id": 12558,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3765:39:54",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "3742:62:54"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "id": 12567,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 12560,
                                  "name": "targetAtOrAfter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12553,
                                  "src": "3890:15:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "&&",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 12563,
                                        "name": "atOrAfter",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 12477,
                                        "src": "3921:9:54",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                          "typeString": "struct ObservationLib.Observation memory"
                                        }
                                      },
                                      "id": 12564,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "timestamp",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 12453,
                                      "src": "3921:19:54",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "id": 12565,
                                      "name": "_time",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12470,
                                      "src": "3942:5:54",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "expression": {
                                      "id": 12561,
                                      "name": "_target",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12466,
                                      "src": "3909:7:54",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "id": 12562,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "lte",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12705,
                                    "src": "3909:11:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_bool_$bound_to$_t_uint32_$",
                                      "typeString": "function (uint32,uint32,uint32) pure returns (bool)"
                                    }
                                  },
                                  "id": 12566,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3909:39:54",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "src": "3890:58:54",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 12570,
                              "nodeType": "IfStatement",
                              "src": "3886:102:54",
                              "trueBody": {
                                "id": 12569,
                                "nodeType": "Block",
                                "src": "3950:38:54",
                                "statements": [
                                  {
                                    "id": 12568,
                                    "nodeType": "Break",
                                    "src": "3968:5:54"
                                  }
                                ]
                              }
                            },
                            {
                              "condition": {
                                "id": 12572,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "!",
                                "prefix": true,
                                "src": "4137:16:54",
                                "subExpression": {
                                  "id": 12571,
                                  "name": "targetAtOrAfter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12553,
                                  "src": "4138:15:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 12586,
                                "nodeType": "Block",
                                "src": "4222:150:54",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 12584,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 12580,
                                        "name": "leftSide",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 12480,
                                        "src": "4330:8:54",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 12583,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 12581,
                                          "name": "currentIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 12497,
                                          "src": "4341:12:54",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "+",
                                        "rightExpression": {
                                          "hexValue": "31",
                                          "id": 12582,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "4356:1:54",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_rational_1_by_1",
                                            "typeString": "int_const 1"
                                          },
                                          "value": "1"
                                        },
                                        "src": "4341:16:54",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "4330:27:54",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 12585,
                                    "nodeType": "ExpressionStatement",
                                    "src": "4330:27:54"
                                  }
                                ]
                              },
                              "id": 12587,
                              "nodeType": "IfStatement",
                              "src": "4133:239:54",
                              "trueBody": {
                                "id": 12579,
                                "nodeType": "Block",
                                "src": "4155:61:54",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 12577,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 12573,
                                        "name": "rightSide",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 12484,
                                        "src": "4173:9:54",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 12576,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 12574,
                                          "name": "currentIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 12497,
                                          "src": "4185:12:54",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "-",
                                        "rightExpression": {
                                          "hexValue": "31",
                                          "id": 12575,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "4200:1:54",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_rational_1_by_1",
                                            "typeString": "int_const 1"
                                          },
                                          "value": "1"
                                        },
                                        "src": "4185:16:54",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "4173:28:54",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 12578,
                                    "nodeType": "ExpressionStatement",
                                    "src": "4173:28:54"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "hexValue": "74727565",
                          "id": 12499,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "2953:4:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "id": 12589,
                        "nodeType": "WhileStatement",
                        "src": "2946:1436:54"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12455,
                    "nodeType": "StructuredDocumentation",
                    "src": "1009:1368:54",
                    "text": " @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\n The result may be the same Observation, or adjacent Observations.\n @dev The answer must be contained in the array used when the target is located within the stored Observation.\n boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\n @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\n       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\n @param _observations List of Observations to search through.\n @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\n @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\n @param _target Timestamp at which we are searching the Observation.\n @param _cardinality Cardinality of the circular buffer we are searching through.\n @param _time Timestamp at which we perform the binary search.\n @return beforeOrAt Observation recorded before, or at, the target.\n @return atOrAfter Observation recorded at, or after, the target."
                  },
                  "id": 12591,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "binarySearch",
                  "nameLocation": "2391:12:54",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12471,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12460,
                        "mutability": "mutable",
                        "name": "_observations",
                        "nameLocation": "2450:13:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 12591,
                        "src": "2413:50:54",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12457,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 12456,
                              "name": "Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12454,
                              "src": "2413:11:54"
                            },
                            "referencedDeclaration": 12454,
                            "src": "2413:11:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 12459,
                          "length": {
                            "id": 12458,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12449,
                            "src": "2425:15:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "2413:28:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12462,
                        "mutability": "mutable",
                        "name": "_newestObservationIndex",
                        "nameLocation": "2480:23:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 12591,
                        "src": "2473:30:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 12461,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "2473:6:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12464,
                        "mutability": "mutable",
                        "name": "_oldestObservationIndex",
                        "nameLocation": "2520:23:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 12591,
                        "src": "2513:30:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 12463,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "2513:6:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12466,
                        "mutability": "mutable",
                        "name": "_target",
                        "nameLocation": "2560:7:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 12591,
                        "src": "2553:14:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12465,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2553:6:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12468,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "2584:12:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 12591,
                        "src": "2577:19:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 12467,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "2577:6:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12470,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "2613:5:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 12591,
                        "src": "2606:12:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12469,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2606:6:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2403:221:54"
                  },
                  "returnParameters": {
                    "id": 12478,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12474,
                        "mutability": "mutable",
                        "name": "beforeOrAt",
                        "nameLocation": "2667:10:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 12591,
                        "src": "2648:29:54",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12473,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12472,
                            "name": "Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "2648:11:54"
                          },
                          "referencedDeclaration": 12454,
                          "src": "2648:11:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12477,
                        "mutability": "mutable",
                        "name": "atOrAfter",
                        "nameLocation": "2698:9:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 12591,
                        "src": "2679:28:54",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12476,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12475,
                            "name": "Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "2679:11:54"
                          },
                          "referencedDeclaration": 12454,
                          "src": "2679:11:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2647:61:54"
                  },
                  "scope": 12592,
                  "src": "2382:2006:54",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 12593,
              "src": "529:3861:54",
              "usedErrors": []
            }
          ],
          "src": "37:4354:54"
        },
        "id": 54
      },
      "contracts/libraries/OverflowSafeComparatorLib.sol": {
        "ast": {
          "absolutePath": "contracts/libraries/OverflowSafeComparatorLib.sol",
          "exportedSymbols": {
            "OverflowSafeComparatorLib": [
              12764
            ]
          },
          "id": 12765,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12594,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:55"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 12595,
                "nodeType": "StructuredDocumentation",
                "src": "61:283:55",
                "text": "@title OverflowSafeComparatorLib library to share comparator functions between contracts\n @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\n @author PoolTogether Inc."
              },
              "fullyImplemented": true,
              "id": 12764,
              "linearizedBaseContracts": [
                12764
              ],
              "name": "OverflowSafeComparatorLib",
              "nameLocation": "352:25:55",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 12649,
                    "nodeType": "Block",
                    "src": "923:301:55",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 12613,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12609,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12607,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12598,
                              "src": "999:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 12608,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12602,
                              "src": "1005:10:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "999:16:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12612,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12610,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12600,
                              "src": "1019:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 12611,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12602,
                              "src": "1025:10:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1019:16:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "999:36:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12618,
                        "nodeType": "IfStatement",
                        "src": "995:56:55",
                        "trueBody": {
                          "expression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12616,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12614,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12598,
                              "src": "1044:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<",
                            "rightExpression": {
                              "id": 12615,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12600,
                              "src": "1049:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1044:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "functionReturnParameters": 12606,
                          "id": 12617,
                          "nodeType": "Return",
                          "src": "1037:14:55"
                        }
                      },
                      {
                        "assignments": [
                          12620
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12620,
                            "mutability": "mutable",
                            "name": "aAdjusted",
                            "nameLocation": "1070:9:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 12649,
                            "src": "1062:17:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12619,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1062:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12631,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12623,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12621,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12598,
                              "src": "1082:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 12622,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12602,
                              "src": "1087:10:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1082:15:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 12629,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12625,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12598,
                              "src": "1105:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 12628,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 12626,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1110:1:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 12627,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1113:2:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "1110:5:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "1105:10:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 12630,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "1082:33:55",
                          "trueExpression": {
                            "id": 12624,
                            "name": "_a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12598,
                            "src": "1100:2:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1062:53:55"
                      },
                      {
                        "assignments": [
                          12633
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12633,
                            "mutability": "mutable",
                            "name": "bAdjusted",
                            "nameLocation": "1133:9:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 12649,
                            "src": "1125:17:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12632,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1125:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12644,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12636,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12634,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12600,
                              "src": "1145:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 12635,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12602,
                              "src": "1150:10:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1145:15:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 12642,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12638,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12600,
                              "src": "1168:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 12641,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 12639,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1173:1:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 12640,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1176:2:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "1173:5:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "1168:10:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 12643,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "1145:33:55",
                          "trueExpression": {
                            "id": 12637,
                            "name": "_b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12600,
                            "src": "1163:2:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1125:53:55"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 12647,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 12645,
                            "name": "aAdjusted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12620,
                            "src": "1196:9:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 12646,
                            "name": "bAdjusted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12633,
                            "src": "1208:9:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1196:21:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 12606,
                        "id": 12648,
                        "nodeType": "Return",
                        "src": "1189:28:55"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12596,
                    "nodeType": "StructuredDocumentation",
                    "src": "384:422:55",
                    "text": "@notice 32-bit timestamps comparator.\n @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\n @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\n @param _b Timestamp to compare against `_a`.\n @param _timestamp A timestamp truncated to 32 bits.\n @return bool Whether `_a` is chronologically < `_b`."
                  },
                  "id": 12650,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "lt",
                  "nameLocation": "820:2:55",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12603,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12598,
                        "mutability": "mutable",
                        "name": "_a",
                        "nameLocation": "839:2:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 12650,
                        "src": "832:9:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12597,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "832:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12600,
                        "mutability": "mutable",
                        "name": "_b",
                        "nameLocation": "858:2:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 12650,
                        "src": "851:9:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12599,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "851:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12602,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "877:10:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 12650,
                        "src": "870:17:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12601,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "870:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "822:71:55"
                  },
                  "returnParameters": {
                    "id": 12606,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12605,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12650,
                        "src": "917:4:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 12604,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "917:4:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "916:6:55"
                  },
                  "scope": 12764,
                  "src": "811:413:55",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12704,
                    "nodeType": "Block",
                    "src": "1771:304:55",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 12668,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12664,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12662,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12653,
                              "src": "1848:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 12663,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12657,
                              "src": "1854:10:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1848:16:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12667,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12665,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12655,
                              "src": "1868:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 12666,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12657,
                              "src": "1874:10:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1868:16:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "1848:36:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12673,
                        "nodeType": "IfStatement",
                        "src": "1844:57:55",
                        "trueBody": {
                          "expression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12671,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12669,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12653,
                              "src": "1893:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 12670,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12655,
                              "src": "1899:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1893:8:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "functionReturnParameters": 12661,
                          "id": 12672,
                          "nodeType": "Return",
                          "src": "1886:15:55"
                        }
                      },
                      {
                        "assignments": [
                          12675
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12675,
                            "mutability": "mutable",
                            "name": "aAdjusted",
                            "nameLocation": "1920:9:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 12704,
                            "src": "1912:17:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12674,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1912:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12686,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12678,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12676,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12653,
                              "src": "1932:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 12677,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12657,
                              "src": "1937:10:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1932:15:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 12684,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12680,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12653,
                              "src": "1955:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 12683,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 12681,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1960:1:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 12682,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1963:2:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "1960:5:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "1955:10:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 12685,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "1932:33:55",
                          "trueExpression": {
                            "id": 12679,
                            "name": "_a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12653,
                            "src": "1950:2:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1912:53:55"
                      },
                      {
                        "assignments": [
                          12688
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12688,
                            "mutability": "mutable",
                            "name": "bAdjusted",
                            "nameLocation": "1983:9:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 12704,
                            "src": "1975:17:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12687,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1975:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12699,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12691,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12689,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12655,
                              "src": "1995:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 12690,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12657,
                              "src": "2000:10:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1995:15:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 12697,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12693,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12655,
                              "src": "2018:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 12696,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 12694,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2023:1:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 12695,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2026:2:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "2023:5:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "2018:10:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 12698,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "1995:33:55",
                          "trueExpression": {
                            "id": 12692,
                            "name": "_b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12655,
                            "src": "2013:2:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1975:53:55"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 12702,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 12700,
                            "name": "aAdjusted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12675,
                            "src": "2046:9:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 12701,
                            "name": "bAdjusted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12688,
                            "src": "2059:9:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2046:22:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 12661,
                        "id": 12703,
                        "nodeType": "Return",
                        "src": "2039:29:55"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12651,
                    "nodeType": "StructuredDocumentation",
                    "src": "1230:423:55",
                    "text": "@notice 32-bit timestamps comparator.\n @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\n @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\n @param _b Timestamp to compare against `_a`.\n @param _timestamp A timestamp truncated to 32 bits.\n @return bool Whether `_a` is chronologically <= `_b`."
                  },
                  "id": 12705,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "lte",
                  "nameLocation": "1667:3:55",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12658,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12653,
                        "mutability": "mutable",
                        "name": "_a",
                        "nameLocation": "1687:2:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 12705,
                        "src": "1680:9:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12652,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1680:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12655,
                        "mutability": "mutable",
                        "name": "_b",
                        "nameLocation": "1706:2:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 12705,
                        "src": "1699:9:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12654,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1699:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12657,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "1725:10:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 12705,
                        "src": "1718:17:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12656,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1718:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1670:71:55"
                  },
                  "returnParameters": {
                    "id": 12661,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12660,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12705,
                        "src": "1765:4:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 12659,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1765:4:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1764:6:55"
                  },
                  "scope": 12764,
                  "src": "1658:417:55",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12762,
                    "nodeType": "Block",
                    "src": "2608:310:55",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 12723,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12719,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12717,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12708,
                              "src": "2685:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 12718,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12712,
                              "src": "2691:10:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "2685:16:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12722,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12720,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12710,
                              "src": "2705:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 12721,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12712,
                              "src": "2711:10:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "2705:16:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "2685:36:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12728,
                        "nodeType": "IfStatement",
                        "src": "2681:56:55",
                        "trueBody": {
                          "expression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12726,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12724,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12708,
                              "src": "2730:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "id": 12725,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12710,
                              "src": "2735:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "2730:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "functionReturnParameters": 12716,
                          "id": 12727,
                          "nodeType": "Return",
                          "src": "2723:14:55"
                        }
                      },
                      {
                        "assignments": [
                          12730
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12730,
                            "mutability": "mutable",
                            "name": "aAdjusted",
                            "nameLocation": "2756:9:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 12762,
                            "src": "2748:17:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12729,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2748:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12741,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12733,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12731,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12708,
                              "src": "2768:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 12732,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12712,
                              "src": "2773:10:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "2768:15:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 12739,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12735,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12708,
                              "src": "2791:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 12738,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 12736,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2796:1:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 12737,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2799:2:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "2796:5:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "2791:10:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 12740,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "2768:33:55",
                          "trueExpression": {
                            "id": 12734,
                            "name": "_a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12708,
                            "src": "2786:2:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2748:53:55"
                      },
                      {
                        "assignments": [
                          12743
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12743,
                            "mutability": "mutable",
                            "name": "bAdjusted",
                            "nameLocation": "2819:9:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 12762,
                            "src": "2811:17:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12742,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2811:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12754,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12746,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12744,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12710,
                              "src": "2831:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 12745,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12712,
                              "src": "2836:10:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "2831:15:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 12752,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12748,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12710,
                              "src": "2854:2:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 12751,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 12749,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2859:1:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 12750,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2862:2:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "2859:5:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "2854:10:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 12753,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "2831:33:55",
                          "trueExpression": {
                            "id": 12747,
                            "name": "_b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12710,
                            "src": "2849:2:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2811:53:55"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12759,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12757,
                                "name": "aAdjusted",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12730,
                                "src": "2889:9:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "id": 12758,
                                "name": "bAdjusted",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12743,
                                "src": "2901:9:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2889:21:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12756,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2882:6:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 12755,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2882:6:55",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 12760,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2882:29:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 12716,
                        "id": 12761,
                        "nodeType": "Return",
                        "src": "2875:36:55"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12706,
                    "nodeType": "StructuredDocumentation",
                    "src": "2081:400:55",
                    "text": "@notice 32-bit timestamp subtractor\n @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\n @param _a The subtraction left operand\n @param _b The subtraction right operand\n @param _timestamp The current time.  Expected to be chronologically after both.\n @return The difference between a and b, adjusted for overflow"
                  },
                  "id": 12763,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "checkedSub",
                  "nameLocation": "2495:10:55",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12713,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12708,
                        "mutability": "mutable",
                        "name": "_a",
                        "nameLocation": "2522:2:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 12763,
                        "src": "2515:9:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12707,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2515:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12710,
                        "mutability": "mutable",
                        "name": "_b",
                        "nameLocation": "2541:2:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 12763,
                        "src": "2534:9:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12709,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2534:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12712,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "2560:10:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 12763,
                        "src": "2553:17:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12711,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2553:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2505:71:55"
                  },
                  "returnParameters": {
                    "id": 12716,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12715,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12763,
                        "src": "2600:6:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12714,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2600:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2599:8:55"
                  },
                  "scope": 12764,
                  "src": "2486:432:55",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 12765,
              "src": "344:2576:55",
              "usedErrors": []
            }
          ],
          "src": "37:2884:55"
        },
        "id": 55
      },
      "contracts/libraries/RingBufferLib.sol": {
        "ast": {
          "absolutePath": "contracts/libraries/RingBufferLib.sol",
          "exportedSymbols": {
            "RingBufferLib": [
              12849
            ]
          },
          "id": 12850,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12766,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:56"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "fullyImplemented": true,
              "id": 12849,
              "linearizedBaseContracts": [
                12849
              ],
              "name": "RingBufferLib",
              "nameLocation": "69:13:56",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 12780,
                    "nodeType": "Block",
                    "src": "664:45:56",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 12778,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 12776,
                            "name": "_index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12769,
                            "src": "681:6:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "%",
                          "rightExpression": {
                            "id": 12777,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12771,
                            "src": "690:12:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "681:21:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 12775,
                        "id": 12779,
                        "nodeType": "Return",
                        "src": "674:28:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12767,
                    "nodeType": "StructuredDocumentation",
                    "src": "89:486:56",
                    "text": " @notice Returns wrapped TWAB index.\n @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\n @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\n       it will return 0 and will point to the first element of the array.\n @param _index Index used to navigate through the TWAB circular buffer.\n @param _cardinality TWAB buffer cardinality.\n @return TWAB index."
                  },
                  "id": 12781,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "wrap",
                  "nameLocation": "589:4:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12772,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12769,
                        "mutability": "mutable",
                        "name": "_index",
                        "nameLocation": "602:6:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 12781,
                        "src": "594:14:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12768,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "594:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12771,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "618:12:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 12781,
                        "src": "610:20:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12770,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "610:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "593:38:56"
                  },
                  "returnParameters": {
                    "id": 12775,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12774,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12781,
                        "src": "655:7:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12773,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "655:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "654:9:56"
                  },
                  "scope": 12849,
                  "src": "580:129:56",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12802,
                    "nodeType": "Block",
                    "src": "1319:75:56",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12798,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 12796,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 12794,
                                  "name": "_index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12784,
                                  "src": "1341:6:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 12795,
                                  "name": "_cardinality",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12788,
                                  "src": "1350:12:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "1341:21:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "id": 12797,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12786,
                                "src": "1365:7:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1341:31:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 12799,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12788,
                              "src": "1374:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12793,
                            "name": "wrap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12781,
                            "src": "1336:4:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 12800,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1336:51:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 12792,
                        "id": 12801,
                        "nodeType": "Return",
                        "src": "1329:58:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12782,
                    "nodeType": "StructuredDocumentation",
                    "src": "715:466:56",
                    "text": " @notice Computes the negative offset from the given index, wrapped by the cardinality.\n @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\n @param _index The index from which to offset\n @param _amount The number of indices to offset.  This is subtracted from the given index.\n @param _cardinality The number of elements in the ring buffer\n @return Offsetted index."
                  },
                  "id": 12803,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "offset",
                  "nameLocation": "1195:6:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12789,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12784,
                        "mutability": "mutable",
                        "name": "_index",
                        "nameLocation": "1219:6:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 12803,
                        "src": "1211:14:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12783,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1211:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12786,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "1243:7:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 12803,
                        "src": "1235:15:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12785,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1235:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12788,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "1268:12:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 12803,
                        "src": "1260:20:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12787,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1260:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1201:85:56"
                  },
                  "returnParameters": {
                    "id": 12792,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12791,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12803,
                        "src": "1310:7:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12790,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1310:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1309:9:56"
                  },
                  "scope": 12849,
                  "src": "1186:208:56",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12829,
                    "nodeType": "Block",
                    "src": "1789:139:56",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 12815,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 12813,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12808,
                            "src": "1803:12:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 12814,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1819:1:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1803:17:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12819,
                        "nodeType": "IfStatement",
                        "src": "1799:56:56",
                        "trueBody": {
                          "id": 12818,
                          "nodeType": "Block",
                          "src": "1822:33:56",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 12816,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1843:1:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 12812,
                              "id": 12817,
                              "nodeType": "Return",
                              "src": "1836:8:56"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12825,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 12823,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 12821,
                                  "name": "_nextIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12806,
                                  "src": "1877:10:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 12822,
                                  "name": "_cardinality",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12808,
                                  "src": "1890:12:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "1877:25:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 12824,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1905:1:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "1877:29:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 12826,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12808,
                              "src": "1908:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12820,
                            "name": "wrap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12781,
                            "src": "1872:4:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 12827,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1872:49:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 12812,
                        "id": 12828,
                        "nodeType": "Return",
                        "src": "1865:56:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12804,
                    "nodeType": "StructuredDocumentation",
                    "src": "1400:261:56",
                    "text": "@notice Returns the index of the last recorded TWAB\n @param _nextIndex The next available twab index.  This will be recorded to next.\n @param _cardinality The cardinality of the TWAB history.\n @return The index of the last recorded TWAB"
                  },
                  "id": 12830,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "newestIndex",
                  "nameLocation": "1675:11:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12809,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12806,
                        "mutability": "mutable",
                        "name": "_nextIndex",
                        "nameLocation": "1695:10:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 12830,
                        "src": "1687:18:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12805,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1687:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12808,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "1715:12:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 12830,
                        "src": "1707:20:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12807,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1707:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1686:42:56"
                  },
                  "returnParameters": {
                    "id": 12812,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12811,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12830,
                        "src": "1776:7:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12810,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1776:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1775:9:56"
                  },
                  "scope": 12849,
                  "src": "1666:262:56",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12847,
                    "nodeType": "Block",
                    "src": "2380:54:56",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12843,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12841,
                                "name": "_index",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12833,
                                "src": "2402:6:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 12842,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2411:1:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "2402:10:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 12844,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12835,
                              "src": "2414:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12840,
                            "name": "wrap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12781,
                            "src": "2397:4:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 12845,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2397:30:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 12839,
                        "id": 12846,
                        "nodeType": "Return",
                        "src": "2390:37:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12831,
                    "nodeType": "StructuredDocumentation",
                    "src": "1934:324:56",
                    "text": "@notice Computes the ring buffer index that follows the given one, wrapped by cardinality\n @param _index The index to increment\n @param _cardinality The number of elements in the Ring Buffer\n @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality"
                  },
                  "id": 12848,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "nextIndex",
                  "nameLocation": "2272:9:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12836,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12833,
                        "mutability": "mutable",
                        "name": "_index",
                        "nameLocation": "2290:6:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 12848,
                        "src": "2282:14:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12832,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2282:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12835,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "2306:12:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 12848,
                        "src": "2298:20:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12834,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2298:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2281:38:56"
                  },
                  "returnParameters": {
                    "id": 12839,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12838,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12848,
                        "src": "2367:7:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12837,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2367:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2366:9:56"
                  },
                  "scope": 12849,
                  "src": "2263:171:56",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 12850,
              "src": "61:2375:56",
              "usedErrors": []
            }
          ],
          "src": "37:2400:56"
        },
        "id": 56
      },
      "contracts/libraries/TwabLib.sol": {
        "ast": {
          "absolutePath": "contracts/libraries/TwabLib.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12433
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 13600,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12851,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:57"
            },
            {
              "absolutePath": "contracts/libraries/ExtendedSafeCastLib.sol",
              "file": "./ExtendedSafeCastLib.sol",
              "id": 12852,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13600,
              "sourceUnit": 12434,
              "src": "61:35:57",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/libraries/OverflowSafeComparatorLib.sol",
              "file": "./OverflowSafeComparatorLib.sol",
              "id": 12853,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13600,
              "sourceUnit": 12765,
              "src": "97:41:57",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/libraries/RingBufferLib.sol",
              "file": "./RingBufferLib.sol",
              "id": 12854,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13600,
              "sourceUnit": 12850,
              "src": "139:29:57",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/libraries/ObservationLib.sol",
              "file": "./ObservationLib.sol",
              "id": 12855,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13600,
              "sourceUnit": 12593,
              "src": "169:30:57",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 12856,
                "nodeType": "StructuredDocumentation",
                "src": "201:732:57",
                "text": " @title  PoolTogether V4 TwabLib (Library)\n @author PoolTogether Inc Team\n @dev    Time-Weighted Average Balance Library for ERC20 tokens.\n @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\nEach user is mapped to an Account struct containing the TWAB history (ring buffer) and\nring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\ncheckpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\na previous checkpoint with new parameters. The TwabLib (using existing blocktimes of 1block/15sec)\nguarantees minimum 7.4 years of search history."
              },
              "fullyImplemented": true,
              "id": 13599,
              "linearizedBaseContracts": [
                13599
              ],
              "name": "TwabLib",
              "nameLocation": "942:7:57",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 12859,
                  "libraryName": {
                    "id": 12857,
                    "name": "OverflowSafeComparatorLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12764,
                    "src": "962:25:57"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "956:43:57",
                  "typeName": {
                    "id": 12858,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "992:6:57",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  }
                },
                {
                  "id": 12862,
                  "libraryName": {
                    "id": 12860,
                    "name": "ExtendedSafeCastLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12433,
                    "src": "1010:19:57"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1004:38:57",
                  "typeName": {
                    "id": 12861,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1034:7:57",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 12863,
                    "nodeType": "StructuredDocumentation",
                    "src": "1048:971:57",
                    "text": " @notice Sets max ring buffer length in the Account.twabs Observation list.\nAs users transfer/mint/burn tickets new Observation checkpoints are\nrecorded. The current max cardinality guarantees a seven year minimum,\nof accurate historical lookups with current estimates of 1 new block\nevery 15 seconds - assuming each block contains a transfer to trigger an\nobservation write to storage.\n @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\nthe max cardinality variable. Preventing \"corrupted\" ring buffer lookup\npointers and new observation checkpoints.\nThe MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\nIf 14 = block time in seconds\n(2**24) * 14 = 234881024 seconds of history\n234881024 / (365 * 24 * 60 * 60) ~= 7.44 years"
                  },
                  "functionSelector": "8200d873",
                  "id": 12866,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "2047:15:57",
                  "nodeType": "VariableDeclaration",
                  "scope": 13599,
                  "src": "2024:49:57",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 12864,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "2024:6:57",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "value": {
                    "hexValue": "3136373737323135",
                    "id": 12865,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "2065:8:57",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_16777215_by_1",
                      "typeString": "int_const 16777215"
                    },
                    "value": "16777215"
                  },
                  "visibility": "public"
                },
                {
                  "canonicalName": "TwabLib.AccountDetails",
                  "id": 12873,
                  "members": [
                    {
                      "constant": false,
                      "id": 12868,
                      "mutability": "mutable",
                      "name": "balance",
                      "nameLocation": "2577:7:57",
                      "nodeType": "VariableDeclaration",
                      "scope": 12873,
                      "src": "2569:15:57",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint208",
                        "typeString": "uint208"
                      },
                      "typeName": {
                        "id": 12867,
                        "name": "uint208",
                        "nodeType": "ElementaryTypeName",
                        "src": "2569:7:57",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint208",
                          "typeString": "uint208"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 12870,
                      "mutability": "mutable",
                      "name": "nextTwabIndex",
                      "nameLocation": "2601:13:57",
                      "nodeType": "VariableDeclaration",
                      "scope": 12873,
                      "src": "2594:20:57",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint24",
                        "typeString": "uint24"
                      },
                      "typeName": {
                        "id": 12869,
                        "name": "uint24",
                        "nodeType": "ElementaryTypeName",
                        "src": "2594:6:57",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 12872,
                      "mutability": "mutable",
                      "name": "cardinality",
                      "nameLocation": "2631:11:57",
                      "nodeType": "VariableDeclaration",
                      "scope": 12873,
                      "src": "2624:18:57",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint24",
                        "typeString": "uint24"
                      },
                      "typeName": {
                        "id": 12871,
                        "name": "uint24",
                        "nodeType": "ElementaryTypeName",
                        "src": "2624:6:57",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "AccountDetails",
                  "nameLocation": "2544:14:57",
                  "nodeType": "StructDefinition",
                  "scope": 13599,
                  "src": "2537:112:57",
                  "visibility": "public"
                },
                {
                  "canonicalName": "TwabLib.Account",
                  "id": 12882,
                  "members": [
                    {
                      "constant": false,
                      "id": 12876,
                      "mutability": "mutable",
                      "name": "details",
                      "nameLocation": "2862:7:57",
                      "nodeType": "VariableDeclaration",
                      "scope": 12882,
                      "src": "2847:22:57",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                        "typeString": "struct TwabLib.AccountDetails"
                      },
                      "typeName": {
                        "id": 12875,
                        "nodeType": "UserDefinedTypeName",
                        "pathNode": {
                          "id": 12874,
                          "name": "AccountDetails",
                          "nodeType": "IdentifierPath",
                          "referencedDeclaration": 12873,
                          "src": "2847:14:57"
                        },
                        "referencedDeclaration": 12873,
                        "src": "2847:14:57",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 12881,
                      "mutability": "mutable",
                      "name": "twabs",
                      "nameLocation": "2923:5:57",
                      "nodeType": "VariableDeclaration",
                      "scope": 12882,
                      "src": "2879:49:57",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                        "typeString": "struct ObservationLib.Observation[16777215]"
                      },
                      "typeName": {
                        "baseType": {
                          "id": 12878,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12877,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "2879:26:57"
                          },
                          "referencedDeclaration": 12454,
                          "src": "2879:26:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "id": 12880,
                        "length": {
                          "id": 12879,
                          "name": "MAX_CARDINALITY",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12866,
                          "src": "2906:15:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "ArrayTypeName",
                        "src": "2879:43:57",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Account",
                  "nameLocation": "2829:7:57",
                  "nodeType": "StructDefinition",
                  "scope": 13599,
                  "src": "2822:113:57",
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 12928,
                    "nodeType": "Block",
                    "src": "3623:239:57",
                    "statements": [
                      {
                        "assignments": [
                          12903
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12903,
                            "mutability": "mutable",
                            "name": "_accountDetails",
                            "nameLocation": "3655:15:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 12928,
                            "src": "3633:37:57",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 12902,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 12901,
                                "name": "AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12873,
                                "src": "3633:14:57"
                              },
                              "referencedDeclaration": 12873,
                              "src": "3633:14:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12906,
                        "initialValue": {
                          "expression": {
                            "id": 12904,
                            "name": "_account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12886,
                            "src": "3673:8:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                              "typeString": "struct TwabLib.Account storage pointer"
                            }
                          },
                          "id": 12905,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12876,
                          "src": "3673:16:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3633:56:57"
                      },
                      {
                        "expression": {
                          "id": 12917,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 12907,
                                "name": "accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12894,
                                "src": "3700:14:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              {
                                "id": 12908,
                                "name": "twab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12897,
                                "src": "3716:4:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              {
                                "id": 12909,
                                "name": "isNew",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12899,
                                "src": "3722:5:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 12910,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "3699:29:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 12912,
                                  "name": "_account",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12886,
                                  "src": "3741:8:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                    "typeString": "struct TwabLib.Account storage pointer"
                                  }
                                },
                                "id": 12913,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "twabs",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12881,
                                "src": "3741:14:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                }
                              },
                              {
                                "id": 12914,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12903,
                                "src": "3757:15:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              {
                                "id": 12915,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12890,
                                "src": "3774:12:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                },
                                {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "id": 12911,
                              "name": "_nextTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13559,
                              "src": "3731:9:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_nonpayable$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_uint32_$returns$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                                "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                              }
                            },
                            "id": 12916,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3731:56:57",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "src": "3699:88:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12918,
                        "nodeType": "ExpressionStatement",
                        "src": "3699:88:57"
                      },
                      {
                        "expression": {
                          "id": 12926,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 12919,
                              "name": "accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12894,
                              "src": "3797:14:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            "id": 12921,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "balance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12868,
                            "src": "3797:22:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint208",
                              "typeString": "uint208"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint208",
                              "typeString": "uint208"
                            },
                            "id": 12925,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "expression": {
                                "id": 12922,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12903,
                                "src": "3822:15:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              "id": 12923,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "balance",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12868,
                              "src": "3822:23:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "id": 12924,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12888,
                              "src": "3848:7:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            "src": "3822:33:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint208",
                              "typeString": "uint208"
                            }
                          },
                          "src": "3797:58:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "id": 12927,
                        "nodeType": "ExpressionStatement",
                        "src": "3797:58:57"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12883,
                    "nodeType": "StructuredDocumentation",
                    "src": "2941:384:57",
                    "text": "@notice Increases an account's balance and records a new twab.\n @param _account The account whose balance will be increased\n @param _amount The amount to increase the balance by\n @param _currentTime The current time\n @return accountDetails The new AccountDetails\n @return twab The user's latest TWAB\n @return isNew Whether the TWAB is new"
                  },
                  "id": 12929,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "increaseBalance",
                  "nameLocation": "3339:15:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12891,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12886,
                        "mutability": "mutable",
                        "name": "_account",
                        "nameLocation": "3380:8:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 12929,
                        "src": "3364:24:57",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                          "typeString": "struct TwabLib.Account"
                        },
                        "typeName": {
                          "id": 12885,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12884,
                            "name": "Account",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12882,
                            "src": "3364:7:57"
                          },
                          "referencedDeclaration": 12882,
                          "src": "3364:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                            "typeString": "struct TwabLib.Account"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12888,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "3406:7:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 12929,
                        "src": "3398:15:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint208",
                          "typeString": "uint208"
                        },
                        "typeName": {
                          "id": 12887,
                          "name": "uint208",
                          "nodeType": "ElementaryTypeName",
                          "src": "3398:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12890,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "3430:12:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 12929,
                        "src": "3423:19:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12889,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3423:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3354:94:57"
                  },
                  "returnParameters": {
                    "id": 12900,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12894,
                        "mutability": "mutable",
                        "name": "accountDetails",
                        "nameLocation": "3518:14:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 12929,
                        "src": "3496:36:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 12893,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12892,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "3496:14:57"
                          },
                          "referencedDeclaration": 12873,
                          "src": "3496:14:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12897,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "3580:4:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 12929,
                        "src": "3546:38:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12896,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12895,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "3546:26:57"
                          },
                          "referencedDeclaration": 12454,
                          "src": "3546:26:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12899,
                        "mutability": "mutable",
                        "name": "isNew",
                        "nameLocation": "3603:5:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 12929,
                        "src": "3598:10:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 12898,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3598:4:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3482:136:57"
                  },
                  "scope": 13599,
                  "src": "3330:532:57",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12983,
                    "nodeType": "Block",
                    "src": "4829:319:57",
                    "statements": [
                      {
                        "assignments": [
                          12952
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12952,
                            "mutability": "mutable",
                            "name": "_accountDetails",
                            "nameLocation": "4861:15:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 12983,
                            "src": "4839:37:57",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 12951,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 12950,
                                "name": "AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12873,
                                "src": "4839:14:57"
                              },
                              "referencedDeclaration": 12873,
                              "src": "4839:14:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12955,
                        "initialValue": {
                          "expression": {
                            "id": 12953,
                            "name": "_account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12933,
                            "src": "4879:8:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                              "typeString": "struct TwabLib.Account storage pointer"
                            }
                          },
                          "id": 12954,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12876,
                          "src": "4879:16:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4839:56:57"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              "id": 12960,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 12957,
                                  "name": "_accountDetails",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12952,
                                  "src": "4914:15:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                    "typeString": "struct TwabLib.AccountDetails memory"
                                  }
                                },
                                "id": 12958,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "balance",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12868,
                                "src": "4914:23:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 12959,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12935,
                                "src": "4941:7:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "src": "4914:34:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "id": 12961,
                              "name": "_revertMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12937,
                              "src": "4950:14:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            ],
                            "id": 12956,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4906:7:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12962,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4906:59:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12963,
                        "nodeType": "ExpressionStatement",
                        "src": "4906:59:57"
                      },
                      {
                        "expression": {
                          "id": 12974,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 12964,
                                "name": "accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12943,
                                "src": "4977:14:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              {
                                "id": 12965,
                                "name": "twab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12946,
                                "src": "4993:4:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              {
                                "id": 12966,
                                "name": "isNew",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12948,
                                "src": "4999:5:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 12967,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "4976:29:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 12969,
                                  "name": "_account",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12933,
                                  "src": "5018:8:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                    "typeString": "struct TwabLib.Account storage pointer"
                                  }
                                },
                                "id": 12970,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "twabs",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12881,
                                "src": "5018:14:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                }
                              },
                              {
                                "id": 12971,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12952,
                                "src": "5034:15:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              {
                                "id": 12972,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12939,
                                "src": "5051:12:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                },
                                {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "id": 12968,
                              "name": "_nextTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13559,
                              "src": "5008:9:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_nonpayable$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_uint32_$returns$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                                "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                              }
                            },
                            "id": 12973,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "5008:56:57",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "src": "4976:88:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12975,
                        "nodeType": "ExpressionStatement",
                        "src": "4976:88:57"
                      },
                      {
                        "id": 12982,
                        "nodeType": "UncheckedBlock",
                        "src": "5074:68:57",
                        "statements": [
                          {
                            "expression": {
                              "id": 12980,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "expression": {
                                  "id": 12976,
                                  "name": "accountDetails",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12943,
                                  "src": "5098:14:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                    "typeString": "struct TwabLib.AccountDetails memory"
                                  }
                                },
                                "id": 12978,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "memberName": "balance",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12868,
                                "src": "5098:22:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "-=",
                              "rightHandSide": {
                                "id": 12979,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12935,
                                "src": "5124:7:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "src": "5098:33:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            "id": 12981,
                            "nodeType": "ExpressionStatement",
                            "src": "5098:33:57"
                          }
                        ]
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12930,
                    "nodeType": "StructuredDocumentation",
                    "src": "3868:625:57",
                    "text": "@notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\n @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\n @param _account        Account whose balance will be decreased\n @param _amount         Amount to decrease the balance by\n @param _revertMessage  Revert message for insufficient balance\n @return accountDetails Updated Account.details struct\n @return twab           TWAB observation (with decreasing average)\n @return isNew          Whether TWAB is new or calling twice in the same block"
                  },
                  "id": 12984,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decreaseBalance",
                  "nameLocation": "4507:15:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12940,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12933,
                        "mutability": "mutable",
                        "name": "_account",
                        "nameLocation": "4548:8:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 12984,
                        "src": "4532:24:57",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                          "typeString": "struct TwabLib.Account"
                        },
                        "typeName": {
                          "id": 12932,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12931,
                            "name": "Account",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12882,
                            "src": "4532:7:57"
                          },
                          "referencedDeclaration": 12882,
                          "src": "4532:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                            "typeString": "struct TwabLib.Account"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12935,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "4574:7:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 12984,
                        "src": "4566:15:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint208",
                          "typeString": "uint208"
                        },
                        "typeName": {
                          "id": 12934,
                          "name": "uint208",
                          "nodeType": "ElementaryTypeName",
                          "src": "4566:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12937,
                        "mutability": "mutable",
                        "name": "_revertMessage",
                        "nameLocation": "4605:14:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 12984,
                        "src": "4591:28:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 12936,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "4591:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12939,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "4636:12:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 12984,
                        "src": "4629:19:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12938,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4629:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4522:132:57"
                  },
                  "returnParameters": {
                    "id": 12949,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12943,
                        "mutability": "mutable",
                        "name": "accountDetails",
                        "nameLocation": "4724:14:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 12984,
                        "src": "4702:36:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 12942,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12941,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "4702:14:57"
                          },
                          "referencedDeclaration": 12873,
                          "src": "4702:14:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12946,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "4786:4:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 12984,
                        "src": "4752:38:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12945,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12944,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "4752:26:57"
                          },
                          "referencedDeclaration": 12454,
                          "src": "4752:26:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12948,
                        "mutability": "mutable",
                        "name": "isNew",
                        "nameLocation": "4809:5:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 12984,
                        "src": "4804:10:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 12947,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4804:4:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4688:136:57"
                  },
                  "scope": 13599,
                  "src": "4498:650:57",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13021,
                    "nodeType": "Block",
                    "src": "6160:198:57",
                    "statements": [
                      {
                        "assignments": [
                          13005
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13005,
                            "mutability": "mutable",
                            "name": "endTime",
                            "nameLocation": "6177:7:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13021,
                            "src": "6170:14:57",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 13004,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "6170:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13012,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 13008,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 13006,
                              "name": "_endTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12997,
                              "src": "6187:8:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 13007,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12999,
                              "src": "6198:12:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "6187:23:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "id": 13010,
                            "name": "_endTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12997,
                            "src": "6228:8:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 13011,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "6187:49:57",
                          "trueExpression": {
                            "id": 13009,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12999,
                            "src": "6213:12:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6170:66:57"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13014,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12990,
                              "src": "6292:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 13015,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12993,
                              "src": "6300:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 13016,
                              "name": "_startTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12995,
                              "src": "6317:10:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13017,
                              "name": "endTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13005,
                              "src": "6329:7:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13018,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12999,
                              "src": "6338:12:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 13013,
                            "name": "_getAverageBalanceBetween",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13227,
                            "src": "6266:25:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32,uint32) view returns (uint256)"
                            }
                          },
                          "id": 13019,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6266:85:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 13003,
                        "id": 13020,
                        "nodeType": "Return",
                        "src": "6247:104:57"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12985,
                    "nodeType": "StructuredDocumentation",
                    "src": "5154:733:57",
                    "text": "@notice Calculates the average balance held by a user for a given time frame.\n @dev    Finds the average balance between start and end timestamp epochs.\nValidates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\n @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\n @param _accountDetails User AccountDetails struct loaded in memory\n @param _startTime      Start of timestamp range as an epoch\n @param _endTime        End of timestamp range as an epoch\n @param _currentTime    Block.timestamp\n @return Average balance of user held between epoch timestamps start and end"
                  },
                  "id": 13022,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalanceBetween",
                  "nameLocation": "5901:24:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13000,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12990,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "5987:6:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13022,
                        "src": "5935:58:57",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12987,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 12986,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12454,
                              "src": "5935:26:57"
                            },
                            "referencedDeclaration": 12454,
                            "src": "5935:26:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 12989,
                          "length": {
                            "id": 12988,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12866,
                            "src": "5962:15:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "5935:43:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12993,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "6025:15:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13022,
                        "src": "6003:37:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 12992,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12991,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "6003:14:57"
                          },
                          "referencedDeclaration": 12873,
                          "src": "6003:14:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12995,
                        "mutability": "mutable",
                        "name": "_startTime",
                        "nameLocation": "6057:10:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13022,
                        "src": "6050:17:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12994,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6050:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12997,
                        "mutability": "mutable",
                        "name": "_endTime",
                        "nameLocation": "6084:8:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13022,
                        "src": "6077:15:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12996,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6077:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12999,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "6109:12:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13022,
                        "src": "6102:19:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12998,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6102:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5925:202:57"
                  },
                  "returnParameters": {
                    "id": 13003,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13002,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13022,
                        "src": "6151:7:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13001,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6151:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6150:9:57"
                  },
                  "scope": 13599,
                  "src": "5892:466:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13066,
                    "nodeType": "Block",
                    "src": "6836:287:57",
                    "statements": [
                      {
                        "expression": {
                          "id": 13042,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 13039,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13034,
                            "src": "6846:5:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "expression": {
                              "id": 13040,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13031,
                              "src": "6854:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            "id": 13041,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "nextTwabIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12870,
                            "src": "6854:29:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "6846:37:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 13043,
                        "nodeType": "ExpressionStatement",
                        "src": "6846:37:57"
                      },
                      {
                        "expression": {
                          "id": 13048,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 13044,
                            "name": "twab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13037,
                            "src": "6893:4:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "baseExpression": {
                              "id": 13045,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13028,
                              "src": "6900:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            "id": 13047,
                            "indexExpression": {
                              "id": 13046,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13034,
                              "src": "6907:5:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "6900:13:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage",
                              "typeString": "struct ObservationLib.Observation storage ref"
                            }
                          },
                          "src": "6893:20:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "id": 13049,
                        "nodeType": "ExpressionStatement",
                        "src": "6893:20:57"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 13053,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 13050,
                              "name": "twab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13037,
                              "src": "7032:4:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 13051,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12453,
                            "src": "7032:14:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 13052,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "7050:1:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "7032:19:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13065,
                        "nodeType": "IfStatement",
                        "src": "7028:89:57",
                        "trueBody": {
                          "id": 13064,
                          "nodeType": "Block",
                          "src": "7053:64:57",
                          "statements": [
                            {
                              "expression": {
                                "id": 13056,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 13054,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13034,
                                  "src": "7067:5:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint24",
                                    "typeString": "uint24"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "hexValue": "30",
                                  "id": 13055,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "7075:1:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "7067:9:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              "id": 13057,
                              "nodeType": "ExpressionStatement",
                              "src": "7067:9:57"
                            },
                            {
                              "expression": {
                                "id": 13062,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 13058,
                                  "name": "twab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13037,
                                  "src": "7090:4:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 13059,
                                    "name": "_twabs",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13028,
                                    "src": "7097:6:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                      "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                    }
                                  },
                                  "id": 13061,
                                  "indexExpression": {
                                    "hexValue": "30",
                                    "id": 13060,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "7104:1:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "7097:9:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_storage",
                                    "typeString": "struct ObservationLib.Observation storage ref"
                                  }
                                },
                                "src": "7090:16:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 13063,
                              "nodeType": "ExpressionStatement",
                              "src": "7090:16:57"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13023,
                    "nodeType": "StructuredDocumentation",
                    "src": "6364:249:57",
                    "text": "@notice Retrieves the oldest TWAB\n @param _twabs The storage array of twabs\n @param _accountDetails The TWAB account details\n @return index The index of the oldest TWAB in the twabs array\n @return twab The oldest TWAB"
                  },
                  "id": 13067,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "oldestTwab",
                  "nameLocation": "6627:10:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13032,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13028,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "6699:6:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13067,
                        "src": "6647:58:57",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 13025,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 13024,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12454,
                              "src": "6647:26:57"
                            },
                            "referencedDeclaration": 12454,
                            "src": "6647:26:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 13027,
                          "length": {
                            "id": 13026,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12866,
                            "src": "6674:15:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "6647:43:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13031,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "6737:15:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13067,
                        "src": "6715:37:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 13030,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13029,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "6715:14:57"
                          },
                          "referencedDeclaration": 12873,
                          "src": "6715:14:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6637:121:57"
                  },
                  "returnParameters": {
                    "id": 13038,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13034,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "6789:5:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13067,
                        "src": "6782:12:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 13033,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "6782:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13037,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "6830:4:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13067,
                        "src": "6796:38:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 13036,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13035,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "6796:26:57"
                          },
                          "referencedDeclaration": 12454,
                          "src": "6796:26:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6781:54:57"
                  },
                  "scope": 13599,
                  "src": "6618:505:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13102,
                    "nodeType": "Block",
                    "src": "7601:136:57",
                    "statements": [
                      {
                        "expression": {
                          "id": 13094,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 13084,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13079,
                            "src": "7611:5:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 13089,
                                      "name": "_accountDetails",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 13076,
                                      "src": "7652:15:57",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    "id": 13090,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "nextTwabIndex",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12870,
                                    "src": "7652:29:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  },
                                  {
                                    "id": 13091,
                                    "name": "MAX_CARDINALITY",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12866,
                                    "src": "7683:15:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    },
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  ],
                                  "expression": {
                                    "id": 13087,
                                    "name": "RingBufferLib",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12849,
                                    "src": "7626:13:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12849_$",
                                      "typeString": "type(library RingBufferLib)"
                                    }
                                  },
                                  "id": 13088,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "newestIndex",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12830,
                                  "src": "7626:25:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                    "typeString": "function (uint256,uint256) pure returns (uint256)"
                                  }
                                },
                                "id": 13092,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7626:73:57",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 13086,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "7619:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint24_$",
                                "typeString": "type(uint24)"
                              },
                              "typeName": {
                                "id": 13085,
                                "name": "uint24",
                                "nodeType": "ElementaryTypeName",
                                "src": "7619:6:57",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 13093,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "7619:81:57",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "7611:89:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 13095,
                        "nodeType": "ExpressionStatement",
                        "src": "7611:89:57"
                      },
                      {
                        "expression": {
                          "id": 13100,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 13096,
                            "name": "twab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13082,
                            "src": "7710:4:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "baseExpression": {
                              "id": 13097,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13073,
                              "src": "7717:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            "id": 13099,
                            "indexExpression": {
                              "id": 13098,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13079,
                              "src": "7724:5:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "7717:13:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage",
                              "typeString": "struct ObservationLib.Observation storage ref"
                            }
                          },
                          "src": "7710:20:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "id": 13101,
                        "nodeType": "ExpressionStatement",
                        "src": "7710:20:57"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13068,
                    "nodeType": "StructuredDocumentation",
                    "src": "7129:249:57",
                    "text": "@notice Retrieves the newest TWAB\n @param _twabs The storage array of twabs\n @param _accountDetails The TWAB account details\n @return index The index of the newest TWAB in the twabs array\n @return twab The newest TWAB"
                  },
                  "id": 13103,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "newestTwab",
                  "nameLocation": "7392:10:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13077,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13073,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "7464:6:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13103,
                        "src": "7412:58:57",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 13070,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 13069,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12454,
                              "src": "7412:26:57"
                            },
                            "referencedDeclaration": 12454,
                            "src": "7412:26:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 13072,
                          "length": {
                            "id": 13071,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12866,
                            "src": "7439:15:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "7412:43:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13076,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "7502:15:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13103,
                        "src": "7480:37:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 13075,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13074,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "7480:14:57"
                          },
                          "referencedDeclaration": 12873,
                          "src": "7480:14:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7402:121:57"
                  },
                  "returnParameters": {
                    "id": 13083,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13079,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "7554:5:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13103,
                        "src": "7547:12:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 13078,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "7547:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13082,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "7595:4:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13103,
                        "src": "7561:38:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 13081,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13080,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "7561:26:57"
                          },
                          "referencedDeclaration": 12454,
                          "src": "7561:26:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7546:54:57"
                  },
                  "scope": 13599,
                  "src": "7383:354:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13137,
                    "nodeType": "Block",
                    "src": "8271:177:57",
                    "statements": [
                      {
                        "assignments": [
                          13122
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13122,
                            "mutability": "mutable",
                            "name": "timeToTarget",
                            "nameLocation": "8288:12:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13137,
                            "src": "8281:19:57",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 13121,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "8281:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13129,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 13125,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 13123,
                              "name": "_targetTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13114,
                              "src": "8303:11:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 13124,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13116,
                              "src": "8317:12:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "8303:26:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "id": 13127,
                            "name": "_targetTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13114,
                            "src": "8347:11:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 13128,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "8303:55:57",
                          "trueExpression": {
                            "id": 13126,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13116,
                            "src": "8332:12:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8281:77:57"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13131,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13109,
                              "src": "8389:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 13132,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13112,
                              "src": "8397:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 13133,
                              "name": "timeToTarget",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13122,
                              "src": "8414:12:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13134,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13116,
                              "src": "8428:12:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 13130,
                            "name": "_getBalanceAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13334,
                            "src": "8375:13:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32) view returns (uint256)"
                            }
                          },
                          "id": 13135,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8375:66:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 13120,
                        "id": 13136,
                        "nodeType": "Return",
                        "src": "8368:73:57"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13104,
                    "nodeType": "StructuredDocumentation",
                    "src": "7743:291:57",
                    "text": "@notice Retrieves amount at `_targetTime` timestamp\n @param _twabs List of TWABs to search through.\n @param _accountDetails Accounts details\n @param _targetTime Timestamp at which the reserved TWAB should be for.\n @return uint256 TWAB amount at `_targetTime`."
                  },
                  "id": 13138,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceAt",
                  "nameLocation": "8048:12:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13117,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13109,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "8122:6:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13138,
                        "src": "8070:58:57",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 13106,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 13105,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12454,
                              "src": "8070:26:57"
                            },
                            "referencedDeclaration": 12454,
                            "src": "8070:26:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 13108,
                          "length": {
                            "id": 13107,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12866,
                            "src": "8097:15:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "8070:43:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13112,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "8160:15:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13138,
                        "src": "8138:37:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 13111,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13110,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "8138:14:57"
                          },
                          "referencedDeclaration": 12873,
                          "src": "8138:14:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13114,
                        "mutability": "mutable",
                        "name": "_targetTime",
                        "nameLocation": "8192:11:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13138,
                        "src": "8185:18:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13113,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8185:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13116,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "8220:12:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13138,
                        "src": "8213:19:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13115,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8213:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8060:178:57"
                  },
                  "returnParameters": {
                    "id": 13120,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13119,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13138,
                        "src": "8262:7:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13118,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8262:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8261:9:57"
                  },
                  "scope": 13599,
                  "src": "8039:409:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13226,
                    "nodeType": "Block",
                    "src": "9002:1047:57",
                    "statements": [
                      {
                        "assignments": [
                          13159,
                          13162
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13159,
                            "mutability": "mutable",
                            "name": "oldestTwabIndex",
                            "nameLocation": "9020:15:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13226,
                            "src": "9013:22:57",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 13158,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "9013:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 13162,
                            "mutability": "mutable",
                            "name": "oldTwab",
                            "nameLocation": "9071:7:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13226,
                            "src": "9037:41:57",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 13161,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13160,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "9037:26:57"
                              },
                              "referencedDeclaration": 12454,
                              "src": "9037:26:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13167,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13164,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13144,
                              "src": "9106:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 13165,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13147,
                              "src": "9126:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            ],
                            "id": 13163,
                            "name": "oldestTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13067,
                            "src": "9082:10:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 13166,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9082:69:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9012:139:57"
                      },
                      {
                        "assignments": [
                          13169,
                          13172
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13169,
                            "mutability": "mutable",
                            "name": "newestTwabIndex",
                            "nameLocation": "9170:15:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13226,
                            "src": "9163:22:57",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 13168,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "9163:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 13172,
                            "mutability": "mutable",
                            "name": "newTwab",
                            "nameLocation": "9221:7:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13226,
                            "src": "9187:41:57",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 13171,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13170,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "9187:26:57"
                              },
                              "referencedDeclaration": 12454,
                              "src": "9187:26:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13177,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13174,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13144,
                              "src": "9256:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 13175,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13147,
                              "src": "9276:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            ],
                            "id": 13173,
                            "name": "newestTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13103,
                            "src": "9232:10:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 13176,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9232:69:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9162:139:57"
                      },
                      {
                        "assignments": [
                          13182
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13182,
                            "mutability": "mutable",
                            "name": "startTwab",
                            "nameLocation": "9346:9:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13226,
                            "src": "9312:43:57",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 13181,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13180,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "9312:26:57"
                              },
                              "referencedDeclaration": 12454,
                              "src": "9312:26:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13193,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13184,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13144,
                              "src": "9386:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 13185,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13147,
                              "src": "9406:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 13186,
                              "name": "newTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13172,
                              "src": "9435:7:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 13187,
                              "name": "oldTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13162,
                              "src": "9456:7:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 13188,
                              "name": "newestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13169,
                              "src": "9477:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 13189,
                              "name": "oldestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13159,
                              "src": "9506:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 13190,
                              "name": "_startTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13149,
                              "src": "9535:10:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13191,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13153,
                              "src": "9559:12:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 13183,
                            "name": "_calculateTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13452,
                            "src": "9358:14:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint32_$returns$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,struct ObservationLib.Observation memory,uint24,uint24,uint32,uint32) view returns (struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 13192,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9358:223:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9312:269:57"
                      },
                      {
                        "assignments": [
                          13198
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13198,
                            "mutability": "mutable",
                            "name": "endTwab",
                            "nameLocation": "9626:7:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13226,
                            "src": "9592:41:57",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 13197,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13196,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "9592:26:57"
                              },
                              "referencedDeclaration": 12454,
                              "src": "9592:26:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13209,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13200,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13144,
                              "src": "9664:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 13201,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13147,
                              "src": "9684:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 13202,
                              "name": "newTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13172,
                              "src": "9713:7:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 13203,
                              "name": "oldTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13162,
                              "src": "9734:7:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 13204,
                              "name": "newestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13169,
                              "src": "9755:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 13205,
                              "name": "oldestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13159,
                              "src": "9784:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 13206,
                              "name": "_endTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13151,
                              "src": "9813:8:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13207,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13153,
                              "src": "9835:12:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 13199,
                            "name": "_calculateTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13452,
                            "src": "9636:14:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint32_$returns$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,struct ObservationLib.Observation memory,uint24,uint24,uint32,uint32) view returns (struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 13208,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9636:221:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9592:265:57"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "id": 13224,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                "id": 13214,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 13210,
                                    "name": "endTwab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13198,
                                    "src": "9915:7:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 13211,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12451,
                                  "src": "9915:14:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "expression": {
                                    "id": 13212,
                                    "name": "startTwab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13182,
                                    "src": "9932:9:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 13213,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12451,
                                  "src": "9932:16:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "src": "9915:33:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              }
                            ],
                            "id": 13215,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "9914:35:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 13218,
                                  "name": "endTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13198,
                                  "src": "9989:7:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 13219,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12453,
                                "src": "9989:17:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "expression": {
                                  "id": 13220,
                                  "name": "startTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13182,
                                  "src": "10008:9:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 13221,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12453,
                                "src": "10008:19:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "id": 13222,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13153,
                                "src": "10029:12:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 13216,
                                "name": "OverflowSafeComparatorLib",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12764,
                                "src": "9952:25:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_OverflowSafeComparatorLib_$12764_$",
                                  "typeString": "type(library OverflowSafeComparatorLib)"
                                }
                              },
                              "id": 13217,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "checkedSub",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12763,
                              "src": "9952:36:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint32_$",
                                "typeString": "function (uint32,uint32,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 13223,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "9952:90:57",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "9914:128:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 13157,
                        "id": 13225,
                        "nodeType": "Return",
                        "src": "9907:135:57"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13139,
                    "nodeType": "StructuredDocumentation",
                    "src": "8454:275:57",
                    "text": "@notice Calculates the average balance held by a user for a given time frame.\n @param _startTime The start time of the time frame.\n @param _endTime The end time of the time frame.\n @return The average balance that the user held during the time frame."
                  },
                  "id": 13227,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getAverageBalanceBetween",
                  "nameLocation": "8743:25:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13154,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13144,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "8830:6:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13227,
                        "src": "8778:58:57",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 13141,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 13140,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12454,
                              "src": "8778:26:57"
                            },
                            "referencedDeclaration": 12454,
                            "src": "8778:26:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 13143,
                          "length": {
                            "id": 13142,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12866,
                            "src": "8805:15:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "8778:43:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13147,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "8868:15:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13227,
                        "src": "8846:37:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 13146,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13145,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "8846:14:57"
                          },
                          "referencedDeclaration": 12873,
                          "src": "8846:14:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13149,
                        "mutability": "mutable",
                        "name": "_startTime",
                        "nameLocation": "8900:10:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13227,
                        "src": "8893:17:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13148,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8893:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13151,
                        "mutability": "mutable",
                        "name": "_endTime",
                        "nameLocation": "8927:8:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13227,
                        "src": "8920:15:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13150,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8920:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13153,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "8952:12:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13227,
                        "src": "8945:19:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13152,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8945:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8768:202:57"
                  },
                  "returnParameters": {
                    "id": 13157,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13156,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13227,
                        "src": "8993:7:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13155,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8993:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8992:9:57"
                  },
                  "scope": 13599,
                  "src": "8734:1315:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 13333,
                    "nodeType": "Block",
                    "src": "10913:1537:57",
                    "statements": [
                      {
                        "assignments": [
                          13246
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13246,
                            "mutability": "mutable",
                            "name": "newestTwabIndex",
                            "nameLocation": "10930:15:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13333,
                            "src": "10923:22:57",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 13245,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "10923:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13247,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10923:22:57"
                      },
                      {
                        "assignments": [
                          13252
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13252,
                            "mutability": "mutable",
                            "name": "afterOrAt",
                            "nameLocation": "10989:9:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13333,
                            "src": "10955:43:57",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 13251,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13250,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "10955:26:57"
                              },
                              "referencedDeclaration": 12454,
                              "src": "10955:26:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13253,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10955:43:57"
                      },
                      {
                        "assignments": [
                          13258
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13258,
                            "mutability": "mutable",
                            "name": "beforeOrAt",
                            "nameLocation": "11042:10:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13333,
                            "src": "11008:44:57",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 13257,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13256,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "11008:26:57"
                              },
                              "referencedDeclaration": 12454,
                              "src": "11008:26:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13259,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11008:44:57"
                      },
                      {
                        "expression": {
                          "id": 13267,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 13260,
                                "name": "newestTwabIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13246,
                                "src": "11063:15:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              {
                                "id": 13261,
                                "name": "beforeOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13258,
                                "src": "11080:10:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              }
                            ],
                            "id": 13262,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "11062:29:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 13264,
                                "name": "_twabs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13233,
                                "src": "11105:6:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                }
                              },
                              {
                                "id": 13265,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13236,
                                "src": "11113:15:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                },
                                {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              ],
                              "id": 13263,
                              "name": "newestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13103,
                              "src": "11094:10:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                                "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                              }
                            },
                            "id": 13266,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "11094:35:57",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "src": "11062:67:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13268,
                        "nodeType": "ExpressionStatement",
                        "src": "11062:67:57"
                      },
                      {
                        "condition": {
                          "arguments": [
                            {
                              "id": 13272,
                              "name": "_targetTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13238,
                              "src": "11280:11:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13273,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13240,
                              "src": "11293:12:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "expression": {
                                "id": 13269,
                                "name": "beforeOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13258,
                                "src": "11255:10:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 13270,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12453,
                              "src": "11255:20:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "id": 13271,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lte",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12705,
                            "src": "11255:24:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_bool_$bound_to$_t_uint32_$",
                              "typeString": "function (uint32,uint32,uint32) pure returns (bool)"
                            }
                          },
                          "id": 13274,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11255:51:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13279,
                        "nodeType": "IfStatement",
                        "src": "11251:112:57",
                        "trueBody": {
                          "id": 13278,
                          "nodeType": "Block",
                          "src": "11308:55:57",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 13275,
                                  "name": "_accountDetails",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13236,
                                  "src": "11329:15:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                    "typeString": "struct TwabLib.AccountDetails memory"
                                  }
                                },
                                "id": 13276,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "balance",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12868,
                                "src": "11329:23:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "functionReturnParameters": 13244,
                              "id": 13277,
                              "nodeType": "Return",
                              "src": "11322:30:57"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          13281
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13281,
                            "mutability": "mutable",
                            "name": "oldestTwabIndex",
                            "nameLocation": "11380:15:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13333,
                            "src": "11373:22:57",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 13280,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "11373:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13282,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11373:22:57"
                      },
                      {
                        "expression": {
                          "id": 13290,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 13283,
                                "name": "oldestTwabIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13281,
                                "src": "11452:15:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              {
                                "id": 13284,
                                "name": "beforeOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13258,
                                "src": "11469:10:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              }
                            ],
                            "id": 13285,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "11451:29:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 13287,
                                "name": "_twabs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13233,
                                "src": "11494:6:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                }
                              },
                              {
                                "id": 13288,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13236,
                                "src": "11502:15:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                },
                                {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              ],
                              "id": 13286,
                              "name": "oldestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13067,
                              "src": "11483:10:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                                "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                              }
                            },
                            "id": 13289,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "11483:35:57",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "src": "11451:67:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13291,
                        "nodeType": "ExpressionStatement",
                        "src": "11451:67:57"
                      },
                      {
                        "condition": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13294,
                                "name": "beforeOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13258,
                                "src": "11639:10:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 13295,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12453,
                              "src": "11639:20:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13296,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13240,
                              "src": "11661:12:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 13292,
                              "name": "_targetTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13238,
                              "src": "11624:11:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "id": 13293,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12650,
                            "src": "11624:14:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_bool_$bound_to$_t_uint32_$",
                              "typeString": "function (uint32,uint32,uint32) pure returns (bool)"
                            }
                          },
                          "id": 13297,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11624:50:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13301,
                        "nodeType": "IfStatement",
                        "src": "11620:89:57",
                        "trueBody": {
                          "id": 13300,
                          "nodeType": "Block",
                          "src": "11676:33:57",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 13298,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "11697:1:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 13244,
                              "id": 13299,
                              "nodeType": "Return",
                              "src": "11690:8:57"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 13315,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 13302,
                                "name": "beforeOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13258,
                                "src": "11772:10:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              {
                                "id": 13303,
                                "name": "afterOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13252,
                                "src": "11784:9:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              }
                            ],
                            "id": 13304,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "11771:23:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_Observation_$12454_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "tuple(struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 13307,
                                "name": "_twabs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13233,
                                "src": "11838:6:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                }
                              },
                              {
                                "id": 13308,
                                "name": "newestTwabIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13246,
                                "src": "11858:15:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              {
                                "id": 13309,
                                "name": "oldestTwabIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13281,
                                "src": "11887:15:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              {
                                "id": 13310,
                                "name": "_targetTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13238,
                                "src": "11916:11:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "expression": {
                                  "id": 13311,
                                  "name": "_accountDetails",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13236,
                                  "src": "11941:15:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                    "typeString": "struct TwabLib.AccountDetails memory"
                                  }
                                },
                                "id": 13312,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "cardinality",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12872,
                                "src": "11941:27:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              {
                                "id": 13313,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13240,
                                "src": "11982:12:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                },
                                {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                },
                                {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 13305,
                                "name": "ObservationLib",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12592,
                                "src": "11797:14:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_ObservationLib_$12592_$",
                                  "typeString": "type(library ObservationLib)"
                                }
                              },
                              "id": 13306,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "binarySearch",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12591,
                              "src": "11797:27:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint24_$_t_uint32_$returns$_t_struct$_Observation_$12454_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$",
                                "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,uint24,uint24,uint32,uint24,uint32) view returns (struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                              }
                            },
                            "id": 13314,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "11797:207:57",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_Observation_$12454_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "tuple(struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                            }
                          },
                          "src": "11771:233:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13316,
                        "nodeType": "ExpressionStatement",
                        "src": "11771:233:57"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "id": 13331,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                "id": 13321,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 13317,
                                    "name": "afterOrAt",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13252,
                                    "src": "12310:9:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 13318,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12451,
                                  "src": "12310:16:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "expression": {
                                    "id": 13319,
                                    "name": "beforeOrAt",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13258,
                                    "src": "12329:10:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 13320,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12451,
                                  "src": "12329:17:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "src": "12310:36:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              }
                            ],
                            "id": 13322,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "12309:38:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 13325,
                                  "name": "afterOrAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13252,
                                  "src": "12387:9:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 13326,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12453,
                                "src": "12387:19:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "expression": {
                                  "id": 13327,
                                  "name": "beforeOrAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13258,
                                  "src": "12408:10:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 13328,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12453,
                                "src": "12408:20:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "id": 13329,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13240,
                                "src": "12430:12:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 13323,
                                "name": "OverflowSafeComparatorLib",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12764,
                                "src": "12350:25:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_OverflowSafeComparatorLib_$12764_$",
                                  "typeString": "type(library OverflowSafeComparatorLib)"
                                }
                              },
                              "id": 13324,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "checkedSub",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12763,
                              "src": "12350:36:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint32_$",
                                "typeString": "function (uint32,uint32,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 13330,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "12350:93:57",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "12309:134:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 13244,
                        "id": 13332,
                        "nodeType": "Return",
                        "src": "12290:153:57"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13228,
                    "nodeType": "StructuredDocumentation",
                    "src": "10055:621:57",
                    "text": "@notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\nbetween the Observations closes to the supplied targetTime.\n @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\n @param _accountDetails User AccountDetails struct loaded in memory\n @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\n @param _currentTime    Block.timestamp\n @return uint256 Time-weighted average amount between two closest observations."
                  },
                  "id": 13334,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getBalanceAt",
                  "nameLocation": "10690:13:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13241,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13233,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "10765:6:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13334,
                        "src": "10713:58:57",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 13230,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 13229,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12454,
                              "src": "10713:26:57"
                            },
                            "referencedDeclaration": 12454,
                            "src": "10713:26:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 13232,
                          "length": {
                            "id": 13231,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12866,
                            "src": "10740:15:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "10713:43:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13236,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "10803:15:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13334,
                        "src": "10781:37:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 13235,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13234,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "10781:14:57"
                          },
                          "referencedDeclaration": 12873,
                          "src": "10781:14:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13238,
                        "mutability": "mutable",
                        "name": "_targetTime",
                        "nameLocation": "10835:11:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13334,
                        "src": "10828:18:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13237,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "10828:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13240,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "10863:12:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13334,
                        "src": "10856:19:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13239,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "10856:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10703:178:57"
                  },
                  "returnParameters": {
                    "id": 13244,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13243,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13334,
                        "src": "10904:7:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13242,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10904:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10903:9:57"
                  },
                  "scope": 13599,
                  "src": "10681:1769:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 13451,
                    "nodeType": "Block",
                    "src": "14173:1465:57",
                    "statements": [
                      {
                        "condition": {
                          "arguments": [
                            {
                              "id": 13366,
                              "name": "_targetTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13355,
                              "src": "14312:16:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13367,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13357,
                              "src": "14330:5:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "expression": {
                                "id": 13363,
                                "name": "_newestTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13346,
                                "src": "14287:11:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 13364,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12453,
                              "src": "14287:21:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "id": 13365,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12650,
                            "src": "14287:24:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_bool_$bound_to$_t_uint32_$",
                              "typeString": "function (uint32,uint32,uint32) pure returns (bool)"
                            }
                          },
                          "id": 13368,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14287:49:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13377,
                        "nodeType": "IfStatement",
                        "src": "14283:159:57",
                        "trueBody": {
                          "id": 13376,
                          "nodeType": "Block",
                          "src": "14338:104:57",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 13370,
                                    "name": "_newestTwab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13346,
                                    "src": "14376:11:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 13371,
                                      "name": "_accountDetails",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 13343,
                                      "src": "14389:15:57",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    "id": 13372,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "balance",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12868,
                                    "src": "14389:23:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint208",
                                      "typeString": "uint208"
                                    }
                                  },
                                  {
                                    "id": 13373,
                                    "name": "_targetTimestamp",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13355,
                                    "src": "14414:16:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    },
                                    {
                                      "typeIdentifier": "t_uint208",
                                      "typeString": "uint208"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  ],
                                  "id": 13369,
                                  "name": "_computeNextTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13484,
                                  "src": "14359:16:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_struct$_Observation_$12454_memory_ptr_$_t_uint224_$_t_uint32_$returns$_t_struct$_Observation_$12454_memory_ptr_$",
                                    "typeString": "function (struct ObservationLib.Observation memory,uint224,uint32) pure returns (struct ObservationLib.Observation memory)"
                                  }
                                },
                                "id": 13374,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14359:72:57",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "functionReturnParameters": 13362,
                              "id": 13375,
                              "nodeType": "Return",
                              "src": "14352:79:57"
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 13381,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 13378,
                              "name": "_newestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13346,
                              "src": "14456:11:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 13379,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12453,
                            "src": "14456:21:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 13380,
                            "name": "_targetTimestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13355,
                            "src": "14481:16:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "14456:41:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13385,
                        "nodeType": "IfStatement",
                        "src": "14452:90:57",
                        "trueBody": {
                          "id": 13384,
                          "nodeType": "Block",
                          "src": "14499:43:57",
                          "statements": [
                            {
                              "expression": {
                                "id": 13382,
                                "name": "_newestTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13346,
                                "src": "14520:11:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "functionReturnParameters": 13362,
                              "id": 13383,
                              "nodeType": "Return",
                              "src": "14513:18:57"
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 13389,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 13386,
                              "name": "_oldestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13349,
                              "src": "14556:11:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 13387,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12453,
                            "src": "14556:21:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 13388,
                            "name": "_targetTimestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13355,
                            "src": "14581:16:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "14556:41:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13393,
                        "nodeType": "IfStatement",
                        "src": "14552:90:57",
                        "trueBody": {
                          "id": 13392,
                          "nodeType": "Block",
                          "src": "14599:43:57",
                          "statements": [
                            {
                              "expression": {
                                "id": 13390,
                                "name": "_oldestTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13349,
                                "src": "14620:11:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "functionReturnParameters": 13362,
                              "id": 13391,
                              "nodeType": "Return",
                              "src": "14613:18:57"
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13396,
                                "name": "_oldestTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13349,
                                "src": "14774:11:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 13397,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12453,
                              "src": "14774:21:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13398,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13357,
                              "src": "14797:5:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 13394,
                              "name": "_targetTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13355,
                              "src": "14754:16:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "id": 13395,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12650,
                            "src": "14754:19:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_bool_$bound_to$_t_uint32_$",
                              "typeString": "function (uint32,uint32,uint32) pure returns (bool)"
                            }
                          },
                          "id": 13399,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14754:49:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13407,
                        "nodeType": "IfStatement",
                        "src": "14750:157:57",
                        "trueBody": {
                          "id": 13406,
                          "nodeType": "Block",
                          "src": "14805:102:57",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 13402,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "14863:1:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  {
                                    "id": 13403,
                                    "name": "_targetTimestamp",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13355,
                                    "src": "14877:16:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  ],
                                  "expression": {
                                    "id": 13400,
                                    "name": "ObservationLib",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12592,
                                    "src": "14826:14:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_ObservationLib_$12592_$",
                                      "typeString": "type(library ObservationLib)"
                                    }
                                  },
                                  "id": 13401,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "Observation",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12454,
                                  "src": "14826:26:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_struct$_Observation_$12454_storage_ptr_$",
                                    "typeString": "type(struct ObservationLib.Observation storage pointer)"
                                  }
                                },
                                "id": 13404,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "structConstructorCall",
                                "lValueRequested": false,
                                "names": [
                                  "amount",
                                  "timestamp"
                                ],
                                "nodeType": "FunctionCall",
                                "src": "14826:70:57",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "functionReturnParameters": 13362,
                              "id": 13405,
                              "nodeType": "Return",
                              "src": "14819:77:57"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          13412,
                          13415
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13412,
                            "mutability": "mutable",
                            "name": "beforeOrAtStart",
                            "nameLocation": "15032:15:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13451,
                            "src": "14998:49:57",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 13411,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13410,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "14998:26:57"
                              },
                              "referencedDeclaration": 12454,
                              "src": "14998:26:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 13415,
                            "mutability": "mutable",
                            "name": "afterOrAtStart",
                            "nameLocation": "15095:14:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13451,
                            "src": "15061:48:57",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 13414,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13413,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "15061:26:57"
                              },
                              "referencedDeclaration": 12454,
                              "src": "15061:26:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13426,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13418,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13340,
                              "src": "15167:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 13419,
                              "name": "_newestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13351,
                              "src": "15191:16:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 13420,
                              "name": "_oldestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13353,
                              "src": "15225:16:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 13421,
                              "name": "_targetTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13355,
                              "src": "15259:16:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 13422,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13343,
                                "src": "15293:15:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              "id": 13423,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "cardinality",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12872,
                              "src": "15293:27:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 13424,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13357,
                              "src": "15338:5:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 13416,
                              "name": "ObservationLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12592,
                              "src": "15122:14:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ObservationLib_$12592_$",
                                "typeString": "type(library ObservationLib)"
                              }
                            },
                            "id": 13417,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "binarySearch",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12591,
                            "src": "15122:27:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint24_$_t_uint32_$returns$_t_struct$_Observation_$12454_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,uint24,uint24,uint32,uint24,uint32) view returns (struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 13425,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15122:235:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_Observation_$12454_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$",
                            "typeString": "tuple(struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "14984:373:57"
                      },
                      {
                        "assignments": [
                          13428
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13428,
                            "mutability": "mutable",
                            "name": "heldBalance",
                            "nameLocation": "15376:11:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13451,
                            "src": "15368:19:57",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            },
                            "typeName": {
                              "id": 13427,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "15368:7:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13444,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "id": 13443,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                "id": 13433,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 13429,
                                    "name": "afterOrAtStart",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13415,
                                    "src": "15391:14:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 13430,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12451,
                                  "src": "15391:21:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "expression": {
                                    "id": 13431,
                                    "name": "beforeOrAtStart",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13412,
                                    "src": "15415:15:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 13432,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12451,
                                  "src": "15415:22:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "src": "15391:46:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              }
                            ],
                            "id": 13434,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "15390:48:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 13437,
                                  "name": "afterOrAtStart",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13415,
                                  "src": "15490:14:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 13438,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12453,
                                "src": "15490:24:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "expression": {
                                  "id": 13439,
                                  "name": "beforeOrAtStart",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13412,
                                  "src": "15516:15:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 13440,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12453,
                                "src": "15516:25:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "id": 13441,
                                "name": "_time",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13357,
                                "src": "15543:5:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 13435,
                                "name": "OverflowSafeComparatorLib",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12764,
                                "src": "15453:25:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_OverflowSafeComparatorLib_$12764_$",
                                  "typeString": "type(library OverflowSafeComparatorLib)"
                                }
                              },
                              "id": 13436,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "checkedSub",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12763,
                              "src": "15453:36:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint32_$",
                                "typeString": "function (uint32,uint32,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 13442,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "15453:96:57",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "15390:159:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "15368:181:57"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13446,
                              "name": "beforeOrAtStart",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13412,
                              "src": "15584:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 13447,
                              "name": "heldBalance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13428,
                              "src": "15601:11:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            {
                              "id": 13448,
                              "name": "_targetTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13355,
                              "src": "15614:16:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 13445,
                            "name": "_computeNextTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13484,
                            "src": "15567:16:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Observation_$12454_memory_ptr_$_t_uint224_$_t_uint32_$returns$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation memory,uint224,uint32) pure returns (struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 13449,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15567:64:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "functionReturnParameters": 13362,
                        "id": 13450,
                        "nodeType": "Return",
                        "src": "15560:71:57"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13335,
                    "nodeType": "StructuredDocumentation",
                    "src": "12456:1279:57",
                    "text": "@notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\nThe balance is linearly interpolated: amount differences / timestamp differences\nusing the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\n/** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\nsearching we exclude target timestamps out of range of newest/oldest TWAB(s).\nIF a search is before or after the range we \"extrapolate\" a Observation from the expected state.\n @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\n @param _accountDetails  User AccountDetails struct loaded in memory\n @param _newestTwab      Newest TWAB in history (end of ring buffer)\n @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\n @param _newestTwabIndex Pointer in ring buffer to newest TWAB\n @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\n @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\n @param _time            Block.timestamp\n @return accountDetails Updated Account.details struct"
                  },
                  "id": 13452,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculateTwab",
                  "nameLocation": "13749:14:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13358,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13340,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "13825:6:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13452,
                        "src": "13773:58:57",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 13337,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 13336,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12454,
                              "src": "13773:26:57"
                            },
                            "referencedDeclaration": 12454,
                            "src": "13773:26:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 13339,
                          "length": {
                            "id": 13338,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12866,
                            "src": "13800:15:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "13773:43:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13343,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "13863:15:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13452,
                        "src": "13841:37:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 13342,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13341,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "13841:14:57"
                          },
                          "referencedDeclaration": 12873,
                          "src": "13841:14:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13346,
                        "mutability": "mutable",
                        "name": "_newestTwab",
                        "nameLocation": "13922:11:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13452,
                        "src": "13888:45:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 13345,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13344,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "13888:26:57"
                          },
                          "referencedDeclaration": 12454,
                          "src": "13888:26:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13349,
                        "mutability": "mutable",
                        "name": "_oldestTwab",
                        "nameLocation": "13977:11:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13452,
                        "src": "13943:45:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 13348,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13347,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "13943:26:57"
                          },
                          "referencedDeclaration": 12454,
                          "src": "13943:26:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13351,
                        "mutability": "mutable",
                        "name": "_newestTwabIndex",
                        "nameLocation": "14005:16:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13452,
                        "src": "13998:23:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 13350,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "13998:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13353,
                        "mutability": "mutable",
                        "name": "_oldestTwabIndex",
                        "nameLocation": "14038:16:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13452,
                        "src": "14031:23:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 13352,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "14031:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13355,
                        "mutability": "mutable",
                        "name": "_targetTimestamp",
                        "nameLocation": "14071:16:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13452,
                        "src": "14064:23:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13354,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "14064:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13357,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "14104:5:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13452,
                        "src": "14097:12:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13356,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "14097:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13763:352:57"
                  },
                  "returnParameters": {
                    "id": 13362,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13361,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13452,
                        "src": "14138:33:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 13360,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13359,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "14138:26:57"
                          },
                          "referencedDeclaration": 12454,
                          "src": "14138:26:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14137:35:57"
                  },
                  "scope": 13599,
                  "src": "13740:1898:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 13483,
                    "nodeType": "Block",
                    "src": "16302:360:57",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              "id": 13479,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 13468,
                                  "name": "_currentTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13456,
                                  "src": "16477:12:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 13469,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "amount",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12451,
                                "src": "16477:19:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                "id": 13478,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 13470,
                                  "name": "_currentBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13458,
                                  "src": "16519:15:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "*",
                                "rightExpression": {
                                  "components": [
                                    {
                                      "arguments": [
                                        {
                                          "expression": {
                                            "id": 13473,
                                            "name": "_currentTwab",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 13456,
                                            "src": "16575:12:57",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                              "typeString": "struct ObservationLib.Observation memory"
                                            }
                                          },
                                          "id": 13474,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "timestamp",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 12453,
                                          "src": "16575:22:57",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        },
                                        {
                                          "id": 13475,
                                          "name": "_time",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 13460,
                                          "src": "16599:5:57",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          },
                                          {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        ],
                                        "expression": {
                                          "id": 13471,
                                          "name": "_time",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 13460,
                                          "src": "16558:5:57",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        },
                                        "id": 13472,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "checkedSub",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 12763,
                                        "src": "16558:16:57",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint32_$bound_to$_t_uint32_$",
                                          "typeString": "function (uint32,uint32,uint32) pure returns (uint32)"
                                        }
                                      },
                                      "id": 13476,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "16558:47:57",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "id": 13477,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "16557:49:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "16519:87:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "src": "16477:129:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            {
                              "id": 13480,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13460,
                              "src": "16635:5:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 13466,
                              "name": "ObservationLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12592,
                              "src": "16424:14:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ObservationLib_$12592_$",
                                "typeString": "type(library ObservationLib)"
                              }
                            },
                            "id": 13467,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "Observation",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12454,
                            "src": "16424:26:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_Observation_$12454_storage_ptr_$",
                              "typeString": "type(struct ObservationLib.Observation storage pointer)"
                            }
                          },
                          "id": 13481,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [
                            "amount",
                            "timestamp"
                          ],
                          "nodeType": "FunctionCall",
                          "src": "16424:231:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "functionReturnParameters": 13465,
                        "id": 13482,
                        "nodeType": "Return",
                        "src": "16405:250:57"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13453,
                    "nodeType": "StructuredDocumentation",
                    "src": "15644:453:57",
                    "text": " @notice Calculates the next TWAB using the newestTwab and updated balance.\n @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\n @param _currentTwab    Newest Observation in the Account.twabs list\n @param _currentBalance User balance at time of most recent (newest) checkpoint write\n @param _time           Current block.timestamp\n @return TWAB Observation"
                  },
                  "id": 13484,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_computeNextTwab",
                  "nameLocation": "16111:16:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13461,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13456,
                        "mutability": "mutable",
                        "name": "_currentTwab",
                        "nameLocation": "16171:12:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13484,
                        "src": "16137:46:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 13455,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13454,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "16137:26:57"
                          },
                          "referencedDeclaration": 12454,
                          "src": "16137:26:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13458,
                        "mutability": "mutable",
                        "name": "_currentBalance",
                        "nameLocation": "16201:15:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13484,
                        "src": "16193:23:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 13457,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "16193:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13460,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "16233:5:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13484,
                        "src": "16226:12:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13459,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "16226:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16127:117:57"
                  },
                  "returnParameters": {
                    "id": 13465,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13464,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13484,
                        "src": "16267:33:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 13463,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13462,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "16267:26:57"
                          },
                          "referencedDeclaration": 12454,
                          "src": "16267:26:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16266:35:57"
                  },
                  "scope": 13599,
                  "src": "16102:560:57",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 13558,
                    "nodeType": "Block",
                    "src": "17576:627:57",
                    "statements": [
                      {
                        "assignments": [
                          null,
                          13510
                        ],
                        "declarations": [
                          null,
                          {
                            "constant": false,
                            "id": 13510,
                            "mutability": "mutable",
                            "name": "_newestTwab",
                            "nameLocation": "17623:11:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13558,
                            "src": "17589:45:57",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 13509,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13508,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "17589:26:57"
                              },
                              "referencedDeclaration": 12454,
                              "src": "17589:26:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13515,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13512,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13490,
                              "src": "17649:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 13513,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13493,
                              "src": "17657:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            ],
                            "id": 13511,
                            "name": "newestTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13103,
                            "src": "17638:10:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 13514,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "17638:35:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "17586:87:57"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 13519,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 13516,
                              "name": "_newestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13510,
                              "src": "17734:11:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 13517,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12453,
                            "src": "17734:21:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 13518,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13495,
                            "src": "17759:12:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "17734:37:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13526,
                        "nodeType": "IfStatement",
                        "src": "17730:112:57",
                        "trueBody": {
                          "id": 13525,
                          "nodeType": "Block",
                          "src": "17773:69:57",
                          "statements": [
                            {
                              "expression": {
                                "components": [
                                  {
                                    "id": 13520,
                                    "name": "_accountDetails",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13493,
                                    "src": "17795:15:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                      "typeString": "struct TwabLib.AccountDetails memory"
                                    }
                                  },
                                  {
                                    "id": 13521,
                                    "name": "_newestTwab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13510,
                                    "src": "17812:11:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  {
                                    "hexValue": "66616c7365",
                                    "id": 13522,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "bool",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "17825:5:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    "value": "false"
                                  }
                                ],
                                "id": 13523,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "17794:37:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                                  "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                                }
                              },
                              "functionReturnParameters": 13505,
                              "id": 13524,
                              "nodeType": "Return",
                              "src": "17787:44:57"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          13531
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13531,
                            "mutability": "mutable",
                            "name": "newTwab",
                            "nameLocation": "17886:7:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13558,
                            "src": "17852:41:57",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 13530,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13529,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12454,
                                "src": "17852:26:57"
                              },
                              "referencedDeclaration": 12454,
                              "src": "17852:26:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13538,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13533,
                              "name": "_newestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13510,
                              "src": "17926:11:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "expression": {
                                "id": 13534,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13493,
                                "src": "17951:15:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              "id": 13535,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "balance",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12868,
                              "src": "17951:23:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            {
                              "id": 13536,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13495,
                              "src": "17988:12:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 13532,
                            "name": "_computeNextTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13484,
                            "src": "17896:16:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Observation_$12454_memory_ptr_$_t_uint224_$_t_uint32_$returns$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation memory,uint224,uint32) pure returns (struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 13537,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "17896:114:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "17852:158:57"
                      },
                      {
                        "expression": {
                          "id": 13544,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 13539,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13490,
                              "src": "18021:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            "id": 13542,
                            "indexExpression": {
                              "expression": {
                                "id": 13540,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13493,
                                "src": "18028:15:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              "id": 13541,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "nextTwabIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12870,
                              "src": "18028:29:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "18021:37:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage",
                              "typeString": "struct ObservationLib.Observation storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 13543,
                            "name": "newTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13531,
                            "src": "18061:7:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                              "typeString": "struct ObservationLib.Observation memory"
                            }
                          },
                          "src": "18021:47:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage",
                            "typeString": "struct ObservationLib.Observation storage ref"
                          }
                        },
                        "id": 13545,
                        "nodeType": "ExpressionStatement",
                        "src": "18021:47:57"
                      },
                      {
                        "assignments": [
                          13548
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13548,
                            "mutability": "mutable",
                            "name": "nextAccountDetails",
                            "nameLocation": "18101:18:57",
                            "nodeType": "VariableDeclaration",
                            "scope": 13558,
                            "src": "18079:40:57",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 13547,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13546,
                                "name": "AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12873,
                                "src": "18079:14:57"
                              },
                              "referencedDeclaration": 12873,
                              "src": "18079:14:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13552,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13550,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13493,
                              "src": "18127:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            ],
                            "id": 13549,
                            "name": "push",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13598,
                            "src": "18122:4:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_AccountDetails_$12873_memory_ptr_$returns$_t_struct$_AccountDetails_$12873_memory_ptr_$",
                              "typeString": "function (struct TwabLib.AccountDetails memory) pure returns (struct TwabLib.AccountDetails memory)"
                            }
                          },
                          "id": 13551,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "18122:21:57",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                            "typeString": "struct TwabLib.AccountDetails memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "18079:64:57"
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "id": 13553,
                              "name": "nextAccountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13548,
                              "src": "18162:18:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 13554,
                              "name": "newTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13531,
                              "src": "18182:7:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "hexValue": "74727565",
                              "id": 13555,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "bool",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "18191:4:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "value": "true"
                            }
                          ],
                          "id": 13556,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "18161:35:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                            "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                          }
                        },
                        "functionReturnParameters": 13505,
                        "id": 13557,
                        "nodeType": "Return",
                        "src": "18154:42:57"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13485,
                    "nodeType": "StructuredDocumentation",
                    "src": "16668:561:57",
                    "text": "@notice Sets a new TWAB Observation at the next available index and returns the new account details.\n @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\n @param _twabs The twabs array to insert into\n @param _accountDetails The current account details\n @param _currentTime The current time\n @return accountDetails The new account details\n @return twab The newest twab (may or may not be brand-new)\n @return isNew Whether the newest twab was created by this call"
                  },
                  "id": 13559,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_nextTwab",
                  "nameLocation": "17243:9:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13496,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13490,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "17314:6:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13559,
                        "src": "17262:58:57",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 13487,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 13486,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12454,
                              "src": "17262:26:57"
                            },
                            "referencedDeclaration": 12454,
                            "src": "17262:26:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 13489,
                          "length": {
                            "id": 13488,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12866,
                            "src": "17289:15:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "17262:43:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13493,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "17352:15:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13559,
                        "src": "17330:37:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 13492,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13491,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "17330:14:57"
                          },
                          "referencedDeclaration": 12873,
                          "src": "17330:14:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13495,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "17384:12:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13559,
                        "src": "17377:19:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13494,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "17377:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "17252:150:57"
                  },
                  "returnParameters": {
                    "id": 13505,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13499,
                        "mutability": "mutable",
                        "name": "accountDetails",
                        "nameLocation": "17471:14:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13559,
                        "src": "17449:36:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 13498,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13497,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "17449:14:57"
                          },
                          "referencedDeclaration": 12873,
                          "src": "17449:14:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13502,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "17533:4:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13559,
                        "src": "17499:38:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 13501,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13500,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "17499:26:57"
                          },
                          "referencedDeclaration": 12454,
                          "src": "17499:26:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13504,
                        "mutability": "mutable",
                        "name": "isNew",
                        "nameLocation": "17556:5:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13559,
                        "src": "17551:10:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 13503,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "17551:4:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "17435:136:57"
                  },
                  "scope": 13599,
                  "src": "17234:969:57",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 13597,
                    "nodeType": "Block",
                    "src": "18585:739:57",
                    "statements": [
                      {
                        "expression": {
                          "id": 13581,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 13569,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13563,
                              "src": "18595:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            "id": 13571,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "nextTwabIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12870,
                            "src": "18595:29:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 13576,
                                      "name": "_accountDetails",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 13563,
                                      "src": "18671:15:57",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    "id": 13577,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "nextTwabIndex",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12870,
                                    "src": "18671:29:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  },
                                  {
                                    "id": 13578,
                                    "name": "MAX_CARDINALITY",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12866,
                                    "src": "18702:15:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    },
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  ],
                                  "expression": {
                                    "id": 13574,
                                    "name": "RingBufferLib",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12849,
                                    "src": "18647:13:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12849_$",
                                      "typeString": "type(library RingBufferLib)"
                                    }
                                  },
                                  "id": 13575,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "nextIndex",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12848,
                                  "src": "18647:23:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                    "typeString": "function (uint256,uint256) pure returns (uint256)"
                                  }
                                },
                                "id": 13579,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "18647:71:57",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 13573,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "18627:6:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint24_$",
                                "typeString": "type(uint24)"
                              },
                              "typeName": {
                                "id": 13572,
                                "name": "uint24",
                                "nodeType": "ElementaryTypeName",
                                "src": "18627:6:57",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 13580,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "18627:101:57",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "18595:133:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 13582,
                        "nodeType": "ExpressionStatement",
                        "src": "18595:133:57"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          },
                          "id": 13586,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 13583,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13563,
                              "src": "19181:15:57",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            "id": 13584,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "cardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12872,
                            "src": "19181:27:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 13585,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12866,
                            "src": "19211:15:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "19181:45:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13594,
                        "nodeType": "IfStatement",
                        "src": "19177:108:57",
                        "trueBody": {
                          "id": 13593,
                          "nodeType": "Block",
                          "src": "19228:57:57",
                          "statements": [
                            {
                              "expression": {
                                "id": 13591,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "expression": {
                                    "id": 13587,
                                    "name": "_accountDetails",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13563,
                                    "src": "19242:15:57",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                      "typeString": "struct TwabLib.AccountDetails memory"
                                    }
                                  },
                                  "id": 13589,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "memberName": "cardinality",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12872,
                                  "src": "19242:27:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint24",
                                    "typeString": "uint24"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "+=",
                                "rightHandSide": {
                                  "hexValue": "31",
                                  "id": 13590,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "19273:1:57",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_1_by_1",
                                    "typeString": "int_const 1"
                                  },
                                  "value": "1"
                                },
                                "src": "19242:32:57",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              "id": 13592,
                              "nodeType": "ExpressionStatement",
                              "src": "19242:32:57"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 13595,
                          "name": "_accountDetails",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13563,
                          "src": "19302:15:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                            "typeString": "struct TwabLib.AccountDetails memory"
                          }
                        },
                        "functionReturnParameters": 13568,
                        "id": 13596,
                        "nodeType": "Return",
                        "src": "19295:22:57"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13560,
                    "nodeType": "StructuredDocumentation",
                    "src": "18209:244:57",
                    "text": "@notice \"Pushes\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\n @param _accountDetails The account details from which to pull the cardinality and next index\n @return The new AccountDetails"
                  },
                  "id": 13598,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "push",
                  "nameLocation": "18467:4:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13564,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13563,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "18494:15:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 13598,
                        "src": "18472:37:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 13562,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13561,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "18472:14:57"
                          },
                          "referencedDeclaration": 12873,
                          "src": "18472:14:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "18471:39:57"
                  },
                  "returnParameters": {
                    "id": 13568,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13567,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13598,
                        "src": "18558:21:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 13566,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13565,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "18558:14:57"
                          },
                          "referencedDeclaration": 12873,
                          "src": "18558:14:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "18557:23:57"
                  },
                  "scope": 13599,
                  "src": "18458:866:57",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 13600,
              "src": "934:18392:57",
              "usedErrors": []
            }
          ],
          "src": "37:19290:57"
        },
        "id": 57
      },
      "contracts/permit/EIP2612PermitAndDeposit.sol": {
        "ast": {
          "absolutePath": "contracts/permit/EIP2612PermitAndDeposit.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "DelegateSignature": [
              13621
            ],
            "EIP2612PermitAndDeposit": [
              13824
            ],
            "ExtendedSafeCastLib": [
              12433
            ],
            "ICompLike": [
              11027
            ],
            "IControlledToken": [
              11069
            ],
            "IERC20": [
              663
            ],
            "IERC20Permit": [
              893
            ],
            "IPrizePool": [
              11883
            ],
            "ITicket": [
              12213
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ],
            "Signature": [
              13615
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 13825,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 13601,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:58"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 13602,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13825,
              "sourceUnit": 664,
              "src": "61:56:58",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol",
              "file": "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol",
              "id": 13603,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13825,
              "sourceUnit": 894,
              "src": "118:79:58",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 13604,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13825,
              "sourceUnit": 1118,
              "src": "198:65:58",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IPrizePool.sol",
              "file": "../interfaces/IPrizePool.sol",
              "id": 13605,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13825,
              "sourceUnit": 11884,
              "src": "265:38:58",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/ITicket.sol",
              "file": "../interfaces/ITicket.sol",
              "id": 13606,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13825,
              "sourceUnit": 12214,
              "src": "304:35:58",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "canonicalName": "Signature",
              "id": 13615,
              "members": [
                {
                  "constant": false,
                  "id": 13608,
                  "mutability": "mutable",
                  "name": "deadline",
                  "nameLocation": "602:8:58",
                  "nodeType": "VariableDeclaration",
                  "scope": 13615,
                  "src": "594:16:58",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 13607,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "594:7:58",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13610,
                  "mutability": "mutable",
                  "name": "v",
                  "nameLocation": "622:1:58",
                  "nodeType": "VariableDeclaration",
                  "scope": 13615,
                  "src": "616:7:58",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint8",
                    "typeString": "uint8"
                  },
                  "typeName": {
                    "id": 13609,
                    "name": "uint8",
                    "nodeType": "ElementaryTypeName",
                    "src": "616:5:58",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13612,
                  "mutability": "mutable",
                  "name": "r",
                  "nameLocation": "637:1:58",
                  "nodeType": "VariableDeclaration",
                  "scope": 13615,
                  "src": "629:9:58",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 13611,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "629:7:58",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13614,
                  "mutability": "mutable",
                  "name": "s",
                  "nameLocation": "652:1:58",
                  "nodeType": "VariableDeclaration",
                  "scope": 13615,
                  "src": "644:9:58",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 13613,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "644:7:58",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "internal"
                }
              ],
              "name": "Signature",
              "nameLocation": "578:9:58",
              "nodeType": "StructDefinition",
              "scope": 13825,
              "src": "571:85:58",
              "visibility": "public"
            },
            {
              "canonicalName": "DelegateSignature",
              "id": 13621,
              "members": [
                {
                  "constant": false,
                  "id": 13617,
                  "mutability": "mutable",
                  "name": "delegate",
                  "nameLocation": "883:8:58",
                  "nodeType": "VariableDeclaration",
                  "scope": 13621,
                  "src": "875:16:58",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 13616,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "875:7:58",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13620,
                  "mutability": "mutable",
                  "name": "signature",
                  "nameLocation": "907:9:58",
                  "nodeType": "VariableDeclaration",
                  "scope": 13621,
                  "src": "897:19:58",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Signature_$13615_storage_ptr",
                    "typeString": "struct Signature"
                  },
                  "typeName": {
                    "id": 13619,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 13618,
                      "name": "Signature",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 13615,
                      "src": "897:9:58"
                    },
                    "referencedDeclaration": 13615,
                    "src": "897:9:58",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Signature_$13615_storage_ptr",
                      "typeString": "struct Signature"
                    }
                  },
                  "visibility": "internal"
                }
              ],
              "name": "DelegateSignature",
              "nameLocation": "851:17:58",
              "nodeType": "StructDefinition",
              "scope": 13825,
              "src": "844:75:58",
              "visibility": "public"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 13622,
                "nodeType": "StructuredDocumentation",
                "src": "921:188:58",
                "text": "@title Allows users to approve and deposit EIP-2612 compatible tokens into a prize pool in a single transaction.\n @custom:experimental This contract has not been fully audited yet."
              },
              "fullyImplemented": true,
              "id": 13824,
              "linearizedBaseContracts": [
                13824
              ],
              "name": "EIP2612PermitAndDeposit",
              "nameLocation": "1118:23:58",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 13626,
                  "libraryName": {
                    "id": 13623,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1117,
                    "src": "1154:9:58"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1148:27:58",
                  "typeName": {
                    "id": 13625,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 13624,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "1168:6:58"
                    },
                    "referencedDeclaration": 663,
                    "src": "1168:6:58",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "body": {
                    "id": 13689,
                    "nodeType": "Block",
                    "src": "1919:546:58",
                    "statements": [
                      {
                        "assignments": [
                          13645
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13645,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "1937:7:58",
                            "nodeType": "VariableDeclaration",
                            "scope": 13689,
                            "src": "1929:15:58",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$12213",
                              "typeString": "contract ITicket"
                            },
                            "typeName": {
                              "id": 13644,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13643,
                                "name": "ITicket",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12213,
                                "src": "1929:7:58"
                              },
                              "referencedDeclaration": 12213,
                              "src": "1929:7:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13649,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 13646,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13630,
                              "src": "1947:10:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 13647,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getTicket",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11792,
                            "src": "1947:20:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_contract$_ITicket_$12213_$",
                              "typeString": "function () view external returns (contract ITicket)"
                            }
                          },
                          "id": 13648,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1947:22:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1929:40:58"
                      },
                      {
                        "assignments": [
                          13651
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13651,
                            "mutability": "mutable",
                            "name": "_token",
                            "nameLocation": "1987:6:58",
                            "nodeType": "VariableDeclaration",
                            "scope": 13689,
                            "src": "1979:14:58",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 13650,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "1979:7:58",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13655,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 13652,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13630,
                              "src": "1996:10:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 13653,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getToken",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11798,
                            "src": "1996:19:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                              "typeString": "function () view external returns (address)"
                            }
                          },
                          "id": 13654,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1996:21:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1979:38:58"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13660,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "2069:3:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 13661,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "2069:10:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 13664,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "2101:4:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_EIP2612PermitAndDeposit_$13824",
                                    "typeString": "contract EIP2612PermitAndDeposit"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_EIP2612PermitAndDeposit_$13824",
                                    "typeString": "contract EIP2612PermitAndDeposit"
                                  }
                                ],
                                "id": 13663,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2093:7:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 13662,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2093:7:58",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 13665,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2093:13:58",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13666,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13632,
                              "src": "2120:7:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "expression": {
                                "id": 13667,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13637,
                                "src": "2141:16:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13615_calldata_ptr",
                                  "typeString": "struct Signature calldata"
                                }
                              },
                              "id": 13668,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "deadline",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13608,
                              "src": "2141:25:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "expression": {
                                "id": 13669,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13637,
                                "src": "2180:16:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13615_calldata_ptr",
                                  "typeString": "struct Signature calldata"
                                }
                              },
                              "id": 13670,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "v",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13610,
                              "src": "2180:18:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "expression": {
                                "id": 13671,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13637,
                                "src": "2212:16:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13615_calldata_ptr",
                                  "typeString": "struct Signature calldata"
                                }
                              },
                              "id": 13672,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "r",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13612,
                              "src": "2212:18:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "expression": {
                                "id": 13673,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13637,
                                "src": "2244:16:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13615_calldata_ptr",
                                  "typeString": "struct Signature calldata"
                                }
                              },
                              "id": 13674,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "s",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13614,
                              "src": "2244:18:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 13657,
                                  "name": "_token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13651,
                                  "src": "2041:6:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 13656,
                                "name": "IERC20Permit",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 893,
                                "src": "2028:12:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20Permit_$893_$",
                                  "typeString": "type(contract IERC20Permit)"
                                }
                              },
                              "id": 13658,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2028:20:58",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20Permit_$893",
                                "typeString": "contract IERC20Permit"
                              }
                            },
                            "id": 13659,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "permit",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 878,
                            "src": "2028:27:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$__$",
                              "typeString": "function (address,address,uint256,uint256,uint8,bytes32,bytes32) external"
                            }
                          },
                          "id": 13675,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2028:244:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13676,
                        "nodeType": "ExpressionStatement",
                        "src": "2028:244:58"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 13680,
                                  "name": "_prizePool",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13630,
                                  "src": "2326:10:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                    "typeString": "contract IPrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                    "typeString": "contract IPrizePool"
                                  }
                                ],
                                "id": 13679,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2318:7:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 13678,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2318:7:58",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 13681,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2318:19:58",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13682,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13645,
                              "src": "2351:7:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 13683,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13651,
                              "src": "2372:6:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13684,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13632,
                              "src": "2392:7:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 13685,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13634,
                              "src": "2413:3:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13686,
                              "name": "_delegateSignature",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13640,
                              "src": "2430:18:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_DelegateSignature_$13621_calldata_ptr",
                                "typeString": "struct DelegateSignature calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_struct$_DelegateSignature_$13621_calldata_ptr",
                                "typeString": "struct DelegateSignature calldata"
                              }
                            ],
                            "id": 13677,
                            "name": "_depositToAndDelegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13780,
                            "src": "2283:21:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_contract$_ITicket_$12213_$_t_address_$_t_uint256_$_t_address_$_t_struct$_DelegateSignature_$13621_calldata_ptr_$returns$__$",
                              "typeString": "function (address,contract ITicket,address,uint256,address,struct DelegateSignature calldata)"
                            }
                          },
                          "id": 13687,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2283:175:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13688,
                        "nodeType": "ExpressionStatement",
                        "src": "2283:175:58"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13627,
                    "nodeType": "StructuredDocumentation",
                    "src": "1181:502:58",
                    "text": " @notice Permits this contract to spend on a user's behalf and deposits into the prize pool.\n @dev The `spender` address required by the permit function is the address of this contract.\n @param _prizePool Address of the prize pool to deposit into\n @param _amount Amount of tokens to deposit into the prize pool\n @param _to Address that will receive the tickets\n @param _permitSignature Permit signature\n @param _delegateSignature Delegate signature"
                  },
                  "functionSelector": "a81bc43b",
                  "id": 13690,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "permitAndDepositToAndDelegate",
                  "nameLocation": "1697:29:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13641,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13630,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "1747:10:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13690,
                        "src": "1736:21:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$11883",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 13629,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13628,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11883,
                            "src": "1736:10:58"
                          },
                          "referencedDeclaration": 11883,
                          "src": "1736:10:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11883",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13632,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "1775:7:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13690,
                        "src": "1767:15:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13631,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1767:7:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13634,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "1800:3:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13690,
                        "src": "1792:11:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13633,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1792:7:58",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13637,
                        "mutability": "mutable",
                        "name": "_permitSignature",
                        "nameLocation": "1832:16:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13690,
                        "src": "1813:35:58",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Signature_$13615_calldata_ptr",
                          "typeString": "struct Signature"
                        },
                        "typeName": {
                          "id": 13636,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13635,
                            "name": "Signature",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 13615,
                            "src": "1813:9:58"
                          },
                          "referencedDeclaration": 13615,
                          "src": "1813:9:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Signature_$13615_storage_ptr",
                            "typeString": "struct Signature"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13640,
                        "mutability": "mutable",
                        "name": "_delegateSignature",
                        "nameLocation": "1885:18:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13690,
                        "src": "1858:45:58",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_DelegateSignature_$13621_calldata_ptr",
                          "typeString": "struct DelegateSignature"
                        },
                        "typeName": {
                          "id": 13639,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13638,
                            "name": "DelegateSignature",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 13621,
                            "src": "1858:17:58"
                          },
                          "referencedDeclaration": 13621,
                          "src": "1858:17:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_DelegateSignature_$13621_storage_ptr",
                            "typeString": "struct DelegateSignature"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1726:183:58"
                  },
                  "returnParameters": {
                    "id": 13642,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1919:0:58"
                  },
                  "scope": 13824,
                  "src": "1688:777:58",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 13729,
                    "nodeType": "Block",
                    "src": "2988:291:58",
                    "statements": [
                      {
                        "assignments": [
                          13706
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13706,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "3006:7:58",
                            "nodeType": "VariableDeclaration",
                            "scope": 13729,
                            "src": "2998:15:58",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$12213",
                              "typeString": "contract ITicket"
                            },
                            "typeName": {
                              "id": 13705,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13704,
                                "name": "ITicket",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12213,
                                "src": "2998:7:58"
                              },
                              "referencedDeclaration": 12213,
                              "src": "2998:7:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13710,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 13707,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13694,
                              "src": "3016:10:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 13708,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getTicket",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11792,
                            "src": "3016:20:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_contract$_ITicket_$12213_$",
                              "typeString": "function () view external returns (contract ITicket)"
                            }
                          },
                          "id": 13709,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3016:22:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2998:40:58"
                      },
                      {
                        "assignments": [
                          13712
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13712,
                            "mutability": "mutable",
                            "name": "_token",
                            "nameLocation": "3056:6:58",
                            "nodeType": "VariableDeclaration",
                            "scope": 13729,
                            "src": "3048:14:58",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 13711,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "3048:7:58",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13716,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 13713,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13694,
                              "src": "3065:10:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 13714,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getToken",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11798,
                            "src": "3065:19:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                              "typeString": "function () view external returns (address)"
                            }
                          },
                          "id": 13715,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3065:21:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3048:38:58"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 13720,
                                  "name": "_prizePool",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13694,
                                  "src": "3140:10:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                    "typeString": "contract IPrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                    "typeString": "contract IPrizePool"
                                  }
                                ],
                                "id": 13719,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3132:7:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 13718,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3132:7:58",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 13721,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3132:19:58",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13722,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13706,
                              "src": "3165:7:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 13723,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13712,
                              "src": "3186:6:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13724,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13696,
                              "src": "3206:7:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 13725,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13698,
                              "src": "3227:3:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13726,
                              "name": "_delegateSignature",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13701,
                              "src": "3244:18:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_DelegateSignature_$13621_calldata_ptr",
                                "typeString": "struct DelegateSignature calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_struct$_DelegateSignature_$13621_calldata_ptr",
                                "typeString": "struct DelegateSignature calldata"
                              }
                            ],
                            "id": 13717,
                            "name": "_depositToAndDelegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13780,
                            "src": "3097:21:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_contract$_ITicket_$12213_$_t_address_$_t_uint256_$_t_address_$_t_struct$_DelegateSignature_$13621_calldata_ptr_$returns$__$",
                              "typeString": "function (address,contract ITicket,address,uint256,address,struct DelegateSignature calldata)"
                            }
                          },
                          "id": 13727,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3097:175:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13728,
                        "nodeType": "ExpressionStatement",
                        "src": "3097:175:58"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13691,
                    "nodeType": "StructuredDocumentation",
                    "src": "2471:335:58",
                    "text": " @notice Deposits user's token into the prize pool and delegate tickets.\n @param _prizePool Address of the prize pool to deposit into\n @param _amount Amount of tokens to deposit into the prize pool\n @param _to Address that will receive the tickets\n @param _delegateSignature Delegate signature"
                  },
                  "functionSelector": "c00dbd51",
                  "id": 13730,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "depositToAndDelegate",
                  "nameLocation": "2820:20:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13702,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13694,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "2861:10:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13730,
                        "src": "2850:21:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$11883",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 13693,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13692,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11883,
                            "src": "2850:10:58"
                          },
                          "referencedDeclaration": 11883,
                          "src": "2850:10:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11883",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13696,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "2889:7:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13730,
                        "src": "2881:15:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13695,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2881:7:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13698,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "2914:3:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13730,
                        "src": "2906:11:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13697,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2906:7:58",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13701,
                        "mutability": "mutable",
                        "name": "_delegateSignature",
                        "nameLocation": "2954:18:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13730,
                        "src": "2927:45:58",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_DelegateSignature_$13621_calldata_ptr",
                          "typeString": "struct DelegateSignature"
                        },
                        "typeName": {
                          "id": 13700,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13699,
                            "name": "DelegateSignature",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 13621,
                            "src": "2927:17:58"
                          },
                          "referencedDeclaration": 13621,
                          "src": "2927:17:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_DelegateSignature_$13621_storage_ptr",
                            "typeString": "struct DelegateSignature"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2840:138:58"
                  },
                  "returnParameters": {
                    "id": 13703,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2988:0:58"
                  },
                  "scope": 13824,
                  "src": "2811:468:58",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 13779,
                    "nodeType": "Block",
                    "src": "3996:356:58",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13749,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13738,
                              "src": "4017:6:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "id": 13750,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "4025:3:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 13751,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "4025:10:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13752,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13740,
                              "src": "4037:7:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 13753,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13733,
                              "src": "4046:10:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13754,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13742,
                              "src": "4058:3:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 13748,
                            "name": "_depositTo",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13823,
                            "src": "4006:10:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address,uint256,address,address)"
                            }
                          },
                          "id": 13755,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4006:56:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13756,
                        "nodeType": "ExpressionStatement",
                        "src": "4006:56:58"
                      },
                      {
                        "assignments": [
                          13759
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13759,
                            "mutability": "mutable",
                            "name": "signature",
                            "nameLocation": "4090:9:58",
                            "nodeType": "VariableDeclaration",
                            "scope": 13779,
                            "src": "4073:26:58",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Signature_$13615_memory_ptr",
                              "typeString": "struct Signature"
                            },
                            "typeName": {
                              "id": 13758,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13757,
                                "name": "Signature",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 13615,
                                "src": "4073:9:58"
                              },
                              "referencedDeclaration": 13615,
                              "src": "4073:9:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Signature_$13615_storage_ptr",
                                "typeString": "struct Signature"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13762,
                        "initialValue": {
                          "expression": {
                            "id": 13760,
                            "name": "_delegateSignature",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13745,
                            "src": "4102:18:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_DelegateSignature_$13621_calldata_ptr",
                              "typeString": "struct DelegateSignature calldata"
                            }
                          },
                          "id": 13761,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "signature",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 13620,
                          "src": "4102:28:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Signature_$13615_calldata_ptr",
                            "typeString": "struct Signature calldata"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4073:57:58"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13766,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13742,
                              "src": "4184:3:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "id": 13767,
                                "name": "_delegateSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13745,
                                "src": "4201:18:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_DelegateSignature_$13621_calldata_ptr",
                                  "typeString": "struct DelegateSignature calldata"
                                }
                              },
                              "id": 13768,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "delegate",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13617,
                              "src": "4201:27:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "id": 13769,
                                "name": "signature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13759,
                                "src": "4242:9:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13615_memory_ptr",
                                  "typeString": "struct Signature memory"
                                }
                              },
                              "id": 13770,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "deadline",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13608,
                              "src": "4242:18:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "expression": {
                                "id": 13771,
                                "name": "signature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13759,
                                "src": "4274:9:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13615_memory_ptr",
                                  "typeString": "struct Signature memory"
                                }
                              },
                              "id": 13772,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "v",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13610,
                              "src": "4274:11:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "expression": {
                                "id": 13773,
                                "name": "signature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13759,
                                "src": "4299:9:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13615_memory_ptr",
                                  "typeString": "struct Signature memory"
                                }
                              },
                              "id": 13774,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "r",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13612,
                              "src": "4299:11:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "expression": {
                                "id": 13775,
                                "name": "signature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13759,
                                "src": "4324:9:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13615_memory_ptr",
                                  "typeString": "struct Signature memory"
                                }
                              },
                              "id": 13776,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "s",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13614,
                              "src": "4324:11:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "expression": {
                              "id": 13763,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13736,
                              "src": "4141:7:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 13765,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "delegateWithSignature",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12112,
                            "src": "4141:29:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$__$",
                              "typeString": "function (address,address,uint256,uint8,bytes32,bytes32) external"
                            }
                          },
                          "id": 13777,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4141:204:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13778,
                        "nodeType": "ExpressionStatement",
                        "src": "4141:204:58"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13731,
                    "nodeType": "StructuredDocumentation",
                    "src": "3285:482:58",
                    "text": " @notice Deposits user's token into the prize pool and delegate tickets.\n @param _prizePool Address of the prize pool to deposit into\n @param _ticket Address of the ticket minted by the prize pool\n @param _token Address of the token used to deposit into the prize pool\n @param _amount Amount of tokens to deposit into the prize pool\n @param _to Address that will receive the tickets\n @param _delegateSignature Delegate signature"
                  },
                  "id": 13780,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_depositToAndDelegate",
                  "nameLocation": "3781:21:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13746,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13733,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "3820:10:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13780,
                        "src": "3812:18:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13732,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3812:7:58",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13736,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "3848:7:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13780,
                        "src": "3840:15:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 13735,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13734,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "3840:7:58"
                          },
                          "referencedDeclaration": 12213,
                          "src": "3840:7:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13738,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "3873:6:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13780,
                        "src": "3865:14:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13737,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3865:7:58",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13740,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "3897:7:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13780,
                        "src": "3889:15:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13739,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3889:7:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13742,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "3922:3:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13780,
                        "src": "3914:11:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13741,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3914:7:58",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13745,
                        "mutability": "mutable",
                        "name": "_delegateSignature",
                        "nameLocation": "3962:18:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13780,
                        "src": "3935:45:58",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_DelegateSignature_$13621_calldata_ptr",
                          "typeString": "struct DelegateSignature"
                        },
                        "typeName": {
                          "id": 13744,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13743,
                            "name": "DelegateSignature",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 13621,
                            "src": "3935:17:58"
                          },
                          "referencedDeclaration": 13621,
                          "src": "3935:17:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_DelegateSignature_$13621_storage_ptr",
                            "typeString": "struct DelegateSignature"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3802:184:58"
                  },
                  "returnParameters": {
                    "id": 13747,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3996:0:58"
                  },
                  "scope": 13824,
                  "src": "3772:580:58",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13822,
                    "nodeType": "Block",
                    "src": "4892:203:58",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13798,
                              "name": "_owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13785,
                              "src": "4934:6:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 13801,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "4950:4:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_EIP2612PermitAndDeposit_$13824",
                                    "typeString": "contract EIP2612PermitAndDeposit"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_EIP2612PermitAndDeposit_$13824",
                                    "typeString": "contract EIP2612PermitAndDeposit"
                                  }
                                ],
                                "id": 13800,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4942:7:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 13799,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4942:7:58",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 13802,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4942:13:58",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13803,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13787,
                              "src": "4957:7:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 13795,
                                  "name": "_token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13783,
                                  "src": "4909:6:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 13794,
                                "name": "IERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 663,
                                "src": "4902:6:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20_$663_$",
                                  "typeString": "type(contract IERC20)"
                                }
                              },
                              "id": 13796,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4902:14:58",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 13797,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransferFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 950,
                            "src": "4902:31:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,address,uint256)"
                            }
                          },
                          "id": 13804,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4902:63:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13805,
                        "nodeType": "ExpressionStatement",
                        "src": "4902:63:58"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13810,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13789,
                              "src": "5012:10:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13811,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13787,
                              "src": "5024:7:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 13807,
                                  "name": "_token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13783,
                                  "src": "4982:6:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 13806,
                                "name": "IERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 663,
                                "src": "4975:6:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20_$663_$",
                                  "typeString": "type(contract IERC20)"
                                }
                              },
                              "id": 13808,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4975:14:58",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 13809,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeIncreaseAllowance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1030,
                            "src": "4975:36:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 13812,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4975:57:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13813,
                        "nodeType": "ExpressionStatement",
                        "src": "4975:57:58"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13818,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13791,
                              "src": "5075:3:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13819,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13787,
                              "src": "5080:7:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 13815,
                                  "name": "_prizePool",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13789,
                                  "src": "5053:10:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 13814,
                                "name": "IPrizePool",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11883,
                                "src": "5042:10:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IPrizePool_$11883_$",
                                  "typeString": "type(contract IPrizePool)"
                                }
                              },
                              "id": 13816,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5042:22:58",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 13817,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "depositTo",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11713,
                            "src": "5042:32:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256) external"
                            }
                          },
                          "id": 13820,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5042:46:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13821,
                        "nodeType": "ExpressionStatement",
                        "src": "5042:46:58"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13781,
                    "nodeType": "StructuredDocumentation",
                    "src": "4358:372:58",
                    "text": " @notice Deposits user's token into the prize pool.\n @param _token Address of the EIP-2612 token to approve and deposit\n @param _owner Token owner's address (Authorizer)\n @param _amount Amount of tokens to deposit\n @param _prizePool Address of the prize pool to deposit into\n @param _to Address that will receive the tickets"
                  },
                  "id": 13823,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_depositTo",
                  "nameLocation": "4744:10:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13792,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13783,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "4772:6:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13823,
                        "src": "4764:14:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13782,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4764:7:58",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13785,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "4796:6:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13823,
                        "src": "4788:14:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13784,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4788:7:58",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13787,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "4820:7:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13823,
                        "src": "4812:15:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13786,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4812:7:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13789,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "4845:10:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13823,
                        "src": "4837:18:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13788,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4837:7:58",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13791,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "4873:3:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 13823,
                        "src": "4865:11:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13790,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4865:7:58",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4754:128:58"
                  },
                  "returnParameters": {
                    "id": 13793,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4892:0:58"
                  },
                  "scope": 13824,
                  "src": "4735:360:58",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 13825,
              "src": "1109:3988:58",
              "usedErrors": []
            }
          ],
          "src": "37:5061:58"
        },
        "id": 58
      },
      "contracts/prize-pool/PrizePool.sol": {
        "ast": {
          "absolutePath": "contracts/prize-pool/PrizePool.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "ERC165Checker": [
              3421
            ],
            "ExtendedSafeCastLib": [
              12433
            ],
            "ICompLike": [
              11027
            ],
            "IControlledToken": [
              11069
            ],
            "IERC165": [
              3433
            ],
            "IERC20": [
              663
            ],
            "IERC721": [
              2049
            ],
            "IERC721Receiver": [
              2067
            ],
            "IPrizePool": [
              11883
            ],
            "ITicket": [
              12213
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "Ownable": [
              4086
            ],
            "PrizePool": [
              14875
            ],
            "ReentrancyGuard": [
              39
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 14876,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 13826,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:59"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "file": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "id": 13827,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14876,
              "sourceUnit": 3827,
              "src": "61:57:59",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/security/ReentrancyGuard.sol",
              "file": "@openzeppelin/contracts/security/ReentrancyGuard.sol",
              "id": 13828,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14876,
              "sourceUnit": 40,
              "src": "119:62:59",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721.sol",
              "file": "@openzeppelin/contracts/token/ERC721/IERC721.sol",
              "id": 13829,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14876,
              "sourceUnit": 2050,
              "src": "182:58:59",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol",
              "file": "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol",
              "id": 13830,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14876,
              "sourceUnit": 2068,
              "src": "241:66:59",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol",
              "file": "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol",
              "id": 13831,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14876,
              "sourceUnit": 3422,
              "src": "308:71:59",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 13832,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14876,
              "sourceUnit": 1118,
              "src": "380:65:59",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "id": 13833,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14876,
              "sourceUnit": 4087,
              "src": "446:69:59",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/external/compound/ICompLike.sol",
              "file": "../external/compound/ICompLike.sol",
              "id": 13834,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14876,
              "sourceUnit": 11028,
              "src": "517:44:59",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IPrizePool.sol",
              "file": "../interfaces/IPrizePool.sol",
              "id": 13835,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14876,
              "sourceUnit": 11884,
              "src": "562:38:59",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/ITicket.sol",
              "file": "../interfaces/ITicket.sol",
              "id": 13836,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14876,
              "sourceUnit": 12214,
              "src": "601:35:59",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 13838,
                    "name": "IPrizePool",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11883,
                    "src": "1169:10:59"
                  },
                  "id": 13839,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1169:10:59"
                },
                {
                  "baseName": {
                    "id": 13840,
                    "name": "Ownable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 4086,
                    "src": "1181:7:59"
                  },
                  "id": 13841,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1181:7:59"
                },
                {
                  "baseName": {
                    "id": 13842,
                    "name": "ReentrancyGuard",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 39,
                    "src": "1190:15:59"
                  },
                  "id": 13843,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1190:15:59"
                },
                {
                  "baseName": {
                    "id": 13844,
                    "name": "IERC721Receiver",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2067,
                    "src": "1207:15:59"
                  },
                  "id": 13845,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1207:15:59"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 13837,
                "nodeType": "StructuredDocumentation",
                "src": "638:499:59",
                "text": " @title  PoolTogether V4 PrizePool\n @author PoolTogether Inc Team\n @notice Escrows assets and deposits them into a yield source.  Exposes interest to Prize Strategy.\nUsers deposit and withdraw from this contract to participate in Prize Pool.\nAccounting is managed using Controlled Tokens, whose mint and burn functions can only be called by this contract.\nMust be inherited to provide specific yield-bearing asset control, such as Compound cTokens"
              },
              "fullyImplemented": false,
              "id": 14875,
              "linearizedBaseContracts": [
                14875,
                2067,
                39,
                4086,
                11883
              ],
              "name": "PrizePool",
              "nameLocation": "1156:9:59",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 13848,
                  "libraryName": {
                    "id": 13846,
                    "name": "SafeCast",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3826,
                    "src": "1235:8:59"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1229:27:59",
                  "typeName": {
                    "id": 13847,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1248:7:59",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "id": 13852,
                  "libraryName": {
                    "id": 13849,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1117,
                    "src": "1267:9:59"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1261:27:59",
                  "typeName": {
                    "id": 13851,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 13850,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "1281:6:59"
                    },
                    "referencedDeclaration": 663,
                    "src": "1281:6:59",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "id": 13855,
                  "libraryName": {
                    "id": 13853,
                    "name": "ERC165Checker",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3421,
                    "src": "1299:13:59"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1293:32:59",
                  "typeName": {
                    "id": 13854,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "1317:7:59",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  }
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 13856,
                    "nodeType": "StructuredDocumentation",
                    "src": "1331:26:59",
                    "text": "@notice Semver Version"
                  },
                  "functionSelector": "ffa1ad74",
                  "id": 13859,
                  "mutability": "constant",
                  "name": "VERSION",
                  "nameLocation": "1385:7:59",
                  "nodeType": "VariableDeclaration",
                  "scope": 14875,
                  "src": "1362:40:59",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 13857,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1362:6:59",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": {
                    "hexValue": "342e302e30",
                    "id": 13858,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1395:7:59",
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_81ed76178093786cbe0cb79744f6e7ca3336fbb9fe7d1ddff1f0157b63e09813",
                      "typeString": "literal_string \"4.0.0\""
                    },
                    "value": "4.0.0"
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 13860,
                    "nodeType": "StructuredDocumentation",
                    "src": "1409:77:59",
                    "text": "@notice Prize Pool ticket. Can only be set once by calling `setTicket()`."
                  },
                  "id": 13863,
                  "mutability": "mutable",
                  "name": "ticket",
                  "nameLocation": "1508:6:59",
                  "nodeType": "VariableDeclaration",
                  "scope": 14875,
                  "src": "1491:23:59",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_ITicket_$12213",
                    "typeString": "contract ITicket"
                  },
                  "typeName": {
                    "id": 13862,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 13861,
                      "name": "ITicket",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 12213,
                      "src": "1491:7:59"
                    },
                    "referencedDeclaration": 12213,
                    "src": "1491:7:59",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_ITicket_$12213",
                      "typeString": "contract ITicket"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 13864,
                    "nodeType": "StructuredDocumentation",
                    "src": "1521:64:59",
                    "text": "@notice The Prize Strategy that this Prize Pool is bound to."
                  },
                  "id": 13866,
                  "mutability": "mutable",
                  "name": "prizeStrategy",
                  "nameLocation": "1607:13:59",
                  "nodeType": "VariableDeclaration",
                  "scope": 14875,
                  "src": "1590:30:59",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 13865,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "1590:7:59",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 13867,
                    "nodeType": "StructuredDocumentation",
                    "src": "1627:56:59",
                    "text": "@notice The total amount of tickets a user can hold."
                  },
                  "id": 13869,
                  "mutability": "mutable",
                  "name": "balanceCap",
                  "nameLocation": "1705:10:59",
                  "nodeType": "VariableDeclaration",
                  "scope": 14875,
                  "src": "1688:27:59",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 13868,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1688:7:59",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 13870,
                    "nodeType": "StructuredDocumentation",
                    "src": "1722:67:59",
                    "text": "@notice The total amount of funds that the prize pool can hold."
                  },
                  "id": 13872,
                  "mutability": "mutable",
                  "name": "liquidityCap",
                  "nameLocation": "1811:12:59",
                  "nodeType": "VariableDeclaration",
                  "scope": 14875,
                  "src": "1794:29:59",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 13871,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1794:7:59",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 13873,
                    "nodeType": "StructuredDocumentation",
                    "src": "1830:37:59",
                    "text": "@notice the The awardable balance"
                  },
                  "id": 13875,
                  "mutability": "mutable",
                  "name": "_currentAwardBalance",
                  "nameLocation": "1889:20:59",
                  "nodeType": "VariableDeclaration",
                  "scope": 14875,
                  "src": "1872:37:59",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 13874,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1872:7:59",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13887,
                    "nodeType": "Block",
                    "src": "2062:96:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 13882,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 13879,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "2080:3:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 13880,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "2080:10:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 13881,
                                "name": "prizeStrategy",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13866,
                                "src": "2094:13:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2080:27:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f6f6e6c792d7072697a655374726174656779",
                              "id": 13883,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2109:30:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8",
                                "typeString": "literal_string \"PrizePool/only-prizeStrategy\""
                              },
                              "value": "PrizePool/only-prizeStrategy"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8",
                                "typeString": "literal_string \"PrizePool/only-prizeStrategy\""
                              }
                            ],
                            "id": 13878,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2072:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13884,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2072:68:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13885,
                        "nodeType": "ExpressionStatement",
                        "src": "2072:68:59"
                      },
                      {
                        "id": 13886,
                        "nodeType": "PlaceholderStatement",
                        "src": "2150:1:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13876,
                    "nodeType": "StructuredDocumentation",
                    "src": "1963:65:59",
                    "text": "@dev Function modifier to ensure caller is the prize-strategy"
                  },
                  "id": 13888,
                  "name": "onlyPrizeStrategy",
                  "nameLocation": "2042:17:59",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 13877,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2059:2:59"
                  },
                  "src": "2033:125:59",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13901,
                    "nodeType": "Block",
                    "src": "2309:97:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 13895,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13891,
                                  "src": "2344:7:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 13894,
                                "name": "_canAddLiquidity",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14748,
                                "src": "2327:16:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_bool_$",
                                  "typeString": "function (uint256) view returns (bool)"
                                }
                              },
                              "id": 13896,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2327:25:59",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f657863656564732d6c69717569646974792d636170",
                              "id": 13897,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2354:33:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752",
                                "typeString": "literal_string \"PrizePool/exceeds-liquidity-cap\""
                              },
                              "value": "PrizePool/exceeds-liquidity-cap"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752",
                                "typeString": "literal_string \"PrizePool/exceeds-liquidity-cap\""
                              }
                            ],
                            "id": 13893,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2319:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13898,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2319:69:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13899,
                        "nodeType": "ExpressionStatement",
                        "src": "2319:69:59"
                      },
                      {
                        "id": 13900,
                        "nodeType": "PlaceholderStatement",
                        "src": "2398:1:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13889,
                    "nodeType": "StructuredDocumentation",
                    "src": "2164:98:59",
                    "text": "@dev Function modifier to ensure the deposit amount does not exceed the liquidity cap (if set)"
                  },
                  "id": 13902,
                  "name": "canAddLiquidity",
                  "nameLocation": "2276:15:59",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 13892,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13891,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "2300:7:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 13902,
                        "src": "2292:15:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13890,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2292:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2291:17:59"
                  },
                  "src": "2267:139:59",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13921,
                    "nodeType": "Block",
                    "src": "2615:52:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 13916,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "2647:7:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    },
                                    "typeName": {
                                      "id": 13915,
                                      "name": "uint256",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2647:7:59",
                                      "typeDescriptions": {}
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    }
                                  ],
                                  "id": 13914,
                                  "name": "type",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -27,
                                  "src": "2642:4:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                    "typeString": "function () pure"
                                  }
                                },
                                "id": 13917,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2642:13:59",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_meta_type_t_uint256",
                                  "typeString": "type(uint256)"
                                }
                              },
                              "id": 13918,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "max",
                              "nodeType": "MemberAccess",
                              "src": "2642:17:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 13913,
                            "name": "_setLiquidityCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14793,
                            "src": "2625:16:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 13919,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2625:35:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13920,
                        "nodeType": "ExpressionStatement",
                        "src": "2625:35:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13903,
                    "nodeType": "StructuredDocumentation",
                    "src": "2461:87:59",
                    "text": "@notice Deploy the Prize Pool\n @param _owner Address of the Prize Pool owner"
                  },
                  "id": 13922,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 13908,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13905,
                          "src": "2589:6:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 13909,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 13907,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4086,
                        "src": "2581:7:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2581:15:59"
                    },
                    {
                      "arguments": [],
                      "id": 13911,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 13910,
                        "name": "ReentrancyGuard",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 39,
                        "src": "2597:15:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2597:17:59"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13906,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13905,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "2573:6:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 13922,
                        "src": "2565:14:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13904,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2565:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2564:16:59"
                  },
                  "returnParameters": {
                    "id": 13912,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2615:0:59"
                  },
                  "scope": 14875,
                  "src": "2553:114:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    11767
                  ],
                  "body": {
                    "id": 13932,
                    "nodeType": "Block",
                    "src": "2815:34:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 13929,
                            "name": "_balance",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14860,
                            "src": "2832:8:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$_t_uint256_$",
                              "typeString": "function () returns (uint256)"
                            }
                          },
                          "id": 13930,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2832:10:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 13928,
                        "id": 13931,
                        "nodeType": "Return",
                        "src": "2825:17:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13923,
                    "nodeType": "StructuredDocumentation",
                    "src": "2729:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "b69ef8a8",
                  "id": 13933,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balance",
                  "nameLocation": "2769:7:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13925,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2788:8:59"
                  },
                  "parameters": {
                    "id": 13924,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2776:2:59"
                  },
                  "returnParameters": {
                    "id": 13928,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13927,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13933,
                        "src": "2806:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13926,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2806:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2805:9:59"
                  },
                  "scope": 14875,
                  "src": "2760:89:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11747
                  ],
                  "body": {
                    "id": 13942,
                    "nodeType": "Block",
                    "src": "2951:44:59",
                    "statements": [
                      {
                        "expression": {
                          "id": 13940,
                          "name": "_currentAwardBalance",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13875,
                          "src": "2968:20:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 13939,
                        "id": 13941,
                        "nodeType": "Return",
                        "src": "2961:27:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13934,
                    "nodeType": "StructuredDocumentation",
                    "src": "2855:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "630665b4",
                  "id": 13943,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "awardBalance",
                  "nameLocation": "2895:12:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13936,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2924:8:59"
                  },
                  "parameters": {
                    "id": 13935,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2907:2:59"
                  },
                  "returnParameters": {
                    "id": 13939,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13938,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13943,
                        "src": "2942:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13937,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2942:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2941:9:59"
                  },
                  "scope": 14875,
                  "src": "2886:109:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11761
                  ],
                  "body": {
                    "id": 13956,
                    "nodeType": "Block",
                    "src": "3120:57:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13953,
                              "name": "_externalToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13946,
                              "src": "3155:14:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 13952,
                            "name": "_canAwardExternal",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14847,
                            "src": "3137:17:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                              "typeString": "function (address) view returns (bool)"
                            }
                          },
                          "id": 13954,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3137:33:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 13951,
                        "id": 13955,
                        "nodeType": "Return",
                        "src": "3130:40:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13944,
                    "nodeType": "StructuredDocumentation",
                    "src": "3001:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "6a3fd4f9",
                  "id": 13957,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canAwardExternal",
                  "nameLocation": "3041:16:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13948,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3096:8:59"
                  },
                  "parameters": {
                    "id": 13947,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13946,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "3066:14:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 13957,
                        "src": "3058:22:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13945,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3058:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3057:24:59"
                  },
                  "returnParameters": {
                    "id": 13951,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13950,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13957,
                        "src": "3114:4:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 13949,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3114:4:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3113:6:59"
                  },
                  "scope": 14875,
                  "src": "3032:145:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11813
                  ],
                  "body": {
                    "id": 13971,
                    "nodeType": "Block",
                    "src": "3300:55:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13968,
                              "name": "_controlledToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13961,
                              "src": "3331:16:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            ],
                            "id": 13967,
                            "name": "_isControlled",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14763,
                            "src": "3317:13:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_contract$_ITicket_$12213_$returns$_t_bool_$",
                              "typeString": "function (contract ITicket) view returns (bool)"
                            }
                          },
                          "id": 13969,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3317:31:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 13966,
                        "id": 13970,
                        "nodeType": "Return",
                        "src": "3310:38:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13958,
                    "nodeType": "StructuredDocumentation",
                    "src": "3183:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "78b3d327",
                  "id": 13972,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isControlled",
                  "nameLocation": "3223:12:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13963,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3276:8:59"
                  },
                  "parameters": {
                    "id": 13962,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13961,
                        "mutability": "mutable",
                        "name": "_controlledToken",
                        "nameLocation": "3244:16:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 13972,
                        "src": "3236:24:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 13960,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13959,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "3236:7:59"
                          },
                          "referencedDeclaration": 12213,
                          "src": "3236:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3235:26:59"
                  },
                  "returnParameters": {
                    "id": 13966,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13965,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13972,
                        "src": "3294:4:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 13964,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3294:4:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3293:6:59"
                  },
                  "scope": 14875,
                  "src": "3214:141:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11773
                  ],
                  "body": {
                    "id": 13982,
                    "nodeType": "Block",
                    "src": "3464:44:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 13979,
                            "name": "_ticketTotalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14829,
                            "src": "3481:18:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 13980,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3481:20:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 13978,
                        "id": 13981,
                        "nodeType": "Return",
                        "src": "3474:27:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13973,
                    "nodeType": "StructuredDocumentation",
                    "src": "3361:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "33e5761f",
                  "id": 13983,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAccountedBalance",
                  "nameLocation": "3401:19:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13975,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3437:8:59"
                  },
                  "parameters": {
                    "id": 13974,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3420:2:59"
                  },
                  "returnParameters": {
                    "id": 13978,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13977,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13983,
                        "src": "3455:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13976,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3455:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3454:9:59"
                  },
                  "scope": 14875,
                  "src": "3392:116:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11779
                  ],
                  "body": {
                    "id": 13992,
                    "nodeType": "Block",
                    "src": "3611:34:59",
                    "statements": [
                      {
                        "expression": {
                          "id": 13990,
                          "name": "balanceCap",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13869,
                          "src": "3628:10:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 13989,
                        "id": 13991,
                        "nodeType": "Return",
                        "src": "3621:17:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13984,
                    "nodeType": "StructuredDocumentation",
                    "src": "3514:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "08234319",
                  "id": 13993,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceCap",
                  "nameLocation": "3554:13:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13986,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3584:8:59"
                  },
                  "parameters": {
                    "id": 13985,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3567:2:59"
                  },
                  "returnParameters": {
                    "id": 13989,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13988,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13993,
                        "src": "3602:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13987,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3602:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3601:9:59"
                  },
                  "scope": 14875,
                  "src": "3545:100:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11785
                  ],
                  "body": {
                    "id": 14002,
                    "nodeType": "Block",
                    "src": "3750:36:59",
                    "statements": [
                      {
                        "expression": {
                          "id": 14000,
                          "name": "liquidityCap",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13872,
                          "src": "3767:12:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 13999,
                        "id": 14001,
                        "nodeType": "Return",
                        "src": "3760:19:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13994,
                    "nodeType": "StructuredDocumentation",
                    "src": "3651:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "b15a49c1",
                  "id": 14003,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLiquidityCap",
                  "nameLocation": "3691:15:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13996,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3723:8:59"
                  },
                  "parameters": {
                    "id": 13995,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3706:2:59"
                  },
                  "returnParameters": {
                    "id": 13999,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13998,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14003,
                        "src": "3741:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13997,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3741:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3740:9:59"
                  },
                  "scope": 14875,
                  "src": "3682:104:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11792
                  ],
                  "body": {
                    "id": 14013,
                    "nodeType": "Block",
                    "src": "3885:30:59",
                    "statements": [
                      {
                        "expression": {
                          "id": 14011,
                          "name": "ticket",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13863,
                          "src": "3902:6:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "functionReturnParameters": 14010,
                        "id": 14012,
                        "nodeType": "Return",
                        "src": "3895:13:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14004,
                    "nodeType": "StructuredDocumentation",
                    "src": "3792:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "c002c4d6",
                  "id": 14014,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTicket",
                  "nameLocation": "3832:9:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14006,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3858:8:59"
                  },
                  "parameters": {
                    "id": 14005,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3841:2:59"
                  },
                  "returnParameters": {
                    "id": 14010,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14009,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14014,
                        "src": "3876:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 14008,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14007,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "3876:7:59"
                          },
                          "referencedDeclaration": 12213,
                          "src": "3876:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3875:9:59"
                  },
                  "scope": 14875,
                  "src": "3823:92:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11804
                  ],
                  "body": {
                    "id": 14023,
                    "nodeType": "Block",
                    "src": "4021:37:59",
                    "statements": [
                      {
                        "expression": {
                          "id": 14021,
                          "name": "prizeStrategy",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13866,
                          "src": "4038:13:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 14020,
                        "id": 14022,
                        "nodeType": "Return",
                        "src": "4031:20:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14015,
                    "nodeType": "StructuredDocumentation",
                    "src": "3921:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "d804abaf",
                  "id": 14024,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeStrategy",
                  "nameLocation": "3961:16:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14017,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3994:8:59"
                  },
                  "parameters": {
                    "id": 14016,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3977:2:59"
                  },
                  "returnParameters": {
                    "id": 14020,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14019,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14024,
                        "src": "4012:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14018,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4012:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4011:9:59"
                  },
                  "scope": 14875,
                  "src": "3952:106:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11798
                  ],
                  "body": {
                    "id": 14037,
                    "nodeType": "Block",
                    "src": "4156:41:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 14033,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14854,
                                "src": "4181:6:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_IERC20_$663_$",
                                  "typeString": "function () view returns (contract IERC20)"
                                }
                              },
                              "id": 14034,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4181:8:59",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            ],
                            "id": 14032,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "4173:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_address_$",
                              "typeString": "type(address)"
                            },
                            "typeName": {
                              "id": 14031,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "4173:7:59",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 14035,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4173:17:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 14030,
                        "id": 14036,
                        "nodeType": "Return",
                        "src": "4166:24:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14025,
                    "nodeType": "StructuredDocumentation",
                    "src": "4064:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "21df0da7",
                  "id": 14038,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "4104:8:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14027,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4129:8:59"
                  },
                  "parameters": {
                    "id": 14026,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4112:2:59"
                  },
                  "returnParameters": {
                    "id": 14030,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14029,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14038,
                        "src": "4147:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14028,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4147:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4146:9:59"
                  },
                  "scope": 14875,
                  "src": "4095:102:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11753
                  ],
                  "body": {
                    "id": 14104,
                    "nodeType": "Block",
                    "src": "4314:823:59",
                    "statements": [
                      {
                        "assignments": [
                          14048
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14048,
                            "mutability": "mutable",
                            "name": "ticketTotalSupply",
                            "nameLocation": "4332:17:59",
                            "nodeType": "VariableDeclaration",
                            "scope": 14104,
                            "src": "4324:25:59",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14047,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4324:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14051,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 14049,
                            "name": "_ticketTotalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14829,
                            "src": "4352:18:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 14050,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4352:20:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4324:48:59"
                      },
                      {
                        "assignments": [
                          14053
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14053,
                            "mutability": "mutable",
                            "name": "currentAwardBalance",
                            "nameLocation": "4390:19:59",
                            "nodeType": "VariableDeclaration",
                            "scope": 14104,
                            "src": "4382:27:59",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14052,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4382:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14055,
                        "initialValue": {
                          "id": 14054,
                          "name": "_currentAwardBalance",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13875,
                          "src": "4412:20:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4382:50:59"
                      },
                      {
                        "assignments": [
                          14057
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14057,
                            "mutability": "mutable",
                            "name": "currentBalance",
                            "nameLocation": "4566:14:59",
                            "nodeType": "VariableDeclaration",
                            "scope": 14104,
                            "src": "4558:22:59",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14056,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4558:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14060,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 14058,
                            "name": "_balance",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14860,
                            "src": "4583:8:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$_t_uint256_$",
                              "typeString": "function () returns (uint256)"
                            }
                          },
                          "id": 14059,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4583:10:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4558:35:59"
                      },
                      {
                        "assignments": [
                          14062
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14062,
                            "mutability": "mutable",
                            "name": "totalInterest",
                            "nameLocation": "4611:13:59",
                            "nodeType": "VariableDeclaration",
                            "scope": 14104,
                            "src": "4603:21:59",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14061,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4603:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14072,
                        "initialValue": {
                          "condition": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 14065,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 14063,
                                  "name": "currentBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14057,
                                  "src": "4628:14:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "id": 14064,
                                  "name": "ticketTotalSupply",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14048,
                                  "src": "4645:17:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "4628:34:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 14066,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "4627:36:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "hexValue": "30",
                            "id": 14070,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4727:1:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "id": 14071,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "4627:101:59",
                          "trueExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 14069,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 14067,
                              "name": "currentBalance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14057,
                              "src": "4678:14:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "id": 14068,
                              "name": "ticketTotalSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14048,
                              "src": "4695:17:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "src": "4678:34:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4603:125:59"
                      },
                      {
                        "assignments": [
                          14074
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14074,
                            "mutability": "mutable",
                            "name": "unaccountedPrizeBalance",
                            "nameLocation": "4747:23:59",
                            "nodeType": "VariableDeclaration",
                            "scope": 14104,
                            "src": "4739:31:59",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14073,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4739:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14084,
                        "initialValue": {
                          "condition": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 14077,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 14075,
                                  "name": "totalInterest",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14062,
                                  "src": "4774:13:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "id": 14076,
                                  "name": "currentAwardBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14053,
                                  "src": "4790:19:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "4774:35:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 14078,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "4773:37:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "hexValue": "30",
                            "id": 14082,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4875:1:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "id": 14083,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "4773:103:59",
                          "trueExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 14081,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 14079,
                              "name": "totalInterest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14062,
                              "src": "4825:13:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "id": 14080,
                              "name": "currentAwardBalance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14053,
                              "src": "4841:19:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "src": "4825:35:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4739:137:59"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14087,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14085,
                            "name": "unaccountedPrizeBalance",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14074,
                            "src": "4891:23:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 14086,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4917:1:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "4891:27:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14101,
                        "nodeType": "IfStatement",
                        "src": "4887:207:59",
                        "trueBody": {
                          "id": 14100,
                          "nodeType": "Block",
                          "src": "4920:174:59",
                          "statements": [
                            {
                              "expression": {
                                "id": 14090,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 14088,
                                  "name": "currentAwardBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14053,
                                  "src": "4934:19:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "id": 14089,
                                  "name": "totalInterest",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14062,
                                  "src": "4956:13:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "4934:35:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 14091,
                              "nodeType": "ExpressionStatement",
                              "src": "4934:35:59"
                            },
                            {
                              "expression": {
                                "id": 14094,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 14092,
                                  "name": "_currentAwardBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13875,
                                  "src": "4983:20:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "id": 14093,
                                  "name": "currentAwardBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14053,
                                  "src": "5006:19:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "4983:42:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 14095,
                              "nodeType": "ExpressionStatement",
                              "src": "4983:42:59"
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 14097,
                                    "name": "unaccountedPrizeBalance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14074,
                                    "src": "5059:23:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 14096,
                                  "name": "AwardCaptured",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11615,
                                  "src": "5045:13:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                                    "typeString": "function (uint256)"
                                  }
                                },
                                "id": 14098,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5045:38:59",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 14099,
                              "nodeType": "EmitStatement",
                              "src": "5040:43:59"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 14102,
                          "name": "currentAwardBalance",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14053,
                          "src": "5111:19:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14046,
                        "id": 14103,
                        "nodeType": "Return",
                        "src": "5104:26:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14039,
                    "nodeType": "StructuredDocumentation",
                    "src": "4203:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "e6d8a94b",
                  "id": 14105,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14043,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14042,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 38,
                        "src": "4283:12:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4283:12:59"
                    }
                  ],
                  "name": "captureAwardBalance",
                  "nameLocation": "4243:19:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14041,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4274:8:59"
                  },
                  "parameters": {
                    "id": 14040,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4262:2:59"
                  },
                  "returnParameters": {
                    "id": 14046,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14045,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14105,
                        "src": "4305:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14044,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4305:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4304:9:59"
                  },
                  "scope": 14875,
                  "src": "4234:903:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11713
                  ],
                  "body": {
                    "id": 14126,
                    "nodeType": "Block",
                    "src": "5315:53:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 14120,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "5336:3:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 14121,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "5336:10:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14122,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14108,
                              "src": "5348:3:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14123,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14110,
                              "src": "5353:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14119,
                            "name": "_depositTo",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14211,
                            "src": "5325:10:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 14124,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5325:36:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14125,
                        "nodeType": "ExpressionStatement",
                        "src": "5325:36:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14106,
                    "nodeType": "StructuredDocumentation",
                    "src": "5143:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "ffaad6a5",
                  "id": 14127,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14114,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14113,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 38,
                        "src": "5265:12:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "5265:12:59"
                    },
                    {
                      "arguments": [
                        {
                          "id": 14116,
                          "name": "_amount",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14110,
                          "src": "5302:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        }
                      ],
                      "id": 14117,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14115,
                        "name": "canAddLiquidity",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 13902,
                        "src": "5286:15:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "5286:24:59"
                    }
                  ],
                  "name": "depositTo",
                  "nameLocation": "5183:9:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14112,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5248:8:59"
                  },
                  "parameters": {
                    "id": 14111,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14108,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "5201:3:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14127,
                        "src": "5193:11:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14107,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5193:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14110,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "5214:7:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14127,
                        "src": "5206:15:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14109,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5206:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5192:30:59"
                  },
                  "returnParameters": {
                    "id": 14118,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5315:0:59"
                  },
                  "scope": 14875,
                  "src": "5174:194:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11723
                  ],
                  "body": {
                    "id": 14158,
                    "nodeType": "Block",
                    "src": "5576:114:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 14144,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "5597:3:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 14145,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "5597:10:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14146,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14130,
                              "src": "5609:3:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14147,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14132,
                              "src": "5614:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14143,
                            "name": "_depositTo",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14211,
                            "src": "5586:10:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 14148,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5586:36:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14149,
                        "nodeType": "ExpressionStatement",
                        "src": "5586:36:59"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 14153,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "5661:3:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 14154,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "5661:10:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14155,
                              "name": "_delegate",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14134,
                              "src": "5673:9:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 14150,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13863,
                              "src": "5632:6:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 14152,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "controllerDelegateFor",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12096,
                            "src": "5632:28:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address) external"
                            }
                          },
                          "id": 14156,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5632:51:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14157,
                        "nodeType": "ExpressionStatement",
                        "src": "5632:51:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14128,
                    "nodeType": "StructuredDocumentation",
                    "src": "5374:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "d7a169eb",
                  "id": 14159,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14138,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14137,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 38,
                        "src": "5526:12:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "5526:12:59"
                    },
                    {
                      "arguments": [
                        {
                          "id": 14140,
                          "name": "_amount",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14132,
                          "src": "5563:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        }
                      ],
                      "id": 14141,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14139,
                        "name": "canAddLiquidity",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 13902,
                        "src": "5547:15:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "5547:24:59"
                    }
                  ],
                  "name": "depositToAndDelegate",
                  "nameLocation": "5414:20:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14136,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5509:8:59"
                  },
                  "parameters": {
                    "id": 14135,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14130,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "5443:3:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14159,
                        "src": "5435:11:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14129,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5435:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14132,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "5456:7:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14159,
                        "src": "5448:15:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14131,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5448:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14134,
                        "mutability": "mutable",
                        "name": "_delegate",
                        "nameLocation": "5473:9:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14159,
                        "src": "5465:17:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14133,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5465:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5434:49:59"
                  },
                  "returnParameters": {
                    "id": 14142,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5576:0:59"
                  },
                  "scope": 14875,
                  "src": "5405:285:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 14210,
                    "nodeType": "Block",
                    "src": "6020:314:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 14171,
                                  "name": "_to",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14164,
                                  "src": "6050:3:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 14172,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14166,
                                  "src": "6055:7:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 14170,
                                "name": "_canDeposit",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14717,
                                "src": "6038:11:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint256_$returns$_t_bool_$",
                                  "typeString": "function (address,uint256) view returns (bool)"
                                }
                              },
                              "id": 14173,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6038:25:59",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f657863656564732d62616c616e63652d636170",
                              "id": 14174,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6065:31:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3",
                                "typeString": "literal_string \"PrizePool/exceeds-balance-cap\""
                              },
                              "value": "PrizePool/exceeds-balance-cap"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3",
                                "typeString": "literal_string \"PrizePool/exceeds-balance-cap\""
                              }
                            ],
                            "id": 14169,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6030:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14175,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6030:67:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14176,
                        "nodeType": "ExpressionStatement",
                        "src": "6030:67:59"
                      },
                      {
                        "assignments": [
                          14179
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14179,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "6116:7:59",
                            "nodeType": "VariableDeclaration",
                            "scope": 14210,
                            "src": "6108:15:59",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$12213",
                              "typeString": "contract ITicket"
                            },
                            "typeName": {
                              "id": 14178,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 14177,
                                "name": "ITicket",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12213,
                                "src": "6108:7:59"
                              },
                              "referencedDeclaration": 12213,
                              "src": "6108:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14181,
                        "initialValue": {
                          "id": 14180,
                          "name": "ticket",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13863,
                          "src": "6126:6:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6108:24:59"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14185,
                              "name": "_operator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14162,
                              "src": "6169:9:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 14188,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "6188:4:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_PrizePool_$14875",
                                    "typeString": "contract PrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_PrizePool_$14875",
                                    "typeString": "contract PrizePool"
                                  }
                                ],
                                "id": 14187,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "6180:7:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 14186,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "6180:7:59",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 14189,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6180:13:59",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14190,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14166,
                              "src": "6195:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 14182,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14854,
                                "src": "6143:6:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_IERC20_$663_$",
                                  "typeString": "function () view returns (contract IERC20)"
                                }
                              },
                              "id": 14183,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6143:8:59",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 14184,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransferFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 950,
                            "src": "6143:25:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,address,uint256)"
                            }
                          },
                          "id": 14191,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6143:60:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14192,
                        "nodeType": "ExpressionStatement",
                        "src": "6143:60:59"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14194,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14164,
                              "src": "6220:3:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14195,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14166,
                              "src": "6225:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 14196,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14179,
                              "src": "6234:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            ],
                            "id": 14193,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14682,
                            "src": "6214:5:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_contract$_ITicket_$12213_$returns$__$",
                              "typeString": "function (address,uint256,contract ITicket)"
                            }
                          },
                          "id": 14197,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6214:28:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14198,
                        "nodeType": "ExpressionStatement",
                        "src": "6214:28:59"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14200,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14166,
                              "src": "6260:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14199,
                            "name": "_supply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14866,
                            "src": "6252:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 14201,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6252:16:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14202,
                        "nodeType": "ExpressionStatement",
                        "src": "6252:16:59"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14204,
                              "name": "_operator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14162,
                              "src": "6294:9:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14205,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14164,
                              "src": "6305:3:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14206,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14179,
                              "src": "6310:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 14207,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14166,
                              "src": "6319:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14203,
                            "name": "Deposited",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11627,
                            "src": "6284:9:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_contract$_ITicket_$12213_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,contract ITicket,uint256)"
                            }
                          },
                          "id": 14208,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6284:43:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14209,
                        "nodeType": "EmitStatement",
                        "src": "6279:48:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14160,
                    "nodeType": "StructuredDocumentation",
                    "src": "5696:237:59",
                    "text": "@notice Transfers tokens in from one user and mints tickets to another\n @notice _operator The user to transfer tokens from\n @notice _to The user to mint tickets to\n @notice _amount The amount to transfer and mint"
                  },
                  "id": 14211,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_depositTo",
                  "nameLocation": "5947:10:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14167,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14162,
                        "mutability": "mutable",
                        "name": "_operator",
                        "nameLocation": "5966:9:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14211,
                        "src": "5958:17:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14161,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5958:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14164,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "5985:3:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14211,
                        "src": "5977:11:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14163,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5977:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14166,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "5998:7:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14211,
                        "src": "5990:15:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14165,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5990:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5957:49:59"
                  },
                  "returnParameters": {
                    "id": 14168,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6020:0:59"
                  },
                  "scope": 14875,
                  "src": "5938:396:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    11733
                  ],
                  "body": {
                    "id": 14262,
                    "nodeType": "Block",
                    "src": "6510:362:59",
                    "statements": [
                      {
                        "assignments": [
                          14226
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14226,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "6528:7:59",
                            "nodeType": "VariableDeclaration",
                            "scope": 14262,
                            "src": "6520:15:59",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$12213",
                              "typeString": "contract ITicket"
                            },
                            "typeName": {
                              "id": 14225,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 14224,
                                "name": "ITicket",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12213,
                                "src": "6520:7:59"
                              },
                              "referencedDeclaration": 12213,
                              "src": "6520:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14228,
                        "initialValue": {
                          "id": 14227,
                          "name": "ticket",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13863,
                          "src": "6538:6:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6520:24:59"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 14232,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "6610:3:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 14233,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "6610:10:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14234,
                              "name": "_from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14214,
                              "src": "6622:5:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14235,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14216,
                              "src": "6629:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 14229,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14226,
                              "src": "6583:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 14231,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "controllerBurnFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11068,
                            "src": "6583:26:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256) external"
                            }
                          },
                          "id": 14236,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6583:54:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14237,
                        "nodeType": "ExpressionStatement",
                        "src": "6583:54:59"
                      },
                      {
                        "assignments": [
                          14239
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14239,
                            "mutability": "mutable",
                            "name": "_redeemed",
                            "nameLocation": "6686:9:59",
                            "nodeType": "VariableDeclaration",
                            "scope": 14262,
                            "src": "6678:17:59",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14238,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "6678:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14243,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 14241,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14216,
                              "src": "6706:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14240,
                            "name": "_redeem",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14874,
                            "src": "6698:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) returns (uint256)"
                            }
                          },
                          "id": 14242,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6698:16:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6678:36:59"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14247,
                              "name": "_from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14214,
                              "src": "6747:5:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14248,
                              "name": "_redeemed",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14239,
                              "src": "6754:9:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 14244,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14854,
                                "src": "6725:6:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_IERC20_$663_$",
                                  "typeString": "function () view returns (contract IERC20)"
                                }
                              },
                              "id": 14245,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6725:8:59",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 14246,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 924,
                            "src": "6725:21:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 14249,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6725:39:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14250,
                        "nodeType": "ExpressionStatement",
                        "src": "6725:39:59"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 14252,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "6791:3:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 14253,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "6791:10:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14254,
                              "name": "_from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14214,
                              "src": "6803:5:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14255,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14226,
                              "src": "6810:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 14256,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14216,
                              "src": "6819:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 14257,
                              "name": "_redeemed",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14239,
                              "src": "6828:9:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14251,
                            "name": "Withdrawal",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11679,
                            "src": "6780:10:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_contract$_ITicket_$12213_$_t_uint256_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,contract ITicket,uint256,uint256)"
                            }
                          },
                          "id": 14258,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6780:58:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14259,
                        "nodeType": "EmitStatement",
                        "src": "6775:63:59"
                      },
                      {
                        "expression": {
                          "id": 14260,
                          "name": "_redeemed",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14239,
                          "src": "6856:9:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14223,
                        "id": 14261,
                        "nodeType": "Return",
                        "src": "6849:16:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14212,
                    "nodeType": "StructuredDocumentation",
                    "src": "6340:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "9470b0bd",
                  "id": 14263,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14220,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14219,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 38,
                        "src": "6467:12:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6467:12:59"
                    }
                  ],
                  "name": "withdrawFrom",
                  "nameLocation": "6380:12:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14218,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6450:8:59"
                  },
                  "parameters": {
                    "id": 14217,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14214,
                        "mutability": "mutable",
                        "name": "_from",
                        "nameLocation": "6401:5:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14263,
                        "src": "6393:13:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14213,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6393:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14216,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "6416:7:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14263,
                        "src": "6408:15:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14215,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6408:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6392:32:59"
                  },
                  "returnParameters": {
                    "id": 14223,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14222,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14263,
                        "src": "6497:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14221,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6497:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6496:9:59"
                  },
                  "scope": 14875,
                  "src": "6371:501:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11741
                  ],
                  "body": {
                    "id": 14315,
                    "nodeType": "Block",
                    "src": "6990:426:59",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14276,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14274,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14268,
                            "src": "7004:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 14275,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "7015:1:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "7004:12:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14279,
                        "nodeType": "IfStatement",
                        "src": "7000:49:59",
                        "trueBody": {
                          "id": 14278,
                          "nodeType": "Block",
                          "src": "7018:31:59",
                          "statements": [
                            {
                              "functionReturnParameters": 14273,
                              "id": 14277,
                              "nodeType": "Return",
                              "src": "7032:7:59"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          14281
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14281,
                            "mutability": "mutable",
                            "name": "currentAwardBalance",
                            "nameLocation": "7067:19:59",
                            "nodeType": "VariableDeclaration",
                            "scope": 14315,
                            "src": "7059:27:59",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14280,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7059:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14283,
                        "initialValue": {
                          "id": 14282,
                          "name": "_currentAwardBalance",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13875,
                          "src": "7089:20:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7059:50:59"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 14287,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14285,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14268,
                                "src": "7128:7:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 14286,
                                "name": "currentAwardBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14281,
                                "src": "7139:19:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7128:30:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f61776172642d657863656564732d617661696c",
                              "id": 14288,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7160:31:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4",
                                "typeString": "literal_string \"PrizePool/award-exceeds-avail\""
                              },
                              "value": "PrizePool/award-exceeds-avail"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4",
                                "typeString": "literal_string \"PrizePool/award-exceeds-avail\""
                              }
                            ],
                            "id": 14284,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7120:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14289,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7120:72:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14290,
                        "nodeType": "ExpressionStatement",
                        "src": "7120:72:59"
                      },
                      {
                        "id": 14297,
                        "nodeType": "UncheckedBlock",
                        "src": "7203:87:59",
                        "statements": [
                          {
                            "expression": {
                              "id": 14295,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "id": 14291,
                                "name": "_currentAwardBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13875,
                                "src": "7227:20:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 14294,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 14292,
                                  "name": "currentAwardBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14281,
                                  "src": "7250:19:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 14293,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14268,
                                  "src": "7272:7:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "7250:29:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7227:52:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 14296,
                            "nodeType": "ExpressionStatement",
                            "src": "7227:52:59"
                          }
                        ]
                      },
                      {
                        "assignments": [
                          14300
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14300,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "7308:7:59",
                            "nodeType": "VariableDeclaration",
                            "scope": 14315,
                            "src": "7300:15:59",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$12213",
                              "typeString": "contract ITicket"
                            },
                            "typeName": {
                              "id": 14299,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 14298,
                                "name": "ITicket",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12213,
                                "src": "7300:7:59"
                              },
                              "referencedDeclaration": 12213,
                              "src": "7300:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14302,
                        "initialValue": {
                          "id": 14301,
                          "name": "ticket",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13863,
                          "src": "7318:6:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7300:24:59"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14304,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14266,
                              "src": "7341:3:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14305,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14268,
                              "src": "7346:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 14306,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14300,
                              "src": "7355:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            ],
                            "id": 14303,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14682,
                            "src": "7335:5:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_contract$_ITicket_$12213_$returns$__$",
                              "typeString": "function (address,uint256,contract ITicket)"
                            }
                          },
                          "id": 14307,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7335:28:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14308,
                        "nodeType": "ExpressionStatement",
                        "src": "7335:28:59"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14310,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14266,
                              "src": "7387:3:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14311,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14300,
                              "src": "7392:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 14312,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14268,
                              "src": "7401:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14309,
                            "name": "Awarded",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11637,
                            "src": "7379:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_contract$_ITicket_$12213_$_t_uint256_$returns$__$",
                              "typeString": "function (address,contract ITicket,uint256)"
                            }
                          },
                          "id": 14313,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7379:30:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14314,
                        "nodeType": "EmitStatement",
                        "src": "7374:35:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14264,
                    "nodeType": "StructuredDocumentation",
                    "src": "6878:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "5d8a776e",
                  "id": 14316,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14272,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14271,
                        "name": "onlyPrizeStrategy",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 13888,
                        "src": "6972:17:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6972:17:59"
                    }
                  ],
                  "name": "award",
                  "nameLocation": "6918:5:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14270,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6963:8:59"
                  },
                  "parameters": {
                    "id": 14269,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14266,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "6932:3:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14316,
                        "src": "6924:11:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14265,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6924:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14268,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "6945:7:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14316,
                        "src": "6937:15:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14267,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6937:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6923:30:59"
                  },
                  "returnParameters": {
                    "id": 14273,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6990:0:59"
                  },
                  "scope": 14875,
                  "src": "6909:507:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11823
                  ],
                  "body": {
                    "id": 14342,
                    "nodeType": "Block",
                    "src": "7604:148:59",
                    "statements": [
                      {
                        "condition": {
                          "arguments": [
                            {
                              "id": 14330,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14319,
                              "src": "7631:3:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14331,
                              "name": "_externalToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14321,
                              "src": "7636:14:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14332,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14323,
                              "src": "7652:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14329,
                            "name": "_transferOut",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14663,
                            "src": "7618:12:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$",
                              "typeString": "function (address,address,uint256) returns (bool)"
                            }
                          },
                          "id": 14333,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7618:42:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14341,
                        "nodeType": "IfStatement",
                        "src": "7614:132:59",
                        "trueBody": {
                          "id": 14340,
                          "nodeType": "Block",
                          "src": "7662:84:59",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 14335,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14319,
                                    "src": "7706:3:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 14336,
                                    "name": "_externalToken",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14321,
                                    "src": "7711:14:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 14337,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14323,
                                    "src": "7727:7:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 14334,
                                  "name": "TransferredExternalERC20",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11655,
                                  "src": "7681:24:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,address,uint256)"
                                  }
                                },
                                "id": 14338,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7681:54:59",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 14339,
                              "nodeType": "EmitStatement",
                              "src": "7676:59:59"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14317,
                    "nodeType": "StructuredDocumentation",
                    "src": "7422:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "13f55e39",
                  "id": 14343,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14327,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14326,
                        "name": "onlyPrizeStrategy",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 13888,
                        "src": "7586:17:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "7586:17:59"
                    }
                  ],
                  "name": "transferExternalERC20",
                  "nameLocation": "7462:21:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14325,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "7577:8:59"
                  },
                  "parameters": {
                    "id": 14324,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14319,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "7501:3:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14343,
                        "src": "7493:11:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14318,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7493:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14321,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "7522:14:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14343,
                        "src": "7514:22:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14320,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7514:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14323,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "7554:7:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14343,
                        "src": "7546:15:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14322,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7546:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7483:84:59"
                  },
                  "returnParameters": {
                    "id": 14328,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7604:0:59"
                  },
                  "scope": 14875,
                  "src": "7453:299:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11833
                  ],
                  "body": {
                    "id": 14369,
                    "nodeType": "Block",
                    "src": "7937:144:59",
                    "statements": [
                      {
                        "condition": {
                          "arguments": [
                            {
                              "id": 14357,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14346,
                              "src": "7964:3:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14358,
                              "name": "_externalToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14348,
                              "src": "7969:14:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14359,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14350,
                              "src": "7985:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14356,
                            "name": "_transferOut",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14663,
                            "src": "7951:12:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$",
                              "typeString": "function (address,address,uint256) returns (bool)"
                            }
                          },
                          "id": 14360,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7951:42:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14368,
                        "nodeType": "IfStatement",
                        "src": "7947:128:59",
                        "trueBody": {
                          "id": 14367,
                          "nodeType": "Block",
                          "src": "7995:80:59",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 14362,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14346,
                                    "src": "8035:3:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 14363,
                                    "name": "_externalToken",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14348,
                                    "src": "8040:14:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 14364,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14350,
                                    "src": "8056:7:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 14361,
                                  "name": "AwardedExternalERC20",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11646,
                                  "src": "8014:20:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,address,uint256)"
                                  }
                                },
                                "id": 14365,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "8014:50:59",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 14366,
                              "nodeType": "EmitStatement",
                              "src": "8009:55:59"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14344,
                    "nodeType": "StructuredDocumentation",
                    "src": "7758:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "2b0ab144",
                  "id": 14370,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14354,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14353,
                        "name": "onlyPrizeStrategy",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 13888,
                        "src": "7919:17:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "7919:17:59"
                    }
                  ],
                  "name": "awardExternalERC20",
                  "nameLocation": "7798:18:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14352,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "7910:8:59"
                  },
                  "parameters": {
                    "id": 14351,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14346,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "7834:3:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14370,
                        "src": "7826:11:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14345,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7826:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14348,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "7855:14:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14370,
                        "src": "7847:22:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14347,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7847:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14350,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "7887:7:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14370,
                        "src": "7879:15:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14349,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7879:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7816:84:59"
                  },
                  "returnParameters": {
                    "id": 14355,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7937:0:59"
                  },
                  "scope": 14875,
                  "src": "7789:292:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11844
                  ],
                  "body": {
                    "id": 14472,
                    "nodeType": "Block",
                    "src": "8280:799:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 14386,
                                  "name": "_externalToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14375,
                                  "src": "8316:14:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 14385,
                                "name": "_canAwardExternal",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14847,
                                "src": "8298:17:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                  "typeString": "function (address) view returns (bool)"
                                }
                              },
                              "id": 14387,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8298:33:59",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e",
                              "id": 14388,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8333:34:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17",
                                "typeString": "literal_string \"PrizePool/invalid-external-token\""
                              },
                              "value": "PrizePool/invalid-external-token"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17",
                                "typeString": "literal_string \"PrizePool/invalid-external-token\""
                              }
                            ],
                            "id": 14384,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8290:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14389,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8290:78:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14390,
                        "nodeType": "ExpressionStatement",
                        "src": "8290:78:59"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14394,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 14391,
                              "name": "_tokenIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14378,
                              "src": "8383:9:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                                "typeString": "uint256[] calldata"
                              }
                            },
                            "id": 14392,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "8383:16:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 14393,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8403:1:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "8383:21:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14397,
                        "nodeType": "IfStatement",
                        "src": "8379:58:59",
                        "trueBody": {
                          "id": 14396,
                          "nodeType": "Block",
                          "src": "8406:31:59",
                          "statements": [
                            {
                              "functionReturnParameters": 14383,
                              "id": 14395,
                              "nodeType": "Return",
                              "src": "8420:7:59"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          14402
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14402,
                            "mutability": "mutable",
                            "name": "_awardedTokenIds",
                            "nameLocation": "8464:16:59",
                            "nodeType": "VariableDeclaration",
                            "scope": 14472,
                            "src": "8447:33:59",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 14400,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8447:7:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 14401,
                              "nodeType": "ArrayTypeName",
                              "src": "8447:9:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14409,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 14406,
                                "name": "_tokenIds",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14378,
                                "src": "8497:9:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                                  "typeString": "uint256[] calldata"
                                }
                              },
                              "id": 14407,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "8497:16:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14405,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "8483:13:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 14403,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8487:7:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 14404,
                              "nodeType": "ArrayTypeName",
                              "src": "8487:9:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 14408,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8483:31:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8447:67:59"
                      },
                      {
                        "assignments": [
                          14411
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14411,
                            "mutability": "mutable",
                            "name": "hasAwardedTokenIds",
                            "nameLocation": "8530:18:59",
                            "nodeType": "VariableDeclaration",
                            "scope": 14472,
                            "src": "8525:23:59",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 14410,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "8525:4:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14412,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8525:23:59"
                      },
                      {
                        "body": {
                          "id": 14461,
                          "nodeType": "Block",
                          "src": "8606:343:59",
                          "statements": [
                            {
                              "clauses": [
                                {
                                  "block": {
                                    "id": 14449,
                                    "nodeType": "Block",
                                    "src": "8699:110:59",
                                    "statements": [
                                      {
                                        "expression": {
                                          "id": 14439,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftHandSide": {
                                            "id": 14437,
                                            "name": "hasAwardedTokenIds",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 14411,
                                            "src": "8717:18:59",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_bool",
                                              "typeString": "bool"
                                            }
                                          },
                                          "nodeType": "Assignment",
                                          "operator": "=",
                                          "rightHandSide": {
                                            "hexValue": "74727565",
                                            "id": 14438,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "bool",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "8738:4:59",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_bool",
                                              "typeString": "bool"
                                            },
                                            "value": "true"
                                          },
                                          "src": "8717:25:59",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_bool",
                                            "typeString": "bool"
                                          }
                                        },
                                        "id": 14440,
                                        "nodeType": "ExpressionStatement",
                                        "src": "8717:25:59"
                                      },
                                      {
                                        "expression": {
                                          "id": 14447,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftHandSide": {
                                            "baseExpression": {
                                              "id": 14441,
                                              "name": "_awardedTokenIds",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 14402,
                                              "src": "8760:16:59",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                                "typeString": "uint256[] memory"
                                              }
                                            },
                                            "id": 14443,
                                            "indexExpression": {
                                              "id": 14442,
                                              "name": "i",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 14414,
                                              "src": "8777:1:59",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": true,
                                            "nodeType": "IndexAccess",
                                            "src": "8760:19:59",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "nodeType": "Assignment",
                                          "operator": "=",
                                          "rightHandSide": {
                                            "baseExpression": {
                                              "id": 14444,
                                              "name": "_tokenIds",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 14378,
                                              "src": "8782:9:59",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                                                "typeString": "uint256[] calldata"
                                              }
                                            },
                                            "id": 14446,
                                            "indexExpression": {
                                              "id": 14445,
                                              "name": "i",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 14414,
                                              "src": "8792:1:59",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "8782:12:59",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "src": "8760:34:59",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "id": 14448,
                                        "nodeType": "ExpressionStatement",
                                        "src": "8760:34:59"
                                      }
                                    ]
                                  },
                                  "errorName": "",
                                  "id": 14450,
                                  "nodeType": "TryCatchClause",
                                  "src": "8699:110:59"
                                },
                                {
                                  "block": {
                                    "id": 14458,
                                    "nodeType": "Block",
                                    "src": "8867:72:59",
                                    "statements": [
                                      {
                                        "eventCall": {
                                          "arguments": [
                                            {
                                              "id": 14455,
                                              "name": "error",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 14452,
                                              "src": "8918:5:59",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_bytes_memory_ptr",
                                                "typeString": "bytes memory"
                                              }
                                            }
                                          ],
                                          "expression": {
                                            "argumentTypes": [
                                              {
                                                "typeIdentifier": "t_bytes_memory_ptr",
                                                "typeString": "bytes memory"
                                              }
                                            ],
                                            "id": 14454,
                                            "name": "ErrorAwardingExternalERC721",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 11705,
                                            "src": "8890:27:59",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_function_event_nonpayable$_t_bytes_memory_ptr_$returns$__$",
                                              "typeString": "function (bytes memory)"
                                            }
                                          },
                                          "id": 14456,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "kind": "functionCall",
                                          "lValueRequested": false,
                                          "names": [],
                                          "nodeType": "FunctionCall",
                                          "src": "8890:34:59",
                                          "tryCall": false,
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_tuple$__$",
                                            "typeString": "tuple()"
                                          }
                                        },
                                        "id": 14457,
                                        "nodeType": "EmitStatement",
                                        "src": "8885:39:59"
                                      }
                                    ]
                                  },
                                  "errorName": "",
                                  "id": 14459,
                                  "nodeType": "TryCatchClause",
                                  "parameters": {
                                    "id": 14453,
                                    "nodeType": "ParameterList",
                                    "parameters": [
                                      {
                                        "constant": false,
                                        "id": 14452,
                                        "mutability": "mutable",
                                        "name": "error",
                                        "nameLocation": "8847:5:59",
                                        "nodeType": "VariableDeclaration",
                                        "scope": 14459,
                                        "src": "8834:18:59",
                                        "stateVariable": false,
                                        "storageLocation": "memory",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes"
                                        },
                                        "typeName": {
                                          "id": 14451,
                                          "name": "bytes",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "8834:5:59",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_bytes_storage_ptr",
                                            "typeString": "bytes"
                                          }
                                        },
                                        "visibility": "internal"
                                      }
                                    ],
                                    "src": "8816:50:59"
                                  },
                                  "src": "8810:129:59"
                                }
                              ],
                              "externalCall": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "id": 14430,
                                        "name": "this",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": -28,
                                        "src": "8673:4:59",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_contract$_PrizePool_$14875",
                                          "typeString": "contract PrizePool"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_contract$_PrizePool_$14875",
                                          "typeString": "contract PrizePool"
                                        }
                                      ],
                                      "id": 14429,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "8665:7:59",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      },
                                      "typeName": {
                                        "id": 14428,
                                        "name": "address",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "8665:7:59",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 14431,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "8665:13:59",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 14432,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14373,
                                    "src": "8680:3:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "baseExpression": {
                                      "id": 14433,
                                      "name": "_tokenIds",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14378,
                                      "src": "8685:9:59",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                                        "typeString": "uint256[] calldata"
                                      }
                                    },
                                    "id": 14435,
                                    "indexExpression": {
                                      "id": 14434,
                                      "name": "i",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14414,
                                      "src": "8695:1:59",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "8685:12:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 14425,
                                        "name": "_externalToken",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 14375,
                                        "src": "8632:14:59",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      ],
                                      "id": 14424,
                                      "name": "IERC721",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2049,
                                      "src": "8624:7:59",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_IERC721_$2049_$",
                                        "typeString": "type(contract IERC721)"
                                      }
                                    },
                                    "id": 14426,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "8624:23:59",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IERC721_$2049",
                                      "typeString": "contract IERC721"
                                    }
                                  },
                                  "id": 14427,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "safeTransferFrom",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 1992,
                                  "src": "8624:40:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,address,uint256) external"
                                  }
                                },
                                "id": 14436,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "8624:74:59",
                                "tryCall": true,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 14460,
                              "nodeType": "TryStatement",
                              "src": "8620:319:59"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14420,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14417,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14414,
                            "src": "8579:1:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 14418,
                              "name": "_tokenIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14378,
                              "src": "8583:9:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                                "typeString": "uint256[] calldata"
                              }
                            },
                            "id": 14419,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "8583:16:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8579:20:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14462,
                        "initializationExpression": {
                          "assignments": [
                            14414
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 14414,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "8572:1:59",
                              "nodeType": "VariableDeclaration",
                              "scope": 14462,
                              "src": "8564:9:59",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 14413,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8564:7:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 14416,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 14415,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8576:1:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "8564:13:59"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 14422,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "8601:3:59",
                            "subExpression": {
                              "id": 14421,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14414,
                              "src": "8601:1:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 14423,
                          "nodeType": "ExpressionStatement",
                          "src": "8601:3:59"
                        },
                        "nodeType": "ForStatement",
                        "src": "8559:390:59"
                      },
                      {
                        "condition": {
                          "id": 14463,
                          "name": "hasAwardedTokenIds",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14411,
                          "src": "8962:18:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14471,
                        "nodeType": "IfStatement",
                        "src": "8958:115:59",
                        "trueBody": {
                          "id": 14470,
                          "nodeType": "Block",
                          "src": "8982:91:59",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 14465,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14373,
                                    "src": "9024:3:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 14466,
                                    "name": "_externalToken",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14375,
                                    "src": "9029:14:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 14467,
                                    "name": "_awardedTokenIds",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14402,
                                    "src": "9045:16:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  ],
                                  "id": 14464,
                                  "name": "AwardedExternalERC721",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11665,
                                  "src": "9002:21:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$__$",
                                    "typeString": "function (address,address,uint256[] memory)"
                                  }
                                },
                                "id": 14468,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9002:60:59",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 14469,
                              "nodeType": "EmitStatement",
                              "src": "8997:65:59"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14371,
                    "nodeType": "StructuredDocumentation",
                    "src": "8087:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "16960d55",
                  "id": 14473,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14382,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14381,
                        "name": "onlyPrizeStrategy",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 13888,
                        "src": "8262:17:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "8262:17:59"
                    }
                  ],
                  "name": "awardExternalERC721",
                  "nameLocation": "8127:19:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14380,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "8253:8:59"
                  },
                  "parameters": {
                    "id": 14379,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14373,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "8164:3:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14473,
                        "src": "8156:11:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14372,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8156:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14375,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "8185:14:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14473,
                        "src": "8177:22:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14374,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8177:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14378,
                        "mutability": "mutable",
                        "name": "_tokenIds",
                        "nameLocation": "8228:9:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14473,
                        "src": "8209:28:59",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 14376,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "8209:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 14377,
                          "nodeType": "ArrayTypeName",
                          "src": "8209:9:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8146:97:59"
                  },
                  "returnParameters": {
                    "id": 14383,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8280:0:59"
                  },
                  "scope": 14875,
                  "src": "8118:961:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11852
                  ],
                  "body": {
                    "id": 14490,
                    "nodeType": "Block",
                    "src": "9203:65:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14485,
                              "name": "_balanceCap",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14476,
                              "src": "9228:11:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14484,
                            "name": "_setBalanceCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14778,
                            "src": "9213:14:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 14486,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9213:27:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14487,
                        "nodeType": "ExpressionStatement",
                        "src": "9213:27:59"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 14488,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "9257:4:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 14483,
                        "id": 14489,
                        "nodeType": "Return",
                        "src": "9250:11:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14474,
                    "nodeType": "StructuredDocumentation",
                    "src": "9085:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "aec9c307",
                  "id": 14491,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14480,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14479,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "9178:9:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "9178:9:59"
                    }
                  ],
                  "name": "setBalanceCap",
                  "nameLocation": "9125:13:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14478,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9169:8:59"
                  },
                  "parameters": {
                    "id": 14477,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14476,
                        "mutability": "mutable",
                        "name": "_balanceCap",
                        "nameLocation": "9147:11:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14491,
                        "src": "9139:19:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14475,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9139:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9138:21:59"
                  },
                  "returnParameters": {
                    "id": 14483,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14482,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14491,
                        "src": "9197:4:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14481,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "9197:4:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9196:6:59"
                  },
                  "scope": 14875,
                  "src": "9116:152:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11858
                  ],
                  "body": {
                    "id": 14504,
                    "nodeType": "Block",
                    "src": "9381:48:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14501,
                              "name": "_liquidityCap",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14494,
                              "src": "9408:13:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14500,
                            "name": "_setLiquidityCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14793,
                            "src": "9391:16:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 14502,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9391:31:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14503,
                        "nodeType": "ExpressionStatement",
                        "src": "9391:31:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14492,
                    "nodeType": "StructuredDocumentation",
                    "src": "9274:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "7b99adb1",
                  "id": 14505,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14498,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14497,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "9371:9:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "9371:9:59"
                    }
                  ],
                  "name": "setLiquidityCap",
                  "nameLocation": "9314:15:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14496,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9362:8:59"
                  },
                  "parameters": {
                    "id": 14495,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14494,
                        "mutability": "mutable",
                        "name": "_liquidityCap",
                        "nameLocation": "9338:13:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14505,
                        "src": "9330:21:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14493,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9330:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9329:23:59"
                  },
                  "returnParameters": {
                    "id": 14499,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9381:0:59"
                  },
                  "scope": 14875,
                  "src": "9305:124:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11873
                  ],
                  "body": {
                    "id": 14561,
                    "nodeType": "Block",
                    "src": "9545:300:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 14526,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 14520,
                                    "name": "_ticket",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14509,
                                    "src": "9571:7:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ITicket_$12213",
                                      "typeString": "contract ITicket"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ITicket_$12213",
                                      "typeString": "contract ITicket"
                                    }
                                  ],
                                  "id": 14519,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9563:7:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14518,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9563:7:59",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14521,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9563:16:59",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 14524,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9591:1:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 14523,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9583:7:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14522,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9583:7:59",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14525,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9583:10:59",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "9563:30:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d61646472657373",
                              "id": 14527,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9595:35:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b",
                                "typeString": "literal_string \"PrizePool/ticket-not-zero-address\""
                              },
                              "value": "PrizePool/ticket-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b",
                                "typeString": "literal_string \"PrizePool/ticket-not-zero-address\""
                              }
                            ],
                            "id": 14517,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9555:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14528,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9555:76:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14529,
                        "nodeType": "ExpressionStatement",
                        "src": "9555:76:59"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 14539,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 14533,
                                    "name": "ticket",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13863,
                                    "src": "9657:6:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ITicket_$12213",
                                      "typeString": "contract ITicket"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ITicket_$12213",
                                      "typeString": "contract ITicket"
                                    }
                                  ],
                                  "id": 14532,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9649:7:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14531,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9649:7:59",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14534,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9649:15:59",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 14537,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9676:1:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 14536,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9668:7:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14535,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9668:7:59",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14538,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9668:10:59",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "9649:29:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f7469636b65742d616c72656164792d736574",
                              "id": 14540,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9680:30:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0",
                                "typeString": "literal_string \"PrizePool/ticket-already-set\""
                              },
                              "value": "PrizePool/ticket-already-set"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0",
                                "typeString": "literal_string \"PrizePool/ticket-already-set\""
                              }
                            ],
                            "id": 14530,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9641:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14541,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9641:70:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14542,
                        "nodeType": "ExpressionStatement",
                        "src": "9641:70:59"
                      },
                      {
                        "expression": {
                          "id": 14545,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 14543,
                            "name": "ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13863,
                            "src": "9722:6:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$12213",
                              "typeString": "contract ITicket"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14544,
                            "name": "_ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14509,
                            "src": "9731:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$12213",
                              "typeString": "contract ITicket"
                            }
                          },
                          "src": "9722:16:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "id": 14546,
                        "nodeType": "ExpressionStatement",
                        "src": "9722:16:59"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14548,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14509,
                              "src": "9764:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            ],
                            "id": 14547,
                            "name": "TicketSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11700,
                            "src": "9754:9:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_ITicket_$12213_$returns$__$",
                              "typeString": "function (contract ITicket)"
                            }
                          },
                          "id": 14549,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9754:18:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14550,
                        "nodeType": "EmitStatement",
                        "src": "9749:23:59"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 14554,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "9803:7:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    },
                                    "typeName": {
                                      "id": 14553,
                                      "name": "uint256",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "9803:7:59",
                                      "typeDescriptions": {}
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    }
                                  ],
                                  "id": 14552,
                                  "name": "type",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -27,
                                  "src": "9798:4:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                    "typeString": "function () pure"
                                  }
                                },
                                "id": 14555,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9798:13:59",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_meta_type_t_uint256",
                                  "typeString": "type(uint256)"
                                }
                              },
                              "id": 14556,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "max",
                              "nodeType": "MemberAccess",
                              "src": "9798:17:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14551,
                            "name": "_setBalanceCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14778,
                            "src": "9783:14:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 14557,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9783:33:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14558,
                        "nodeType": "ExpressionStatement",
                        "src": "9783:33:59"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 14559,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "9834:4:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 14516,
                        "id": 14560,
                        "nodeType": "Return",
                        "src": "9827:11:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14506,
                    "nodeType": "StructuredDocumentation",
                    "src": "9435:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "1c65c78b",
                  "id": 14562,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14513,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14512,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "9520:9:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "9520:9:59"
                    }
                  ],
                  "name": "setTicket",
                  "nameLocation": "9475:9:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14511,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9511:8:59"
                  },
                  "parameters": {
                    "id": 14510,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14509,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "9493:7:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14562,
                        "src": "9485:15:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 14508,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14507,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "9485:7:59"
                          },
                          "referencedDeclaration": 12213,
                          "src": "9485:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9484:17:59"
                  },
                  "returnParameters": {
                    "id": 14516,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14515,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14562,
                        "src": "9539:4:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14514,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "9539:4:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9538:6:59"
                  },
                  "scope": 14875,
                  "src": "9466:379:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11864
                  ],
                  "body": {
                    "id": 14575,
                    "nodeType": "Block",
                    "src": "9960:50:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14572,
                              "name": "_prizeStrategy",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14565,
                              "src": "9988:14:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 14571,
                            "name": "_setPrizeStrategy",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14818,
                            "src": "9970:17:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 14573,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9970:33:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14574,
                        "nodeType": "ExpressionStatement",
                        "src": "9970:33:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14563,
                    "nodeType": "StructuredDocumentation",
                    "src": "9851:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "91ca480e",
                  "id": 14576,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14569,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14568,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "9950:9:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "9950:9:59"
                    }
                  ],
                  "name": "setPrizeStrategy",
                  "nameLocation": "9891:16:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14567,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9941:8:59"
                  },
                  "parameters": {
                    "id": 14566,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14565,
                        "mutability": "mutable",
                        "name": "_prizeStrategy",
                        "nameLocation": "9916:14:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14576,
                        "src": "9908:22:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14564,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9908:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9907:24:59"
                  },
                  "returnParameters": {
                    "id": 14570,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9960:0:59"
                  },
                  "scope": 14875,
                  "src": "9882:128:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11882
                  ],
                  "body": {
                    "id": 14605,
                    "nodeType": "Block",
                    "src": "10135:108:59",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14596,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "id": 14592,
                                    "name": "this",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -28,
                                    "src": "10177:4:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_PrizePool_$14875",
                                      "typeString": "contract PrizePool"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_PrizePool_$14875",
                                      "typeString": "contract PrizePool"
                                    }
                                  ],
                                  "id": 14591,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10169:7:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14590,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10169:7:59",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14593,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10169:13:59",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              ],
                              "expression": {
                                "id": 14588,
                                "name": "_compLike",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14580,
                                "src": "10149:9:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_ICompLike_$11027",
                                  "typeString": "contract ICompLike"
                                }
                              },
                              "id": 14589,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "balanceOf",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 602,
                              "src": "10149:19:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                                "typeString": "function (address) view external returns (uint256)"
                              }
                            },
                            "id": 14594,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "10149:34:59",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 14595,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "10186:1:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "10149:38:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14604,
                        "nodeType": "IfStatement",
                        "src": "10145:92:59",
                        "trueBody": {
                          "id": 14603,
                          "nodeType": "Block",
                          "src": "10189:48:59",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 14600,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14582,
                                    "src": "10222:3:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  ],
                                  "expression": {
                                    "id": 14597,
                                    "name": "_compLike",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14580,
                                    "src": "10203:9:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ICompLike_$11027",
                                      "typeString": "contract ICompLike"
                                    }
                                  },
                                  "id": 14599,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "delegate",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 11026,
                                  "src": "10203:18:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_external_nonpayable$_t_address_$returns$__$",
                                    "typeString": "function (address) external"
                                  }
                                },
                                "id": 14601,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10203:23:59",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 14602,
                              "nodeType": "ExpressionStatement",
                              "src": "10203:23:59"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14577,
                    "nodeType": "StructuredDocumentation",
                    "src": "10016:26:59",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "2f7627e3",
                  "id": 14606,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14586,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14585,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "10125:9:59"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "10125:9:59"
                    }
                  ],
                  "name": "compLikeDelegate",
                  "nameLocation": "10056:16:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14584,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10116:8:59"
                  },
                  "parameters": {
                    "id": 14583,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14580,
                        "mutability": "mutable",
                        "name": "_compLike",
                        "nameLocation": "10083:9:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14606,
                        "src": "10073:19:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ICompLike_$11027",
                          "typeString": "contract ICompLike"
                        },
                        "typeName": {
                          "id": 14579,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14578,
                            "name": "ICompLike",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11027,
                            "src": "10073:9:59"
                          },
                          "referencedDeclaration": 11027,
                          "src": "10073:9:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ICompLike_$11027",
                            "typeString": "contract ICompLike"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14582,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "10102:3:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14606,
                        "src": "10094:11:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14581,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10094:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10072:34:59"
                  },
                  "returnParameters": {
                    "id": 14587,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10135:0:59"
                  },
                  "scope": 14875,
                  "src": "10047:196:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    2066
                  ],
                  "body": {
                    "id": 14625,
                    "nodeType": "Block",
                    "src": "10432:65:59",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "expression": {
                              "id": 14621,
                              "name": "IERC721Receiver",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2067,
                              "src": "10449:15:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_IERC721Receiver_$2067_$",
                                "typeString": "type(contract IERC721Receiver)"
                              }
                            },
                            "id": 14622,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "onERC721Received",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 2066,
                            "src": "10449:32:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$returns$_t_bytes4_$",
                              "typeString": "function IERC721Receiver.onERC721Received(address,address,uint256,bytes calldata) returns (bytes4)"
                            }
                          },
                          "id": 14623,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "memberName": "selector",
                          "nodeType": "MemberAccess",
                          "src": "10449:41:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "functionReturnParameters": 14620,
                        "id": 14624,
                        "nodeType": "Return",
                        "src": "10442:48:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14607,
                    "nodeType": "StructuredDocumentation",
                    "src": "10249:31:59",
                    "text": "@inheritdoc IERC721Receiver"
                  },
                  "functionSelector": "150b7a02",
                  "id": 14626,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "onERC721Received",
                  "nameLocation": "10294:16:59",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14617,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10406:8:59"
                  },
                  "parameters": {
                    "id": 14616,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14609,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14626,
                        "src": "10320:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14608,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10320:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14611,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14626,
                        "src": "10337:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14610,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10337:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14613,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14626,
                        "src": "10354:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14612,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10354:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14615,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14626,
                        "src": "10371:14:59",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 14614,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "10371:5:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10310:81:59"
                  },
                  "returnParameters": {
                    "id": 14620,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14619,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14626,
                        "src": "10424:6:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 14618,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "10424:6:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10423:8:59"
                  },
                  "scope": 14875,
                  "src": "10285:212:59",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 14662,
                    "nodeType": "Block",
                    "src": "11066:242:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 14640,
                                  "name": "_externalToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14631,
                                  "src": "11102:14:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 14639,
                                "name": "_canAwardExternal",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14847,
                                "src": "11084:17:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                  "typeString": "function (address) view returns (bool)"
                                }
                              },
                              "id": 14641,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11084:33:59",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e",
                              "id": 14642,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "11119:34:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17",
                                "typeString": "literal_string \"PrizePool/invalid-external-token\""
                              },
                              "value": "PrizePool/invalid-external-token"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17",
                                "typeString": "literal_string \"PrizePool/invalid-external-token\""
                              }
                            ],
                            "id": 14638,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "11076:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14643,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11076:78:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14644,
                        "nodeType": "ExpressionStatement",
                        "src": "11076:78:59"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14647,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14645,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14633,
                            "src": "11169:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 14646,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "11180:1:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "11169:12:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14651,
                        "nodeType": "IfStatement",
                        "src": "11165:55:59",
                        "trueBody": {
                          "id": 14650,
                          "nodeType": "Block",
                          "src": "11183:37:59",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "66616c7365",
                                "id": 14648,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "bool",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "11204:5:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "value": "false"
                              },
                              "functionReturnParameters": 14637,
                              "id": 14649,
                              "nodeType": "Return",
                              "src": "11197:12:59"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14656,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14629,
                              "src": "11266:3:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14657,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14633,
                              "src": "11271:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 14653,
                                  "name": "_externalToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14631,
                                  "src": "11237:14:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 14652,
                                "name": "IERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 663,
                                "src": "11230:6:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20_$663_$",
                                  "typeString": "type(contract IERC20)"
                                }
                              },
                              "id": 14654,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11230:22:59",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 14655,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 924,
                            "src": "11230:35:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 14658,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11230:49:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14659,
                        "nodeType": "ExpressionStatement",
                        "src": "11230:49:59"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 14660,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "11297:4:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 14637,
                        "id": 14661,
                        "nodeType": "Return",
                        "src": "11290:11:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14627,
                    "nodeType": "StructuredDocumentation",
                    "src": "10559:372:59",
                    "text": "@notice Transfer out `amount` of `externalToken` to recipient `to`\n @dev Only awardable `externalToken` can be transferred out\n @param _to Recipient address\n @param _externalToken Address of the external asset token being transferred\n @param _amount Amount of external assets to be transferred\n @return True if transfer is successful"
                  },
                  "id": 14663,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_transferOut",
                  "nameLocation": "10945:12:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14634,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14629,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "10975:3:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14663,
                        "src": "10967:11:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14628,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10967:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14631,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "10996:14:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14663,
                        "src": "10988:22:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14630,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10988:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14633,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "11028:7:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14663,
                        "src": "11020:15:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14632,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11020:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10957:84:59"
                  },
                  "returnParameters": {
                    "id": 14637,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14636,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14663,
                        "src": "11060:4:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14635,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "11060:4:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11059:6:59"
                  },
                  "scope": 14875,
                  "src": "10936:372:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14681,
                    "nodeType": "Block",
                    "src": "11712:62:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14677,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14666,
                              "src": "11754:3:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14678,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14668,
                              "src": "11759:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 14674,
                              "name": "_controlledToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14671,
                              "src": "11722:16:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 14676,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "controllerMint",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11050,
                            "src": "11722:31:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256) external"
                            }
                          },
                          "id": 14679,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11722:45:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14680,
                        "nodeType": "ExpressionStatement",
                        "src": "11722:45:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14664,
                    "nodeType": "StructuredDocumentation",
                    "src": "11314:283:59",
                    "text": "@notice Called to mint controlled tokens.  Ensures that token listener callbacks are fired.\n @param _to The user who is receiving the tokens\n @param _amount The amount of tokens they are receiving\n @param _controlledToken The token that is going to be minted"
                  },
                  "id": 14682,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_mint",
                  "nameLocation": "11611:5:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14672,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14666,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "11634:3:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14682,
                        "src": "11626:11:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14665,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11626:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14668,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "11655:7:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14682,
                        "src": "11647:15:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14667,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11647:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14671,
                        "mutability": "mutable",
                        "name": "_controlledToken",
                        "nameLocation": "11680:16:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14682,
                        "src": "11672:24:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 14670,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14669,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "11672:7:59"
                          },
                          "referencedDeclaration": 12213,
                          "src": "11672:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11616:86:59"
                  },
                  "returnParameters": {
                    "id": 14673,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11712:0:59"
                  },
                  "scope": 14875,
                  "src": "11602:172:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14716,
                    "nodeType": "Block",
                    "src": "12175:177:59",
                    "statements": [
                      {
                        "assignments": [
                          14693
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14693,
                            "mutability": "mutable",
                            "name": "_balanceCap",
                            "nameLocation": "12193:11:59",
                            "nodeType": "VariableDeclaration",
                            "scope": 14716,
                            "src": "12185:19:59",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14692,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "12185:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14695,
                        "initialValue": {
                          "id": 14694,
                          "name": "balanceCap",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13869,
                          "src": "12207:10:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12185:32:59"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14702,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14696,
                            "name": "_balanceCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14693,
                            "src": "12232:11:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "expression": {
                              "arguments": [
                                {
                                  "id": 14699,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "12252:7:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  },
                                  "typeName": {
                                    "id": 14698,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "12252:7:59",
                                    "typeDescriptions": {}
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  }
                                ],
                                "id": 14697,
                                "name": "type",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -27,
                                "src": "12247:4:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                  "typeString": "function () pure"
                                }
                              },
                              "id": 14700,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "12247:13:59",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_meta_type_t_uint256",
                                "typeString": "type(uint256)"
                              }
                            },
                            "id": 14701,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "max",
                            "nodeType": "MemberAccess",
                            "src": "12247:17:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "12232:32:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14705,
                        "nodeType": "IfStatement",
                        "src": "12228:49:59",
                        "trueBody": {
                          "expression": {
                            "hexValue": "74727565",
                            "id": 14703,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "bool",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "12273:4:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "value": "true"
                          },
                          "functionReturnParameters": 14691,
                          "id": 14704,
                          "nodeType": "Return",
                          "src": "12266:11:59"
                        }
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 14713,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 14711,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [
                                    {
                                      "id": 14708,
                                      "name": "_user",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14685,
                                      "src": "12313:5:59",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    ],
                                    "expression": {
                                      "id": 14706,
                                      "name": "ticket",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 13863,
                                      "src": "12296:6:59",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_ITicket_$12213",
                                        "typeString": "contract ITicket"
                                      }
                                    },
                                    "id": 14707,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "balanceOf",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 602,
                                    "src": "12296:16:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                                      "typeString": "function (address) view external returns (uint256)"
                                    }
                                  },
                                  "id": 14709,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "12296:23:59",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 14710,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14687,
                                  "src": "12322:7:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "12296:33:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 14712,
                                "name": "_balanceCap",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14693,
                                "src": "12333:11:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "12296:48:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "id": 14714,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "12295:50:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 14691,
                        "id": 14715,
                        "nodeType": "Return",
                        "src": "12288:57:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14683,
                    "nodeType": "StructuredDocumentation",
                    "src": "11780:308:59",
                    "text": "@dev Checks if `user` can deposit in the Prize Pool based on the current balance cap.\n @param _user Address of the user depositing.\n @param _amount The amount of tokens to be deposited into the Prize Pool.\n @return True if the Prize Pool can receive the specified `amount` of tokens."
                  },
                  "id": 14717,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_canDeposit",
                  "nameLocation": "12102:11:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14688,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14685,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "12122:5:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14717,
                        "src": "12114:13:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14684,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "12114:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14687,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "12137:7:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14717,
                        "src": "12129:15:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14686,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12129:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12113:32:59"
                  },
                  "returnParameters": {
                    "id": 14691,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14690,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14717,
                        "src": "12169:4:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14689,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "12169:4:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12168:6:59"
                  },
                  "scope": 14875,
                  "src": "12093:259:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14747,
                    "nodeType": "Block",
                    "src": "12677:180:59",
                    "statements": [
                      {
                        "assignments": [
                          14726
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14726,
                            "mutability": "mutable",
                            "name": "_liquidityCap",
                            "nameLocation": "12695:13:59",
                            "nodeType": "VariableDeclaration",
                            "scope": 14747,
                            "src": "12687:21:59",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14725,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "12687:7:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14728,
                        "initialValue": {
                          "id": 14727,
                          "name": "liquidityCap",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13872,
                          "src": "12711:12:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12687:36:59"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14735,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14729,
                            "name": "_liquidityCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14726,
                            "src": "12737:13:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "expression": {
                              "arguments": [
                                {
                                  "id": 14732,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "12759:7:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  },
                                  "typeName": {
                                    "id": 14731,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "12759:7:59",
                                    "typeDescriptions": {}
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  }
                                ],
                                "id": 14730,
                                "name": "type",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -27,
                                "src": "12754:4:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                  "typeString": "function () pure"
                                }
                              },
                              "id": 14733,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "12754:13:59",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_meta_type_t_uint256",
                                "typeString": "type(uint256)"
                              }
                            },
                            "id": 14734,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "max",
                            "nodeType": "MemberAccess",
                            "src": "12754:17:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "12737:34:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14738,
                        "nodeType": "IfStatement",
                        "src": "12733:51:59",
                        "trueBody": {
                          "expression": {
                            "hexValue": "74727565",
                            "id": 14736,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "bool",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "12780:4:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "value": "true"
                          },
                          "functionReturnParameters": 14724,
                          "id": 14737,
                          "nodeType": "Return",
                          "src": "12773:11:59"
                        }
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 14744,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 14742,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 14739,
                                    "name": "_ticketTotalSupply",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14829,
                                    "src": "12802:18:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                                      "typeString": "function () view returns (uint256)"
                                    }
                                  },
                                  "id": 14740,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "12802:20:59",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 14741,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14720,
                                  "src": "12825:7:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "12802:30:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 14743,
                                "name": "_liquidityCap",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14726,
                                "src": "12836:13:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "12802:47:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "id": 14745,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "12801:49:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 14724,
                        "id": 14746,
                        "nodeType": "Return",
                        "src": "12794:56:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14718,
                    "nodeType": "StructuredDocumentation",
                    "src": "12358:242:59",
                    "text": "@dev Checks if the Prize Pool can receive liquidity based on the current cap\n @param _amount The amount of liquidity to be added to the Prize Pool\n @return True if the Prize Pool can receive the specified amount of liquidity"
                  },
                  "id": 14748,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_canAddLiquidity",
                  "nameLocation": "12614:16:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14721,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14720,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "12639:7:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14748,
                        "src": "12631:15:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14719,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12631:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12630:17:59"
                  },
                  "returnParameters": {
                    "id": 14724,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14723,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14748,
                        "src": "12671:4:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14722,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "12671:4:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12670:6:59"
                  },
                  "scope": 14875,
                  "src": "12605:252:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14762,
                    "nodeType": "Block",
                    "src": "13152:52:59",
                    "statements": [
                      {
                        "expression": {
                          "components": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              },
                              "id": 14759,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14757,
                                "name": "ticket",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13863,
                                "src": "13170:6:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_ITicket_$12213",
                                  "typeString": "contract ITicket"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 14758,
                                "name": "_controlledToken",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14752,
                                "src": "13180:16:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_ITicket_$12213",
                                  "typeString": "contract ITicket"
                                }
                              },
                              "src": "13170:26:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "id": 14760,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "13169:28:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 14756,
                        "id": 14761,
                        "nodeType": "Return",
                        "src": "13162:35:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14749,
                    "nodeType": "StructuredDocumentation",
                    "src": "12863:206:59",
                    "text": "@dev Checks if a specific token is controlled by the Prize Pool\n @param _controlledToken The address of the token to check\n @return True if the token is a controlled token, false otherwise"
                  },
                  "id": 14763,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_isControlled",
                  "nameLocation": "13083:13:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14753,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14752,
                        "mutability": "mutable",
                        "name": "_controlledToken",
                        "nameLocation": "13105:16:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14763,
                        "src": "13097:24:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 14751,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14750,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "13097:7:59"
                          },
                          "referencedDeclaration": 12213,
                          "src": "13097:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13096:26:59"
                  },
                  "returnParameters": {
                    "id": 14756,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14755,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14763,
                        "src": "13146:4:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14754,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "13146:4:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13145:6:59"
                  },
                  "scope": 14875,
                  "src": "13074:130:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14777,
                    "nodeType": "Block",
                    "src": "13388:82:59",
                    "statements": [
                      {
                        "expression": {
                          "id": 14771,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 14769,
                            "name": "balanceCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13869,
                            "src": "13398:10:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14770,
                            "name": "_balanceCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14766,
                            "src": "13411:11:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "13398:24:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 14772,
                        "nodeType": "ExpressionStatement",
                        "src": "13398:24:59"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14774,
                              "name": "_balanceCap",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14766,
                              "src": "13451:11:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14773,
                            "name": "BalanceCapSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11684,
                            "src": "13437:13:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 14775,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13437:26:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14776,
                        "nodeType": "EmitStatement",
                        "src": "13432:31:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14764,
                    "nodeType": "StructuredDocumentation",
                    "src": "13210:119:59",
                    "text": "@notice Allows the owner to set a balance cap per `token` for the pool.\n @param _balanceCap New balance cap."
                  },
                  "id": 14778,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setBalanceCap",
                  "nameLocation": "13343:14:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14767,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14766,
                        "mutability": "mutable",
                        "name": "_balanceCap",
                        "nameLocation": "13366:11:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14778,
                        "src": "13358:19:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14765,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13358:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13357:21:59"
                  },
                  "returnParameters": {
                    "id": 14768,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13388:0:59"
                  },
                  "scope": 14875,
                  "src": "13334:136:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14792,
                    "nodeType": "Block",
                    "src": "13650:90:59",
                    "statements": [
                      {
                        "expression": {
                          "id": 14786,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 14784,
                            "name": "liquidityCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13872,
                            "src": "13660:12:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14785,
                            "name": "_liquidityCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14781,
                            "src": "13675:13:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "13660:28:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 14787,
                        "nodeType": "ExpressionStatement",
                        "src": "13660:28:59"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14789,
                              "name": "_liquidityCap",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14781,
                              "src": "13719:13:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14788,
                            "name": "LiquidityCapSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11689,
                            "src": "13703:15:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 14790,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13703:30:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14791,
                        "nodeType": "EmitStatement",
                        "src": "13698:35:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14779,
                    "nodeType": "StructuredDocumentation",
                    "src": "13476:111:59",
                    "text": "@notice Allows the owner to set a liquidity cap for the pool\n @param _liquidityCap New liquidity cap"
                  },
                  "id": 14793,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setLiquidityCap",
                  "nameLocation": "13601:16:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14782,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14781,
                        "mutability": "mutable",
                        "name": "_liquidityCap",
                        "nameLocation": "13626:13:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14793,
                        "src": "13618:21:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14780,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13618:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13617:23:59"
                  },
                  "returnParameters": {
                    "id": 14783,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13650:0:59"
                  },
                  "scope": 14875,
                  "src": "13592:148:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14817,
                    "nodeType": "Block",
                    "src": "13947:179:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 14805,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14800,
                                "name": "_prizeStrategy",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14796,
                                "src": "13965:14:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 14803,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "13991:1:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 14802,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "13983:7:59",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14801,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "13983:7:59",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14804,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "13983:10:59",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "13965:28:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f",
                              "id": 14806,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "13995:34:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708",
                                "typeString": "literal_string \"PrizePool/prizeStrategy-not-zero\""
                              },
                              "value": "PrizePool/prizeStrategy-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708",
                                "typeString": "literal_string \"PrizePool/prizeStrategy-not-zero\""
                              }
                            ],
                            "id": 14799,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "13957:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14807,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13957:73:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14808,
                        "nodeType": "ExpressionStatement",
                        "src": "13957:73:59"
                      },
                      {
                        "expression": {
                          "id": 14811,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 14809,
                            "name": "prizeStrategy",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13866,
                            "src": "14041:13:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14810,
                            "name": "_prizeStrategy",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14796,
                            "src": "14057:14:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "14041:30:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 14812,
                        "nodeType": "ExpressionStatement",
                        "src": "14041:30:59"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14814,
                              "name": "_prizeStrategy",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14796,
                              "src": "14104:14:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 14813,
                            "name": "PrizeStrategySet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11694,
                            "src": "14087:16:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 14815,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14087:32:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14816,
                        "nodeType": "EmitStatement",
                        "src": "14082:37:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14794,
                    "nodeType": "StructuredDocumentation",
                    "src": "13746:136:59",
                    "text": "@notice Sets the prize strategy of the prize pool.  Only callable by the owner.\n @param _prizeStrategy The new prize strategy"
                  },
                  "id": 14818,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setPrizeStrategy",
                  "nameLocation": "13896:17:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14797,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14796,
                        "mutability": "mutable",
                        "name": "_prizeStrategy",
                        "nameLocation": "13922:14:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14818,
                        "src": "13914:22:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14795,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "13914:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13913:24:59"
                  },
                  "returnParameters": {
                    "id": 14798,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13947:0:59"
                  },
                  "scope": 14875,
                  "src": "13887:239:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14828,
                    "nodeType": "Block",
                    "src": "14277:44:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 14824,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13863,
                              "src": "14294:6:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 14825,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "totalSupply",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 594,
                            "src": "14294:18:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_uint256_$",
                              "typeString": "function () view external returns (uint256)"
                            }
                          },
                          "id": 14826,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14294:20:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14823,
                        "id": 14827,
                        "nodeType": "Return",
                        "src": "14287:27:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14819,
                    "nodeType": "StructuredDocumentation",
                    "src": "14132:78:59",
                    "text": "@notice The current total of tickets.\n @return Ticket total supply."
                  },
                  "id": 14829,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_ticketTotalSupply",
                  "nameLocation": "14224:18:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14820,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "14242:2:59"
                  },
                  "returnParameters": {
                    "id": 14823,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14822,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14829,
                        "src": "14268:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14821,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "14268:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14267:9:59"
                  },
                  "scope": 14875,
                  "src": "14215:106:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14838,
                    "nodeType": "Block",
                    "src": "14513:39:59",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 14835,
                            "name": "block",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -4,
                            "src": "14530:5:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_magic_block",
                              "typeString": "block"
                            }
                          },
                          "id": 14836,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "timestamp",
                          "nodeType": "MemberAccess",
                          "src": "14530:15:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14834,
                        "id": 14837,
                        "nodeType": "Return",
                        "src": "14523:22:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14830,
                    "nodeType": "StructuredDocumentation",
                    "src": "14327:117:59",
                    "text": "@dev Gets the current time as represented by the current block\n @return The timestamp of the current block"
                  },
                  "id": 14839,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_currentTime",
                  "nameLocation": "14458:12:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14831,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "14470:2:59"
                  },
                  "returnParameters": {
                    "id": 14834,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14833,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14839,
                        "src": "14504:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14832,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "14504:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14503:9:59"
                  },
                  "scope": 14875,
                  "src": "14449:103:59",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 14840,
                    "nodeType": "StructuredDocumentation",
                    "src": "14629:406:59",
                    "text": "@notice Determines whether the passed token can be transferred out as an external award.\n @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\n prize strategy should not be allowed to move those tokens.\n @param _externalToken The address of the token to check\n @return True if the token may be awarded, false otherwise"
                  },
                  "id": 14847,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_canAwardExternal",
                  "nameLocation": "15049:17:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14843,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14842,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "15075:14:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14847,
                        "src": "15067:22:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14841,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "15067:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15066:24:59"
                  },
                  "returnParameters": {
                    "id": 14846,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14845,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14847,
                        "src": "15122:4:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14844,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "15122:4:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15121:6:59"
                  },
                  "scope": 14875,
                  "src": "15040:88:59",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 14848,
                    "nodeType": "StructuredDocumentation",
                    "src": "15134:98:59",
                    "text": "@notice Returns the ERC20 asset token used for deposits.\n @return The ERC20 asset token"
                  },
                  "id": 14854,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_token",
                  "nameLocation": "15246:6:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14849,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15252:2:59"
                  },
                  "returnParameters": {
                    "id": 14853,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14852,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14854,
                        "src": "15286:6:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 14851,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14850,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "15286:6:59"
                          },
                          "referencedDeclaration": 663,
                          "src": "15286:6:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15285:8:59"
                  },
                  "scope": 14875,
                  "src": "15237:57:59",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 14855,
                    "nodeType": "StructuredDocumentation",
                    "src": "15300:153:59",
                    "text": "@notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n @return The underlying balance of asset tokens"
                  },
                  "id": 14860,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_balance",
                  "nameLocation": "15467:8:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14856,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15475:2:59"
                  },
                  "returnParameters": {
                    "id": 14859,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14858,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14860,
                        "src": "15504:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14857,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15504:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15503:9:59"
                  },
                  "scope": 14875,
                  "src": "15458:55:59",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 14861,
                    "nodeType": "StructuredDocumentation",
                    "src": "15519:123:59",
                    "text": "@notice Supplies asset tokens to the yield source.\n @param _mintAmount The amount of asset tokens to be supplied"
                  },
                  "id": 14866,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_supply",
                  "nameLocation": "15656:7:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14864,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14863,
                        "mutability": "mutable",
                        "name": "_mintAmount",
                        "nameLocation": "15672:11:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14866,
                        "src": "15664:19:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14862,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15664:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15663:21:59"
                  },
                  "returnParameters": {
                    "id": 14865,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15701:0:59"
                  },
                  "scope": 14875,
                  "src": "15647:55:59",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 14867,
                    "nodeType": "StructuredDocumentation",
                    "src": "15708:198:59",
                    "text": "@notice Redeems asset tokens from the yield source.\n @param _redeemAmount The amount of yield-bearing tokens to be redeemed\n @return The actual amount of tokens that were redeemed."
                  },
                  "id": 14874,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_redeem",
                  "nameLocation": "15920:7:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14870,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14869,
                        "mutability": "mutable",
                        "name": "_redeemAmount",
                        "nameLocation": "15936:13:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 14874,
                        "src": "15928:21:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14868,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15928:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15927:23:59"
                  },
                  "returnParameters": {
                    "id": 14873,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14872,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14874,
                        "src": "15977:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14871,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15977:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15976:9:59"
                  },
                  "scope": 14875,
                  "src": "15911:75:59",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 14876,
              "src": "1138:14850:59",
              "usedErrors": []
            }
          ],
          "src": "37:15952:59"
        },
        "id": 59
      },
      "contracts/prize-pool/StakePrizePool.sol": {
        "ast": {
          "absolutePath": "contracts/prize-pool/StakePrizePool.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "ERC165Checker": [
              3421
            ],
            "ExtendedSafeCastLib": [
              12433
            ],
            "ICompLike": [
              11027
            ],
            "IControlledToken": [
              11069
            ],
            "IERC165": [
              3433
            ],
            "IERC20": [
              663
            ],
            "IERC721": [
              2049
            ],
            "IERC721Receiver": [
              2067
            ],
            "IPrizePool": [
              11883
            ],
            "ITicket": [
              12213
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "Ownable": [
              4086
            ],
            "PrizePool": [
              14875
            ],
            "ReentrancyGuard": [
              39
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ],
            "StakePrizePool": [
              14991
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 14992,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 14877,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:60"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 14878,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14992,
              "sourceUnit": 664,
              "src": "61:56:60",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/prize-pool/PrizePool.sol",
              "file": "./PrizePool.sol",
              "id": 14879,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14992,
              "sourceUnit": 14876,
              "src": "119:25:60",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 14881,
                    "name": "PrizePool",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 14875,
                    "src": "571:9:60"
                  },
                  "id": 14882,
                  "nodeType": "InheritanceSpecifier",
                  "src": "571:9:60"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 14880,
                "nodeType": "StructuredDocumentation",
                "src": "146:397:60",
                "text": " @title  PoolTogether V4 StakePrizePool\n @author PoolTogether Inc Team\n @notice The Stake Prize Pool is a prize pool in which users can deposit an ERC20 token.\n         These tokens are simply held by the Stake Prize Pool and become eligible for prizes.\n         Prizes are added manually by the Stake Prize Pool owner and are distributed to users at the end of the prize period."
              },
              "fullyImplemented": true,
              "id": 14991,
              "linearizedBaseContracts": [
                14991,
                14875,
                2067,
                39,
                4086,
                11883
              ],
              "name": "StakePrizePool",
              "nameLocation": "553:14:60",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 14883,
                    "nodeType": "StructuredDocumentation",
                    "src": "587:39:60",
                    "text": "@notice Address of the stake token."
                  },
                  "id": 14886,
                  "mutability": "mutable",
                  "name": "stakeToken",
                  "nameLocation": "646:10:60",
                  "nodeType": "VariableDeclaration",
                  "scope": 14991,
                  "src": "631:25:60",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IERC20_$663",
                    "typeString": "contract IERC20"
                  },
                  "typeName": {
                    "id": 14885,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 14884,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "631:6:60"
                    },
                    "referencedDeclaration": 663,
                    "src": "631:6:60",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 14887,
                    "nodeType": "StructuredDocumentation",
                    "src": "663:105:60",
                    "text": "@dev Emitted when stake prize pool is deployed.\n @param stakeToken Address of the stake token."
                  },
                  "id": 14892,
                  "name": "Deployed",
                  "nameLocation": "779:8:60",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 14891,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14890,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "stakeToken",
                        "nameLocation": "803:10:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 14892,
                        "src": "788:25:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 14889,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14888,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "788:6:60"
                          },
                          "referencedDeclaration": 663,
                          "src": "788:6:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "787:27:60"
                  },
                  "src": "773:42:60"
                },
                {
                  "body": {
                    "id": 14925,
                    "nodeType": "Block",
                    "src": "1045:178:60",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 14913,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 14907,
                                    "name": "_stakeToken",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14898,
                                    "src": "1071:11:60",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IERC20_$663",
                                      "typeString": "contract IERC20"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IERC20_$663",
                                      "typeString": "contract IERC20"
                                    }
                                  ],
                                  "id": 14906,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1063:7:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14905,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1063:7:60",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14908,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1063:20:60",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 14911,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1095:1:60",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 14910,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1087:7:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14909,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1087:7:60",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14912,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1087:10:60",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1063:34:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5374616b655072697a65506f6f6c2f7374616b652d746f6b656e2d6e6f742d7a65726f2d61646472657373",
                              "id": 14914,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1099:45:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_f1ff3ac5776bf3a9ba71032559232613105ede74d206130def2b107a45468a3c",
                                "typeString": "literal_string \"StakePrizePool/stake-token-not-zero-address\""
                              },
                              "value": "StakePrizePool/stake-token-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_f1ff3ac5776bf3a9ba71032559232613105ede74d206130def2b107a45468a3c",
                                "typeString": "literal_string \"StakePrizePool/stake-token-not-zero-address\""
                              }
                            ],
                            "id": 14904,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1055:7:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14915,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1055:90:60",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14916,
                        "nodeType": "ExpressionStatement",
                        "src": "1055:90:60"
                      },
                      {
                        "expression": {
                          "id": 14919,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 14917,
                            "name": "stakeToken",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14886,
                            "src": "1155:10:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$663",
                              "typeString": "contract IERC20"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14918,
                            "name": "_stakeToken",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14898,
                            "src": "1168:11:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$663",
                              "typeString": "contract IERC20"
                            }
                          },
                          "src": "1155:24:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "id": 14920,
                        "nodeType": "ExpressionStatement",
                        "src": "1155:24:60"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14922,
                              "name": "_stakeToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14898,
                              "src": "1204:11:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            ],
                            "id": 14921,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14892,
                            "src": "1195:8:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IERC20_$663_$returns$__$",
                              "typeString": "function (contract IERC20)"
                            }
                          },
                          "id": 14923,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1195:21:60",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14924,
                        "nodeType": "EmitStatement",
                        "src": "1190:26:60"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14893,
                    "nodeType": "StructuredDocumentation",
                    "src": "821:153:60",
                    "text": "@notice Deploy the Stake Prize Pool\n @param _owner Address of the Stake Prize Pool owner\n @param _stakeToken Address of the stake token"
                  },
                  "id": 14926,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 14901,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14895,
                          "src": "1037:6:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 14902,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 14900,
                        "name": "PrizePool",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 14875,
                        "src": "1027:9:60"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1027:17:60"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14899,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14895,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "999:6:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 14926,
                        "src": "991:14:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14894,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "991:7:60",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14898,
                        "mutability": "mutable",
                        "name": "_stakeToken",
                        "nameLocation": "1014:11:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 14926,
                        "src": "1007:18:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 14897,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14896,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "1007:6:60"
                          },
                          "referencedDeclaration": 663,
                          "src": "1007:6:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "990:36:60"
                  },
                  "returnParameters": {
                    "id": 14903,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1045:0:60"
                  },
                  "scope": 14991,
                  "src": "979:244:60",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    14847
                  ],
                  "body": {
                    "id": 14942,
                    "nodeType": "Block",
                    "src": "1729:61:60",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 14940,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "id": 14937,
                                "name": "stakeToken",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14886,
                                "src": "1754:10:60",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_IERC20_$663",
                                  "typeString": "contract IERC20"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_contract$_IERC20_$663",
                                  "typeString": "contract IERC20"
                                }
                              ],
                              "id": 14936,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "1746:7:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 14935,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "1746:7:60",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 14938,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "1746:19:60",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "id": 14939,
                            "name": "_externalToken",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14929,
                            "src": "1769:14:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "1746:37:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 14934,
                        "id": 14941,
                        "nodeType": "Return",
                        "src": "1739:44:60"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14927,
                    "nodeType": "StructuredDocumentation",
                    "src": "1229:406:60",
                    "text": "@notice Determines whether the passed token can be transferred out as an external award.\n @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\n prize strategy should not be allowed to move those tokens.\n @param _externalToken The address of the token to check\n @return True if the token may be awarded, false otherwise"
                  },
                  "id": 14943,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_canAwardExternal",
                  "nameLocation": "1649:17:60",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14931,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1705:8:60"
                  },
                  "parameters": {
                    "id": 14930,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14929,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "1675:14:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 14943,
                        "src": "1667:22:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14928,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1667:7:60",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1666:24:60"
                  },
                  "returnParameters": {
                    "id": 14934,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14933,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14943,
                        "src": "1723:4:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14932,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1723:4:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1722:6:60"
                  },
                  "scope": 14991,
                  "src": "1640:150:60",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14860
                  ],
                  "body": {
                    "id": 14958,
                    "nodeType": "Block",
                    "src": "2015:59:60",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 14954,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "2061:4:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_StakePrizePool_$14991",
                                    "typeString": "contract StakePrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_StakePrizePool_$14991",
                                    "typeString": "contract StakePrizePool"
                                  }
                                ],
                                "id": 14953,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2053:7:60",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 14952,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2053:7:60",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 14955,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2053:13:60",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 14950,
                              "name": "stakeToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14886,
                              "src": "2032:10:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 14951,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 602,
                            "src": "2032:20:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view external returns (uint256)"
                            }
                          },
                          "id": 14956,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2032:35:60",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14949,
                        "id": 14957,
                        "nodeType": "Return",
                        "src": "2025:42:60"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14944,
                    "nodeType": "StructuredDocumentation",
                    "src": "1796:153:60",
                    "text": "@notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n @return The underlying balance of asset tokens"
                  },
                  "id": 14959,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_balance",
                  "nameLocation": "1963:8:60",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14946,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1988:8:60"
                  },
                  "parameters": {
                    "id": 14945,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1971:2:60"
                  },
                  "returnParameters": {
                    "id": 14949,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14948,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14959,
                        "src": "2006:7:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14947,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2006:7:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2005:9:60"
                  },
                  "scope": 14991,
                  "src": "1954:120:60",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14854
                  ],
                  "body": {
                    "id": 14969,
                    "nodeType": "Block",
                    "src": "2268:34:60",
                    "statements": [
                      {
                        "expression": {
                          "id": 14967,
                          "name": "stakeToken",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14886,
                          "src": "2285:10:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "functionReturnParameters": 14966,
                        "id": 14968,
                        "nodeType": "Return",
                        "src": "2278:17:60"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14960,
                    "nodeType": "StructuredDocumentation",
                    "src": "2080:125:60",
                    "text": "@notice Returns the address of the ERC20 asset token used for deposits.\n @return Address of the ERC20 asset token."
                  },
                  "id": 14970,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_token",
                  "nameLocation": "2219:6:60",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14962,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2242:8:60"
                  },
                  "parameters": {
                    "id": 14961,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2225:2:60"
                  },
                  "returnParameters": {
                    "id": 14966,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14965,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14970,
                        "src": "2260:6:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 14964,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14963,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "2260:6:60"
                          },
                          "referencedDeclaration": 663,
                          "src": "2260:6:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2259:8:60"
                  },
                  "scope": 14991,
                  "src": "2210:92:60",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14866
                  ],
                  "body": {
                    "id": 14977,
                    "nodeType": "Block",
                    "src": "2497:62:60",
                    "statements": []
                  },
                  "documentation": {
                    "id": 14971,
                    "nodeType": "StructuredDocumentation",
                    "src": "2308:123:60",
                    "text": "@notice Supplies asset tokens to the yield source.\n @param _mintAmount The amount of asset tokens to be supplied"
                  },
                  "id": 14978,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_supply",
                  "nameLocation": "2445:7:60",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14975,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2488:8:60"
                  },
                  "parameters": {
                    "id": 14974,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14973,
                        "mutability": "mutable",
                        "name": "_mintAmount",
                        "nameLocation": "2461:11:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 14978,
                        "src": "2453:19:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14972,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2453:7:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2452:21:60"
                  },
                  "returnParameters": {
                    "id": 14976,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2497:0:60"
                  },
                  "scope": 14991,
                  "src": "2436:123:60",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14874
                  ],
                  "body": {
                    "id": 14989,
                    "nodeType": "Block",
                    "src": "2849:37:60",
                    "statements": [
                      {
                        "expression": {
                          "id": 14987,
                          "name": "_redeemAmount",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14981,
                          "src": "2866:13:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14986,
                        "id": 14988,
                        "nodeType": "Return",
                        "src": "2859:20:60"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14979,
                    "nodeType": "StructuredDocumentation",
                    "src": "2565:198:60",
                    "text": "@notice Redeems asset tokens from the yield source.\n @param _redeemAmount The amount of yield-bearing tokens to be redeemed\n @return The actual amount of tokens that were redeemed."
                  },
                  "id": 14990,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_redeem",
                  "nameLocation": "2777:7:60",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14983,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2822:8:60"
                  },
                  "parameters": {
                    "id": 14982,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14981,
                        "mutability": "mutable",
                        "name": "_redeemAmount",
                        "nameLocation": "2793:13:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 14990,
                        "src": "2785:21:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14980,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2785:7:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2784:23:60"
                  },
                  "returnParameters": {
                    "id": 14986,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14985,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14990,
                        "src": "2840:7:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14984,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2840:7:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2839:9:60"
                  },
                  "scope": 14991,
                  "src": "2768:118:60",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 14992,
              "src": "544:2344:60",
              "usedErrors": []
            }
          ],
          "src": "37:2852:60"
        },
        "id": 60
      },
      "contracts/prize-pool/YieldSourcePrizePool.sol": {
        "ast": {
          "absolutePath": "contracts/prize-pool/YieldSourcePrizePool.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "ERC165Checker": [
              3421
            ],
            "ExtendedSafeCastLib": [
              12433
            ],
            "ICompLike": [
              11027
            ],
            "IControlledToken": [
              11069
            ],
            "IERC165": [
              3433
            ],
            "IERC20": [
              663
            ],
            "IERC721": [
              2049
            ],
            "IERC721Receiver": [
              2067
            ],
            "IPrizePool": [
              11883
            ],
            "ITicket": [
              12213
            ],
            "IYieldSource": [
              4176
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "Ownable": [
              4086
            ],
            "PrizePool": [
              14875
            ],
            "ReentrancyGuard": [
              39
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              13599
            ],
            "YieldSourcePrizePool": [
              15239
            ]
          },
          "id": 15240,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 14993,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:61"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 14994,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15240,
              "sourceUnit": 664,
              "src": "61:56:61",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 14995,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15240,
              "sourceUnit": 1118,
              "src": "118:65:61",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Address.sol",
              "file": "@openzeppelin/contracts/utils/Address.sol",
              "id": 14996,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15240,
              "sourceUnit": 2392,
              "src": "184:51:61",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/yield-source-interface/contracts/IYieldSource.sol",
              "file": "@pooltogether/yield-source-interface/contracts/IYieldSource.sol",
              "id": 14997,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15240,
              "sourceUnit": 4177,
              "src": "236:73:61",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/prize-pool/PrizePool.sol",
              "file": "./PrizePool.sol",
              "id": 14998,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15240,
              "sourceUnit": 14876,
              "src": "311:25:61",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15000,
                    "name": "PrizePool",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 14875,
                    "src": "674:9:61"
                  },
                  "id": 15001,
                  "nodeType": "InheritanceSpecifier",
                  "src": "674:9:61"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 14999,
                "nodeType": "StructuredDocumentation",
                "src": "338:302:61",
                "text": " @title  PoolTogether V4 YieldSourcePrizePool\n @author PoolTogether Inc Team\n @notice The Yield Source Prize Pool uses a yield source contract to generate prizes.\n         Funds that are deposited into the prize pool are then deposited into a yield source. (i.e. Aave, Compound, etc...)"
              },
              "fullyImplemented": true,
              "id": 15239,
              "linearizedBaseContracts": [
                15239,
                14875,
                2067,
                39,
                4086,
                11883
              ],
              "name": "YieldSourcePrizePool",
              "nameLocation": "650:20:61",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 15005,
                  "libraryName": {
                    "id": 15002,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1117,
                    "src": "696:9:61"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "690:27:61",
                  "typeName": {
                    "id": 15004,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15003,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "710:6:61"
                    },
                    "referencedDeclaration": 663,
                    "src": "710:6:61",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "id": 15008,
                  "libraryName": {
                    "id": 15006,
                    "name": "Address",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2391,
                    "src": "728:7:61"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "722:26:61",
                  "typeName": {
                    "id": 15007,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "740:7:61",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  }
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15009,
                    "nodeType": "StructuredDocumentation",
                    "src": "754:40:61",
                    "text": "@notice Address of the yield source."
                  },
                  "functionSelector": "b2470e5c",
                  "id": 15012,
                  "mutability": "immutable",
                  "name": "yieldSource",
                  "nameLocation": "829:11:61",
                  "nodeType": "VariableDeclaration",
                  "scope": 15239,
                  "src": "799:41:61",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IYieldSource_$4176",
                    "typeString": "contract IYieldSource"
                  },
                  "typeName": {
                    "id": 15011,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15010,
                      "name": "IYieldSource",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 4176,
                      "src": "799:12:61"
                    },
                    "referencedDeclaration": 4176,
                    "src": "799:12:61",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IYieldSource_$4176",
                      "typeString": "contract IYieldSource"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15013,
                    "nodeType": "StructuredDocumentation",
                    "src": "847:114:61",
                    "text": "@dev Emitted when yield source prize pool is deployed.\n @param yieldSource Address of the yield source."
                  },
                  "id": 15017,
                  "name": "Deployed",
                  "nameLocation": "972:8:61",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15016,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15015,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "yieldSource",
                        "nameLocation": "997:11:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15017,
                        "src": "981:27:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15014,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "981:7:61",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "980:29:61"
                  },
                  "src": "966:44:61"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15018,
                    "nodeType": "StructuredDocumentation",
                    "src": "1016:126:61",
                    "text": "@notice Emitted when stray deposit token balance in this contract is swept\n @param amount The amount that was swept"
                  },
                  "id": 15022,
                  "name": "Swept",
                  "nameLocation": "1153:5:61",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15021,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15020,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1167:6:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15022,
                        "src": "1159:14:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15019,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1159:7:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1158:16:61"
                  },
                  "src": "1147:28:61"
                },
                {
                  "body": {
                    "id": 15106,
                    "nodeType": "Block",
                    "src": "1472:699:61",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 15043,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 15037,
                                    "name": "_yieldSource",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15028,
                                    "src": "1511:12:61",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                      "typeString": "contract IYieldSource"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                      "typeString": "contract IYieldSource"
                                    }
                                  ],
                                  "id": 15036,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1503:7:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 15035,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1503:7:61",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 15038,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1503:21:61",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 15041,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1536:1:61",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 15040,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1528:7:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 15039,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1528:7:61",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 15042,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1528:10:61",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1503:35:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5969656c64536f757263655072697a65506f6f6c2f7969656c642d736f757263652d6e6f742d7a65726f2d61646472657373",
                              "id": 15044,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1552:52:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_7dbbc08f44bcdf3b7293b9e33119edb15fece3a9f724a4cac7c7d47b1a9e7221",
                                "typeString": "literal_string \"YieldSourcePrizePool/yield-source-not-zero-address\""
                              },
                              "value": "YieldSourcePrizePool/yield-source-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_7dbbc08f44bcdf3b7293b9e33119edb15fece3a9f724a4cac7c7d47b1a9e7221",
                                "typeString": "literal_string \"YieldSourcePrizePool/yield-source-not-zero-address\""
                              }
                            ],
                            "id": 15034,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1482:7:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 15045,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1482:132:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15046,
                        "nodeType": "ExpressionStatement",
                        "src": "1482:132:61"
                      },
                      {
                        "expression": {
                          "id": 15049,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15047,
                            "name": "yieldSource",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15012,
                            "src": "1625:11:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IYieldSource_$4176",
                              "typeString": "contract IYieldSource"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15048,
                            "name": "_yieldSource",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15028,
                            "src": "1639:12:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IYieldSource_$4176",
                              "typeString": "contract IYieldSource"
                            }
                          },
                          "src": "1625:26:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IYieldSource_$4176",
                            "typeString": "contract IYieldSource"
                          }
                        },
                        "id": 15050,
                        "nodeType": "ExpressionStatement",
                        "src": "1625:26:61"
                      },
                      {
                        "assignments": [
                          15052,
                          15054
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15052,
                            "mutability": "mutable",
                            "name": "succeeded",
                            "nameLocation": "1735:9:61",
                            "nodeType": "VariableDeclaration",
                            "scope": 15106,
                            "src": "1730:14:61",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 15051,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "1730:4:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 15054,
                            "mutability": "mutable",
                            "name": "data",
                            "nameLocation": "1759:4:61",
                            "nodeType": "VariableDeclaration",
                            "scope": 15106,
                            "src": "1746:17:61",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 15053,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "1746:5:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15067,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 15062,
                                      "name": "_yieldSource",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 15028,
                                      "src": "1830:12:61",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                        "typeString": "contract IYieldSource"
                                      }
                                    },
                                    "id": 15063,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "depositToken",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 4151,
                                    "src": "1830:25:61",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                                      "typeString": "function () view external returns (address)"
                                    }
                                  },
                                  "id": 15064,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "1830:34:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                ],
                                "expression": {
                                  "id": 15060,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "1813:3:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 15061,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "1813:16:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 15065,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1813:52:61",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 15057,
                                  "name": "_yieldSource",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15028,
                                  "src": "1775:12:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                    "typeString": "contract IYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                    "typeString": "contract IYieldSource"
                                  }
                                ],
                                "id": 15056,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1767:7:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 15055,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1767:7:61",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 15058,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1767:21:61",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "id": 15059,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "staticcall",
                            "nodeType": "MemberAccess",
                            "src": "1767:32:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$",
                              "typeString": "function (bytes memory) view returns (bool,bytes memory)"
                            }
                          },
                          "id": 15066,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1767:108:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1729:146:61"
                      },
                      {
                        "assignments": [
                          15069
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15069,
                            "mutability": "mutable",
                            "name": "resultingAddress",
                            "nameLocation": "1893:16:61",
                            "nodeType": "VariableDeclaration",
                            "scope": 15106,
                            "src": "1885:24:61",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 15068,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "1885:7:61",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15070,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1885:24:61"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15074,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 15071,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15054,
                              "src": "1923:4:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 15072,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "1923:11:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 15073,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1937:1:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1923:15:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15086,
                        "nodeType": "IfStatement",
                        "src": "1919:92:61",
                        "trueBody": {
                          "id": 15085,
                          "nodeType": "Block",
                          "src": "1940:71:61",
                          "statements": [
                            {
                              "expression": {
                                "id": 15083,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 15075,
                                  "name": "resultingAddress",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15069,
                                  "src": "1954:16:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "id": 15078,
                                      "name": "data",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 15054,
                                      "src": "1984:4:61",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes_memory_ptr",
                                        "typeString": "bytes memory"
                                      }
                                    },
                                    {
                                      "components": [
                                        {
                                          "id": 15080,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "nodeType": "ElementaryTypeNameExpression",
                                          "src": "1991:7:61",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_address_$",
                                            "typeString": "type(address)"
                                          },
                                          "typeName": {
                                            "id": 15079,
                                            "name": "address",
                                            "nodeType": "ElementaryTypeName",
                                            "src": "1991:7:61",
                                            "typeDescriptions": {}
                                          }
                                        }
                                      ],
                                      "id": 15081,
                                      "isConstant": false,
                                      "isInlineArray": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "TupleExpression",
                                      "src": "1990:9:61",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_bytes_memory_ptr",
                                        "typeString": "bytes memory"
                                      },
                                      {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      }
                                    ],
                                    "expression": {
                                      "id": 15076,
                                      "name": "abi",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -1,
                                      "src": "1973:3:61",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_abi",
                                        "typeString": "abi"
                                      }
                                    },
                                    "id": 15077,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "decode",
                                    "nodeType": "MemberAccess",
                                    "src": "1973:10:61",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_abidecode_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 15082,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1973:27:61",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address_payable",
                                    "typeString": "address payable"
                                  }
                                },
                                "src": "1954:46:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 15084,
                              "nodeType": "ExpressionStatement",
                              "src": "1954:46:61"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 15095,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 15088,
                                "name": "succeeded",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15052,
                                "src": "2028:9:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 15094,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 15089,
                                  "name": "resultingAddress",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15069,
                                  "src": "2041:16:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "hexValue": "30",
                                      "id": 15092,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "2069:1:61",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      }
                                    ],
                                    "id": 15091,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "2061:7:61",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 15090,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2061:7:61",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 15093,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2061:10:61",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "2041:30:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "2028:43:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5969656c64536f757263655072697a65506f6f6c2f696e76616c69642d7969656c642d736f75726365",
                              "id": 15096,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2073:43:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_11a209ccfa541311d13853078244f17ddd8fdab4bc6a8bba4b0700d66b1422e4",
                                "typeString": "literal_string \"YieldSourcePrizePool/invalid-yield-source\""
                              },
                              "value": "YieldSourcePrizePool/invalid-yield-source"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_11a209ccfa541311d13853078244f17ddd8fdab4bc6a8bba4b0700d66b1422e4",
                                "typeString": "literal_string \"YieldSourcePrizePool/invalid-yield-source\""
                              }
                            ],
                            "id": 15087,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2020:7:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 15097,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2020:97:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15098,
                        "nodeType": "ExpressionStatement",
                        "src": "2020:97:61"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 15102,
                                  "name": "_yieldSource",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15028,
                                  "src": "2150:12:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                    "typeString": "contract IYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                    "typeString": "contract IYieldSource"
                                  }
                                ],
                                "id": 15101,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2142:7:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 15100,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2142:7:61",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 15103,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2142:21:61",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 15099,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15017,
                            "src": "2133:8:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 15104,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2133:31:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15105,
                        "nodeType": "EmitStatement",
                        "src": "2128:36:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15023,
                    "nodeType": "StructuredDocumentation",
                    "src": "1181:213:61",
                    "text": "@notice Deploy the Prize Pool and Yield Service with the required contract connections\n @param _owner Address of the Yield Source Prize Pool owner\n @param _yieldSource Address of the yield source"
                  },
                  "id": 15107,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 15031,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15025,
                          "src": "1464:6:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 15032,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 15030,
                        "name": "PrizePool",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 14875,
                        "src": "1454:9:61"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1454:17:61"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15029,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15025,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1419:6:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15107,
                        "src": "1411:14:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15024,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1411:7:61",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15028,
                        "mutability": "mutable",
                        "name": "_yieldSource",
                        "nameLocation": "1440:12:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15107,
                        "src": "1427:25:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IYieldSource_$4176",
                          "typeString": "contract IYieldSource"
                        },
                        "typeName": {
                          "id": 15027,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15026,
                            "name": "IYieldSource",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 4176,
                            "src": "1427:12:61"
                          },
                          "referencedDeclaration": 4176,
                          "src": "1427:12:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IYieldSource_$4176",
                            "typeString": "contract IYieldSource"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1410:43:61"
                  },
                  "returnParameters": {
                    "id": 15033,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1472:0:61"
                  },
                  "scope": 15239,
                  "src": "1399:772:61",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 15134,
                    "nodeType": "Block",
                    "src": "2346:124:61",
                    "statements": [
                      {
                        "assignments": [
                          15116
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15116,
                            "mutability": "mutable",
                            "name": "balance",
                            "nameLocation": "2364:7:61",
                            "nodeType": "VariableDeclaration",
                            "scope": 15134,
                            "src": "2356:15:61",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 15115,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2356:7:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15125,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 15122,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "2401:4:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$15239",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$15239",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                ],
                                "id": 15121,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2393:7:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 15120,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2393:7:61",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 15123,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2393:13:61",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 15117,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  15195
                                ],
                                "referencedDeclaration": 15195,
                                "src": "2374:6:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_IERC20_$663_$",
                                  "typeString": "function () view returns (contract IERC20)"
                                }
                              },
                              "id": 15118,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2374:8:61",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 15119,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 602,
                            "src": "2374:18:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view external returns (uint256)"
                            }
                          },
                          "id": 15124,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2374:33:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2356:51:61"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15127,
                              "name": "balance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15116,
                              "src": "2425:7:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 15126,
                            "name": "_supply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              15223
                            ],
                            "referencedDeclaration": 15223,
                            "src": "2417:7:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 15128,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2417:16:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15129,
                        "nodeType": "ExpressionStatement",
                        "src": "2417:16:61"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15131,
                              "name": "balance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15116,
                              "src": "2455:7:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 15130,
                            "name": "Swept",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15022,
                            "src": "2449:5:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 15132,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2449:14:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15133,
                        "nodeType": "EmitStatement",
                        "src": "2444:19:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15108,
                    "nodeType": "StructuredDocumentation",
                    "src": "2177:115:61",
                    "text": "@notice Sweeps any stray balance of deposit tokens into the yield source.\n @dev This becomes prize money"
                  },
                  "functionSelector": "35faa416",
                  "id": 15135,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 15111,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 15110,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 38,
                        "src": "2323:12:61"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2323:12:61"
                    },
                    {
                      "id": 15113,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 15112,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "2336:9:61"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2336:9:61"
                    }
                  ],
                  "name": "sweep",
                  "nameLocation": "2306:5:61",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15109,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2311:2:61"
                  },
                  "returnParameters": {
                    "id": 15114,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2346:0:61"
                  },
                  "scope": 15239,
                  "src": "2297:173:61",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    14847
                  ],
                  "body": {
                    "id": 15163,
                    "nodeType": "Block",
                    "src": "2976:197:61",
                    "statements": [
                      {
                        "assignments": [
                          15146
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15146,
                            "mutability": "mutable",
                            "name": "_yieldSource",
                            "nameLocation": "2999:12:61",
                            "nodeType": "VariableDeclaration",
                            "scope": 15163,
                            "src": "2986:25:61",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IYieldSource_$4176",
                              "typeString": "contract IYieldSource"
                            },
                            "typeName": {
                              "id": 15145,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 15144,
                                "name": "IYieldSource",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 4176,
                                "src": "2986:12:61"
                              },
                              "referencedDeclaration": 4176,
                              "src": "2986:12:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                "typeString": "contract IYieldSource"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15148,
                        "initialValue": {
                          "id": 15147,
                          "name": "yieldSource",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15012,
                          "src": "3014:11:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IYieldSource_$4176",
                            "typeString": "contract IYieldSource"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2986:39:61"
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 15160,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 15154,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 15149,
                                  "name": "_externalToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15138,
                                  "src": "3056:14:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "id": 15152,
                                      "name": "_yieldSource",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 15146,
                                      "src": "3082:12:61",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                        "typeString": "contract IYieldSource"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                        "typeString": "contract IYieldSource"
                                      }
                                    ],
                                    "id": 15151,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "3074:7:61",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 15150,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "3074:7:61",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 15153,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3074:21:61",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "3056:39:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 15159,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 15155,
                                  "name": "_externalToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15138,
                                  "src": "3111:14:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "expression": {
                                      "id": 15156,
                                      "name": "_yieldSource",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 15146,
                                      "src": "3129:12:61",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                        "typeString": "contract IYieldSource"
                                      }
                                    },
                                    "id": 15157,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "depositToken",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 4151,
                                    "src": "3129:25:61",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                                      "typeString": "function () view external returns (address)"
                                    }
                                  },
                                  "id": 15158,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3129:27:61",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "3111:45:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "3056:100:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "id": 15161,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "3042:124:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 15143,
                        "id": 15162,
                        "nodeType": "Return",
                        "src": "3035:131:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15136,
                    "nodeType": "StructuredDocumentation",
                    "src": "2476:406:61",
                    "text": "@notice Determines whether the passed token can be transferred out as an external award.\n @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\n prize strategy should not be allowed to move those tokens.\n @param _externalToken The address of the token to check\n @return True if the token may be awarded, false otherwise"
                  },
                  "id": 15164,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_canAwardExternal",
                  "nameLocation": "2896:17:61",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15140,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2952:8:61"
                  },
                  "parameters": {
                    "id": 15139,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15138,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "2922:14:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15164,
                        "src": "2914:22:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15137,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2914:7:61",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2913:24:61"
                  },
                  "returnParameters": {
                    "id": 15143,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15142,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15164,
                        "src": "2970:4:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 15141,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2970:4:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2969:6:61"
                  },
                  "scope": 15239,
                  "src": "2887:286:61",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14860
                  ],
                  "body": {
                    "id": 15179,
                    "nodeType": "Block",
                    "src": "3393:65:61",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 15175,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "3445:4:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$15239",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$15239",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                ],
                                "id": 15174,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3437:7:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 15173,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3437:7:61",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 15176,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3437:13:61",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 15171,
                              "name": "yieldSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15012,
                              "src": "3410:11:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                "typeString": "contract IYieldSource"
                              }
                            },
                            "id": 15172,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOfToken",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4159,
                            "src": "3410:26:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) external returns (uint256)"
                            }
                          },
                          "id": 15177,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3410:41:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 15170,
                        "id": 15178,
                        "nodeType": "Return",
                        "src": "3403:48:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15165,
                    "nodeType": "StructuredDocumentation",
                    "src": "3179:153:61",
                    "text": "@notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n @return The underlying balance of asset tokens"
                  },
                  "id": 15180,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_balance",
                  "nameLocation": "3346:8:61",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15167,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3366:8:61"
                  },
                  "parameters": {
                    "id": 15166,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3354:2:61"
                  },
                  "returnParameters": {
                    "id": 15170,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15169,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15180,
                        "src": "3384:7:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15168,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3384:7:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3383:9:61"
                  },
                  "scope": 15239,
                  "src": "3337:121:61",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14854
                  ],
                  "body": {
                    "id": 15194,
                    "nodeType": "Block",
                    "src": "3652:58:61",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 15189,
                                  "name": "yieldSource",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15012,
                                  "src": "3676:11:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                    "typeString": "contract IYieldSource"
                                  }
                                },
                                "id": 15190,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "depositToken",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 4151,
                                "src": "3676:24:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                                  "typeString": "function () view external returns (address)"
                                }
                              },
                              "id": 15191,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3676:26:61",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 15188,
                            "name": "IERC20",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 663,
                            "src": "3669:6:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_IERC20_$663_$",
                              "typeString": "type(contract IERC20)"
                            }
                          },
                          "id": 15192,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3669:34:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "functionReturnParameters": 15187,
                        "id": 15193,
                        "nodeType": "Return",
                        "src": "3662:41:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15181,
                    "nodeType": "StructuredDocumentation",
                    "src": "3464:125:61",
                    "text": "@notice Returns the address of the ERC20 asset token used for deposits.\n @return Address of the ERC20 asset token."
                  },
                  "id": 15195,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_token",
                  "nameLocation": "3603:6:61",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15183,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3626:8:61"
                  },
                  "parameters": {
                    "id": 15182,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3609:2:61"
                  },
                  "returnParameters": {
                    "id": 15187,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15186,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15195,
                        "src": "3644:6:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 15185,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15184,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "3644:6:61"
                          },
                          "referencedDeclaration": 663,
                          "src": "3644:6:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3643:8:61"
                  },
                  "scope": 15239,
                  "src": "3594:116:61",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14866
                  ],
                  "body": {
                    "id": 15222,
                    "nodeType": "Block",
                    "src": "3900:145:61",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 15207,
                                  "name": "yieldSource",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15012,
                                  "src": "3949:11:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                    "typeString": "contract IYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                    "typeString": "contract IYieldSource"
                                  }
                                ],
                                "id": 15206,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3941:7:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 15205,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3941:7:61",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 15208,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3941:20:61",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 15209,
                              "name": "_mintAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15198,
                              "src": "3963:11:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 15202,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  15195
                                ],
                                "referencedDeclaration": 15195,
                                "src": "3910:6:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_IERC20_$663_$",
                                  "typeString": "function () view returns (contract IERC20)"
                                }
                              },
                              "id": 15203,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3910:8:61",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 15204,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeIncreaseAllowance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1030,
                            "src": "3910:30:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 15210,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3910:65:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15211,
                        "nodeType": "ExpressionStatement",
                        "src": "3910:65:61"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15215,
                              "name": "_mintAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15198,
                              "src": "4011:11:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 15218,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "4032:4:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$15239",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$15239",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                ],
                                "id": 15217,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4024:7:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 15216,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4024:7:61",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 15219,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4024:13:61",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 15212,
                              "name": "yieldSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15012,
                              "src": "3985:11:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                "typeString": "contract IYieldSource"
                              }
                            },
                            "id": 15214,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "supplyTokenTo",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4167,
                            "src": "3985:25:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint256_$_t_address_$returns$__$",
                              "typeString": "function (uint256,address) external"
                            }
                          },
                          "id": 15220,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3985:53:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15221,
                        "nodeType": "ExpressionStatement",
                        "src": "3985:53:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15196,
                    "nodeType": "StructuredDocumentation",
                    "src": "3716:123:61",
                    "text": "@notice Supplies asset tokens to the yield source.\n @param _mintAmount The amount of asset tokens to be supplied"
                  },
                  "id": 15223,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_supply",
                  "nameLocation": "3853:7:61",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15200,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3891:8:61"
                  },
                  "parameters": {
                    "id": 15199,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15198,
                        "mutability": "mutable",
                        "name": "_mintAmount",
                        "nameLocation": "3869:11:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15223,
                        "src": "3861:19:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15197,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3861:7:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3860:21:61"
                  },
                  "returnParameters": {
                    "id": 15201,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3900:0:61"
                  },
                  "scope": 15239,
                  "src": "3844:201:61",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14874
                  ],
                  "body": {
                    "id": 15237,
                    "nodeType": "Block",
                    "src": "4330:62:61",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15234,
                              "name": "_redeemAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15226,
                              "src": "4371:13:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 15232,
                              "name": "yieldSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15012,
                              "src": "4347:11:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IYieldSource_$4176",
                                "typeString": "contract IYieldSource"
                              }
                            },
                            "id": 15233,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "redeemToken",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4175,
                            "src": "4347:23:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) external returns (uint256)"
                            }
                          },
                          "id": 15235,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4347:38:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 15231,
                        "id": 15236,
                        "nodeType": "Return",
                        "src": "4340:45:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15224,
                    "nodeType": "StructuredDocumentation",
                    "src": "4051:198:61",
                    "text": "@notice Redeems asset tokens from the yield source.\n @param _redeemAmount The amount of yield-bearing tokens to be redeemed\n @return The actual amount of tokens that were redeemed."
                  },
                  "id": 15238,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_redeem",
                  "nameLocation": "4263:7:61",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15228,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4303:8:61"
                  },
                  "parameters": {
                    "id": 15227,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15226,
                        "mutability": "mutable",
                        "name": "_redeemAmount",
                        "nameLocation": "4279:13:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15238,
                        "src": "4271:21:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15225,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4271:7:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4270:23:61"
                  },
                  "returnParameters": {
                    "id": 15231,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15230,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15238,
                        "src": "4321:7:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15229,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4321:7:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4320:9:61"
                  },
                  "scope": 15239,
                  "src": "4254:138:61",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 15240,
              "src": "641:3753:61",
              "usedErrors": []
            }
          ],
          "src": "37:4358:61"
        },
        "id": 61
      },
      "contracts/prize-strategy/PrizeSplit.sol": {
        "ast": {
          "absolutePath": "contracts/prize-strategy/PrizeSplit.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12433
            ],
            "ICompLike": [
              11027
            ],
            "IControlledToken": [
              11069
            ],
            "IERC20": [
              663
            ],
            "IPrizePool": [
              11883
            ],
            "IPrizeSplit": [
              11959
            ],
            "ITicket": [
              12213
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "Ownable": [
              4086
            ],
            "PrizeSplit": [
              15589
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 15590,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15241,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:62"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "id": 15242,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15590,
              "sourceUnit": 4087,
              "src": "61:69:62",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IPrizeSplit.sol",
              "file": "../interfaces/IPrizeSplit.sol",
              "id": 15243,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15590,
              "sourceUnit": 11960,
              "src": "132:39:62",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15245,
                    "name": "IPrizeSplit",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11959,
                    "src": "277:11:62"
                  },
                  "id": 15246,
                  "nodeType": "InheritanceSpecifier",
                  "src": "277:11:62"
                },
                {
                  "baseName": {
                    "id": 15247,
                    "name": "Ownable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 4086,
                    "src": "290:7:62"
                  },
                  "id": 15248,
                  "nodeType": "InheritanceSpecifier",
                  "src": "290:7:62"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 15244,
                "nodeType": "StructuredDocumentation",
                "src": "173:71:62",
                "text": " @title PrizeSplit Interface\n @author PoolTogether Inc Team"
              },
              "fullyImplemented": false,
              "id": 15589,
              "linearizedBaseContracts": [
                15589,
                4086,
                11959
              ],
              "name": "PrizeSplit",
              "nameLocation": "263:10:62",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 15252,
                  "mutability": "mutable",
                  "name": "_prizeSplits",
                  "nameLocation": "385:12:62",
                  "nodeType": "VariableDeclaration",
                  "scope": 15589,
                  "src": "357:40:62",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                    "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 15250,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 15249,
                        "name": "PrizeSplitConfig",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 11903,
                        "src": "357:16:62"
                      },
                      "referencedDeclaration": 11903,
                      "src": "357:16:62",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage_ptr",
                        "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                      }
                    },
                    "id": 15251,
                    "nodeType": "ArrayTypeName",
                    "src": "357:18:62",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage_ptr",
                      "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": true,
                  "functionSelector": "45a9f187",
                  "id": 15255,
                  "mutability": "constant",
                  "name": "ONE_AS_FIXED_POINT_3",
                  "nameLocation": "427:20:62",
                  "nodeType": "VariableDeclaration",
                  "scope": 15589,
                  "src": "404:50:62",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint16",
                    "typeString": "uint16"
                  },
                  "typeName": {
                    "id": 15253,
                    "name": "uint16",
                    "nodeType": "ElementaryTypeName",
                    "src": "404:6:62",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint16",
                      "typeString": "uint16"
                    }
                  },
                  "value": {
                    "hexValue": "31303030",
                    "id": 15254,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "450:4:62",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_1000_by_1",
                      "typeString": "int_const 1000"
                    },
                    "value": "1000"
                  },
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11926
                  ],
                  "body": {
                    "id": 15269,
                    "nodeType": "Block",
                    "src": "691:54:62",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 15265,
                            "name": "_prizeSplits",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15252,
                            "src": "708:12:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                            }
                          },
                          "id": 15267,
                          "indexExpression": {
                            "id": 15266,
                            "name": "_prizeSplitIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15258,
                            "src": "721:16:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "708:30:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                          }
                        },
                        "functionReturnParameters": 15264,
                        "id": 15268,
                        "nodeType": "Return",
                        "src": "701:37:62"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15256,
                    "nodeType": "StructuredDocumentation",
                    "src": "517:27:62",
                    "text": "@inheritdoc IPrizeSplit"
                  },
                  "functionSelector": "cf713d6e",
                  "id": 15270,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeSplit",
                  "nameLocation": "558:13:62",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15260,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "636:8:62"
                  },
                  "parameters": {
                    "id": 15259,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15258,
                        "mutability": "mutable",
                        "name": "_prizeSplitIndex",
                        "nameLocation": "580:16:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15270,
                        "src": "572:24:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15257,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "572:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "571:26:62"
                  },
                  "returnParameters": {
                    "id": 15264,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15263,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15270,
                        "src": "662:23:62",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                        },
                        "typeName": {
                          "id": 15262,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15261,
                            "name": "PrizeSplitConfig",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11903,
                            "src": "662:16:62"
                          },
                          "referencedDeclaration": 11903,
                          "src": "662:16:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "661:25:62"
                  },
                  "scope": 15589,
                  "src": "549:196:62",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11934
                  ],
                  "body": {
                    "id": 15281,
                    "nodeType": "Block",
                    "src": "868:36:62",
                    "statements": [
                      {
                        "expression": {
                          "id": 15279,
                          "name": "_prizeSplits",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15252,
                          "src": "885:12:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                          }
                        },
                        "functionReturnParameters": 15278,
                        "id": 15280,
                        "nodeType": "Return",
                        "src": "878:19:62"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15271,
                    "nodeType": "StructuredDocumentation",
                    "src": "751:27:62",
                    "text": "@inheritdoc IPrizeSplit"
                  },
                  "functionSelector": "cf1e3b59",
                  "id": 15282,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeSplits",
                  "nameLocation": "792:14:62",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15273,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "823:8:62"
                  },
                  "parameters": {
                    "id": 15272,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "806:2:62"
                  },
                  "returnParameters": {
                    "id": 15278,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15277,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15282,
                        "src": "841:25:62",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 15275,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 15274,
                              "name": "PrizeSplitConfig",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11903,
                              "src": "841:16:62"
                            },
                            "referencedDeclaration": 11903,
                            "src": "841:16:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                            }
                          },
                          "id": 15276,
                          "nodeType": "ArrayTypeName",
                          "src": "841:18:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "840:27:62"
                  },
                  "scope": 15589,
                  "src": "783:121:62",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11949
                  ],
                  "body": {
                    "id": 15426,
                    "nodeType": "Block",
                    "src": "1067:2160:62",
                    "statements": [
                      {
                        "assignments": [
                          15294
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15294,
                            "mutability": "mutable",
                            "name": "newPrizeSplitsLength",
                            "nameLocation": "1085:20:62",
                            "nodeType": "VariableDeclaration",
                            "scope": 15426,
                            "src": "1077:28:62",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 15293,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1077:7:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15297,
                        "initialValue": {
                          "expression": {
                            "id": 15295,
                            "name": "_newPrizeSplits",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15287,
                            "src": "1108:15:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_calldata_ptr_$dyn_calldata_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig calldata[] calldata"
                            }
                          },
                          "id": 15296,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "1108:22:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1077:53:62"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 15305,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 15299,
                                "name": "newPrizeSplitsLength",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15294,
                                "src": "1148:20:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 15302,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "1177:5:62",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint8_$",
                                        "typeString": "type(uint8)"
                                      },
                                      "typeName": {
                                        "id": 15301,
                                        "name": "uint8",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "1177:5:62",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint8_$",
                                        "typeString": "type(uint8)"
                                      }
                                    ],
                                    "id": 15300,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1172:4:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 15303,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1172:11:62",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint8",
                                    "typeString": "type(uint8)"
                                  }
                                },
                                "id": 15304,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "1172:15:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "src": "1148:39:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c656e677468",
                              "id": 15306,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1189:39:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplits-length\""
                              },
                              "value": "PrizeSplit/invalid-prizesplits-length"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplits-length\""
                              }
                            ],
                            "id": 15298,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1140:7:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 15307,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1140:89:62",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15308,
                        "nodeType": "ExpressionStatement",
                        "src": "1140:89:62"
                      },
                      {
                        "body": {
                          "id": 15386,
                          "nodeType": "Block",
                          "src": "1406:1207:62",
                          "statements": [
                            {
                              "assignments": [
                                15321
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 15321,
                                  "mutability": "mutable",
                                  "name": "split",
                                  "nameLocation": "1444:5:62",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 15386,
                                  "src": "1420:29:62",
                                  "stateVariable": false,
                                  "storageLocation": "memory",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                  },
                                  "typeName": {
                                    "id": 15320,
                                    "nodeType": "UserDefinedTypeName",
                                    "pathNode": {
                                      "id": 15319,
                                      "name": "PrizeSplitConfig",
                                      "nodeType": "IdentifierPath",
                                      "referencedDeclaration": 11903,
                                      "src": "1420:16:62"
                                    },
                                    "referencedDeclaration": 11903,
                                    "src": "1420:16:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage_ptr",
                                      "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 15325,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 15322,
                                  "name": "_newPrizeSplits",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15287,
                                  "src": "1452:15:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_calldata_ptr_$dyn_calldata_ptr",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig calldata[] calldata"
                                  }
                                },
                                "id": 15324,
                                "indexExpression": {
                                  "id": 15323,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15310,
                                  "src": "1468:5:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "1452:22:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_calldata_ptr",
                                  "typeString": "struct IPrizeSplit.PrizeSplitConfig calldata"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "1420:54:62"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    "id": 15333,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "expression": {
                                        "id": 15327,
                                        "name": "split",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 15321,
                                        "src": "1560:5:62",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                          "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                        }
                                      },
                                      "id": 15328,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "target",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 11900,
                                      "src": "1560:12:62",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "!=",
                                    "rightExpression": {
                                      "arguments": [
                                        {
                                          "hexValue": "30",
                                          "id": 15331,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "1584:1:62",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_rational_0_by_1",
                                            "typeString": "int_const 0"
                                          },
                                          "value": "0"
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_rational_0_by_1",
                                            "typeString": "int_const 0"
                                          }
                                        ],
                                        "id": 15330,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "1576:7:62",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_address_$",
                                          "typeString": "type(address)"
                                        },
                                        "typeName": {
                                          "id": 15329,
                                          "name": "address",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "1576:7:62",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 15332,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "1576:10:62",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    "src": "1560:26:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746172676574",
                                    "id": 15334,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1588:38:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6",
                                      "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-target\""
                                    },
                                    "value": "PrizeSplit/invalid-prizesplit-target"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    {
                                      "typeIdentifier": "t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6",
                                      "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-target\""
                                    }
                                  ],
                                  "id": 15326,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "1552:7:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 15335,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1552:75:62",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 15336,
                              "nodeType": "ExpressionStatement",
                              "src": "1552:75:62"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 15340,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 15337,
                                    "name": "_prizeSplits",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15252,
                                    "src": "1786:12:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                                      "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                    }
                                  },
                                  "id": 15338,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "length",
                                  "nodeType": "MemberAccess",
                                  "src": "1786:19:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "id": 15339,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15310,
                                  "src": "1809:5:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "1786:28:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 15376,
                                "nodeType": "Block",
                                "src": "1879:594:62",
                                "statements": [
                                  {
                                    "assignments": [
                                      15350
                                    ],
                                    "declarations": [
                                      {
                                        "constant": false,
                                        "id": 15350,
                                        "mutability": "mutable",
                                        "name": "currentSplit",
                                        "nameLocation": "2002:12:62",
                                        "nodeType": "VariableDeclaration",
                                        "scope": 15376,
                                        "src": "1978:36:62",
                                        "stateVariable": false,
                                        "storageLocation": "memory",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                          "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                        },
                                        "typeName": {
                                          "id": 15349,
                                          "nodeType": "UserDefinedTypeName",
                                          "pathNode": {
                                            "id": 15348,
                                            "name": "PrizeSplitConfig",
                                            "nodeType": "IdentifierPath",
                                            "referencedDeclaration": 11903,
                                            "src": "1978:16:62"
                                          },
                                          "referencedDeclaration": 11903,
                                          "src": "1978:16:62",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage_ptr",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                          }
                                        },
                                        "visibility": "internal"
                                      }
                                    ],
                                    "id": 15354,
                                    "initialValue": {
                                      "baseExpression": {
                                        "id": 15351,
                                        "name": "_prizeSplits",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 15252,
                                        "src": "2017:12:62",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                                          "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                        }
                                      },
                                      "id": 15353,
                                      "indexExpression": {
                                        "id": 15352,
                                        "name": "index",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 15310,
                                        "src": "2030:5:62",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "2017:19:62",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage",
                                        "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                                      }
                                    },
                                    "nodeType": "VariableDeclarationStatement",
                                    "src": "1978:58:62"
                                  },
                                  {
                                    "condition": {
                                      "commonType": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      },
                                      "id": 15365,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "commonType": {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        },
                                        "id": 15359,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "expression": {
                                            "id": 15355,
                                            "name": "split",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 15321,
                                            "src": "2215:5:62",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                              "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                            }
                                          },
                                          "id": 15356,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "target",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 11900,
                                          "src": "2215:12:62",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "!=",
                                        "rightExpression": {
                                          "expression": {
                                            "id": 15357,
                                            "name": "currentSplit",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 15350,
                                            "src": "2231:12:62",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                              "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                            }
                                          },
                                          "id": 15358,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "target",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 11900,
                                          "src": "2231:19:62",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        },
                                        "src": "2215:35:62",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bool",
                                          "typeString": "bool"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "||",
                                      "rightExpression": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint16",
                                          "typeString": "uint16"
                                        },
                                        "id": 15364,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "expression": {
                                            "id": 15360,
                                            "name": "split",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 15321,
                                            "src": "2274:5:62",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                              "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                            }
                                          },
                                          "id": 15361,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "percentage",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 11902,
                                          "src": "2274:16:62",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint16",
                                            "typeString": "uint16"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "!=",
                                        "rightExpression": {
                                          "expression": {
                                            "id": 15362,
                                            "name": "currentSplit",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 15350,
                                            "src": "2294:12:62",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                              "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                            }
                                          },
                                          "id": 15363,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "percentage",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 11902,
                                          "src": "2294:23:62",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint16",
                                            "typeString": "uint16"
                                          }
                                        },
                                        "src": "2274:43:62",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bool",
                                          "typeString": "bool"
                                        }
                                      },
                                      "src": "2215:102:62",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "falseBody": {
                                      "id": 15374,
                                      "nodeType": "Block",
                                      "src": "2410:49:62",
                                      "statements": [
                                        {
                                          "id": 15373,
                                          "nodeType": "Continue",
                                          "src": "2432:8:62"
                                        }
                                      ]
                                    },
                                    "id": 15375,
                                    "nodeType": "IfStatement",
                                    "src": "2190:269:62",
                                    "trueBody": {
                                      "id": 15372,
                                      "nodeType": "Block",
                                      "src": "2336:68:62",
                                      "statements": [
                                        {
                                          "expression": {
                                            "id": 15370,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftHandSide": {
                                              "baseExpression": {
                                                "id": 15366,
                                                "name": "_prizeSplits",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 15252,
                                                "src": "2358:12:62",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                                                  "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                                }
                                              },
                                              "id": 15368,
                                              "indexExpression": {
                                                "id": 15367,
                                                "name": "index",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 15310,
                                                "src": "2371:5:62",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              },
                                              "isConstant": false,
                                              "isLValue": true,
                                              "isPure": false,
                                              "lValueRequested": true,
                                              "nodeType": "IndexAccess",
                                              "src": "2358:19:62",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage",
                                                "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                                              }
                                            },
                                            "nodeType": "Assignment",
                                            "operator": "=",
                                            "rightHandSide": {
                                              "id": 15369,
                                              "name": "split",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 15321,
                                              "src": "2380:5:62",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                                "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                              }
                                            },
                                            "src": "2358:27:62",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage",
                                              "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                                            }
                                          },
                                          "id": 15371,
                                          "nodeType": "ExpressionStatement",
                                          "src": "2358:27:62"
                                        }
                                      ]
                                    }
                                  }
                                ]
                              },
                              "id": 15377,
                              "nodeType": "IfStatement",
                              "src": "1782:691:62",
                              "trueBody": {
                                "id": 15347,
                                "nodeType": "Block",
                                "src": "1816:57:62",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 15344,
                                          "name": "split",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 15321,
                                          "src": "1852:5:62",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                          }
                                        ],
                                        "expression": {
                                          "id": 15341,
                                          "name": "_prizeSplits",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 15252,
                                          "src": "1834:12:62",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                          }
                                        },
                                        "id": 15343,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "push",
                                        "nodeType": "MemberAccess",
                                        "src": "1834:17:62",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_arraypush_nonpayable$_t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage_ptr_$_t_struct$_PrizeSplitConfig_$11903_storage_$returns$__$bound_to$_t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage_ptr_$",
                                          "typeString": "function (struct IPrizeSplit.PrizeSplitConfig storage ref[] storage pointer,struct IPrizeSplit.PrizeSplitConfig storage ref)"
                                        }
                                      },
                                      "id": 15345,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "1834:24:62",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 15346,
                                    "nodeType": "ExpressionStatement",
                                    "src": "1834:24:62"
                                  }
                                ]
                              }
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 15379,
                                      "name": "split",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 15321,
                                      "src": "2564:5:62",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                        "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                      }
                                    },
                                    "id": 15380,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "target",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11900,
                                    "src": "2564:12:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 15381,
                                      "name": "split",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 15321,
                                      "src": "2578:5:62",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                        "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                      }
                                    },
                                    "id": 15382,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "percentage",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11902,
                                    "src": "2578:16:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint16",
                                      "typeString": "uint16"
                                    }
                                  },
                                  {
                                    "id": 15383,
                                    "name": "index",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15310,
                                    "src": "2596:5:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint16",
                                      "typeString": "uint16"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 15378,
                                  "name": "PrizeSplitSet",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11912,
                                  "src": "2550:13:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint16_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint16,uint256)"
                                  }
                                },
                                "id": 15384,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2550:52:62",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 15385,
                              "nodeType": "EmitStatement",
                              "src": "2545:57:62"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15315,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 15313,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15310,
                            "src": "1367:5:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 15314,
                            "name": "newPrizeSplitsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15294,
                            "src": "1375:20:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1367:28:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15387,
                        "initializationExpression": {
                          "assignments": [
                            15310
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 15310,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "1356:5:62",
                              "nodeType": "VariableDeclaration",
                              "scope": 15387,
                              "src": "1348:13:62",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 15309,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "1348:7:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 15312,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 15311,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1364:1:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "1348:17:62"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 15317,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "1397:7:62",
                            "subExpression": {
                              "id": 15316,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15310,
                              "src": "1397:5:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 15318,
                          "nodeType": "ExpressionStatement",
                          "src": "1397:7:62"
                        },
                        "nodeType": "ForStatement",
                        "src": "1343:1270:62"
                      },
                      {
                        "body": {
                          "id": 15412,
                          "nodeType": "Block",
                          "src": "2791:203:62",
                          "statements": [
                            {
                              "assignments": [
                                15393
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 15393,
                                  "mutability": "mutable",
                                  "name": "_index",
                                  "nameLocation": "2813:6:62",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 15412,
                                  "src": "2805:14:62",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 15392,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2805:7:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 15394,
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2805:14:62"
                            },
                            {
                              "id": 15402,
                              "nodeType": "UncheckedBlock",
                              "src": "2833:75:62",
                              "statements": [
                                {
                                  "expression": {
                                    "id": 15400,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftHandSide": {
                                      "id": 15395,
                                      "name": "_index",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 15393,
                                      "src": "2861:6:62",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "Assignment",
                                    "operator": "=",
                                    "rightHandSide": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 15399,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "id": 15396,
                                          "name": "_prizeSplits",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 15252,
                                          "src": "2870:12:62",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                          }
                                        },
                                        "id": 15397,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "length",
                                        "nodeType": "MemberAccess",
                                        "src": "2870:19:62",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "hexValue": "31",
                                        "id": 15398,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "2892:1:62",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_1_by_1",
                                          "typeString": "int_const 1"
                                        },
                                        "value": "1"
                                      },
                                      "src": "2870:23:62",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "2861:32:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "id": 15401,
                                  "nodeType": "ExpressionStatement",
                                  "src": "2861:32:62"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "expression": {
                                    "id": 15403,
                                    "name": "_prizeSplits",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15252,
                                    "src": "2921:12:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                                      "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                    }
                                  },
                                  "id": 15405,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "pop",
                                  "nodeType": "MemberAccess",
                                  "src": "2921:16:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_arraypop_nonpayable$_t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage_ptr_$returns$__$bound_to$_t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage_ptr_$",
                                    "typeString": "function (struct IPrizeSplit.PrizeSplitConfig storage ref[] storage pointer)"
                                  }
                                },
                                "id": 15406,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2921:18:62",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 15407,
                              "nodeType": "ExpressionStatement",
                              "src": "2921:18:62"
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 15409,
                                    "name": "_index",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15393,
                                    "src": "2976:6:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 15408,
                                  "name": "PrizeSplitRemoved",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11917,
                                  "src": "2958:17:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                                    "typeString": "function (uint256)"
                                  }
                                },
                                "id": 15410,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2958:25:62",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 15411,
                              "nodeType": "EmitStatement",
                              "src": "2953:30:62"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15391,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 15388,
                              "name": "_prizeSplits",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15252,
                              "src": "2747:12:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                                "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                              }
                            },
                            "id": 15389,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "2747:19:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "id": 15390,
                            "name": "newPrizeSplitsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15294,
                            "src": "2769:20:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2747:42:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15413,
                        "nodeType": "WhileStatement",
                        "src": "2740:254:62"
                      },
                      {
                        "assignments": [
                          15415
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15415,
                            "mutability": "mutable",
                            "name": "totalPercentage",
                            "nameLocation": "3060:15:62",
                            "nodeType": "VariableDeclaration",
                            "scope": 15426,
                            "src": "3052:23:62",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 15414,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "3052:7:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15418,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 15416,
                            "name": "_totalPrizeSplitPercentageAmount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15521,
                            "src": "3078:32:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 15417,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3078:34:62",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3052:60:62"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 15422,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 15420,
                                "name": "totalPercentage",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15415,
                                "src": "3130:15:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 15421,
                                "name": "ONE_AS_FIXED_POINT_3",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15255,
                                "src": "3149:20:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint16",
                                  "typeString": "uint16"
                                }
                              },
                              "src": "3130:39:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d70657263656e746167652d746f74616c",
                              "id": 15423,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3171:48:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-percentage-total\""
                              },
                              "value": "PrizeSplit/invalid-prizesplit-percentage-total"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-percentage-total\""
                              }
                            ],
                            "id": 15419,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3122:7:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 15424,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3122:98:62",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15425,
                        "nodeType": "ExpressionStatement",
                        "src": "3122:98:62"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15283,
                    "nodeType": "StructuredDocumentation",
                    "src": "910:27:62",
                    "text": "@inheritdoc IPrizeSplit"
                  },
                  "functionSelector": "063a2298",
                  "id": 15427,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 15291,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 15290,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "1053:9:62"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1053:9:62"
                    }
                  ],
                  "name": "setPrizeSplits",
                  "nameLocation": "951:14:62",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15289,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1036:8:62"
                  },
                  "parameters": {
                    "id": 15288,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15287,
                        "mutability": "mutable",
                        "name": "_newPrizeSplits",
                        "nameLocation": "994:15:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15427,
                        "src": "966:43:62",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_calldata_ptr_$dyn_calldata_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 15285,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 15284,
                              "name": "PrizeSplitConfig",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11903,
                              "src": "966:16:62"
                            },
                            "referencedDeclaration": 11903,
                            "src": "966:16:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                            }
                          },
                          "id": 15286,
                          "nodeType": "ArrayTypeName",
                          "src": "966:18:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "965:45:62"
                  },
                  "returnParameters": {
                    "id": 15292,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1067:0:62"
                  },
                  "scope": 15589,
                  "src": "942:2285:62",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11958
                  ],
                  "body": {
                    "id": 15484,
                    "nodeType": "Block",
                    "src": "3405:695:62",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 15443,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 15440,
                                "name": "_prizeSplitIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15433,
                                "src": "3423:16:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<",
                              "rightExpression": {
                                "expression": {
                                  "id": 15441,
                                  "name": "_prizeSplits",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15252,
                                  "src": "3442:12:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                  }
                                },
                                "id": 15442,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "3442:19:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "3423:38:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c6974",
                              "id": 15444,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3463:35:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3",
                                "typeString": "literal_string \"PrizeSplit/nonexistent-prizesplit\""
                              },
                              "value": "PrizeSplit/nonexistent-prizesplit"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3",
                                "typeString": "literal_string \"PrizeSplit/nonexistent-prizesplit\""
                              }
                            ],
                            "id": 15439,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3415:7:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 15445,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3415:84:62",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15446,
                        "nodeType": "ExpressionStatement",
                        "src": "3415:84:62"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 15454,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 15448,
                                  "name": "_prizeSplit",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15431,
                                  "src": "3517:11:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                  }
                                },
                                "id": 15449,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "target",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11900,
                                "src": "3517:18:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 15452,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3547:1:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 15451,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "3539:7:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 15450,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3539:7:62",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 15453,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3539:10:62",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "3517:32:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746172676574",
                              "id": 15455,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3551:38:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-target\""
                              },
                              "value": "PrizeSplit/invalid-prizesplit-target"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-target\""
                              }
                            ],
                            "id": 15447,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3509:7:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 15456,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3509:81:62",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15457,
                        "nodeType": "ExpressionStatement",
                        "src": "3509:81:62"
                      },
                      {
                        "expression": {
                          "id": 15462,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 15458,
                              "name": "_prizeSplits",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15252,
                              "src": "3642:12:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                                "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                              }
                            },
                            "id": 15460,
                            "indexExpression": {
                              "id": 15459,
                              "name": "_prizeSplitIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15433,
                              "src": "3655:16:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "3642:30:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15461,
                            "name": "_prizeSplit",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15431,
                            "src": "3675:11:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                            }
                          },
                          "src": "3642:44:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                          }
                        },
                        "id": 15463,
                        "nodeType": "ExpressionStatement",
                        "src": "3642:44:62"
                      },
                      {
                        "assignments": [
                          15465
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15465,
                            "mutability": "mutable",
                            "name": "totalPercentage",
                            "nameLocation": "3753:15:62",
                            "nodeType": "VariableDeclaration",
                            "scope": 15484,
                            "src": "3745:23:62",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 15464,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "3745:7:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15468,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 15466,
                            "name": "_totalPrizeSplitPercentageAmount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15521,
                            "src": "3771:32:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 15467,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3771:34:62",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3745:60:62"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 15472,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 15470,
                                "name": "totalPercentage",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15465,
                                "src": "3823:15:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 15471,
                                "name": "ONE_AS_FIXED_POINT_3",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15255,
                                "src": "3842:20:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint16",
                                  "typeString": "uint16"
                                }
                              },
                              "src": "3823:39:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d70657263656e746167652d746f74616c",
                              "id": 15473,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3864:48:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-percentage-total\""
                              },
                              "value": "PrizeSplit/invalid-prizesplit-percentage-total"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-percentage-total\""
                              }
                            ],
                            "id": 15469,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3815:7:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 15474,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3815:98:62",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15475,
                        "nodeType": "ExpressionStatement",
                        "src": "3815:98:62"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15477,
                                "name": "_prizeSplit",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15431,
                                "src": "3999:11:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                  "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                }
                              },
                              "id": 15478,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "target",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11900,
                              "src": "3999:18:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "id": 15479,
                                "name": "_prizeSplit",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15431,
                                "src": "4031:11:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                  "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                }
                              },
                              "id": 15480,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "percentage",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11902,
                              "src": "4031:22:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint16",
                                "typeString": "uint16"
                              }
                            },
                            {
                              "id": 15481,
                              "name": "_prizeSplitIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15433,
                              "src": "4067:16:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint16",
                                "typeString": "uint16"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 15476,
                            "name": "PrizeSplitSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11912,
                            "src": "3972:13:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint16_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint16,uint256)"
                            }
                          },
                          "id": 15482,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3972:121:62",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15483,
                        "nodeType": "EmitStatement",
                        "src": "3967:126:62"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15428,
                    "nodeType": "StructuredDocumentation",
                    "src": "3233:27:62",
                    "text": "@inheritdoc IPrizeSplit"
                  },
                  "functionSelector": "056ea84f",
                  "id": 15485,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 15437,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 15436,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4072,
                        "src": "3391:9:62"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3391:9:62"
                    }
                  ],
                  "name": "setPrizeSplit",
                  "nameLocation": "3274:13:62",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15435,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3374:8:62"
                  },
                  "parameters": {
                    "id": 15434,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15431,
                        "mutability": "mutable",
                        "name": "_prizeSplit",
                        "nameLocation": "3312:11:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15485,
                        "src": "3288:35:62",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                        },
                        "typeName": {
                          "id": 15430,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15429,
                            "name": "PrizeSplitConfig",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11903,
                            "src": "3288:16:62"
                          },
                          "referencedDeclaration": 11903,
                          "src": "3288:16:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15433,
                        "mutability": "mutable",
                        "name": "_prizeSplitIndex",
                        "nameLocation": "3331:16:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15485,
                        "src": "3325:22:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 15432,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3325:5:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3287:61:62"
                  },
                  "returnParameters": {
                    "id": 15438,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3405:0:62"
                  },
                  "scope": 15589,
                  "src": "3265:835:62",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 15520,
                    "nodeType": "Block",
                    "src": "4507:289:62",
                    "statements": [
                      {
                        "assignments": [
                          15492
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15492,
                            "mutability": "mutable",
                            "name": "_tempTotalPercentage",
                            "nameLocation": "4525:20:62",
                            "nodeType": "VariableDeclaration",
                            "scope": 15520,
                            "src": "4517:28:62",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 15491,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4517:7:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15493,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4517:28:62"
                      },
                      {
                        "assignments": [
                          15495
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15495,
                            "mutability": "mutable",
                            "name": "prizeSplitsLength",
                            "nameLocation": "4563:17:62",
                            "nodeType": "VariableDeclaration",
                            "scope": 15520,
                            "src": "4555:25:62",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 15494,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4555:7:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15498,
                        "initialValue": {
                          "expression": {
                            "id": 15496,
                            "name": "_prizeSplits",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15252,
                            "src": "4583:12:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                            }
                          },
                          "id": 15497,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "4583:19:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4555:47:62"
                      },
                      {
                        "body": {
                          "id": 15516,
                          "nodeType": "Block",
                          "src": "4673:79:62",
                          "statements": [
                            {
                              "expression": {
                                "id": 15514,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 15509,
                                  "name": "_tempTotalPercentage",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15492,
                                  "src": "4687:20:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "+=",
                                "rightHandSide": {
                                  "expression": {
                                    "baseExpression": {
                                      "id": 15510,
                                      "name": "_prizeSplits",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 15252,
                                      "src": "4711:12:62",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                                        "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                      }
                                    },
                                    "id": 15512,
                                    "indexExpression": {
                                      "id": 15511,
                                      "name": "index",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 15500,
                                      "src": "4724:5:62",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "4711:19:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage",
                                      "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                                    }
                                  },
                                  "id": 15513,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "percentage",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 11902,
                                  "src": "4711:30:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint16",
                                    "typeString": "uint16"
                                  }
                                },
                                "src": "4687:54:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 15515,
                              "nodeType": "ExpressionStatement",
                              "src": "4687:54:62"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15505,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 15503,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15500,
                            "src": "4637:5:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 15504,
                            "name": "prizeSplitsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15495,
                            "src": "4645:17:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "4637:25:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15517,
                        "initializationExpression": {
                          "assignments": [
                            15500
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 15500,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "4626:5:62",
                              "nodeType": "VariableDeclaration",
                              "scope": 15517,
                              "src": "4618:13:62",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 15499,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "4618:7:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 15502,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 15501,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4634:1:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "4618:17:62"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 15507,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "4664:7:62",
                            "subExpression": {
                              "id": 15506,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15500,
                              "src": "4664:5:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 15508,
                          "nodeType": "ExpressionStatement",
                          "src": "4664:7:62"
                        },
                        "nodeType": "ForStatement",
                        "src": "4613:139:62"
                      },
                      {
                        "expression": {
                          "id": 15518,
                          "name": "_tempTotalPercentage",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15492,
                          "src": "4769:20:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 15490,
                        "id": 15519,
                        "nodeType": "Return",
                        "src": "4762:27:62"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15486,
                    "nodeType": "StructuredDocumentation",
                    "src": "4162:264:62",
                    "text": " @notice Calculates total prize split percentage amount.\n @dev Calculates total PrizeSplitConfig percentage(s) amount. Used to check the total does not exceed 100% of award distribution.\n @return Total prize split(s) percentage amount"
                  },
                  "id": 15521,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_totalPrizeSplitPercentageAmount",
                  "nameLocation": "4440:32:62",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15487,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4472:2:62"
                  },
                  "returnParameters": {
                    "id": 15490,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15489,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15521,
                        "src": "4498:7:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15488,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4498:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4497:9:62"
                  },
                  "scope": 15589,
                  "src": "4431:365:62",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 15579,
                    "nodeType": "Block",
                    "src": "5118:606:62",
                    "statements": [
                      {
                        "assignments": [
                          15530
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15530,
                            "mutability": "mutable",
                            "name": "_prizeTemp",
                            "nameLocation": "5136:10:62",
                            "nodeType": "VariableDeclaration",
                            "scope": 15579,
                            "src": "5128:18:62",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 15529,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5128:7:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15532,
                        "initialValue": {
                          "id": 15531,
                          "name": "_prize",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15524,
                          "src": "5149:6:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5128:27:62"
                      },
                      {
                        "assignments": [
                          15534
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15534,
                            "mutability": "mutable",
                            "name": "prizeSplitsLength",
                            "nameLocation": "5173:17:62",
                            "nodeType": "VariableDeclaration",
                            "scope": 15579,
                            "src": "5165:25:62",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 15533,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5165:7:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15537,
                        "initialValue": {
                          "expression": {
                            "id": 15535,
                            "name": "_prizeSplits",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15252,
                            "src": "5193:12:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                            }
                          },
                          "id": 15536,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "5193:19:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5165:47:62"
                      },
                      {
                        "body": {
                          "id": 15575,
                          "nodeType": "Block",
                          "src": "5283:407:62",
                          "statements": [
                            {
                              "assignments": [
                                15550
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 15550,
                                  "mutability": "mutable",
                                  "name": "split",
                                  "nameLocation": "5321:5:62",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 15575,
                                  "src": "5297:29:62",
                                  "stateVariable": false,
                                  "storageLocation": "memory",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                  },
                                  "typeName": {
                                    "id": 15549,
                                    "nodeType": "UserDefinedTypeName",
                                    "pathNode": {
                                      "id": 15548,
                                      "name": "PrizeSplitConfig",
                                      "nodeType": "IdentifierPath",
                                      "referencedDeclaration": 11903,
                                      "src": "5297:16:62"
                                    },
                                    "referencedDeclaration": 11903,
                                    "src": "5297:16:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage_ptr",
                                      "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 15554,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 15551,
                                  "name": "_prizeSplits",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15252,
                                  "src": "5329:12:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11903_storage_$dyn_storage",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                  }
                                },
                                "id": 15553,
                                "indexExpression": {
                                  "id": 15552,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15539,
                                  "src": "5342:5:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "5329:19:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_storage",
                                  "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "5297:51:62"
                            },
                            {
                              "assignments": [
                                15556
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 15556,
                                  "mutability": "mutable",
                                  "name": "_splitAmount",
                                  "nameLocation": "5370:12:62",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 15575,
                                  "src": "5362:20:62",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 15555,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5362:7:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 15564,
                              "initialValue": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 15563,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 15560,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 15557,
                                        "name": "_prize",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 15524,
                                        "src": "5386:6:62",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "*",
                                      "rightExpression": {
                                        "expression": {
                                          "id": 15558,
                                          "name": "split",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 15550,
                                          "src": "5395:5:62",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                          }
                                        },
                                        "id": 15559,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "percentage",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11902,
                                        "src": "5395:16:62",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint16",
                                          "typeString": "uint16"
                                        }
                                      },
                                      "src": "5386:25:62",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 15561,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "5385:27:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "/",
                                "rightExpression": {
                                  "hexValue": "31303030",
                                  "id": 15562,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "5415:4:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_1000_by_1",
                                    "typeString": "int_const 1000"
                                  },
                                  "value": "1000"
                                },
                                "src": "5385:34:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "5362:57:62"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 15566,
                                      "name": "split",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 15550,
                                      "src": "5515:5:62",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeSplitConfig_$11903_memory_ptr",
                                        "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                      }
                                    },
                                    "id": 15567,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "target",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11900,
                                    "src": "5515:12:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 15568,
                                    "name": "_splitAmount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15556,
                                    "src": "5529:12:62",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 15565,
                                  "name": "_awardPrizeSplitAmount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15588,
                                  "src": "5492:22:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint256)"
                                  }
                                },
                                "id": 15569,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5492:50:62",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 15570,
                              "nodeType": "ExpressionStatement",
                              "src": "5492:50:62"
                            },
                            {
                              "expression": {
                                "id": 15573,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 15571,
                                  "name": "_prizeTemp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15530,
                                  "src": "5653:10:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "-=",
                                "rightHandSide": {
                                  "id": 15572,
                                  "name": "_splitAmount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15556,
                                  "src": "5667:12:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "5653:26:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 15574,
                              "nodeType": "ExpressionStatement",
                              "src": "5653:26:62"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15544,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 15542,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15539,
                            "src": "5247:5:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 15543,
                            "name": "prizeSplitsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15534,
                            "src": "5255:17:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "5247:25:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15576,
                        "initializationExpression": {
                          "assignments": [
                            15539
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 15539,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "5236:5:62",
                              "nodeType": "VariableDeclaration",
                              "scope": 15576,
                              "src": "5228:13:62",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 15538,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5228:7:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 15541,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 15540,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5244:1:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "5228:17:62"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 15546,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "5274:7:62",
                            "subExpression": {
                              "id": 15545,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15539,
                              "src": "5274:5:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 15547,
                          "nodeType": "ExpressionStatement",
                          "src": "5274:7:62"
                        },
                        "nodeType": "ForStatement",
                        "src": "5223:467:62"
                      },
                      {
                        "expression": {
                          "id": 15577,
                          "name": "_prizeTemp",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15530,
                          "src": "5707:10:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 15528,
                        "id": 15578,
                        "nodeType": "Return",
                        "src": "5700:17:62"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15522,
                    "nodeType": "StructuredDocumentation",
                    "src": "4802:236:62",
                    "text": " @notice Distributes prize split(s).\n @dev Distributes prize split(s) by awarding ticket or sponsorship tokens.\n @param _prize Starting prize award amount\n @return The remainder after splits are taken"
                  },
                  "id": 15580,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_distributePrizeSplits",
                  "nameLocation": "5052:22:62",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15525,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15524,
                        "mutability": "mutable",
                        "name": "_prize",
                        "nameLocation": "5083:6:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15580,
                        "src": "5075:14:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15523,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5075:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5074:16:62"
                  },
                  "returnParameters": {
                    "id": 15528,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15527,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15580,
                        "src": "5109:7:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15526,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5109:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5108:9:62"
                  },
                  "scope": 15589,
                  "src": "5043:681:62",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 15581,
                    "nodeType": "StructuredDocumentation",
                    "src": "5730:289:62",
                    "text": " @notice Mints ticket or sponsorship tokens to prize split recipient.\n @dev Mints ticket or sponsorship tokens to prize split recipient via the linked PrizePool contract.\n @param _target Recipient of minted tokens\n @param _amount Amount of minted tokens"
                  },
                  "id": 15588,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_awardPrizeSplitAmount",
                  "nameLocation": "6033:22:62",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15586,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15583,
                        "mutability": "mutable",
                        "name": "_target",
                        "nameLocation": "6064:7:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15588,
                        "src": "6056:15:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15582,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6056:7:62",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15585,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "6081:7:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15588,
                        "src": "6073:15:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15584,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6073:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6055:34:62"
                  },
                  "returnParameters": {
                    "id": 15587,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6106:0:62"
                  },
                  "scope": 15589,
                  "src": "6024:83:62",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 15590,
              "src": "245:5864:62",
              "usedErrors": []
            }
          ],
          "src": "37:6073:62"
        },
        "id": 62
      },
      "contracts/prize-strategy/PrizeSplitStrategy.sol": {
        "ast": {
          "absolutePath": "contracts/prize-strategy/PrizeSplitStrategy.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12433
            ],
            "ICompLike": [
              11027
            ],
            "IControlledToken": [
              11069
            ],
            "IERC20": [
              663
            ],
            "IPrizePool": [
              11883
            ],
            "IPrizeSplit": [
              11959
            ],
            "IStrategy": [
              12020
            ],
            "ITicket": [
              12213
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "Ownable": [
              4086
            ],
            "PrizeSplit": [
              15589
            ],
            "PrizeSplitStrategy": [
              15722
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 15723,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15591,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:63"
            },
            {
              "absolutePath": "contracts/prize-strategy/PrizeSplit.sol",
              "file": "./PrizeSplit.sol",
              "id": 15592,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15723,
              "sourceUnit": 15590,
              "src": "61:26:63",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IStrategy.sol",
              "file": "../interfaces/IStrategy.sol",
              "id": 15593,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15723,
              "sourceUnit": 12021,
              "src": "88:37:63",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IPrizePool.sol",
              "file": "../interfaces/IPrizePool.sol",
              "id": 15594,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15723,
              "sourceUnit": 11884,
              "src": "126:38:63",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15596,
                    "name": "PrizeSplit",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 15589,
                    "src": "908:10:63"
                  },
                  "id": 15597,
                  "nodeType": "InheritanceSpecifier",
                  "src": "908:10:63"
                },
                {
                  "baseName": {
                    "id": 15598,
                    "name": "IStrategy",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12020,
                    "src": "920:9:63"
                  },
                  "id": 15599,
                  "nodeType": "InheritanceSpecifier",
                  "src": "920:9:63"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 15595,
                "nodeType": "StructuredDocumentation",
                "src": "166:710:63",
                "text": " @title  PoolTogether V4 PrizeSplitStrategy\n @author PoolTogether Inc Team\n @notice Captures PrizePool interest for PrizeReserve and additional PrizeSplit recipients.\nThe PrizeSplitStrategy will have at minimum a single PrizeSplit with 100% of the captured\ninterest transfered to the PrizeReserve. Additional PrizeSplits can be added, depending on\nthe deployers requirements (i.e. percentage to charity). In contrast to previous PoolTogether\niterations, interest can be captured independent of a new Draw. Ideally (to save gas) interest\nis only captured when also distributing the captured prize(s) to applicable Prize Distributor(s)."
              },
              "fullyImplemented": true,
              "id": 15722,
              "linearizedBaseContracts": [
                15722,
                12020,
                15589,
                4086,
                11959
              ],
              "name": "PrizeSplitStrategy",
              "nameLocation": "886:18:63",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 15600,
                    "nodeType": "StructuredDocumentation",
                    "src": "936:44:63",
                    "text": " @notice PrizePool address"
                  },
                  "id": 15603,
                  "mutability": "immutable",
                  "name": "prizePool",
                  "nameLocation": "1015:9:63",
                  "nodeType": "VariableDeclaration",
                  "scope": 15722,
                  "src": "985:39:63",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizePool_$11883",
                    "typeString": "contract IPrizePool"
                  },
                  "typeName": {
                    "id": 15602,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15601,
                      "name": "IPrizePool",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11883,
                      "src": "985:10:63"
                    },
                    "referencedDeclaration": 11883,
                    "src": "985:10:63",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizePool_$11883",
                      "typeString": "contract IPrizePool"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15604,
                    "nodeType": "StructuredDocumentation",
                    "src": "1031:126:63",
                    "text": " @notice Deployed Event\n @param owner Contract owner\n @param prizePool Linked PrizePool contract"
                  },
                  "id": 15611,
                  "name": "Deployed",
                  "nameLocation": "1168:8:63",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15610,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15606,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1193:5:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 15611,
                        "src": "1177:21:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15605,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1177:7:63",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15609,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "prizePool",
                        "nameLocation": "1211:9:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 15611,
                        "src": "1200:20:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$11883",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 15608,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15607,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11883,
                            "src": "1200:10:63"
                          },
                          "referencedDeclaration": 11883,
                          "src": "1200:10:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11883",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1176:45:63"
                  },
                  "src": "1162:60:63"
                },
                {
                  "body": {
                    "id": 15645,
                    "nodeType": "Block",
                    "src": "1503:218:63",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 15632,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 15626,
                                    "name": "_prizePool",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15617,
                                    "src": "1542:10:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                      "typeString": "contract IPrizePool"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                      "typeString": "contract IPrizePool"
                                    }
                                  ],
                                  "id": 15625,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1534:7:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 15624,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1534:7:63",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 15627,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1534:19:63",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 15630,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1565:1:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 15629,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1557:7:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 15628,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1557:7:63",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 15631,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1557:10:63",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1534:33:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c697453747261746567792f7072697a652d706f6f6c2d6e6f742d7a65726f2d61646472657373",
                              "id": 15633,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1581:48:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_f9fc44fe3aa7ee21ea2cdd22b631ab2cd09324a8cfe0653e1e16eb1ea032e2b6",
                                "typeString": "literal_string \"PrizeSplitStrategy/prize-pool-not-zero-address\""
                              },
                              "value": "PrizeSplitStrategy/prize-pool-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_f9fc44fe3aa7ee21ea2cdd22b631ab2cd09324a8cfe0653e1e16eb1ea032e2b6",
                                "typeString": "literal_string \"PrizeSplitStrategy/prize-pool-not-zero-address\""
                              }
                            ],
                            "id": 15623,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1513:7:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 15634,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1513:126:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15635,
                        "nodeType": "ExpressionStatement",
                        "src": "1513:126:63"
                      },
                      {
                        "expression": {
                          "id": 15638,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15636,
                            "name": "prizePool",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15603,
                            "src": "1649:9:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizePool_$11883",
                              "typeString": "contract IPrizePool"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15637,
                            "name": "_prizePool",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15617,
                            "src": "1661:10:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizePool_$11883",
                              "typeString": "contract IPrizePool"
                            }
                          },
                          "src": "1649:22:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11883",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "id": 15639,
                        "nodeType": "ExpressionStatement",
                        "src": "1649:22:63"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15641,
                              "name": "_owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15614,
                              "src": "1695:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 15642,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15617,
                              "src": "1703:10:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                "typeString": "contract IPrizePool"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                "typeString": "contract IPrizePool"
                              }
                            ],
                            "id": 15640,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15611,
                            "src": "1686:8:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_contract$_IPrizePool_$11883_$returns$__$",
                              "typeString": "function (address,contract IPrizePool)"
                            }
                          },
                          "id": 15643,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1686:28:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15644,
                        "nodeType": "EmitStatement",
                        "src": "1681:33:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15612,
                    "nodeType": "StructuredDocumentation",
                    "src": "1277:154:63",
                    "text": " @notice Deploy the PrizeSplitStrategy smart contract.\n @param _owner     Owner address\n @param _prizePool PrizePool address"
                  },
                  "id": 15646,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 15620,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15614,
                          "src": "1495:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 15621,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 15619,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4086,
                        "src": "1487:7:63"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1487:15:63"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15618,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15614,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1456:6:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 15646,
                        "src": "1448:14:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15613,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1448:7:63",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15617,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "1475:10:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 15646,
                        "src": "1464:21:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$11883",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 15616,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15615,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11883,
                            "src": "1464:10:63"
                          },
                          "referencedDeclaration": 11883,
                          "src": "1464:10:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11883",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1447:39:63"
                  },
                  "returnParameters": {
                    "id": 15622,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1503:0:63"
                  },
                  "scope": 15722,
                  "src": "1436:285:63",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    12019
                  ],
                  "body": {
                    "id": 15679,
                    "nodeType": "Block",
                    "src": "1871:238:63",
                    "statements": [
                      {
                        "assignments": [
                          15654
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15654,
                            "mutability": "mutable",
                            "name": "prize",
                            "nameLocation": "1889:5:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 15679,
                            "src": "1881:13:63",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 15653,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1881:7:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15658,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 15655,
                              "name": "prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15603,
                              "src": "1897:9:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 15656,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "captureAwardBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11753,
                            "src": "1897:29:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$__$returns$_t_uint256_$",
                              "typeString": "function () external returns (uint256)"
                            }
                          },
                          "id": 15657,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1897:31:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1881:47:63"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15661,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 15659,
                            "name": "prize",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15654,
                            "src": "1943:5:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 15660,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1952:1:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1943:10:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15664,
                        "nodeType": "IfStatement",
                        "src": "1939:24:63",
                        "trueBody": {
                          "expression": {
                            "hexValue": "30",
                            "id": 15662,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1962:1:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "functionReturnParameters": 15652,
                          "id": 15663,
                          "nodeType": "Return",
                          "src": "1955:8:63"
                        }
                      },
                      {
                        "assignments": [
                          15666
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15666,
                            "mutability": "mutable",
                            "name": "prizeRemaining",
                            "nameLocation": "1982:14:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 15679,
                            "src": "1974:22:63",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 15665,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1974:7:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15670,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 15668,
                              "name": "prize",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15654,
                              "src": "2022:5:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 15667,
                            "name": "_distributePrizeSplits",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15580,
                            "src": "1999:22:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) returns (uint256)"
                            }
                          },
                          "id": 15669,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1999:29:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1974:54:63"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 15674,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 15672,
                                "name": "prize",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15654,
                                "src": "2056:5:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "id": 15673,
                                "name": "prizeRemaining",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15666,
                                "src": "2064:14:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2056:22:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 15671,
                            "name": "Distributed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12013,
                            "src": "2044:11:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 15675,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2044:35:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15676,
                        "nodeType": "EmitStatement",
                        "src": "2039:40:63"
                      },
                      {
                        "expression": {
                          "id": 15677,
                          "name": "prize",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15654,
                          "src": "2097:5:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 15652,
                        "id": 15678,
                        "nodeType": "Return",
                        "src": "2090:12:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15647,
                    "nodeType": "StructuredDocumentation",
                    "src": "1783:25:63",
                    "text": "@inheritdoc IStrategy"
                  },
                  "functionSelector": "e4fc6b6d",
                  "id": 15680,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "distribute",
                  "nameLocation": "1822:10:63",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15649,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1844:8:63"
                  },
                  "parameters": {
                    "id": 15648,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1832:2:63"
                  },
                  "returnParameters": {
                    "id": 15652,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15651,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15680,
                        "src": "1862:7:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15650,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1862:7:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1861:9:63"
                  },
                  "scope": 15722,
                  "src": "1813:296:63",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11941
                  ],
                  "body": {
                    "id": 15690,
                    "nodeType": "Block",
                    "src": "2215:33:63",
                    "statements": [
                      {
                        "expression": {
                          "id": 15688,
                          "name": "prizePool",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15603,
                          "src": "2232:9:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11883",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "functionReturnParameters": 15687,
                        "id": 15689,
                        "nodeType": "Return",
                        "src": "2225:16:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15681,
                    "nodeType": "StructuredDocumentation",
                    "src": "2115:27:63",
                    "text": "@inheritdoc IPrizeSplit"
                  },
                  "functionSelector": "884bf67c",
                  "id": 15691,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizePool",
                  "nameLocation": "2156:12:63",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15683,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2185:8:63"
                  },
                  "parameters": {
                    "id": 15682,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2168:2:63"
                  },
                  "returnParameters": {
                    "id": 15687,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15686,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15691,
                        "src": "2203:10:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$11883",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 15685,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15684,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11883,
                            "src": "2203:10:63"
                          },
                          "referencedDeclaration": 11883,
                          "src": "2203:10:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11883",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2202:12:63"
                  },
                  "scope": 15722,
                  "src": "2147:101:63",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15588
                  ],
                  "body": {
                    "id": 15720,
                    "nodeType": "Block",
                    "src": "2652:159:63",
                    "statements": [
                      {
                        "assignments": [
                          15702
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15702,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "2679:7:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 15720,
                            "src": "2662:24:63",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IControlledToken_$11069",
                              "typeString": "contract IControlledToken"
                            },
                            "typeName": {
                              "id": 15701,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 15700,
                                "name": "IControlledToken",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11069,
                                "src": "2662:16:63"
                              },
                              "referencedDeclaration": 11069,
                              "src": "2662:16:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IControlledToken_$11069",
                                "typeString": "contract IControlledToken"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15706,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 15703,
                              "name": "prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15603,
                              "src": "2689:9:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 15704,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getTicket",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11792,
                            "src": "2689:19:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_contract$_ITicket_$12213_$",
                              "typeString": "function () view external returns (contract ITicket)"
                            }
                          },
                          "id": 15705,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2689:21:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2662:48:63"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15710,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15694,
                              "src": "2736:3:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 15711,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15696,
                              "src": "2741:7:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 15707,
                              "name": "prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15603,
                              "src": "2720:9:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11883",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 15709,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "award",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11741,
                            "src": "2720:15:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256) external"
                            }
                          },
                          "id": 15712,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2720:29:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15713,
                        "nodeType": "ExpressionStatement",
                        "src": "2720:29:63"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15715,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15694,
                              "src": "2782:3:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 15716,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15696,
                              "src": "2787:7:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 15717,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15702,
                              "src": "2796:7:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IControlledToken_$11069",
                                "typeString": "contract IControlledToken"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_contract$_IControlledToken_$11069",
                                "typeString": "contract IControlledToken"
                              }
                            ],
                            "id": 15714,
                            "name": "PrizeSplitAwarded",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11898,
                            "src": "2764:17:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$_t_contract$_IControlledToken_$11069_$returns$__$",
                              "typeString": "function (address,uint256,contract IControlledToken)"
                            }
                          },
                          "id": 15718,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2764:40:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15719,
                        "nodeType": "EmitStatement",
                        "src": "2759:45:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15692,
                    "nodeType": "StructuredDocumentation",
                    "src": "2310:257:63",
                    "text": " @notice Award ticket tokens to prize split recipient.\n @dev Award ticket tokens to prize split recipient via the linked PrizePool contract.\n @param _to Recipient of minted tokens.\n @param _amount Amount of minted tokens."
                  },
                  "id": 15721,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_awardPrizeSplitAmount",
                  "nameLocation": "2581:22:63",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15698,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2643:8:63"
                  },
                  "parameters": {
                    "id": 15697,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15694,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "2612:3:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 15721,
                        "src": "2604:11:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15693,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2604:7:63",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15696,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "2625:7:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 15721,
                        "src": "2617:15:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15695,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2617:7:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2603:30:63"
                  },
                  "returnParameters": {
                    "id": 15699,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2652:0:63"
                  },
                  "scope": 15722,
                  "src": "2572:239:63",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 15723,
              "src": "877:1936:63",
              "usedErrors": []
            }
          ],
          "src": "37:2777:63"
        },
        "id": 63
      },
      "contracts/test/DrawBeaconHarness.sol": {
        "ast": {
          "absolutePath": "contracts/test/DrawBeaconHarness.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "DrawBeacon": [
              6167
            ],
            "DrawBeaconHarness": [
              15819
            ],
            "IDrawBeacon": [
              11241
            ],
            "IDrawBuffer": [
              11318
            ],
            "IERC20": [
              663
            ],
            "Ownable": [
              4086
            ],
            "RNGInterface": [
              4142
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 15820,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15724,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:64"
            },
            {
              "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "file": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "id": 15725,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15820,
              "sourceUnit": 4143,
              "src": "61:77:64",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/DrawBeacon.sol",
              "file": "../DrawBeacon.sol",
              "id": 15726,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15820,
              "sourceUnit": 6168,
              "src": "140:27:64",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IDrawBuffer.sol",
              "file": "../interfaces/IDrawBuffer.sol",
              "id": 15727,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15820,
              "sourceUnit": 11319,
              "src": "168:39:64",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15728,
                    "name": "DrawBeacon",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 6167,
                    "src": "239:10:64"
                  },
                  "id": 15729,
                  "nodeType": "InheritanceSpecifier",
                  "src": "239:10:64"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "fullyImplemented": true,
              "id": 15819,
              "linearizedBaseContracts": [
                15819,
                6167,
                4086,
                11241
              ],
              "name": "DrawBeaconHarness",
              "nameLocation": "218:17:64",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 15757,
                    "nodeType": "Block",
                    "src": "588:2:64",
                    "statements": []
                  },
                  "id": 15758,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 15748,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15731,
                          "src": "495:6:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        {
                          "id": 15749,
                          "name": "_drawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15734,
                          "src": "503:11:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        {
                          "id": 15750,
                          "name": "_rng",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15737,
                          "src": "516:4:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$4142",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        {
                          "id": 15751,
                          "name": "_nextDrawId",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15739,
                          "src": "522:11:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        {
                          "id": 15752,
                          "name": "_beaconPeriodStart",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15741,
                          "src": "535:18:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        {
                          "id": 15753,
                          "name": "_drawPeriodSeconds",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15743,
                          "src": "555:18:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        {
                          "id": 15754,
                          "name": "_rngTimeout",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15745,
                          "src": "575:11:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        }
                      ],
                      "id": 15755,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 15747,
                        "name": "DrawBeacon",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 6167,
                        "src": "484:10:64"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "484:103:64"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15746,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15731,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "285:6:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 15758,
                        "src": "277:14:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15730,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "277:7:64",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15734,
                        "mutability": "mutable",
                        "name": "_drawBuffer",
                        "nameLocation": "313:11:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 15758,
                        "src": "301:23:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 15733,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15732,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "301:11:64"
                          },
                          "referencedDeclaration": 11318,
                          "src": "301:11:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15737,
                        "mutability": "mutable",
                        "name": "_rng",
                        "nameLocation": "347:4:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 15758,
                        "src": "334:17:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$4142",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 15736,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15735,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 4142,
                            "src": "334:12:64"
                          },
                          "referencedDeclaration": 4142,
                          "src": "334:12:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$4142",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15739,
                        "mutability": "mutable",
                        "name": "_nextDrawId",
                        "nameLocation": "368:11:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 15758,
                        "src": "361:18:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15738,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "361:6:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15741,
                        "mutability": "mutable",
                        "name": "_beaconPeriodStart",
                        "nameLocation": "396:18:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 15758,
                        "src": "389:25:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 15740,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "389:6:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15743,
                        "mutability": "mutable",
                        "name": "_drawPeriodSeconds",
                        "nameLocation": "431:18:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 15758,
                        "src": "424:25:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15742,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "424:6:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15745,
                        "mutability": "mutable",
                        "name": "_rngTimeout",
                        "nameLocation": "466:11:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 15758,
                        "src": "459:18:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15744,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "459:6:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "267:216:64"
                  },
                  "returnParameters": {
                    "id": 15756,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "588:0:64"
                  },
                  "scope": 15819,
                  "src": "256:334:64",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "id": 15760,
                  "mutability": "mutable",
                  "name": "time",
                  "nameLocation": "612:4:64",
                  "nodeType": "VariableDeclaration",
                  "scope": 15819,
                  "src": "596:20:64",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint64",
                    "typeString": "uint64"
                  },
                  "typeName": {
                    "id": 15759,
                    "name": "uint64",
                    "nodeType": "ElementaryTypeName",
                    "src": "596:6:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint64",
                      "typeString": "uint64"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 15769,
                    "nodeType": "Block",
                    "src": "670:29:64",
                    "statements": [
                      {
                        "expression": {
                          "id": 15767,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15765,
                            "name": "time",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15760,
                            "src": "680:4:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15766,
                            "name": "_time",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15762,
                            "src": "687:5:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "680:12:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "id": 15768,
                        "nodeType": "ExpressionStatement",
                        "src": "680:12:64"
                      }
                    ]
                  },
                  "functionSelector": "09ad71a5",
                  "id": 15770,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setCurrentTime",
                  "nameLocation": "632:14:64",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15763,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15762,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "654:5:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 15770,
                        "src": "647:12:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 15761,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "647:6:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "646:14:64"
                  },
                  "returnParameters": {
                    "id": 15764,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "670:0:64"
                  },
                  "scope": 15819,
                  "src": "623:76:64",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    5995
                  ],
                  "body": {
                    "id": 15778,
                    "nodeType": "Block",
                    "src": "769:28:64",
                    "statements": [
                      {
                        "expression": {
                          "id": 15776,
                          "name": "time",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15760,
                          "src": "786:4:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 15775,
                        "id": 15777,
                        "nodeType": "Return",
                        "src": "779:11:64"
                      }
                    ]
                  },
                  "id": 15779,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_currentTime",
                  "nameLocation": "714:12:64",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15772,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "743:8:64"
                  },
                  "parameters": {
                    "id": 15771,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "726:2:64"
                  },
                  "returnParameters": {
                    "id": 15775,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15774,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15779,
                        "src": "761:6:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 15773,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "761:6:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "760:8:64"
                  },
                  "scope": 15819,
                  "src": "705:92:64",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 15787,
                    "nodeType": "Block",
                    "src": "857:38:64",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 15784,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              15779
                            ],
                            "referencedDeclaration": 15779,
                            "src": "874:12:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 15785,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "874:14:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 15783,
                        "id": 15786,
                        "nodeType": "Return",
                        "src": "867:21:64"
                      }
                    ]
                  },
                  "functionSelector": "d18e81b3",
                  "id": 15788,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "currentTime",
                  "nameLocation": "812:11:64",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15780,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "823:2:64"
                  },
                  "returnParameters": {
                    "id": 15783,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15782,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15788,
                        "src": "849:6:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 15781,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "849:6:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "848:8:64"
                  },
                  "scope": 15819,
                  "src": "803:92:64",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 15797,
                    "nodeType": "Block",
                    "src": "964:44:64",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 15793,
                              "name": "super",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -25,
                              "src": "981:5:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_super$_DrawBeaconHarness_$15819_$",
                                "typeString": "type(contract super DrawBeaconHarness)"
                              }
                            },
                            "id": 15794,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "_currentTime",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 5995,
                            "src": "981:18:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 15795,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "981:20:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 15792,
                        "id": 15796,
                        "nodeType": "Return",
                        "src": "974:27:64"
                      }
                    ]
                  },
                  "functionSelector": "0d2bcb79",
                  "id": 15798,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_currentTimeInternal",
                  "nameLocation": "910:20:64",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15789,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "930:2:64"
                  },
                  "returnParameters": {
                    "id": 15792,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15791,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15798,
                        "src": "956:6:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 15790,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "956:6:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "955:8:64"
                  },
                  "scope": 15819,
                  "src": "901:107:64",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 15817,
                    "nodeType": "Block",
                    "src": "1082:84:64",
                    "statements": [
                      {
                        "expression": {
                          "id": 15809,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 15805,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5317,
                              "src": "1092:10:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 15807,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "id",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 5335,
                            "src": "1092:13:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15808,
                            "name": "requestId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15800,
                            "src": "1108:9:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "1092:25:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 15810,
                        "nodeType": "ExpressionStatement",
                        "src": "1092:25:64"
                      },
                      {
                        "expression": {
                          "id": 15815,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 15811,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5317,
                              "src": "1127:10:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$5340_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 15813,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "lockBlock",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 5337,
                            "src": "1127:20:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15814,
                            "name": "lockBlock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15802,
                            "src": "1150:9:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "1127:32:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 15816,
                        "nodeType": "ExpressionStatement",
                        "src": "1127:32:64"
                      }
                    ]
                  },
                  "functionSelector": "642d43db",
                  "id": 15818,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setRngRequest",
                  "nameLocation": "1023:13:64",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15803,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15800,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "1044:9:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 15818,
                        "src": "1037:16:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15799,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1037:6:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15802,
                        "mutability": "mutable",
                        "name": "lockBlock",
                        "nameLocation": "1062:9:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 15818,
                        "src": "1055:16:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15801,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1055:6:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1036:36:64"
                  },
                  "returnParameters": {
                    "id": 15804,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1082:0:64"
                  },
                  "scope": 15819,
                  "src": "1014:152:64",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 15820,
              "src": "209:959:64",
              "usedErrors": []
            }
          ],
          "src": "37:1132:64"
        },
        "id": 64
      },
      "contracts/test/DrawBufferHarness.sol": {
        "ast": {
          "absolutePath": "contracts/test/DrawBufferHarness.sol",
          "exportedSymbols": {
            "DrawBuffer": [
              6538
            ],
            "DrawBufferHarness": [
              15883
            ],
            "DrawRingBufferLib": [
              12354
            ],
            "IDrawBeacon": [
              11241
            ],
            "IDrawBuffer": [
              11318
            ],
            "Manageable": [
              3931
            ],
            "Ownable": [
              4086
            ],
            "RNGInterface": [
              4142
            ],
            "RingBufferLib": [
              12849
            ]
          },
          "id": 15884,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15821,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:65"
            },
            {
              "absolutePath": "contracts/DrawBuffer.sol",
              "file": "../DrawBuffer.sol",
              "id": 15822,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15884,
              "sourceUnit": 6539,
              "src": "61:27:65",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IDrawBeacon.sol",
              "file": "../interfaces/IDrawBeacon.sol",
              "id": 15823,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15884,
              "sourceUnit": 11242,
              "src": "89:39:65",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15824,
                    "name": "DrawBuffer",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 6538,
                    "src": "160:10:65"
                  },
                  "id": 15825,
                  "nodeType": "InheritanceSpecifier",
                  "src": "160:10:65"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "fullyImplemented": true,
              "id": 15883,
              "linearizedBaseContracts": [
                15883,
                6538,
                3931,
                4086,
                11318
              ],
              "name": "DrawBufferHarness",
              "nameLocation": "139:17:65",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 15836,
                    "nodeType": "Block",
                    "src": "240:2:65",
                    "statements": []
                  },
                  "id": 15837,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 15832,
                          "name": "owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15827,
                          "src": "227:5:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        {
                          "id": 15833,
                          "name": "card",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15829,
                          "src": "234:4:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        }
                      ],
                      "id": 15834,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 15831,
                        "name": "DrawBuffer",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 6538,
                        "src": "216:10:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "216:23:65"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15830,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15827,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "197:5:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 15837,
                        "src": "189:13:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15826,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "189:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15829,
                        "mutability": "mutable",
                        "name": "card",
                        "nameLocation": "210:4:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 15837,
                        "src": "204:10:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 15828,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "204:5:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "188:27:65"
                  },
                  "returnParameters": {
                    "id": 15835,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "240:0:65"
                  },
                  "scope": 15883,
                  "src": "177:65:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 15881,
                    "nodeType": "Block",
                    "src": "410:420:65",
                    "statements": [
                      {
                        "body": {
                          "id": 15879,
                          "nodeType": "Block",
                          "src": "483:341:65",
                          "statements": [
                            {
                              "assignments": [
                                15862
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 15862,
                                  "mutability": "mutable",
                                  "name": "_draw",
                                  "nameLocation": "521:5:65",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 15879,
                                  "src": "497:29:65",
                                  "stateVariable": false,
                                  "storageLocation": "memory",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw"
                                  },
                                  "typeName": {
                                    "id": 15861,
                                    "nodeType": "UserDefinedTypeName",
                                    "pathNode": {
                                      "id": 15860,
                                      "name": "IDrawBeacon.Draw",
                                      "nodeType": "IdentifierPath",
                                      "referencedDeclaration": 11085,
                                      "src": "497:16:65"
                                    },
                                    "referencedDeclaration": 11085,
                                    "src": "497:16:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Draw_$11085_storage_ptr",
                                      "typeString": "struct IDrawBeacon.Draw"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 15874,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "id": 15865,
                                    "name": "_winningRandomNumber",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15845,
                                    "src": "585:20:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "id": 15868,
                                        "name": "index",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 15849,
                                        "src": "638:5:65",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      ],
                                      "id": 15867,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "631:6:65",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint32_$",
                                        "typeString": "type(uint32)"
                                      },
                                      "typeName": {
                                        "id": 15866,
                                        "name": "uint32",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "631:6:65",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 15869,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "631:13:65",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  {
                                    "id": 15870,
                                    "name": "_timestamp",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15843,
                                    "src": "673:10:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  {
                                    "hexValue": "3130",
                                    "id": 15871,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "722:2:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_10_by_1",
                                      "typeString": "int_const 10"
                                    },
                                    "value": "10"
                                  },
                                  {
                                    "hexValue": "3230",
                                    "id": 15872,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "765:2:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_20_by_1",
                                      "typeString": "int_const 20"
                                    },
                                    "value": "20"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    {
                                      "typeIdentifier": "t_rational_10_by_1",
                                      "typeString": "int_const 10"
                                    },
                                    {
                                      "typeIdentifier": "t_rational_20_by_1",
                                      "typeString": "int_const 20"
                                    }
                                  ],
                                  "expression": {
                                    "id": 15863,
                                    "name": "IDrawBeacon",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11241,
                                    "src": "529:11:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_IDrawBeacon_$11241_$",
                                      "typeString": "type(contract IDrawBeacon)"
                                    }
                                  },
                                  "id": 15864,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "Draw",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 11085,
                                  "src": "529:16:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_struct$_Draw_$11085_storage_ptr_$",
                                    "typeString": "type(struct IDrawBeacon.Draw storage pointer)"
                                  }
                                },
                                "id": 15873,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "structConstructorCall",
                                "lValueRequested": false,
                                "names": [
                                  "winningRandomNumber",
                                  "drawId",
                                  "timestamp",
                                  "beaconPeriodSeconds",
                                  "beaconPeriodStartedAt"
                                ],
                                "nodeType": "FunctionCall",
                                "src": "529:253:65",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "497:285:65"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 15876,
                                    "name": "_draw",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15862,
                                    "src": "807:5:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                      "typeString": "struct IDrawBeacon.Draw memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_Draw_$11085_memory_ptr",
                                      "typeString": "struct IDrawBeacon.Draw memory"
                                    }
                                  ],
                                  "id": 15875,
                                  "name": "_pushDraw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6537,
                                  "src": "797:9:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Draw_$11085_memory_ptr_$returns$_t_uint32_$",
                                    "typeString": "function (struct IDrawBeacon.Draw memory) returns (uint32)"
                                  }
                                },
                                "id": 15877,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "797:16:65",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "id": 15878,
                              "nodeType": "ExpressionStatement",
                              "src": "797:16:65"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15854,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 15852,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15849,
                            "src": "449:5:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 15853,
                            "name": "_numberOfDraws",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15841,
                            "src": "458:14:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "449:23:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15880,
                        "initializationExpression": {
                          "assignments": [
                            15849
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 15849,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "433:5:65",
                              "nodeType": "VariableDeclaration",
                              "scope": 15880,
                              "src": "425:13:65",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 15848,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "425:7:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 15851,
                          "initialValue": {
                            "id": 15850,
                            "name": "_start",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15839,
                            "src": "441:6:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "425:22:65"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 15856,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "474:7:65",
                            "subExpression": {
                              "id": 15855,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15849,
                              "src": "474:5:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 15857,
                          "nodeType": "ExpressionStatement",
                          "src": "474:7:65"
                        },
                        "nodeType": "ForStatement",
                        "src": "420:404:65"
                      }
                    ]
                  },
                  "functionSelector": "23a11b20",
                  "id": 15882,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "addMultipleDraws",
                  "nameLocation": "257:16:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15846,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15839,
                        "mutability": "mutable",
                        "name": "_start",
                        "nameLocation": "291:6:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 15882,
                        "src": "283:14:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15838,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "283:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15841,
                        "mutability": "mutable",
                        "name": "_numberOfDraws",
                        "nameLocation": "315:14:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 15882,
                        "src": "307:22:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15840,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "307:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15843,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "346:10:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 15882,
                        "src": "339:17:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15842,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "339:6:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15845,
                        "mutability": "mutable",
                        "name": "_winningRandomNumber",
                        "nameLocation": "374:20:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 15882,
                        "src": "366:28:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15844,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "366:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "273:127:65"
                  },
                  "returnParameters": {
                    "id": 15847,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "410:0:65"
                  },
                  "scope": 15883,
                  "src": "248:582:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 15884,
              "src": "130:702:65",
              "usedErrors": []
            }
          ],
          "src": "37:796:65"
        },
        "id": 65
      },
      "contracts/test/DrawCalculatorHarness.sol": {
        "ast": {
          "absolutePath": "contracts/test/DrawCalculatorHarness.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "DrawCalculator": [
              7568
            ],
            "DrawCalculatorHarness": [
              15988
            ],
            "DrawRingBufferLib": [
              12354
            ],
            "ExtendedSafeCastLib": [
              12433
            ],
            "IControlledToken": [
              11069
            ],
            "IDrawBeacon": [
              11241
            ],
            "IDrawBuffer": [
              11318
            ],
            "IDrawCalculator": [
              11391
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              11467
            ],
            "IPrizeDistributionSource": [
              11503
            ],
            "IPrizeDistributor": [
              11601
            ],
            "ITicket": [
              12213
            ],
            "Manageable": [
              3931
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "Ownable": [
              4086
            ],
            "PrizeDistributionBuffer": [
              9113
            ],
            "PrizeDistributor": [
              9486
            ],
            "RNGInterface": [
              4142
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 15989,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15885,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:66"
            },
            {
              "absolutePath": "contracts/DrawCalculator.sol",
              "file": "../DrawCalculator.sol",
              "id": 15886,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15989,
              "sourceUnit": 7569,
              "src": "61:31:66",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15887,
                    "name": "DrawCalculator",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 7568,
                    "src": "128:14:66"
                  },
                  "id": 15888,
                  "nodeType": "InheritanceSpecifier",
                  "src": "128:14:66"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "fullyImplemented": true,
              "id": 15988,
              "linearizedBaseContracts": [
                15988,
                7568,
                11391
              ],
              "name": "DrawCalculatorHarness",
              "nameLocation": "103:21:66",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 15905,
                    "nodeType": "Block",
                    "src": "347:2:66",
                    "statements": []
                  },
                  "id": 15906,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 15900,
                          "name": "_ticket",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15891,
                          "src": "299:7:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        {
                          "id": 15901,
                          "name": "_drawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15894,
                          "src": "308:11:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        {
                          "id": 15902,
                          "name": "_prizeDistributionBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15897,
                          "src": "321:24:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        }
                      ],
                      "id": 15903,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 15899,
                        "name": "DrawCalculator",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 7568,
                        "src": "284:14:66"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "284:62:66"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15898,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15891,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "178:7:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 15906,
                        "src": "170:15:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 15890,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15889,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "170:7:66"
                          },
                          "referencedDeclaration": 12213,
                          "src": "170:7:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15894,
                        "mutability": "mutable",
                        "name": "_drawBuffer",
                        "nameLocation": "207:11:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 15906,
                        "src": "195:23:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 15893,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15892,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "195:11:66"
                          },
                          "referencedDeclaration": 11318,
                          "src": "195:11:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15897,
                        "mutability": "mutable",
                        "name": "_prizeDistributionBuffer",
                        "nameLocation": "253:24:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 15906,
                        "src": "228:49:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 15896,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15895,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11467,
                            "src": "228:24:66"
                          },
                          "referencedDeclaration": 11467,
                          "src": "228:24:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11467",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "160:123:66"
                  },
                  "returnParameters": {
                    "id": 15904,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "347:0:66"
                  },
                  "scope": 15988,
                  "src": "149:200:66",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 15924,
                    "nodeType": "Block",
                    "src": "529:96:66",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15919,
                              "name": "_randomNumberThisPick",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15908,
                              "src": "566:21:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 15920,
                              "name": "_winningRandomNumber",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15910,
                              "src": "589:20:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 15921,
                              "name": "_masks",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15913,
                              "src": "611:6:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              }
                            ],
                            "id": 15918,
                            "name": "_calculateTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7388,
                            "src": "546:19:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$_t_uint8_$",
                              "typeString": "function (uint256,uint256,uint256[] memory) pure returns (uint8)"
                            }
                          },
                          "id": 15922,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "546:72:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 15917,
                        "id": 15923,
                        "nodeType": "Return",
                        "src": "539:79:66"
                      }
                    ]
                  },
                  "functionSelector": "6d4bfa6e",
                  "id": 15925,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculateTierIndex",
                  "nameLocation": "364:18:66",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15914,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15908,
                        "mutability": "mutable",
                        "name": "_randomNumberThisPick",
                        "nameLocation": "400:21:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 15925,
                        "src": "392:29:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15907,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "392:7:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15910,
                        "mutability": "mutable",
                        "name": "_winningRandomNumber",
                        "nameLocation": "439:20:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 15925,
                        "src": "431:28:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15909,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "431:7:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15913,
                        "mutability": "mutable",
                        "name": "_masks",
                        "nameLocation": "486:6:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 15925,
                        "src": "469:23:66",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 15911,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "469:7:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 15912,
                          "nodeType": "ArrayTypeName",
                          "src": "469:9:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "382:116:66"
                  },
                  "returnParameters": {
                    "id": 15917,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15916,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15925,
                        "src": "520:7:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15915,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "520:7:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "519:9:66"
                  },
                  "scope": 15988,
                  "src": "355:270:66",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 15938,
                    "nodeType": "Block",
                    "src": "794:59:66",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15935,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15928,
                              "src": "827:18:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            ],
                            "id": 15934,
                            "name": "_createBitMasks",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7451,
                            "src": "811:15:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11491_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory) pure returns (uint256[] memory)"
                            }
                          },
                          "id": 15936,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "811:35:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 15933,
                        "id": 15937,
                        "nodeType": "Return",
                        "src": "804:42:66"
                      }
                    ]
                  },
                  "functionSelector": "67306cf2",
                  "id": 15939,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "createBitMasks",
                  "nameLocation": "640:14:66",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15929,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15928,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "707:18:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 15939,
                        "src": "655:70:66",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 15927,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15926,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "655:42:66"
                          },
                          "referencedDeclaration": 11491,
                          "src": "655:42:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "654:72:66"
                  },
                  "returnParameters": {
                    "id": 15933,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15932,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15939,
                        "src": "772:16:66",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 15930,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "772:7:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 15931,
                          "nodeType": "ArrayTypeName",
                          "src": "772:9:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "771:18:66"
                  },
                  "scope": 15988,
                  "src": "631:222:66",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 15955,
                    "nodeType": "Block",
                    "src": "1337:88:66",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15951,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15943,
                              "src": "1382:18:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            },
                            {
                              "id": 15952,
                              "name": "_prizeTierIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15945,
                              "src": "1402:15:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 15950,
                            "name": "_calculatePrizeTierFraction",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7482,
                            "src": "1354:27:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11491_memory_ptr_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 15953,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1354:64:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 15949,
                        "id": 15954,
                        "nodeType": "Return",
                        "src": "1347:71:66"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15940,
                    "nodeType": "StructuredDocumentation",
                    "src": "859:286:66",
                    "text": "@notice Calculates the expected prize fraction per prizeDistribution and prizeTierIndex\n@param _prizeDistribution prizeDistribution struct for Draw\n@param _prizeTierIndex Index of the prize tiers array to calculate\n@return returns the fraction of the total prize"
                  },
                  "functionSelector": "3b5564f9",
                  "id": 15956,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculatePrizeTierFraction",
                  "nameLocation": "1159:26:66",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15946,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15943,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "1247:18:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 15956,
                        "src": "1195:70:66",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 15942,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15941,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "1195:42:66"
                          },
                          "referencedDeclaration": 11491,
                          "src": "1195:42:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15945,
                        "mutability": "mutable",
                        "name": "_prizeTierIndex",
                        "nameLocation": "1283:15:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 15956,
                        "src": "1275:23:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15944,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1275:7:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1185:119:66"
                  },
                  "returnParameters": {
                    "id": 15949,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15948,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15956,
                        "src": "1328:7:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15947,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1328:7:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1327:9:66"
                  },
                  "scope": 15988,
                  "src": "1150:275:66",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 15970,
                    "nodeType": "Block",
                    "src": "1569:79:66",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15966,
                              "name": "_bitRangeSize",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15958,
                              "src": "1610:13:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 15967,
                              "name": "_prizeTierIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15960,
                              "src": "1625:15:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 15965,
                            "name": "_numberOfPrizesForIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7567,
                            "src": "1586:23:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint8_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint8,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 15968,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1586:55:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 15964,
                        "id": 15969,
                        "nodeType": "Return",
                        "src": "1579:62:66"
                      }
                    ]
                  },
                  "functionSelector": "094a2491",
                  "id": 15971,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "numberOfPrizesForIndex",
                  "nameLocation": "1440:22:66",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15961,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15958,
                        "mutability": "mutable",
                        "name": "_bitRangeSize",
                        "nameLocation": "1469:13:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 15971,
                        "src": "1463:19:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 15957,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1463:5:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15960,
                        "mutability": "mutable",
                        "name": "_prizeTierIndex",
                        "nameLocation": "1492:15:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 15971,
                        "src": "1484:23:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15959,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1484:7:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1462:46:66"
                  },
                  "returnParameters": {
                    "id": 15964,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15963,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15971,
                        "src": "1556:7:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15962,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1556:7:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1555:9:66"
                  },
                  "scope": 15988,
                  "src": "1431:217:66",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 15986,
                    "nodeType": "Block",
                    "src": "1845:95:66",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15982,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15974,
                              "src": "1890:18:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            },
                            {
                              "id": 15983,
                              "name": "_normalizedUserBalance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15976,
                              "src": "1910:22:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 15981,
                            "name": "_calculateNumberOfUserPicks",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6949,
                            "src": "1862:27:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11491_memory_ptr_$_t_uint256_$returns$_t_uint64_$",
                              "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory,uint256) pure returns (uint64)"
                            }
                          },
                          "id": 15984,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1862:71:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 15980,
                        "id": 15985,
                        "nodeType": "Return",
                        "src": "1855:78:66"
                      }
                    ]
                  },
                  "functionSelector": "9d34ee24",
                  "id": 15987,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculateNumberOfUserPicks",
                  "nameLocation": "1663:26:66",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15977,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15974,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "1749:18:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 15987,
                        "src": "1699:68:66",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 15973,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15972,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "1699:42:66"
                          },
                          "referencedDeclaration": 11491,
                          "src": "1699:42:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15976,
                        "mutability": "mutable",
                        "name": "_normalizedUserBalance",
                        "nameLocation": "1785:22:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 15987,
                        "src": "1777:30:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15975,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1777:7:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1689:124:66"
                  },
                  "returnParameters": {
                    "id": 15980,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15979,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15987,
                        "src": "1837:6:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 15978,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "1837:6:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1836:8:66"
                  },
                  "scope": 15988,
                  "src": "1654:286:66",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 15989,
              "src": "94:1848:66",
              "usedErrors": []
            }
          ],
          "src": "37:1906:66"
        },
        "id": 66
      },
      "contracts/test/DrawCalculatorV2Harness.sol": {
        "ast": {
          "absolutePath": "contracts/test/DrawCalculatorV2Harness.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "DrawCalculatorV2": [
              8610
            ],
            "DrawCalculatorV2Harness": [
              16093
            ],
            "ExtendedSafeCastLib": [
              12433
            ],
            "IControlledToken": [
              11069
            ],
            "IDrawBeacon": [
              11241
            ],
            "IDrawBuffer": [
              11318
            ],
            "IDrawCalculator": [
              11391
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionSource": [
              11503
            ],
            "IPrizeDistributor": [
              11601
            ],
            "ITicket": [
              12213
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "Ownable": [
              4086
            ],
            "PrizeDistributor": [
              9486
            ],
            "RNGInterface": [
              4142
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 16094,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15990,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:67"
            },
            {
              "absolutePath": "contracts/DrawCalculatorV2.sol",
              "file": "../DrawCalculatorV2.sol",
              "id": 15991,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16094,
              "sourceUnit": 8611,
              "src": "61:33:67",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15992,
                    "name": "DrawCalculatorV2",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 8610,
                    "src": "132:16:67"
                  },
                  "id": 15993,
                  "nodeType": "InheritanceSpecifier",
                  "src": "132:16:67"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "fullyImplemented": true,
              "id": 16093,
              "linearizedBaseContracts": [
                16093,
                8610
              ],
              "name": "DrawCalculatorV2Harness",
              "nameLocation": "105:23:67",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 16010,
                    "nodeType": "Block",
                    "src": "355:2:67",
                    "statements": []
                  },
                  "id": 16011,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 16005,
                          "name": "_ticket",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15996,
                          "src": "307:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        {
                          "id": 16006,
                          "name": "_drawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15999,
                          "src": "316:11:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        {
                          "id": 16007,
                          "name": "_prizeDistributionSource",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16002,
                          "src": "329:24:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                            "typeString": "contract IPrizeDistributionSource"
                          }
                        }
                      ],
                      "id": 16008,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 16004,
                        "name": "DrawCalculatorV2",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 8610,
                        "src": "290:16:67"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "290:64:67"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16003,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15996,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "184:7:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 16011,
                        "src": "176:15:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 15995,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15994,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "176:7:67"
                          },
                          "referencedDeclaration": 12213,
                          "src": "176:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15999,
                        "mutability": "mutable",
                        "name": "_drawBuffer",
                        "nameLocation": "213:11:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 16011,
                        "src": "201:23:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 15998,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15997,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11318,
                            "src": "201:11:67"
                          },
                          "referencedDeclaration": 11318,
                          "src": "201:11:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$11318",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16002,
                        "mutability": "mutable",
                        "name": "_prizeDistributionSource",
                        "nameLocation": "259:24:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 16011,
                        "src": "234:49:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                          "typeString": "contract IPrizeDistributionSource"
                        },
                        "typeName": {
                          "id": 16001,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16000,
                            "name": "IPrizeDistributionSource",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11503,
                            "src": "234:24:67"
                          },
                          "referencedDeclaration": 11503,
                          "src": "234:24:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionSource_$11503",
                            "typeString": "contract IPrizeDistributionSource"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "166:123:67"
                  },
                  "returnParameters": {
                    "id": 16009,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "355:0:67"
                  },
                  "scope": 16093,
                  "src": "155:202:67",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16029,
                    "nodeType": "Block",
                    "src": "537:96:67",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16024,
                              "name": "_randomNumberThisPick",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16013,
                              "src": "574:21:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 16025,
                              "name": "_winningRandomNumber",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16015,
                              "src": "597:20:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 16026,
                              "name": "_masks",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16018,
                              "src": "619:6:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              }
                            ],
                            "id": 16023,
                            "name": "_calculateTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8430,
                            "src": "554:19:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$_t_uint8_$",
                              "typeString": "function (uint256,uint256,uint256[] memory) pure returns (uint8)"
                            }
                          },
                          "id": 16027,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "554:72:67",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 16022,
                        "id": 16028,
                        "nodeType": "Return",
                        "src": "547:79:67"
                      }
                    ]
                  },
                  "functionSelector": "6d4bfa6e",
                  "id": 16030,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculateTierIndex",
                  "nameLocation": "372:18:67",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16019,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16013,
                        "mutability": "mutable",
                        "name": "_randomNumberThisPick",
                        "nameLocation": "408:21:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 16030,
                        "src": "400:29:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16012,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "400:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16015,
                        "mutability": "mutable",
                        "name": "_winningRandomNumber",
                        "nameLocation": "447:20:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 16030,
                        "src": "439:28:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16014,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "439:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16018,
                        "mutability": "mutable",
                        "name": "_masks",
                        "nameLocation": "494:6:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 16030,
                        "src": "477:23:67",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 16016,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "477:7:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 16017,
                          "nodeType": "ArrayTypeName",
                          "src": "477:9:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "390:116:67"
                  },
                  "returnParameters": {
                    "id": 16022,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16021,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16030,
                        "src": "528:7:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16020,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "528:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "527:9:67"
                  },
                  "scope": 16093,
                  "src": "363:270:67",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16043,
                    "nodeType": "Block",
                    "src": "802:59:67",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16040,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16033,
                              "src": "835:18:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            ],
                            "id": 16039,
                            "name": "_createBitMasks",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8493,
                            "src": "819:15:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11491_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory) pure returns (uint256[] memory)"
                            }
                          },
                          "id": 16041,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "819:35:67",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 16038,
                        "id": 16042,
                        "nodeType": "Return",
                        "src": "812:42:67"
                      }
                    ]
                  },
                  "functionSelector": "67306cf2",
                  "id": 16044,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "createBitMasks",
                  "nameLocation": "648:14:67",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16034,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16033,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "715:18:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 16044,
                        "src": "663:70:67",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 16032,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16031,
                            "name": "IPrizeDistributionSource.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "663:42:67"
                          },
                          "referencedDeclaration": 11491,
                          "src": "663:42:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "662:72:67"
                  },
                  "returnParameters": {
                    "id": 16038,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16037,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16044,
                        "src": "780:16:67",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 16035,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "780:7:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 16036,
                          "nodeType": "ArrayTypeName",
                          "src": "780:9:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "779:18:67"
                  },
                  "scope": 16093,
                  "src": "639:222:67",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16060,
                    "nodeType": "Block",
                    "src": "1345:88:67",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16056,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16048,
                              "src": "1390:18:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            },
                            {
                              "id": 16057,
                              "name": "_prizeTierIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16050,
                              "src": "1410:15:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16055,
                            "name": "_calculatePrizeTierFraction",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8524,
                            "src": "1362:27:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11491_memory_ptr_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 16058,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1362:64:67",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 16054,
                        "id": 16059,
                        "nodeType": "Return",
                        "src": "1355:71:67"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16045,
                    "nodeType": "StructuredDocumentation",
                    "src": "867:286:67",
                    "text": "@notice Calculates the expected prize fraction per prizeDistribution and prizeTierIndex\n@param _prizeDistribution prizeDistribution struct for Draw\n@param _prizeTierIndex Index of the prize tiers array to calculate\n@return returns the fraction of the total prize"
                  },
                  "functionSelector": "3b5564f9",
                  "id": 16061,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculatePrizeTierFraction",
                  "nameLocation": "1167:26:67",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16051,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16048,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "1255:18:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 16061,
                        "src": "1203:70:67",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_calldata_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 16047,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16046,
                            "name": "IPrizeDistributionSource.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "1203:42:67"
                          },
                          "referencedDeclaration": 11491,
                          "src": "1203:42:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16050,
                        "mutability": "mutable",
                        "name": "_prizeTierIndex",
                        "nameLocation": "1291:15:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 16061,
                        "src": "1283:23:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16049,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1283:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1193:119:67"
                  },
                  "returnParameters": {
                    "id": 16054,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16053,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16061,
                        "src": "1336:7:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16052,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1336:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1335:9:67"
                  },
                  "scope": 16093,
                  "src": "1158:275:67",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16075,
                    "nodeType": "Block",
                    "src": "1577:79:67",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16071,
                              "name": "_bitRangeSize",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16063,
                              "src": "1618:13:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 16072,
                              "name": "_prizeTierIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16065,
                              "src": "1633:15:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16070,
                            "name": "_numberOfPrizesForIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8609,
                            "src": "1594:23:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint8_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint8,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 16073,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1594:55:67",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 16069,
                        "id": 16074,
                        "nodeType": "Return",
                        "src": "1587:62:67"
                      }
                    ]
                  },
                  "functionSelector": "094a2491",
                  "id": 16076,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "numberOfPrizesForIndex",
                  "nameLocation": "1448:22:67",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16066,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16063,
                        "mutability": "mutable",
                        "name": "_bitRangeSize",
                        "nameLocation": "1477:13:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 16076,
                        "src": "1471:19:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 16062,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1471:5:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16065,
                        "mutability": "mutable",
                        "name": "_prizeTierIndex",
                        "nameLocation": "1500:15:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 16076,
                        "src": "1492:23:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16064,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1492:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1470:46:67"
                  },
                  "returnParameters": {
                    "id": 16069,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16068,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16076,
                        "src": "1564:7:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16067,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1564:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1563:9:67"
                  },
                  "scope": 16093,
                  "src": "1439:217:67",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16091,
                    "nodeType": "Block",
                    "src": "1853:95:67",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16087,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16079,
                              "src": "1898:18:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            },
                            {
                              "id": 16088,
                              "name": "_normalizedUserBalance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16081,
                              "src": "1918:22:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16086,
                            "name": "_calculateNumberOfUserPicks",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7991,
                            "src": "1870:27:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11491_memory_ptr_$_t_uint256_$returns$_t_uint64_$",
                              "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory,uint256) pure returns (uint64)"
                            }
                          },
                          "id": 16089,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1870:71:67",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 16085,
                        "id": 16090,
                        "nodeType": "Return",
                        "src": "1863:78:67"
                      }
                    ]
                  },
                  "functionSelector": "9d34ee24",
                  "id": 16092,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculateNumberOfUserPicks",
                  "nameLocation": "1671:26:67",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16082,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16079,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "1757:18:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 16092,
                        "src": "1707:68:67",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11491_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 16078,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16077,
                            "name": "IPrizeDistributionSource.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11491,
                            "src": "1707:42:67"
                          },
                          "referencedDeclaration": 11491,
                          "src": "1707:42:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11491_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16081,
                        "mutability": "mutable",
                        "name": "_normalizedUserBalance",
                        "nameLocation": "1793:22:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 16092,
                        "src": "1785:30:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16080,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1785:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1697:124:67"
                  },
                  "returnParameters": {
                    "id": 16085,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16084,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16092,
                        "src": "1845:6:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 16083,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "1845:6:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1844:8:67"
                  },
                  "scope": 16093,
                  "src": "1662:286:67",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16094,
              "src": "96:1854:67",
              "usedErrors": []
            }
          ],
          "src": "37:1914:67"
        },
        "id": 67
      },
      "contracts/test/DrawRingBufferExposed.sol": {
        "ast": {
          "absolutePath": "contracts/test/DrawRingBufferExposed.sol",
          "exportedSymbols": {
            "DrawRingBufferLib": [
              12354
            ],
            "DrawRingBufferLibExposed": [
              16155
            ],
            "RingBufferLib": [
              12849
            ]
          },
          "id": 16156,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16095,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:68"
            },
            {
              "absolutePath": "contracts/libraries/DrawRingBufferLib.sol",
              "file": "../libraries/DrawRingBufferLib.sol",
              "id": 16096,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16156,
              "sourceUnit": 12355,
              "src": "61:44:68",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 16097,
                "nodeType": "StructuredDocumentation",
                "src": "107:95:68",
                "text": " @title  Expose the DrawRingBufferLibrary for unit tests\n @author PoolTogether Inc."
              },
              "fullyImplemented": true,
              "id": 16155,
              "linearizedBaseContracts": [
                16155
              ],
              "name": "DrawRingBufferLibExposed",
              "nameLocation": "212:24:68",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 16101,
                  "libraryName": {
                    "id": 16098,
                    "name": "DrawRingBufferLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12354,
                    "src": "249:17:68"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "243:53:68",
                  "typeName": {
                    "id": 16100,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 16099,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 12224,
                      "src": "271:24:68"
                    },
                    "referencedDeclaration": 12224,
                    "src": "271:24:68",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  }
                },
                {
                  "constant": true,
                  "functionSelector": "8200d873",
                  "id": 16104,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "325:15:68",
                  "nodeType": "VariableDeclaration",
                  "scope": 16155,
                  "src": "302:44:68",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint16",
                    "typeString": "uint16"
                  },
                  "typeName": {
                    "id": 16102,
                    "name": "uint16",
                    "nodeType": "ElementaryTypeName",
                    "src": "302:6:68",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint16",
                      "typeString": "uint16"
                    }
                  },
                  "value": {
                    "hexValue": "323536",
                    "id": 16103,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "343:3:68",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_256_by_1",
                      "typeString": "int_const 256"
                    },
                    "value": "256"
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "id": 16107,
                  "mutability": "mutable",
                  "name": "bufferMetadata",
                  "nameLocation": "386:14:68",
                  "nodeType": "VariableDeclaration",
                  "scope": 16155,
                  "src": "352:48:68",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                    "typeString": "struct DrawRingBufferLib.Buffer"
                  },
                  "typeName": {
                    "id": 16106,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 16105,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 12224,
                      "src": "352:24:68"
                    },
                    "referencedDeclaration": 12224,
                    "src": "352:24:68",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 16118,
                    "nodeType": "Block",
                    "src": "439:58:68",
                    "statements": [
                      {
                        "expression": {
                          "id": 16116,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 16112,
                              "name": "bufferMetadata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16107,
                              "src": "449:14:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            },
                            "id": 16114,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "cardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12223,
                            "src": "449:26:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16115,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16109,
                            "src": "478:12:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "449:41:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 16117,
                        "nodeType": "ExpressionStatement",
                        "src": "449:41:68"
                      }
                    ]
                  },
                  "id": 16119,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16110,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16109,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "425:12:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 16119,
                        "src": "419:18:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 16108,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "419:5:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "418:20:68"
                  },
                  "returnParameters": {
                    "id": 16111,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "439:0:68"
                  },
                  "scope": 16155,
                  "src": "407:90:68",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16136,
                    "nodeType": "Block",
                    "src": "659:64:68",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16132,
                              "name": "_buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16122,
                              "src": "699:7:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            {
                              "id": 16133,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16124,
                              "src": "708:7:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 16130,
                              "name": "DrawRingBufferLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12354,
                              "src": "676:17:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_DrawRingBufferLib_$12354_$",
                                "typeString": "type(library DrawRingBufferLib)"
                              }
                            },
                            "id": 16131,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "push",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12290,
                            "src": "676:22:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_struct$_Buffer_$12224_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (struct DrawRingBufferLib.Buffer memory)"
                            }
                          },
                          "id": 16134,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "676:40:68",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer memory"
                          }
                        },
                        "functionReturnParameters": 16129,
                        "id": 16135,
                        "nodeType": "Return",
                        "src": "669:47:68"
                      }
                    ]
                  },
                  "functionSelector": "79ba59ff",
                  "id": 16137,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_push",
                  "nameLocation": "512:5:68",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16125,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16122,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "550:7:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 16137,
                        "src": "518:39:68",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 16121,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16120,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12224,
                            "src": "518:24:68"
                          },
                          "referencedDeclaration": 12224,
                          "src": "518:24:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16124,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "566:7:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 16137,
                        "src": "559:14:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16123,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "559:6:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "517:57:68"
                  },
                  "returnParameters": {
                    "id": 16129,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16128,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16137,
                        "src": "622:31:68",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 16127,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16126,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12224,
                            "src": "622:24:68"
                          },
                          "referencedDeclaration": 12224,
                          "src": "622:24:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "621:33:68"
                  },
                  "scope": 16155,
                  "src": "503:220:68",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16153,
                    "nodeType": "Block",
                    "src": "864:68:68",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16149,
                              "name": "_buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16140,
                              "src": "908:7:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            {
                              "id": 16150,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16142,
                              "src": "917:7:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 16147,
                              "name": "DrawRingBufferLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12354,
                              "src": "881:17:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_DrawRingBufferLib_$12354_$",
                                "typeString": "type(library DrawRingBufferLib)"
                              }
                            },
                            "id": 16148,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12353,
                            "src": "881:26:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_uint32_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                            }
                          },
                          "id": 16151,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "881:44:68",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 16146,
                        "id": 16152,
                        "nodeType": "Return",
                        "src": "874:51:68"
                      }
                    ]
                  },
                  "functionSelector": "11f807df",
                  "id": 16154,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getIndex",
                  "nameLocation": "738:9:68",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16143,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16140,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "780:7:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 16154,
                        "src": "748:39:68",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 16139,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16138,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12224,
                            "src": "748:24:68"
                          },
                          "referencedDeclaration": 12224,
                          "src": "748:24:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16142,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "796:7:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 16154,
                        "src": "789:14:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16141,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "789:6:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "747:57:68"
                  },
                  "returnParameters": {
                    "id": 16146,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16145,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16154,
                        "src": "852:6:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16144,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "852:6:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "851:8:68"
                  },
                  "scope": 16155,
                  "src": "729:203:68",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16156,
              "src": "203:731:68",
              "usedErrors": []
            }
          ],
          "src": "37:898:68"
        },
        "id": 68
      },
      "contracts/test/EIP2612PermitMintable.sol": {
        "ast": {
          "absolutePath": "contracts/test/EIP2612PermitMintable.sol",
          "exportedSymbols": {
            "Context": [
              2413
            ],
            "Counters": [
              2487
            ],
            "ECDSA": [
              3057
            ],
            "EIP2612PermitMintable": [
              16228
            ],
            "EIP712": [
              3195
            ],
            "ERC20": [
              585
            ],
            "ERC20Permit": [
              857
            ],
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ],
            "IERC20Permit": [
              893
            ]
          },
          "id": 16229,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16157,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:69"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol",
              "file": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol",
              "id": 16158,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16229,
              "sourceUnit": 858,
              "src": "61:78:69",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 16160,
                    "name": "ERC20Permit",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 857,
                    "src": "411:11:69"
                  },
                  "id": 16161,
                  "nodeType": "InheritanceSpecifier",
                  "src": "411:11:69"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 16159,
                "nodeType": "StructuredDocumentation",
                "src": "141:235:69",
                "text": " @dev Extension of {ERC20Permit} that adds a set of accounts with the {MinterRole},\n which have permission to mint (create) new tokens as they see fit.\n At construction, the deployer of the contract is the only minter."
              },
              "fullyImplemented": true,
              "id": 16228,
              "linearizedBaseContracts": [
                16228,
                857,
                3195,
                893,
                585,
                688,
                663,
                2413
              ],
              "name": "EIP2612PermitMintable",
              "nameLocation": "386:21:69",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 16175,
                    "nodeType": "Block",
                    "src": "546:2:69",
                    "statements": []
                  },
                  "id": 16176,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 16168,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16163,
                          "src": "499:5:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 16169,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16165,
                          "src": "506:7:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        }
                      ],
                      "id": 16170,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 16167,
                        "name": "ERC20",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 585,
                        "src": "493:5:69"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "493:21:69"
                    },
                    {
                      "arguments": [
                        {
                          "id": 16172,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16163,
                          "src": "535:5:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        }
                      ],
                      "id": 16173,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 16171,
                        "name": "ERC20Permit",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 857,
                        "src": "523:11:69"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "523:18:69"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16166,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16163,
                        "mutability": "mutable",
                        "name": "_name",
                        "nameLocation": "455:5:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 16176,
                        "src": "441:19:69",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 16162,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "441:6:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16165,
                        "mutability": "mutable",
                        "name": "_symbol",
                        "nameLocation": "476:7:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 16176,
                        "src": "462:21:69",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 16164,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "462:6:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "440:44:69"
                  },
                  "returnParameters": {
                    "id": 16174,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "546:0:69"
                  },
                  "scope": 16228,
                  "src": "429:119:69",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16193,
                    "nodeType": "Block",
                    "src": "753:60:69",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16187,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16179,
                              "src": "769:7:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16188,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16181,
                              "src": "778:6:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16186,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 445,
                            "src": "763:5:69",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16189,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "763:22:69",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16190,
                        "nodeType": "ExpressionStatement",
                        "src": "763:22:69"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 16191,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "802:4:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 16185,
                        "id": 16192,
                        "nodeType": "Return",
                        "src": "795:11:69"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16177,
                    "nodeType": "StructuredDocumentation",
                    "src": "554:125:69",
                    "text": " @dev See {ERC20-_mint}.\n Requirements:\n - the caller must have the {MinterRole}."
                  },
                  "functionSelector": "40c10f19",
                  "id": 16194,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mint",
                  "nameLocation": "693:4:69",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16182,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16179,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "706:7:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 16194,
                        "src": "698:15:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16178,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "698:7:69",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16181,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "723:6:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 16194,
                        "src": "715:14:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16180,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "715:7:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "697:33:69"
                  },
                  "returnParameters": {
                    "id": 16185,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16184,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16194,
                        "src": "747:4:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 16183,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "747:4:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "746:6:69"
                  },
                  "scope": 16228,
                  "src": "684:129:69",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16210,
                    "nodeType": "Block",
                    "src": "888:60:69",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16204,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16196,
                              "src": "904:7:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16205,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16198,
                              "src": "913:6:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16203,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 517,
                            "src": "898:5:69",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16206,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "898:22:69",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16207,
                        "nodeType": "ExpressionStatement",
                        "src": "898:22:69"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 16208,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "937:4:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 16202,
                        "id": 16209,
                        "nodeType": "Return",
                        "src": "930:11:69"
                      }
                    ]
                  },
                  "functionSelector": "9dc29fac",
                  "id": 16211,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "burn",
                  "nameLocation": "828:4:69",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16199,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16196,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "841:7:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 16211,
                        "src": "833:15:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16195,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "833:7:69",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16198,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "858:6:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 16211,
                        "src": "850:14:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16197,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "850:7:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "832:33:69"
                  },
                  "returnParameters": {
                    "id": 16202,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16201,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16211,
                        "src": "882:4:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 16200,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "882:4:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "881:6:69"
                  },
                  "scope": 16228,
                  "src": "819:129:69",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16226,
                    "nodeType": "Block",
                    "src": "1057:44:69",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16221,
                              "name": "from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16213,
                              "src": "1077:4:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16222,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16215,
                              "src": "1083:2:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16223,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16217,
                              "src": "1087:6:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16220,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 389,
                            "src": "1067:9:69",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16224,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1067:27:69",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16225,
                        "nodeType": "ExpressionStatement",
                        "src": "1067:27:69"
                      }
                    ]
                  },
                  "functionSelector": "1c9c7903",
                  "id": 16227,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "masterTransfer",
                  "nameLocation": "963:14:69",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16218,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16213,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "995:4:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 16227,
                        "src": "987:12:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16212,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "987:7:69",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16215,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1017:2:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 16227,
                        "src": "1009:10:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16214,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1009:7:69",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16217,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1037:6:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 16227,
                        "src": "1029:14:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16216,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1029:7:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "977:72:69"
                  },
                  "returnParameters": {
                    "id": 16219,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1057:0:69"
                  },
                  "scope": 16228,
                  "src": "954:147:69",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                }
              ],
              "scope": 16229,
              "src": "377:726:69",
              "usedErrors": []
            }
          ],
          "src": "37:1067:69"
        },
        "id": 69
      },
      "contracts/test/ERC20Mintable.sol": {
        "ast": {
          "absolutePath": "contracts/test/ERC20Mintable.sol",
          "exportedSymbols": {
            "Context": [
              2413
            ],
            "ERC20": [
              585
            ],
            "ERC20Mintable": [
              16294
            ],
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ]
          },
          "id": 16295,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16230,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:70"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/ERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/ERC20.sol",
              "id": 16231,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16295,
              "sourceUnit": 586,
              "src": "61:55:70",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 16233,
                    "name": "ERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 585,
                    "src": "374:5:70"
                  },
                  "id": 16234,
                  "nodeType": "InheritanceSpecifier",
                  "src": "374:5:70"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 16232,
                "nodeType": "StructuredDocumentation",
                "src": "118:229:70",
                "text": " @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\n which have permission to mint (create) new tokens as they see fit.\n At construction, the deployer of the contract is the only minter."
              },
              "fullyImplemented": true,
              "id": 16294,
              "linearizedBaseContracts": [
                16294,
                585,
                688,
                663,
                2413
              ],
              "name": "ERC20Mintable",
              "nameLocation": "357:13:70",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 16245,
                    "nodeType": "Block",
                    "src": "464:2:70",
                    "statements": []
                  },
                  "id": 16246,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 16241,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16236,
                          "src": "448:5:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 16242,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16238,
                          "src": "455:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        }
                      ],
                      "id": 16243,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 16240,
                        "name": "ERC20",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 585,
                        "src": "442:5:70"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "442:21:70"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16239,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16236,
                        "mutability": "mutable",
                        "name": "_name",
                        "nameLocation": "412:5:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16246,
                        "src": "398:19:70",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 16235,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "398:6:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16238,
                        "mutability": "mutable",
                        "name": "_symbol",
                        "nameLocation": "433:7:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16246,
                        "src": "419:21:70",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 16237,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "419:6:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "397:44:70"
                  },
                  "returnParameters": {
                    "id": 16244,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "464:0:70"
                  },
                  "scope": 16294,
                  "src": "386:80:70",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16259,
                    "nodeType": "Block",
                    "src": "656:39:70",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16255,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16249,
                              "src": "672:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16256,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16251,
                              "src": "681:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16254,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 445,
                            "src": "666:5:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16257,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "666:22:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16258,
                        "nodeType": "ExpressionStatement",
                        "src": "666:22:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16247,
                    "nodeType": "StructuredDocumentation",
                    "src": "472:125:70",
                    "text": " @dev See {ERC20-_mint}.\n Requirements:\n - the caller must have the {MinterRole}."
                  },
                  "functionSelector": "40c10f19",
                  "id": 16260,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mint",
                  "nameLocation": "611:4:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16252,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16249,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "624:7:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16260,
                        "src": "616:15:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16248,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "616:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16251,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "641:6:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16260,
                        "src": "633:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16250,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "633:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "615:33:70"
                  },
                  "returnParameters": {
                    "id": 16253,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "656:0:70"
                  },
                  "scope": 16294,
                  "src": "602:93:70",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16276,
                    "nodeType": "Block",
                    "src": "770:60:70",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16270,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16262,
                              "src": "786:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16271,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16264,
                              "src": "795:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16269,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 517,
                            "src": "780:5:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16272,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "780:22:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16273,
                        "nodeType": "ExpressionStatement",
                        "src": "780:22:70"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 16274,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "819:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 16268,
                        "id": 16275,
                        "nodeType": "Return",
                        "src": "812:11:70"
                      }
                    ]
                  },
                  "functionSelector": "9dc29fac",
                  "id": 16277,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "burn",
                  "nameLocation": "710:4:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16265,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16262,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "723:7:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16277,
                        "src": "715:15:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16261,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "715:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16264,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "740:6:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16277,
                        "src": "732:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16263,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "732:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "714:33:70"
                  },
                  "returnParameters": {
                    "id": 16268,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16267,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16277,
                        "src": "764:4:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 16266,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "764:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "763:6:70"
                  },
                  "scope": 16294,
                  "src": "701:129:70",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16292,
                    "nodeType": "Block",
                    "src": "939:44:70",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16287,
                              "name": "from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16279,
                              "src": "959:4:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16288,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16281,
                              "src": "965:2:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16289,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16283,
                              "src": "969:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16286,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 389,
                            "src": "949:9:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16290,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "949:27:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16291,
                        "nodeType": "ExpressionStatement",
                        "src": "949:27:70"
                      }
                    ]
                  },
                  "functionSelector": "1c9c7903",
                  "id": 16293,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "masterTransfer",
                  "nameLocation": "845:14:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16284,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16279,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "877:4:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16293,
                        "src": "869:12:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16278,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "869:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16281,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "899:2:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16293,
                        "src": "891:10:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16280,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "891:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16283,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "919:6:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16293,
                        "src": "911:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16282,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "911:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "859:72:70"
                  },
                  "returnParameters": {
                    "id": 16285,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "939:0:70"
                  },
                  "scope": 16294,
                  "src": "836:147:70",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                }
              ],
              "scope": 16295,
              "src": "348:637:70",
              "usedErrors": []
            }
          ],
          "src": "37:949:70"
        },
        "id": 70
      },
      "contracts/test/ERC721Mintable.sol": {
        "ast": {
          "absolutePath": "contracts/test/ERC721Mintable.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "Context": [
              2413
            ],
            "ERC165": [
              3219
            ],
            "ERC721": [
              1933
            ],
            "ERC721Mintable": [
              16334
            ],
            "IERC165": [
              3433
            ],
            "IERC721": [
              2049
            ],
            "IERC721Metadata": [
              2094
            ],
            "IERC721Receiver": [
              2067
            ],
            "Strings": [
              2690
            ]
          },
          "id": 16335,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16296,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:71"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC721/ERC721.sol",
              "file": "@openzeppelin/contracts/token/ERC721/ERC721.sol",
              "id": 16297,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16335,
              "sourceUnit": 1934,
              "src": "61:57:71",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 16299,
                    "name": "ERC721",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1933,
                    "src": "205:6:71"
                  },
                  "id": 16300,
                  "nodeType": "InheritanceSpecifier",
                  "src": "205:6:71"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 16298,
                "nodeType": "StructuredDocumentation",
                "src": "120:57:71",
                "text": " @dev Extension of {ERC721} for Minting/Burning"
              },
              "fullyImplemented": true,
              "id": 16334,
              "linearizedBaseContracts": [
                16334,
                1933,
                2094,
                2049,
                3219,
                3433,
                2413
              ],
              "name": "ERC721Mintable",
              "nameLocation": "187:14:71",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 16307,
                    "nodeType": "Block",
                    "src": "257:2:71",
                    "statements": []
                  },
                  "id": 16308,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "hexValue": "45524320373231",
                          "id": 16303,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "string",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "239:9:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_stringliteral_652b7269ea17924fe6186defb3d6fd8ad2243a6f4c122cb93424996ab0c54e59",
                            "typeString": "literal_string \"ERC 721\""
                          },
                          "value": "ERC 721"
                        },
                        {
                          "hexValue": "4e4654",
                          "id": 16304,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "string",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "250:5:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_stringliteral_9c4138cd0a1311e4748f70d0fe3dc55f0f5f75e0f20db731225cbc3b8914016a",
                            "typeString": "literal_string \"NFT\""
                          },
                          "value": "NFT"
                        }
                      ],
                      "id": 16305,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 16302,
                        "name": "ERC721",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 1933,
                        "src": "232:6:71"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "232:24:71"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16301,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "229:2:71"
                  },
                  "returnParameters": {
                    "id": 16306,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "257:0:71"
                  },
                  "scope": 16334,
                  "src": "218:41:71",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16321,
                    "nodeType": "Block",
                    "src": "363:35:71",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16317,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16311,
                              "src": "379:2:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16318,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16313,
                              "src": "383:7:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16316,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1715,
                            "src": "373:5:71",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16319,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "373:18:71",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16320,
                        "nodeType": "ExpressionStatement",
                        "src": "373:18:71"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16309,
                    "nodeType": "StructuredDocumentation",
                    "src": "265:43:71",
                    "text": " @dev See {ERC721-_mint}."
                  },
                  "functionSelector": "40c10f19",
                  "id": 16322,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mint",
                  "nameLocation": "322:4:71",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16314,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16311,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "335:2:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 16322,
                        "src": "327:10:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16310,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "327:7:71",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16313,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "347:7:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 16322,
                        "src": "339:15:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16312,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "339:7:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "326:29:71"
                  },
                  "returnParameters": {
                    "id": 16315,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "363:0:71"
                  },
                  "scope": 16334,
                  "src": "313:85:71",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16332,
                    "nodeType": "Block",
                    "src": "490:31:71",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16329,
                              "name": "tokenId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16325,
                              "src": "506:7:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16328,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1766,
                            "src": "500:5:71",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 16330,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "500:14:71",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16331,
                        "nodeType": "ExpressionStatement",
                        "src": "500:14:71"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16323,
                    "nodeType": "StructuredDocumentation",
                    "src": "404:43:71",
                    "text": " @dev See {ERC721-_burn}."
                  },
                  "functionSelector": "42966c68",
                  "id": 16333,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "burn",
                  "nameLocation": "461:4:71",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16326,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16325,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "474:7:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 16333,
                        "src": "466:15:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16324,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "466:7:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "465:17:71"
                  },
                  "returnParameters": {
                    "id": 16327,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "490:0:71"
                  },
                  "scope": 16334,
                  "src": "452:69:71",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                }
              ],
              "scope": 16335,
              "src": "178:345:71",
              "usedErrors": []
            }
          ],
          "src": "37:487:71"
        },
        "id": 71
      },
      "contracts/test/PrizePoolHarness.sol": {
        "ast": {
          "absolutePath": "contracts/test/PrizePoolHarness.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "ERC165Checker": [
              3421
            ],
            "ExtendedSafeCastLib": [
              12433
            ],
            "ICompLike": [
              11027
            ],
            "IControlledToken": [
              11069
            ],
            "IERC165": [
              3433
            ],
            "IERC20": [
              663
            ],
            "IERC721": [
              2049
            ],
            "IERC721Receiver": [
              2067
            ],
            "IPrizePool": [
              11883
            ],
            "ITicket": [
              12213
            ],
            "IYieldSource": [
              4176
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "Ownable": [
              4086
            ],
            "PrizePool": [
              14875
            ],
            "PrizePoolHarness": [
              16512
            ],
            "ReentrancyGuard": [
              39
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              13599
            ],
            "YieldSourceStub": [
              17255
            ]
          },
          "id": 16513,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16336,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:72"
            },
            {
              "absolutePath": "contracts/prize-pool/PrizePool.sol",
              "file": "../prize-pool/PrizePool.sol",
              "id": 16337,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16513,
              "sourceUnit": 14876,
              "src": "61:37:72",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/test/YieldSourceStub.sol",
              "file": "./YieldSourceStub.sol",
              "id": 16338,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16513,
              "sourceUnit": 17256,
              "src": "99:31:72",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 16339,
                    "name": "PrizePool",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 14875,
                    "src": "161:9:72"
                  },
                  "id": 16340,
                  "nodeType": "InheritanceSpecifier",
                  "src": "161:9:72"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "fullyImplemented": true,
              "id": 16512,
              "linearizedBaseContracts": [
                16512,
                14875,
                2067,
                39,
                4086,
                11883
              ],
              "name": "PrizePoolHarness",
              "nameLocation": "141:16:72",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "functionSelector": "d18e81b3",
                  "id": 16342,
                  "mutability": "mutable",
                  "name": "currentTime",
                  "nameLocation": "192:11:72",
                  "nodeType": "VariableDeclaration",
                  "scope": 16512,
                  "src": "177:26:72",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 16341,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "177:7:72",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "functionSelector": "5a3f111c",
                  "id": 16345,
                  "mutability": "mutable",
                  "name": "stubYieldSource",
                  "nameLocation": "233:15:72",
                  "nodeType": "VariableDeclaration",
                  "scope": 16512,
                  "src": "210:38:72",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_YieldSourceStub_$17255",
                    "typeString": "contract YieldSourceStub"
                  },
                  "typeName": {
                    "id": 16344,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 16343,
                      "name": "YieldSourceStub",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 17255,
                      "src": "210:15:72"
                    },
                    "referencedDeclaration": 17255,
                    "src": "210:15:72",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_YieldSourceStub_$17255",
                      "typeString": "contract YieldSourceStub"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16360,
                    "nodeType": "Block",
                    "src": "335:51:72",
                    "statements": [
                      {
                        "expression": {
                          "id": 16358,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16356,
                            "name": "stubYieldSource",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16345,
                            "src": "345:15:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_YieldSourceStub_$17255",
                              "typeString": "contract YieldSourceStub"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16357,
                            "name": "_stubYieldSource",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16350,
                            "src": "363:16:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_YieldSourceStub_$17255",
                              "typeString": "contract YieldSourceStub"
                            }
                          },
                          "src": "345:34:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_YieldSourceStub_$17255",
                            "typeString": "contract YieldSourceStub"
                          }
                        },
                        "id": 16359,
                        "nodeType": "ExpressionStatement",
                        "src": "345:34:72"
                      }
                    ]
                  },
                  "id": 16361,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 16353,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16347,
                          "src": "327:6:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 16354,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 16352,
                        "name": "PrizePool",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 14875,
                        "src": "317:9:72"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "317:17:72"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16351,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16347,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "275:6:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 16361,
                        "src": "267:14:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16346,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "267:7:72",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16350,
                        "mutability": "mutable",
                        "name": "_stubYieldSource",
                        "nameLocation": "299:16:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 16361,
                        "src": "283:32:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_YieldSourceStub_$17255",
                          "typeString": "contract YieldSourceStub"
                        },
                        "typeName": {
                          "id": 16349,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16348,
                            "name": "YieldSourceStub",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 17255,
                            "src": "283:15:72"
                          },
                          "referencedDeclaration": 17255,
                          "src": "283:15:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_YieldSourceStub_$17255",
                            "typeString": "contract YieldSourceStub"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "266:50:72"
                  },
                  "returnParameters": {
                    "id": 16355,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "335:0:72"
                  },
                  "scope": 16512,
                  "src": "255:131:72",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16377,
                    "nodeType": "Block",
                    "src": "501:54:72",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16372,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16363,
                              "src": "517:3:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16373,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16365,
                              "src": "522:7:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 16374,
                              "name": "_controlledToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16368,
                              "src": "531:16:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$12213",
                                "typeString": "contract ITicket"
                              }
                            ],
                            "id": 16371,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14682,
                            "src": "511:5:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_contract$_ITicket_$12213_$returns$__$",
                              "typeString": "function (address,uint256,contract ITicket)"
                            }
                          },
                          "id": 16375,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "511:37:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16376,
                        "nodeType": "ExpressionStatement",
                        "src": "511:37:72"
                      }
                    ]
                  },
                  "functionSelector": "0d4d1513",
                  "id": 16378,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mint",
                  "nameLocation": "401:4:72",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16369,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16363,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "423:3:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 16378,
                        "src": "415:11:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16362,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "415:7:72",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16365,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "444:7:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 16378,
                        "src": "436:15:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16364,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "436:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16368,
                        "mutability": "mutable",
                        "name": "_controlledToken",
                        "nameLocation": "469:16:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 16378,
                        "src": "461:24:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$12213",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 16367,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16366,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12213,
                            "src": "461:7:72"
                          },
                          "referencedDeclaration": 12213,
                          "src": "461:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$12213",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "405:86:72"
                  },
                  "returnParameters": {
                    "id": 16370,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "501:0:72"
                  },
                  "scope": 16512,
                  "src": "392:163:72",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16387,
                    "nodeType": "Block",
                    "src": "606:36:72",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16384,
                              "name": "mintAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16380,
                              "src": "624:10:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16383,
                            "name": "_supply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              16487
                            ],
                            "referencedDeclaration": 16487,
                            "src": "616:7:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 16385,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "616:19:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16386,
                        "nodeType": "ExpressionStatement",
                        "src": "616:19:72"
                      }
                    ]
                  },
                  "functionSelector": "35403023",
                  "id": 16388,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supply",
                  "nameLocation": "570:6:72",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16381,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16380,
                        "mutability": "mutable",
                        "name": "mintAmount",
                        "nameLocation": "585:10:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 16388,
                        "src": "577:18:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16379,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "577:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "576:20:72"
                  },
                  "returnParameters": {
                    "id": 16382,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "606:0:72"
                  },
                  "scope": 16512,
                  "src": "561:81:72",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16397,
                    "nodeType": "Block",
                    "src": "695:38:72",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16394,
                              "name": "redeemAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16390,
                              "src": "713:12:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16393,
                            "name": "_redeem",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              16501
                            ],
                            "referencedDeclaration": 16501,
                            "src": "705:7:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) returns (uint256)"
                            }
                          },
                          "id": 16395,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "705:21:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 16396,
                        "nodeType": "ExpressionStatement",
                        "src": "705:21:72"
                      }
                    ]
                  },
                  "functionSelector": "db006a75",
                  "id": 16398,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "redeem",
                  "nameLocation": "657:6:72",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16391,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16390,
                        "mutability": "mutable",
                        "name": "redeemAmount",
                        "nameLocation": "672:12:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 16398,
                        "src": "664:20:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16389,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "664:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "663:22:72"
                  },
                  "returnParameters": {
                    "id": 16392,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "695:0:72"
                  },
                  "scope": 16512,
                  "src": "648:85:72",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16407,
                    "nodeType": "Block",
                    "src": "790:39:72",
                    "statements": [
                      {
                        "expression": {
                          "id": 16405,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16403,
                            "name": "currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16342,
                            "src": "800:11:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16404,
                            "name": "_nowTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16400,
                            "src": "814:8:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "800:22:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 16406,
                        "nodeType": "ExpressionStatement",
                        "src": "800:22:72"
                      }
                    ]
                  },
                  "functionSelector": "22f8e566",
                  "id": 16408,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setCurrentTime",
                  "nameLocation": "748:14:72",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16401,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16400,
                        "mutability": "mutable",
                        "name": "_nowTime",
                        "nameLocation": "771:8:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 16408,
                        "src": "763:16:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16399,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "763:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "762:18:72"
                  },
                  "returnParameters": {
                    "id": 16402,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "790:0:72"
                  },
                  "scope": 16512,
                  "src": "739:90:72",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    14839
                  ],
                  "body": {
                    "id": 16416,
                    "nodeType": "Block",
                    "src": "900:35:72",
                    "statements": [
                      {
                        "expression": {
                          "id": 16414,
                          "name": "currentTime",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16342,
                          "src": "917:11:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 16413,
                        "id": 16415,
                        "nodeType": "Return",
                        "src": "910:18:72"
                      }
                    ]
                  },
                  "id": 16417,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_currentTime",
                  "nameLocation": "844:12:72",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 16410,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "873:8:72"
                  },
                  "parameters": {
                    "id": 16409,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "856:2:72"
                  },
                  "returnParameters": {
                    "id": 16413,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16412,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16417,
                        "src": "891:7:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16411,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "891:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "890:9:72"
                  },
                  "scope": 16512,
                  "src": "835:100:72",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 16426,
                    "nodeType": "Block",
                    "src": "1004:44:72",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 16422,
                              "name": "super",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -25,
                              "src": "1021:5:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_super$_PrizePoolHarness_$16512_$",
                                "typeString": "type(contract super PrizePoolHarness)"
                              }
                            },
                            "id": 16423,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "_currentTime",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 14839,
                            "src": "1021:18:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 16424,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1021:20:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 16421,
                        "id": 16425,
                        "nodeType": "Return",
                        "src": "1014:27:72"
                      }
                    ]
                  },
                  "functionSelector": "b38f5b6d",
                  "id": 16427,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "internalCurrentTime",
                  "nameLocation": "950:19:72",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16418,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "969:2:72"
                  },
                  "returnParameters": {
                    "id": 16421,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16420,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16427,
                        "src": "995:7:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16419,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "995:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "994:9:72"
                  },
                  "scope": 16512,
                  "src": "941:107:72",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    14847
                  ],
                  "body": {
                    "id": 16440,
                    "nodeType": "Block",
                    "src": "1143:72:72",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16437,
                              "name": "_externalToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16429,
                              "src": "1193:14:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 16435,
                              "name": "stubYieldSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16345,
                              "src": "1160:15:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_YieldSourceStub_$17255",
                                "typeString": "contract YieldSourceStub"
                              }
                            },
                            "id": 16436,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "canAwardExternal",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 17254,
                            "src": "1160:32:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_bool_$",
                              "typeString": "function (address) view external returns (bool)"
                            }
                          },
                          "id": 16438,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1160:48:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 16434,
                        "id": 16439,
                        "nodeType": "Return",
                        "src": "1153:55:72"
                      }
                    ]
                  },
                  "id": 16441,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_canAwardExternal",
                  "nameLocation": "1063:17:72",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 16431,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1119:8:72"
                  },
                  "parameters": {
                    "id": 16430,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16429,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "1089:14:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 16441,
                        "src": "1081:22:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16428,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1081:7:72",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1080:24:72"
                  },
                  "returnParameters": {
                    "id": 16434,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16433,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16441,
                        "src": "1137:4:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 16432,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1137:4:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1136:6:72"
                  },
                  "scope": 16512,
                  "src": "1054:161:72",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14854
                  ],
                  "body": {
                    "id": 16454,
                    "nodeType": "Block",
                    "src": "1279:62:72",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 16449,
                                  "name": "stubYieldSource",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16345,
                                  "src": "1303:15:72",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_YieldSourceStub_$17255",
                                    "typeString": "contract YieldSourceStub"
                                  }
                                },
                                "id": 16450,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "depositToken",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 4151,
                                "src": "1303:28:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                                  "typeString": "function () view external returns (address)"
                                }
                              },
                              "id": 16451,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1303:30:72",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16448,
                            "name": "IERC20",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 663,
                            "src": "1296:6:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_IERC20_$663_$",
                              "typeString": "type(contract IERC20)"
                            }
                          },
                          "id": 16452,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1296:38:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "functionReturnParameters": 16447,
                        "id": 16453,
                        "nodeType": "Return",
                        "src": "1289:45:72"
                      }
                    ]
                  },
                  "id": 16455,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_token",
                  "nameLocation": "1230:6:72",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 16443,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1253:8:72"
                  },
                  "parameters": {
                    "id": 16442,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1236:2:72"
                  },
                  "returnParameters": {
                    "id": 16447,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16446,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16455,
                        "src": "1271:6:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 16445,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16444,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "1271:6:72"
                          },
                          "referencedDeclaration": 663,
                          "src": "1271:6:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1270:8:72"
                  },
                  "scope": 16512,
                  "src": "1221:120:72",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14860
                  ],
                  "body": {
                    "id": 16469,
                    "nodeType": "Block",
                    "src": "1403:69:72",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 16465,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "1459:4:72",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_PrizePoolHarness_$16512",
                                    "typeString": "contract PrizePoolHarness"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_PrizePoolHarness_$16512",
                                    "typeString": "contract PrizePoolHarness"
                                  }
                                ],
                                "id": 16464,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1451:7:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16463,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1451:7:72",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16466,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1451:13:72",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 16461,
                              "name": "stubYieldSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16345,
                              "src": "1420:15:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_YieldSourceStub_$17255",
                                "typeString": "contract YieldSourceStub"
                              }
                            },
                            "id": 16462,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOfToken",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4159,
                            "src": "1420:30:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) external returns (uint256)"
                            }
                          },
                          "id": 16467,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1420:45:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 16460,
                        "id": 16468,
                        "nodeType": "Return",
                        "src": "1413:52:72"
                      }
                    ]
                  },
                  "id": 16470,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_balance",
                  "nameLocation": "1356:8:72",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 16457,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1376:8:72"
                  },
                  "parameters": {
                    "id": 16456,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1364:2:72"
                  },
                  "returnParameters": {
                    "id": 16460,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16459,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16470,
                        "src": "1394:7:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16458,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1394:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1393:9:72"
                  },
                  "scope": 16512,
                  "src": "1347:125:72",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14866
                  ],
                  "body": {
                    "id": 16486,
                    "nodeType": "Block",
                    "src": "1533:73:72",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16479,
                              "name": "mintAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16472,
                              "src": "1573:10:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 16482,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "1593:4:72",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_PrizePoolHarness_$16512",
                                    "typeString": "contract PrizePoolHarness"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_PrizePoolHarness_$16512",
                                    "typeString": "contract PrizePoolHarness"
                                  }
                                ],
                                "id": 16481,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1585:7:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16480,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1585:7:72",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16483,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1585:13:72",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 16476,
                              "name": "stubYieldSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16345,
                              "src": "1543:15:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_YieldSourceStub_$17255",
                                "typeString": "contract YieldSourceStub"
                              }
                            },
                            "id": 16478,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "supplyTokenTo",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4167,
                            "src": "1543:29:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint256_$_t_address_$returns$__$",
                              "typeString": "function (uint256,address) external"
                            }
                          },
                          "id": 16484,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1543:56:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16485,
                        "nodeType": "ExpressionStatement",
                        "src": "1543:56:72"
                      }
                    ]
                  },
                  "id": 16487,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_supply",
                  "nameLocation": "1487:7:72",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 16474,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1524:8:72"
                  },
                  "parameters": {
                    "id": 16473,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16472,
                        "mutability": "mutable",
                        "name": "mintAmount",
                        "nameLocation": "1503:10:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 16487,
                        "src": "1495:18:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16471,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1495:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1494:20:72"
                  },
                  "returnParameters": {
                    "id": 16475,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1533:0:72"
                  },
                  "scope": 16512,
                  "src": "1478:128:72",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14874
                  ],
                  "body": {
                    "id": 16500,
                    "nodeType": "Block",
                    "src": "1687:65:72",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16497,
                              "name": "redeemAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16489,
                              "src": "1732:12:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 16495,
                              "name": "stubYieldSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16345,
                              "src": "1704:15:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_YieldSourceStub_$17255",
                                "typeString": "contract YieldSourceStub"
                              }
                            },
                            "id": 16496,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "redeemToken",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 4175,
                            "src": "1704:27:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) external returns (uint256)"
                            }
                          },
                          "id": 16498,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1704:41:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 16494,
                        "id": 16499,
                        "nodeType": "Return",
                        "src": "1697:48:72"
                      }
                    ]
                  },
                  "id": 16501,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_redeem",
                  "nameLocation": "1621:7:72",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 16491,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1660:8:72"
                  },
                  "parameters": {
                    "id": 16490,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16489,
                        "mutability": "mutable",
                        "name": "redeemAmount",
                        "nameLocation": "1637:12:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 16501,
                        "src": "1629:20:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16488,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1629:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1628:22:72"
                  },
                  "returnParameters": {
                    "id": 16494,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16493,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16501,
                        "src": "1678:7:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16492,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1678:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1677:9:72"
                  },
                  "scope": 16512,
                  "src": "1612:140:72",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 16510,
                    "nodeType": "Block",
                    "src": "1815:46:72",
                    "statements": [
                      {
                        "expression": {
                          "id": 16508,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16506,
                            "name": "_currentAwardBalance",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13875,
                            "src": "1825:20:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16507,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16503,
                            "src": "1848:6:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1825:29:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 16509,
                        "nodeType": "ExpressionStatement",
                        "src": "1825:29:72"
                      }
                    ]
                  },
                  "functionSelector": "84449464",
                  "id": 16511,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setCurrentAwardBalance",
                  "nameLocation": "1767:22:72",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16504,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16503,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1798:6:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 16511,
                        "src": "1790:14:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16502,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1790:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1789:16:72"
                  },
                  "returnParameters": {
                    "id": 16505,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1815:0:72"
                  },
                  "scope": 16512,
                  "src": "1758:103:72",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16513,
              "src": "132:1731:72",
              "usedErrors": []
            }
          ],
          "src": "37:1827:72"
        },
        "id": 72
      },
      "contracts/test/PrizeSplitHarness.sol": {
        "ast": {
          "absolutePath": "contracts/test/PrizeSplitHarness.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12433
            ],
            "ICompLike": [
              11027
            ],
            "IControlledToken": [
              11069
            ],
            "IERC20": [
              663
            ],
            "IPrizePool": [
              11883
            ],
            "IPrizeSplit": [
              11959
            ],
            "ITicket": [
              12213
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "Ownable": [
              4086
            ],
            "PrizeSplit": [
              15589
            ],
            "PrizeSplitHarness": [
              16576
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 16577,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16514,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:73"
            },
            {
              "absolutePath": "contracts/prize-strategy/PrizeSplit.sol",
              "file": "../prize-strategy/PrizeSplit.sol",
              "id": 16515,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16577,
              "sourceUnit": 15590,
              "src": "61:42:73",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/interfaces/IControlledToken.sol",
              "file": "../interfaces/IControlledToken.sol",
              "id": 16516,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16577,
              "sourceUnit": 11070,
              "src": "104:44:73",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 16517,
                    "name": "PrizeSplit",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 15589,
                    "src": "180:10:73"
                  },
                  "id": 16518,
                  "nodeType": "InheritanceSpecifier",
                  "src": "180:10:73"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "fullyImplemented": true,
              "id": 16576,
              "linearizedBaseContracts": [
                16576,
                15589,
                4086,
                11959
              ],
              "name": "PrizeSplitHarness",
              "nameLocation": "159:17:73",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 16526,
                    "nodeType": "Block",
                    "src": "241:2:73",
                    "statements": []
                  },
                  "id": 16527,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 16523,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16520,
                          "src": "233:6:73",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 16524,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 16522,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 4086,
                        "src": "225:7:73"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "225:15:73"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16521,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16520,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "217:6:73",
                        "nodeType": "VariableDeclaration",
                        "scope": 16527,
                        "src": "209:14:73",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16519,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "209:7:73",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "208:16:73"
                  },
                  "returnParameters": {
                    "id": 16525,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "241:0:73"
                  },
                  "scope": 16576,
                  "src": "197:46:73",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    15588
                  ],
                  "body": {
                    "id": 16546,
                    "nodeType": "Block",
                    "src": "331:85:73",
                    "statements": [
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 16536,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16529,
                              "src": "364:6:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16537,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16531,
                              "src": "372:6:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "arguments": [
                                    {
                                      "hexValue": "30",
                                      "id": 16541,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "405:1:73",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      }
                                    ],
                                    "id": 16540,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "397:7:73",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 16539,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "397:7:73",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 16542,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "397:10:73",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 16538,
                                "name": "IControlledToken",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11069,
                                "src": "380:16:73",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IControlledToken_$11069_$",
                                  "typeString": "type(contract IControlledToken)"
                                }
                              },
                              "id": 16543,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "380:28:73",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IControlledToken_$11069",
                                "typeString": "contract IControlledToken"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_contract$_IControlledToken_$11069",
                                "typeString": "contract IControlledToken"
                              }
                            ],
                            "id": 16535,
                            "name": "PrizeSplitAwarded",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11898,
                            "src": "346:17:73",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$_t_contract$_IControlledToken_$11069_$returns$__$",
                              "typeString": "function (address,uint256,contract IControlledToken)"
                            }
                          },
                          "id": 16544,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "346:63:73",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16545,
                        "nodeType": "EmitStatement",
                        "src": "341:68:73"
                      }
                    ]
                  },
                  "id": 16547,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_awardPrizeSplitAmount",
                  "nameLocation": "258:22:73",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 16533,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "322:8:73"
                  },
                  "parameters": {
                    "id": 16532,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16529,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "289:6:73",
                        "nodeType": "VariableDeclaration",
                        "scope": 16547,
                        "src": "281:14:73",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16528,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "281:7:73",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16531,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "305:6:73",
                        "nodeType": "VariableDeclaration",
                        "scope": 16547,
                        "src": "297:14:73",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16530,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "297:7:73",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "280:32:73"
                  },
                  "returnParameters": {
                    "id": 16534,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "331:0:73"
                  },
                  "scope": 16576,
                  "src": "249:167:73",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 16559,
                    "nodeType": "Block",
                    "src": "494:62:73",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16555,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16549,
                              "src": "534:6:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16556,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16551,
                              "src": "542:6:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16554,
                            "name": "_awardPrizeSplitAmount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              16547
                            ],
                            "referencedDeclaration": 16547,
                            "src": "511:22:73",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16557,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "511:38:73",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "functionReturnParameters": 16553,
                        "id": 16558,
                        "nodeType": "Return",
                        "src": "504:45:73"
                      }
                    ]
                  },
                  "functionSelector": "1898f91d",
                  "id": 16560,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "awardPrizeSplitAmount",
                  "nameLocation": "431:21:73",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16552,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16549,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "461:6:73",
                        "nodeType": "VariableDeclaration",
                        "scope": 16560,
                        "src": "453:14:73",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16548,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "453:7:73",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16551,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "477:6:73",
                        "nodeType": "VariableDeclaration",
                        "scope": 16560,
                        "src": "469:14:73",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16550,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "469:7:73",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "452:32:73"
                  },
                  "returnParameters": {
                    "id": 16553,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "494:0:73"
                  },
                  "scope": 16576,
                  "src": "422:134:73",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11941
                  ],
                  "body": {
                    "id": 16574,
                    "nodeType": "Block",
                    "src": "630:46:73",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 16570,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "666:1:73",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 16569,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "658:7:73",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16568,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "658:7:73",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16571,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "658:10:73",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16567,
                            "name": "IPrizePool",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11883,
                            "src": "647:10:73",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_IPrizePool_$11883_$",
                              "typeString": "type(contract IPrizePool)"
                            }
                          },
                          "id": 16572,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "647:22:73",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11883",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "functionReturnParameters": 16566,
                        "id": 16573,
                        "nodeType": "Return",
                        "src": "640:29:73"
                      }
                    ]
                  },
                  "functionSelector": "884bf67c",
                  "id": 16575,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizePool",
                  "nameLocation": "571:12:73",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 16562,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "600:8:73"
                  },
                  "parameters": {
                    "id": 16561,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "583:2:73"
                  },
                  "returnParameters": {
                    "id": 16566,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16565,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16575,
                        "src": "618:10:73",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$11883",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 16564,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16563,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11883,
                            "src": "618:10:73"
                          },
                          "referencedDeclaration": 11883,
                          "src": "618:10:73",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11883",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "617:12:73"
                  },
                  "scope": 16576,
                  "src": "562:114:73",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16577,
              "src": "150:528:73",
              "usedErrors": []
            }
          ],
          "src": "37:642:73"
        },
        "id": 73
      },
      "contracts/test/PrizeSplitStrategyHarness.sol": {
        "ast": {
          "absolutePath": "contracts/test/PrizeSplitStrategyHarness.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12433
            ],
            "ICompLike": [
              11027
            ],
            "IControlledToken": [
              11069
            ],
            "IERC20": [
              663
            ],
            "IPrizePool": [
              11883
            ],
            "IPrizeSplit": [
              11959
            ],
            "IStrategy": [
              12020
            ],
            "ITicket": [
              12213
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "Ownable": [
              4086
            ],
            "PrizeSplit": [
              15589
            ],
            "PrizeSplitStrategy": [
              15722
            ],
            "PrizeSplitStrategyHarness": [
              16608
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 16609,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16578,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:74"
            },
            {
              "absolutePath": "contracts/prize-strategy/PrizeSplitStrategy.sol",
              "file": "../prize-strategy/PrizeSplitStrategy.sol",
              "id": 16579,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16609,
              "sourceUnit": 15723,
              "src": "61:50:74",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 16580,
                    "name": "PrizeSplitStrategy",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 15722,
                    "src": "151:18:74"
                  },
                  "id": 16581,
                  "nodeType": "InheritanceSpecifier",
                  "src": "151:18:74"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "fullyImplemented": true,
              "id": 16608,
              "linearizedBaseContracts": [
                16608,
                15722,
                12020,
                15589,
                4086,
                11959
              ],
              "name": "PrizeSplitStrategyHarness",
              "nameLocation": "122:25:74",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 16593,
                    "nodeType": "Block",
                    "src": "266:2:74",
                    "statements": []
                  },
                  "id": 16594,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 16589,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16583,
                          "src": "246:6:74",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        {
                          "id": 16590,
                          "name": "_prizePool",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16586,
                          "src": "254:10:74",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11883",
                            "typeString": "contract IPrizePool"
                          }
                        }
                      ],
                      "id": 16591,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 16588,
                        "name": "PrizeSplitStrategy",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 15722,
                        "src": "227:18:74"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "227:38:74"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16587,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16583,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "196:6:74",
                        "nodeType": "VariableDeclaration",
                        "scope": 16594,
                        "src": "188:14:74",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16582,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "188:7:74",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16586,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "215:10:74",
                        "nodeType": "VariableDeclaration",
                        "scope": 16594,
                        "src": "204:21:74",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$11883",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 16585,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16584,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11883,
                            "src": "204:10:74"
                          },
                          "referencedDeclaration": 11883,
                          "src": "204:10:74",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11883",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "187:39:74"
                  },
                  "returnParameters": {
                    "id": 16592,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "266:0:74"
                  },
                  "scope": 16608,
                  "src": "176:92:74",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16606,
                    "nodeType": "Block",
                    "src": "346:62:74",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16602,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16596,
                              "src": "386:6:74",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16603,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16598,
                              "src": "394:6:74",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16601,
                            "name": "_awardPrizeSplitAmount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              15721
                            ],
                            "referencedDeclaration": 15721,
                            "src": "363:22:74",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16604,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "363:38:74",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "functionReturnParameters": 16600,
                        "id": 16605,
                        "nodeType": "Return",
                        "src": "356:45:74"
                      }
                    ]
                  },
                  "functionSelector": "1898f91d",
                  "id": 16607,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "awardPrizeSplitAmount",
                  "nameLocation": "283:21:74",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16599,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16596,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "313:6:74",
                        "nodeType": "VariableDeclaration",
                        "scope": 16607,
                        "src": "305:14:74",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16595,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "305:7:74",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16598,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "329:6:74",
                        "nodeType": "VariableDeclaration",
                        "scope": 16607,
                        "src": "321:14:74",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16597,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "321:7:74",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "304:32:74"
                  },
                  "returnParameters": {
                    "id": 16600,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "346:0:74"
                  },
                  "scope": 16608,
                  "src": "274:134:74",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16609,
              "src": "113:297:74",
              "usedErrors": []
            }
          ],
          "src": "37:374:74"
        },
        "id": 74
      },
      "contracts/test/RNGServiceMock.sol": {
        "ast": {
          "absolutePath": "contracts/test/RNGServiceMock.sol",
          "exportedSymbols": {
            "RNGInterface": [
              4142
            ],
            "RNGServiceMock": [
              16704
            ]
          },
          "id": 16705,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16610,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:75"
            },
            {
              "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "file": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "id": 16611,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16705,
              "sourceUnit": 4143,
              "src": "61:77:75",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 16612,
                    "name": "RNGInterface",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 4142,
                    "src": "167:12:75"
                  },
                  "id": 16613,
                  "nodeType": "InheritanceSpecifier",
                  "src": "167:12:75"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "fullyImplemented": true,
              "id": 16704,
              "linearizedBaseContracts": [
                16704,
                4142
              ],
              "name": "RNGServiceMock",
              "nameLocation": "149:14:75",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 16615,
                  "mutability": "mutable",
                  "name": "random",
                  "nameLocation": "203:6:75",
                  "nodeType": "VariableDeclaration",
                  "scope": 16704,
                  "src": "186:23:75",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 16614,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "186:7:75",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 16617,
                  "mutability": "mutable",
                  "name": "feeToken",
                  "nameLocation": "232:8:75",
                  "nodeType": "VariableDeclaration",
                  "scope": 16704,
                  "src": "215:25:75",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 16616,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "215:7:75",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 16619,
                  "mutability": "mutable",
                  "name": "requestFee",
                  "nameLocation": "263:10:75",
                  "nodeType": "VariableDeclaration",
                  "scope": 16704,
                  "src": "246:27:75",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 16618,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "246:7:75",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    4109
                  ],
                  "body": {
                    "id": 16627,
                    "nodeType": "Block",
                    "src": "358:25:75",
                    "statements": [
                      {
                        "expression": {
                          "hexValue": "31",
                          "id": 16625,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "375:1:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_1_by_1",
                            "typeString": "int_const 1"
                          },
                          "value": "1"
                        },
                        "functionReturnParameters": 16624,
                        "id": 16626,
                        "nodeType": "Return",
                        "src": "368:8:75"
                      }
                    ]
                  },
                  "functionSelector": "19c2b4c3",
                  "id": 16628,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRequestId",
                  "nameLocation": "289:16:75",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 16621,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "322:8:75"
                  },
                  "parameters": {
                    "id": 16620,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "305:2:75"
                  },
                  "returnParameters": {
                    "id": 16624,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16623,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "347:9:75",
                        "nodeType": "VariableDeclaration",
                        "scope": 16628,
                        "src": "340:16:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16622,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "340:6:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "339:18:75"
                  },
                  "scope": 16704,
                  "src": "280:103:75",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16643,
                    "nodeType": "Block",
                    "src": "461:71:75",
                    "statements": [
                      {
                        "expression": {
                          "id": 16637,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16635,
                            "name": "feeToken",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16617,
                            "src": "471:8:75",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16636,
                            "name": "_feeToken",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16630,
                            "src": "482:9:75",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "471:20:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 16638,
                        "nodeType": "ExpressionStatement",
                        "src": "471:20:75"
                      },
                      {
                        "expression": {
                          "id": 16641,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16639,
                            "name": "requestFee",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16619,
                            "src": "501:10:75",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16640,
                            "name": "_requestFee",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16632,
                            "src": "514:11:75",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "501:24:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 16642,
                        "nodeType": "ExpressionStatement",
                        "src": "501:24:75"
                      }
                    ]
                  },
                  "functionSelector": "de1760fd",
                  "id": 16644,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setRequestFee",
                  "nameLocation": "398:13:75",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16633,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16630,
                        "mutability": "mutable",
                        "name": "_feeToken",
                        "nameLocation": "420:9:75",
                        "nodeType": "VariableDeclaration",
                        "scope": 16644,
                        "src": "412:17:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16629,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "412:7:75",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16632,
                        "mutability": "mutable",
                        "name": "_requestFee",
                        "nameLocation": "439:11:75",
                        "nodeType": "VariableDeclaration",
                        "scope": 16644,
                        "src": "431:19:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16631,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "431:7:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "411:40:75"
                  },
                  "returnParameters": {
                    "id": 16634,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "461:0:75"
                  },
                  "scope": 16704,
                  "src": "389:143:75",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    4117
                  ],
                  "body": {
                    "id": 16657,
                    "nodeType": "Block",
                    "src": "725:46:75",
                    "statements": [
                      {
                        "expression": {
                          "components": [
                            {
                              "id": 16653,
                              "name": "feeToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16617,
                              "src": "743:8:75",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16654,
                              "name": "requestFee",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16619,
                              "src": "753:10:75",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "id": 16655,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "742:22:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_uint256_$",
                            "typeString": "tuple(address,uint256)"
                          }
                        },
                        "functionReturnParameters": 16652,
                        "id": 16656,
                        "nodeType": "Return",
                        "src": "735:29:75"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16645,
                    "nodeType": "StructuredDocumentation",
                    "src": "538:49:75",
                    "text": "@return _feeToken\n @return _requestFee"
                  },
                  "functionSelector": "0d37b537",
                  "id": 16658,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRequestFee",
                  "nameLocation": "601:13:75",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 16647,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "655:8:75"
                  },
                  "parameters": {
                    "id": 16646,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "614:2:75"
                  },
                  "returnParameters": {
                    "id": 16652,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16649,
                        "mutability": "mutable",
                        "name": "_feeToken",
                        "nameLocation": "689:9:75",
                        "nodeType": "VariableDeclaration",
                        "scope": 16658,
                        "src": "681:17:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16648,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "681:7:75",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16651,
                        "mutability": "mutable",
                        "name": "_requestFee",
                        "nameLocation": "708:11:75",
                        "nodeType": "VariableDeclaration",
                        "scope": 16658,
                        "src": "700:19:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16650,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "700:7:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "680:40:75"
                  },
                  "scope": 16704,
                  "src": "592:179:75",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16667,
                    "nodeType": "Block",
                    "src": "828:33:75",
                    "statements": [
                      {
                        "expression": {
                          "id": 16665,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16663,
                            "name": "random",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16615,
                            "src": "838:6:75",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16664,
                            "name": "_random",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16660,
                            "src": "847:7:75",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "838:16:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 16666,
                        "nodeType": "ExpressionStatement",
                        "src": "838:16:75"
                      }
                    ]
                  },
                  "functionSelector": "d6bfea28",
                  "id": 16668,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setRandomNumber",
                  "nameLocation": "786:15:75",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16661,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16660,
                        "mutability": "mutable",
                        "name": "_random",
                        "nameLocation": "810:7:75",
                        "nodeType": "VariableDeclaration",
                        "scope": 16668,
                        "src": "802:15:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16659,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "802:7:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "801:17:75"
                  },
                  "returnParameters": {
                    "id": 16662,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "828:0:75"
                  },
                  "scope": 16704,
                  "src": "777:84:75",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    4125
                  ],
                  "body": {
                    "id": 16680,
                    "nodeType": "Block",
                    "src": "946:30:75",
                    "statements": [
                      {
                        "expression": {
                          "components": [
                            {
                              "hexValue": "31",
                              "id": 16676,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "964:1:75",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            {
                              "hexValue": "31",
                              "id": 16677,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "967:1:75",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            }
                          ],
                          "id": 16678,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "963:6:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_rational_1_by_1_$_t_rational_1_by_1_$",
                            "typeString": "tuple(int_const 1,int_const 1)"
                          }
                        },
                        "functionReturnParameters": 16675,
                        "id": 16679,
                        "nodeType": "Return",
                        "src": "956:13:75"
                      }
                    ]
                  },
                  "functionSelector": "8678a7b2",
                  "id": 16681,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "requestRandomNumber",
                  "nameLocation": "876:19:75",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 16670,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "912:8:75"
                  },
                  "parameters": {
                    "id": 16669,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "895:2:75"
                  },
                  "returnParameters": {
                    "id": 16675,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16672,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16681,
                        "src": "930:6:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16671,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "930:6:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16674,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16681,
                        "src": "938:6:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16673,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "938:6:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "929:16:75"
                  },
                  "scope": 16704,
                  "src": "867:109:75",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    4133
                  ],
                  "body": {
                    "id": 16691,
                    "nodeType": "Block",
                    "src": "1055:28:75",
                    "statements": [
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 16689,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1072:4:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 16688,
                        "id": 16690,
                        "nodeType": "Return",
                        "src": "1065:11:75"
                      }
                    ]
                  },
                  "functionSelector": "3a19b9bc",
                  "id": 16692,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRequestComplete",
                  "nameLocation": "991:17:75",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 16685,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1031:8:75"
                  },
                  "parameters": {
                    "id": 16684,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16683,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16692,
                        "src": "1009:6:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16682,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1009:6:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1008:8:75"
                  },
                  "returnParameters": {
                    "id": 16688,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16687,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16692,
                        "src": "1049:4:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 16686,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1049:4:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1048:6:75"
                  },
                  "scope": 16704,
                  "src": "982:101:75",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    4141
                  ],
                  "body": {
                    "id": 16702,
                    "nodeType": "Block",
                    "src": "1160:30:75",
                    "statements": [
                      {
                        "expression": {
                          "id": 16700,
                          "name": "random",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16615,
                          "src": "1177:6:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 16699,
                        "id": 16701,
                        "nodeType": "Return",
                        "src": "1170:13:75"
                      }
                    ]
                  },
                  "functionSelector": "9d2a5f98",
                  "id": 16703,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "randomNumber",
                  "nameLocation": "1098:12:75",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 16696,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1133:8:75"
                  },
                  "parameters": {
                    "id": 16695,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16694,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16703,
                        "src": "1111:6:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16693,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1111:6:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1110:8:75"
                  },
                  "returnParameters": {
                    "id": 16699,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16698,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16703,
                        "src": "1151:7:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16697,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1151:7:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1150:9:75"
                  },
                  "scope": 16704,
                  "src": "1089:101:75",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16705,
              "src": "140:1052:75",
              "usedErrors": []
            }
          ],
          "src": "37:1156:75"
        },
        "id": 75
      },
      "contracts/test/ReserveHarness.sol": {
        "ast": {
          "absolutePath": "contracts/test/ReserveHarness.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "Context": [
              2413
            ],
            "ERC20": [
              585
            ],
            "ERC20Mintable": [
              16294
            ],
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ],
            "IReserve": [
              12006
            ],
            "Manageable": [
              3931
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "Ownable": [
              4086
            ],
            "Reserve": [
              9942
            ],
            "ReserveHarness": [
              16794
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 16795,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16706,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:76"
            },
            {
              "absolutePath": "contracts/Reserve.sol",
              "file": "../Reserve.sol",
              "id": 16707,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16795,
              "sourceUnit": 9943,
              "src": "61:24:76",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/test/ERC20Mintable.sol",
              "file": "./ERC20Mintable.sol",
              "id": 16708,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16795,
              "sourceUnit": 16295,
              "src": "86:29:76",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 16709,
                    "name": "Reserve",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 9942,
                    "src": "144:7:76"
                  },
                  "id": 16710,
                  "nodeType": "InheritanceSpecifier",
                  "src": "144:7:76"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "fullyImplemented": true,
              "id": 16794,
              "linearizedBaseContracts": [
                16794,
                9942,
                3931,
                4086,
                12006
              ],
              "name": "ReserveHarness",
              "nameLocation": "126:14:76",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 16722,
                    "nodeType": "Block",
                    "src": "225:2:76",
                    "statements": []
                  },
                  "id": 16723,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 16718,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16712,
                          "src": "209:6:76",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        {
                          "id": 16719,
                          "name": "_token",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16715,
                          "src": "217:6:76",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        }
                      ],
                      "id": 16720,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 16717,
                        "name": "Reserve",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 9942,
                        "src": "201:7:76"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "201:23:76"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16716,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16712,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "178:6:76",
                        "nodeType": "VariableDeclaration",
                        "scope": 16723,
                        "src": "170:14:76",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16711,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "170:7:76",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16715,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "193:6:76",
                        "nodeType": "VariableDeclaration",
                        "scope": 16723,
                        "src": "186:13:76",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 16714,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16713,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "186:6:76"
                          },
                          "referencedDeclaration": 663,
                          "src": "186:6:76",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "169:31:76"
                  },
                  "returnParameters": {
                    "id": 16721,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "225:0:76"
                  },
                  "scope": 16794,
                  "src": "158:69:76",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16767,
                    "nodeType": "Block",
                    "src": "321:232:76",
                    "statements": [
                      {
                        "body": {
                          "id": 16749,
                          "nodeType": "Block",
                          "src": "381:65:76",
                          "statements": [
                            {
                              "expression": {
                                "id": 16747,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 16741,
                                    "name": "reserveAccumulators",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9525,
                                    "src": "395:19:76",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                      "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                    }
                                  },
                                  "id": 16743,
                                  "indexExpression": {
                                    "id": 16742,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16731,
                                    "src": "415:1:76",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "395:22:76",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_storage",
                                    "typeString": "struct ObservationLib.Observation storage ref"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 16744,
                                    "name": "observations",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16727,
                                    "src": "420:12:76",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$12454_calldata_ptr_$dyn_calldata_ptr",
                                      "typeString": "struct ObservationLib.Observation calldata[] calldata"
                                    }
                                  },
                                  "id": 16746,
                                  "indexExpression": {
                                    "id": 16745,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16731,
                                    "src": "433:1:76",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "420:15:76",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_calldata_ptr",
                                    "typeString": "struct ObservationLib.Observation calldata"
                                  }
                                },
                                "src": "395:40:76",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_storage",
                                  "typeString": "struct ObservationLib.Observation storage ref"
                                }
                              },
                              "id": 16748,
                              "nodeType": "ExpressionStatement",
                              "src": "395:40:76"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 16737,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 16734,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16731,
                            "src": "351:1:76",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 16735,
                              "name": "observations",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16727,
                              "src": "355:12:76",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_calldata_ptr_$dyn_calldata_ptr",
                                "typeString": "struct ObservationLib.Observation calldata[] calldata"
                              }
                            },
                            "id": 16736,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "355:19:76",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "351:23:76",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 16750,
                        "initializationExpression": {
                          "assignments": [
                            16731
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 16731,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "344:1:76",
                              "nodeType": "VariableDeclaration",
                              "scope": 16750,
                              "src": "336:9:76",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 16730,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "336:7:76",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 16733,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 16732,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "348:1:76",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "336:13:76"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 16739,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "376:3:76",
                            "subExpression": {
                              "id": 16738,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16731,
                              "src": "376:1:76",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 16740,
                          "nodeType": "ExpressionStatement",
                          "src": "376:3:76"
                        },
                        "nodeType": "ForStatement",
                        "src": "331:115:76"
                      },
                      {
                        "expression": {
                          "id": 16757,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16751,
                            "name": "nextIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9514,
                            "src": "456:9:76",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 16754,
                                  "name": "observations",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16727,
                                  "src": "475:12:76",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_struct$_Observation_$12454_calldata_ptr_$dyn_calldata_ptr",
                                    "typeString": "struct ObservationLib.Observation calldata[] calldata"
                                  }
                                },
                                "id": 16755,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "475:19:76",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 16753,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "468:6:76",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint24_$",
                                "typeString": "type(uint24)"
                              },
                              "typeName": {
                                "id": 16752,
                                "name": "uint24",
                                "nodeType": "ElementaryTypeName",
                                "src": "468:6:76",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 16756,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "468:27:76",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "456:39:76",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 16758,
                        "nodeType": "ExpressionStatement",
                        "src": "456:39:76"
                      },
                      {
                        "expression": {
                          "id": 16765,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16759,
                            "name": "cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9516,
                            "src": "505:11:76",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 16762,
                                  "name": "observations",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16727,
                                  "src": "526:12:76",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_struct$_Observation_$12454_calldata_ptr_$dyn_calldata_ptr",
                                    "typeString": "struct ObservationLib.Observation calldata[] calldata"
                                  }
                                },
                                "id": 16763,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "526:19:76",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 16761,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "519:6:76",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint24_$",
                                "typeString": "type(uint24)"
                              },
                              "typeName": {
                                "id": 16760,
                                "name": "uint24",
                                "nodeType": "ElementaryTypeName",
                                "src": "519:6:76",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 16764,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "519:27:76",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "505:41:76",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 16766,
                        "nodeType": "ExpressionStatement",
                        "src": "505:41:76"
                      }
                    ]
                  },
                  "functionSelector": "1af082db",
                  "id": 16768,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setObservationsAt",
                  "nameLocation": "242:17:76",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16728,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16727,
                        "mutability": "mutable",
                        "name": "observations",
                        "nameLocation": "298:12:76",
                        "nodeType": "VariableDeclaration",
                        "scope": 16768,
                        "src": "260:50:76",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12454_calldata_ptr_$dyn_calldata_ptr",
                          "typeString": "struct ObservationLib.Observation[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 16725,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 16724,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12454,
                              "src": "260:26:76"
                            },
                            "referencedDeclaration": 12454,
                            "src": "260:26:76",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 16726,
                          "nodeType": "ArrayTypeName",
                          "src": "260:28:76",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$dyn_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "259:52:76"
                  },
                  "returnParameters": {
                    "id": 16729,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "321:0:76"
                  },
                  "scope": 16794,
                  "src": "233:320:76",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16792,
                    "nodeType": "Block",
                    "src": "633:98:76",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 16776,
                            "name": "_checkpoint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9874,
                            "src": "643:11:76",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                              "typeString": "function ()"
                            }
                          },
                          "id": 16777,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "643:13:76",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16778,
                        "nodeType": "ExpressionStatement",
                        "src": "643:13:76"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 16784,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "686:4:76",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_ReserveHarness_$16794",
                                    "typeString": "contract ReserveHarness"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_ReserveHarness_$16794",
                                    "typeString": "contract ReserveHarness"
                                  }
                                ],
                                "id": 16783,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "678:7:76",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16782,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "678:7:76",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16785,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "678:13:76",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16786,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16773,
                              "src": "693:7:76",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 16779,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16771,
                              "src": "666:6:76",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ERC20Mintable_$16294",
                                "typeString": "contract ERC20Mintable"
                              }
                            },
                            "id": 16781,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "mint",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16260,
                            "src": "666:11:76",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256) external"
                            }
                          },
                          "id": 16787,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "666:35:76",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16788,
                        "nodeType": "ExpressionStatement",
                        "src": "666:35:76"
                      },
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 16789,
                            "name": "_checkpoint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9874,
                            "src": "711:11:76",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                              "typeString": "function ()"
                            }
                          },
                          "id": 16790,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "711:13:76",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16791,
                        "nodeType": "ExpressionStatement",
                        "src": "711:13:76"
                      }
                    ]
                  },
                  "functionSelector": "6099b487",
                  "id": 16793,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "doubleCheckpoint",
                  "nameLocation": "568:16:76",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16774,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16771,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "599:6:76",
                        "nodeType": "VariableDeclaration",
                        "scope": 16793,
                        "src": "585:20:76",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ERC20Mintable_$16294",
                          "typeString": "contract ERC20Mintable"
                        },
                        "typeName": {
                          "id": 16770,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16769,
                            "name": "ERC20Mintable",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16294,
                            "src": "585:13:76"
                          },
                          "referencedDeclaration": 16294,
                          "src": "585:13:76",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ERC20Mintable_$16294",
                            "typeString": "contract ERC20Mintable"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16773,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "615:7:76",
                        "nodeType": "VariableDeclaration",
                        "scope": 16793,
                        "src": "607:15:76",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16772,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "607:7:76",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "584:39:76"
                  },
                  "returnParameters": {
                    "id": 16775,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "633:0:76"
                  },
                  "scope": 16794,
                  "src": "559:172:76",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16795,
              "src": "117:616:76",
              "usedErrors": []
            }
          ],
          "src": "37:697:76"
        },
        "id": 76
      },
      "contracts/test/TicketHarness.sol": {
        "ast": {
          "absolutePath": "contracts/test/TicketHarness.sol",
          "exportedSymbols": {
            "Address": [
              2391
            ],
            "Context": [
              2413
            ],
            "ControlledToken": [
              5288
            ],
            "Counters": [
              2487
            ],
            "ECDSA": [
              3057
            ],
            "EIP712": [
              3195
            ],
            "ERC20": [
              585
            ],
            "ERC20Permit": [
              857
            ],
            "ExtendedSafeCastLib": [
              12433
            ],
            "IControlledToken": [
              11069
            ],
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ],
            "IERC20Permit": [
              893
            ],
            "ITicket": [
              12213
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "SafeERC20": [
              1117
            ],
            "Ticket": [
              10941
            ],
            "TicketHarness": [
              16976
            ],
            "TwabLib": [
              13599
            ]
          },
          "id": 16977,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16796,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:77"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "file": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "id": 16797,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16977,
              "sourceUnit": 3827,
              "src": "61:57:77",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/Ticket.sol",
              "file": "../Ticket.sol",
              "id": 16798,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16977,
              "sourceUnit": 10942,
              "src": "120:23:77",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 16799,
                    "name": "Ticket",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 10941,
                    "src": "171:6:77"
                  },
                  "id": 16800,
                  "nodeType": "InheritanceSpecifier",
                  "src": "171:6:77"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "fullyImplemented": true,
              "id": 16976,
              "linearizedBaseContracts": [
                16976,
                10941,
                12213,
                5288,
                11069,
                857,
                3195,
                893,
                585,
                688,
                663,
                2413
              ],
              "name": "TicketHarness",
              "nameLocation": "154:13:77",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 16803,
                  "libraryName": {
                    "id": 16801,
                    "name": "SafeCast",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3826,
                    "src": "190:8:77"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "184:27:77",
                  "typeName": {
                    "id": 16802,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "203:7:77",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "body": {
                    "id": 16820,
                    "nodeType": "Block",
                    "src": "396:2:77",
                    "statements": []
                  },
                  "id": 16821,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 16814,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16805,
                          "src": "356:5:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 16815,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16807,
                          "src": "363:7:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 16816,
                          "name": "decimals_",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16809,
                          "src": "372:9:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        {
                          "id": 16817,
                          "name": "_controller",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16811,
                          "src": "383:11:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 16818,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 16813,
                        "name": "Ticket",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 10941,
                        "src": "349:6:77"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "349:46:77"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16812,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16805,
                        "mutability": "mutable",
                        "name": "_name",
                        "nameLocation": "252:5:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16821,
                        "src": "238:19:77",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 16804,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "238:6:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16807,
                        "mutability": "mutable",
                        "name": "_symbol",
                        "nameLocation": "281:7:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16821,
                        "src": "267:21:77",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 16806,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "267:6:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16809,
                        "mutability": "mutable",
                        "name": "decimals_",
                        "nameLocation": "304:9:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16821,
                        "src": "298:15:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 16808,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "298:5:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16811,
                        "mutability": "mutable",
                        "name": "_controller",
                        "nameLocation": "331:11:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16821,
                        "src": "323:19:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16810,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "323:7:77",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "228:120:77"
                  },
                  "returnParameters": {
                    "id": 16819,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "396:0:77"
                  },
                  "scope": 16976,
                  "src": "217:181:77",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16838,
                    "nodeType": "Block",
                    "src": "462:65:77",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16829,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16823,
                              "src": "478:3:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16830,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16825,
                              "src": "483:7:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16828,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 445,
                            "src": "472:5:77",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16831,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "472:19:77",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16832,
                        "nodeType": "ExpressionStatement",
                        "src": "472:19:77"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16834,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16823,
                              "src": "507:3:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16835,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16825,
                              "src": "512:7:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16833,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 517,
                            "src": "501:5:77",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16836,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "501:19:77",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16837,
                        "nodeType": "ExpressionStatement",
                        "src": "501:19:77"
                      }
                    ]
                  },
                  "functionSelector": "9d9e465c",
                  "id": 16839,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "flashLoan",
                  "nameLocation": "413:9:77",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16826,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16823,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "431:3:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16839,
                        "src": "423:11:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16822,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "423:7:77",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16825,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "444:7:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16839,
                        "src": "436:15:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16824,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "436:7:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "422:30:77"
                  },
                  "returnParameters": {
                    "id": 16827,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "462:0:77"
                  },
                  "scope": 16976,
                  "src": "404:123:77",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16851,
                    "nodeType": "Block",
                    "src": "588:38:77",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16847,
                              "name": "_from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16841,
                              "src": "604:5:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16848,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16843,
                              "src": "611:7:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16846,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 517,
                            "src": "598:5:77",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16849,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "598:21:77",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16850,
                        "nodeType": "ExpressionStatement",
                        "src": "598:21:77"
                      }
                    ]
                  },
                  "functionSelector": "9dc29fac",
                  "id": 16852,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "burn",
                  "nameLocation": "542:4:77",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16844,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16841,
                        "mutability": "mutable",
                        "name": "_from",
                        "nameLocation": "555:5:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16852,
                        "src": "547:13:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16840,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "547:7:77",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16843,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "570:7:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16852,
                        "src": "562:15:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16842,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "562:7:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "546:32:77"
                  },
                  "returnParameters": {
                    "id": 16845,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "588:0:77"
                  },
                  "scope": 16976,
                  "src": "533:93:77",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16864,
                    "nodeType": "Block",
                    "src": "685:36:77",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16860,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16854,
                              "src": "701:3:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16861,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16856,
                              "src": "706:7:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16859,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 445,
                            "src": "695:5:77",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16862,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "695:19:77",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16863,
                        "nodeType": "ExpressionStatement",
                        "src": "695:19:77"
                      }
                    ]
                  },
                  "functionSelector": "40c10f19",
                  "id": 16865,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mint",
                  "nameLocation": "641:4:77",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16857,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16854,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "654:3:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16865,
                        "src": "646:11:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16853,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "646:7:77",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16856,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "667:7:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16865,
                        "src": "659:15:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16855,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "659:7:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "645:30:77"
                  },
                  "returnParameters": {
                    "id": 16858,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "685:0:77"
                  },
                  "scope": 16976,
                  "src": "632:89:77",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16882,
                    "nodeType": "Block",
                    "src": "785:65:77",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16873,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16867,
                              "src": "801:3:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16874,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16869,
                              "src": "806:7:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16872,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 445,
                            "src": "795:5:77",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16875,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "795:19:77",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16876,
                        "nodeType": "ExpressionStatement",
                        "src": "795:19:77"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16878,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16867,
                              "src": "830:3:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16879,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16869,
                              "src": "835:7:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16877,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 445,
                            "src": "824:5:77",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16880,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "824:19:77",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16881,
                        "nodeType": "ExpressionStatement",
                        "src": "824:19:77"
                      }
                    ]
                  },
                  "functionSelector": "456f95e6",
                  "id": 16883,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mintTwice",
                  "nameLocation": "736:9:77",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16870,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16867,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "754:3:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16883,
                        "src": "746:11:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16866,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "746:7:77",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16869,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "767:7:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16883,
                        "src": "759:15:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16868,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "759:7:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "745:30:77"
                  },
                  "returnParameters": {
                    "id": 16871,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "785:0:77"
                  },
                  "scope": 16976,
                  "src": "727:123:77",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16899,
                    "nodeType": "Block",
                    "src": "1122:56:77",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16894,
                              "name": "_sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16886,
                              "src": "1142:7:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16895,
                              "name": "_recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16888,
                              "src": "1151:10:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16896,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16890,
                              "src": "1163:7:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16893,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 389,
                            "src": "1132:9:77",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16897,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1132:39:77",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16898,
                        "nodeType": "ExpressionStatement",
                        "src": "1132:39:77"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16884,
                    "nodeType": "StructuredDocumentation",
                    "src": "856:148:77",
                    "text": "@dev we need to use a different function name than `transfer`\n otherwise it collides with the `transfer` function of the `ERC20` contract"
                  },
                  "functionSelector": "a5f2a152",
                  "id": 16900,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferTo",
                  "nameLocation": "1018:10:77",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16891,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16886,
                        "mutability": "mutable",
                        "name": "_sender",
                        "nameLocation": "1046:7:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16900,
                        "src": "1038:15:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16885,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1038:7:77",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16888,
                        "mutability": "mutable",
                        "name": "_recipient",
                        "nameLocation": "1071:10:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16900,
                        "src": "1063:18:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16887,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1063:7:77",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16890,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "1099:7:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16900,
                        "src": "1091:15:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16889,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1091:7:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1028:84:77"
                  },
                  "returnParameters": {
                    "id": 16892,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1122:0:77"
                  },
                  "scope": 16976,
                  "src": "1009:169:77",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16932,
                    "nodeType": "Block",
                    "src": "1269:183:77",
                    "statements": [
                      {
                        "assignments": [
                          16913
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16913,
                            "mutability": "mutable",
                            "name": "account",
                            "nameLocation": "1303:7:77",
                            "nodeType": "VariableDeclaration",
                            "scope": 16932,
                            "src": "1279:31:77",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 16912,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 16911,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12882,
                                "src": "1279:15:77"
                              },
                              "referencedDeclaration": 12882,
                              "src": "1279:15:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16917,
                        "initialValue": {
                          "baseExpression": {
                            "id": 16914,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9973,
                            "src": "1313:9:77",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12882_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 16916,
                          "indexExpression": {
                            "id": 16915,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16902,
                            "src": "1323:5:77",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "1313:16:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12882_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1279:50:77"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16920,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16913,
                                "src": "1380:7:77",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 16921,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "twabs",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12881,
                              "src": "1380:13:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 16922,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16913,
                                "src": "1395:7:77",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 16923,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "details",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12876,
                              "src": "1395:15:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            },
                            {
                              "id": 16924,
                              "name": "_target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16904,
                              "src": "1412:7:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 16927,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "1428:5:77",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 16928,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "1428:15:77",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 16926,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1421:6:77",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 16925,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1421:6:77",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16929,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1421:23:77",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 16918,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13599,
                              "src": "1359:7:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 16919,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getBalanceAt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 13138,
                            "src": "1359:20:77",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32) view returns (uint256)"
                            }
                          },
                          "id": 16930,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1359:86:77",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 16908,
                        "id": 16931,
                        "nodeType": "Return",
                        "src": "1340:105:77"
                      }
                    ]
                  },
                  "functionSelector": "09daa017",
                  "id": 16933,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceTx",
                  "nameLocation": "1193:12:77",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16905,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16902,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "1214:5:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16933,
                        "src": "1206:13:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16901,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1206:7:77",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16904,
                        "mutability": "mutable",
                        "name": "_target",
                        "nameLocation": "1228:7:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16933,
                        "src": "1221:14:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16903,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1221:6:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1205:31:77"
                  },
                  "returnParameters": {
                    "id": 16908,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16907,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16933,
                        "src": "1260:7:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16906,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1260:7:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1259:9:77"
                  },
                  "scope": 16976,
                  "src": "1184:268:77",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16974,
                    "nodeType": "Block",
                    "src": "1600:318:77",
                    "statements": [
                      {
                        "assignments": [
                          16948
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16948,
                            "mutability": "mutable",
                            "name": "account",
                            "nameLocation": "1634:7:77",
                            "nodeType": "VariableDeclaration",
                            "scope": 16974,
                            "src": "1610:31:77",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 16947,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 16946,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12882,
                                "src": "1610:15:77"
                              },
                              "referencedDeclaration": 12882,
                              "src": "1610:15:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16952,
                        "initialValue": {
                          "baseExpression": {
                            "id": 16949,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9973,
                            "src": "1644:9:77",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12882_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 16951,
                          "indexExpression": {
                            "id": 16950,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16935,
                            "src": "1654:5:77",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "1644:16:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12882_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1610:50:77"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16955,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16948,
                                "src": "1740:7:77",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 16956,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "twabs",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12881,
                              "src": "1740:13:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 16957,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16948,
                                "src": "1771:7:77",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 16958,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "details",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12876,
                              "src": "1771:15:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 16961,
                                  "name": "_startTime",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16937,
                                  "src": "1811:10:77",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                ],
                                "id": 16960,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1804:6:77",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 16959,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1804:6:77",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16962,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1804:18:77",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 16965,
                                  "name": "_endTime",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16939,
                                  "src": "1847:8:77",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                ],
                                "id": 16964,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1840:6:77",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 16963,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1840:6:77",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16966,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1840:16:77",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 16969,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "1881:5:77",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 16970,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "1881:15:77",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 16968,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1874:6:77",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 16967,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1874:6:77",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16971,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1874:23:77",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 16953,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13599,
                              "src": "1690:7:77",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 16954,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getAverageBalanceBetween",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 13022,
                            "src": "1690:32:77",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32,uint32) view returns (uint256)"
                            }
                          },
                          "id": 16972,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1690:221:77",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 16943,
                        "id": 16973,
                        "nodeType": "Return",
                        "src": "1671:240:77"
                      }
                    ]
                  },
                  "functionSelector": "31c4293d",
                  "id": 16975,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalanceTx",
                  "nameLocation": "1467:19:77",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16940,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16935,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "1504:5:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16975,
                        "src": "1496:13:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16934,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1496:7:77",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16937,
                        "mutability": "mutable",
                        "name": "_startTime",
                        "nameLocation": "1526:10:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16975,
                        "src": "1519:17:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16936,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1519:6:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16939,
                        "mutability": "mutable",
                        "name": "_endTime",
                        "nameLocation": "1553:8:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16975,
                        "src": "1546:15:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16938,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1546:6:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1486:81:77"
                  },
                  "returnParameters": {
                    "id": 16943,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16942,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16975,
                        "src": "1591:7:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16941,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1591:7:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1590:9:77"
                  },
                  "scope": 16976,
                  "src": "1458:460:77",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16977,
              "src": "145:1775:77",
              "usedErrors": []
            }
          ],
          "src": "37:1884:77"
        },
        "id": 77
      },
      "contracts/test/TwabLibraryExposed.sol": {
        "ast": {
          "absolutePath": "contracts/test/TwabLibraryExposed.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12433
            ],
            "ObservationLib": [
              12592
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ],
            "TwabLib": [
              13599
            ],
            "TwabLibExposed": [
              17242
            ]
          },
          "id": 17243,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16978,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:78"
            },
            {
              "absolutePath": "contracts/libraries/TwabLib.sol",
              "file": "../libraries/TwabLib.sol",
              "id": 16979,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17243,
              "sourceUnit": 13600,
              "src": "61:34:78",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "contracts/libraries/RingBufferLib.sol",
              "file": "../libraries/RingBufferLib.sol",
              "id": 16980,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17243,
              "sourceUnit": 12850,
              "src": "96:40:78",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 16981,
                "nodeType": "StructuredDocumentation",
                "src": "138:89:78",
                "text": "@title TwabLibExposed contract to test TwabLib library\n @author PoolTogether Inc."
              },
              "fullyImplemented": true,
              "id": 17242,
              "linearizedBaseContracts": [
                17242
              ],
              "name": "TwabLibExposed",
              "nameLocation": "236:14:78",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": true,
                  "functionSelector": "8200d873",
                  "id": 16984,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "280:15:78",
                  "nodeType": "VariableDeclaration",
                  "scope": 17242,
                  "src": "257:49:78",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 16982,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "257:6:78",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "value": {
                    "hexValue": "3136373737323135",
                    "id": 16983,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "298:8:78",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_16777215_by_1",
                      "typeString": "int_const 16777215"
                    },
                    "value": "16777215"
                  },
                  "visibility": "public"
                },
                {
                  "id": 16990,
                  "libraryName": {
                    "id": 16985,
                    "name": "TwabLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 13599,
                    "src": "319:7:78"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "313:62:78",
                  "typeName": {
                    "baseType": {
                      "id": 16987,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 16986,
                        "name": "ObservationLib.Observation",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 12454,
                        "src": "331:26:78"
                      },
                      "referencedDeclaration": 12454,
                      "src": "331:26:78",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                        "typeString": "struct ObservationLib.Observation"
                      }
                    },
                    "id": 16989,
                    "length": {
                      "id": 16988,
                      "name": "MAX_CARDINALITY",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 16984,
                      "src": "358:15:78",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint24",
                        "typeString": "uint24"
                      }
                    },
                    "nodeType": "ArrayTypeName",
                    "src": "331:43:78",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                      "typeString": "struct ObservationLib.Observation[16777215]"
                    }
                  }
                },
                {
                  "constant": false,
                  "id": 16993,
                  "mutability": "mutable",
                  "name": "account",
                  "nameLocation": "397:7:78",
                  "nodeType": "VariableDeclaration",
                  "scope": 17242,
                  "src": "381:23:78",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Account_$12882_storage",
                    "typeString": "struct TwabLib.Account"
                  },
                  "typeName": {
                    "id": 16992,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 16991,
                      "name": "TwabLib.Account",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 12882,
                      "src": "381:15:78"
                    },
                    "referencedDeclaration": 12882,
                    "src": "381:15:78",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Account_$12882_storage_ptr",
                      "typeString": "struct TwabLib.Account"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "anonymous": false,
                  "id": 17003,
                  "name": "Updated",
                  "nameLocation": "417:7:78",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 17002,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16996,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "accountDetails",
                        "nameLocation": "457:14:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17003,
                        "src": "434:37:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 16995,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16994,
                            "name": "TwabLib.AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "434:22:78"
                          },
                          "referencedDeclaration": 12873,
                          "src": "434:22:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16999,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "508:4:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17003,
                        "src": "481:31:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 16998,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16997,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "481:26:78"
                          },
                          "referencedDeclaration": 12454,
                          "src": "481:26:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17001,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "isNew",
                        "nameLocation": "527:5:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17003,
                        "src": "522:10:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 17000,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "522:4:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "424:114:78"
                  },
                  "src": "411:128:78"
                },
                {
                  "body": {
                    "id": 17012,
                    "nodeType": "Block",
                    "src": "618:39:78",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 17009,
                            "name": "account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16993,
                            "src": "635:7:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12882_storage",
                              "typeString": "struct TwabLib.Account storage ref"
                            }
                          },
                          "id": 17010,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12876,
                          "src": "635:15:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "functionReturnParameters": 17008,
                        "id": 17011,
                        "nodeType": "Return",
                        "src": "628:22:78"
                      }
                    ]
                  },
                  "functionSelector": "565974d3",
                  "id": 17013,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "details",
                  "nameLocation": "554:7:78",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17004,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "561:2:78"
                  },
                  "returnParameters": {
                    "id": 17008,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17007,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17013,
                        "src": "587:29:78",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 17006,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17005,
                            "name": "TwabLib.AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "587:22:78"
                          },
                          "referencedDeclaration": 12873,
                          "src": "587:22:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "586:31:78"
                  },
                  "scope": 17242,
                  "src": "545:112:78",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17059,
                    "nodeType": "Block",
                    "src": "740:276:78",
                    "statements": [
                      {
                        "assignments": [
                          17025
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 17025,
                            "mutability": "mutable",
                            "name": "_twabs",
                            "nameLocation": "786:6:78",
                            "nodeType": "VariableDeclaration",
                            "scope": 17059,
                            "src": "750:42:78",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Observation_$12454_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct ObservationLib.Observation[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 17023,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 17022,
                                  "name": "ObservationLib.Observation",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 12454,
                                  "src": "750:26:78"
                                },
                                "referencedDeclaration": 12454,
                                "src": "750:26:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation"
                                }
                              },
                              "id": 17024,
                              "nodeType": "ArrayTypeName",
                              "src": "750:28:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$dyn_storage_ptr",
                                "typeString": "struct ObservationLib.Observation[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 17034,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 17030,
                                  "name": "account",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16993,
                                  "src": "841:7:78",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Account_$12882_storage",
                                    "typeString": "struct TwabLib.Account storage ref"
                                  }
                                },
                                "id": 17031,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "details",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12876,
                                "src": "841:15:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                  "typeString": "struct TwabLib.AccountDetails storage ref"
                                }
                              },
                              "id": 17032,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "cardinality",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12872,
                              "src": "841:27:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            ],
                            "id": 17029,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "795:32:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_Observation_$12454_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (struct ObservationLib.Observation memory[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 17027,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 17026,
                                  "name": "ObservationLib.Observation",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 12454,
                                  "src": "799:26:78"
                                },
                                "referencedDeclaration": 12454,
                                "src": "799:26:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation"
                                }
                              },
                              "id": 17028,
                              "nodeType": "ArrayTypeName",
                              "src": "799:28:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$dyn_storage_ptr",
                                "typeString": "struct ObservationLib.Observation[]"
                              }
                            }
                          },
                          "id": 17033,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "795:83:78",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "750:128:78"
                      },
                      {
                        "body": {
                          "id": 17055,
                          "nodeType": "Block",
                          "src": "933:53:78",
                          "statements": [
                            {
                              "expression": {
                                "id": 17053,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 17046,
                                    "name": "_twabs",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17025,
                                    "src": "947:6:78",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$12454_memory_ptr_$dyn_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory[] memory"
                                    }
                                  },
                                  "id": 17048,
                                  "indexExpression": {
                                    "id": 17047,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17036,
                                    "src": "954:1:78",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "947:9:78",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "expression": {
                                      "id": 17049,
                                      "name": "account",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 16993,
                                      "src": "959:7:78",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Account_$12882_storage",
                                        "typeString": "struct TwabLib.Account storage ref"
                                      }
                                    },
                                    "id": 17050,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "twabs",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12881,
                                    "src": "959:13:78",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                      "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                    }
                                  },
                                  "id": 17052,
                                  "indexExpression": {
                                    "id": 17051,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17036,
                                    "src": "973:1:78",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "959:16:78",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_storage",
                                    "typeString": "struct ObservationLib.Observation storage ref"
                                  }
                                },
                                "src": "947:28:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 17054,
                              "nodeType": "ExpressionStatement",
                              "src": "947:28:78"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 17042,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 17039,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17036,
                            "src": "909:1:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 17040,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17025,
                              "src": "913:6:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory[] memory"
                              }
                            },
                            "id": 17041,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "913:13:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "909:17:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 17056,
                        "initializationExpression": {
                          "assignments": [
                            17036
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 17036,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "902:1:78",
                              "nodeType": "VariableDeclaration",
                              "scope": 17056,
                              "src": "894:9:78",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 17035,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "894:7:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 17038,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 17037,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "906:1:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "894:13:78"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 17044,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "928:3:78",
                            "subExpression": {
                              "id": 17043,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17036,
                              "src": "928:1:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 17045,
                          "nodeType": "ExpressionStatement",
                          "src": "928:3:78"
                        },
                        "nodeType": "ForStatement",
                        "src": "889:97:78"
                      },
                      {
                        "expression": {
                          "id": 17057,
                          "name": "_twabs",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 17025,
                          "src": "1003:6:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory[] memory"
                          }
                        },
                        "functionReturnParameters": 17019,
                        "id": 17058,
                        "nodeType": "Return",
                        "src": "996:13:78"
                      }
                    ]
                  },
                  "functionSelector": "8ca0b771",
                  "id": 17060,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "twabs",
                  "nameLocation": "672:5:78",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17014,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "677:2:78"
                  },
                  "returnParameters": {
                    "id": 17019,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17018,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17060,
                        "src": "703:35:78",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12454_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct ObservationLib.Observation[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 17016,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 17015,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12454,
                              "src": "703:26:78"
                            },
                            "referencedDeclaration": 12454,
                            "src": "703:26:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 17017,
                          "nodeType": "ArrayTypeName",
                          "src": "703:28:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$dyn_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "702:37:78"
                  },
                  "scope": 17242,
                  "src": "663:353:78",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17102,
                    "nodeType": "Block",
                    "src": "1267:206:78",
                    "statements": [
                      {
                        "expression": {
                          "id": 17088,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 17075,
                                "name": "accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17068,
                                "src": "1278:14:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              {
                                "id": 17076,
                                "name": "twab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17071,
                                "src": "1294:4:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              {
                                "id": 17077,
                                "name": "isNew",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17073,
                                "src": "1300:5:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 17078,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "1277:29:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 17081,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16993,
                                "src": "1333:7:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              {
                                "arguments": [
                                  {
                                    "id": 17084,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17062,
                                    "src": "1350:7:78",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 17083,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1342:7:78",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint208_$",
                                    "typeString": "type(uint208)"
                                  },
                                  "typeName": {
                                    "id": 17082,
                                    "name": "uint208",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1342:7:78",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 17085,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1342:16:78",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              {
                                "id": 17086,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17064,
                                "src": "1360:12:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                },
                                {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 17079,
                                "name": "TwabLib",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13599,
                                "src": "1309:7:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                  "typeString": "type(library TwabLib)"
                                }
                              },
                              "id": 17080,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "increaseBalance",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12929,
                              "src": "1309:23:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Account_$12882_storage_ptr_$_t_uint208_$_t_uint32_$returns$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                                "typeString": "function (struct TwabLib.Account storage pointer,uint208,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                              }
                            },
                            "id": 17087,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "1309:64:78",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "src": "1277:96:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17089,
                        "nodeType": "ExpressionStatement",
                        "src": "1277:96:78"
                      },
                      {
                        "expression": {
                          "id": 17094,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 17090,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16993,
                              "src": "1383:7:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            "id": 17092,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "details",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12876,
                            "src": "1383:15:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                              "typeString": "struct TwabLib.AccountDetails storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 17093,
                            "name": "accountDetails",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17068,
                            "src": "1401:14:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails memory"
                            }
                          },
                          "src": "1383:32:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "id": 17095,
                        "nodeType": "ExpressionStatement",
                        "src": "1383:32:78"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 17097,
                              "name": "accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17068,
                              "src": "1438:14:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 17098,
                              "name": "twab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17071,
                              "src": "1454:4:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 17099,
                              "name": "isNew",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17073,
                              "src": "1460:5:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            ],
                            "id": 17096,
                            "name": "Updated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17003,
                            "src": "1430:7:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$returns$__$",
                              "typeString": "function (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "id": 17100,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1430:36:78",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17101,
                        "nodeType": "EmitStatement",
                        "src": "1425:41:78"
                      }
                    ]
                  },
                  "functionSelector": "ff429279",
                  "id": 17103,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "increaseBalance",
                  "nameLocation": "1031:15:78",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17065,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17062,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "1055:7:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17103,
                        "src": "1047:15:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17061,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1047:7:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17064,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "1071:12:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17103,
                        "src": "1064:19:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17063,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1064:6:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1046:38:78"
                  },
                  "returnParameters": {
                    "id": 17074,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17068,
                        "mutability": "mutable",
                        "name": "accountDetails",
                        "nameLocation": "1162:14:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17103,
                        "src": "1132:44:78",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 17067,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17066,
                            "name": "TwabLib.AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "1132:22:78"
                          },
                          "referencedDeclaration": 12873,
                          "src": "1132:22:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17071,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "1224:4:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17103,
                        "src": "1190:38:78",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 17070,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17069,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "1190:26:78"
                          },
                          "referencedDeclaration": 12454,
                          "src": "1190:26:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17073,
                        "mutability": "mutable",
                        "name": "isNew",
                        "nameLocation": "1247:5:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17103,
                        "src": "1242:10:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 17072,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1242:4:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1118:144:78"
                  },
                  "scope": 17242,
                  "src": "1022:451:78",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17148,
                    "nodeType": "Block",
                    "src": "1784:282:78",
                    "statements": [
                      {
                        "expression": {
                          "id": 17134,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 17120,
                                "name": "accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17113,
                                "src": "1795:14:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              {
                                "id": 17121,
                                "name": "twab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17116,
                                "src": "1811:4:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              {
                                "id": 17122,
                                "name": "isNew",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17118,
                                "src": "1817:5:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 17123,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "1794:29:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 17126,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16993,
                                "src": "1863:7:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              {
                                "arguments": [
                                  {
                                    "id": 17129,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17105,
                                    "src": "1892:7:78",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 17128,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1884:7:78",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint208_$",
                                    "typeString": "type(uint208)"
                                  },
                                  "typeName": {
                                    "id": 17127,
                                    "name": "uint208",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1884:7:78",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 17130,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1884:16:78",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              {
                                "id": 17131,
                                "name": "_revertMessage",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17107,
                                "src": "1914:14:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_string_memory_ptr",
                                  "typeString": "string memory"
                                }
                              },
                              {
                                "id": 17132,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17109,
                                "src": "1942:12:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                },
                                {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                },
                                {
                                  "typeIdentifier": "t_string_memory_ptr",
                                  "typeString": "string memory"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 17124,
                                "name": "TwabLib",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13599,
                                "src": "1826:7:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                  "typeString": "type(library TwabLib)"
                                }
                              },
                              "id": 17125,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "decreaseBalance",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12984,
                              "src": "1826:23:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Account_$12882_storage_ptr_$_t_uint208_$_t_string_memory_ptr_$_t_uint32_$returns$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                                "typeString": "function (struct TwabLib.Account storage pointer,uint208,string memory,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                              }
                            },
                            "id": 17133,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "1826:138:78",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "src": "1794:170:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17135,
                        "nodeType": "ExpressionStatement",
                        "src": "1794:170:78"
                      },
                      {
                        "expression": {
                          "id": 17140,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 17136,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16993,
                              "src": "1975:7:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12882_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            "id": 17138,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "details",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12876,
                            "src": "1975:15:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                              "typeString": "struct TwabLib.AccountDetails storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 17139,
                            "name": "accountDetails",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17113,
                            "src": "1993:14:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails memory"
                            }
                          },
                          "src": "1975:32:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "id": 17141,
                        "nodeType": "ExpressionStatement",
                        "src": "1975:32:78"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 17143,
                              "name": "accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17113,
                              "src": "2031:14:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 17144,
                              "name": "twab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17116,
                              "src": "2047:4:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 17145,
                              "name": "isNew",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17118,
                              "src": "2053:5:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            ],
                            "id": 17142,
                            "name": "Updated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17003,
                            "src": "2023:7:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$_t_bool_$returns$__$",
                              "typeString": "function (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "id": 17146,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2023:36:78",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17147,
                        "nodeType": "EmitStatement",
                        "src": "2018:41:78"
                      }
                    ]
                  },
                  "functionSelector": "7c2014c6",
                  "id": 17149,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decreaseBalance",
                  "nameLocation": "1488:15:78",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17110,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17105,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "1521:7:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17149,
                        "src": "1513:15:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17104,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1513:7:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17107,
                        "mutability": "mutable",
                        "name": "_revertMessage",
                        "nameLocation": "1552:14:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17149,
                        "src": "1538:28:78",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 17106,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1538:6:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17109,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "1583:12:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17149,
                        "src": "1576:19:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17108,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1576:6:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1503:98:78"
                  },
                  "returnParameters": {
                    "id": 17119,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17113,
                        "mutability": "mutable",
                        "name": "accountDetails",
                        "nameLocation": "1679:14:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17149,
                        "src": "1649:44:78",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 17112,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17111,
                            "name": "TwabLib.AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "1649:22:78"
                          },
                          "referencedDeclaration": 12873,
                          "src": "1649:22:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17116,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "1741:4:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17149,
                        "src": "1707:38:78",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 17115,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17114,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "1707:26:78"
                          },
                          "referencedDeclaration": 12454,
                          "src": "1707:26:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17118,
                        "mutability": "mutable",
                        "name": "isNew",
                        "nameLocation": "1764:5:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17149,
                        "src": "1759:10:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 17117,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1759:4:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1635:144:78"
                  },
                  "scope": 17242,
                  "src": "1479:587:78",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17171,
                    "nodeType": "Block",
                    "src": "2225:230:78",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 17162,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16993,
                                "src": "2304:7:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              "id": 17163,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "twabs",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12881,
                              "src": "2304:13:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 17164,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16993,
                                "src": "2335:7:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              "id": 17165,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "details",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12876,
                              "src": "2335:15:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            },
                            {
                              "id": 17166,
                              "name": "_startTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17151,
                              "src": "2368:10:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 17167,
                              "name": "_endTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17153,
                              "src": "2396:8:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 17168,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17155,
                              "src": "2422:12:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 17160,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13599,
                              "src": "2254:7:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 17161,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getAverageBalanceBetween",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 13022,
                            "src": "2254:32:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32,uint32) view returns (uint256)"
                            }
                          },
                          "id": 17169,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2254:194:78",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 17159,
                        "id": 17170,
                        "nodeType": "Return",
                        "src": "2235:213:78"
                      }
                    ]
                  },
                  "functionSelector": "6126af6e",
                  "id": 17172,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalanceBetween",
                  "nameLocation": "2081:24:78",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17156,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17151,
                        "mutability": "mutable",
                        "name": "_startTime",
                        "nameLocation": "2122:10:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17172,
                        "src": "2115:17:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17150,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2115:6:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17153,
                        "mutability": "mutable",
                        "name": "_endTime",
                        "nameLocation": "2149:8:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17172,
                        "src": "2142:15:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17152,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2142:6:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17155,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "2174:12:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17172,
                        "src": "2167:19:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17154,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2167:6:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2105:87:78"
                  },
                  "returnParameters": {
                    "id": 17159,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17158,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17172,
                        "src": "2216:7:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17157,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2216:7:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2215:9:78"
                  },
                  "scope": 17242,
                  "src": "2072:383:78",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17188,
                    "nodeType": "Block",
                    "src": "2588:74:78",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 17182,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16993,
                                "src": "2624:7:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              "id": 17183,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "twabs",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12881,
                              "src": "2624:13:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 17184,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16993,
                                "src": "2639:7:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              "id": 17185,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "details",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12876,
                              "src": "2639:15:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            ],
                            "expression": {
                              "id": 17180,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13599,
                              "src": "2605:7:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 17181,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "oldestTwab",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 13067,
                            "src": "2605:18:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 17186,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2605:50:78",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "functionReturnParameters": 17179,
                        "id": 17187,
                        "nodeType": "Return",
                        "src": "2598:57:78"
                      }
                    ]
                  },
                  "functionSelector": "63ee9476",
                  "id": 17189,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "oldestTwab",
                  "nameLocation": "2470:10:78",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17173,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2480:2:78"
                  },
                  "returnParameters": {
                    "id": 17179,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17175,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "2537:5:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17189,
                        "src": "2530:12:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 17174,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "2530:6:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17178,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "2578:4:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17189,
                        "src": "2544:38:78",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 17177,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17176,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "2544:26:78"
                          },
                          "referencedDeclaration": 12454,
                          "src": "2544:26:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2529:54:78"
                  },
                  "scope": 17242,
                  "src": "2461:201:78",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17205,
                    "nodeType": "Block",
                    "src": "2795:74:78",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 17199,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16993,
                                "src": "2831:7:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              "id": 17200,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "twabs",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12881,
                              "src": "2831:13:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 17201,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16993,
                                "src": "2846:7:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              "id": 17202,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "details",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12876,
                              "src": "2846:15:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            ],
                            "expression": {
                              "id": 17197,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13599,
                              "src": "2812:7:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 17198,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "newestTwab",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 13103,
                            "src": "2812:18:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 17203,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2812:50:78",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12454_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "functionReturnParameters": 17196,
                        "id": 17204,
                        "nodeType": "Return",
                        "src": "2805:57:78"
                      }
                    ]
                  },
                  "functionSelector": "3c4e9c1e",
                  "id": 17206,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "newestTwab",
                  "nameLocation": "2677:10:78",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17190,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2687:2:78"
                  },
                  "returnParameters": {
                    "id": 17196,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17192,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "2744:5:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17206,
                        "src": "2737:12:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 17191,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "2737:6:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17195,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "2785:4:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17206,
                        "src": "2751:38:78",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 17194,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17193,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "2751:26:78"
                          },
                          "referencedDeclaration": 12454,
                          "src": "2751:26:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2736:54:78"
                  },
                  "scope": 17242,
                  "src": "2668:201:78",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17225,
                    "nodeType": "Block",
                    "src": "2966:99:78",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 17217,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16993,
                                "src": "3004:7:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              "id": 17218,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "twabs",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12881,
                              "src": "3004:13:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 17219,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16993,
                                "src": "3019:7:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12882_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              "id": 17220,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "details",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12876,
                              "src": "3019:15:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            },
                            {
                              "id": 17221,
                              "name": "_target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17208,
                              "src": "3036:7:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 17222,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17210,
                              "src": "3045:12:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 17215,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13599,
                              "src": "2983:7:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 17216,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getBalanceAt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 13138,
                            "src": "2983:20:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12873_memory_ptr_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32) view returns (uint256)"
                            }
                          },
                          "id": 17223,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2983:75:78",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 17214,
                        "id": 17224,
                        "nodeType": "Return",
                        "src": "2976:82:78"
                      }
                    ]
                  },
                  "functionSelector": "c3c191fd",
                  "id": 17226,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceAt",
                  "nameLocation": "2884:12:78",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17211,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17208,
                        "mutability": "mutable",
                        "name": "_target",
                        "nameLocation": "2904:7:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17226,
                        "src": "2897:14:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17207,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2897:6:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17210,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "2920:12:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17226,
                        "src": "2913:19:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17209,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2913:6:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2896:37:78"
                  },
                  "returnParameters": {
                    "id": 17214,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17213,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17226,
                        "src": "2957:7:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17212,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2957:7:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2956:9:78"
                  },
                  "scope": 17242,
                  "src": "2875:190:78",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17240,
                    "nodeType": "Block",
                    "src": "3186:53:78",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17237,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17229,
                              "src": "3216:15:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            ],
                            "expression": {
                              "id": 17235,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13599,
                              "src": "3203:7:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13599_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 17236,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "push",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 13598,
                            "src": "3203:12:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_AccountDetails_$12873_memory_ptr_$returns$_t_struct$_AccountDetails_$12873_memory_ptr_$",
                              "typeString": "function (struct TwabLib.AccountDetails memory) pure returns (struct TwabLib.AccountDetails memory)"
                            }
                          },
                          "id": 17238,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3203:29:78",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                            "typeString": "struct TwabLib.AccountDetails memory"
                          }
                        },
                        "functionReturnParameters": 17234,
                        "id": 17239,
                        "nodeType": "Return",
                        "src": "3196:36:78"
                      }
                    ]
                  },
                  "functionSelector": "39095bcb",
                  "id": 17241,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "push",
                  "nameLocation": "3080:4:78",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17230,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17229,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "3115:15:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 17241,
                        "src": "3085:45:78",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 17228,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17227,
                            "name": "TwabLib.AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "3085:22:78"
                          },
                          "referencedDeclaration": 12873,
                          "src": "3085:22:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3084:47:78"
                  },
                  "returnParameters": {
                    "id": 17234,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17233,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17241,
                        "src": "3155:29:78",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12873_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 17232,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17231,
                            "name": "TwabLib.AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12873,
                            "src": "3155:22:78"
                          },
                          "referencedDeclaration": 12873,
                          "src": "3155:22:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12873_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3154:31:78"
                  },
                  "scope": 17242,
                  "src": "3071:168:78",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 17243,
              "src": "227:3014:78",
              "usedErrors": []
            }
          ],
          "src": "37:3205:78"
        },
        "id": 78
      },
      "contracts/test/YieldSourceStub.sol": {
        "ast": {
          "absolutePath": "contracts/test/YieldSourceStub.sol",
          "exportedSymbols": {
            "IYieldSource": [
              4176
            ],
            "YieldSourceStub": [
              17255
            ]
          },
          "id": 17256,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17244,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:79"
            },
            {
              "absolutePath": "@pooltogether/yield-source-interface/contracts/IYieldSource.sol",
              "file": "@pooltogether/yield-source-interface/contracts/IYieldSource.sol",
              "id": 17245,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17256,
              "sourceUnit": 4177,
              "src": "61:73:79",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 17246,
                    "name": "IYieldSource",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 4176,
                    "src": "165:12:79"
                  },
                  "id": 17247,
                  "nodeType": "InheritanceSpecifier",
                  "src": "165:12:79"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 17255,
              "linearizedBaseContracts": [
                17255,
                4176
              ],
              "name": "YieldSourceStub",
              "nameLocation": "146:15:79",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "functionSelector": "6a3fd4f9",
                  "id": 17254,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canAwardExternal",
                  "nameLocation": "193:16:79",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17250,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17249,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "218:14:79",
                        "nodeType": "VariableDeclaration",
                        "scope": 17254,
                        "src": "210:22:79",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17248,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "210:7:79",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "209:24:79"
                  },
                  "returnParameters": {
                    "id": 17253,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17252,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17254,
                        "src": "257:4:79",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 17251,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "257:4:79",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "256:6:79"
                  },
                  "scope": 17255,
                  "src": "184:79:79",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 17256,
              "src": "136:129:79",
              "usedErrors": []
            }
          ],
          "src": "37:229:79"
        },
        "id": 79
      },
      "contracts/test/libraries/DrawRingBufferLibHarness.sol": {
        "ast": {
          "absolutePath": "contracts/test/libraries/DrawRingBufferLibHarness.sol",
          "exportedSymbols": {
            "DrawRingBufferLib": [
              12354
            ],
            "DrawRingBufferLibHarness": [
              17331
            ],
            "RingBufferLib": [
              12849
            ]
          },
          "id": 17332,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17257,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:80"
            },
            {
              "absolutePath": "contracts/libraries/DrawRingBufferLib.sol",
              "file": "../../libraries/DrawRingBufferLib.sol",
              "id": 17258,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17332,
              "sourceUnit": 12355,
              "src": "61:47:80",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 17259,
                "nodeType": "StructuredDocumentation",
                "src": "110:91:80",
                "text": " @title  Expose the DrawRingBufferLib for unit tests\n @author PoolTogether Inc."
              },
              "fullyImplemented": true,
              "id": 17331,
              "linearizedBaseContracts": [
                17331
              ],
              "name": "DrawRingBufferLibHarness",
              "nameLocation": "211:24:80",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 17263,
                  "libraryName": {
                    "id": 17260,
                    "name": "DrawRingBufferLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12354,
                    "src": "248:17:80"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "242:53:80",
                  "typeName": {
                    "id": 17262,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 17261,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 12224,
                      "src": "270:24:80"
                    },
                    "referencedDeclaration": 12224,
                    "src": "270:24:80",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  }
                },
                {
                  "constant": true,
                  "functionSelector": "8200d873",
                  "id": 17266,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "324:15:80",
                  "nodeType": "VariableDeclaration",
                  "scope": 17331,
                  "src": "301:44:80",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint16",
                    "typeString": "uint16"
                  },
                  "typeName": {
                    "id": 17264,
                    "name": "uint16",
                    "nodeType": "ElementaryTypeName",
                    "src": "301:6:80",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint16",
                      "typeString": "uint16"
                    }
                  },
                  "value": {
                    "hexValue": "323536",
                    "id": 17265,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "342:3:80",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_256_by_1",
                      "typeString": "int_const 256"
                    },
                    "value": "256"
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "id": 17269,
                  "mutability": "mutable",
                  "name": "bufferMetadata",
                  "nameLocation": "385:14:80",
                  "nodeType": "VariableDeclaration",
                  "scope": 17331,
                  "src": "351:48:80",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                    "typeString": "struct DrawRingBufferLib.Buffer"
                  },
                  "typeName": {
                    "id": 17268,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 17267,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 12224,
                      "src": "351:24:80"
                    },
                    "referencedDeclaration": 12224,
                    "src": "351:24:80",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 17280,
                    "nodeType": "Block",
                    "src": "438:58:80",
                    "statements": [
                      {
                        "expression": {
                          "id": 17278,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 17274,
                              "name": "bufferMetadata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17269,
                              "src": "448:14:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            },
                            "id": 17276,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "cardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12223,
                            "src": "448:26:80",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 17277,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17271,
                            "src": "477:12:80",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "448:41:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 17279,
                        "nodeType": "ExpressionStatement",
                        "src": "448:41:80"
                      }
                    ]
                  },
                  "id": 17281,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17272,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17271,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "424:12:80",
                        "nodeType": "VariableDeclaration",
                        "scope": 17281,
                        "src": "418:18:80",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 17270,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "418:5:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "417:20:80"
                  },
                  "returnParameters": {
                    "id": 17273,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "438:0:80"
                  },
                  "scope": 17331,
                  "src": "406:90:80",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 17298,
                    "nodeType": "Block",
                    "src": "658:64:80",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17294,
                              "name": "_buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17284,
                              "src": "698:7:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            {
                              "id": 17295,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17286,
                              "src": "707:7:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 17292,
                              "name": "DrawRingBufferLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12354,
                              "src": "675:17:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_DrawRingBufferLib_$12354_$",
                                "typeString": "type(library DrawRingBufferLib)"
                              }
                            },
                            "id": 17293,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "push",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12290,
                            "src": "675:22:80",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_struct$_Buffer_$12224_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (struct DrawRingBufferLib.Buffer memory)"
                            }
                          },
                          "id": 17296,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "675:40:80",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer memory"
                          }
                        },
                        "functionReturnParameters": 17291,
                        "id": 17297,
                        "nodeType": "Return",
                        "src": "668:47:80"
                      }
                    ]
                  },
                  "functionSelector": "79ba59ff",
                  "id": 17299,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_push",
                  "nameLocation": "511:5:80",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17287,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17284,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "549:7:80",
                        "nodeType": "VariableDeclaration",
                        "scope": 17299,
                        "src": "517:39:80",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 17283,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17282,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12224,
                            "src": "517:24:80"
                          },
                          "referencedDeclaration": 12224,
                          "src": "517:24:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17286,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "565:7:80",
                        "nodeType": "VariableDeclaration",
                        "scope": 17299,
                        "src": "558:14:80",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17285,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "558:6:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "516:57:80"
                  },
                  "returnParameters": {
                    "id": 17291,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17290,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17299,
                        "src": "621:31:80",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 17289,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17288,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12224,
                            "src": "621:24:80"
                          },
                          "referencedDeclaration": 12224,
                          "src": "621:24:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "620:33:80"
                  },
                  "scope": 17331,
                  "src": "502:220:80",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17315,
                    "nodeType": "Block",
                    "src": "863:68:80",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17311,
                              "name": "_buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17302,
                              "src": "907:7:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            {
                              "id": 17312,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17304,
                              "src": "916:7:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 17309,
                              "name": "DrawRingBufferLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12354,
                              "src": "880:17:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_DrawRingBufferLib_$12354_$",
                                "typeString": "type(library DrawRingBufferLib)"
                              }
                            },
                            "id": 17310,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12353,
                            "src": "880:26:80",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$_t_uint32_$returns$_t_uint32_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                            }
                          },
                          "id": 17313,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "880:44:80",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 17308,
                        "id": 17314,
                        "nodeType": "Return",
                        "src": "873:51:80"
                      }
                    ]
                  },
                  "functionSelector": "11f807df",
                  "id": 17316,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getIndex",
                  "nameLocation": "737:9:80",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17305,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17302,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "779:7:80",
                        "nodeType": "VariableDeclaration",
                        "scope": 17316,
                        "src": "747:39:80",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 17301,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17300,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12224,
                            "src": "747:24:80"
                          },
                          "referencedDeclaration": 12224,
                          "src": "747:24:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17304,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "795:7:80",
                        "nodeType": "VariableDeclaration",
                        "scope": 17316,
                        "src": "788:14:80",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17303,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "788:6:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "746:57:80"
                  },
                  "returnParameters": {
                    "id": 17308,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17307,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17316,
                        "src": "851:6:80",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17306,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "851:6:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "850:8:80"
                  },
                  "scope": 17331,
                  "src": "728:203:80",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17329,
                    "nodeType": "Block",
                    "src": "1031:64:80",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17326,
                              "name": "_buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17319,
                              "src": "1080:7:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            ],
                            "expression": {
                              "id": 17324,
                              "name": "DrawRingBufferLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12354,
                              "src": "1048:17:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_DrawRingBufferLib_$12354_$",
                                "typeString": "type(library DrawRingBufferLib)"
                              }
                            },
                            "id": 17325,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "isInitialized",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12246,
                            "src": "1048:31:80",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$12224_memory_ptr_$returns$_t_bool_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory) pure returns (bool)"
                            }
                          },
                          "id": 17327,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1048:40:80",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 17323,
                        "id": 17328,
                        "nodeType": "Return",
                        "src": "1041:47:80"
                      }
                    ]
                  },
                  "functionSelector": "f3a94e61",
                  "id": 17330,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_isInitialized",
                  "nameLocation": "946:14:80",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17320,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17319,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "993:7:80",
                        "nodeType": "VariableDeclaration",
                        "scope": 17330,
                        "src": "961:39:80",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$12224_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 17318,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17317,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12224,
                            "src": "961:24:80"
                          },
                          "referencedDeclaration": 12224,
                          "src": "961:24:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$12224_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "960:41:80"
                  },
                  "returnParameters": {
                    "id": 17323,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17322,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17330,
                        "src": "1025:4:80",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 17321,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1025:4:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1024:6:80"
                  },
                  "scope": 17331,
                  "src": "937:158:80",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 17332,
              "src": "202:895:80",
              "usedErrors": []
            }
          ],
          "src": "37:1061:80"
        },
        "id": 80
      },
      "contracts/test/libraries/ExtendedSafeCastLibHarness.sol": {
        "ast": {
          "absolutePath": "contracts/test/libraries/ExtendedSafeCastLibHarness.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12433
            ],
            "ExtendedSafeCastLibHarness": [
              17374
            ]
          },
          "id": 17375,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17333,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:81"
            },
            {
              "absolutePath": "contracts/libraries/ExtendedSafeCastLib.sol",
              "file": "../../libraries/ExtendedSafeCastLib.sol",
              "id": 17334,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17375,
              "sourceUnit": 12434,
              "src": "61:49:81",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "fullyImplemented": true,
              "id": 17374,
              "linearizedBaseContracts": [
                17374
              ],
              "name": "ExtendedSafeCastLibHarness",
              "nameLocation": "121:26:81",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 17337,
                  "libraryName": {
                    "id": 17335,
                    "name": "ExtendedSafeCastLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12433,
                    "src": "160:19:81"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "154:38:81",
                  "typeName": {
                    "id": 17336,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "184:7:81",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "body": {
                    "id": 17348,
                    "nodeType": "Block",
                    "src": "264:41:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 17344,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17339,
                              "src": "281:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 17345,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toUint104",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12382,
                            "src": "281:15:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint104_$bound_to$_t_uint256_$",
                              "typeString": "function (uint256) pure returns (uint104)"
                            }
                          },
                          "id": 17346,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "281:17:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint104",
                            "typeString": "uint104"
                          }
                        },
                        "functionReturnParameters": 17343,
                        "id": 17347,
                        "nodeType": "Return",
                        "src": "274:24:81"
                      }
                    ]
                  },
                  "functionSelector": "83983838",
                  "id": 17349,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint104",
                  "nameLocation": "207:9:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17340,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17339,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "225:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17349,
                        "src": "217:13:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17338,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "217:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "216:15:81"
                  },
                  "returnParameters": {
                    "id": 17343,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17342,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17349,
                        "src": "255:7:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint104",
                          "typeString": "uint104"
                        },
                        "typeName": {
                          "id": 17341,
                          "name": "uint104",
                          "nodeType": "ElementaryTypeName",
                          "src": "255:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint104",
                            "typeString": "uint104"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "254:9:81"
                  },
                  "scope": 17374,
                  "src": "198:107:81",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17360,
                    "nodeType": "Block",
                    "src": "377:41:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 17356,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17351,
                              "src": "394:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 17357,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toUint208",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12407,
                            "src": "394:15:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint208_$bound_to$_t_uint256_$",
                              "typeString": "function (uint256) pure returns (uint208)"
                            }
                          },
                          "id": 17358,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "394:17:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "functionReturnParameters": 17355,
                        "id": 17359,
                        "nodeType": "Return",
                        "src": "387:24:81"
                      }
                    ]
                  },
                  "functionSelector": "bb33fe08",
                  "id": 17361,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint208",
                  "nameLocation": "320:9:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17352,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17351,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "338:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17361,
                        "src": "330:13:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17350,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "330:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "329:15:81"
                  },
                  "returnParameters": {
                    "id": 17355,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17354,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17361,
                        "src": "368:7:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint208",
                          "typeString": "uint208"
                        },
                        "typeName": {
                          "id": 17353,
                          "name": "uint208",
                          "nodeType": "ElementaryTypeName",
                          "src": "368:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "367:9:81"
                  },
                  "scope": 17374,
                  "src": "311:107:81",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17372,
                    "nodeType": "Block",
                    "src": "490:41:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 17368,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17363,
                              "src": "507:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 17369,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toUint224",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12432,
                            "src": "507:15:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint224_$bound_to$_t_uint256_$",
                              "typeString": "function (uint256) pure returns (uint224)"
                            }
                          },
                          "id": 17370,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "507:17:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 17367,
                        "id": 17371,
                        "nodeType": "Return",
                        "src": "500:24:81"
                      }
                    ]
                  },
                  "functionSelector": "5bb79860",
                  "id": 17373,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint224",
                  "nameLocation": "433:9:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17364,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17363,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "451:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17373,
                        "src": "443:13:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17362,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "443:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "442:15:81"
                  },
                  "returnParameters": {
                    "id": 17367,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17366,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17373,
                        "src": "481:7:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 17365,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "481:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "480:9:81"
                  },
                  "scope": 17374,
                  "src": "424:107:81",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 17375,
              "src": "112:421:81",
              "usedErrors": []
            }
          ],
          "src": "37:497:81"
        },
        "id": 81
      },
      "contracts/test/libraries/ObservationLibHarness.sol": {
        "ast": {
          "absolutePath": "contracts/test/libraries/ObservationLibHarness.sol",
          "exportedSymbols": {
            "ObservationLib": [
              12592
            ],
            "ObservationLibHarness": [
              17447
            ],
            "OverflowSafeComparatorLib": [
              12764
            ],
            "RingBufferLib": [
              12849
            ],
            "SafeCast": [
              3826
            ]
          },
          "id": 17448,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17376,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:82"
            },
            {
              "absolutePath": "contracts/libraries/ObservationLib.sol",
              "file": "../../libraries/ObservationLib.sol",
              "id": 17377,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17448,
              "sourceUnit": 12593,
              "src": "61:44:82",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 17378,
                "nodeType": "StructuredDocumentation",
                "src": "107:178:82",
                "text": "@title Time-Weighted Average Balance Library\n @notice This library allows you to efficiently track a user's historic balance.  You can get a\n @author PoolTogether Inc."
              },
              "fullyImplemented": true,
              "id": 17447,
              "linearizedBaseContracts": [
                17447
              ],
              "name": "ObservationLibHarness",
              "nameLocation": "294:21:82",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": true,
                  "documentation": {
                    "id": 17379,
                    "nodeType": "StructuredDocumentation",
                    "src": "322:46:82",
                    "text": "@notice The maximum number of twab entries"
                  },
                  "functionSelector": "8200d873",
                  "id": 17382,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "396:15:82",
                  "nodeType": "VariableDeclaration",
                  "scope": 17447,
                  "src": "373:49:82",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 17380,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "373:6:82",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "value": {
                    "hexValue": "3136373737323135",
                    "id": 17381,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "414:8:82",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_16777215_by_1",
                      "typeString": "int_const 16777215"
                    },
                    "value": "16777215"
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "id": 17387,
                  "mutability": "mutable",
                  "name": "observations",
                  "nameLocation": "482:12:82",
                  "nodeType": "VariableDeclaration",
                  "scope": 17447,
                  "src": "438:56:82",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                    "typeString": "struct ObservationLib.Observation[16777215]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 17384,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 17383,
                        "name": "ObservationLib.Observation",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 12454,
                        "src": "438:26:82"
                      },
                      "referencedDeclaration": 12454,
                      "src": "438:26:82",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                        "typeString": "struct ObservationLib.Observation"
                      }
                    },
                    "id": 17386,
                    "length": {
                      "id": 17385,
                      "name": "MAX_CARDINALITY",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 17382,
                      "src": "465:15:82",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint24",
                        "typeString": "uint24"
                      }
                    },
                    "nodeType": "ArrayTypeName",
                    "src": "438:43:82",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr",
                      "typeString": "struct ObservationLib.Observation[16777215]"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 17415,
                    "nodeType": "Block",
                    "src": "588:126:82",
                    "statements": [
                      {
                        "body": {
                          "id": 17413,
                          "nodeType": "Block",
                          "src": "649:59:82",
                          "statements": [
                            {
                              "expression": {
                                "id": 17411,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 17405,
                                    "name": "observations",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17387,
                                    "src": "663:12:82",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                      "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                    }
                                  },
                                  "id": 17407,
                                  "indexExpression": {
                                    "id": 17406,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17395,
                                    "src": "676:1:82",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "663:15:82",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_storage",
                                    "typeString": "struct ObservationLib.Observation storage ref"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 17408,
                                    "name": "_observations",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17391,
                                    "src": "681:13:82",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$12454_calldata_ptr_$dyn_calldata_ptr",
                                      "typeString": "struct ObservationLib.Observation calldata[] calldata"
                                    }
                                  },
                                  "id": 17410,
                                  "indexExpression": {
                                    "id": 17409,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17395,
                                    "src": "695:1:82",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "681:16:82",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12454_calldata_ptr",
                                    "typeString": "struct ObservationLib.Observation calldata"
                                  }
                                },
                                "src": "663:34:82",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12454_storage",
                                  "typeString": "struct ObservationLib.Observation storage ref"
                                }
                              },
                              "id": 17412,
                              "nodeType": "ExpressionStatement",
                              "src": "663:34:82"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 17401,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 17398,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17395,
                            "src": "618:1:82",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 17399,
                              "name": "_observations",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17391,
                              "src": "622:13:82",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_calldata_ptr_$dyn_calldata_ptr",
                                "typeString": "struct ObservationLib.Observation calldata[] calldata"
                              }
                            },
                            "id": 17400,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "622:20:82",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "618:24:82",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 17414,
                        "initializationExpression": {
                          "assignments": [
                            17395
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 17395,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "611:1:82",
                              "nodeType": "VariableDeclaration",
                              "scope": 17414,
                              "src": "603:9:82",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 17394,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "603:7:82",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 17397,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 17396,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "615:1:82",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "603:13:82"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 17403,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "644:3:82",
                            "subExpression": {
                              "id": 17402,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17395,
                              "src": "644:1:82",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 17404,
                          "nodeType": "ExpressionStatement",
                          "src": "644:3:82"
                        },
                        "nodeType": "ForStatement",
                        "src": "598:110:82"
                      }
                    ]
                  },
                  "functionSelector": "efd91145",
                  "id": 17416,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setObservations",
                  "nameLocation": "510:15:82",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17392,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17391,
                        "mutability": "mutable",
                        "name": "_observations",
                        "nameLocation": "564:13:82",
                        "nodeType": "VariableDeclaration",
                        "scope": 17416,
                        "src": "526:51:82",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12454_calldata_ptr_$dyn_calldata_ptr",
                          "typeString": "struct ObservationLib.Observation[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 17389,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 17388,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12454,
                              "src": "526:26:82"
                            },
                            "referencedDeclaration": 12454,
                            "src": "526:26:82",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 17390,
                          "nodeType": "ArrayTypeName",
                          "src": "526:28:82",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$dyn_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "525:53:82"
                  },
                  "returnParameters": {
                    "id": 17393,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "588:0:82"
                  },
                  "scope": 17447,
                  "src": "501:213:82",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17445,
                    "nodeType": "Block",
                    "src": "1073:261:82",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17437,
                              "name": "observations",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17387,
                              "src": "1147:12:82",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "id": 17438,
                              "name": "_observationIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17418,
                              "src": "1177:17:82",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 17439,
                              "name": "_oldestObservationIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17420,
                              "src": "1212:23:82",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 17440,
                              "name": "_target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17422,
                              "src": "1253:7:82",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 17441,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17424,
                              "src": "1278:12:82",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 17442,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17426,
                              "src": "1308:5:82",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12454_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 17435,
                              "name": "ObservationLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12592,
                              "src": "1102:14:82",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ObservationLib_$12592_$",
                                "typeString": "type(library ObservationLib)"
                              }
                            },
                            "id": 17436,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "binarySearch",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12591,
                            "src": "1102:27:82",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12454_storage_$16777215_storage_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint24_$_t_uint32_$returns$_t_struct$_Observation_$12454_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,uint24,uint24,uint32,uint24,uint32) view returns (struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 17443,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1102:225:82",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_Observation_$12454_memory_ptr_$_t_struct$_Observation_$12454_memory_ptr_$",
                            "typeString": "tuple(struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                          }
                        },
                        "functionReturnParameters": 17434,
                        "id": 17444,
                        "nodeType": "Return",
                        "src": "1083:244:82"
                      }
                    ]
                  },
                  "functionSelector": "d1f18b6b",
                  "id": 17446,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "binarySearch",
                  "nameLocation": "729:12:82",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17427,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17418,
                        "mutability": "mutable",
                        "name": "_observationIndex",
                        "nameLocation": "758:17:82",
                        "nodeType": "VariableDeclaration",
                        "scope": 17446,
                        "src": "751:24:82",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 17417,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "751:6:82",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17420,
                        "mutability": "mutable",
                        "name": "_oldestObservationIndex",
                        "nameLocation": "792:23:82",
                        "nodeType": "VariableDeclaration",
                        "scope": 17446,
                        "src": "785:30:82",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 17419,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "785:6:82",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17422,
                        "mutability": "mutable",
                        "name": "_target",
                        "nameLocation": "832:7:82",
                        "nodeType": "VariableDeclaration",
                        "scope": 17446,
                        "src": "825:14:82",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17421,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "825:6:82",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17424,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "856:12:82",
                        "nodeType": "VariableDeclaration",
                        "scope": 17446,
                        "src": "849:19:82",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 17423,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "849:6:82",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17426,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "885:5:82",
                        "nodeType": "VariableDeclaration",
                        "scope": 17446,
                        "src": "878:12:82",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17425,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "878:6:82",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "741:155:82"
                  },
                  "returnParameters": {
                    "id": 17434,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17430,
                        "mutability": "mutable",
                        "name": "beforeOrAt",
                        "nameLocation": "991:10:82",
                        "nodeType": "VariableDeclaration",
                        "scope": 17446,
                        "src": "957:44:82",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 17429,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17428,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "957:26:82"
                          },
                          "referencedDeclaration": 12454,
                          "src": "957:26:82",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17433,
                        "mutability": "mutable",
                        "name": "atOrAfter",
                        "nameLocation": "1049:9:82",
                        "nodeType": "VariableDeclaration",
                        "scope": 17446,
                        "src": "1015:43:82",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12454_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 17432,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17431,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12454,
                            "src": "1015:26:82"
                          },
                          "referencedDeclaration": 12454,
                          "src": "1015:26:82",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12454_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "943:125:82"
                  },
                  "scope": 17447,
                  "src": "720:614:82",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 17448,
              "src": "285:1051:82",
              "usedErrors": []
            }
          ],
          "src": "37:1300:82"
        },
        "id": 82
      },
      "contracts/test/libraries/OverflowSafeComparatorLibHarness.sol": {
        "ast": {
          "absolutePath": "contracts/test/libraries/OverflowSafeComparatorLibHarness.sol",
          "exportedSymbols": {
            "OverflowSafeComparatorLib": [
              12764
            ],
            "OverflowSafeComparatorLibHarness": [
              17517
            ]
          },
          "id": 17518,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17449,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:83"
            },
            {
              "absolutePath": "contracts/libraries/OverflowSafeComparatorLib.sol",
              "file": "../../libraries/OverflowSafeComparatorLib.sol",
              "id": 17450,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17518,
              "sourceUnit": 12765,
              "src": "61:55:83",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "fullyImplemented": true,
              "id": 17517,
              "linearizedBaseContracts": [
                17517
              ],
              "name": "OverflowSafeComparatorLibHarness",
              "nameLocation": "127:32:83",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 17453,
                  "libraryName": {
                    "id": 17451,
                    "name": "OverflowSafeComparatorLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12764,
                    "src": "172:25:83"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "166:43:83",
                  "typeName": {
                    "id": 17452,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "202:6:83",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  }
                },
                {
                  "body": {
                    "id": 17470,
                    "nodeType": "Block",
                    "src": "334:45:83",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17466,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17457,
                              "src": "357:2:83",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 17467,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17459,
                              "src": "361:10:83",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 17464,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17455,
                              "src": "351:2:83",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "id": 17465,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12650,
                            "src": "351:5:83",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_bool_$bound_to$_t_uint32_$",
                              "typeString": "function (uint32,uint32,uint32) pure returns (bool)"
                            }
                          },
                          "id": 17468,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "351:21:83",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 17463,
                        "id": 17469,
                        "nodeType": "Return",
                        "src": "344:28:83"
                      }
                    ]
                  },
                  "functionSelector": "1d8367f4",
                  "id": 17471,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "ltHarness",
                  "nameLocation": "224:9:83",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17460,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17455,
                        "mutability": "mutable",
                        "name": "_a",
                        "nameLocation": "250:2:83",
                        "nodeType": "VariableDeclaration",
                        "scope": 17471,
                        "src": "243:9:83",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17454,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "243:6:83",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17457,
                        "mutability": "mutable",
                        "name": "_b",
                        "nameLocation": "269:2:83",
                        "nodeType": "VariableDeclaration",
                        "scope": 17471,
                        "src": "262:9:83",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17456,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "262:6:83",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17459,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "288:10:83",
                        "nodeType": "VariableDeclaration",
                        "scope": 17471,
                        "src": "281:17:83",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17458,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "281:6:83",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "233:71:83"
                  },
                  "returnParameters": {
                    "id": 17463,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17462,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17471,
                        "src": "328:4:83",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 17461,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "328:4:83",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "327:6:83"
                  },
                  "scope": 17517,
                  "src": "215:164:83",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17488,
                    "nodeType": "Block",
                    "src": "505:46:83",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17484,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17475,
                              "src": "529:2:83",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 17485,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17477,
                              "src": "533:10:83",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 17482,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17473,
                              "src": "522:2:83",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "id": 17483,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lte",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12705,
                            "src": "522:6:83",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_bool_$bound_to$_t_uint32_$",
                              "typeString": "function (uint32,uint32,uint32) pure returns (bool)"
                            }
                          },
                          "id": 17486,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "522:22:83",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 17481,
                        "id": 17487,
                        "nodeType": "Return",
                        "src": "515:29:83"
                      }
                    ]
                  },
                  "functionSelector": "4fd7cca3",
                  "id": 17489,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "lteHarness",
                  "nameLocation": "394:10:83",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17478,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17473,
                        "mutability": "mutable",
                        "name": "_a",
                        "nameLocation": "421:2:83",
                        "nodeType": "VariableDeclaration",
                        "scope": 17489,
                        "src": "414:9:83",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17472,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "414:6:83",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17475,
                        "mutability": "mutable",
                        "name": "_b",
                        "nameLocation": "440:2:83",
                        "nodeType": "VariableDeclaration",
                        "scope": 17489,
                        "src": "433:9:83",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17474,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "433:6:83",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17477,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "459:10:83",
                        "nodeType": "VariableDeclaration",
                        "scope": 17489,
                        "src": "452:17:83",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17476,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "452:6:83",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "404:71:83"
                  },
                  "returnParameters": {
                    "id": 17481,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17480,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17489,
                        "src": "499:4:83",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 17479,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "499:4:83",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "498:6:83"
                  },
                  "scope": 17517,
                  "src": "385:166:83",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17515,
                    "nodeType": "Block",
                    "src": "682:77:83",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 17507,
                                  "name": "_b",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 17493,
                                  "src": "728:2:83",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 17506,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "721:6:83",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 17505,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "721:6:83",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 17508,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "721:10:83",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 17511,
                                  "name": "_timestamp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 17495,
                                  "src": "740:10:83",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 17510,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "733:6:83",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 17509,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "733:6:83",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 17512,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "733:18:83",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 17502,
                                  "name": "_a",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 17491,
                                  "src": "706:2:83",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 17501,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "699:6:83",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 17500,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "699:6:83",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 17503,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "699:10:83",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "id": 17504,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "checkedSub",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12763,
                            "src": "699:21:83",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint32_$bound_to$_t_uint32_$",
                              "typeString": "function (uint32,uint32,uint32) pure returns (uint32)"
                            }
                          },
                          "id": 17513,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "699:53:83",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 17499,
                        "id": 17514,
                        "nodeType": "Return",
                        "src": "692:60:83"
                      }
                    ]
                  },
                  "functionSelector": "f48e6b75",
                  "id": 17516,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "checkedSub",
                  "nameLocation": "566:10:83",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17496,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17491,
                        "mutability": "mutable",
                        "name": "_a",
                        "nameLocation": "594:2:83",
                        "nodeType": "VariableDeclaration",
                        "scope": 17516,
                        "src": "586:10:83",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17490,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "586:7:83",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17493,
                        "mutability": "mutable",
                        "name": "_b",
                        "nameLocation": "614:2:83",
                        "nodeType": "VariableDeclaration",
                        "scope": 17516,
                        "src": "606:10:83",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17492,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "606:7:83",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17495,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "634:10:83",
                        "nodeType": "VariableDeclaration",
                        "scope": 17516,
                        "src": "626:18:83",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17494,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "626:7:83",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "576:74:83"
                  },
                  "returnParameters": {
                    "id": 17499,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17498,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17516,
                        "src": "674:6:83",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 17497,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "674:6:83",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "673:8:83"
                  },
                  "scope": 17517,
                  "src": "557:202:83",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 17518,
              "src": "118:643:83",
              "usedErrors": []
            }
          ],
          "src": "37:725:83"
        },
        "id": 83
      }
    }
  }
}
